diff --git a/.gitignore b/.gitignore index 1cf9c67..961ae99 100644 --- a/.gitignore +++ b/.gitignore @@ -7,12 +7,5 @@ Makefile cmake_install.cmake build/ bin/ -.clang-format -.clang-tidy -compile_flags.txt -jquery-*.js -bootstrap/ -.vs/ -.idea/ -.vscode/ -CppProperties.json \ No newline at end of file +.idea +.vscode diff --git a/.gitmodules b/.gitmodules index a02d94b..70cd533 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,10 @@ +[submodule "c/GenericMakefile"] + path = c/GenericMakefile + url = https://github.com/MayuriNFC/GenericMakefile.git + +[submodule "cmake/examples"] + path = cmake/examples + url = https://github.com/ttroy50/cmake-examples.git [submodule "submodule/cmake-examples"] path = submodule/cmake-examples url = https://github.com/ttroy50/cmake-examples diff --git a/asm/note.md b/asm/help.md similarity index 95% rename from asm/note.md rename to asm/help.md index c589200..f77d86d 100644 --- a/asm/note.md +++ b/asm/help.md @@ -1,10 +1,6 @@ nasm -f elf exec.asm -o exec.o - gcc -m32 exec.o -o exec - ./exec ; echo $? - - gcc -S exec.c diff --git a/c/.gitignore b/c/.gitignore deleted file mode 100644 index 6d5206b..0000000 --- a/c/.gitignore +++ /dev/null @@ -1,52 +0,0 @@ -# Prerequisites -*.d - -# Object files -*.o -*.ko -*.obj -*.elf - -# Linker output -*.ilk -*.map -*.exp - -# Precompiled Headers -*.gch -*.pch - -# Libraries -*.lib -*.a -*.la -*.lo - -# Shared objects (inc. Windows DLLs) -*.dll -*.so -*.so.* -*.dylib - -# Executables -*.exe -*.out -*.app -*.i*86 -*.x86_64 -*.hex - -# Debug files -*.dSYM/ -*.su -*.idb -*.pdb - -# Kernel Module Compile Results -*.mod* -*.cmd -.tmp_versions/ -modules.order -Module.symvers -Mkfile.old -dkms.conf \ No newline at end of file diff --git a/c/AddressBook/main.c b/c/AddressBook/main.c deleted file mode 100644 index 4a2faf2..0000000 --- a/c/AddressBook/main.c +++ /dev/null @@ -1,275 +0,0 @@ -// fishc -// Code Check is required bcs DataEraser did't do that -#define _CRT_SECURE_NO_WARNINGS -#include -#include -#include - -#define NOT_FOUND NULL -#define MALLOC_FAILED NULL -#define END_OF_LIST NULL - -struct Person -{ - char name[20]; - char phone[40]; - struct Person *next; -}; - -void PrintMenu(); -void GetInput(struct Person *person); -void PrintPerson(struct Person *person); - -/** -malloc failed -> NULL -> exit(1); -Success -> struct Person* -*/ -struct Person *AddPerson(struct Person **contacts); - -/** -Not Found -> NULL -Success -> struct Person* -*/ -struct Person *ChangePerson(struct Person *contacts); - -/** -Not Found -> NULL -Success -> struct Person* -*/ -struct Person *RemovePerson(struct Person **contacts); - -/** -Not Found -> NULL -Success -> struct Person* -> remember to release! -*/ -struct Person *FindPerson(struct Person *contacts); - -void DisplayContacts(struct Person *contacts); - -inline void ReleasePerson(struct Person *person); - -void ReleaseContacts(struct Person **contacts); - -int main() -{ - short code; - struct Person *contacts = NULL; - PrintMenu(); - while (1) - { - printf("Please input the command code:\n"); - scanf("%d", &code); - switch (code) - { - case 0: { - PrintMenu(); - break; - } - case 1: { - struct Person *person = AddPerson(&contacts); - if (person == MALLOC_FAILED) - { - printf("ERROR: malloc failed"); - exit(1); - } - break; - } - case 2: { - printf("Please input the name:\n"); - struct Person *person = FindPerson(contacts); - if (person != NOT_FOUND) - { - PrintPerson(person); - } - else - { - printf("The person is not found\n"); - } - break; - } - case 3: { - printf("Please input the name:\n"); - struct Person *person = ChangePerson(contacts); - if (person == NOT_FOUND) - { - printf("The person is not found\n"); - } - break; - } - case 4: { - printf("Please input the name:\n"); - struct Person *person = RemovePerson(&contacts); - if (person == NOT_FOUND) - { - printf("The person is not found\n"); - } - else - { - // ReleasePerson(person); - free(person); - } - break; - } - case 5: { - DisplayContacts(contacts); - break; - } - case 6: { - goto END; - break; - } - default: { - break; - } - } - } -END: - ReleaseContacts(&contacts); -} - -void GetInput(struct Person *person) -{ - printf("Please input name:\n"); - scanf("%s", person->name); - // Bounds Check Elimination is required - - printf("Please input phone number:\n"); - scanf("%s", person->phone); - // Bounds Check Elimination is required -} - -void PrintPerson(struct Person *person) -{ - printf("Name:\n%s\n", person->name); - printf("Phone number:\n%s\n", person->phone); -} - -struct Person *AddPerson(struct Person **contacts) -{ - struct Person *person = (struct Person *)malloc(sizeof(struct Person)); - - if (person == NULL) - { - return MALLOC_FAILED; - } - - GetInput(person); - - // head insert - if (*contacts != END_OF_LIST) - { - // linked-list is not empty - person->next = *contacts; - *contacts = person; - } - else - { - // linked-list is empty - *contacts = person; - person->next = NULL; - } - return person; - // return the new-inserted person -} - -struct Person *FindPerson(struct Person *contacts) -{ - char temp[40]; - // This should be move to function param - - scanf("%s", temp); - // Bounds Check Elimination is required - - struct Person *current = contacts; - while (current != END_OF_LIST && strcmp(current->name, temp)) - { - current = current->next; - } - - return current; -} - -struct Person *ChangePerson(struct Person *contacts) -{ - struct Person *current = FindPerson(contacts); - - if (current != NOT_FOUND) - { - printf("Please input new Phone number:\n"); - scanf("%s", current->phone); - // Bounds Check Elimination is required - return current; - } - else - { - return NOT_FOUND; - } -} - -struct Person *RemovePerson(struct Person **contacts) -{ - struct Person *person = FindPerson(*contacts); - - if (person == NOT_FOUND) - { - return NOT_FOUND; - } - else - { - struct Person *current = *contacts; - if (current == person) - { - // target is the first node - *contacts = current->next; - return current; - } - else - { - while (current->next != person) - { - current = current->next; - } - struct Person *target = current->next; - current->next = current->next->next; - return target; - } - } -} - -void DisplayContacts(struct Person *contacts) -{ - while (contacts != END_OF_LIST) - { - PrintPerson(contacts); - contacts = contacts->next; - } -} - -inline void ReleasePerson(struct Person *person) -{ - free(person); -} - -void ReleaseContacts(struct Person **contacts) -{ - struct Person *temp = *contacts; - - while (*contacts != END_OF_LIST) - { - temp = *contacts; - *contacts = (*contacts)->next; - free(temp); - } -} - -void PrintMenu() -{ - printf("|Welcome to ContactsBook Manager Program|\n"); - printf("|0:print the Menu-----------------------|\n"); - printf("|1:insert new Contact-------------------|\n"); - printf("|2:find for existing Contact------------|\n"); - printf("|3.change existing Contact information--|\n"); - printf("|4.delete existing Contact--------------|\n"); - printf("|5.display all Contact------------------|\n"); - printf("|6.exit---------------------------------|\n"); -} diff --git a/c/Bit/Limit/main.c b/c/Bit/Limit/main.c deleted file mode 100644 index 68bc102..0000000 --- a/c/Bit/Limit/main.c +++ /dev/null @@ -1,27 +0,0 @@ -#include -#include - -int main() -{ - printf("One Byte is %d bit\n", CHAR_BIT); - - printf("The min of signed char is %d\n", SCHAR_MIN); - printf("The max of signed char is %d\n", SCHAR_MAX); - printf("The max of unsigned char is %u\n", UCHAR_MAX); - - printf("The min of signed short is %d\n", SHRT_MIN); - printf("The max of signed short is %d\n", SHRT_MAX); - printf("The max of unsigned short is %u\n", USHRT_MAX); - - printf("The min of signed int is %d\n", INT_MIN); - printf("The max of signed int is %d\n", INT_MAX); - printf("The max of unsigned int is %u\n", UINT_MAX); - - printf("The min of signed long is %ld\n", LONG_MIN); - printf("The max of signed long is %ld\n", LONG_MAX); - printf("The max of unsigned long is %lu\n", ULONG_MAX); - - printf("The min of signed long long is %lld\n", LLONG_MIN); - printf("The max of signed long long is %lld\n", LLONG_MAX); - printf("The max of unsigned long long is %llu\n", ULLONG_MAX); -} diff --git a/c/Bit/main.c b/c/Bit/main.c deleted file mode 100644 index f1b8f39..0000000 --- a/c/Bit/main.c +++ /dev/null @@ -1,18 +0,0 @@ -#include -#include -#include -const char *u2word(int u); -int main() -{ - int a = 0x52B3; - printf("%s\n", u2word(a)); -} -const char *u2word(int u) -{ - char *temp = (char *)malloc(sizeof(int)); - sprintf(temp, "%X", u); - printf("\\u%s\n", temp); - temp[0] = '\\'; - temp[1] = 'u'; - return temp; -} diff --git a/c/BitField/main.c b/c/BitField/main.c deleted file mode 100644 index 3552c78..0000000 --- a/c/BitField/main.c +++ /dev/null @@ -1,19 +0,0 @@ -#include -int main() -{ - struct BitField - { - unsigned int a : 3; - int b : 2; - unsigned int c : 1; - }; - struct BitField bitfield; - bitfield.a = 125; // bitfield.a = x -> while(bitfield.a is not in the range) -> bitfield.a = num +- (2^3) - bitfield.b = -5; // bitfield.b = x -> while(bitfield.b is not in the range) -> bitfield.b = num +- (2^2) - bitfield.c = -1; - printf("%d\n%d\n%d\n", bitfield.a, bitfield.b, bitfield.c); - printf("sizeof(struct BitField) is %llu\n", sizeof(struct BitField)); - - printf("125%(2^3)=%d\n", 125 % (1 << 3)); - printf("(-5)%(2^2)=%d\n", -5 % (1 << 2)); -} diff --git a/c/CSqlite/main.c b/c/CSqlite/main.c deleted file mode 100644 index ee8a27e..0000000 --- a/c/CSqlite/main.c +++ /dev/null @@ -1,22 +0,0 @@ -#include -#include -#include -int main(int argc, char *argv[]) -{ - sqlite3 *db; - char zErrMsg = 0; - int rc; - rc = sqlite3_open("test.db", &db); - - if (rc) - { - fprintf(stderr, "Can't open database:%s\n", sqlite3_errmsg(db)); - exit(0); - } - else - { - fprintf(stderr, "Opened database successfully\n"); - } - sqlite3_close(db); - return 0; -} diff --git a/c/Composition/composition.c b/c/Composition/composition.c deleted file mode 100644 index 57c210e..0000000 --- a/c/Composition/composition.c +++ /dev/null @@ -1,37 +0,0 @@ -#include -#include -#include -void write(); -int main(int argc, char *argv[]) -{ - // char str1[20]="114514"; - ////char *str2 ="1919810"; - // char str3[]= *str2; - // printf("%s\n%s\n",&str1,str2); - ////strcpy(str1,str3); - ////printf("strcpy(str1,str3):%s\n",str3) - // {'b','a','k','a','\0'}; - if (argc == 1) - { - printf("please input name\n"); - // char name[] = "baka"; - return 0; - } - /* else - { - char *name = argv[1]; - } - */ - char composition[99]; - // write(composition,name); - write(composition, argv[1]); - printf(composition); - return 0; -} - -void write(char saying1[], const char *name) -{ - sprintf(saying1, "%s,my %s,I do love u so much. ", name, name); - char saying2[] = "Pls take me away"; - strcat(saying1, saying2); -} diff --git a/c/Fib/CMakeLists.txt b/c/Fib/CMakeLists.txt deleted file mode 100644 index ba2188a..0000000 --- a/c/Fib/CMakeLists.txt +++ /dev/null @@ -1,13 +0,0 @@ -PROJECT(Fib) -CMAKE_MINIMUM_REQUIRED(VERSION 2.9) -INCLUDE_DIRECTORIES( - ${CMAKE_BINARY_DIR}/../include -) -AUX_SOURCE_DIRECTORY( - ${CMAKE_BINARY_DIR}/../SRC - DIR_SRC -) -ADD_EXECUTABLE( - Fib - ${DIR_SRC} -) \ No newline at end of file diff --git a/c/Fib/src/Fib.c b/c/Fib/src/Fib.c deleted file mode 100644 index 92921e3..0000000 --- a/c/Fib/src/Fib.c +++ /dev/null @@ -1,16 +0,0 @@ -#include "../include/Fib.h" -int Fib(int n) -{ - if (n < 1) - { - return -1; - } - else if (n == 1 || n == 2) - { - return 1; - } - else - { - return Fib(n - 1) + Fib(n - 2); - } -} \ No newline at end of file diff --git a/c/Fib/src/Fib_test.c b/c/Fib/src/Fib_test.c deleted file mode 100644 index 60f3467..0000000 --- a/c/Fib/src/Fib_test.c +++ /dev/null @@ -1,17 +0,0 @@ -#include "../include/Fib.h" -int main(int argc, char argv[]) -{ - unsigned int n, fib; - scanf("%d", &n); - rewind(stdin); - fib = Fib(n); - if (fib != -1) - { - printf("Fib(%d)=%d", n, fib); - } - else - { - printf("The input is not a valid value."); - } - return 0; -} \ No newline at end of file diff --git a/c/Fileio/src/main.c b/c/Fileio/src/main.c deleted file mode 100644 index 926a1e2..0000000 --- a/c/Fileio/src/main.c +++ /dev/null @@ -1,7 +0,0 @@ -#include "../include/fileio.h" -int main() -{ - w("file.txt", "this_is_an_apple"); - r("file.txt"); - return 0; -} diff --git a/c/Fileio/src/r.c b/c/Fileio/src/r.c deleted file mode 100644 index d97f5af..0000000 --- a/c/Fileio/src/r.c +++ /dev/null @@ -1,17 +0,0 @@ -#include "../include/fileio.h" -int r(const char *filename) -{ - FILE *fp = fopen("file.txt", "r"); - int i; - long location = -2; - while (ftell(fp) != -1 && ftell(fp) != location) - { - // location=ftell(fp); - // printf("location:%ld ",location); - char a[100]; - fscanf(fp, "%s", a); - printf("%s \n\n", a); - } - fclose(fp); - return 0; -} diff --git a/c/Fileio/src/w.c b/c/Fileio/src/w.c deleted file mode 100644 index 19a2a21..0000000 --- a/c/Fileio/src/w.c +++ /dev/null @@ -1,9 +0,0 @@ -#include "../include/fileio.h" -int w(const char *filename, const char *string) -{ - FILE *fp; - fp = fopen(filename, "w"); - fprintf(fp, "%s", string); - fclose(fp); - return 0; -} diff --git a/c/FuncPointer/main.c b/c/FuncPointer/main.c deleted file mode 100644 index 1a70931..0000000 --- a/c/FuncPointer/main.c +++ /dev/null @@ -1,33 +0,0 @@ -#include -#include -int min(int a, int b) -{ - return a - b; -} -int mul(int a, int b) -{ - return a * b; -} -int div(int a, int b) -{ - return a / b; -} -int add(const char *a, const char *b) -{ - return sprintf(a, "%s%s", a, b); -} -int add(int a, int b) -{ - return a + b; -} - -int calc(int (*fp)(int a, int b), int a, int b) -{ - return (*fp)(a, b); -} - -int main(int argc, char *argv[]) -{ - int a = 1, b = 2; - printf("%d %d=%d\n", a, b, calc(add, a, b)); -} diff --git a/c/FuncPointer/main.cpp b/c/FuncPointer/main.cpp deleted file mode 100644 index 0a8d4bc..0000000 --- a/c/FuncPointer/main.cpp +++ /dev/null @@ -1,35 +0,0 @@ -#include -#include -int min(int a, int b) -{ - return a - b; -} -int mul(int a, int b) -{ - return a * b; -} -int div(int a, int b) -{ - return a / b; -} -int add(const char *a, const char *b) -{ - char c[100]; - sprintf(c, "%s%s", a, b); - return (int)(*c); -} -int add(int a, int b) -{ - return a + b; -} - -int calc(int (*fp)(int a, int b), int a, int b) -{ - return (*fp)(a, b); -} - -int main(int argc, char *argv[]) -{ - int a = 1, b = 2; - printf("%d %d=%d\n", a, b, calc(add, a, b)); -} diff --git a/c/Game/CMakeLists.txt b/c/Game/CMakeLists.txt deleted file mode 100644 index b154746..0000000 --- a/c/Game/CMakeLists.txt +++ /dev/null @@ -1,13 +0,0 @@ -PROJECT(GAME) -CMAKE_MINIMUM_REQUIRED(VERSION 2.9) -INCLUDE_DIRECTORIES( - ${CMAKE_BINARY_DIR}/../include -) -AUX_SOURCE_DIRECTORY( - ${CMAKE_BINARY_DIR}/../src - DIR_SRC -) -ADD_EXECUTABLE( - game - ${DIR_SRC} -) \ No newline at end of file diff --git a/c/Game/include/game.h b/c/Game/include/game.h deleted file mode 100644 index fbc6d77..0000000 --- a/c/Game/include/game.h +++ /dev/null @@ -1,14 +0,0 @@ -#ifndef _KOISHI_H_ -#define _KOISHI_H_ -#include -#include -#include -typedef enum level -{ - easy = 1, - normal, - hard, - extreme -} LEVEL; -LEVEL getlevet(void); -#endif \ No newline at end of file diff --git a/c/Game/src/game.c b/c/Game/src/game.c deleted file mode 100644 index 3d1f6ce..0000000 --- a/c/Game/src/game.c +++ /dev/null @@ -1,13 +0,0 @@ -#include "../include/koishi.h" -LEVEL getlevel() -{ - LEVEL l; - printf("please input the level number:\n\ - 1.easy\n\ - 2.normal\n\ - 3.hard\n\ - 4.extreme\n"); - scanf("%d", &l); - rewind(stdin); - return l; -} \ No newline at end of file diff --git a/c/Game/src/main.c b/c/Game/src/main.c deleted file mode 100644 index dda33ec..0000000 --- a/c/Game/src/main.c +++ /dev/null @@ -1,15 +0,0 @@ -#include "../include/game.h" -extern LEVEL getlevel(); -int main() -{ - char *level[4] = {"easy", "normal", "hard", "extreme"}; - LEVEL l; - l = getlevel(); - while (l < 1 || l > 4) - { - printf("the number you input(%d) is not listed\nplease input again:\n", l); - l = getlevel(); - } - printf("you choose %d %s\n", l, level[l - 1]); - return 0; -} \ No newline at end of file diff --git a/c/HidenStruct/main.c b/c/HidenStruct/main.c deleted file mode 100644 index cda3b4e..0000000 --- a/c/HidenStruct/main.c +++ /dev/null @@ -1,11 +0,0 @@ -#include "stu.h" -#include - - -int main() { - struct stu *s; - s = new_stu(); - set_id(s, "114514"); - printf("%s", get_id(s)); - return 0; -} \ No newline at end of file diff --git a/c/HidenStruct/stu.c b/c/HidenStruct/stu.c deleted file mode 100644 index aa30e72..0000000 --- a/c/HidenStruct/stu.c +++ /dev/null @@ -1,13 +0,0 @@ -#define _CRT_SECURE_NO_WARNINGS -#include -#include -struct stu { - char id[20]; - int score; -}; -struct stu *new_stu() { - struct stu *s = malloc(sizeof(struct stu)); - return s; -}; -void set_id(struct stu *s, const char *id) { strcpy(s->id, id); } -char *get_id(struct stu *s) { return s->id; } diff --git a/c/HidenStruct/stu.h b/c/HidenStruct/stu.h deleted file mode 100644 index 5854a2b..0000000 --- a/c/HidenStruct/stu.h +++ /dev/null @@ -1,7 +0,0 @@ -#ifndef _STU_H -#define _STU_H -struct stu; -extern struct stu *new_stu(); -extern void set_id(struct stu *s, const char *id); -extern char *get_id(struct stu *); -#endif // !_STU_H \ No newline at end of file diff --git a/c/Json/CMakeLists.txt b/c/Json/CMakeLists.txt deleted file mode 100644 index 34c77fd..0000000 --- a/c/Json/CMakeLists.txt +++ /dev/null @@ -1,5 +0,0 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 2.9) -PROJECT(JSONPARSER) -INCLUDE_DIRECTORIES(./include) -AUX_SOURCE_DIRECTORY(./src DIR_SRCS) -ADD_EXECUTABLE(parser ${DIR_SRCS}) diff --git a/c/Json/include/jsonparser.h b/c/Json/include/jsonparser.h deleted file mode 100644 index e69de29..0000000 diff --git a/c/Json/src/CMakeLists.txt b/c/Json/src/CMakeLists.txt deleted file mode 100644 index efd6a3f..0000000 --- a/c/Json/src/CMakeLists.txt +++ /dev/null @@ -1,5 +0,0 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 2.9) -PROJECT(TEST) -INCLUDE_DIRECTORIES(../include) -AUX_SOURCE_DIRECTORY(./ DIR_SRCS) -ADD_EXECUTABLE(test ${DIR_SRCS}) diff --git a/c/Json/test/CMakeLists.txt b/c/Json/test/CMakeLists.txt deleted file mode 100644 index debf5f9..0000000 --- a/c/Json/test/CMakeLists.txt +++ /dev/null @@ -1,5 +0,0 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 2.9) -PROJECT(JSONPARSER) -INCLUDE_DIRECTORIES(../include) -AUX_SOURCE_DIRECTORY(./ DIR_SRCS) -ADD_EXECUTABLE(parser ${DIR_SRCS}) diff --git a/c/Json/test/jsonparser.c b/c/Json/test/jsonparser.c deleted file mode 100644 index 129245c..0000000 --- a/c/Json/test/jsonparser.c +++ /dev/null @@ -1,60 +0,0 @@ -#include -#include -int jumpChar(const char *string, int *index, char Char) { - while (string[*index] == ' ') { - index++; - } - return *index; -} -int jumpNULL(const char *string, int *index) { - while (string[*index] == ' ' || string[*index] == '\n') { - - index++; - } - return *index; -} -int sliceStringByLength(const char *string, int index, int length); -int sliceStringByAddress(const char *head, const char *end); -int main() { - const char json[] = - "{\"int1\":1,\"str1\":\"2\",\"double1\":3.14,\"bool1\":true," - "\"char1\":48,\"null1\":null,\"array1\":[\"string\",1,null," - "true,false,3.14],\"json1\":{\"id\":0,\"status\":200}}"; - puts(json); - struct json1 { - int int1; - char *str1; - double double1; - _Bool bool1; - char char1; - void *null1; - // void * -> any type of various - // void ** -> array which can storage any type of various - void **array1; - struct json1 *next; - }; - int strindex = 0; - jumpNULL(json, &strindex); - if (json[strindex] != '{') { - printf("json parse failed"); - } else { - strindex++; - jumpNULL(json, &strindex); - if (json[strindex] == ' ') { - { jumpNULL(json, &strindex); } - } - if (json[strindex] != '"') { - printf("json parse failed"); - } else { - } - } -} - -// char *strstr(const char *haystack, const char *needle); -// void *memchr(const void *str, int c, size_t n); -// char *strchr(const char *str, int c); -// char *strrchr(const char *str, int c); -// char *strtok(char *str, const char *delim); -// size_t strspn(const char *str1, const char *str2); -// size_t strcspn(const char *str1, const char *str2); -// char *strpbrk(const char *str1, const char *str2); \ No newline at end of file diff --git a/c/Json/test/test.json b/c/Json/test/test.json deleted file mode 100644 index 2e7a461..0000000 --- a/c/Json/test/test.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "int1": 1, - "str1": "2", - "double1": 3.14, - "bool1": true, - "char1": 48, - "null1": null, - "array1": [ - "string", - 1, - null, - true, - false, - 3.14 - ], - "json1": { - "id": 0, - "status": 200 - } -} -//读取文件 读到字符串解析到字符串 读到除字符串外空格跳过 读到除字符串外{}解析到子json 读到除字符串外[]解析到子json -char json[] ="{\"int1\":1,\"str1\":\"2\",\"double1\":3.14,\"bool1\":true,\"char1\":48,\"null1\":null,\"array1\":[\"string\",1,null,true,false,3.14],\"json1\":{\"id\":0,\"status\":200}}"; diff --git a/c/Json/test/test2.json b/c/Json/test/test2.json deleted file mode 100644 index 38c8e56..0000000 --- a/c/Json/test/test2.json +++ /dev/null @@ -1 +0,0 @@ -{"int1":1,"str1":"2","double1":3.14,"bool1":true,"char1":48,"null1":null,"array1":["string",1,null,true,false,3.14],"json1":{"id":0,"status":200}} \ No newline at end of file diff --git a/c/Library/main.c b/c/Library/main.c deleted file mode 100644 index c079ca0..0000000 --- a/c/Library/main.c +++ /dev/null @@ -1,116 +0,0 @@ -// fishc -#define _CRT_SECURE_NO_WARNINGS -#include -#include -#define MAX_SIZE 100 - -struct Date -{ - short year; - short month; - short day; -}; -struct Book -{ - char title[128]; - char author[40]; - float price; - struct Date date; - char publisher[40]; -}; -void getInput(struct Book *book); -void printBook(struct Book *book); -void InitLibrary(struct Book *library[]); -void printLibrary(struct Book *library[]); -void releaseLibrary(struct Book *library[]); -void getInput(struct Book *book) -{ - printf("Book Title:\n"); - scanf("%s", book->title); - printf("Book Author:\n"); - scanf("%s", book->author); - printf("Book Price:\n"); - scanf("%f", &book->price); - printf("Book Publish Date(2000-12-1):\n"); - scanf("%hd-%hd-%hd", &book->date.year, &book->date.month, &book->date.day); - printf("Book Publisher:\n"); - scanf("%s", book->publisher); -} -void printBook(struct Book *book) -{ - printf("Book Title:\n%s\n", book->title); - printf("Book Author:\n%s\n", book->author); - printf("Book Price:\n%f\n", book->price); - printf("Book Publish Date:\n%hd-%hd-%hd\n", book->date.year, - book->date.month, book->date.day); - printf("Book Publisher:\n%s\n", book->publisher); -} -void InitLibrary(struct Book *library[]) -{ - for (int i = 0; i < MAX_SIZE; i++) - { - library[i] = NULL; - } -} -void printLibrary(struct Book *library[]) -{ - for (int i = 0; i < MAX_SIZE; i++) - { - if (library[i] != NULL) - { - printBook(library[i]); - putchar('\n'); - } - } -} -void releaseLibrary(struct Book *library[]) -{ - for (int i = 0; i < MAX_SIZE; i++) - { - if (library[i] != NULL) - { - free(library[i]); - } - } -} -int main() -{ - struct Book *library[MAX_SIZE]; - struct Book *ptr = NULL; - char ch; - int index = 0; - InitLibrary(library); - while (1) - { - printf("Do you need to input information(Y/N):\n"); - do - { - ch = getchar(); - // printf("You input %c\n",ch); - } while (ch != 'Y' && ch != 'y' && ch != 'N' && ch != 'n'); - - if (ch == 'Y' || ch == 'y') - { - if (index < MAX_SIZE) - { - ptr = (struct Book *)malloc(sizeof(struct Book)); - getInput(ptr); - library[index] = ptr; - index++; - putchar('\n'); - } - else - { - printf("Library is full,exiting...\n"); - break; - } - } - else - { - break; - } - } - printf("Printing Library......\n"); - printLibrary(library); - releaseLibrary(library); -} \ No newline at end of file diff --git a/c/LinkTest/include/linktest.h b/c/LinkTest/include/linktest.h deleted file mode 100644 index 50da635..0000000 --- a/c/LinkTest/include/linktest.h +++ /dev/null @@ -1,5 +0,0 @@ -#ifndef _linktest_h -#define _linktest_h -#include -#include -#endif \ No newline at end of file diff --git a/c/LinkTest/src/linktest.c b/c/LinkTest/src/linktest.c deleted file mode 100644 index 963566f..0000000 --- a/c/LinkTest/src/linktest.c +++ /dev/null @@ -1,14 +0,0 @@ -#include "../include/linktest.h" -int main() -{ - struct test - { - char name[20]; - int num; - struct test *next; - }; - struct test *test1 = (struct test *)(malloc(sizeof(struct test))); - scanf("%d", &test1->num); - printf("%d\n", test1->num); - return 0; -} diff --git a/c/README.md b/c/README.md index b7bf1e9..76d7233 100644 --- a/c/README.md +++ b/c/README.md @@ -6,4 +6,4 @@ cmake .. -G "MinGW Makefiles" make ``` -The bin will be found in `./bin/` +The bin will be find in `./bin/` diff --git a/c/RainbowBomb/include/bomb.h b/c/RainbowBomb/include/bomb.h deleted file mode 100644 index 6a365ce..0000000 --- a/c/RainbowBomb/include/bomb.h +++ /dev/null @@ -1,6 +0,0 @@ -#ifndef _bomb_h -#define _bomb_h -#include -#include -int bomb(int times, char Char); -#endif \ No newline at end of file diff --git a/c/RainbowBomb/src/bomb.c b/c/RainbowBomb/src/bomb.c deleted file mode 100644 index b41fb48..0000000 --- a/c/RainbowBomb/src/bomb.c +++ /dev/null @@ -1,12 +0,0 @@ -#include "../include/bomb.h" -int bomb(int times, char Char) -{ - printf("%c[47;31m", 0x1B); - while (times > 0) - { - putchar(Char); - times--; - } - printf("%c[0m\n", 0x1B); - return 0; -} diff --git a/c/RandomChoose/RandomChoose.c b/c/RandomChoose/RandomChoose.c deleted file mode 100644 index b7ffa16..0000000 --- a/c/RandomChoose/RandomChoose.c +++ /dev/null @@ -1,33 +0,0 @@ -#include -#include -#include -int main() -{ - int input1, input2; - int i; - printf("Please input the number of student:\n"); - scanf("%d", &input1); - printf("choose n person in the students randomly\nplease input n:\n"); - scanf("%d", &input2); - - srand((unsigned int)time(NULL)); - int array[input2]; - int j; - for (i = 0; i < input2; i++) - { - array[i] = rand() % input1 + 1; - for (j = 0; j < i; j++) - { - if (array[i] == array[j]) - { - i--; - } - } - } - i--; - do - { - printf("array[%d]=%d\n", i, array[i]); - i--; - } while (i + 1); -} diff --git a/c/Resistor/include/resistorcal.h b/c/Resistor/include/resistorcal.h deleted file mode 100644 index 384bf52..0000000 --- a/c/Resistor/include/resistorcal.h +++ /dev/null @@ -1,4 +0,0 @@ -#ifndef _RESISTOR_H -#define _RESISTOR_H -double resistorcal(double R1, double R2, char type); -#endif diff --git a/c/Resistor/src/main.c b/c/Resistor/src/main.c deleted file mode 100644 index 7c4ac9e..0000000 --- a/c/Resistor/src/main.c +++ /dev/null @@ -1,40 +0,0 @@ -#include -#include "../include/resistorcal.h" -int main() -{ - printf("Welcome to Mayuri's Resistor Calculator(Only for separate routes and 2 resistor in it)\n"); - printf("Make your choice\n> 1.Your have the two resistors of separate routes\n> 2. Your have one of the resistors in the separate routes and the total resistor\nAny other choice is to exit\n"); - char choice; - scanf("%c", &choice); - switch (choice) - { - case '1': - printf("Please input your args as [R1 R2]:\n"); - break; - case '2': - printf("Please input your args as [R1 R]:\n"); - break; - default: - printf("exiting\n"); - return 0; - break; - } - double r1 = -1, r2 = -1; - scanf("%lf %lf", &r1, &r2); - while ((r1 < 0) || (r2 < 0)) - { - printf("args don't meet the requirement(R>0)\n"); - printf("please input them again:\n"); - scanf("%lf %lf", &r1, &r2); - } - switch (choice) - { - case '1': - printf("R=%lf\n", resistorcal(r1, r2, choice)); - break; - case '2': - printf("R2=%lf\n", resistorcal(r1, r2, choice)); - break; - } - return 0; -} diff --git a/c/Resistor/src/resistorcal.c b/c/Resistor/src/resistorcal.c deleted file mode 100644 index 52670b0..0000000 --- a/c/Resistor/src/resistorcal.c +++ /dev/null @@ -1,14 +0,0 @@ -#include -#include "../include/resistorcal.h" -double resistorcal(double R1, double R2, char type) -{ - switch (type) - { - case '1': - return (R1 * R2) / (R1 + R2); - break; - case '2': - return (R1 * R2) / (R1 - R2); - break; - } -} diff --git a/c/Snake/README.md b/c/Snake/README.md deleted file mode 100644 index bfbcfa5..0000000 --- a/c/Snake/README.md +++ /dev/null @@ -1,21 +0,0 @@ -# Snake (CrossPlatform) - -## How to build - -### Linux - ->gcc snake.c -lpthread - -### windows - -1. `snake_windows.c` file is the code using windowsapis and can be built directly - -2. `snake.c` please use [POSIX Threads for Windows](https://sourceforge.net/projects/pthreads4w/) - -> please use **MSVS or GNU GCC (e.g. MinGW or MinGW64(without win32pthreads)) supported** for pthreads4w support
->gcc snake.c -I`${The Dir of pthreads4w}`
->replace `${The Dir of pthreads4w}` according to your own setting - -3. `snake_windows_opt.c` is the version avoiding refresh all output frequently, which lead to splash screen - -#### The code under `clear_versiom` `gotoxy_version` has lots of bugs diff --git a/c/Snake/clear_version/Clear.h b/c/Snake/clear_version/Clear.h deleted file mode 100644 index 5fbfce8..0000000 --- a/c/Snake/clear_version/Clear.h +++ /dev/null @@ -1,11 +0,0 @@ -#ifndef _CLEAR_H -#define _CLEAR_H - -#if defined(_WIN16) || defined(_WIN32) || defined(_WIN64) -#define Clear() printf("\033c"); -#elif defined(__linux__) || defined(__gnu_linux__) -#define Clear() printf("\033c"); -#elif defined(__APPLE__) -#endif - -#endif /* _CLEAR_H */ diff --git a/c/Snake/clear_version/GlobalVar.h b/c/Snake/clear_version/GlobalVar.h deleted file mode 100644 index 3bcc50e..0000000 --- a/c/Snake/clear_version/GlobalVar.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef _GLOBALVAR_H -#define _GLOBALVAR_H - -#include -#define WIDTH 40 -#define HEIGHT 20 - -// char HEAD = '@'; // The shape of snake head -// char BODY = 'O'; // The shape of snake body -#define HEAD '@' // The shape of snake head -#define HEAD_STRING "@" -#define BODY 'O' // The shape of snake body -#define BODY_STRING "O" -char a[HEIGHT + 1][WIDTH] = {{BODY, BODY, BODY, HEAD}}; // The initial char is 0 -char *p[HEIGHT * WIDTH] = {&a[0][3], &a[0][2], &a[0][1], - &a[0][0]}; // p[0] stand for snake head - -int n = 3; // The length of snake body (without head) -int i, j; -signed char direction = 1; // 1.Right;2.Up;-1.Left;-2.Down;0.Exit -signed char directiontemp = 1; // 1.Right;2.Up;-1.Left;-2.Down;0.Exit -int delay = 200; // delay 0.2s(200ms) -bool isPause = 0; -#endif /* _GLOBALVAR_H */ diff --git a/c/Snake/clear_version/KeyMonitor.h b/c/Snake/clear_version/KeyMonitor.h deleted file mode 100644 index 23f7435..0000000 --- a/c/Snake/clear_version/KeyMonitor.h +++ /dev/null @@ -1,104 +0,0 @@ -#ifndef _KEYMONITOR_H -#define _KEYMONITOR_H -#include "GlobalVar.h" -#include -#if defined(_WIN16) || defined(_WIN32) || defined(_WIN64) -#include -#include -#include -#include - -#define KeyMonitor_Starter() \ - HANDLE hThread1 = CreateThread(NULL, 0, KeyMonitor, NULL, 0, NULL) -#define KeyMonitor_Stoper() CloseHandle(hThread1); -#elif defined(__linux__) || defined(__gnu_linux__) -#include -#include -#define KeyMonitor_Starter() \ - system("stty -icanon"); \ - pthread_attr_t attr; \ - pthread_t tid; \ - pthread_attr_init(&attr); \ - pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); \ - pthread_create(&tid, &attr, KeyMonitor, NULL); -#define KeyMonitor_Stoper() pthread_join(tid, NULL); -#elif defined(__APPLE__) -#endif - -// KeyMonitor Function(Different Platform return value type is different) -#if defined(_WIN16) || defined(_WIN32) || defined(_WIN64) -DWORD WINAPI -#elif defined(__linux__) || defined(__gnu_linux__) -void * -#elif defined(__APPLE__) -#endif -KeyMonitor(void *arg) // Direction Control:w,s,a,d-->Up Down Left Right -{ - char k; - while (1) { -#if defined(_WIN16) || defined(_WIN32) || defined(_WIN64) - k = _getch(); -#elif defined(__linux__) || defined(__gnu_linux__) - k = getchar(); -#elif defined(__APPLE__) -#endif - switch (k) { - case 'w': // Up - { - directiontemp = 2; - break; - } - case 's': // Down - { - directiontemp = -2; - break; - } - case 'a': // Left - { - directiontemp = -1; - break; - } - case 'd': // Right - { - directiontemp = 1; - break; - } - case 'j': // SpeedUp - { - delay = delay * 4 / 5; - break; - } - case 'k': // SpeedDown - { - delay = delay * 5 / 4; - break; - } - case 27: // ESC - { - printf("\nExit!\n"); - isPause = 0; - direction = 0; - directiontemp = 0; -#if defined(_WIN16) || defined(_WIN32) || defined(_WIN64) - return 0; -#elif defined(__linux__) || defined(__gnu_linux__) - return NULL; -#elif defined(__APPLE__) -#endif - break; - } - case ' ': // Space - { - if (isPause) { - printf("\nContinue!\n"); - } else { - printf("\nPause!\n"); - } - isPause = !isPause; - break; - } - } - } -} - -#endif /* _KEYMONITOR_H */ diff --git a/c/Snake/clear_version/Move.h b/c/Snake/clear_version/Move.h deleted file mode 100644 index b9cabf1..0000000 --- a/c/Snake/clear_version/Move.h +++ /dev/null @@ -1,38 +0,0 @@ -#ifndef _MOVE_H -#define _MOVE_H -#include "GlobalVar.h" -inline void moveBody() { - *p[n] = 0; - for (i = n; i > 0; i--) { - p[i] = p[i - 1]; /* per part goes to the address of the next part of body*/ - } - *p[0] = BODY; /* The First part of snake body come to snake head*/ -} - -inline void moveRight() { - moveBody(); - p[0] = p[0] + 1; /* Move snake head */ - *p[0] = HEAD; /* change the char of new head(new address)'s shape to HEAD */ -} -inline void moveLeft() { - moveBody(); - p[0] = p[0] - 1; - *p[0] = HEAD; -} -inline void moveDown() { - moveBody(); - p[0] = p[0] + WIDTH; - *p[0] = HEAD; -} -inline void moveUp() { - moveBody(); - p[0] = p[0] - WIDTH; - *p[0] = HEAD; -} -void moveBody(); -void moveRight(); -void moveLeft(); -void moveDown(); -void moveUp(); - -#endif /* _MOVE_H */ diff --git a/c/Snake/clear_version/README.md b/c/Snake/clear_version/README.md deleted file mode 100644 index 6806b2f..0000000 --- a/c/Snake/clear_version/README.md +++ /dev/null @@ -1,4 +0,0 @@ -# Under construction - -- [x] Windows -- [x] Linux diff --git a/c/Snake/clear_version/ShowMap.h b/c/Snake/clear_version/ShowMap.h deleted file mode 100644 index 83e3f62..0000000 --- a/c/Snake/clear_version/ShowMap.h +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef _SHWOMAP_H -#define _SHWOMAP_H -#include "Clear.h" -#include "GlobalVar.h" -#include -inline void ShowMap() { - Clear(); - printf("Your Score is:%d\n", n - 3); - for (i = 0; i < (WIDTH)*2; i++) - printf("_"); - printf("\n"); - for (i = 0; i < (HEIGHT); i++) { - for (j = 0; j < (WIDTH); j++) { - if (a[i][j] == 0) - printf("_|"); - else - printf("%c|", a[i][j]); - } - printf("\n"); - } - printf("\nw,s,a,d->Up Down Left Right;\nj,k->Speed " - "Up/Down;\nESC: Exit\n"); -} -void ShowMap(); -#endif /* _SHWOMAP_H */ diff --git a/c/Snake/clear_version/Sleep.h b/c/Snake/clear_version/Sleep.h deleted file mode 100644 index 2c5ad4b..0000000 --- a/c/Snake/clear_version/Sleep.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifndef _SLEEP_H -#define _SLEEP_H -#include "GlobalVar.h" -#include -#include -#include -#include -#if defined(_WIN16) || defined(_WIN32) || defined(_WIN64) -#define SLEEPS(delay) Sleep(delay) -#elif defined(__linux__) || defined(__gnu_linux__) -#include -#define SLEEPS(delay) usleep((delay)*1000) -#elif defined(__APPLE__) -#define SLEEPS(delay) usleep((delay)*1000) -#endif -#endif /* _SLEEP_H */ diff --git a/c/Snake/clear_version/Snake.c b/c/Snake/clear_version/Snake.c deleted file mode 100644 index 0f23cf9..0000000 --- a/c/Snake/clear_version/Snake.c +++ /dev/null @@ -1,59 +0,0 @@ -#include "Snake.h" -int main() { - KeyMonitor_Starter(); - ShowMap(); - RandomApple(); - while (1) { - ShowMap(); - do { - SLEEPS(delay); - } while (isPause); - CheckInput(); - switch (isFail()) { - case 0: - break; - case 1: - printf("Fail!Don't hit the wall!\nYour Final Score is:%d\n", n - 3); - return -1; - break; - case 2: - printf("Fail!Don't eat your body!\nYour Final Score is:%d\n", n - 3); - return -1; - break; - } - - if (canEat()) { - n++; // length++ - p[n] = p[n - 1]; - RandomApple(); - } - - switch (direction) // choose which direction to move - { - case 1: // Right - { - moveRight(); - break; - } - case 2: // Up - { - moveUp(); - break; - } - case -1: // Left - { - moveLeft(); - break; - } - case -2: // Down - { - moveDown(); - break; - } - } - if (direction == 0) { - break; - } - } - KeyMonitor_Stoper(); -} diff --git a/c/Snake/clear_version/Snake.h b/c/Snake/clear_version/Snake.h deleted file mode 100644 index a4b522a..0000000 --- a/c/Snake/clear_version/Snake.h +++ /dev/null @@ -1,145 +0,0 @@ -#ifndef _SNAKE_H -#define _SNAKE_H -#include "Clear.h" -#include "GlobalVar.h" -#include "KeyMonitor.h" -#include "Move.h" -#include "ShowMap.h" -#include "Sleep.h" -#include -#include -#if defined(_WIN16) || defined(_WIN32) || defined(_WIN64) -#include -#include -#include -#include -#elif defined(__linux__) || defined(__gnu_linux__) -#include -#elif defined(__APPLE__) -#endif - -/* Print String At (x,y) and make Cursor go to another place */ - -/* Random Food */ -inline void RandomApple() { - srand(time(NULL)); - do { - i = rand() % HEIGHT; - j = rand() % - WIDTH; /* if random location is 0 ->*;else find again and again*/ - } while (a[i][j] != 0); - a[i][j] = '*'; -} - -// exec when(before) moving -_Bool canEat() { - switch (direction) { - // Right - case 1: { - if (*(p[0] + 1) == '*') { - return 1; - } - break; - } - // Up - case 2: { - if (*(p[0] - WIDTH) == '*') { - return 1; - } - break; - } - // Left - case -1: { - if (*(p[0] - 1) == '*') { - return 1; - } - break; - } - // Down - case -2: { - if (*(p[0] + WIDTH) == '*') { - return 1; - } - break; - } - } - return 0; -} - -// exec when(before) moving -int isFail() { - if (p[0] - WIDTH < &a[0][0] && direction == 2 || - p[0] + WIDTH > &a[HEIGHT - 1][WIDTH - 1] && direction == -2 || - direction == 1 && (p[0] - a[0]) % WIDTH == WIDTH - 1 || - direction == -1 && - (p[0] - a[0]) % WIDTH == 0) // snake is not in the matrix - { - direction = 0; - return 1; - } else { - switch (direction) { - // Right - case 1: { - { - for (i = n; i > 0; i--) { - if ((p[0] + 1) == p[i]) // Right of the head is body - { - direction = 0; - return 2; - } - } - break; - } - } - // Up - case 2: { - { - for (i = n; i > 0; i--) { - if ((p[0] - WIDTH) == p[i]) // Up of the head is body - { - direction = 0; - return 2; - } - } - break; - } - } - // Left - case -1: { - { - for (i = n; i > 0; i--) { - if ((p[0] - 1) == p[i]) // Left of the head is body - { - direction = 0; - return 2; - } - } - break; - } - } - // Down - case -2: { - { - for (i = n; i > 0; i--) { - if ((p[0] + WIDTH) == p[i]) // Down of the head is body - { - direction = 0; - return 2; - } - } - break; - } - } - } - } - return 0; -} -inline void CheckInput() { - if (direction != -directiontemp) { - direction = directiontemp; - } -} - -#endif /* _SNAKE_H */ -void RandomApple(); -void CheckInput(); diff --git a/c/Snake/gotoxy_version/Clear.h b/c/Snake/gotoxy_version/Clear.h deleted file mode 100644 index 5fbfce8..0000000 --- a/c/Snake/gotoxy_version/Clear.h +++ /dev/null @@ -1,11 +0,0 @@ -#ifndef _CLEAR_H -#define _CLEAR_H - -#if defined(_WIN16) || defined(_WIN32) || defined(_WIN64) -#define Clear() printf("\033c"); -#elif defined(__linux__) || defined(__gnu_linux__) -#define Clear() printf("\033c"); -#elif defined(__APPLE__) -#endif - -#endif /* _CLEAR_H */ diff --git a/c/Snake/gotoxy_version/GetXYFromArrays.h b/c/Snake/gotoxy_version/GetXYFromArrays.h deleted file mode 100644 index 3f4ec68..0000000 --- a/c/Snake/gotoxy_version/GetXYFromArrays.h +++ /dev/null @@ -1,8 +0,0 @@ -#ifndef _GETXYFROMARRAYS_H -#define _GETXYFROMARRAYS_H -// only for char/byte -#define GETX_CHAR(CoordinateOrigin, ElementCoordinate, Column) \ - ((ElementCoordinate) - (CoordinateOrigin)) / (Column) -#define GETY_CHAR(CoordinateOrigin, ElementCoordinate, Column) \ - ((ElementCoordinate) - (CoordinateOrigin)) % (Column) -#endif /* _GETXYFROMARRAYS_H */ diff --git a/c/Snake/gotoxy_version/GlobalVar.h b/c/Snake/gotoxy_version/GlobalVar.h deleted file mode 100644 index 6a1e0cb..0000000 --- a/c/Snake/gotoxy_version/GlobalVar.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef _GLOBALVAR_H -#define _GLOBALVAR_H - -#include -#define WIDTH 40 -#define HEIGHT 20 - -// char HEAD = '@'; // The shape of snake head -// char BODY = 'O'; // The shape of snake body -#define HEAD '@' // The shape of snake head -#define HEAD_STRING "@" -#define BODY 'O' // The shape of snake body -#define BODY_STRING "O" -char a[HEIGHT][WIDTH] = {{BODY, BODY, BODY, HEAD}}; // The initial char is 0 -char *p[HEIGHT * WIDTH] = {&a[0][3], &a[0][2], &a[0][1], - &a[0][0]}; // p[0] stand for snake head - -int n = 3; // The length of snake body (without head) -int i, j; -signed char direction = 1; // 1.Right;2.Up;-1.Left;-2.Down;0.Exit -signed char directiontemp = 1; // 1.Right;2.Up;-1.Left;-2.Down;0.Exit -int delay = 200; // delay 0.2s(200ms) -bool isPause = 0; -#endif /* _GLOBALVAR_H */ diff --git a/c/Snake/gotoxy_version/GotoXY.h b/c/Snake/gotoxy_version/GotoXY.h deleted file mode 100644 index 2e03b37..0000000 --- a/c/Snake/gotoxy_version/GotoXY.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifndef _GOTOXY_H -#define _GOTOXY_H - -#if defined(_WIN16) || defined(_WIN32) || defined(_WIN64) -#define gotoxy(y, x) \ - { \ - COORD coord = {(x), (y)}; /* coord */ \ - SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), \ - coord); /* Move Cursor to coord */ \ - } -#elif defined(__linux__) || defined(__gnu_linux__) -#define gotoxy(y, x) printf("%c[%d;%df", 0x1B, ((y) + 1), ((x) + 1)) -#elif defined(__APPLE__) -#endif - -#endif /* _GOTOXY_H */ diff --git a/c/Snake/gotoxy_version/KeyMonitor.h b/c/Snake/gotoxy_version/KeyMonitor.h deleted file mode 100644 index 23f7435..0000000 --- a/c/Snake/gotoxy_version/KeyMonitor.h +++ /dev/null @@ -1,104 +0,0 @@ -#ifndef _KEYMONITOR_H -#define _KEYMONITOR_H -#include "GlobalVar.h" -#include -#if defined(_WIN16) || defined(_WIN32) || defined(_WIN64) -#include -#include -#include -#include - -#define KeyMonitor_Starter() \ - HANDLE hThread1 = CreateThread(NULL, 0, KeyMonitor, NULL, 0, NULL) -#define KeyMonitor_Stoper() CloseHandle(hThread1); -#elif defined(__linux__) || defined(__gnu_linux__) -#include -#include -#define KeyMonitor_Starter() \ - system("stty -icanon"); \ - pthread_attr_t attr; \ - pthread_t tid; \ - pthread_attr_init(&attr); \ - pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); \ - pthread_create(&tid, &attr, KeyMonitor, NULL); -#define KeyMonitor_Stoper() pthread_join(tid, NULL); -#elif defined(__APPLE__) -#endif - -// KeyMonitor Function(Different Platform return value type is different) -#if defined(_WIN16) || defined(_WIN32) || defined(_WIN64) -DWORD WINAPI -#elif defined(__linux__) || defined(__gnu_linux__) -void * -#elif defined(__APPLE__) -#endif -KeyMonitor(void *arg) // Direction Control:w,s,a,d-->Up Down Left Right -{ - char k; - while (1) { -#if defined(_WIN16) || defined(_WIN32) || defined(_WIN64) - k = _getch(); -#elif defined(__linux__) || defined(__gnu_linux__) - k = getchar(); -#elif defined(__APPLE__) -#endif - switch (k) { - case 'w': // Up - { - directiontemp = 2; - break; - } - case 's': // Down - { - directiontemp = -2; - break; - } - case 'a': // Left - { - directiontemp = -1; - break; - } - case 'd': // Right - { - directiontemp = 1; - break; - } - case 'j': // SpeedUp - { - delay = delay * 4 / 5; - break; - } - case 'k': // SpeedDown - { - delay = delay * 5 / 4; - break; - } - case 27: // ESC - { - printf("\nExit!\n"); - isPause = 0; - direction = 0; - directiontemp = 0; -#if defined(_WIN16) || defined(_WIN32) || defined(_WIN64) - return 0; -#elif defined(__linux__) || defined(__gnu_linux__) - return NULL; -#elif defined(__APPLE__) -#endif - break; - } - case ' ': // Space - { - if (isPause) { - printf("\nContinue!\n"); - } else { - printf("\nPause!\n"); - } - isPause = !isPause; - break; - } - } - } -} - -#endif /* _KEYMONITOR_H */ diff --git a/c/Snake/gotoxy_version/Move.h b/c/Snake/gotoxy_version/Move.h deleted file mode 100644 index 2dae8b5..0000000 --- a/c/Snake/gotoxy_version/Move.h +++ /dev/null @@ -1,54 +0,0 @@ -#ifndef _MOVE_H -#define _MOVE_H -#include "GetXYFromArrays.h" -#include "GlobalVar.h" -#include "GotoXY.h" -#define moveBody() \ - { \ - *p[n] = 0; \ - PRINT_STRING_XY((GETX_CHAR(a[0], p[n], WIDTH) + 2), \ - (GETY_CHAR(a[0], p[n], WIDTH) * 2), "_") \ - for (i = n; i > 0; i--) { \ - p[i] = p[i - 1]; \ - /* per part goes to the address of the next part of body*/ \ - } \ - *p[0] = BODY; \ - /* The First part of snake body come to snake head*/ \ - PRINT_STRING_XY((GETX_CHAR(a[0], p[0], WIDTH) + 2), \ - (GETY_CHAR(a[0], p[0], WIDTH) * 2), BODY_STRING) \ - } - -#define moveRight() \ - { \ - moveBody(); \ - p[0] = p[0] + 1; /* Move snake head */ \ - *p[0] = HEAD; \ - /* change the char of new head(new address)'s shape to HEAD */ \ - PRINT_STRING_XY((GETX_CHAR(a[0], p[0], WIDTH) + 2), \ - (GETY_CHAR(a[0], p[0], WIDTH) * 2), HEAD_STRING) \ - } -#define moveLeft() \ - { \ - moveBody(); \ - p[0] = p[0] - 1; \ - *p[0] = HEAD; \ - PRINT_STRING_XY((GETX_CHAR(a[0], p[0], WIDTH) + 2), \ - (GETY_CHAR(a[0], p[0], WIDTH) * 2), HEAD_STRING) \ - } -#define moveDown() \ - { \ - moveBody(); \ - p[0] = p[0] + WIDTH; \ - *p[0] = HEAD; \ - PRINT_STRING_XY((GETX_CHAR(a[0], p[0], WIDTH) + 2), \ - (GETY_CHAR(a[0], p[0], WIDTH) * 2), HEAD_STRING) \ - } -#define moveUp() \ - { \ - moveBody(); \ - p[0] = p[0] - WIDTH; \ - *p[0] = HEAD; \ - PRINT_STRING_XY((GETX_CHAR(a[0], p[0], WIDTH) + 2), \ - (GETY_CHAR(a[0], p[0], WIDTH) * 2), HEAD_STRING) \ - } -#endif /* _MOVE_H */ diff --git a/c/Snake/gotoxy_version/README.md b/c/Snake/gotoxy_version/README.md deleted file mode 100644 index a56c332..0000000 --- a/c/Snake/gotoxy_version/README.md +++ /dev/null @@ -1,4 +0,0 @@ -# Under construction - -- [x] Windows -- [ ] Linux diff --git a/c/Snake/gotoxy_version/Random.h b/c/Snake/gotoxy_version/Random.h deleted file mode 100644 index 50ae48a..0000000 --- a/c/Snake/gotoxy_version/Random.h +++ /dev/null @@ -1,5 +0,0 @@ -#ifndef _RANDOM_H -#define _RANDOM_H -#include -#define RANDOM_INT(MIN, MAX) (rand() % ((MAX) - (MIN)) + (MIN)) -#endif /* _RANDOM_H */ diff --git a/c/Snake/gotoxy_version/ShowMap.h b/c/Snake/gotoxy_version/ShowMap.h deleted file mode 100644 index 651529c..0000000 --- a/c/Snake/gotoxy_version/ShowMap.h +++ /dev/null @@ -1,26 +0,0 @@ -#ifndef _SHWOMAP_H -#define _SHWOMAP_H -#include "Clear.h" -#include "GlobalVar.h" -#include -#define ShowMap() \ - { \ - Clear(); \ - printf("Your Score is:\n"); /* (0,13) */ \ - for (i = 0; i < (WIDTH)*2; i++) \ - printf("_"); \ - printf("\n"); \ - for (i = 0; i < (HEIGHT); i++) { \ - for (j = 0; j < (WIDTH); j++) { \ - if (a[i][j] == 0) \ - printf("_|"); \ - else \ - printf("%c|", a[i][j]); \ - } \ - printf("\n"); \ - } \ - printf("\nw,s,a,d->Up Down Left Right;\nj,k->Speed " \ - "Up/Down;\nESC: Exit\n"); \ - } - -#endif /* _SHWOMAP_H */ diff --git a/c/Snake/gotoxy_version/Sleep.h b/c/Snake/gotoxy_version/Sleep.h deleted file mode 100644 index e611bd0..0000000 --- a/c/Snake/gotoxy_version/Sleep.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifndef _SLEEP_H -#define _SLEEP_H -#include "GlobalVar.h" -#include -#include -#include -#include -#include -#if defined(_WIN16) || defined(_WIN32) || defined(_WIN64) -#define SLEEPS(delay) Sleep(delay) -#elif defined(__linux__) || defined(__gnu_linux__) -#define SLEEPS(delay) usleep((delay)*1000) -#elif defined(__APPLE__) -#define SLEEPS(delay) usleep((delay)*1000) -#endif -#endif /* _SLEEP_H */ diff --git a/c/Snake/gotoxy_version/Snake.c b/c/Snake/gotoxy_version/Snake.c deleted file mode 100644 index 5cf1f48..0000000 --- a/c/Snake/gotoxy_version/Snake.c +++ /dev/null @@ -1,65 +0,0 @@ -#include "Snake.h" -int main() { - KeyMonitor_Starter(); - ShowMap(); - RandomApple(); - gotoxy(0, 14); - printf("%d", n - 3); - gotoxy(HEIGHT + 7, 40); - while (1) { - do { - SLEEPS(delay); - } while (isPause); - CheckInput(); - switch (isFail()) { - case 0: - break; - case 1: - gotoxy(HEIGHT + 7, 0); - printf("Fail!Don't hit the wall!\nYour Final Score is:%d\n", n - 3); - return -1; - break; - case 2: - gotoxy(HEIGHT + 7, 0); - printf("Fail!Don't eat your body!\nYour Final Score is:%d\n", n - 3); - return -1; - break; - } - - if (canEat()) { - n++; // length++ - p[n] = p[n - 1]; - gotoxy(0, 14); - printf("%d", n - 3); - gotoxy(HEIGHT + 7, 40); - RandomApple(); - } - switch (direction) // choose which direction to move - { - case 1: // Right - { - moveRight(); - break; - } - case 2: // Up - { - moveUp(); - break; - } - case -1: // Left - { - moveLeft(); - break; - } - case -2: // Down - { - moveDown(); - break; - } - } - if (direction == 0) { - break; - } - } - KeyMonitor_Stoper(); -} diff --git a/c/Snake/gotoxy_version/Snake.h b/c/Snake/gotoxy_version/Snake.h deleted file mode 100644 index 0c612db..0000000 --- a/c/Snake/gotoxy_version/Snake.h +++ /dev/null @@ -1,175 +0,0 @@ -#ifndef _SNAKE_H -#define _SNAKE_H -#include -#include -#include "Clear.h" -#include "GetXYFromArrays.h" -#include "GlobalVar.h" -#include "GotoXY.h" -#include "KeyMonitor.h" -#include "Move.h" -#include "Random.h" -#include "ShowMap.h" -#include "Sleep.h" -#if defined(_WIN16) || defined(_WIN32) || defined(_WIN64) -#include -#include -#include -#include -#elif defined(__linux__) || defined(__gnu_linux__) -#include -#elif defined(__APPLE__) -#endif - -/* Print String At (x,y) and make Cursor go to another place */ -#define PRINT_STRING_XY(x, y, content) \ - { \ - gotoxy((x), (y)); \ - printf("%s", (content)); \ - gotoxy(HEIGHT + 7, 40); \ - } - -/* Random Food */ -#define RandomApple() \ - { \ - srand(time(NULL)); \ - do \ - { \ - i = rand() % HEIGHT; \ - j = rand() % WIDTH; \ - /* if random location is 0 ->*;else find again and again*/ \ - } while (a[i][j] != 0); \ - a[i][j] = '*'; \ - PRINT_STRING_XY(((GETX_CHAR((a[0]), (&a[i][j]), (WIDTH))) + 2), \ - ((GETY_CHAR((a[0]), (&a[i][j]), (WIDTH))) * 2), "*"); \ - gotoxy(0, 62); \ - printf("Food is at (%02d,%02d)", i, j); \ - gotoxy(HEIGHT + 7, 40); \ - } - -// exec when(before) moving -_Bool canEat() -{ - switch (direction) - { - // Right - case 1: { - if (*(p[0] + 1) == '*') - { - return 1; - } - break; - } - // Up - case 2: { - if (*(p[0] - WIDTH) == '*') - { - return 1; - } - break; - } - // Left - case -1: { - if (*(p[0] - 1) == '*') - { - return 1; - } - break; - } - // Down - case -2: { - if (*(p[0] + WIDTH) == '*') - { - return 1; - } - break; - } - } - return 0; -} - -// exec when(before) moving -int isFail() -{ - if (p[0] - WIDTH < &a[0][0] && direction == 2 || - p[0] + WIDTH > &a[HEIGHT - 1][WIDTH - 1] && direction == -2 || - direction == 1 && (p[0] - a[0]) % WIDTH == WIDTH - 1 || - direction == -1 && - (p[0] - a[0]) % WIDTH == 0) // snake is not in the matrix - { - direction = 0; - return 1; - } - else - { - switch (direction) - { - // Right - case 1: { - { - for (i = n; i > 0; i--) - { - if ((p[0] + 1) == p[i]) // Right of the head is body - { - direction = 0; - return 2; - } - } - break; - } - } - // Up - case 2: { - { - for (i = n; i > 0; i--) - { - if ((p[0] - WIDTH) == p[i]) // Up of the head is body - { - direction = 0; - return 2; - } - } - break; - } - } - // Left - case -1: { - { - for (i = n; i > 0; i--) - { - if ((p[0] - 1) == p[i]) // Left of the head is body - { - direction = 0; - return 2; - } - } - break; - } - } - // Down - case -2: { - { - for (i = n; i > 0; i--) - { - if ((p[0] + WIDTH) == p[i]) // Down of the head is body - { - gotoxy(27, 0); - direction = 0; - return 2; - } - } - break; - } - } - } - } - return 0; -} - -#define CheckInput() \ - if (direction != -directiontemp) \ - { \ - direction = directiontemp; \ - } - -#endif /* _SNAKE_H */ diff --git a/c/Snake/gotoxy_version/test.c b/c/Snake/gotoxy_version/test.c deleted file mode 100644 index ca28565..0000000 --- a/c/Snake/gotoxy_version/test.c +++ /dev/null @@ -1,24 +0,0 @@ -#include "GlobalVar.h" -#include -#include -#include -void gotoxy(int y, int x) { printf("%c[%d;%df", 0x1B, ((y) + 1), ((x) + 1)); } -int main() { - for (i = 0; i < (WIDTH)*2; i++) - printf("_"); - printf("\n"); - for (i = 0; i < (HEIGHT); i++) { - for (j = 0; j < (WIDTH); j++) { - if (a[i][j] == 0) - printf("_|"); - else - printf("%c|", a[i][j]); - } - printf("\n"); - } - while (1) { - gotoxy(3, i++); - printf("%d", i); - gotoxy(HEIGHT + 7, 40); - } -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/.gitignore b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/.gitignore deleted file mode 100644 index 0efd629..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/.gitignore +++ /dev/null @@ -1,19 +0,0 @@ -*.obj -*.dll.manifest -*.dll -*.exe.manifest -*.exe -*.lib -*.pdb -*.ilk -*.exp -version.res -tests/*.pass -tests/*.bench -tests/pthread.h -tests/sched.h -tests/semaphore.h -tests/benchlib.o -tests/SIZES.* -tests/*.log -/.project diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ANNOUNCE b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ANNOUNCE deleted file mode 100644 index 0fbc5c1..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ANNOUNCE +++ /dev/null @@ -1,446 +0,0 @@ -PTHREADS4W RELEASE 3.0.0 (2017-01-01) --------------------------------------- -Web Site: https://sourceforge.net/projects/pthreads4w/ -Repository: https://sourceforge.net/p/pthreads4w/code -Releases: https://sourceforge.net/projects/pthreads4w/files -Maintainer: Ross Johnson - - -We are pleased to announce the availability of a new release of Pthreads4w -(a.k.a. Pthreads-win32), an Open Source Software implementation of -the Threads component of the SUSV3 Standard for Microsoft's Windows -(x86 and x64). Some relevant functions from other sections of SUSV3 are -also supported including semaphores and scheduling functions. See the -Conformance section below for details. - -Some common non-portable functions are also implemented for -additional compatibility, as are a few functions specific -to pthreads4w for easier integration with Windows applications. - -Pthreads4w is free software. With the exception of four files noted later, -Version 3.0.0 is distributed under the Apache License version 2.0 (APLv2). -The APLv2 is compatible with the GPLv3 and LGPLv3 licenses and therefore -this code may continue to be legally included within GPLv3 and LGPLv3 -projects. - -All version 1 and 2 releases will remain LGPL but version 2.11 will be -released under v3 of that license so that any modifications to pthreads4w -version 3 code that we backport to v2 will not pollute that code. - -The four files that will remain LGPL but change to v3 are files used to -configure the GNU environment builds: - - aclocal.m4 - configure.ac - GNUmakefile.in - tests/GNUmakefile.in - -For those who want to try the most recent changes, the SourceForge Git -repository is the one to use. The Sourceware CVS repository is synchronised -much less often and may be abandoned altogether. - -Release 2.9.1 was probably the last to provide pre-built libraries. The -supported compilers are now all available free for personal use. The MSVS -version should build out of the box using nmake. The GCC versions now make -use of GNU autoconf to generate a configure script which in turn creates a -custom config.h for the environment you use: MinGW or MinGW64, etc. - - -Acknowledgements ----------------- -This library is based originally on a Win32 pthreads -implementation contributed by John Bossom. - -The implementation of Condition Variables uses algorithms developed -by Alexander Terekhov and Louis Thomas. - -The implementation of POSIX mutexes was improved by Thomas Pfaff -and later by Alexander Terekhov. - -The implementation of Spinlocks and Barriers was contributed -by Ross Johnson. - -The implementation of read/write locks was contributed by -Aurelio Medina and improved (replaced) by Alexander Terekhov. - -An implementation of MCS queue-based locks (used internally) was contributed -by Vladimir Kliatchko. - -Many others have contributed significant time and effort to solve crucial -problems in order to make the library workable, robust and reliable. - -Thanks to Xavier Leroy for granting permission to use and modify his -LinuxThreads manual pages. - -Thanks to The Open Group for making the Single Unix Specification -publicly available - many of the manual pages included in the package -were extracted from it. - -There is also a separate CONTRIBUTORS file. This file and others are -on the web site: - - https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - -As much as possible, the ChangeLog file acknowledges contributions to the -code base in more detail. - - -Changes since the last release ------------------------------- -These are now documented in the NEWS file. -See the ChangeLog file also. - - -Known Bugs ----------- -These are now documented in the BUGS file. - - -Level of standards conformance ------------------------------- - -The following POSIX options are defined and set to 200809L: - - _POSIX_THREADS - _POSIX_THREAD_SAFE_FUNCTIONS - _POSIX_THREAD_ATTR_STACKSIZE - _POSIX_THREAD_PRIORITY_SCHEDULING - _POSIX_SEMAPHORES - _POSIX_READER_WRITER_LOCKS - _POSIX_SPIN_LOCKS - _POSIX_BARRIERS - -The following POSIX options are defined and set to -1: - - _POSIX_THREAD_ATTR_STACKADDR - _POSIX_THREAD_PRIO_INHERIT - _POSIX_THREAD_PRIO_PROTECT - _POSIX_THREAD_PROCESS_SHARED - - -The following POSIX limits are defined and set: - - _POSIX_THREAD_THREADS_MAX - _POSIX_SEM_VALUE_MAX - _POSIX_SEM_NSEMS_MAX - _POSIX_THREAD_KEYS_MAX - _POSIX_THREAD_DESTRUCTOR_ITERATIONS - PTHREAD_STACK_MIN - PTHREAD_THREADS_MAX - SEM_VALUE_MAX - SEM_NSEMS_MAX - PTHREAD_KEYS_MAX - PTHREAD_DESTRUCTOR_ITERATIONS - - -The following functions are implemented: - - --------------------------- - PThreads - --------------------------- - pthread_attr_init - pthread_attr_destroy - pthread_attr_getdetachstate - pthread_attr_getstackaddr - pthread_attr_getstacksize - pthread_attr_setdetachstate - pthread_attr_setstackaddr - pthread_attr_setstacksize - - pthread_create - pthread_detach - pthread_equal - pthread_exit - pthread_join - pthread_once - pthread_self - - pthread_cancel - pthread_cleanup_pop - pthread_cleanup_push - pthread_setcancelstate - pthread_setcanceltype - pthread_testcancel - - --------------------------- - Thread Specific Data - --------------------------- - pthread_key_create - pthread_key_delete - pthread_setspecific - pthread_getspecific - - --------------------------- - Mutexes - --------------------------- - pthread_mutexattr_init - pthread_mutexattr_destroy - pthread_mutexattr_getpshared - pthread_mutexattr_setpshared - pthread_mutexattr_gettype - pthread_mutexattr_settype (types: PTHREAD_MUTEX_DEFAULT - PTHREAD_MUTEX_NORMAL - PTHREAD_MUTEX_ERRORCHECK - PTHREAD_MUTEX_RECURSIVE ) - pthread_mutexattr_getrobust - pthread_mutexattr_setrobust (values: PTHREAD_MUTEX_STALLED - PTHREAD_MUTEX_ROBUST) - pthread_mutex_init - pthread_mutex_destroy - pthread_mutex_lock - pthread_mutex_trylock - pthread_mutex_timedlock - pthread_mutex_unlock - pthread_mutex_consistent - - --------------------------- - Condition Variables - --------------------------- - pthread_condattr_init - pthread_condattr_destroy - pthread_condattr_getpshared - pthread_condattr_setpshared - - pthread_cond_init - pthread_cond_destroy - pthread_cond_wait - pthread_cond_timedwait - pthread_cond_signal - pthread_cond_broadcast - - --------------------------- - Read/Write Locks - --------------------------- - pthread_rwlock_init - pthread_rwlock_destroy - pthread_rwlock_tryrdlock - pthread_rwlock_trywrlock - pthread_rwlock_rdlock - pthread_rwlock_timedrdlock - pthread_rwlock_rwlock - pthread_rwlock_timedwrlock - pthread_rwlock_unlock - pthread_rwlockattr_init - pthread_rwlockattr_destroy - pthread_rwlockattr_getpshared - pthread_rwlockattr_setpshared - - --------------------------- - Spin Locks - --------------------------- - pthread_spin_init - pthread_spin_destroy - pthread_spin_lock - pthread_spin_unlock - pthread_spin_trylock - - --------------------------- - Barriers - --------------------------- - pthread_barrier_init - pthread_barrier_destroy - pthread_barrier_wait - pthread_barrierattr_init - pthread_barrierattr_destroy - pthread_barrierattr_getpshared - pthread_barrierattr_setpshared - - --------------------------- - Semaphores - --------------------------- - sem_init - sem_destroy - sem_post - sem_wait - sem_trywait - sem_timedwait - sem_getvalue (# free if +ve, # of waiters if -ve) - sem_open (returns an error ENOSYS) - sem_close (returns an error ENOSYS) - sem_unlink (returns an error ENOSYS) - - --------------------------- - RealTime Scheduling - --------------------------- - pthread_attr_getschedparam - pthread_attr_setschedparam - pthread_attr_getinheritsched - pthread_attr_setinheritsched - pthread_attr_getschedpolicy (only supports SCHED_OTHER) - pthread_attr_setschedpolicy (only supports SCHED_OTHER) - pthread_getschedparam - pthread_setschedparam - pthread_getconcurrency - pthread_setconcurrency - pthread_attr_getscope - pthread_attr_setscope (only supports PTHREAD_SCOPE_SYSTEM) - sched_get_priority_max - sched_get_priority_min - sched_rr_get_interval (returns an error ENOTSUP) - sched_getaffinity - sched_setaffinity - sched_setscheduler (only supports SCHED_OTHER) - sched_getscheduler (only supports SCHED_OTHER) - sched_yield - - --------------------------- - Signals - --------------------------- - pthread_sigmask - pthread_kill (only supports zero sig value, - for thread validity checking) - - --------------------------- - Non-portable routines - --------------------------- - (See the README.NONPORTABLE file or HTML manual pages for usage.) - pthread_attr_getname_np - pthread_attr_setname_np - pthread_getname_np - pthread_setname_np - pthread_timedjoin_np - pthread_tryjoin_np - pthread_getw32threadhandle_np - pthread_timechange_handler_np - pthread_delay_np - pthread_getunique_np - pthread_attr_getaffinity_np - pthread_attr_setaffinity_np - pthread_getaffinity_np - pthread_setaffinity_np - pthread_mutexattr_getkind_np - pthread_mutexattr_setkind_np (types: PTHREAD_MUTEX_FAST_NP, - PTHREAD_MUTEX_ERRORCHECK_NP, - PTHREAD_MUTEX_RECURSIVE_NP, - PTHREAD_MUTEX_ADAPTIVE_NP, - PTHREAD_MUTEX_TIMED_NP) - pthread_num_processors_np - pthread_win32_getabstime_np - (The following four routines should no longer be required.) - pthread_win32_process_attach_np - pthread_win32_process_detach_np - pthread_win32_thread_attach_np - pthread_win32_thread_detach_np - - --------------------------- - Static Initializers - --------------------------- - PTHREAD_ONCE_INIT - PTHREAD_MUTEX_INITIALIZER - PTHREAD_RECURSIVE_MUTEX_INITIALIZER - PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP - PTHREAD_ERRORCHECK_MUTEX_INITIALIZER - PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP - PTHREAD_COND_INITIALIZER - PTHREAD_RWLOCK_INITIALIZER - PTHREAD_SPINLOCK_INITIALIZER - - --------------------------- - CPU Affinity Mask Support - --------------------------- - CPU_ZERO - CPU_EQUAL - CPU_COUNT - CPU_SET - CPU_CLR - CPU_ISSET - CPU_AND - CPU_OR - CPU_XOR - - -The library includes two non-API functions for creating cancellation -points in applications and libraries: - - pthreadCancelableWait - pthreadCancelableTimedWait - - -The following functions are not implemented: - - --------------------------- - RealTime Scheduling - --------------------------- - pthread_mutex_getprioceiling - pthread_mutex_setprioceiling - pthread_mutex_attr_getprioceiling - pthread_mutex_attr_getprotocol - pthread_mutex_attr_setprioceiling - pthread_mutex_attr_setprotocol - - --------------------------- - Fork Handlers - --------------------------- - pthread_atfork - - --------------------------- - Stdio - --------------------------- - flockfile - ftrylockfile - funlockfile - getc_unlocked - getchar_unlocked - putc_unlocked - putchar_unlocked - - --------------------------- - Thread-Safe C Runtime Library - --------------------------- - readdir_r - getgrgid_r - getgrnam_r - getpwuid_r - getpwnam_r - - --------------------------- - Signals - --------------------------- - sigtimedwait - sigwait - sigwaitinfo - - --------------------------- - General - --------------------------- - sysconf - - --------------------------- - Thread-Safe C Runtime Library (macros) - --------------------------- - strtok_r - asctime_r - ctime_r - gmtime_r - localtime_r - rand_r - - -Application Development Environments ------------------------------------- - -See the README file for more information. - - -Documentation -------------- - -For the authoritative reference, see the online POSIX -standard reference at: - - http://www.OpenGroup.org - -For POSIX Thread API programming, several reference books are -available: - - Programming with POSIX Threads - David R. Butenhof - Addison-Wesley (pub) - - Pthreads Programming - By Bradford Nichols, Dick Buttlar & Jacqueline Proulx Farrell - O'Reilly (pub) - -Enjoy! - -Ross Johnson diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/BUGS b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/BUGS deleted file mode 100644 index 748e444..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/BUGS +++ /dev/null @@ -1,121 +0,0 @@ ----------- -Known bugs ----------- - -1. Not strictly a bug, more of a gotcha. - - Under MS VC++ (only tested with version 6.0), a term_func - set via the standard C++ set_terminate() function causes the - application to abort. - - Notes from the MSVC++ manual: - 1) A term_func() should call exit(), otherwise - abort() will be called on return to the caller. - A call to abort() raises SIGABRT and the default signal handler - for all signals terminates the calling program with - exit code 3. - 2) A term_func() must not throw an exception. Therefore - term_func() should not call pthread_exit(), which - works by throwing an exception (pthreadVCE or pthreadVSE) - or by calling longjmp (pthreadVC). - - Workaround: avoid using pthread_exit() in C++ applications. Exit - threads by dropping through the end of the thread routine. - -2. Cancellation problems in C++ builds - - Milan Gardian - - [Note: It's not clear if this problem isn't simply due to the context - switch in pthread_cancel() which occurs unless the QueueUserAPCEx - library and driver are installed and used. Just like setjmp/longjmp, - this is probably not going to work well in C++. In any case, unless for - some very unusual reason you really must use the C++ build then please - use the C build pthreadVC2.dll or pthreadGC2.dll, i.e. for C++ - applications.] - - This is suspected to be a compiler bug in VC6.0, and also seen in - VC7.0 and VS .NET 2003. The GNU C++ compiler does not have a problem - with this, and it has been reported that the Intel C++ 8.1 compiler - and Visual C++ 2005 Express Edition Beta2 pass tests\semaphore4.c - (which exposes the bug). - - Workaround [rpj - 2 Feb 2002] - ----------------------------- - [Please note: this workaround did not solve a similar problem in - snapshot-2004-11-03 or later, even though similar symptoms were seen. - tests\semaphore4.c fails in that snapshot for the VCE version of the - DLL.] - - The problem disappears when /Ob0 is used, i.e. /O2 /Ob0 works OK, - but if you want to use inlining optimisation you can be much more - specific about where it's switched off and on by using a pragma. - - So the inlining optimisation is interfering with the way that cleanup - handlers are run. It appears to relate to auto-inlining of class methods - since this is the only auto inlining that is performed at /O1 optimisation - (functions with the "inline" qualifier are also inlined, but the problem - doesn't appear to involve any such functions in the library or testsuite). - - In order to confirm the inlining culprit, the following use of pragmas - eliminate the problem but I don't know how to make it transparent, putting - it in, say, pthread.h where pthread_cleanup_push defined as a macro. - - #pragma inline_depth(0) - pthread_cleanup_push(handlerFunc, (void *) &arg); - - /* ... */ - - pthread_cleanup_pop(0); - #pragma inline_depth() - - Note the empty () pragma value after the pop macro. This resets depth to the - default. Or you can specify a non-zero depth here. - - The pragma is also needed (and now used) within the library itself wherever - cleanup handlers are used (condvar.c and rwlock.c). - - Use of these pragmas allows compiler optimisations /O1 and /O2 to be - used for either or both the library and applications. - - Experimenting further, I found that wrapping the actual cleanup handler - function with #pragma auto_inline(off|on) does NOT work. - - MSVC6.0 doesn't appear to support the C99 standard's _Pragma directive, - however, later versions may. This form is embeddable inside #define - macros, which would be ideal because it would mean that it could be added - to the push/pop macro definitions in pthread.h and hidden from the - application programmer. - - [/rpj] - - Original problem description - ---------------------------- - - The cancellation (actually, cleanup-after-cancel) tests fail when using VC - (professional) optimisation switches (/O1 or /O2) in pthreads library. I - have not investigated which concrete optimisation technique causes this - problem (/Og, /Oi, /Ot, /Oy, /Ob1, /Gs, /Gf, /Gy, etc.), but here is a - summary of builds and corresponding failures: - - * pthreads VSE (optimised tests): OK - * pthreads VCE (optimised tests): Failed "cleanup1" test (runtime) - - * pthreads VSE (DLL in CRT, optimised tests): OK - * pthreads VCE (DLL in CRT, optimised tests): Failed "cleanup1" test - (runtime) - - Please note that while in VSE version of the pthreads library the - optimisation does not really have any impact on the tests (they pass OK), in - VCE version addition of optimisation (/O2 in this case) causes the tests to - fail uniformly - either in "cleanup0" or "cleanup1" test cases. - - Please note that all the tests above use default pthreads DLL (no - optimisations, linked with either static or DLL CRT, based on test type). - Therefore the problem lies not within the pthreads DLL but within the - compiled client code (the application using pthreads -> involvement of - "pthread.h"). - - I think the message of this section is that usage of VCE version of pthreads - in applications relying on cancellation/cleanup AND using optimisations for - creation of production code is highly unreliable for the current version of - the pthreads library. diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/Bmakefile b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/Bmakefile deleted file mode 100644 index 80cf135..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/Bmakefile +++ /dev/null @@ -1,72 +0,0 @@ -# This makefile is compatible with BCB make. Use "make -fBMakefile" to compile. -# -# The variables $DLLDEST and $LIBDEST hold the destination directories for the -# dll and the lib, respectively. Probably all that needs to change is $DEVROOT. -# -# Currently only the recommended pthreadBC.dll is built by this makefile. -# - - -PTW32_VER = 3 - -DEVROOT = . - -DLLDEST = $(DEVROOT)\DLL -LIBDEST = $(DEVROOT)\DLL - -DLLS = pthreadBC$(PTW32_VER).dll - -OPTIM = /O2 - -RC = brcc32 -RCFLAGS = -i. - -CFLAGS = /q /I. /DHAVE_CONFIG_H=1 /4 /tWD /tWM \ - /w-aus /w-asc /w-par - -#C cleanup code -BCFLAGS = $ (__PTW32_FLAGS) $(CFLAGS) - -OBJEXT = obj -RESEXT = res - -include common.mk - -all: clean $(DLLS) - -realclean: clean - if exist pthread*.dll del pthread*.dll - if exist pthread*.lib del pthread*.lib - if exist *.stamp del *.stamp - -clean: - if exist *.obj del *.obj - if exist *.ilk del *.ilk - if exist *.ilc del *.ilc - if exist *.ild del *.ild - if exist *.ilf del *.ilf - if exist *.ils del *.ils - if exist *.tds del *.tds - if exist *.pdb del *.pdb - if exist *.exp del *.exp - if exist *.map del *.map - if exist *.o del *.o - if exist *.i del *.i - if exist *.res del *.res - - -install: $(DLLS) - copy pthread*.dll $(DLLDEST) - copy pthread*.lib $(LIBDEST) - -$(DLLS): $(DLL_OBJS) $(RESOURCE_OBJS) - ilink32 /Tpd /Gi c0d32x.obj $(DLL_OBJS), \ - $@, ,\ - cw32mti.lib import32.lib, ,\ - $(RESOURCE_OBJS) - -.c.obj: - $(CC) $(OPTIM) $(BCFLAGS) -c $< - -.rc.res: - $(RC) $(RCFLAGS) $< diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/CONTRIBUTORS b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/CONTRIBUTORS deleted file mode 100644 index a254185..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/CONTRIBUTORS +++ /dev/null @@ -1,139 +0,0 @@ -Contributors (in approximate order of appearance) - -[See also the ChangeLog file where individuals are -attributed in log entries. Likewise in the FAQ file.] - -Ben Elliston bje at cygnus dot com - Initiated the project; - setup the project infrastructure (CVS, web page, etc.); - early prototype routines. -Ross Johnson Ross dot Johnson at dot homemail dot com dot au - early prototype routines; - ongoing project coordination/maintenance; - implementation of spin locks and barriers; - various enhancements; - bug fixes; - documentation; - testsuite. -Robert Colquhoun rjc at trump dot net dot au - Early bug fixes. -John E. Bossom john dot bossom at gmail dot com - Contributed substantial original working implementation; - bug fixes; -Anders Norlander anorland at hem2 dot passagen dot se - Early enhancements and runtime checking for supported - Win32 routines. -Tor Lillqvist tml at iki dot fi - General enhancements; - early bug fixes to condition variables. -Scott Lightner scott at curriculum dot com - Bug fix. -Kevin Ruland Kevin dot Ruland at anheuser-busch dot com - Various bug fixes. -Mike Russo miker at eai dot com - Bug fix. -Mark E. Armstrong avail at pacbell dot net - Bug fixes. -Lorin Hochstein lmh at xiphos dot ca - general bug fixes; bug fixes to condition variables. -Peter Slacik Peter dot Slacik at tatramed dot sk - Bug fixes. -Mumit Khan khan at xraylith dot wisc dot edu - Fixes to work with Mingw32. -Milan Gardian mg at tatramed dot sk - Bug fixes and reports/analyses of obscure problems. -Aurelio Medina aureliom at crt dot com - First implementation of read-write locks. -Graham Dumpleton Graham dot Dumpleton at ra dot pad dot otc dot telstra dot com dot au - Bug fix in condition variables. -Tristan Savatier tristan at mpegtv dot com - WinCE port. -Erik Hensema erik at hensema dot xs4all dot nl - Bug fixes. -Rich Peters rpeters at micro-magic dot com -Todd Owen towen at lucidcalm dot dropbear dot id dot au - Bug fixes to dll loading. -Jason Nye jnye at nbnet dot nb dot ca - Implementation of async cancellation. -Fred Forester fforest at eticomm dot net -Kevin D. Clark kclark at cabletron dot com -David Baggett dmb at itasoftware dot com - Bug fixes. -Paul Redondo paul at matchvision dot com -Scott McCaskill scott at 3dfx dot com - Bug fixes. -Jef Gearhart jgearhart at tpssys dot com - Bug fix. -Arthur Kantor akantor at bexusa dot com - Mutex enhancements. -Steven Reddie smr at essemer dot com dot au - Bug fix. -Alexander Terekhov TEREKHOV at de dot ibm dot com - Re-implemented and improved read-write locks; - (with Louis Thomas) re-implemented and improved - condition variables; - enhancements to semaphores; - enhancements to mutexes; - new mutex implementation in 'futex' style; - suggested a robust implementation of pthread_once - using a named mutex; - system clock change handling re CV timeouts; - bug fixes. -Thomas Pfaff tpfaff at gmx dot net - Changes to make C version usable with C++ applications; - re-implemented mutex routines to avoid Win32 mutexes - and TryEnterCriticalSection; - procedure to fix Mingw32 thread-safety issues. -Franco Bez franco dot bez at gmx dot de - procedure to fix Mingw32 thread-safety issues. -Louis Thomas lthomas at arbitrade dot com - (with Alexander Terekhov) re-implemented and improved - condition variables. -David Korn dgk at research dot att dot com - Ported to UWIN. -Phil Frisbie, Jr. phil at hawksoft dot com - Bug fix. -Ralf Brese Ralf dot Brese at pdb4 dot siemens dot de - Bug fix. -prionx at juno dot com prionx at juno dot com - Bug fixes. -Max Woodbury mtew at cds dot duke dot edu - POSIX versioning conditionals; - reduced namespace pollution; - idea to separate routines to reduce statically - linked image sizes. -Rob Fanner rfanner at stonethree dot com - Bug fix. -Michael Johnson michaelj at maine dot rr dot com - Bug fix. -Nicolas Barry boozai at yahoo dot com - Bug fixes. -Piet van Bruggen pietvb at newbridges dot nl - Bug fix. -Makoto Kato raven at oldskool dot jp - AMD64 port. -Panagiotis E. Hadjidoukas peh at hpclab dot ceid dot upatras dot gr - phadjido at cs dot uoi dot gr - Contributed the QueueUserAPCEx package which - makes preemptive async cancellation possible. -Will Bryant will dot bryant at ecosm dot com - Borland compiler patch and makefile. -Anuj Goyal anuj dot goyal at gmail dot com - Port to Digital Mars compiler. -Gottlob Frege gottlobfrege at gmail dot com - re-implemented pthread_once (version 2) - (pthread_once cancellation added by rpj). -Vladimir Kliatchko vladimir at kliatchko dot com - reimplemented pthread_once with the same form - as described by A.Terekhov (later version 2); - implementation of MCS (Mellor-Crummey/Scott) locks. -Ramiro Polla ramiro.polla at gmail dot com - static library auto init/cleanup on application - start/exit via RT hooks (MSC and GCC compilers only). -Daniel Richard G. skunk at iSKUNK dot org - Patches and cleanups for x86 and x64, particularly - across a range of MS build environments. -John Kamp john dot kamp at globalgraphics dot com - Patches to fix various problems on x64; brutal testing - particularly using high memory run environments. - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ChangeLog b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ChangeLog deleted file mode 100644 index f48750a..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ChangeLog +++ /dev/null @@ -1,5789 +0,0 @@ -2018-08-08 Ross Johnson - - * Makefile: "nmake realclean VC VC-static" and similar wasn't remaking pthread.obj. - * common.mk: changes to accommodate the above. - * GNUmakefile: use changes in common.mk but still has problem with - "make realclean GC GC-static" and similar. - * configure.ac (AC_INIT): package name change. - -2018-08-08 Mark Pizzolato - - * config.h (NEED_FTIME): Removed - * _ptw32.h (NEED_FTIME): Removed. - * ptw32_timespec.c (NEED_FTIME): Removed conditional. - * ptw32_relmillisecs: Fix long-standing bug in NEED_FTIME code; remove NEED_FTIME - and all !NEED_FTIME code; compare nanoseconds and convert to milliseconds - at the end. - * implement.h (NEED_FTIME): remove conditionals. - * pthread.h: Remove Borland compiler time types no longer needed. - * configure.ac (NEED_FTIME): Removed check. - -2018-08-07 Ross Johnson - - * GNUmakefile.in (DLL_VER): rename as PTW32_VER. - * Makefile (DLL_VER): Likewise. - * Bmakefile (DLL_VER): Likewise; does anyone use this anymore? - * pthread.h: Move internal library stuff from pthread.h to _pthw32.h - * _ptw32.h: As above. - * ANNOUNCE: Update. - * NEWS: Update. - * Makefile: Static libraries renamed to libpthreadV* - -2018-07-22 Mark Pizzolato - - * _ptw32.h: Restore support for compiling as static (with /MT or /MTd); - define int64_t and uint64_t as typedefs rather than #defines. - * dll.c: Likewise. - * implement.h: Likewise. - * need_errno.h: Likewise. - * pthread_detach.c: Likewise. - -2018-07-22 Carlo Bramini - - * context.h (ARM): Additional macros checked for ARM processors. - -2018-07-22 Ross Johnson - - * Makefile (all-tests-md): New; run the /MD build and tests from - all-tests-cflags. - * Makefile (all-tests-mt): New; run the /MT build and tests from - all-tests-cflags. - * Makefile (all-tests-cflags): retain; require all-tests-md and - all-tests-mt. - -2016-12-25 Ross Johnson - - * Change all license notices to the Apache License 2.0 - * LICENCE: New Apache License file - * NOTICE: New file. - * COPYING: Removed. - * COPYING.GPL: Removed. - -2016-12-20 Ross Johnson - - * implement.h (PThreadStateReuse): this thread state enum value - must be less than PThreadStateRunning to reflect an invalid thread - handle. - * pthread_kill.c: changed conditions for return of ESRCH. - * ptw32_destroy.c: copy HANDLEs rather than whole thread struct; - edit comment. - * pthread_self.c: set implicit thread handle state to PThreadStateRunning. - * pthread_create.c: set thread state to PThreadStateSuspended - regardless because it must have state >= PThreadStateRunning on return. - -2016-12-20 Ross Johnson - - * all (PTW32_*): rename to __PTW32_*. - (ptw32_*): rename to __ptw32_*. - (PtW32*): rename to __PtW32*. - * pthread.h (__PTW32_VERSION_MAJOR): = 3 - (__PTW32_VERSION_MINOR): = 0 - * GNUmakefile: removed; must now configure from GNUmakefile.in. - I.e. For either MinGW or MinGW-w64: - # autoheader - # autoconf - # ./configure - * pthread.h (PTHREAD_ONCE_INIT): for __PTW32_VERSION_MAJOR > 2, - reverse element values to conform to new pthread_once_t. - -2016-12-18 Ross Johnson - - * implement.h (__PTW32_TEST_SNEAK_PEEK): Defined in tests/test.h - to control what some tests see when sneaking a peek inside this - header. - * GNUMakefile.in: call tests "make realclean" - -2016-12-17 Ross Johnson - - * _ptw32.h: MINGW(all) include stdint.h to define all specific - size integers (int64_t etc). - -2016-12-17 Kyle Schwarz - - * _ptw32.h: MINGW6464 define pid_t as __int64. - -2016-04-01 Ross Johnson - - * _ptw32.h: Move more header stuff into here. - * pthread.h: Move stuff from here into _ptw32.h. - * implement.h: Likewise. - * sched.h (struct timespec): Wrap with extra condition check. - * pthread_win32_attach_detach.c: Source stdlib.h to define - _countof et. al. - -2016-03-31 Keith Marshall - - * aclocal.m4: New from MinGW32 patches for autoconf. - * configure.ac: Likewise. - * GNUmakefile.in: Likewise. - * install-sh: Likewise. - * _ptw32.h: Likewise. - * implement.h: Patched. - * pthread.h: Patched. - * sched.h: Patched. - * sem_open.c: Patched. - * semaphore.h: Patched. - * pthread_self.c: Patched. - -2016-03-28 Ross Johnson - - * ptw32_relmillisecs.c (pthread_win32_getabstime_np): New - platform-aware function to return the current time plus optional - offset. - * pthread.h (pthread_win32_getabstime_np): New exported function. - * ptw32_timespec.c: Conditionally compile only if NEED_FTIME config - flagged. - * sched.h: Update platform config flags for applications. - * semaphore.h: Likewise. - * pthread.h: Likewise. - -2016-03-25 Bill Parker - - * pthread_mutex_init.c: Memory allocation of robust mutex element - was not being checked. - -2016-02-29 Ross Johnson - - * GNUmakefile (MINGW_HAVE_SECURE_API): Moved to config.h. Undefined - for __MINGW32__; remove (make optional) forcing a specific C std. - * implement.h (uint64_t): Define for Visual Studio. - -2016-02-29 Keith Marshall - - * ptw32_timespec.c: Fix C90 warnings from GCC; int64_t -> uint64_t - -2016-02-18 Carey Gister - - * dll.c (DllMain): Should not be defined for static library builds. - Doing so prevents static linking with a dll library. - -2015-11-01 Anurag Sharma - - * ptw32_MCS_lock.c: Fix a race condition causing crashes. - This race condition was also analysed and reported with a slightly - different fix independently by Jonathan Brown at VMware. - -2015-11-01 Mark Smith - - * ptw32_relnillisecs.c: Fix erroneous 0-time waits, symptomizing as - busy-spinning eating CPU. When the time to wait is specified to be less - than 1 millisecond were erroneously rounded down to 0; Modify WinCE - dependency. - * ptw32_timespec.c: Remove NEED_FTIME conditionality. - -2015-06-31 Dimitry <> - - * sem_init.c: Remove double free() when NEED_SEM defined (for - early versions of WinCE). - -2014-05-29 Ross Johnson - - * autostatic.c: Move content to dll.c so autostatic no longer required. - * dll.c: Include content from autostatic.c. - * pthread.c (autostatic.c): Remove #include. - * common.mk (autostatic.*): remove from builds. - * Makefile (realclean): delete make.log.txt if present. - * GNUMakefile (realclean): Likewise. - -2014-05-28 Jaeeun Choi - - * pthread_mutex_init.c: Check and free malloced robustNode element if - init is returning an ENOSPC error. - -2013-12-10 Ross Johnson - - * Makefile (*-small-static): Removed all small-static targets in the MS - toolchain builds due to failures of TLS in apps linked with these - library builds, specifically fails tests/semaphore3.c. The other static - builds pass this test. - * dll.c: Remove unused MinGW static linking hooks; See autostatic.c. - Hope to incorporate a working set of hooks here for gcc that supports - PIMAGE_TLS_CALLBACK later at which point autostatic.c will be required - only for older compilers. - -2013-12-09 Ross Johnson - - * Makefile (.rc.res): Add logic to extract target CPU from different - environments. - -2013-07-23 Keith Clanton - - * create.c: Don't apply cpu affinity from thread attributes for WINCE; - bug fix. - -2013-07-23 Ross Johnson - - * config.h (HAVE_CPU_AFFINITY): Defined. - * several (WINCE): Substitute HAVE_CPU_AFFINITY where appropriate. - -2013-07-17 Ross Johnson - - * pthread_getname_np.c: Replace strncpy_s with strncpy to support older - MSVCRT.DLLs. - * pthread_attr_getname_np.c: Likewise. - -2013-06-19 Ross Johnson - - * pthread_attr_init.c: Initialise thread name element. - * create.c: Initialise thread name from attributes. - -2013-06-13 Ross Johnson - - * pthread_setname_np.c: Initial version. - * pthread_getname_np.c: Initial version. - * pthread_attr_setname_np.c: Initial version. - * pthread_attr_getname_np.c: Initial version. - * pthread.h: Add new prototypes. - * implement.h (pthread_attr_t_): Add "thrname" element. - * (__ptw32_thread_t): Add "name" element. - -2013-06-06 Ross Johnson - - * pthread.h (_POSIX_THREAD_ATTR_STACKADDR): Now set to -1. The API - prototypes are defined but return ENOSYS; previously the addr value was - stored in the attribute struct and retreivable but unused. - * pthread_attr_setstackaddr.c: Should return ENOSYS rather than silently - ignore the setting. - * pthread_attr_getstackaddr.c: Likewise. - * pthread_attr_getaffinity_np.c: Initial version. - * pthread_attr_setaffinity_np.c: Initial version. - -2013-05-01 Andrew Chernow - - * dll.c: Add invocation of thread detach logic for static linked - applications for MSVC8.0 or later builds. - -2012-12-19 Jason Baker - - * pthread_win32_attach_detach_np.c (pthread_win32_process_attach_np): - Fix function calls involving TCHAR. - -2012-10-29 Ross Johnson - - * sem_destroy.c: Remove NULL argument checks. These are only useful - to guard against some uninitialised arguments, not an invalid sem_t. - * sem_wait.c: Likewise. - * sem_post.c: Likewise. - * sem_post_multiple.c: Likewise. - * sem_timedwait.c: Likewise. - * sem_trywait.c: Likewise. - * ptw32_semwait.c: Likewise. - -2012-10-28 Ross Johnson - - * implement.h: sem_t_ replace internal state mutex with MCS lock. - * sem_init.c: Rewrite to use MCS lock rather than mutex. - * sem_destroy.c: Likewise. - * sem_wait.c: Likewise. - * sem_post.c: Likewise. - * sem_post_multiple.c: Likewise. - * sem_timedwait.c: Likewise. - * sem_trywait.c: Likewise. - * ptw32_semwait.c: Likewise. - -2012-10-26 sicaf-- at hanmail dot net - - * error.c: For WinCE use a more specific cast. - * implement.h: For WinCE don't include process.h. - * pthread_win32_attach_detach_np.c: For WinCE don't restrict QUserEx.dll - search to system path. - -2012-10-24 Stephane Clairet - - * pthread_key_delete.c: Bug fix - move keylock release to after the - while loop. (This bug first was introduced at release 2.9.1) - -2012-10-16 Ross Johnson - - * Makefile: Remove SDK environment setting; now needs to be done - explicitly before running any nmake. - * GNUmakefile: Move per command-line ARCH setting to TESTS_ENV. - -2012-10-04 Ross Johnson - - * pthread_tryjoin_np.c: New API - * pthread.c (pthread_try_join_np): Added. - * common.mk (pthread_tryjoin_np): Added. - * pthread.h (pthread_tryjoin_np): Added. - * NEWS: Updated. - * README: Updated. - * ANNOUNCE: Updated. - -2012-10-02 Ross Johnson - - * sched.h (cpu_set_t): Redefined. - * implement.h (_sched_cpu_set_vector_): Created as the private equivalent - of cpu_set. - (pthread_thread_t_.cpuset): Type change. - * sched_setaffinity.c: Reflect changes to cpu_set_t and _sched_cpu_set_vector_. - * pthread_setaffinity.c: Likewise. - * create.c: Likewise. - * pthread_self.c: Likewise. - * ptw32_new.c: Likewise. - -2012-09-28 Ross Johnson - - * pthread.c: pulls all individual source modules into a single - translation unit. - * common.mk: Remove everything related to the non-inlined dll targets. - This removes all the intermediate .c files that #include other .c files - except for pthread.c. - * Makefile: Remove and rename targets; remove or edit variables. All - of this is to remove the intermediate translation unit aggregation - source files. - * GNUmakefile: Likewise. - * attr.c: Removed. - * barrier.c: Removed. - * cancel.c: Removed. - * condvar.c: Removed. - * exit.c: Removed. - * fork.c: Removed. - * misc.c: Removed. - * mutex.c: Removed. - * nonportable.c: Removed. - * private.c: Removed. - * rwlock.c: Removed. - * sched.c: Removed. - * spin.c: Removed. - * sync.c: Removed. - * tsd.c: Removed. - -2012-09-28 Ross Johnson - - * Makefile: expand on rudimentary install target; add DEST_LIB_NAME - variable defaulting to "pthread.lib". - * GNUmakefile: Add install target similar to Makefile with DEST_LIB_NAME - defaulting to "libpthread.a". - -2012-09-28 Daniel Richard. G - - * all: #include; renamed HAVE_PTW32_CONFIG_H define in - build files to HAVE_CONFIG_H since we no longer need a - uniquely-named symbol for this. - * Bmakefile: Removed _WIN32_WINNT assignment from build files since - this is now handled in source. - * Wmakefile: Likewise. - * Makefile: Added mkdir invocations to "install" target. - * common.mk: Elaborated the pthread.$(OBJEXT) dependency list. - * pthread.h: Removed the #include"config.h" bit. - -2012-09-23 Ross Johnson - - * GNUmakefile: Modify "all-tests" to use new targets in tests - GNUmakefile. - * Makefile: Similarly. - -2012-09-22 Daniel Richard. G - - * GNUmakefile: Reordered the command lines in the "help" target - to match the ordering of the targets in the makefile, which IMO - is nicer to the eye; tweaked some of the parentheticals for better - clarity; delete *.manifest files, in case the user just finished - doing an MSVC build. - * Makefile: Use *.static_stamp for the static targets instead of - *.static; added a note re VC++6 and /EHs vs. /EHa; reordered the - targets, and added a number of new ones (e.g. VSE-small-static); - added a note recommending *-inlined and *-small-static to make - things a little easier for users bewildered by the large number of - targets; reworked the all-tests[-cflags] targets so that (1) more - useful targets are built first (the small-static targets make it - easier to track down compilation errors), (2) *-debug build and - test targets can be used, (3) less-useful build/test permutations - are enabled only if EXHAUSTIVE and/or MORE_EXHAUSTIVE is defined, - and (4) /MDd and /MTd are covered too; "nmake all-tests-cflags - EXHAUSTIVE=1 MORE_EXHAUSTIVE=1" takes a few hours to run; moved - some of the VCE targets up, since the pattern in the file was - already to list VCE targets first, then VSE, then VC; actually - touch the stamp file in the stamp targets. - * README.NONPORTABLE: It's "DllMain", not "dllMain". - * common.mk: Start of an attempt to define dependencies for - pthread.$(OBJEXT). - * implement.h: Generalized __PTW32_BROKEN_ERRNO into - PTW32_USES_SEPARATE_CRT; don't do the autostatic-anchoring thing - if we're not building the library! - * pthread.h: Moved the __PTW32_CDECL bit into sched.h. pthread.h - already #includes sched.h, so the latter is a good place to put - definitions that need to be shared in common; severely simplified - the errno declaration for Open Watcom, made it applicable only to - Open Watcom, and made the comment less ambiguous; updated the long - comment describing __PTW32_BROK^WPTW32_USES_SEPARATE_CRT; added - (conditional) declaration of pthread_win32_set_terminate_np(), as - well as __ptw32_terminate_handler (so that eh.h doesn't have to get - involved). - * pthread_cond_wait.c: Missed a couple of errno conversions. - * pthread_mutex_consistent.c: Visual Studio (either 2010 or 2008 - Express, don't recall now) actually errored out due to charset - issues in this file, so I've replaced non-ASCII characters with - ASCII approximations. - * ptw32_threadStart.c: Big rewrite of __ptw32_threadStart(). - Everything passes with this, except for GCE (and I can't figure - out why). - * sched.h: Moved the __PTW32_CDECL section here (and made it - idempotent); need to #include for size_t (one of the test - programs #includes sched.h as the very first thing); moved the - DWORD_PTR definition up, since it groups better with the pid_t - definition; also need ULONG_PTR, don't need PDWORD_PTR; can't use - PTW32_CONFIG_MSVC6, because if you only #include sched.h you - don't get that bit in pthread.h; use a cpp symbol - (__PTW32_HAVE_DWORD_PTR) to inhibit defining *_PTR if needed. Note - that this isn't #defined inside the conditional, because there are - no other instances of these typedefs that need to be disabled, and - sched.h itself is already protected against multiple inclusion; - DWORD_PTR can't be size_t, because (on MSVC6) the former is "unsigned - long" and the latter is "unsigned int" and C++ doesn't see them as - interchangeable; minor edit to the comment... I don't like saying - "VC++" without the "Microsoft" qualifier; use __PTW32_CDECL instead of - a literal __cdecl (this was why I moved the __PTW32_CDECL bit into this - file). - * semaphore.h: Put in another idempotentized __PTW32_CDECL bit here; - use __PTW32_CDECL instead of __cdecl, and fixed indentation of function - formal parameters. - -2012-09-21 Ross Johnson - - * create.c: Major changes to incorporate CPU affinity inheritance. - * pthread_self.c: Likewise. - * ptw32_new.c (cpuset): Initialise new pthread_thread_t element. - * pthread.h (DWORD_PTR): Conditional definition moved to sched.h. - * sched.h (DWORD_PTR): As above; other changes. - * sem_post.c: Fix errno handling and restructure. - * sem_getvalue.c: Fix return value and restructure. - -2012-09-18 Ross Johnson - - * sched_setaffinity.c: New API to set process CPU affinity in POSIX - context; compatibility with Linux. - * pthread_setaffinity.c: Likewise. - * implement.h (pthread_t_): Added cpuset element. - * sched.h: Added new prototypes. - * sched.h (cpu_set_t): Support for new process and thread affinity API. - * pthread.h: Added new prototypes. - -2012-09-16 Ross Johnson - - * README (Version numbering): Changes back to major.minor.micro. - * README.NONPORTABLE: Updated description around process/thread - attach/detach routines. - -2012-09-05 Daniel Richard. G - - * implement.h: whitespace adjustment. - * dll.c: Facilitate __PTW32_STATIC_LIB being defined in a header file. - -2012-09-04 Ross Johnson - - * Makefile (VCEFLAGS): Changed from /EHsc to /EHs which fixed a problem - in tests/once3.c which was causing it to hang. - -2012-09-03 Ross Johnson - - * Makefile: Remove descriptive info from help target, just list the - available targets. Output tends to be poorly formatted and cluttered - otherwise. - (VCE-static): Add VC++ static build target. - (VCE-small-static): Likewise. - (VCE-small-static-debug): Likewise. - (VCE-small-static-debug): Likewise. - -2012-09-02 Ross Johnson - - * All: correct spelling to 'cancellation'. - -2012-08-31 Ross Johnson - - * pthread_attr_getschedpolicy.c: Remove pedantic arg check. - * pthread_getschedparam.c: Likewise. - * pthread_mutex_timelock.c: Restructure to address unreached final - return statement. - -2012-08-31 Daniel Richard. G - - * implement.h (INLINE): only define if building the inlined make targets. G++ - complained about undefined reference to __ptw32_robust_mutex_remove() because it - appears in separate compilation units for "make GCE". - -2012-08-29 Ross Johnson - - * ptw32_MCS_lock.c (__ptw32_mcs_flag_wait): Fix cast in first 'if' statement. - * pthread_mutex_consistent.c (comment): Fix awkward grammar. - * pthread_mutexattr_init.c: Initialize robustness element. - -2012-08-29 Daniel Richard. G - - * implement.h (__PTW32_INTERLOCKED_SIZE): Define as long or LONGLONG. - (__PTW32_INTERLOCKED_SIZEPTR): Define as long* or LONGLONG*. - * pthread_attr_getschedpolicy.c (SCHED_MAX): Fix cast. - * ptw32_mutex_check_need_init.c: Fix static mutexattr_t struct initializations. - * ptw32_threadStart.c (ExceptionFilter): Add cast. - * ptw32_throw.c: Add cast. - -2012-08-18 Ross Johnson - - * pthread_timedjoin_np.c: New non-portable function. - * common.mk (pthread_timedjoin_np): Add new function. - * nonportable.c (pthread_timedjoin_np): Likewise. - -2012-08-16 Daniel Richard. G - - * pthread.h (__PTW32_CONFIG_MINGW): Defined to simplify complex macro combination. - * (__PTW32_CONFIG_MSVC6): Likewise. - * (__PTW32_CONFIG_MSVC8): Likewise. - * autostatic.c: Substitute new macros. - * create.c: Likewise. - * pthread_cond_wait.c: Likewise. - * pthread_exit.c: Likewise. - * pthread_once.c: Likewise. - * pthread_rwlock_timedwrlock.c: Likewise. - * pthread_rwlock_wrlock.c: Likewise. - * pthread_win32_attach_detach_np.c: Likewise. - * ptw32_relmillisecs.c: Likewise. - * ptw32_threadDestroy.c: Likewise. - * ptw32_threadStart.c: Likewise. - * ptw32_throw.c: Likewise. - * sem_timedwait.c: Likewise. - * sem_wait.c: Likewise. - * implement.h: Likewise. - * sched.h: Likewise. - -2012-08-11 Ross Johnson - - * common.mk (default_target): restore previous behaviour of outputing - useful help when "make" is run without a target argument. - -2012-08-11 Daniel Richard. G - - * autostatic.c (__ptw32_autostatic_anchor): new function; other - changes aimed at de-abstracting functionality. - * impliment.h (__ptw32_autostatic_anchor): dummy reference to - ensure that autostatic.o is always linked into static applications. - * GNUmakefile: Various improvements. - * Makefile: Likewise. - -2012-03-19 Ross Johnson - - * implement.h: Fix interlocked pointer casting under VC++ x64. - -2012-03-19 Ross Johnson - - * implement.h (__ptw32_spinlock_check_need_init): added missing - forward declaration. - -2012-07-19 Daniel Richard. G - - * common.mk: New; macros common to all build environment makefiles. - * Bmakefile: Include new common.mk - * Makefile: Likewise; various fixes; added normal and small objects - static build. - * GNUmakefile: Likewise. - -2012-03-18 Ross Johnson - - * create.c (pthread_create): add __cdecl attribute to thread routine - arg - * implement.h (pthread_key_t): add __cdecl attribute to destructor - element - (ThreadParms): likewise for start element - * pthread.h (pthread_create): add __cdecl to prototype start arg - (pthread_once): likewise for init_routine arg - (pthread_key_create): likewise for destructor arg - (__ptw32_cleanup_push): replace type of routine arg with previously - defined __ptw32_cleanup_callback_t - * pthread_key_create.c: add __cdecl attribute to destructor arg - * pthread_once.c: add __cdecl attribute to init_routine arg - * ptw32_threadStart.c (start): add __cdecl to start variable type - - -2011-07-06 Ross Johnson - - * pthread_cond_wait.c (pragma inline_depth): this is almost redundant - now nevertheless fixed thei controlling MSC_VER from "< 800" to - "< 1400" (i.e. any prior to VC++ 8.0). - * pthread_once.ci (pragma inline_depth): Likewise. - * pthread_rwlock_timedwrlock.ci (pragma inline_depth): Likewise. - * pthread_rwlock_wrlock.ci (pragma inline_depth): Likewise. - * sem_timedwait.ci (pragma inline_depth): Likewise. - * sem_wait.ci (pragma inline_depth): Likewise. - -2011-07-05 Ross Johnson - - * pthread_win32_attach_detach_np.c: Use strncat_s if available - to removei a compile warning; MingW supports this routine but we - continue to use strncat anyway there because it is secure if - given the correct parameters; fix strncat param 3 to avoid - buffer overrun exploitation potential. - -2011-07-03 Ross Johnson - - * pthread_spin_unlock.c (EPERM): Return success if unlocking a lock - that is not locked, because single CPU machines wrap a - PTHREAD_MUTEX_NORMAL mutex, which returns success in this case. - * pthread_win32_attach_detach_np.c (QUSEREX.DLL): Load from an - absolute path only which must be the Windows System folder. - -2011-07-03 Daniel Richard G. - - * Makefile (_WIN32_WINNT): Removed; duplicate definition in - implement.h; more cleanup and enhancements. - -2011-07-02 Daniel Richard G. - - * Makefile: Cleanups and implovements. - * ptw32_MCS_locks.c: Casting fixes. - * implement.h: Interlocked call and argument casting macro fixes - to support older and newer build environments. - -2011-07-01 Ross Johnson - - * *.[ch] (__PTW32_INTERLOCKED_*): Redo 23 and 64 bit versions of these - macros and re-apply in code to undo the incorrect changes from - 2011-06-29; remove some size_t casts which should not be required - and may be problematic.a - There are now two sets of macros: - PTW32_INTERLOCKED_*_LONG which work only on 32 bit integer variables; - PTW32_INTERLOCKED_*_SIZE which work on size_t integer variables, i.e. - LONG for 32 bit systems and LONGLONG for 64 bit systems. - * implement.h (MCS locks): nextFlag and waitFlag are now HANDLE type. - * ptw32_MCS_locks.c: Likewise. - * pthread.h (#include ): Removed. - * ptw32_throw.c (#include ): Added. - * ptw32_threadStart.c (#include ): Added. - * implement.h (#include ): Added. - -2011-06-30 Ross Johnson - - * pthread_once.c: Tighten 'if' statement casting; fix interlocked - pointer cast for 64 bit compatibility (missed yesterday); remove - the superfluous static cleanup routine and call the release routine - directly if popped. - * create.c (stackSize): Now type size_t. - * pthread.h (struct __ptw32_thread_t_): Rearrange to fix element alignments. - -2011-06-29 Daniel Richard G. - - * ptw32_relmillisecs.c (ftime): - _ftime64_s() is only available in MSVC 2005 or later; - _ftime64() is available in MinGW or MSVC 2002 or later; - _ftime() is always available. - * pthread.h (long long): Not defined in older MSVC 6. - * implement.h (long long): Likewise. - * pthread_getunique_np.c (long long): Likewise. - -2011-06-29 Ross Johnson - - * *.[ch] (__PTW32_INTERLOCKED_*): These macros should now work for - both 32 and 64 bit builds. The MingW versions are all inlined asm - while the MSVC versions expand to their Interlocked* or Interlocked*64 - counterparts appropriately. The argument type have also been changed - to cast to the appropriate value or pointer size for the architecture. - -2011-05-29 Ross Johnson - - * *.[ch] (#ifdef): Extended cleanup to whole project. - -2011-05-29 Daniel Richard G. - - * Makefile (CC): Define CC to allow use of other compatible - compilers such as the Intel compilter icl. - * implement.h (#if): Fix forms like #if HAVE_SOMETHING. - * pthread.h: Likewise. - * sched.h: Likewise; __PTW32_LEVEL_* becomes __PTW32_SCHED_LEVEL_*. - * semaphore.h: Likewise. - -2011-05-11 Ross Johnson - - * ptw32_callUserDestroyRoutines.c (terminate): Altered includes - to match ptw32_threadStart.c. - * GNUmakefile (GCE-inlined-debug, DOPT): Fixed. - -2011-04-31 Ross Johnson - - * (robust mutexes): Added this API. The API is not - mandatory for implementations that don't support PROCESS_SHARED - mutexes, nevertheless it was considered useful both functionally - and for source-level compatibility. - -2011-03-26 Ross Johnson - - * pthread_getunique_np.c: New non-POSIX interface for compatibility - with some other implementations; returns a 64 bit sequence number - that is unique to each thread in the process. - * pthread.h (pthread_getunique_np): Added. - * global.c: Add global sequence counter for above. - * implement.h: Likewise. - -2011-03-25 Ross Johnson - - * (cancelLock): Convert to an MCS lock and rename to stateLock. - * (threadLock): Likewise. - * (keyLock): Likewise. - * pthread_mutex*.c: First working robust mutexes. - -2011-03-11 Ross Johnson - - * implement.h (__PTW32_INTERLOCKED_*CREMENT macros): increment/decrement - using ++/-- instead of add/subtract 1. - * ptw32_MCS_lock.c: Make casts consistent. - -2011-03-09 Ross Johnson - - * implement.h (__ptw32_thread_t_): Add process unique sequence number. - * global.c: Replace global Critical Section objects with MCS - queue locks. - * implement.h: Likewise. - * pthread_cond_destroy.c: Likewise. - * pthread_cond_init.c: Likewise. - * pthread_detach.c: Likewise. - * pthread_join.c: Likewise. - * pthread_kill.c: Likewise. - * pthread_mutex_destroy.c: Likewise. - * pthread_rwlock_destroy.c: Likewise. - * pthread_spin_destroy.c: Likewise. - * pthread_timechange_handler_np.c: Likewise. - * ptw32_cond_check_need_init.c: Likewise. - * ptw32_mutex_check_need_init.c: Likewise. - * ptw32_processInitialize.c: Likewise. - * ptw32_processTerminate.c: Likewise. - * ptw32_reuse.c: Likewise. - * ptw32_rwlock_check_need_init.c: Likewise. - * ptw32_spinlock_check_need_init.c: Likewise. - -2011-03-06 Ross Johnson - - * several (MINGW64): Cast and call fixups for 64 bit compatibility; - clean build via x86_64-w64-mingw32 cross toolchain on Linux i686 - targeting x86_64 win64. - * ptw32_threadStart.c (__ptw32_threadStart): Routine no longer attempts - to pass [unexpected C++] exceptions out of scope but ends the thread - normally setting EINTR as the exit status. - * ptw32_throw.c: Fix C++ exception throwing warnings; ignore - informational warning. - * implement.h: Likewise with the corresponding header definition. - -2011-03-04 Ross Johnson - - * implement.h (__PTW32_INTERLOCKED_*): Mingw32 does not provide - the __sync_* intrinsics so implemented them here as macro - assembler routines. MSVS Interlocked* are emmitted as intrinsics - wherever possible, so we want mingw to match it; Extended to - include all interlocked routines used by the library; implemented - x86_64 versions also. - * ptw32_InterlockedCompareExchange.c: No code remaining here. - * ptw32_MCS_lock.c: Converted interlocked calls to use new macros. - * pthread_barrier_wait.c: Likewise. - * pthread_once.c: Likewise. - * ptw32_MCS_lock.c (__ptw32_mcs_node_substitute): Name changed to - __ptw32_mcs_node_transfer. - -2011-02-28 Ross Johnson - - * ptw32_relmillisecs.c: If possible, use _ftime64_s or _ftime64 - before resorting to _ftime. - -2011-02-27 Ross Johnson - - * sched_setscheduler.c: Ensure the handle is closed after use. - * sched_getscheduler.c: Likewise. - * pthread.h: Remove POSIX compatibility macros; don't define - timespec if already defined. - * context.h: Changes for 64 bit. - * pthread_cancel.c: Likewise. - * pthread_exit.c: Likewise. - * pthread_spin_destroy.c: Likewise. - * pthread_timechange_handler_np.c: Likewise. - * ptw32_MCS_lock.c: Likewise; some of these changes may - not be compatible with pre Windows 2000 systems; reverse the order of - the includes. - * ptw32_threadStart.c: Likewise. - * ptw32_throw.c: Likewise. - -2011-02-13 Ross Johnson - - * pthread_self: Add comment re returning 'nil' value to - indicate failure only to win32 threads that call us. - * pthread_attr_setstackaddr: Fix comments; note this - function and it's compliment are now removed from SUSv4. - -2011-02-12 Ross Johnson - - README.NONPORTABLE: Record a description of an obvious - method for nulling/comparing/hashing pthread_t using a - union; plus and investigation of a change of type for - pthread_t (to a union) to neutralise any padding bits and - bytes if they occur in pthread_t (the current pthread_t struct - does not contain padding AFAIK, but porting the library to a - future architecture may introduce them). Padding affects - byte-by-byte copies and compare operations. - -2010-11-16 Ross Johnson - - * ChangeLog: Add this entry ;-) - Restore entries from 2007 through 2009 that went missing - at the last update. - -2010-06-19 Ross Johnson - - * ptw32_MCS_lock.c (__ptw32_mcs_node_substitute): Fix variable - names to avoid using C++ keyword ("new"). - * implement.h (__ptw32_mcs_node_substitute): Likewise. - * pthread_barrier_wait.c: Fix signed/unsigned comparison warning. - -2010-06-18 Ramiro Polla - - * autostatic.c: New file; call pthread_win32_process_*() - libary init/cleanup routines automatically on application start - when statically linked. - * pthread.c (autostatic.c): Included. - * pthread.h (declspec): Remove import/export defines if compiler - is MINGW. - * sched.h (declspec): Likewise. - * semaphore.h (declspec): Likewise. - * need_errno.h (declspec): Likewise. - * Makefile (autostatic.obj): Add for small static builds. - * GNUmakefile (autostatic.o): Likewise. - * NEWS (Version 2.9.0): Add changes. - * README.NONPORTABLE (pthread_win32_process_*): Update - description. - -2010-06-15 Ramiro Polla - - * Makefile: Remove linkage with the winsock library by default. - * GNUmakefile: Likewise. - * pthread_getspecific.c: Likewise by removing calls to WSA - functions. - * config.h (RETAIN_WSALASTERROR): Can be defined if necessary. - -2010-01-26 Ross Johnson - - * ptw32_MCS_lock.c (__ptw32_mcs_node_substitute): New routine - to allow relocating the lock owners thread-local node to somewhere - else, e.g. to global space so that another thread can release the - lock. Used in pthread_barrier_wait. - (__ptw32_mcs_lock_try_acquire): New routine. - * pthread_barrier_init: Only one semaphore is used now. - * pthread_barrier_wait: Added an MCS guard lock with the last thread - to leave the barrier releasing the lock. This removes a deadlock bug - observed when there are greater than barrier-count threads - attempting to cross. - * pthread_barrier_destroy: Added an MCS guard lock. - -2009-03-03 Stephan O'Farrill - - * pthread_attr_getschedpolicy.c: Add "const" to function parameter - in accordance with SUSv3 (POSIX). - * pthread_attr_getinheritsched.c: Likewise. - * pthread_mutexattr_gettype.c: Likewise. - -2008-06-06 Robert Kindred - - * ptw32_throw.c (__ptw32_throw): Remove possible reference to NULL - pointer. (At the same time made the switch block conditionally - included only if exitCode is needed - RPJ.) - * pthread_testcancel.c (pthread_testcancel): Remove duplicate and - misplaced pthread_mutex_unlock(). - -2008-02-21 Sebastian Gottschalk - - * pthread_attr_getdetachstate.c (pthread_attr_getdetachstate): - Remove potential and superfluous null pointer assignment. - -2007-11-22 Ivan Pizhenko - - * pthread.h (gmtime_r): gmtime returns 0 if tm represents a time - prior to 1/1/1970. Notice this to prevent raising an exception. - * pthread.h (localtime_r): Likewise for localtime. - -2007-07-14 Marcel Ruff - - * errno.c (_errno): Fix test for pthread_self() success. - * need_errno.h: Remove unintentional line wrap from #if line. - -2007-07-14 Mike Romanchuk - - * pthread.h (timespec): Fix tv_sec type. - -2007-01-07 Sinan Kaya - - * need_errno.h: Fix declaration of _errno - the local version of - _errno() is used, e.g. by WinCE. - -2007-01-06 Ross Johnson - - * ptw32_semwait.c: Add check for invalid sem_t after acquiring the - sem_t state guard mutex and before affecting changes to sema state. - -2007-01-06 Marcel Ruff - - * error.c: Fix reference to pthread handle exitStatus member for - builds that use NEED_ERRNO (i.e. WINCE). - * context.h: Add support for ARM processor (WinCE). - * mutex.c (process.h): Exclude for WINCE. - * create.c: Likewise. - * exit.c: Likewise. - * implement.h: Likewise. - * pthread_detach.c (signal.h): Exclude for WINCE. - * pthread_join.c: Likewise. - * pthread_kill.c: Likewise. - * pthread_rwlock_init.c (errno.h): Remove - included by pthread.h. - * pthread_rwlock_destroy.c: Likewise. - * pthread_rwlock_rdlock.c: Likewise. - * pthread_rwlock_timedrdlock.c: Likewise. - * pthread_rwlock_timedwrlock.c: Likewise. - * pthread_rwlock_tryrdlock.c: Likewise. - * pthread_rwlock_trywrlock.c: likewise. - * pthread_rwlock_unlock.c: Likewise. - * pthread_rwlock_wrlock.c: Likewise. - * pthread_rwlockattr_destroy.c: Likewise. - * pthread_rwlockattr_getpshared.c: Likewise. - * pthread_rwlockattr_init.c: Likewise. - * pthread_rwlockattr_setpshared.c: Likewise. - -2007-01-06 Romano Paolo Tenca - - * pthread_cond_destroy.c: Replace sem_wait() with non-cancelable - __ptw32_semwait() since pthread_cond_destroy() is not a cancellation - point. - * implement.h (__ptw32_spinlock_check_need_init): Add prototype. - * ptw32_MCS_lock.c: Reverse order of includes. - -2007-01-06 Eric Berge - - * pthread_cond_destroy.c: Add LeaveCriticalSection before returning - after errors. - -2007-01-04 Ross Johnson - - * ptw32_InterlockedCompareExchange.c: Conditionally skip for - Win64 as not required. - * pthread_win32_attach_detach_np.c (pthread_win32_process_attach_np): - Test for InterlockedCompareExchange is not required for Win64. - * context.h: New file. Included by pthread_cancel.h and any tests - that need it (e.g. context1.c). - * pthread_cancel.c: Architecture-dependent context macros moved - to context.h. - -2007-01-04 Kip Streithorst - - * implement.h (__PTW32_INTERLOCKED_COMPARE_EXCHANGE): Add Win64 - support. - -2006-12-20 Ross Johnson - - * sem_destroy.c: Fix the race involving invalidation of the sema; - fix incorrect return of EBUSY resulting from the mutex trylock - on the private mutex guard. - * sem_wait.c: Add check for invalid sem_t after acquiring the - sem_t state guard mutex and before affecting changes to sema state. - * sem_trywait.c: Likewise. - * sem_timedwait.c: Likewise. - * sem_getvalue.c: Likewise. - * sem_post.c: Similar. - * sem_post_multiple.c: Likewise. - * sem_init.c: Set max Win32 semaphore count to SEM_VALUE_MAX (was - _POSIX_SEM_VALUE_MAX, which is a lower value - the minimum). - - * pthread_win32_attach_detach_np.c (pthread_win32_process_attach_np): - Load COREDLL.DLL under WINCE to check existence of - InterlockedCompareExchange() routine. This used to be done to test - for TryEnterCriticalSection() but was removed when this was no - longer needed. - -2006-01-25 Prashant Thakre - - * pthread_cancel.c: Added _M_IA64 register context support. - -2005-05-13 Ross Johnson - - * pthread_kill.c (pthread_kill): Remove check for Win32 thread - priority (to confirm HANDLE validity). Useless since thread HANDLEs - a not recycle-unique. - -2005-05-30 Vladimir Kliatchko - - * pthread_once.c: Re-implement using an MCS queue-based lock. The form - of pthread_once is as proposed by Alexander Terekhov (see entry of - 2005-03-13). The MCS lock implementation does not require a unique - 'name' to identify the lock between threads. Attempts to get the Event - or Semaphore based versions of pthread_once to a satisfactory level - of robustness have thus far failed. The last problem (avoiding races - involving non recycle-unique Win32 HANDLEs) was giving everyone - grey hair trying to solve it. - - * ptw32_MCS_lock.c: New MCS queue-based lock implementation. These - locks are efficient: they have very low overhead in the uncontended case; - are efficient in contention and minimise cache-coherence updates in - managing the user level FIFO queue; do not require an ABI change in the - library. - -2005-05-27 Alexander Gottwald - - * pthread.h: Some things, like HANDLE, were only defined if - PTW32_LEVEL was >= 3. They should always be defined. - -2005-05-25 Vladimir Kliatchko - - * pthread_once.c: Eliminate all priority operations and other - complexity by replacing the event with a semaphore. The advantage - of the change is the ability to release just one waiter if the - init_routine thread is cancelled yet still release all waiters when - done. Simplify once_control state checks to improve efficiency - further. - -2005-05-24 Mikael Magnusson - - * GNUmakefile: Patched to allow cross-compile with mingw32 on Linux. - It uses macros instead of referencing dlltool, gcc and g++ directly; - added a call to ranlib. For example the GC static library can be - built with: - make CC=i586-mingw32msvc-gcc RC=i586-mingw32msvc-windres \ - RANLIB=i586-mingw32msvc-ranlib clean GC-static - -2005-05-13 Ross Johnson - - * pthread_win32_attach_detach_np.c (pthread_win32_thread_detach_np): - Move on-exit-only stuff from __ptw32_threadDestroy() to here. - * ptw32_threadDestroy.c: It's purpose is now only to reclaim thread - resources for detached threads, or via pthread_join() or - pthread_detach() on joinable threads. - * ptw32_threadStart.c: Calling user destruct routines has moved to - pthread_win32_thread_detach_np(); call pthread_win32_thread_detach_np() - directly if statically linking, otherwise do so via dllMain; store - thread return value in thread struct for all cases, including - cancellation and exception exits; thread abnormal exits go via - pthread_win32_thread_detach_np. - * pthread_join.c (pthread_join): Don't try to get return code from - Win32 thread - always get it from he thread struct. - * pthread_detach.c (pthread_detach): reduce extent of the thread - existence check since we now don't care if the Win32 thread HANDLE has - been closed; reclaim thread resources if the thread has exited already. - * ptw32_throw.c (__ptw32_throw): For Win32 threads that are not implicit, - only Call thread cleanup if statically linking, otherwise leave it to - dllMain. - * sem_post.c (_POSIX_SEM_VALUE_MAX): Change to SEM_VALUE_MAX. - * sem_post_multiple.c: Likewise. - * sem_init.c: Likewise. - -2005-05-10 Ross Johnson - - * pthread_join.c (pthread_join): Add missing check for thread ID - reference count in thread existence test; reduce extent of the - existence test since we don't care if the Win32 thread HANDLE has - been closed. - -2005-05-09 Ross Johnson - - * ptw32_callUserDestroyRoutines.c: Run destructor process (i.e. - loop over all keys calling destructors) up to - PTHREAD_DESTRUCTOR_ITERATIONS times if TSD value isn't NULL yet; - modify assoc management. - * pthread_key_delete.c: Modify assoc management. - * ptw32_tkAssocDestroy.c: Fix error in assoc removal from chains. - * pthread.h - (_POSIX_THREAD_DESTRUCTOR_ITERATIONS): Define to value specified by - POSIX. - (_POSIX_THREAD_KEYS_MAX): Define to value specified by POSIX. - (PTHREAD_KEYS_MAX): Redefine [upward] to minimum required by POSIX. - (SEM_NSEMS_MAX): Define to implementation value. - (SEM_VALUE_MAX): Define to implementation value. - (_POSIX_SEM_NSEMS_MAX): Redefine to value specified by POSIX. - (_POSIX_SEM_VALUE_MAX): Redefine to value specified by POSIX. - -2005-05-06 Ross Johnson - - * signal.c (sigwait): Add a cancellation point to this otherwise - no-op. - * sem_init.c (sem_init): Check for and return ERANGE error. - * sem_post.c (sem_post): Likewise. - * sem_post_multiple.c (sem_post_multiple): Likewise. - * manual (directory): Added; see ChangeLog inside. - -2005-05-02 Ross Johnson - - * implement.h (struct pthread_key_t_): Change threadsLock to keyLock - so as not to be confused with the per thread lock 'threadlock'; - change all references to it. - * implement.h (struct ThreadKeyAssoc): Remove lock; add prevKey - and prevThread pointers; re-implemented all routines that use this - struct. The effect of this is to save one handle per association, - which could potentially equal the number of keys multiplied by the - number of threads, accumulating over time - and to free the - association memory as soon as it is no longer referenced by either - the key or the thread. Previously, the handle and memory were - released only after BOTH key and thread no longer referenced the - association. That is, often no association resources were released - until the process itself exited. In addition, at least one race - condition has been removed - where two threads could attempt to - release the association resources simultaneously - one via - __ptw32_callUserDestroyRoutines and the other via - pthread_key_delete. - - thanks to Richard Hughes at Aculab for discovering the problem. - * pthread_key_create.c: See above. - * pthread_key_delete.c: See above. - * pthread_setspecific.c: See above. - * ptw32_callUserDestroyRoutines.c: See above. - * ptw32_tkAssocCreate.c: See above. - * ptw32_tkAssocDestroy.c: See above. - -2005-04-27 Ross Johnson - - * sem_wait.c (__ptw32_sem_wait_cleanup): after cancellation re-attempt - to acquire the semaphore to avoid a race with a late sem_post. - * sem_timedwait.c: Modify comments. - -2005-04-25 Ross Johnson - - * ptw32_relmillisecs.c: New module; converts future abstime to - milliseconds relative to 'now'. - * pthread_mutex_timedlock.c: Use new __ptw32_relmillisecs routine in - place of internal code; remove the NEED_SEM code - this routine is now - implemented for builds that define NEED_SEM (WinCE etc) - * sem_timedwait.c: Likewise; after timeout or cancellation, - re-attempt to acquire the semaphore in case one has been posted since - the timeout/cancel occurred. Thanks to Stefan Mueller. - * Makefile: Add ptw32_relmillisecs.c module; remove - __ptw32_{in,de}crease_semaphore.c modules. - * GNUmakefile: Likewise. - * Bmakefile: Likewise. - - * sem_init.c: Re-write the NEED_SEM code to be consistent with the - non-NEED_SEM code, but retaining use of an event in place of the w32 sema - for w32 systems that don't include semaphores (WinCE); - the NEED_SEM versions of semaphores has been broken for a long time but is - now fixed and supports all of the same routines as the non-NEED_SEM case. - * sem_destroy.c: Likewise. - * sem_wait.c: Likewise. - * sem_post.c: Likewise. - * sem_post_multple.c: Likewise. - * implement.h: Likewise. - * sem_timedwait.c: Likewise; this routine is now - implemented for builds that define NEED_SEM (WinCE etc). - * sem_trywait.c: Likewise. - * sem_getvalue.c: Likewise. - - * pthread_once.c: Yet more changes, reverting closer to Gottlob Frege's - first design, but retaining cancellation, priority boosting, and adding - preservation of W32 error codes to make pthread_once transparent to - GetLastError. - -2005-04-11 Ross Johnson - - * pthread_once.c (pthread_once): Added priority boosting to - solve starvation problem after once_routine cancellation. - See notes in file. - -2005-04-06 Kevin Lussier - - * Makefile: Added debug targets for all versions of the library. - -2005-04-01 Ross Johnson - - * GNUmakefile: Add target to build libpthreadGC1.a as a static link - library. - * Makefile: Likewise for pthreadGC1.lib. - -2005-04-01 Kevin Lussier - - * sem_timedwait.c (sem_timedwait): Increase size of temp variables to - avoid int overflows for large timeout values. - * implement.h (int64_t): Include or define. - -2005-03-31 Dimitar Panayotov ^M - - * pthread.h: Fix conditional defines for static linking. - * sched.h: Liekwise. - * semaphore.h: Likewise. - * dll.c (__PTW32_STATIC_LIB): Module is conditionally included - in the build. - -2005-03-16 Ross Johnson ^M - - * pthread_setcancelstate.c: Undo the last change. - -2005-03-16 Ross Johnson ^M - - * pthread_setcancelstate.c: Don't check for an async cancel event - if the library is using alertable async cancel.. - -2005-03-14 Ross Johnson - - * pthread_once.c (pthread_once): Downgrade interlocked operations to simple - memory operations where these are protected by the critical section; edit - comments. - -2005-03-13 Ross Johnson - - * pthread_once.c (pthread_once): Completely redesigned; a change was - required to the ABI (pthread_once_t_), and resulting in a version - compatibility index increment. - - NOTES: - The design (based on pseudo code contributed by Gottlob Frege) avoids - creating a kernel object if there is no contention. See URL for details:- - http://sources.redhat.com/ml/pthreads-win32/2005/msg00029.html - This uses late initialisation similar to the technique already used for - pthreads-win32 mutexes and semaphores (from Alexander Terekhov). - - The subsequent cancellation cleanup additions (by rpj) could not be implemented - without sacrificing some of the efficiency in Gottlob's design. In particular, - although each once_control uses it's own event to block on, a global CS is - required to manage it - since the event must be either re-usable or - re-creatable under cancellation. This is not needed in the non-cancelable - design because it is able to mark the event as closed (forever). - - When uncontested, a CS operation is equivalent to an Interlocked operation - in speed. So, in the final design with cancelability, an uncontested - once_control operation involves a minimum of five interlocked operations - (including the LeaveCS operation). - - ALTERNATIVES: - An alternative design from Alexander Terekhov proposed using a named mutex, - as sketched below:- - - if (!once_control) { // May be in TLS - named_mutex::guard guard(&once_control2); - if (!once_control2) { - - once_control2 = true; - } - once_control = true; - } - - A more detailed description of this can be found here:- - http://groups.yahoo.com/group/boost/message/15442 - - [Although the definition of a suitable PTHREAD_ONCE_INIT precludes use of the - TLS located flag, this is not critical.] - - There are three primary concerns though:- - 1) The [named] mutex is 'created' even in the uncontended case. - 2) A system wide unique name must be generated. - 3) Win32 mutexes are VERY slow even in the uncontended case. An uncontested - Win32 mutex lock operation can be 50 (or more) times slower than an - uncontested EnterCS operation. - - Ultimately, the named mutex trick is making use of the global locks maintained - by the kernel. - - * pthread.h (pthread_once_t_): One flag and an event HANDLE added. - (PTHREAD_ONCE_INIT): Additional values included. - -2005-03-08 Ross Johnson - - * pthread_once.c (pthread_once): Redesigned to elliminate potential - starvation problem. - - reported by Gottlob Frege - - * ptw32_threadDestroy.c (__ptw32_threadDestroy): Implicit threads were - not closing their Win32 thread duplicate handle. - - reported by Dmitrii Semii - -2005-01-25 Ralf Kubis - - * Attempted acquisition of recursive mutex was causing waiting - threads to not be woken when the mutex is released. - - * GNUmakefile (GCE): Generate correct version resource comments. - -2005-01-01 Konstantin Voronkov - - * pthread_mutex_lock.c (pthread_mutex_lock): The new atomic exchange - mutex algorithm is known to allow a thread to steal the lock off - FIFO waiting threads. The next waiting FIFO thread gets a spurious - wake-up and must attempt to re-acquire the lock. The woken thread - was setting itself as the mutex's owner before the re-acquisition. - -2004-11-22 Ross Johnson - - * pthread_cond_wait.c (__ptw32_cond_wait_cleanup): Undo change - from 2004-11-02. - * Makefile (DLL_VER): Added for DLL naming suffix - see README. - * GNUmakefile (DLL_VER): Likewise. - * Wmakefile (DLL_VER): Likewise. - * Bmakefile (DLL_VER): Likewise. - * pthread.dsw (version.rc): Added to MSVS workspace. - -2004-11-20 Boudewijn Dekker - - * pthread_getspecific.c (pthread_getspecific): Check for - invalid (NULL) key argument. - -2004-11-19 Ross Johnson - - * config.h (__PTW32_THREAD_ID_REUSE_INCREMENT): Added to allow - building the library for either unique thread IDs like Solaris - or non-unique thread IDs like Linux; allows application developers - to override the library's default insensitivity to some apps - that may not be strictly POSIX compliant. - * version.rc: New resource module to encode version information - within the DLL. - * pthread.h: Added __PTW32_VERSION* defines and grouped sections - required by resource compiler together; bulk of file is skipped - if RC_INVOKED. Defined some error numbers and other names for - Borland compiler. - -2004-11-02 Ross Johnson - - * pthread_cond_wait.c (__ptw32_cond_wait_cleanup): Lock CV mutex at - start of cleanup handler rather than at the end. - * implement.h (__PTW32_THREAD_REUSE_EMPTY): Renamed from *_BOTTOM. - (__ptw32_threadReuseBottom): New global variable. - * global.c (__ptw32_threadReuseBottom): Declare new variable. - * ptw32_reuse.c (__ptw32_reuse): Change reuse LIFO stack to LILO queue - to more evenly distribute use of reusable thread IDs; use renamed - PTW32_THREAD_REUSE_EMPTY. - * ptw32_processTerminate.c (ptw2_processTerminate): Use renamed - PTW32_THREAD_REUSE_EMPTY. - -2004-10-31 Ross Johnson - - * implement.h (PThreadState): Add new state value - 'PThreadStateCancelPending'. - * pthread_testcancel.c (pthread_testcancel): Use new thread - 'PThreadStateCancelPending' state as short cut to avoid entering - kernel space via WaitForSingleObject() call. This was obviated - by user space sema acquisition in sem_wait() and sem_timedwait(), - which are also cancellation points. A call to pthread_testcancel() - was required, which introduced a kernel call, effectively nullifying - any gains made by the user space sem acquisition checks. - * pthread_cancel.c (pthread_cancel): Set new thread - 'PThreadStateCancelPending' state. - -2004-10-29 Ross Johnson - - * implement.h (pthread_t): Renamed to __ptw32_thread_t; struct contains - all thread state. - * pthread.h (__ptw32_handle_t): New general purpose struct to serve - as a handle for various reusable object IDs - currently only used - by pthread_t; contains a pointer to __ptw32_thread_t (thread state) - and a general purpose uint for use as a reuse counter or flags etc. - (pthread_t): typedef'ed to __ptw32_handle_t; the uint is the reuse - counter that allows the library to maintain unique POSIX thread IDs. - When the pthread struct reuse stack was introduced, threads would - often acquire an identical ID to a previously destroyed thread. The - same was true for the pre-reuse stack library, by virtue of pthread_t - being the address of the thread struct. The new pthread_t retains - the reuse stack but provides virtually unique thread IDs. - * sem_wait.c (__ptw32_sem_wait_cleanup): New routine used for - cancellation cleanup. - * sem_timedwait.c (__ptw32_sem_timedwait_cleanup): Likewise. - -2004-10-22 Ross Johnson - - * sem_init.c (sem_init): Introduce a 'lock' element in order to - replace the interlocked operations with conventional serialisation. - This is needed in order to be able to atomically modify the sema - value and perform Win32 sema release operations. Win32 semaphores are - used instead of events in order to support efficient multiple posting. - If the whole modify/release isn't atomic, a race between - sem_timedwait() and sem_post() could result in a release when there is - no waiting semaphore, which would cause too many threads to proceed. - * sem_wait.c (sem_wait): Use new 'lock'element. - * sem_timedwait.c (sem_timedwait): Likewise. - * sem_trywait.c (sem_trywait): Likewise. - * sem_post.c (sem_post): Likewise. - * sem_post_multiple.c (sem_post_multiple): Likewise. - * sem_getvalue.c (sem_getvalue): Likewise. - * ptw32_semwait.c (__ptw32_semwait): Likewise. - * sem_destroy.c (sem_destroy): Likewise; also tightened the conditions - for semaphore destruction; in particular, a semaphore will not be - destroyed if it has waiters. - * sem_timedwait.c (sem_timedwait): Added cancel cleanup handler to - restore sema value when cancelled. - * sem_wait.c (sem_wait): Likewise. - -2004-10-21 Ross Johnson - - * pthread_mutex_unlock.c (pthread_mutex_unlock): Must use PulseEvent() - rather than SetEvent() to reset the event if there are no waiters. - -2004-10-19 Ross Johnson - - * sem_init.c (sem_init): New semaphore model based on the same idea - as mutexes, i.e. user space interlocked check to avoid - unnecessarily entering kernel space. Wraps the Win32 semaphore and - keeps it's own counter. Although the motivation to do this has existed - for a long time, credit goes to Alexander Terekhov for providing - the logic. I have deviated slightly from AT's logic to add the waiters - count, which has made the code more complicated by adding cancellation - cleanup. This also appears to have broken the VCE (C++ EH) version of - the library (the same problem as previously reported - see BUGS #2), - only apparently not fixable using the usual workaround, nor by turning - all optimisation off. The GCE version works fine, so it is presumed to - be a bug in MSVC++ 6.0. The cancellation exception is thrown and caught - correctly, but the cleanup class destructor is never called. The failing - test is tests\semaphore4.c. - * sem_wait.c (sem_wait): Implemented user space check model. - * sem_post.c (sem_post): Likewise. - * sem_trywait.c (sem_trywait): Likewise. - * sem_timedwait.c (sem_timedwait): Likewise. - * sem_post_multiple.c (sem_post_multiple): Likewise. - * sem_getvalue.c (sem_getvalue): Likewise. - * ptw32_semwait.c (__ptw32_semwait): Likewise. - * implement.h (sem_t_): Add counter element. - -2004-10-15 Ross Johnson - - * implement.h (pthread_mutex_t_): Use an event in place of - the POSIX semaphore. - * pthread_mutex_init.c: Create the event; remove semaphore init. - * pthread_mutex_destroy.c: Delete the event. - * pthread_mutex_lock.c: Replace the semaphore wait with the event wait. - * pthread_mutex_trylock.c: Likewise. - * pthread_mutex_timedlock.c: Likewise. - * pthread_mutex_unlock.c: Set the event. - -2004-10-14 Ross Johnson - - * pthread_mutex_lock.c (pthread_mutex_lock): New algorithm using - Terekhov's xchg based variation of Drepper's cmpxchg model. - Theoretically, xchg uses fewer clock cycles than cmpxchg (using IA-32 - as a reference), however, in my opinion bus locking dominates the - equation on smp systems, so the model with the least number of bus - lock operations in the execution path should win, which is Terekhov's - variant. On IA-32 uni-processor systems, it's faster to use the - CMPXCHG instruction without locking the bus than to use the XCHG - instruction, which always locks the bus. This makes the two variants - equal for the non-contended lock (fast lane) execution path on up - IA-32. Testing shows that the xchg variant is faster on up IA-32 as - well if the test forces higher lock contention frequency, even though - kernel calls should be dominating the times (on up IA-32, both - variants used CMPXCHG instructions and neither locked the bus). - * pthread_mutex_timedlock.c pthread_mutex_timedlock(): Similarly. - * pthread_mutex_trylock.c (pthread_mutex_trylock): Similarly. - * pthread_mutex_unlock.c (pthread_mutex_unlock): Similarly. - * ptw32_InterlockedCompareExchange.c (__ptw32_InterlockExchange): New - function. - (__PTW32_INTERLOCKED_EXCHANGE): Sets up macro to use inlined - __ptw32_InterlockedExchange. - * implement.h (__PTW32_INTERLOCKED_EXCHANGE): Set default to - InterlockedExchange(). - * Makefile: Building using /Ob2 so that asm sections within inline - functions are inlined. - -2004-10-08 Ross Johnson - - * pthread_mutex_destroy.c (pthread_mutex_destroy): Critical Section - element is no longer required. - * pthread_mutex_init.c (pthread_mutex_init): Likewise. - * pthread_mutex_lock.c (pthread_mutex_lock): New algorithm following - Drepper's paper at http://people.redhat.com/drepper/futex.pdf, but - using the existing semaphore in place of the futex described in the - paper. Idea suggested by Alexander Terekhov - see: - http://sources.redhat.com/ml/pthreads-win32/2003/msg00108.html - * pthread_mutex_timedlock.c pthread_mutex_timedlock(): Similarly. - * pthread_mutex_trylock.c (pthread_mutex_trylock): Similarly. - * pthread_mutex_unlock.c (pthread_mutex_unlock): Similarly. - * pthread_barrier_wait.c (pthread_barrier_wait): Use inlined version - of InterlockedCompareExchange() if possible - determined at - build-time. - * pthread_spin_destroy.c pthread_spin_destroy(): Likewise. - * pthread_spin_lock.c pthread_spin_lock():Likewise. - * pthread_spin_trylock.c (pthread_spin_trylock):Likewise. - * pthread_spin_unlock.c (pthread_spin_unlock):Likewise. - * ptw32_InterlockedCompareExchange.c: Sets up macro for inlined use. - * implement.h (pthread_mutex_t_): Remove Critical Section element. - (__PTW32_INTERLOCKED_COMPARE_EXCHANGE): Set to default non-inlined - version of InterlockedCompareExchange(). - * private.c: Include ptw32_InterlockedCompareExchange.c first for - inlining. - * GNUmakefile: Add commandline option to use inlined - InterlockedCompareExchange(). - * Makefile: Likewise. - -2004-09-27 Ross Johnson - - * pthread_mutex_lock.c (pthread_mutex_lock): Separate - PTHREAD_MUTEX_NORMAL logic since we do not need to keep or check some - state required by other mutex types; do not check mutex pointer arg - for validity - leave this to the system since we are only checking - for NULL pointers. This should improve speed of NORMAL mutexes and - marginally improve speed of other type. - * pthread_mutex_trylock.c (pthread_mutex_trylock): Likewise. - * pthread_mutex_unlock.c (pthread_mutex_unlock): Likewise; also avoid - entering the critical section for the no-waiters case, with approx. - 30% reduction in lock/unlock overhead for this case. - * pthread_mutex_timedlock.c (pthread_mutex_timedlock): Likewise; also - no longer keeps mutex if post-timeout second attempt succeeds - this - will assist applications that wish to impose strict lock deadlines, - rather than simply to escape from frozen locks. - -2004-09-09 Tristan Savatier - * pthread.h (struct pthread_once_t_): Qualify the 'done' element - as 'volatile'. - * pthread_once.c: Concerned about possible race condition, - specifically on MPU systems re concurrent access to multibyte types. - [Maintainer's note: the race condition is harmless on SPU systems - and only a problem on MPU systems if concurrent access results in an - exception (presumably generated by a hardware interrupt). There are - other instances of similar harmless race conditions that have not - been identified as issues.] - -2004-09-09 Ross Johnson - - * pthread.h: Declare additional types as volatile. - -2004-08-27 Ross Johnson - - * pthread_barrier_wait.c (pthread_barrier_wait): Remove excessive code - by substituting the internal non-cancelable version of sem_wait - (__ptw32_semwait). - -2004-08-25 Ross Johnson - - * pthread_join.c (pthread_join): Rewrite and re-order the conditional - tests in an attempt to improve efficiency and remove a race - condition. - -2004-08-23 Ross Johnson - - * create.c (pthread_create): Don't create a thread if the thread - id pointer location (first arg) is inaccessible. A memory - protection fault will result if the thread id arg isn't an accessible - location. This is consistent with GNU/Linux but different to - Solaris or MKS (and possibly others), which accept NULL as meaning - 'don't return the created thread's ID'. Applications that run - using pthreads-win32 will run on all other POSIX threads - implementations, at least w.r.t. this feature. - - It was decided not to copy the Solaris et al behaviour because, - although it would have simplified some application porting (but only - from Solaris to Windows), the feature is not technically necessary, - and the alternative segfault behaviour helps avoid buggy application - code. - -2004-07-01 Anuj Goyal - - * builddmc.bat: New; Windows bat file to build the library. - * config.h (__DMC__): Support for Digital Mars compiler. - * create.c (__DMC__): Likewise. - * pthread_exit.c (__DMC__): Likewise. - * pthread_join.c (__DMC__): Likewise. - * ptw32_threadDestroy.c (__DMC__): Likewise. - * ptw32_threadStart.c (__DMC__): Likewise. - * ptw32_throw.c (__DMC__): Likewise. - -2004-06-29 Anuj Goyal - - * pthread.h (__DMC__): Initial support for Digital Mars compiler. - -2004-06-29 Will Bryant - - * README.Borland: New; description of Borland changes. - * Bmakefile: New makefile for the Borland make utility. - * ptw32_InterlockedCompareExchange.c: - Add Borland compatible asm code. - -2004-06-26 Jason Bard - - * pthread.h (HAVE_STRUCT_TIMESPEC): If undefined, define it - to avoid timespec struct redefined errors elsewhere in an - application. - -2004-06-21 Ross Johnson - - * pthread.h (PTHREAD_RECURSIVE_MUTEX_INITIALIZER): Mutex - initialiser added for compatibility with Linux threads and - others; currently not included in SUSV3. - * pthread.h (PTHREAD_ERRORCHECK_MUTEX_INITIALIZER): Likewise. - * pthread.h (PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP): Likewise. - * pthread.h (PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP): Likewise. - - * ptw32_mutex_check_need_init.c (__ptw32_mutex_check_need_init): - Add new initialisers. - - * pthread_mutex_lock.c (pthread_mutex_lock): Check for new - initialisers. - * pthread_mutex_trylock.c (pthread_mutex_trylock): Likewise. - * pthread_mutex_timedlock.c (pthread_mutex_timedlock): Likewise. - * pthread_mutex_unlock.c (pthread_mutex_unlock): Likewise. - * pthread_mutex_destroy.c (pthread_mutex_destroy): Likewise. - -2004-05-20 Ross Johnson - - * README.NONPORTABLE: Document pthread_win32_test_features_np(). - * FAQ: Update various answers. - -2004-05-19 Ross Johnson - - * Makefile: Don't define _WIN32_WINNT on compiler command line. - * GNUmakefile: Likewise. - -2004-05-16 Ross Johnson - - * pthread_cancel.c (pthread_cancel): Adapted to use auto-detected - QueueUserAPCEx features at run-time. - (__ptw32_Registercancellation): Drop in replacement for QueueUserAPCEx() - if it can't be used. Provides older style non-preemptive async - cancellation. - * pthread_win32_attach_detach_np.c (pthread_win32_attach_np): - Auto-detect quserex.dll and the availability of alertdrv.sys; - initialise and close on process attach/detach. - * global.c (__ptw32_register_cancellation): Pointer to either - QueueUserAPCEx() or __ptw32_Registercancellation() depending on - availability. QueueUserAPCEx makes pre-emptive async cancellation - possible. - * implement.h: Add definitions and prototypes related to QueueUserAPC. - -2004-05-16 Panagiotis E. Hadjidoukas - - * QueueUserAPCEx (separate contributed package): Provides preemptive - APC feature. - * pthread_cancel.c (pthread_cancel): Initial integration of - QueueUserAPCEx into pthreads-win32 to provide true pre-emptive - async cancellation of threads, including blocked threads. - -2004-05-06 Makoto Kato - - * pthread.h (DWORD_PTR): Define typedef for older MSVC. - * pthread_cancel.c (AMD64): Add architecture specific Context register. - * ptw32_getprocessors.c: Use correct types (DWORD_PTR) for mask - variables. - -2004-04-06 P. van Bruggen - - * ptw32_threadDestroy.c: Destroy threadLock mutex to - close a memory leak. - -2004-02-13 Gustav Hallberg - - * pthread_equal.c: Remove redundant equality logic. - -2003-12-10 Philippe Di Cristo - - * sem_timedwait.c (sem_timedwait): Fix timeout calculations. - -2003-10-20 Alexander Terekhov - - * pthread_mutex_timedlock.c (__ptw32_semwait): Move to individual module. - * ptw32_semwait.c: New module. - * pthread_cond_wait.c (__ptw32_cond_wait_cleanup): Replace cancelable - sem_wait() call with non-cancelable __ptw32_semwait() call. - * pthread.c (private.c): Re-order for inlining. GNU C warned that - function __ptw32_semwait() was defined 'inline' after it was called. - * pthread_cond_signal.c (__ptw32_cond_unblock): Likewise. - * pthread_delay_np.c: Disable Watcom warning with comment. - * *.c (process.h): Remove include from .c files. This is conditionally - included by the common project include files. - -2003-10-20 James Ewing - - * ptw32_getprocessors.c: Some Win32 environments don't have - GetProcessAffinityMask(), so always return CPU count = 1 for them. - * config.h (NEED_PROCESSOR_AFFINITY_MASK): Define for WinCE. - -2003-10-15 Ross Johnson - - * Re-indented all .c files using default GNU style to remove assorted - editor ugliness (used GNU indent utility in default style). - -2003-10-15 Alex Blanco - - * sem_init.c (sem_init): Would call CreateSemaphore even if the sema - struct calloc failed; was not freeing calloced memory if either - CreateSemaphore or CreateEvent failed. - -2003-10-14 Ross Johnson - - * pthread.h: Add Watcom compiler compatibility. Esssentially just add - the cdecl attribute to all exposed function prototypes so that Watcom - generates function call code compatible with non-Watcom built libraries. - By default, Watcom uses registers to pass function args if possible rather - than pushing to stack. - * semaphore.h: Likewise. - * sched.h: Likewise. - * pthread_cond_wait.c (__ptw32_cond_wait_cleanup): Define with cdecl attribute - for Watcom compatibility. This routine is called via pthread_cleanup_push so - it had to match function arg definition. - * Wmakefile: New makefile for Watcom builds. - -2003-09-14 Ross Johnson - - * pthread_setschedparam.c (pthread_setschedparam): Attempt to map - all priority levels between max and min (as returned by - sched_get_priority_min/max) to reasonable Win32 priority levels - i.e. - levels between THREAD_PRIORITY_LOWEST/IDLE to THREAD_PRIORITY_LOWEST and - between THREAD_PRIORITY_HIGHEST/TIME_CRITICAL to THREAD_PRIORITY_HIGHEST - while others remain unchanged; record specified thread priority level - for return by pthread_getschedparam. - - Note that, previously, specified levels not matching Win32 priority levels - would silently leave the current thread priority unaltered. - - * pthread_getschedparam.c (pthread_getschedparam): Return the priority - level specified by the latest pthread_setschedparam or pthread_create rather - than the actual running thread priority as returned by GetThreadPriority - as - required by POSIX. I.e. temporary or adjusted actual priority levels are not - returned by this routine. - - * pthread_create.c (pthread_create): For priority levels specified via - pthread attributes, attempt to map all priority levels between max and - min (as returned by sched_get_priority_min/max) to reasonable Win32 - priority levels; record priority level given via attributes, or - inherited from parent thread, for later return by pthread_getschedparam. - - * ptw32_new.c (__ptw32_new): Initialise pthread_t_ sched_priority element. - - * pthread_self.c (pthread_self): Set newly created implicit POSIX thread - sched_priority to Win32 thread's current actual priority. Temporarily - altered priorities can't be avoided in this case. - - * implement.h (struct pthread_t_): Add new sched_priority element. - -2003-09-12 Ross Johnson - - * sched_get_priority_min.c (sched_get_priority_min): On error should return -1 - with errno set. - * sched_get_priority_max.c (sched_get_priority_max): Likewise. - -2003-09-03 Ross Johnson - - * w32_cancelableWait.c (__ptw32_cancelable_wait): Allow cancellation - of implicit POSIX threads as well. - -2003-09-02 Ross Johnson - - * pthread_win32_attach_detach_np.c (pthread_win32_thread_detach_np): - Add comment. - - * pthread_exit.c (pthread_exit): Fix to recycle the POSIX thread handle in - addition to calling user TSD destructors. Move the implicit POSIX thread exit - handling to __ptw32_throw to centralise the logic. - - * ptw32_throw.c (__ptw32_throw): Implicit POSIX threads have no point - to jump or throw to, so cleanup and exit the thread here in this case. For - processes using the C runtime, the exit code will be set to the POSIX - reason for the throw (i.e. PTHREAD_CANCEL or the value given to pthread_exit). - Note that pthread_exit() already had similar logic, which has been moved to - here. - - * ptw32_threadDestroy.c (__ptw32_threadDestroy): Don't close the Win32 handle - of implicit POSIX threads - expect this to be done by Win32? - -2003-09-01 Ross Johnson - - * pthread_self.c (pthread_self): The newly aquired pthread_t must be - assigned to the reuse stack, not freed, if the routine fails somehow. - -2003-08-13 Ross Johnson - - * pthread_getschedparam.c (pthread_getschedparam): An invalid thread ID - parameter was returning an incorrect error value; now uses a more exhaustive - check for validity. - - * pthread_setschedparam.c (pthread_setschedparam): Likewise. - - * pthread_join.c (pthread_join): Now uses a more exhaustive - check for validity. - - * pthread_detach.c (pthread_detach): Likewise. - - * pthread_cancel.c (pthread_cancel): Likewise. - - * ptw32_threadDestroy.c (__ptw32_threadDestroy): pthread_t structs are - never freed - push them onto a stack for reuse. - - * ptw32_new.c (__ptw32_new): Check for reusable pthread_t before dynamically - allocating new memory for the struct. - - * pthread_kill.c (pthread_kill): New file; new routine; takes only a zero - signal arg so that applications can check the thread arg for validity; checks - that the underlying Win32 thread HANDLE is valid. - - * pthread.h (pthread_kill): Add prototype. - - * ptw32_reuse.c (__ptw32_threadReusePop): New file; new routine; pop a - pthread_t off the reuse stack. pthread_t_ structs that have been destroyed, i.e. - have exited detached or have been joined, are cleaned up and put onto a reuse - stack. Consequently, thread IDs are no longer freed once calloced. The library - will attempt to get a struct off this stack before asking the system to alloc - new memory when creating threads. The stack is guarded by a global mutex. - (__ptw32_threadReusePush): New routine; push a pthread_t onto the reuse stack. - - * implement.h (__ptw32_threadReusePush): Add new prototype. - (__ptw32_threadReusePop): Likewise. - (pthread_t): Add new element. - - * ptw32_processTerminate.c (__ptw32_processTerminate): Delete the thread - reuse lock; free all thread ID structs on the thread reuse stack. - - * ptw32_processInitialize.c (__ptw32_processInitialize): Initialise the - thread reuse lock. - -2003-07-19 Ross Johnson - - * GNUmakefile: modified to work under MsysDTK environment. - * pthread_spin_lock.c (pthread_spin_lock): Check for NULL arg. - * pthread_spin_unlock.c (pthread_spin_unlock): Likewise. - * pthread_spin_trylock.c (pthread_spin_trylock): Likewise; - fix incorrect pointer value if lock is dynamically initialised by - this function. - * sem_init.c (sem_init): Initialise sem_t value to quell compiler warning. - * sem_destroy.c (sem_destroy): Likewise. - * ptw32_threadStart.c (non-MSVC code sections): Include rather - than old-style ; fix all std:: namespace entities such as - std::terminate_handler instances and associated methods. - * ptw32_callUserDestroyRoutines.c (non-MSVC code sections): Likewise. - -2003-06-24 Piet van Bruggen - - * pthread_spin_destroy.c (pthread_spin_destroy): Was not freeing the - spinlock struct. - -2003-06-22 Nicolas Barry - - * pthread_mutex_destroy.c (pthread_mutex_destroy): When called - with a recursive mutex that was locked by the current thread, the - function was failing with a success return code. - -2003-05-15 Steven Reddie - - * pthread_win32_attach_detach_np.c (pthread_win32_process_detach_np): - NULLify __ptw32_selfThreadKey after the thread is destroyed, otherwise - destructors calling pthreads routines might resurrect it again, creating - memory leaks. Call the underlying Win32 Tls routine directly rather than - pthread_setspecific(). - (pthread_win32_thread_detach_np): Likewise. - -2003-05-14 Viv - - * pthread.dsp: Change /MT compile flag to /MD. - -2003-03-04 Alexander Terekhov - - * pthread_mutex_timedlock.c (pthread_mutex_timedlock): Fix failure to - set ownership of mutex on second grab after abstime timeout. - - bug reported by Robert Strycek - -2002-12-17 Thomas Pfaff - - * pthread_mutex_lock.c (__ptw32_semwait): New static routine to provide - a non-cancelable sem_wait() function. This is consistent with the - way that pthread_mutex_timedlock.c does it. - (pthread_mutex_lock): Use __ptw32_semwait() instead of sem_wait(). - -2002-12-11 Thomas Pfaff - - * pthread_mutex_trylock.c: Should return EBUSY rather than EDEADLK. - * pthread_mutex_destroy.c: Remove redundant ownership test (the - trylock call does this for us); do not destroy a recursively locked - mutex. - -2002-09-20 Michael Johnson - - * pthread_cond_destroy.c (pthread_cond_destroy): - When two different threads exist, and one is attempting to - destroy a condition variable while the other is attempting to - initialize a condition variable that was created with - PTHREAD_COND_INITIALIZER, a deadlock can occur. Shrink - the __ptw32_cond_list_lock critical section to fix it. - -2002-07-31 Ross Johnson - - * ptw32_threadStart.c (__ptw32_threadStart): Thread cancelLock - destruction moved to __ptw32_threadDestroy(). - - * ptw32_threadDestroy.c (__ptw32_threadDestroy): Destroy - the thread's cancelLock. Moved here from ptw32_threadStart.c - to cleanup implicit threads as well. - -2002-07-30 Alexander Terekhov - - * pthread_cond_wait.c (__ptw32_cond_wait_cleanup): - Remove code designed to avoid/prevent spurious wakeup - problems. It is believed that the sem_timedwait() call - is consuming a CV signal that it shouldn't and this is - breaking the avoidance logic. - -2002-07-30 Ross Johnson - - * sem_timedwait.c (sem_timedwait): Tighten checks for - unreasonable abstime values - that would result in - unexpected timeout values. - - * w32_CancelableWait.c (__ptw32_cancelable_wait): - Tighten up return value checking and add comments. - - -2002-06-08 Ross Johnson - - * sem_getvalue.c (sem_getvalue): Now returns a value for the - NEED_SEM version (i.e. earlier versions of WinCE). - - -2002-06-04 Rob Fanner - - * sem_getvalue.c (sem_getvalue): The Johnson M. Hart - approach didn't work - we are forced to take an - intrusive approach. We try to decrement the sema - and then immediately release it again to get the - value. There is a small probability that this may - block other threads, but only momentarily. - -2002-06-03 Ross Johnson - - * sem_init.c (sem_init): Initialise Win32 semaphores - to _POSIX_SEM_VALUE_MAX (which this implementation - defines in pthread.h) so that sem_getvalue() can use - the trick described in the comments in sem_getvalue(). - * pthread.h (_POSIX_SEM_VALUE_MAX): Defined. - (_POSIX_SEM_NSEMS_MAX): Defined - not used but may be - useful for source code portability. - -2002-06-03 Rob Fanner - - * sem_getvalue.c (sem_getvalue): Did not work on NT. - Use approach suggested by Johnson M. Hart in his book - "Win32 System Programming". - -2002-02-28 Ross Johnson - - * errno.c: Compiler directive was incorrectly including code. - * pthread.h: Conditionally added some #defines from config.h - needed when not building the library. e.g. NEED_ERRNO, NEED_SEM. - (__PTW32_DLLPORT): Now only defined if _DLL defined. - (_errno): Compiler directive was incorrectly including prototype. - * sched.h: Conditionally added some #defines from config.h - needed when not building the library. - * semaphore.h: Replace an instance of NEED_SEM that should - have been NEED_ERRNO. This change currently has nil effect. - - * GNUmakefile: Correct some recent changes. - - * Makefile: Add rule to generate pre-processor output. - -2002-02-23 Ross Johnson - - * pthread_rwlock_timedrdlock.c: New - untested. - * pthread_rwlock_timedwrlock.c: New - untested. - - * Testsuite passed (except known MSVC++ problems) - - * pthread_cond_destroy.c: Expand the time change - critical section to solve deadlock problem. - - * pthread.c: Add all remaining C modules. - * pthread.h: Use dllexport/dllimport attributes on functions - to avoid using pthread.def. - * sched.h: Likewise. - * semaphore.h: Likewise. - * GNUmakefile: Add new targets for single translation - unit build to maximise inlining potential; generate - pthread.def automatically. - * Makefile: Likewise, but no longer uses pthread.def. - -2002-02-20 Ross Johnson - - * pthread_cond_destroy.c (pthread_cond_destroy): - Enter the time change critical section earlier. - -2002-02-17 Ross Johnson - - * nonportable.c (pthread_delay_np): Make a true - cancellation point. Deferred cancels will interrupt the - wait. - -2002-02-07 Ross Johnson - - Reduced name space pollution. - ----------------------------- - When the appropriate symbols are defined, the headers - will restrict the definitions of new names. In particular, - it must be possible to NOT include the - header and related definitions with some combination - of symbol definitions. Secondly, it should be possible - that additional definitions should be limited to POSIX - compliant symbols by the definition of appropriate symbols. - - * pthread.h: POSIX conditionals. - * sched.h: POSIX conditionals. - * semaphore.h: POSIX conditionals. - - * semaphore.c: Included . - (sem_init): Changed magic 0x7FFFFFFFL to INT_MAX. - (sem_getvalue): Trial version. - - Reduce executable size. - ----------------------- - When linking with the static library, only those - routines actually called, either directly or indirectly - should be included. - - [Gcc has the -ffunction-segments option to do this but MSVC - doesn't have this feature as far as I can determine. Other - compilers are undetermined as well. - rpj] - - * semaphore.c: All routines are now in separate compilation units; - This file is used to congregate the separate modules for - potential inline optimisation and backward build compatibility. - * sem_close.c: Separated routine from semaphore.c. - * ptw32_decrease_semaphore.c: Likewise. - * sem_destroy.c: Likewise. - * sem_getvalue.c: Likewise. - * ptw32_increase_semaphore.c: Likewise. - * sem_init.c: Likewise. - * sem_open.c: Likewise. - * sem_post.c: Likewise. - * sem_post_multiple.c: Likewise. - * sem_timedwait.c: Likewise. - * sem_trywait.c: Likewise. - * sem_unlink.c: Likewise. - * sem_wait.c: Likewise. - -2002-02-04 Ross Johnson - - The following extends the idea above to the rest of pthreads-win32 - rpj - - * attr.c: All routines are now in separate compilation units; - This file is used to congregate the separate modules for - potential inline optimisation and backward build compatibility. - * pthread_attr_destroy.c: Separated routine from attr.c. - * pthread_attr_getdetachstate.c: Likewise. - * pthread_attr_getscope.c: Likewise. - * pthread_attr_getstackaddr.c: Likewise. - * pthread_attr_getstacksize.c: Likewise. - * pthread_attr_init.c: Likewise. - * pthread_attr_is_attr.c: Likewise. - * pthread_attr_setdetachstate.c: Likewise. - * pthread_attr_setscope.c: Likewise. - * pthread_attr_setstackaddr.c: Likewise. - * pthread_attr_setstacksize.c: Likewise. - - * pthread.c: Agregation of agregate modules for super-inlineability. - -2002-02-02 Ross Johnson - - * cancel.c: Rearranged some code and introduced checks - to disable cancellation at the start of a thread's cancellation - run to prevent double cancellation. The main problem - arises if a thread is canceling and then receives a subsequent - async cancel request. - * private.c: Likewise. - * condvar.c: Place pragmas around cleanup_push/pop to turn - off inline optimisation (/Obn where n>0 - MSVC only). Various - optimisation switches in MSVC turn this on, which interferes with - the way that cleanup handlers are run in C++ EH and SEH - code. Application code compiled with inline optimisation must - also wrap cleanup_push/pop blocks with the pragmas, e.g. - #pragma inline_depth(0) - pthread_cleanup_push(...) - ... - pthread_cleanup_pop(...) - #pragma inline_depth(8) - * rwlock.c: Likewise. - * mutex.c: Remove attempts to inline some functions. - * signal.c: Modify misleading comment. - -2002-02-01 Ross Johnson - - * semaphore.c (sem_trywait): Fix missing errno return - for systems that define NEED_SEM (e.g. early WinCE). - * mutex.c (pthread_mutex_timedlock): Return ENOTSUP - for systems that define NEED_SEM since they don't - have sem_trywait(). - -2002-01-27 Ross Johnson - - * mutex.c (pthread_mutex_timedlock): New function suggested by - Alexander Terekhov. The logic required to implement this - properly came from Alexander, with some collaboration - with Thomas Pfaff. - (pthread_mutex_unlock): Wrap the waiters check and sema - post in a critical section to prevent a race with - pthread_mutex_timedlock. - (__ptw32_timed_semwait): New function; - returns a special result if the absolute timeout parameter - represents a time already passed when called; used by - pthread_mutex_timedwait(). Have deliberately not reused - the name "__ptw32_sem_timedwait" because they are not the same - routine. - * condvar.c (__ptw32_cond_timedwait): Use the new sem_timedwait() - instead of __ptw32_sem_timedwait(), which now has a different - function. See previous. - * implement.h: Remove prototype for __ptw32_sem_timedwait. - See next. - (pthread_mutex_t_): Add critical section element for access - to lock_idx during mutex post-timeout processing. - * semaphore.h (sem_timedwait): See next. - * semaphore.c (sem_timedwait): See next. - * private.c (__ptw32_sem_timedwait): Move to semaphore.c - and rename as sem_timedwait(). - -2002-01-18 Ross Johnson - - * sync.c (pthread_join): Was getting the exit code from the - calling thread rather than the joined thread if - defined(__MINGW32__) && !defined(__MSVCRT__). - -2002-01-15 Ross Johnson - - * pthread.h: Unless the build explicitly defines __PTW32_CLEANUP_SEH, - __PTW32_CLEANUP_CXX, or __PTW32_CLEANUP_C, then the build defaults to - __PTW32_CLEANUP_C style cleanup. This style uses setjmp/longjmp - in the cancellation and thread exit implementations and therefore - won't do stack unwinding if linked to applications that have it - (e.g. C++ apps). This is currently consistent with most/all - commercial Unix POSIX threads implementations. - - * spin.c (pthread_spin_init): Edit renamed function call. - * nonportable.c (pthread_num_processors_np): New. - (pthread_getprocessors_np): Renamed to __ptw32_getprocessors - and moved to private.c. - * private.c (pthread_getprocessors): Moved here from - nonportable.c. - * pthread.def (pthread_getprocessors_np): Removed - from export list. - - * rwlock.c (pthread_rwlockattr_init): New. - (pthread_rwlockattr_destroy): New. - (pthread_rwlockattr_getpshared): New. - (pthread_rwlockattr_setpshared): New. - -2002-01-14 Ross Johnson - - * attr.c (pthread_attr_setscope): Fix struct pointer - indirection error introduced 2002-01-04. - (pthread_attr_getscope): Likewise. - -2002-01-12 Ross Johnson - - * pthread.dsp (SOURCE): Add missing source files. - -2002-01-08 Ross Johnson - - * mutex.c (pthread_mutex_trylock): use - __ptw32_interlocked_compare_exchange function pointer - rather than __ptw32_InterlockedCompareExchange() directly - to retain portability to non-iX86 processors, - e.g. WinCE etc. The pointer will point to the native - OS version of InterlockedCompareExchange() if the - OS supports it (see ChangeLog entry of 2001-10-17). - -2002-01-07 Thomas Pfaff , Alexander Terekhov - - * mutex.c (pthread_mutex_init): Remove critical - section calls. - (pthread_mutex_destroy): Likewise. - (pthread_mutex_unlock): Likewise. - (pthread_mutex_trylock): Likewise; uses - __ptw32_InterlockedCompareExchange() to avoid need for - critical section; library is no longer i386 compatible; - recursive mutexes now increment the lock count rather - than return EBUSY; errorcheck mutexes return EDEADLCK - rather than EBUSY. This behaviour is consistent with the - Solaris pthreads implementation. - * implement.h (pthread_mutex_t_): Remove critical - section element - no longer needed. - - -2002-01-04 Ross Johnson - - * attr.c (pthread_attr_setscope): Add more error - checking and actually store the scope value even - though it's not really necessary. - (pthread_attr_getscope): Return stored value. - * implement.h (pthread_attr_t_): Add new scope element. - * ANNOUNCE: Fix out of date comment next to - pthread_attr_setscope in conformance section. - -2001-12-21 Alexander Terekhov - - * mutex.c (pthread_mutex_lock): Decrementing lock_idx was - not thread-safe. - (pthread_mutex_trylock): Likewise. - -2001-10-26 prionx@juno.com - - * semaphore.c (sem_init): Fix typo and missing bracket - in conditionally compiled code. Only older versions of - WinCE require this code, hence it doesn't normally get - tested; somehow when sem_t reverted to an opaque struct - the calloc NULL check was left in the conditionally included - section. - (sem_destroy): Likewise, the calloced sem_t wasn't being freed. - -2001-10-25 Ross Johnson - - * GNUmakefile (libwsock32): Add to linker flags for - WSAGetLastError() and WSASetLastError(). - * Makefile (wsock32.lib): Likewise. - * create.c: Minor mostly inert changes. - * implement.h (__PTW32_MAX): Move into here and renamed - from sched.h. - (__PTW32_MIN): Likewise. - * GNUmakefile (TEST_ICE): Define if testing internal - implementation of InterlockedCompareExchange. - * Makefile (TEST_ICE): Likewise. - * private.c (TEST_ICE): Likewise. - -2001-10-24 Ross Johnson - - * attr.c (pthread_attr_setstacksize): Quell warning - from LCC by conditionally compiling the stacksize - validity check. LCC correctly warns that the condition - (stacksize < PTHREAD_STACK_MIN) is suspicious - because STACK_MIN is 0 and stacksize is of type - size_t (or unsigned int). - -2001-10-17 Ross Johnson - - * barrier.c: Move _LONG and _LPLONG defines into - implement.h; rename to __PTW32_INTERLOCKED_LONG and - PTW32_INTERLOCKED_LPLONG respectively. - * spin.c: Likewise; __ptw32_interlocked_compare_exchange used - in place of InterlockedCompareExchange directly. - * global.c (__ptw32_interlocked_compare_exchange): Add - prototype for this new routine pointer to be used when - InterlockedCompareExchange isn't supported by Windows. - * nonportable.c (pthread_win32_process_attach_np): Check for - support of InterlockedCompareExchange in kernel32 and assign its - address to __ptw32_interlocked_compare_exchange if it exists, or - our own ix86 specific implementation __ptw32_InterlockedCompareExchange. - *private.c (__ptw32_InterlockedCompareExchange): An - implementation of InterlockedCompareExchange() which is - specific to ix86; written directly in assembler for either - MSVC or GNU C; needed because Windows 95 doesn't support - InterlockedCompareExchange(). - - * sched.c (sched_get_priority_min): Extend to return - THREAD_PRIORITY_IDLE. - (sched_get_priority_max): Extend to return - THREAD_PRIORITY_CRITICAL. - -2001-10-15 Ross Johnson - - * spin.c (pthread_spin_lock): PTHREAD_SPINLOCK_INITIALIZER - was causing a program fault. - (pthread_spin_init): Could have alloced memory - without freeing under some error conditions. - - * mutex.c (pthread_mutex_init): Move memory - allocation of mutex struct after checking for - PROCESS_SHARED. - -2001-10-12 Ross Johnson - - * spin.c (pthread_spin_unlock): Was not returning - EPERM if the spinlock was not locked, for multi CPU - machines. - -2001-10-08 Ross Johnson - - * spin.c (pthread_spin_trylock): Was not returning - EBUSY for multi CPU machines. - -2001-08-24 Ross Johnson - - * condvar.c (pthread_cond_destroy): Remove cv element - that is no longer used. - * implement.h: Likewise. - -2001-08-23 Alexander Terekhov - - * condvar.c (pthread_cond_destroy): fix bug with - respect to deadlock in the case of concurrent - _destroy/_unblock; a condition variable can be destroyed - immediately after all the threads that are blocked on - it are awakened. - -2001-08-23 Phil Frisbie, Jr. - - * tsd.c (pthread_getspecific): Preserve the last - winsock error [from WSAGetLastError()]. - -2001-07-18 Scott McCaskill - - * mutex.c (pthread_mutexattr_init): Return ENOMEM - immediately and don't dereference the NULL pointer - if calloc fails. - (pthread_mutexattr_getpshared): Don't dereference - a pointer that is possibly NULL. - * barrier.c (pthread_barrierattr_init): Likewise - (pthread_barrierattr_getpshared): Don't dereference - a pointer that is possibly NULL. - * condvar.c (pthread_condattr_getpshared): Don't dereference - a pointer that is possibly NULL. - -2001-07-15 Ross Johnson - - * rwlock.c (pthread_rwlock_wrlock): Is allowed to be - a cancellation point; re-enable deferred cancelability - around the CV call. - -2001-07-10 Ross Johnson - - * barrier.c: Still more revamping. The exclusive access - mutex isn't really needed so it has been removed and replaced - by an InterlockedDecrement(). nSerial has been removed. - iStep is now dual-purpose. The process shared attribute - is now stored in the barrier struct. - * implement.h (pthread_barrier_t_): Lost some/gained one - elements. - * private.c (__ptw32_threadStart): Removed some comments. - -2001-07-10 Ross Johnson - - * barrier.c: Revamped to fix the race condition. Two alternating - semaphores are used instead of the PulseEvent. Also improved - overall throughput by returning PTHREAD_BARRIER_SERIAL_THREAD - to the first waking thread. - * implement.h (pthread_barrier_t_): Revamped. - -2001-07-09 Ross Johnson - - * barrier.c: Fix several bugs in all routines. Now passes - tests/barrier5.c which is fairly rigorous. There is still - a non-optimal work-around for a race condition between - the barrier breeched event signal and event wait. Basically - the last (signalling) thread to hit the barrier yields - to allow any other threads, which may have lost the race, - to complete. - -2001-07-07 Ross Johnson - - * barrier.c: Changed synchronisation mechanism to a - Win32 manual reset Event and use PulseEvent to signal - waiting threads. If the implementation continued to use - a semaphore it would require a second semaphore and - some management to use them alternately as barriers. A - single semaphore allows threads to cascade from one barrier - through the next, leaving some threads blocked at the first. - * implement.h (pthread_barrier_t_): As per above. - * general: Made a number of other routines inlinable. - -2001-07-07 Ross Johnson - - * spin.c: Revamped and working; included static initialiser. - Now beta level. - * barrier.c: Likewise. - * condvar.c: Macro constant change; inline auto init routine. - * mutex.c: Likewise. - * rwlock.c: Likewise. - * private.c: Add support for spinlock initialiser. - * global.c: Likewise. - * implement.h: Likewise. - * pthread.h (PTHREAD_SPINLOCK_INITIALIZER): Fix typo. - -2001-07-05 Ross Johnson - - * barrier.c: Remove static initialisation - irrelevent - for this object. - * pthread.h (PTHREAD_BARRIER_INITIALIZER): Removed. - * rwlock.c (pthread_rwlock_wrlock): This routine is - not a cancellation point - disable deferred - cancellation around call to pthread_cond_wait(). - -2001-07-05 Ross Johnson - - * spin.c: New module implementing spin locks. - * barrier.c: New module implementing barriers. - * pthread.h (_POSIX_SPIN_LOCKS): defined. - (_POSIX_BARRIERS): Defined. - (pthread_spin_*): Defined. - (pthread_barrier*): Defined. - (PTHREAD_BARRIER_SERIAL_THREAD): Defined. - * implement.h (pthread_spinlock_t_): Defined. - (pthread_barrier_t_): Defined. - (pthread_barrierattr_t_): Defined. - - * mutex.c (pthread_mutex_lock): Return with the error - if an auto-initialiser initialisation fails. - - * nonportable.c (pthread_getprocessors_np): New; gets the - number of available processors for the current process. - -2001-07-03 Ross Johnson - - * pthread.h (_POSIX_READER_WRITER_LOCKS): Define it - if not already defined. - -2001-07-01 Alexander Terekhov - - * condvar.c: Fixed lost signal bug reported by Timur Aydin - (taydin@snet.net). - [RPJ (me) didn't translate the original algorithm - correctly.] - * semaphore.c: Added sem_post_multiple; this is a useful - routine, but it doesn't appear to be standard. For now it's - not an exported function. - -2001-06-25 Ross Johnson - - * create.c (pthread_create): Add priority inheritance - attributes. - * mutex.c (pthread_mutex_lock): Remove some overhead for - PTHREAD_MUTEX_NORMAL mutex types. Specifically, avoid - calling pthread_self() and pthread_equal() to check/set - the mutex owner. Introduce a new pseudo owner for this - type. Test results suggest increases in speed of up to - 90% for non-blocking locks. - This is the default type of mutex used internally by other - synchronising objects, ie. condition variables and - read-write locks. The test rwlock7.c shows about a - 30-35% speed increase over snapshot 2001-06-06. The - price of this is that the application developer - must ensure correct behaviour, or explicitly set the - mutex to a safer type such as PTHREAD_MUTEX_ERRORCHECK. - For example, PTHREAD_MUTEX_NORMAL (or PTHREAD_MUTEX_DEFAULT) - type mutexes will not return an error if a thread which is not - the owner calls pthread_mutex_unlock. The call will succeed - in unlocking the mutex if it is currently locked, but a - subsequent unlock by the true owner will then fail with EPERM. - This is however consistent with some other implementations. - (pthread_mutex_unlock): Likewise. - (pthread_mutex_trylock): Likewise. - (pthread_mutex_destroy): Likewise. - * attr.c (pthread_attr_init): PTHREAD_EXPLICIT_SCHED is the - default inheritance attribute; THREAD_PRIORITY_NORMAL is - the default priority for new threads. - * sched.c (pthread_attr_setschedpolicy): Added routine. - (pthread_attr_getschedpolicy): Added routine. - (pthread_attr_setinheritsched): Added routine. - (pthread_attr_getinheritsched): Added routine. - * pthread.h (sched_rr_set_interval): Added as a macro; - returns -1 with errno set to ENOSYS. - -2001-06-23 Ross Johnson - - *sched.c (pthread_attr_setschedparam): Add priority range - check. - (sched_setscheduler): New function; checks for a valid - pid and policy; checks for permission to set information - in the target process; expects pid to be a Win32 process ID, - not a process handle; the only scheduler policy allowed is - SCHED_OTHER. - (sched_getscheduler): Likewise, but checks for permission - to query. - * pthread.h (SCHED_*): Moved to sched.h as defined in the - POSIX standard. - * sched.h (SCHED_*): Moved from pthread.h. - (pid_t): Defined if necessary. - (sched_setscheduler): Defined. - (sched_getscheduler): Defined. - * pthread.def (sched_setscheduler): Exported. - (sched_getscheduler): Likewise. - -2001-06-23 Ralf Brese - - * create.c (pthread_create): Set thread priority from - thread attributes. - -2001-06-18 Ross Johnson - - * Made organisational-only changes to UWIN additions. - * dll.c (dllMain): Moved UWIN process attach code - to pthread_win32_process_attach_np(); moved - instance of pthread_count to global.c. - * global.c (pthread_count): Moved from dll.c. - * nonportable.c (pthread_win32_process_attach_np): - Moved _UWIN code to here from dll.c. - * implement.h (pthread_count): Define extern int. - * create.c (pthread_count): Remove extern int. - * private.c (pthread_count): Likewise. - * exit.c (pthread_count): Likewise. - -2001-06-18 David Korn - - * dll.c: Added changes necessary to work with UWIN. - * create.c: Likewise. - * pthread.h: Likewise. - * misc.c: Likewise. - * exit.c: Likewise. - * private.c: Likewise. - * implement.h: Likewise. - There is some room at the start of struct pthread_t_ - to implement the signal semantics in UWIN's posix.dll - although this is not yet complete. - * Nmakefile: Compatible with UWIN's Nmake utility. - * Nmakefile.tests: Likewise - for running the tests. - -2001-06-08 Ross Johnson - - * semaphore.h (sem_t): Fixed for compile and test. - * implement.h (sem_t_): Likewise. - * semaphore.c: Likewise. - * private.c (__ptw32_sem_timedwait): Updated to use new - opaque sem_t. - -2001-06-06 Ross Johnson - - * semaphore.h (sem_t): Is now an opaque pointer; - moved actual definition to implement.h. - * implement.h (sem_t_): Move here from semaphore.h; - was the definition of sem_t. - * semaphore.c: Wherever necessary, changed use of sem - from that of a pointer to a pointer-pointer; added - extra checks for a valid sem_t; NULL sem_t when - it is destroyed; added extra checks when creating - and destroying sem_t elements in the NEED_SEM - code branches; changed from using a pthread_mutex_t - ((*sem)->mutex) to CRITICAL_SECTION ((*sem)->sem_lock_cs) - in NEED_SEM branches for access serialisation. - -2001-06-06 Ross Johnson - - * mutex.c (pthread_mutexattr_init): Remove - __ptw32_mutex_default_kind. - -2001-06-05 Ross Johnson - - * nonportable.c (pthread_mutex_setdefaultkind_np): - Remove - should not have been included in the first place. - (pthread_mutex_getdefaultkind_np): Likewise. - * global.c (__ptw32_mutex_default_kind): Likewise. - * mutex.c (pthread_mutex_init): Remove use of - __ptw32_mutex_default_kind. - * pthread.h (pthread_mutex_setdefaultkind_np): Likewise. - (pthread_mutex_getdefaultkind_np): Likewise. - * pthread.def (pthread_mutexattr_setkind_np): Added. - (pthread_mutexattr_getkind_np): Likewise. - - * README: Many changes that should have gone in before - the last snapshot. - * README.NONPORTABLE: New - referred to by ANNOUNCE - but never created; documents the non-portable routines - included in the library - moved from README with new - routines added. - * ANNOUNCE (pthread_mutexattr_setkind_np): Added to - compliance list. - (pthread_mutexattr_getkind_np): Likewise. - -2001-06-04 Ross Johnson - - * condvar.c: Add original description of the algorithm as - developed by Terekhov and Thomas, plus reference to - README.CV. - -2001-06-03 Alexander Terekhov , Louis Thomas - - * condvar.c (pthread_cond_init): Completely revamped. - (pthread_cond_destroy): Likewise. - (__ptw32_cond_wait_cleanup): Likewise. - (__ptw32_cond_timedwait): Likewise. - (__ptw32_cond_unblock): New general signaling routine. - (pthread_cond_signal): Now calls __ptw32_cond_unblock. - (pthread_cond_broadcast): Likewise. - * implement.h (pthread_cond_t_): Revamped. - * README.CV: New; explanation of the above changes. - -2001-05-30 Ross Johnson - - * pthread.h (rand_r): Fake using _seed argument to quell - compiler warning (compiler should optimise this away later). - - * GNUmakefile (OPT): Leave symbolic information out of the library - and increase optimisation level - for smaller faster prebuilt - dlls. - -2001-05-29 Milan Gardian - - * Makefile: fix typo. - * pthreads.h: Fix problems with stdcall/cdecl conventions, in particular - remove the need for PT_STDCALL everywhere; remove warning supression. - * (errno): Fix the longstanding "inconsistent dll linkage" problem - with errno; now also works with /MD debugging libs - - warnings emerged when compiling pthreads library with /MD (or /MDd) - compiler switch, instead of /MT (or /MTd) (i.e. when compiling pthreads - using Multithreaded DLL CRT instead of Multithreaded statically linked - CRT). - * create.c (pthread_create): Likewise; fix typo. - * private.c (__ptw32_threadStart): Eliminate use of terminate() which doesn't - throw exceptions. - * Remove unnecessary #includes from a number of modules - - [I had to #include malloc.h in implement.h for gcc - rpj]. - -2001-05-29 Thomas Pfaff - - * pthread.h (PTHREAD_MUTEX_DEFAULT): New; equivalent to - PTHREAD_MUTEX_DEFAULT_NP. - * (PTHREAD_MUTEX_NORMAL): Similarly. - * (PTHREAD_MUTEX_ERRORCHECK): Similarly. - * (PTHREAD_MUTEX_RECURSIVE): Similarly. - * (pthread_mutex_setdefaultkind_np): New; Linux compatibility stub - for pthread_mutexattr_settype. - * (pthread_mutexattr_getkind_np): New; Linux compatibility stub - for pthread_mutexattr_gettype. - * mutex.c (pthread_mutexattr_settype): New; allow - the following types of mutex: - PTHREAD_MUTEX_DEFAULT_NP - PTHREAD_MUTEX_NORMAL_NP - PTHREAD_MUTEX_ERRORCHECK_NP - PTHREAD_MUTEX_RECURSIVE_NP - * Note that PTHREAD_MUTEX_DEFAULT is equivalent to - PTHREAD_MUTEX_NORMAL - ie. mutexes should no longer - be recursive by default, and a thread will deadlock if it - tries to relock a mutex it already owns. This is inline with - other pthreads implementations. - * (pthread_mutex_lock): Process the lock request - according to the mutex type. - * (pthread_mutex_init): Eliminate use of Win32 mutexes as the - basis of POSIX mutexes - instead, a combination of one critical section - and one semaphore are used in conjunction with Win32 Interlocked* routines. - * (pthread_mutex_destroy): Likewise. - * (pthread_mutex_lock): Likewise. - * (pthread_mutex_trylock): Likewise. - * (pthread_mutex_unlock): Likewise. - * Use longjmp/setjmp to implement cancellation when building the library - using a C compiler which doesn't support exceptions, e.g. gcc -x c (note - that gcc -x c++ uses exceptions). - * Also fixed some of the same typos and eliminated PT_STDCALL as - Milan Gardian's patches above. - -2001-02-07 Alexander Terekhov - - * rwlock.c: Revamped. - * implement.h (pthread_rwlock_t_): Redefined. - This implementation does not have reader/writer starvation problem. - Rwlock attempts to behave more like a normal mutex with - races and scheduling policy determining who is more important; - It also supports recursive locking, - has less synchronization overhead (no broadcasts at all, - readers are not blocked on any condition variable) and seem to - be faster than the current implementation [W98 appears to be - approximately 15 percent faster at least - on top of speed increase - from Thomas Pfaff's changes to mutex.c - rpj]. - -2000-12-29 Ross Johnson - - * Makefile: Back-out "for" loops which don't work. - - * GNUmakefile: Remove the fake.a target; add the "realclean" - target; don't remove built libs under the "clean" target. - - * config.h: Add a guard against multiple inclusion. - - * semaphore.h: Add some defines from config.h to make - semaphore.h independent of config.h when building apps. - - * pthread.h (_errno): Back-out previous fix until we know how to - fix it properly. - - * implement.h (lockCount): Add missing element to pthread_mutex_t_. - - * sync.c (pthread_join): Spelling fix in comment. - - * private.c (__ptw32_threadStart): Reset original termination - function (C++). - (__ptw32_threadStart): Cleanup detached threads early in case - the library is statically linked. - (__ptw32_callUserDestroyRoutines): Remove [SEH] __try block from - destructor call so that unhandled exceptions will be passed through - to the system; call terminate() from [C++] try block for the same - reason. - - * tsd.c (pthread_getspecific): Add comment. - - * mutex.c (pthread_mutex_init): Initialise new elements in - pthread_mutex_t. - (pthread_mutex_unlock): Invert "pthread_equal()" test. - -2000-12-28 Ross Johnson - - * semaphore.c (mode_t): Use ifndef HAVE_MODE_T to include definition. - - * config.h.in (HAVE_MODE_T): Added. - (_UWIN): Start adding defines for the UWIN package. - - * private.c (__ptw32_threadStart): Unhandled exceptions are - now passed through to the system to deal with. This is consistent - with normal Windows behaviour. C++ applications may use - set_terminate() to override the default behaviour which is - to call __ptw32_terminate(). Ptw32_terminate() cleans up some - POSIX thread stuff before calling the system default function - which calls abort(). The users termination function should conform - to standard C++ semantics which is to not return. It should - exit the thread (call pthread_exit()) or exit the application. - * private.c (__ptw32_terminate): Added as the default set_terminate() - function. It calls the system default function after cleaning up - some POSIX thread stuff. - - * implement.h (__ptw32_try_enter_critical_section): Move - declaration. - * global.c (__ptw32_try_enter_critical_section): Moved - from dll.c. - * dll.c: Move process and thread attach/detach code into - functions in nonportable.c. - * nonportable.c (pthread_win32_process_attach_np): Process - attach code from dll.c is now available to static linked - applications. - * nonportable.c (pthread_win32_process_detach_np): Likewise. - * nonportable.c (pthread_win32_thread_attach_np): Likewise. - * nonportable.c (pthread_win32_thread_detach_np): Likewise. - - * pthread.h: Add new non-portable prototypes for static - linked applications. - - * GNUmakefile (OPT): Increase optimisation flag and remove - debug info flag. - - * pthread.def: Add new non-portable exports for static - linked applications. - -2000-12-11 Ross Johnson - - * FAQ: Update Answer 6 re getting a fully working - Mingw32 built library. - -2000-10-10 Steven Reddie - - * misc.c (pthread_self): Restore Win32 "last error" - cleared by TlsGetValue() call in - pthread_getspecific() - -2000-09-20 Arthur Kantor - - * mutex.c (pthread_mutex_lock): Record the owner - of the mutex. This requires also keeping count of - recursive locks ourselves rather than leaving it - to Win32 since we need to know when to NULL the - thread owner when the mutex is unlocked. - (pthread_mutex_trylock): Likewise. - (pthread_mutex_unlock): Check that the calling - thread owns the mutex, decrement the recursive - lock count, and NULL the owner if zero. Return - EPERM if the mutex is owned by another thread. - * implement.h (pthread_mutex_t_): Add ownerThread - and lockCount members. - -2000-09-13 Jef Gearhart - - * mutex.c (pthread_mutex_init): Call - TryEnterCriticalSection through the pointer - rather than directly so that the dll can load - on Windows versions that can't resolve the - function, eg. Windows 95 - -2000-09-09 Ross Johnson - - * pthread.h (ctime_r): Fix arg. - -2000-09-08 Ross Johnson - - * GNUmakefile(_WIN32_WINNT=0x400): Define in CFLAGS; - doesn't seem to be needed though. - - * cancel.c (pthread_cancel): Must get "self" through - calling pthread_self() which will ensure a POSIX thread - struct is built for non-POSIX threads; return an error - if this fails - - Ollie Leahy - (pthread_setcancelstate): Likewise. - (pthread_setcanceltype): Likewise. - * misc.c (__ptw32_cancelable_wait): Likewise. - - * private.c (__ptw32_tkAssocCreate): Remove unused #if 0 - wrapped code. - - * pthread.h (__ptw32_get_exception_services_code): - Needed to be forward declared unconditionally. - -2000-09-06 Ross Johnson - - * cancel.c (pthread_cancel): If called from the main - thread "self" would be NULL; get "self" via pthread_self() - instead of directly from TLS so that an implicit - pthread object is created. - - * misc.c (pthread_equal): Strengthen test for NULLs. - -2000-09-02 Ross Johnson - - * condvar.c (__ptw32_cond_wait_cleanup): Ensure that all - waking threads check if they are the last, and notify - the broadcaster if so - even if an error occurs in the - waiter. - - * semaphore.c (_decrease_semaphore): Should be - a call to __ptw32_decrease_semaphore. - (_increase_semaphore): Should be a call to - __ptw32_increase_semaphore. - - * misc.c (__ptw32_cancelable_wait): Renamed from - CancelableWait. - * rwlock.c (_rwlock_check*): Renamed to - __ptw32_rwlock_check*. - * mutex.c (_mutex_check*): Renamed to __ptw32_mutex_check*. - * condvar.c (cond_timed*): Renamed to __ptw32_cond_timed*. - (_cond_check*): Renamed to __ptw32_cond_check*. - (cond_wait_cleanup*): Rename to __ptw32_cond_wait_cleanup*. - (__ptw32_cond_timedwait): Add comments. - -2000-08-22 Ross Johnson - - * private.c (__ptw32_throw): Fix exception test; - move exceptionInformation declaration. - - * tsd.c (pthread_key_create): newkey wrongly declared. - - * pthread.h: Fix comment block. - -2000-08-18 Ross Johnson - - * mutex.c (pthread_mutex_destroy): Check that the mutex isn't - held; invalidate the mutex as early as possible to avoid - contention; not perfect - FIXME! - - * rwlock.c (pthread_rwlock_init): Remove redundant assignment - to "rw". - (pthread_rwlock_destroy): Invalidate the rwlock before - freeing up any of it's resources - to avoid contention. - - * private.c (__ptw32_tkAssocCreate): Change assoc->lock - to use a dynamically initialised mutex - only consumes - a W32 mutex or critical section when first used, - not before. - - * mutex.c (pthread_mutex_init): Remove redundant assignment - to "mx". - (pthread_mutexattr_destroy): Set attribute to NULL - before freeing it's memory - to avoid contention. - - * implement.h (__PTW32_EPS_CANCEL/PTW32_EPS_EXIT): - Must be defined for all compilers - used as generic - exception selectors by __ptw32_throw(). - - * Several: Fix typos from scripted edit session - yesterday. - - * nonportable.c (pthread_mutexattr_setforcecs_np): - Moved this function from mutex.c. - (pthread_getw32threadhandle_np): New function to - return the win32 thread handle that the POSIX - thread is using. - * mutex.c (pthread_mutexattr_setforcecs_np): - Moved to new file "nonportable.c". - - * pthread.h (__PTW32_BUILD): Only redefine __except - and catch compiler keywords if we aren't building - the library (ie. __PTW32_BUILD is not defined) - - this is safer than defining and then undefining - if not building the library. - * implement.h: Remove __except and catch undefines. - * Makefile (CFLAGS): Define __PTW32_BUILD. - * GNUmakefile (CFLAGS): Define __PTW32_BUILD. - - * All appropriate: Change Pthread_exception* to - __ptw32_exception* to be consistent with internal - identifier naming. - - * private.c (__ptw32_throw): New function to provide - a generic exception throw for all internal - exceptions and EH schemes. - (__ptw32_threadStart): pthread_exit() value is now - returned via the thread structure exitStatus - element. - * exit.c (pthread_exit): pthread_exit() value is now - returned via the thread structure exitStatus - element. - * cancel.c (__ptw32_cancel_self): Now uses __ptw32_throw. - (pthread_setcancelstate): Ditto. - (pthread_setcanceltype): Ditto. - (pthread_testcancel): Ditto. - (pthread_cancel): Ditto. - * misc.c (CancelableWait): Ditto. - * exit.c (pthread_exit): Ditto. - * All applicable: Change __PTW32_ prefix to - PTW32_ prefix to remove leading underscores - from private library identifiers. - -2000-08-17 Ross Johnson - - * All applicable: Change _pthread_ prefix to - __ptw32_ prefix to remove leading underscores - from private library identifiers (single - and double leading underscores are reserved in the - ANSI C standard for compiler implementations). - - * tsd.c (pthread_create_key): Initialise temporary - key before returning it's address to avoid race - conditions. - -2000-08-13 Ross Johnson - - * errno.c: Add _MD precompile condition; thus far - had no effect when using /MD compile option but I - thnk it should be there. - - * exit.c: Add __cplusplus to various #if lines; - was compiling SEH code even when VC++ had - C++ compile options. - - * private.c: ditto. - - * create.c (pthread_create): Add PT_STDCALL macro to - function pointer arg in _beginthread(). - - * pthread.h: PT_STDCALL really does need to be defined - in both this and impliment.h; don't set it to __cdecl - - this macro is only used to extend function pointer - casting for functions that will be passed as parameters. - (~PThreadCleanup): add cast and group expression. - (_errno): Add _MD compile conditional. - (__PtW32NoCatchWarn): Change pragma message. - - * implement.h: Move and change PT_STDCALL define. - - * need_errno.h: Add _MD to compilation conditional. - - * GNUmakefile: Substantial rewrite for new naming - convention; set for nil optimisation (turn it up - when we have a working library build; add target - "fake.a" to build a libpthreadw32.a from the VC++ - built DLL pthreadVCE.dll. - - * pthread.def (LIBRARY): Don't specify in the .def - file - it is specified on the linker command line - since we now use the same .def file for variously - named .dlls. - - * Makefile: Substantial rewrite for new naming - convention; default nmake target only issues a - help message; run nmake with specific target - corresponding to the EH scheme being used. - - * README: Update information; add naming convention - explanation. - - * ANNOUNCE: Update information. - -2000-08-12 Ross Johnson - - * pthread.h: Add compile-time message when using - MSC_VER compiler and C++ EH to warn application - programmers to use __PtW32Catch instead of catch(...) - if they want cancellation and pthread_exit to work. - - * implement.h: Remove #include ; we - use our own local semaphore.h. - -2000-08-10 Ross Johnson - - * cleanup.c (pthread_pop_cleanup): Remove _pthread - prefix from __except and catch keywords; implement.h - now simply undefines __ptw32__except and - __ptw32_catch if defined; VC++ was not textually - substituting __ptw32_catch etc back to catch as - it was redefined; the reason for using the prefixed - version was to make it clear that it was not using - the pthread.h redefined catch keyword. - - * private.c (__ptw32_threadStart): Ditto. - (__ptw32_callUserDestroyRoutines): Ditto. - - * implement.h (__ptw32__except): Remove #define. - (__ptw32_catch): Remove #define. - - * GNUmakefile (pthread.a): New target to build - libpthread32.a from pthread.dll using dlltool. - - * buildlib.bat: Duplicate cl commands with args to - build C++ EH version of pthread.dll; use of .bat - files is redundant now that nmake compatible - Makefile is included; used as a kludge only now. - - * Makefile: Localise some macros and fix up the clean: - target to extend it and work properly. - - * CONTRIBUTORS: Add contributors. - - * ANNOUNCE: Updated. - - * README: Updated. - -2000-08-06 Ross Johnson - - * pthread.h: Remove #warning - VC++ doesn't accept it. - -2000-08-05 Ross Johnson - - * pthread.h (__PtW32CatchAll): Add macro. When compiling - applications using VC++ with C++ EH rather than SEH - '__PtW32CatchAll' must be used in place of any 'catch( ... )' - if the application wants pthread cancellation or - pthread_exit() to work. - -2000-08-03 Ross Johnson - - * pthread.h: Add a base class __ptw32_exception for - library internal exceptions and change the "catch" - re-define macro to use it. - -2000-08-02 Ross Johnson - - * GNUmakefile (CFLAGS): Add -mthreads. - Add new targets to generate cpp and asm output. - - * sync.c (pthread_join): Remove dead code. - -2000-07-25 Tristan Savatier - - * sched.c (sched_get_priority_max): Handle different WinCE and - Win32 priority values together. - (sched_get_priority_min): Ditto. - -2000-07-25 Ross Johnson - - * create.c (pthread_create): Force new threads to wait until - pthread_create has the new thread's handle; we also retain - a local copy of the handle for internal use until - pthread_create returns. - - * private.c (__ptw32_threadStart): Initialise ei[]. - (__ptw32_threadStart): When beginthread is used to start the - thread, force waiting until the creator thread had the - thread handle. - - * cancel.c (__ptw32_cancel_thread): Include context switch - code for defined(_X86_) environments in addition to _M_IX86. - - * rwlock.c (pthread_rwlock_destroy): Assignment changed - to avoid compiler warning. - - * private.c (__ptw32_get_exception_services_code): Cast - NULL return value to avoid compiler warning. - - * cleanup.c (pthread_pop_cleanup): Initialise "cleanup" variable - to avoid compiler warnings. - - * misc.c (__ptw32_new): Change "new" variable to "t" to avoid - confusion with the C++ keyword of the same name. - - * condvar.c (cond_wait_cleanup): Initialise lastWaiter variable. - (cond_timedwait): Remove unused local variables. to avoid - compiler warnings. - - * dll.c (dllMain): Remove 2000-07-21 change - problem - appears to be in pthread_create(). - -2000-07-22 Ross Johnson - - * tsd.c (pthread_key_create): If a destructor was given - and the pthread_mutex_init failed, then would try to - reference a NULL pointer (*key); eliminate this section of - code by using a dynamically initialised mutex - (PTHREAD_MUTEX_INITIALIZER). - - * tsd.c (pthread_setspecific): Return an error if - unable to set the value; simplify cryptic conditional. - - * tsd.c (pthread_key_delete): Locking threadsLock relied - on mutex_lock returning an error if the key has no destructor. - ThreadsLock is only initialised if the key has a destructor. - Making this mutex a static could reduce the number of mutexes - used by an application since it is actually created only at - first use and it's often destroyed soon after. - -2000-07-22 Ross Johnson - - * FAQ: Added Q5 and Q6. - -2000-07-21 David Baggett - - * dll.c: Include resource leakage work-around. This is a - partial FIXME which doesn't stop all leakage. The real - problem needs to be found and fixed. - -2000-07-21 Ross Johnson - - * create.c (pthread_create): Set threadH to 0 (zero) - everywhere. Some assignments were using NULL. Maybe - it should be NULL everywhere - need to check. (I know - they are nearly always the same thing - but not by - definition.) - - * misc.c (pthread_self): Try to catch NULL thread handles - at the point where they might be generated, even though - they should always be valid at this point. - - * tsd.c (pthread_setspecific): return an error value if - pthread_self() returns NULL. - - * sync.c (pthread_join): return an error value if - pthread_self() returns NULL. - - * signal.c (pthread_sigmask): return an error value if - pthread_self() returns NULL. - -2000-03-02 Ross Johnson - - * attr.c (pthread_attr_init): Set default stacksize to zero (0) - rather than PTHREAD_STACK_MIN even though these are now the same. - - * pthread.h (PTHREAD_STACK_MIN): Lowered to 0. - -2000-01-28 Ross Johnson - - * mutex.c (pthread_mutex_init): Free mutex if it has been alloced; - if critical sections can be used instead of Win32 mutexes, test - that the critical section works and return an error if not. - -2000-01-07 Ross Johnson - - * cleanup.c (pthread_pop_cleanup): Include SEH code only if MSC is not - compiling as C++. - (pthread_push_cleanup): Include SEH code only if MSC is not - compiling as C++. - - * pthread.h: Include SEH code only if MSC is not - compiling as C++. - - * implement.h: Include SEH code only if MSC is not - compiling as C++. - - * cancel.c (__ptw32_cancel_thread): Add _M_IX86 check. - (pthread_testcancel): Include SEH code only if MSC is not - compiling as C++. - (__ptw32_cancel_self): Include SEH code only if MSC is not - compiling as C++. - -2000-01-06 Erik Hensema - - * Makefile: Remove inconsistencies in 'cl' args - -2000-01-04 Ross Johnson - - * private.c (__ptw32_get_exception_services_code): New; returns - value of EXCEPTION_PTW32_SERVICES. - (__ptw32_processInitialize): Remove initialisation of - __ptw32_exception_services which is no longer needed. - - * pthread.h (__ptw32_exception_services): Remove extern. - (__ptw32_get_exception_services_code): Add function prototype; - use this to return EXCEPTION_PTW32_SERVICES value instead of - using the __ptw32_exception_services variable which I had - trouble exporting through pthread.def. - - * global.c (__ptw32_exception_services): Remove declaration. - -1999-11-22 Ross Johnson - - * implement.h: Forward declare __ptw32_new(); - - * misc.c (__ptw32_new): New; alloc and initialise a new pthread_t. - (pthread_self): New thread struct is generated by new routine - __ptw32_new(). - - * create.c (pthread_create): New thread struct is generated - by new routine __ptw32_new(). - -1999-11-21 Ross Johnson - - * global.c (__ptw32_exception_services): Declare new variable. - - * private.c (__ptw32_threadStart): Destroy thread's - cancelLock mutex; make 'catch' and '__except' usageimmune to - redfinitions in pthread.h. - (__ptw32_processInitialize): Init new constant __ptw32_exception_services. - - * create.c (pthread_create): Initialise thread's cancelLock - mutex. - - * cleanup.c (pthread_pop_cleanup): Make 'catch' and '__except' - usage immune to redfinition s in pthread.h. - - * private.c: Ditto. - - * pthread.h (catch): Redefine 'catch' so that C++ applications - won't catch our internal exceptions. - (__except): ditto for __except. - - * implement.h (__ptw32_catch): Define internal version - of 'catch' because 'catch' is redefined by pthread.h. - (__except): ditto for __except. - (struct pthread_t_): Add cancelLock mutex for async cancel - safety. - -1999-11-21 Jason Nye , Erik Hensema - - * cancel.c (__ptw32_cancel_self): New; part of the async - cancellation implementation. - (__ptw32_cancel_thread): Ditto; this function is X86 - processor specific. - (pthread_setcancelstate): Add check for pending async - cancel request and cancel the calling thread if - required; add async-cancel safety lock. - (pthread_setcanceltype): Ditto. - -1999-11-13 Erik Hensema - - * configure.in (AC_OUTPUT): Put generated output into GNUmakefile - rather than Makefile. Makefile will become the MSC nmake compatible - version - -1999-11-13 John Bossom (John.Bossom@gmail.com> - - * misc.c (pthread_self): Add a note about GetCurrentThread - returning a pseudo-handle - -1999-11-10 Todd Owen - - * dll.c (dllMain): Free kernel32 ASAP. - If TryEnterCriticalSection is not being used, then free - the kernel32.dll handle now, rather than leaving it until - DLL_PROCESS_DETACH. - - Note: this is not a pedantic exercise in freeing unused - resources! It is a work-around for a bug in Windows 95 - (see microsoft knowledge base article, Q187684) which - does Bad Things when FreeLibrary is called within - the DLL_PROCESS_DETACH code, in certain situations. - Since w95 just happens to be a platform which does not - provide TryEnterCriticalSection, the bug will be - effortlessly avoided. - -1999-11-10 Ross Johnson - - * sync.c (pthread_join): Make it a deferred cancellation point. - - * misc.c (pthread_self): Explicitly initialise implicitly - created thread state to default values. - -1999-11-05 Tristan Savatier - - * pthread.h (winsock.h): Include unconditionally. - (ETIMEDOUT): Change fallback value to that defined by winsock.h. - - * general: Patched for portability to WinCE. The details are - described in the file WinCE-PORT. Follow the instructions - in README.WinCE to make the appropriate changes in config.h. - -1999-10-30 Erik Hensema - - * create.c (pthread_create): Explicitly initialise thread state to - default values. - - * cancel.c (pthread_setcancelstate): Check for NULL 'oldstate' - for compatibility with Solaris pthreads; - (pthread_setcanceltype): ditto: - -1999-10-23 Erik Hensema - - * pthread.h (ctime_r): Fix incorrect argument "_tm" - -1999-10-21 Aurelio Medina - - * pthread.h (_POSIX_THREADS): Only define it if it isn't - already defined. Projects may need to define this on - the CC command line under Win32 as it doesn't have unistd.h - -1999-10-17 Ross Johnson - - * rwlock.c (pthread_rwlock_destroy): Add cast to remove compile - warning. - - * condvar.c (pthread_cond_broadcast): Only release semaphores - if there are waiting threads. - -1999-10-15 Lorin Hochstein , Peter Slacik - - * condvar.c (cond_wait_cleanup): New static cleanup handler for - cond_timedwait; - (cond_timedwait): pthread_cleanup_push args changed; - canceling a thread while it's in pthread_cond_wait - will now decrement the waiters count and cleanup if it's the - last waiter. - -1999-10-15 Graham Dumpleton - - * condvar.c (cond_wait_cleanup): the last waiter will now reset the CV's - wasBroadcast flag - -Thu Sep 16 1999 Ross Johnson - - * rwlock.c (pthread_rwlock_destroy): Add serialisation. - (_rwlock_check_need_init): Check for detroyed rwlock. - * rwlock.c: Check return codes from _rwlock_check_need_init(); - modify comments; serialise access to rwlock objects during - operations; rename rw_mutex to rw_lock. - * implement.h: Rename rw_mutex to rw_lock. - * mutex.c (pthread_mutex_destroy): Add serialisation. - (_mutex_check_need_init): Check for detroyed mutex. - * condvar.c (pthread_cond_destroy): Add serialisation. - (_cond_check_need_init): Check for detroyed condvar. - * mutex.c: Modify comments. - * condvar.c: Modify comments. - -1999-08-10 Aurelio Medina - - * implement.h (pthread_rwlock_t_): Add. - * pthread.h (pthread_rwlock_t): Add. - (PTHREAD_RWLOCK_INITIALIZER): Add. - Add rwlock function prototypes. - * rwlock.c: New module. - * pthread.def: Add new rwlock functions. - * private.c (__ptw32_processInitialize): initialise - __ptw32_rwlock_test_init_lock critical section. - * global.c (__ptw32_rwlock_test_init_lock): Add. - - * mutex.c (pthread_mutex_destroy): Don't free mutex memory - if mutex is PTHREAD_MUTEX_INITIALIZER and has not been - initialised yet. - -1999-08-08 Milan Gardian - - * mutex.c (pthread_mutex_destroy): Free mutex memory. - -1999-08-22 Ross Johnson - - * exit.c (pthread_exit): Fix reference to potentially - uninitialised pointer. - -1999-08-21 Ross Johnson - - * private.c (__ptw32_threadStart): Apply fix of 1999-08-19 - this time to C++ and non-trapped C versions. Ommitted to - do this the first time through. - -1999-08-19 Ross Johnson - - * private.c (__ptw32_threadStart): Return exit status from - the application thread startup routine. - - Milan Gardian - -1999-08-18 John Bossom - - * exit.c (pthread_exit): Put status into pthread_t->exitStatus - * private.c (__ptw32_threadStart): Set pthread->exitStatus - on exit of try{} block. - * sync.c (pthread_join): use pthread_exitStatus value if the - thread exit doesn't return a value (for Mingw32 CRTDLL - which uses endthread instead of _endthreadex). - -Tue Aug 17 20:17:58 CDT 1999 Mumit Khan - - * create.c (pthread_create): Add CRTDLL suppport. - * exit.c (pthread_exit): Likewise. - * private.c (__ptw32_threadStart): Likewise. - (__ptw32_threadDestroy): Likewise. - * sync.c (pthread_join): Likewise. - * tests/join1.c (main): Warn about partial support for CRTDLL. - -Tue Aug 17 20:00:08 1999 Mumit Khan - - * Makefile.in (LD): Delete entry point. - * acconfig.h (STDCALL): Delete unused macro. - * configure.in: Remove test for STDCALL. - * config.h.in: Regenerate. - * errno.c (_errno): Fix self type. - * pthread.h (PT_STDCALL): Move from here to - * implement.h (PT_STDCALL): here. - (__ptw32_threadStart): Fix prototype. - * private.c (__ptw32_threadStart): Likewise. - -1999-08-14 Ross Johnson - - * exit.c (pthread_exit): Don't call pthread_self() but - get thread handle directly from TSD for efficiency. - -1999-08-12 Ross Johnson - - * private.c (__ptw32_threadStart): ei[] only declared if _MSC_VER. - - * exit.c (pthread_exit): Check for implicitly created threads - to avoid raising an unhandled exception. - -1999-07-12 Peter Slacik - - * condvar.c (pthread_cond_destroy): Add critical section. - (cond_timedwait): Add critical section; check for timeout - waiting on semaphore. - (pthread_cond_broadcast): Add critical section. - -1999-07-09 Lorin Hochstein , John Bossom - - The problem was that cleanup handlers were not executed when - pthread_exit() was called. - - * implement.h (pthread_t_): Add exceptionInformation element for - C++ per-thread exception information. - (general): Define and rename exceptions. - -1999-07-09 Ross Johnson - - * misc.c (CancelableWait): __PTW32_EPS_CANCEL (SEH) and - __ptw32_exception_cancel (C++) used to identify the exception. - - * cancel.c (pthread_testcancel): __PTW32_EPS_CANCEL (SEH) and - __ptw32_exception_cancel (C++) used to identify the exception. - - * exit.c (pthread_exit): throw/raise an exception to return to - __ptw32_threadStart() to exit the thread. __PTW32_EPS_EXIT (SEH) - and __ptw32_exception_exit (C++) used to identify the exception. - - * private.c (__ptw32_threadStart): Add pthread_exit exception trap; - clean up and exit the thread directly rather than via pthread_exit(). - -Sun May 30 00:25:02 1999 Ross Johnson - - * semaphore.h (mode_t): Conditionally typedef it. - -Fri May 28 13:33:05 1999 Mark E. Armstrong - - * condvar.c (pthread_cond_broadcast): Fix possible memory fault - -Thu May 27 13:08:46 1999 Peter Slacik - - * condvar.c (pthread_cond_broadcast): Fix logic bug - -Thu May 27 13:08:46 1999 Bossom, John - - * condvar.c (pthread_cond_broadcast): optimise sem_post loop - -Fri May 14 12:13:18 1999 Mike Russo - - * attr.c (pthread_attr_setdetachstate): Fix logic bug - -Sat May 8 09:42:30 1999 Ross Johnson - - * pthread.def (sem_open): Add. - (sem_close): Add. - (sem_unlink): Add. - (sem_getvalue): Add. - - * FAQ (Question 3): Add. - -Thu Apr 8 01:16:23 1999 Ross Johnson - - * semaphore.c (sem_open): New function; returns an error (ENOSYS). - (sem_close): ditto. - (sem_unlink): ditto. - (sem_getvalue): ditto. - - * semaphore.h (_POSIX_SEMAPHORES): define. - -Wed Apr 7 14:09:52 1999 Ross Johnson - - * errno.c (_REENTRANT || _MT): Invert condition. - - * pthread.h (_errno): Conditionally include prototype. - -Wed Apr 7 09:37:00 1999 Ross Johnson - - * *.c (comments): Remove individual attributions - these are - documented sufficiently elsewhere. - - * implement.h (pthread.h): Remove extraneous include. - -Sun Apr 4 11:05:57 1999 Ross Johnson - - * sched.c (sched.h): Include. - - * sched.h: New file for POSIX 1b scheduling. - - * pthread.h: Move opaque structures to implement.h; move sched_* - prototypes out and into sched.h. - - * implement.h: Add opaque structures from pthread.h. - - * sched.c (sched_yield): New function. - - * condvar.c (__ptw32_sem_*): Rename to sem_*; except for - __ptw32_sem_timedwait which is an private function. - -Sat Apr 3 23:28:00 1999 Ross Johnson - - * Makefile.in (OBJS): Add errno.o. - -Fri Apr 2 11:08:50 1999 Ross Johnson - - * implement.h (__ptw32_sem_*): Remove prototypes now defined in - semaphore.h. - - * pthread.h (sempahore.h): Include. - - * semaphore.h: New file for POSIX 1b semaphores. - - * semaphore.c (__ptw32_sem_timedwait): Moved to private.c. - - * pthread.h (__ptw32_sem_t): Change to sem_t. - - * private.c (__ptw32_sem_timedwait): Moved from semaphore.c; - set errno on error. - - * pthread.h (pthread_t_): Add per-thread errno element. - -Fri Apr 2 11:08:50 1999 John Bossom - - * semaphore.c (__ptw32_sem_*): Change to sem_*; these functions - will be exported from the library; set errno on error. - - * errno.c (_errno): New file. New function. - -Fri Mar 26 14:11:45 1999 Tor Lillqvist - - * semaphore.c (__ptw32_sem_timedwait): Check for negative - milliseconds. - -Wed Mar 24 11:32:07 1999 John Bossom - - * misc.c (CancelableWait): Initialise exceptionInformation[2]. - (pthread_self): Get a real Win32 thread handle for implicit threads. - - * cancel.c (pthread_testcancel): Initialise exceptionInformation[2]. - - * implement.h (SE_INFORMATION): Fix values. - - * private.c (__ptw32_threadDestroy): Close the thread handle. - -Fri Mar 19 12:57:27 1999 Ross Johnson - - * cancel.c (comments): Update and cleanup. - -Fri Mar 19 09:12:59 1999 Ross Johnson - - * private.c (__ptw32_threadStart): status returns PTHREAD_CANCELED. - - * pthread.h (PTHREAD_CANCELED): defined. - -Tue Mar 16 1999 Ross Johnson - - * all: Add GNU LGPL and Copyright and Warranty. - -Mon Mar 15 00:20:13 1999 Ross Johnson - - * condvar.c (pthread_cond_init): fix possible uninitialised use - of cv. - -Sun Mar 14 21:01:59 1999 Ross Johnson - - * condvar.c (pthread_cond_destroy): don't do full cleanup if - static initialised cv has never been used. - (cond_timedwait): check result of auto-initialisation. - -Thu Mar 11 09:01:48 1999 Ross Johnson - - * pthread.h (pthread_mutex_t): revert to (pthread_mutex_t *); - define a value to serve as PTHREAD_MUTEX_INITIALIZER. - (pthread_mutex_t_): remove staticinit and valid elements. - (pthread_cond_t): revert to (pthread_cond_t_ *); - define a value to serve as PTHREAD_COND_INITIALIZER. - (pthread_cond_t_): remove staticinit and valid elements. - - * mutex.c (pthread_mutex_t args): adjust indirection of references. - (all functions): check for PTHREAD_MUTEX_INITIALIZER value; - check for NULL (invalid). - - * condvar.c (pthread_cond_t args): adjust indirection of references. - (all functions): check for PTHREAD_COND_INITIALIZER value; - check for NULL (invalid). - -Wed Mar 10 17:18:12 1999 Ross Johnson - - * misc.c (CancelableWait): Undo changes from Mar 8 and 7. - -Mon Mar 8 11:18:59 1999 Ross Johnson - - * misc.c (CancelableWait): Ensure cancelEvent handle is the lowest - indexed element in the handles array. Enhance test for abandoned - objects. - - * pthread.h (PTHREAD_MUTEX_INITIALIZER): Trailing elements not - initialised are set to zero by the compiler. This avoids the - problem of initialising the opaque critical section element in it. - (PTHREAD_COND_INITIALIZER): Ditto. - - * semaphore.c (__ptw32_sem_timedwait): Check sem == NULL earlier. - -Sun Mar 7 12:31:14 1999 Ross Johnson - - * condvar.c (pthread_cond_init): set semaphore initial value - to 0, not 1. cond_timedwait was returning signaled immediately. - - * misc.c (CancelableWait): Place the cancel event handle first - in the handle table for WaitForMultipleObjects. This ensures that - the cancel event is recognised and acted apon if both objects - happen to be signaled together. - - * private.c (__ptw32_cond_test_init_lock): Initialise and destroy. - - * implement.h (__ptw32_cond_test_init_lock): Add extern. - - * global.c (__ptw32_cond_test_init_lock): Add declaration. - - * condvar.c (pthread_cond_destroy): check for valid initialised CV; - flag destroyed CVs as invalid. - (pthread_cond_init): pthread_cond_t is no longer just a pointer. - This is because PTHREAD_COND_INITIALIZER needs state info to reside - in pthread_cond_t so that it can initialise on first use. Will work on - making pthread_cond_t (and other objects like it) opaque again, if - possible, later. - (cond_timedwait): add check for statically initialisation of - CV; initialise on first use. - (pthread_cond_signal): check for valid CV. - (pthread_cond_broadcast): check for valid CV. - (_cond_check_need_init): Add. - - * pthread.h (PTHREAD_COND_INITIALIZER): Fix. - (pthread_cond_t): no longer a pointer to pthread_cond_t_. - (pthread_cond_t_): add 'staticinit' and 'valid' elements. - -Sat Mar 6 1999 Ross Johnson - - * implement.h: Undate comments. - -Sun Feb 21 1999 Ross Johnson - - * pthread.h (PTHREAD_MUTEX_INITIALIZER): missing braces around - cs element initialiser. - -1999-02-21 Ben Elliston - - * pthread.h (pthread_exit): The return type of this function is - void, not int. - - * exit.c (pthread_exit): Do not return 0. - -Sat Feb 20 16:03:30 1999 Ross Johnson - - * dll.c (DLLMain): Expand TryEnterCriticalSection support test. - - * mutex.c (pthread_mutex_trylock): The check for - __ptw32_try_enter_critical_section == NULL should have been - removed long ago. - -Fri Feb 19 16:03:30 1999 Ross Johnson - - * sync.c (pthread_join): Fix pthread_equal() test. - - * mutex.c (pthread_mutex_trylock): Check mutex != NULL before - using it. - -Thu Feb 18 16:17:30 1999 Ross Johnson - - * misc.c (pthread_equal): Fix inverted result. - - * Makefile.in: Use libpthread32.a as the name of the DLL export - library instead of pthread.lib. - - * condvar.c (pthread_cond_init): cv could have been used unitialised; - initialise. - - * create.c (pthread_create): parms could have been used unitialised; - initialise. - - * pthread.h (struct pthread_once_t_): Remove redefinition. - -Sat Feb 13 03:03:30 1999 Ross Johnson - - * pthread.h (struct pthread_once_t_): Replaced. - - * misc.c (pthread_once): Replace with John Bossom's version; - has lighter weight serialisation; fixes problem of not holding - competing threads until after the init_routine completes. - -Thu Feb 11 13:34:14 1999 Ross Johnson - - * misc.c (CancelableWait): Change C++ exception throw. - - * sync.c (pthread_join): Change FIXME comment - issue resolved. - -Wed Feb 10 12:49:11 1999 Ross Johnson - - * configure: Various temporary changes. - - Kevin Ruland - - * README: Update. - - * pthread.def (pthread_attr_getstackaddr): uncomment - (pthread_attr_setstackaddr): uncomment - -Fri Feb 5 13:42:30 1999 Ross Johnson - - * semaphore.c: Comment format changes. - -Thu Feb 4 10:07:28 1999 Ross Johnson - - * global.c: Remove __ptw32_exception instantiation. - - * cancel.c (pthread_testcancel): Change C++ exception throw. - - * implement.h: Remove extern declaration. - -Wed Feb 3 13:04:44 1999 Ross Johnson - - * cleanup.c: Rename __ptw32_*_cleanup() to pthread_*_cleanup(). - - * pthread.def: Ditto. - - * pthread.h: Ditto. - - * pthread.def (pthread_cleanup_push): Remove from export list; - the function is defined as a macro under all compilers. - (pthread_cleanup_pop): Ditto. - - * pthread.h: Remove #if defined(). - -Wed Feb 3 10:13:48 1999 Ross Johnson - - * sync.c (pthread_join): Check for NULL value_ptr arg; - check for detached threads. - -Tue Feb 2 18:07:43 1999 Ross Johnson - - * implement.h: Add #include . - Change sem_t to __ptw32_sem_t. - -Tue Feb 2 18:07:43 1999 Kevin Ruland - - * signal.c (pthread_sigmask): Add and modify casts. - Reverse LHS/RHS bitwise assignments. - - * pthread.h: Remove #include . - (__PTW32_ATTR_VALID): Add cast. - (struct pthread_t_): Add sigmask element. - - * dll.c: Add "extern C" for DLLMain. - (DllMain): Add cast. - - * create.c (pthread_create): Set sigmask in thread. - - * condvar.c: Remove #include. Change sem_* to __ptw32_sem_*. - - * attr.c: Changed #include. - - * Makefile.in: Additional targets and changes to build the library - as a DLL. - -Fri Jan 29 11:56:28 1999 Ross Johnson - - * Makefile.in (OBJS): Add semaphore.o to list. - - * semaphore.c (__ptw32_sem_timedwait): Move from private.c. - Rename sem_* to __ptw32_sem_*. - - * pthread.h (pthread_cond_t): Change type of sem_t. - _POSIX_SEMAPHORES no longer defined. - - * semaphore.h: Contents moved to implement.h. - Removed from source tree. - - * implement.h: Add semaphore function prototypes and rename all - functions to prepend '__ptw32_'. They are - now private to the pthreads-win32 implementation. - - * private.c: Change #warning. - Move __ptw32_sem_timedwait() to semaphore.c. - - * cleanup.c: Change #warning. - - * misc.c: Remove #include - - * pthread.def: Cleanup CVS merge conflicts. - - * global.c: Ditto. - - * ChangeLog: Ditto. - - * cleanup.c: Ditto. - -Sun Jan 24 01:34:52 1999 Ross Johnson - - * semaphore.c (sem_wait): Remove second arg to - pthreadCancelableWait() call. - -Sat Jan 23 17:36:40 1999 Ross Johnson - - * pthread.def: Add new functions to export list. - - * pthread.h (PTHREAD_MUTEX_AUTO_CS_NP): New. - (PTHREAD_MUTEX_FORCE_CS_NP): New. - - * README: Updated. - -Fri Jan 22 14:31:59 1999 Ross Johnson - - * Makefile.in (CFLAGS): Remove -fhandle-exceptions. Not needed - with egcs. Add -g for debugging. - - * create.c (pthread_create): Replace __stdcall with PT_STDCALL - macro. This is a hack and must be fixed. - - * misc.c (CancelableWait): Remove redundant statement. - - * mutex.c (pthread_mutexattr_init): Cast calloc return value. - - * misc.c (CancelableWait): Add cast. - (pthread_self): Add cast. - - * exit.c (pthread_exit): Add cast. - - * condvar.c (pthread_condattr_init): Cast calloc return value. - - * cleanup.c: Reorganise conditional compilation. - - * attr.c (pthread_attr_init): Remove unused 'result'. - Cast malloc return value. - - * private.c (__ptw32_callUserDestroyRoutines): Redo conditional - compilation. - - * misc.c (CancelableWait): C++ version uses 'throw'. - - * cancel.c (pthread_testcancel): Ditto. - - * implement.h (class __ptw32_exception): Define for C++. - - * pthread.h: Fix C, C++, and Win32 SEH condition compilation - mayhem around pthread_cleanup_* defines. C++ version now uses John - Bossom's cleanup handlers. - (pthread_attr_t): Make 'valid' unsigned. - Define '_timeb' as 'timeb' for Ming32. - Define PT_STDCALL as nothing for Mingw32. May be temporary. - - * cancel.c (pthread_testcancel): Cast return value. - -Wed Jan 20 09:31:28 1999 Ross Johnson - - * pthread.h (pthread_mutexattr_t): Changed to a pointer. - - * mutex.c (pthread_mutex_init): Conditionally create Win32 mutex - - from John Bossom's implementation. - (pthread_mutex_destroy): Conditionally close Win32 mutex - - from John Bossom's implementation. - (pthread_mutexattr_init): Replaced by John Bossom's version. - (pthread_mutexattr_destroy): Ditto. - (pthread_mutexattr_getpshared): New function from John Bossom's - implementation. - (pthread_mutexattr_setpshared): New function from John Bossom's - implementation. - -Tue Jan 19 18:27:42 1999 Ross Johnson - - * pthread.h (pthreadCancelableTimedWait): New prototype. - (pthreadCancelableWait): Remove second argument. - - * misc.c (CancelableWait): New static function is - pthreadCancelableWait() renamed. - (pthreadCancelableWait): Now just calls CancelableWait() with - INFINITE timeout. - (pthreadCancelableTimedWait): Just calls CancelableWait() - with passed in timeout. - -Tue Jan 19 18:27:42 1999 Scott Lightner - - * private.c (__ptw32_sem_timedwait): 'abstime' arg really is - absolute time. Calculate relative time to wait from current - time before passing timeout to new routine - pthreadCancelableTimedWait(). - -Tue Jan 19 10:27:39 1999 Ross Johnson - - * pthread.h (pthread_mutexattr_setforcecs_np): New prototype. - - * mutex.c (pthread_mutexattr_init): Init 'pshared' and 'forcecs' - attributes to 0. - (pthread_mutexattr_setforcecs_np): New function (not portable). - - * pthread.h (pthread_mutex_t): - Add 'mutex' element. Set to NULL in PTHREAD_MUTEX_INITIALIZER. - The pthread_mutex_*() routines will try to optimise performance - by choosing either mutexes or critical sections as the basis - for pthread mutexes for each indevidual mutex. - (pthread_mutexattr_t_): Add 'forcecs' element. - Some applications may choose to force use of critical sections - if they know that:- - the mutex is PROCESS_PRIVATE and, - either the OS supports TryEnterCriticalSection() or - pthread_mutex_trylock() will never be called on the mutex. - This attribute will be setable via a non-portable routine. - - Note: We don't yet support PROCESS_SHARED mutexes, so the - implementation as it stands will default to Win32 mutexes only if - the OS doesn't support TryEnterCriticalSection. On Win9x, and early - versions of NT 'forcecs' will need to be set in order to get - critical section based mutexes. - -Sun Jan 17 12:01:26 1999 Ross Johnson - - * pthread.h (PTHREAD_MUTEX_INITIALIZER): Init new 'staticinit' - value to '1' and existing 'valid' value to '1'. - - * global.c (__ptw32_mutex_test_init_lock): Add. - - * implement.h (__ptw32_mutex_test_init_lock.): Add extern. - - * private.c (__ptw32_processInitialize): Init critical section for - global lock used by _mutex_check_need_init(). - (__ptw32_processTerminate): Ditto (:s/Init/Destroy/). - - * dll.c (dllMain): Move call to FreeLibrary() so that it is only - called once when the process detaches. - - * mutex.c (_mutex_check_need_init): New static function to test - and init PTHREAD_MUTEX_INITIALIZER mutexes. Provides serialised - access to the internal state of the uninitialised static mutex. - Called from pthread_mutex_trylock() and pthread_mutex_lock() which - do a quick unguarded test to check if _mutex_check_need_init() - needs to be called. This is safe as the test is conservative - and is repeated inside the guarded section of - _mutex_check_need_init(). Thus in all calls except the first - calls to lock static mutexes, the additional overhead to lock any - mutex is a single memory fetch and test for zero. - - * pthread.h (pthread_mutex_t_): Add 'staticinit' member. Mutexes - initialised by PTHREAD_MUTEX_INITIALIZER aren't really initialised - until the first attempt to lock it. Using the 'valid' - flag (which flags the mutex as destroyed or not) to record this - information would be messy. It is possible for a statically - initialised mutex such as this to be destroyed before ever being - used. - - * mutex.c (pthread_mutex_trylock): Call _mutex_check_need_init() - to test/init PTHREAD_MUTEX_INITIALIZER mutexes. - (pthread_mutex_lock): Ditto. - (pthread_mutex_unlock): Add check to ensure we don't try to unlock - an unitialised static mutex. - (pthread_mutex_destroy): Add check to ensure we don't try to delete - a critical section that we never created. Allows us to destroy - a static mutex that has never been locked (and hence initialised). - (pthread_mutex_init): Set 'staticinit' flag to 0 for the new mutex. - -Sun Jan 17 12:01:26 1999 Ross Johnson - - * private.c (__ptw32_sem_timedwait): Move from semaphore.c. - - * semaphore.c : Remove redundant #includes. - (__ptw32_sem_timedwait): Move to private.c. - (sem_wait): Add missing abstime arg to pthreadCancelableWait() call. - -Fri Jan 15 23:38:05 1999 Ross Johnson - - * condvar.c (cond_timedwait): Remove comment. - -Fri Jan 15 15:41:28 1999 Ross Johnson - - * pthread.h: Add new 'abstime' arg to pthreadCancelableWait() - prototype. - - * condvar.c (cond_timedwait): New generalised function called by - both pthread_cond_wait() and pthread_cond_timedwait(). This is - essentially pthread_cond_wait() renamed and modified to add the - 'abstime' arg and call the new __ptw32_sem_timedwait() instead of - sem_wait(). - (pthread_cond_wait): Now just calls the internal static - function cond_timedwait() with an INFINITE wait. - (pthread_cond_timedwait): Now implemented. Calls the internal - static function cond_timedwait(). - - * implement.h (__ptw32_sem_timedwait): New internal function - prototype. - - * misc.c (pthreadCancelableWait): Added new 'abstime' argument - to allow shorter than INFINITE wait. - - * semaphore.c (__ptw32_sem_timedwait): New function for internal - use. This is essentially sem_wait() modified to add the - 'abstime' arg and call the modified (see above) - pthreadCancelableWait(). - -Thu Jan 14 14:27:13 1999 Ross Johnson - - * cleanup.c: Correct _cplusplus to __cplusplus wherever used. - - * Makefile.in: Add CC=g++ and add -fhandle-exceptions to CFLAGS. - The derived Makefile will compile all units of the package as C++ - so that those which include try/catch exception handling should work - properly. The package should compile ok if CC=gcc, however, exception - handling will not be included and thus thread cancellation, for - example, will not work. - - * cleanup.c (__ptw32_pop_cleanup): Add #warning to compile this - file as C++ if using a cygwin32 environment. Perhaps the whole package - should be compiled using g++ under cygwin. - - * private.c (__ptw32_threadStart): Change #error directive - into #warning and bracket for __CYGWIN__ and derivative compilers. - -Wed Jan 13 09:34:52 1999 Ross Johnson - - * build.bat: Delete old binaries before compiling/linking. - -Tue Jan 12 09:58:38 1999 Tor Lillqvist - - * dll.c: The Microsoft compiler pragmas probably are more - appropriately protected by _MSC_VER than by _WIN32. - - * pthread.h: Define ETIMEDOUT. This should be returned by - pthread_cond_timedwait which is not implemented yet as of - snapshot-1999-01-04-1305. It was implemented in the older version. - The Microsoft compiler pragmas probably are more appropriately - protected by _MSC_VER than by _WIN32. - - * pthread.def: pthread_mutex_destroy was missing from the def file - - * condvar.c (pthread_cond_broadcast): Ensure we only wait on threads - if there were any waiting on the condition. - I think pthread_cond_broadcast should do the WaitForSingleObject - only if cv->waiters > 0? Otherwise it seems to hang, at least in the - testg thread program from glib. - -Tue Jan 12 09:58:38 1999 Ross Johnson - - * condvar.c (pthread_cond_timedwait): Fix function description - comments. - - * semaphore.c (sem_post): Correct typo in comment. - -Mon Jan 11 20:33:19 1999 Ross Johnson - - * pthread.h: Re-arrange conditional compile of pthread_cleanup-* - macros. - - * cleanup.c (__ptw32_push_cleanup): Provide conditional - compile of cleanup->prev. - -1999-01-11 Tor Lillqvist - - * condvar.c (pthread_cond_init): Invert logic when testing the - return value from calloc(). - -Sat Jan 9 14:32:08 1999 Ross Johnson - - * implement.h: Compile-time switch for CYGWIN derived environments - to use CreateThread instead of _beginthreadex. Ditto for ExitThread. - Patch provided by Anders Norlander . - -Tue Jan 5 16:33:04 1999 Ross Johnson - - * cleanup.c (__ptw32_pop_cleanup): Add C++ version of __try/__except - block. Move trailing "}" out of #ifdef _WIN32 block left there by - (rpj's) mistake. - - * private.c: Remove #include which is included by pthread.h. - -1998-12-11 Ben Elliston - - * README: Update info about subscribing to the mailing list. - -Mon Jan 4 11:23:40 1999 Ross Johnson - - * all: No code changes, just cleanup. - - remove #if 0 /* Pre Bossom */ enclosed code. - - Remove some redundant #includes. - * pthread.h: Update implemented/unimplemented routines list. - * Tag the bossom merge branch getting ready to merge back to main - trunk. - -Tue Dec 29 13:11:16 1998 Ross Johnson - - * implement.h: Move the following struct definitions to pthread.h: - pthread_t_, pthread_attr_t_, pthread_mutex_t_, pthread_mutex_t_, - pthread_mutexattr_t_, pthread_key_t_, pthread_cond_t_, - pthread_condattr_t_, pthread_once_t_. - - * pthread.h: Add "_" prefix to pthread_push_cleanup and - pthread_pop_cleanup internal routines, and associated struct and - typedefs. - - * buildlib.bat: Add compile command for semaphore.c - - * pthread.def: Comment out pthread_atfork routine name. - Now unimplemented. - - * tsd.c (pthread_setspecific): Rename tkAssocCreate to - __ptw32_tkAssocCreate. - (pthread_key_delete): Rename tkAssocDestroy to - __ptw32_tkAssocDestroy. - - * sync.c (pthread_join): Rename threadDestroy to __ptw32_threadDestroy - - * sched.c (is_attr): attr is now **attr (was *attr), so add extra - NULL pointer test. - (pthread_attr_setschedparam): Increase redirection for attr which is - now a **. - (pthread_attr_getschedparam): Ditto. - (pthread_setschedparam): Change thread validation and rename "thread" - Win32 thread Handle element name to match John Bossom's version. - (pthread_getschedparam): Ditto. - - * private.c (__ptw32_threadDestroy): Rename call to - callUserDestroyRoutines() as __ptw32_callUserDestroyRoutines() - - * misc.c: Add #include "implement.h". - - * dll.c: Remove defined(KLUDGE) wrapped code. - - * fork.c: Remove redefinition of ENOMEM. - Remove pthread_atfork() and fork() with #if 0/#endif. - - * create.c (pthread_create): Rename threadStart and threadDestroy calls - to __ptw32_threadStart and __ptw32_threadDestroy. - - * implement.h: Rename "detachedstate" to "detachstate". - - * attr.c: Rename "detachedstate" to "detachstate". - -Mon Dec 28 09:54:39 1998 John Bossom - - * semaphore.c: Initial version. - * semaphore.h: Initial version. - -Mon Dec 28 09:54:39 1998 Ross Johnson - - * pthread.h (pthread_attr_t_): Change to *pthread_attr_t. - -Mon Dec 28 09:54:39 1998 John Bossom, Ben Elliston - - * attr.c (pthread_attr_setstacksize): Merge with John's version. - (pthread_attr_getstacksize): Merge with John's version. - (pthread_attr_setstackaddr): Merge with John's version. - (pthread_attr_getstackaddr): Merge with John's version. - (pthread_attr_init): Merge with John's version. - (pthread_attr_destroy): Merge with John's version. - (pthread_attr_getdetachstate): Merge with John's version. - (pthread_attr_setdetachstate): Merge with John's version. - (is_attr): attr is now **attr (was *attr), so add extra NULL pointer - test. - -Mon Dec 28 09:54:39 1998 Ross Johnson - - * implement.h (pthread_attr_t_): Add and rename elements in JEB's - version to correspond to original, so that it can be used with - original attr routines. - - * pthread.h: Add #endif at end which was truncated in merging. - -Sun Dec 20 14:51:58 1998 Ross Johnson - - * misc.c (pthreadCancelableWait): New function by John Bossom. Non-standard - but provides a hook that can be used to implement cancellation points in - applications that use this library. - - * pthread.h (pthread_cleanup_pop): C++ (non-WIN32) version uses - try/catch to emulate John Bossom's WIN32 __try/__finally behaviour. - In the WIN32 version __finally block, add a test for AbnormalTermination otherwise - cleanup is only run if the cleanup_pop execute arg is non-zero. Cancellation - should cause the cleanup to run irrespective of the execute arg. - - * condvar.c (pthread_condattr_init): Replaced by John Bossom's version. - (pthread_condattr_destroy): Replaced by John Bossom's version. - (pthread_condattr_getpshared): Replaced by John Bossom's version. - (pthread_condattr_setpshared): Replaced by John Bossom's version. - (pthread_cond_init): Replaced by John Bossom's version. - Fix comment (refered to mutex rather than condition variable). - (pthread_cond_destroy): Replaced by John Bossom's version. - (pthread_cond_wait): Replaced by John Bossom's version. - (pthread_cond_timedwait): Replaced by John Bossom's version. - (pthread_cond_signal): Replaced by John Bossom's version. - (pthread_cond_broadcast): Replaced by John Bossom's version. - -Thu Dec 17 19:10:46 1998 Ross Johnson - - * tsd.c (pthread_key_create): Replaced by John Bossom's version. - (pthread_key_delete): Replaced by John Bossom's version. - (pthread_setspecific): Replaced by John Bossom's version. - (pthread_getspecific): Replaced by John Bossom's version. - -Mon Dec 7 09:44:40 1998 John Bossom - - * cancel.c (pthread_setcancelstate): Replaced. - (pthread_setcanceltype): Replaced. - (pthread_testcancel): Replaced. - (pthread_cancel): Replaced. - - * exit.c (pthread_exit): Replaced. - - * misc.c (pthread_self): Replaced. - (pthread_equal): Replaced. - - * sync.c (pthread_detach): Replaced. - (pthread_join): Replaced. - - * create.c (pthread_create): Replaced. - - * private.c (__ptw32_processInitialize): New. - (__ptw32_processTerminate): New. - (__ptw32_threadStart): New. - (__ptw32_threadDestroy): New. - (__ptw32_cleanupStack): New. - (__ptw32_tkAssocCreate): New. - (__ptw32_tkAssocDestroy): New. - (__ptw32_callUserDestroyRoutines): New. - - * implement.h: Added non-API structures and declarations. - - * dll.c (PthreadsEntryPoint): Cast return value of GetProcAddress - to resolve compile warning from MSVC. - - * dll.c (DLLmain): Replaced. - * dll.c (PthreadsEntryPoint): - Re-applied Anders Norlander's patch:- - Initialize __ptw32_try_enter_critical_section at startup - and release kernel32 handle when DLL is being unloaded. - -Sun Dec 6 21:54:35 1998 Ross Johnson - - * buildlib.bat: Fix args to CL when building the .DLL - - * cleanup.c (__ptw32_destructor_run_all): Fix TSD key management. - This is a tidy-up before TSD and Thread management is completely - replaced by John Bossom's code. - - * tsd.c (pthread_key_create): Fix TSD key management. - - * global.c (__ptw32_key_virgin_next): Initialise. - - * build.bat: New DOS script to compile and link a pthreads app - using Microsoft's CL compiler linker. - * buildlib.bat: New DOS script to compile all the object files - and create pthread.lib and pthread.dll using Microsoft's CL - compiler linker. - -1998-12-05 Anders Norlander - - * implement.h (__ptw32_try_enter_critical_section): New extern - * dll.c (__ptw32_try_enter_critical_section): New pointer to - TryEnterCriticalSection if it exists; otherwise NULL. - * dll.c (PthreadsEntryPoint): - Initialize __ptw32_try_enter_critical_section at startup - and release kernel32 handle when DLL is being unloaded. - * mutex.c (pthread_mutex_trylock): Replaced check for NT with - a check if __ptw32_try_enter_critical_section is valid - pointer to a function. Call __ptw32_try_enter_critical_section - instead of TryEnterCriticalSection to avoid errors on Win95. - -Thu Dec 3 13:32:00 1998 Ross Johnson - - * README: Correct cygwin32 compatibility statement. - -Sun Nov 15 21:24:06 1998 Ross Johnson - - * cleanup.c (__ptw32_destructor_run_all): Declare missing void * arg. - Fixup CVS merge conflicts. - -1998-10-30 Ben Elliston - - * condvar.c (cond_wait): Fix semantic error. Test for equality - instead of making an assignment. - -Fri Oct 30 15:15:50 1998 Ross Johnson - - * cleanup.c (__ptw32_handler_push): Fixed bug appending new - handler to list reported by Peter Slacik - . - (new_thread): Rename poorly named local variable to - "new_handler". - -Sat Oct 24 18:34:59 1998 Ross Johnson - - * global.c: Add TSD key management array and index declarations. - - * implement.h: Ditto for externs. - -Fri Oct 23 00:08:09 1998 Ross Johnson - - * implement.h (__PTW32_TSD_KEY_REUSE): Add enum. - - * private.c (__ptw32_delete_thread): Add call to - __ptw32_destructor_run_all() to clean up the threads keys. - - * cleanup.c (__ptw32_destructor_run_all): Check for no more dirty - keys to run destructors on. Assume that the destructor call always - succeeds and set the key value to NULL. - -Thu Oct 22 21:44:44 1998 Ross Johnson - - * tsd.c (pthread_setspecific): Add key management code. - (pthread_key_create): Ditto. - (pthread_key_delete): Ditto. - - * implement.h (struct __ptw32_tsd_key): Add status member. - - * tsd.c: Add description of pthread_key_delete() from the - standard as a comment. - -Fri Oct 16 17:38:47 1998 Ross Johnson - - * cleanup.c (__ptw32_destructor_run_all): Fix and improve - stepping through the key table. - -Thu Oct 15 14:05:01 1998 Ross Johnson - - * private.c (__ptw32_new_thread): Remove init of destructorstack. - No longer an element of pthread_t. - - * tsd.c (pthread_setspecific): Fix type declaration and cast. - (pthread_getspecific): Ditto. - (pthread_getspecific): Change error return value to NULL if key - is not in use. - -Thu Oct 15 11:53:21 1998 Ross Johnson - - * global.c (__ptw32_tsd_key_table): Fix declaration. - - * implement.h(__ptw32_TSD_keys_TlsIndex): Add missing extern. - (__ptw32_tsd_mutex): Ditto. - - * create.c (__ptw32_start_call): Fix "keys" array declaration. - Add comment. - - * tsd.c (pthread_setspecific): Fix type declaration and cast. - (pthread_getspecific): Ditto. - - * cleanup.c (__ptw32_destructor_run_all): Declare missing loop - counter. - -Wed Oct 14 21:09:24 1998 Ross Johnson - - * private.c (__ptw32_new_thread): Increment __ptw32_threads_count. - (__ptw32_delete_thread): Decrement __ptw32_threads_count. - Remove some comments. - - * exit.c (__ptw32_exit): : Fix two pthread_mutex_lock() calls that - should have been pthread_mutex_unlock() calls. - (__ptw32_vacuum): Remove call to __ptw32_destructor_pop_all(). - - * create.c (pthread_create): Fix two pthread_mutex_lock() calls that - should have been pthread_mutex_unlock() calls. - - * global.c (__ptw32_tsd_mutex): Add mutex for TSD operations. - - * tsd.c (pthread_key_create): Add critical section. - (pthread_setspecific): Ditto. - (pthread_getspecific): Ditto. - (pthread_key_delete): Ditto. - - * sync.c (pthread_join): Fix two pthread_mutex_lock() calls that - should have been pthread_mutex_unlock() calls. - -Mon Oct 12 00:00:44 1998 Ross Johnson - - * implement.h (__ptw32_tsd_key_table): New. - - * create.c (__ptw32_start_call): Initialise per-thread TSD keys - to NULL. - - * misc.c (pthread_once): Correct typo in comment. - - * implement.h (__ptw32_destructor_push): Remove. - (__ptw32_destructor_pop): Remove. - (__ptw32_destructor_run_all): Rename from __ptw32_destructor_pop_all. - (__PTW32_TSD_KEY_DELETED): Add enum. - (__PTW32_TSD_KEY_INUSE): Add enum. - - * cleanup.c (__ptw32_destructor_push): Remove. - (__ptw32_destructor_pop): Remove. - (__ptw32_destructor_run_all): Totally revamped TSD. - - * dll.c (__ptw32_TSD_keys_TlsIndex): Initialise. - - * tsd.c (pthread_setspecific): Totally revamped TSD. - (pthread_getspecific): Ditto. - (pthread_create): Ditto. - (pthread_delete): Ditto. - -Sun Oct 11 22:44:55 1998 Ross Johnson - - * global.c (__ptw32_tsd_key_table): Add new global. - - * implement.h (__ptw32_tsd_key_t and struct __ptw32_tsd_key): - Add. - (struct _pthread): Remove destructorstack. - - * cleanup.c (__ptw32_destructor_run_all): Rename from - __ptw32_destructor_pop_all. The key destructor stack was made - global rather than per-thread. No longer removes destructor nodes - from the stack. Comments updated. - -1998-10-06 Ben Elliston - - * condvar.c (cond_wait): Use POSIX, not Win32 mutex calls. - (pthread_cond_broadcast): Likewise. - (pthread_cond_signal): Likewise. - -1998-10-05 Ben Elliston - - * pthread.def: Update. Some functions aren't available yet, others - are macros in . - - * tests/join.c: Remove; useless. - -Mon Oct 5 14:25:08 1998 Ross Johnson - - * pthread.def: New file for building the DLL. - -1998-10-05 Ben Elliston - - * misc.c (pthread_equal): Correct inverted logic bug. - (pthread_once): Use the POSIX mutex primitives, not Win32. Remove - irrelevant FIXME comment. - - * global.c (PTHREAD_MUTEX_INITIALIZER): Move to pthread.h. - - * pthread.h (PTHREAD_MUTEX_INITIALIZER): Define. - (pthread_mutex_t): Reimplement as a struct containing a valid - flag. If the flag is ever down upon entry to a mutex operation, - we call pthread_mutex_create() to initialise the object. This - fixes the problem of how to handle statically initialised objects - that can't call InitializeCriticalSection() due to their context. - (PTHREAD_ONCE_INIT): Define. - - * mutex.c (pthread_mutex_init): Set valid flag. - (pthread_mutex_destroy): Clear valid flag. - (pthread_mutex_lock): Check and handle the valid flag. - (pthread_mutex_unlock): Likewise. - (pthread_mutex_trylock): Likewise. - - * tests/mutex3.c: New file; test for the static initialisation - macro. Passes. - - * tests/create1.c: New file; test pthread_create(). Passes. - - * tests/equal.c: Poor test; remove. - - * tests/equal1.c New file; test pthread_equal(). Passes. - - * tests/once1.c: New file; test for pthread_once(). Passes. - - * tests/self.c: Remove; rename to self1.c. - - * tests/self1.c: This is the old self.c. - - * tests/self2.c: New file. Test pthread_self() with a single - thread. Passes. - - * tests/self3.c: New file. Test pthread_self() with a couple of - threads to ensure their thread IDs differ. Passes. - -1998-10-04 Ben Elliston - - * tests/mutex2.c: Test pthread_mutex_trylock(). Passes. - - * tests/mutex1.c: New basic test for mutex functions (it passes). - (main): Eliminate warning. - - * configure.in: Test for __stdcall, not _stdcall. Typo. - - * configure: Regenerate. - - * attr.c (pthread_attr_setstackaddr): Remove FIXME comment. Win32 - does know about ENOSYS after all. - (pthread_attr_setstackaddr): Likewise. - -1998-10-03 Ben Elliston - - * configure.in: Test for the `_stdcall' keyword. Define `STDCALL' - to `_stdcall' if we have it, null otherwise. - - * configure: Regenerate. - - * acconfig.h (STDCALL): New define. - - * config.h.in: Regenerate. - - * create.c (__ptw32_start_call): Add STDCALL prefix. - - * mutex.c (pthread_mutex_init): Correct function signature. - - * attr.c (pthread_attr_init): Only zero out the `sigmask' member - if we have the sigset_t type. - - * pthread.h: No need to include . It doesn't even exist - on Win32! Again, an artifact of cross-compilation. - (pthread_sigmask): Only provide if we have the sigset_t type. - - * process.h: Remove. This was a stand-in before we started doing - native compilation under Win32. - - * pthread.h (pthread_mutex_init): Make `attr' argument const. - -1998-10-02 Ben Elliston - - * COPYING: Remove. - - * COPYING.LIB: Add. This library is under the LGPL. - -1998-09-13 Ben Elliston - - * configure.in: Test for required system features. - - * configure: Generate. - - * acconfig.h: New file. - - * config.h.in: Generate. - - * Makefile.in: Renamed from Makefile. - - * COPYING: Import from a recent GNU package. - - * config.guess: Likewise. - - * config.sub: Likewise. - - * install-sh: Likewise. - - * config.h: Remove. - - * Makefile: Likewise. - -1998-09-12 Ben Elliston - - * windows.h: No longer needed; remove. - - * windows.c: Likewise. - -Sat Sep 12 20:09:24 1998 Ross Johnson - - * windows.h: Remove error number definitions. These are in - - * tsd.c: Add comment explaining rationale for not building - POSIX TSD on top of Win32 TLS. - -1998-09-12 Ben Elliston - - * {most}.c: Include to get POSIX error values. - - * signal.c (pthread_sigmask): Only provide if HAVE_SIGSET_T is - defined. - - * config.h: #undef features, don't #define them. This will be - generated by autoconf very soon. - -1998-08-11 Ben Elliston - - * Makefile (LIB): Define. - (clean): Define target. - (all): Build a library not just the object files. - - * pthread.h: Provide a definition for struct timespec if we don't - already have one. - - * windows.c (TlsGetValue): Bug fix. - -Thu Aug 6 15:19:22 1998 Ross Johnson - - * misc.c (pthread_once): Fix arg 1 of EnterCriticalSection() - and LeaveCriticalSection() calls to pass address-of lock. - - * fork.c (pthread_atfork): Typecast (void (*)(void *)) funcptr - in each __ptw32_handler_push() call. - - * exit.c (__ptw32_exit): Fix attr arg in - pthread_attr_getdetachstate() call. - - * private.c (__ptw32_new_thread): Typecast (HANDLE) NULL. - (__ptw32_delete_thread): Ditto. - - * implement.h: (__PTW32_MAX_THREADS): Add define. This keeps - changing in an attempt to make thread administration data types - opaque and cleanup DLL startup. - - * dll.c (PthreadsEntryPoint): - (__ptw32_virgins): Remove malloc() and free() calls. - (__ptw32_reuse): Ditto. - (__ptw32_win32handle_map): Ditto. - (__ptw32_threads_mutex_table): Ditto. - - * global.c (_POSIX_THREAD_THREADS_MAX): Initialise with - PTW32_MAX_THREADS. - (__ptw32_virgins): Ditto. - (__ptw32_reuse): Ditto. - (__ptw32_win32handle_map): Ditto. - (__ptw32_threads_mutex_table): Ditto. - - * create.c (pthread_create): Typecast (HANDLE) NULL. - Typecast (unsigned (*)(void *)) start_routine. - - * condvar.c (pthread_cond_init): Add address-of operator & to - arg 1 of pthread_mutex_init() call. - (pthread_cond_destroy): Add address-of operator & to - arg 1 of pthread_mutex_destroy() call. - - * cleanup.c (__ptw32_destructor_pop_all): Add (int) cast to - pthread_getspecific() arg. - (__ptw32_destructor_pop): Add (void *) cast to "if" conditional. - (__ptw32_destructor_push): Add (void *) cast to - __ptw32_handler_push() "key" arg. - (malloc.h): Add include. - - * implement.h (__ptw32_destructor_pop): Add prototype. - - * tsd.c (implement.h): Add include. - - * sync.c (pthread_join): Remove target_thread_mutex and it's - initialisation. Rename getdetachedstate to getdetachstate. - Remove unused variable "exitcode". - (pthread_detach): Remove target_thread_mutex and it's - initialisation. Rename getdetachedstate to getdetachstate. - Rename setdetachedstate to setdetachstate. - - * signal.c (pthread_sigmask): Rename SIG_SET to SIG_SETMASK. - Cast "set" to (long *) in assignment to passify compiler warning. - Add address-of operator & to thread->attr.sigmask in memcpy() call - and assignment. - (pthread_sigmask): Add address-of operator & to thread->attr.sigmask - in memcpy() call and assignment. - - * windows.h (THREAD_PRIORITY_ERROR_RETURN): Add. - (THREAD_PRIORITY_LOWEST): Add. - (THREAD_PRIORITY_HIGHEST): Add. - - * sched.c (is_attr): Add function. - (implement.h): Add include. - (pthread_setschedparam): Rename all instances of "sched_policy" - to "sched_priority". - (pthread_getschedparam): Ditto. - -Tue Aug 4 16:57:58 1998 Ross Johnson - - * private.c (__ptw32_delete_thread): Fix typo. Add missing ';'. - - * global.c (__ptw32_virgins): Change types from pointer to - array pointer. - (__ptw32_reuse): Ditto. - (__ptw32_win32handle_map): Ditto. - (__ptw32_threads_mutex_table): Ditto. - - * implement.h(__ptw32_virgins): Change types from pointer to - array pointer. - (__ptw32_reuse): Ditto. - (__ptw32_win32handle_map): Ditto. - (__ptw32_threads_mutex_table): Ditto. - - * private.c (__ptw32_delete_thread): Fix "entry" should be "thread". - - * misc.c (pthread_self): Add extern for __ptw32_threadID_TlsIndex. - - * global.c: Add comment. - - * misc.c (pthread_once): Fix member -> dereferences. - Change __ptw32_once_flag to once_control->flag in "if" test. - -Tue Aug 4 00:09:30 1998 Ross Johnson - - * implement.h(__ptw32_virgins): Add extern. - (__ptw32_virgin_next): Ditto. - (__ptw32_reuse): Ditto. - (__ptw32_reuse_top): Ditto. - (__ptw32_win32handle_map): Ditto. - (__ptw32_threads_mutex_table): Ditto. - - * global.c (__ptw32_virgins): Changed from array to pointer. - Storage allocation for the array moved into dll.c. - (__ptw32_reuse): Ditto. - (__ptw32_win32handle_map): Ditto. - (__ptw32_threads_mutex_table): Ditto. - - * dll.c (PthreadsEntryPoint): Set up thread admin storage when - DLL is loaded. - - * fork.c (pthread_atfork): Fix function pointer arg to all - __ptw32_handler_push() calls. Change "arg" arg to NULL in child push. - - * exit.c: Add windows.h and process.h includes. - (__ptw32_exit): Add local detachstate declaration. - (__ptw32_exit): Fix incorrect name for pthread_attr_getdetachstate(). - - * pthread.h (_POSIX_THREAD_ATTR_STACKSIZE): Move from global.c - (_POSIX_THREAD_ATTR_STACKADDR): Ditto. - - * create.c (pthread_create): Fix #if should be #ifdef. - (__ptw32_start_call): Remove usused variables. - - * process.h: Create. - - * windows.h: Move _beginthreadex and _endthreadex into - process.h - -Mon Aug 3 21:19:57 1998 Ross Johnson - - * condvar.c (pthread_cond_init): Add NULL attr to - pthread_mutex_init() call - default attributes will be used. - (cond_wait): Fix typo. - (cond_wait): Fix typo - cv was ev. - (pthread_cond_broadcast): Fix two identical typos. - - * cleanup.c (__ptw32_destructor_pop_all): Remove _ prefix from - PTHREAD_DESTRUCTOR_ITERATIONS. - - * pthread.h: Move _POSIX_* values into posix.h - - * pthread.h: Fix typo in pthread_mutex_init() prototype. - - * attr.c (pthread_attr_init): Fix error in priority member init. - - * windows.h (THREAD_PRIORITY_NORMAL): Add. - - * pthread.h (sched_param): Add missing ';' to struct definition. - - * attr.c (pthread_attr_init): Remove obsolete pthread_attr_t - member initialisation - cancelstate, canceltype, cancel_pending. - (is_attr): Make arg "attr" a const. - - * implement.h (__PTW32_HANDLER_POP_LIFO): Remove definition. - (__PTW32_HANDLER_POP_FIFO): Ditto. - (__PTW32_VALID): Add missing newline escape (\). - (__ptw32_handler_node): Make element "next" a pointer. - -1998-08-02 Ben Elliston - - * windows.h: Remove duplicate TlsSetValue() prototype. Add - TlsGetValue() prototype. - (FALSE): Define. - (TRUE): Likewise. - Add forgotten errno values. Guard against multiple #includes. - - * windows.c: New file. Implement stubs for Win32 functions. - - * Makefile (SRCS): Remove. Not explicitly needed. - (CFLAGS): Add -Wall for all warnings with GCC. - -Sun Aug 2 19:03:42 1998 Ross Johnson - - * config.h: Create. This is a temporary stand-in for autoconf yet - to be done. - (HAVE_SIGNAL_H): Add. - - * pthread.h: Minor rearrangement for temporary config.h. - -Fri Jul 31 14:00:29 1998 Ross Johnson - - * cleanup.c (__ptw32_destructor_pop): Implement. Removes - destructors associated with a key without executing them. - (__ptw32_destructor_pop_all): Add FIXME comment. - - * tsd.c (pthread_key_delete): Add call to __ptw32_destructor_pop(). - -Fri Jul 31 00:05:45 1998 Ross Johnson - - * tsd.c (pthread_key_create): Update to properly associate - the destructor routine with the key. - (pthread_key_delete): Add FIXME comment. - - * exit.c (__ptw32_vacuum): Add call to - __ptw32_destructor_pop_all(). - - * implement.h (__ptw32_handler_pop_all): Add prototype. - (__ptw32_destructor_pop_all): Ditto. - - * cleanup.c (__ptw32_destructor_push): Implement. This is just a - call to __ptw32_handler_push(). - (__ptw32_destructor_pop_all): Implement. This is significantly - different to __ptw32_handler_pop_all(). - - * Makefile (SRCS): Create. Preliminary. - - * windows.h: Create. Contains Win32 definitions for compile - testing. This is just a standin for the real one. - - * pthread.h (SIG_UNBLOCK): Fix typo. Was SIG_BLOCK. - (windows.h): Add include. Required for CRITICAL_SECTION. - (pthread_cond_t): Move enum declaration outside of struct - definition. - (unistd.h): Add include - may be temporary. - - * condvar.c (windows.h): Add include. - - * implement.h (__PTW32_THIS): Remove - no longer required. - (__PTW32_STACK): Use pthread_self() instead of __PTW32_THIS. - -Thu Jul 30 23:12:45 1998 Ross Johnson - - * implement.h: Remove __ptw32_find_entry() prototype. - - * private.c: Extend comments. - Remove __ptw32_find_entry() - no longer needed. - - * create.c (__ptw32_start_call): Add call to TlsSetValue() to - store the thread ID. - - * dll.c (PthreadsEntryPoint): Implement. This is called - whenever a process loads the DLL. Used to initialise thread - local storage. - - * implement.h: Add __ptw32_threadID_TlsIndex. - Add ()s around __PTW32_VALID expression. - - * misc.c (pthread_self): Re-implement using Win32 TLS to store - the threads own ID. - -Wed Jul 29 11:39:03 1998 Ross Johnson - - * private.c: Corrections in comments. - (__ptw32_new_thread): Alter "if" flow to be more natural. - - * cleanup.c (__ptw32_handler_push): Same as below. - - * create.c (pthread_create): Same as below. - - * private.c (__ptw32_new_thread): Rename "new" to "new_thread". - Since when has a C programmer been required to know C++? - -Tue Jul 28 14:04:29 1998 Ross Johnson - - * implement.h: Add __PTW32_VALID macro. - - * sync.c (pthread_join): Modify to use the new thread - type and __ptw32_delete_thread(). Rename "target" to "thread". - Remove extra local variable "target". - (pthread_detach): Ditto. - - * signal.c (pthread_sigmask): Move init of "us" out of inner block. - Fix instance of "this" should have been "us". Rename "us" to "thread". - - * sched.c (pthread_setschedparam): Modify to use the new thread - type. - (pthread_getschedparam): Ditto. - - * private.c (__ptw32_find_thread): Fix return type and arg. - - * implement.h: Remove __PTW32_YES and __PTW32_NO. - (__ptw32_new_thread): Add prototype. - (__ptw32_find_thread): Ditto. - (__ptw32_delete_thread): Ditto. - (__ptw32_new_thread_entry): Remove prototype. - (__ptw32_find_thread_entry): Ditto. - (__ptw32_delete_thread_entry): Ditto. - ( __PTW32_NEW, __PTW32_INUSE, __PTW32_EXITED, __PTW32_REUSE): - Add. - - - * create.c (pthread_create): Minor rename "us" to "new" (I need - these cues but it doesn't stop me coming out with some major bugs - at times). - Load start_routine and arg into the thread so the wrapper can - call it. - - * exit.c (pthread_exit): Fix pthread_this should be pthread_self. - - * cancel.c (pthread_setcancelstate): Change - __ptw32_threads_thread_t * to pthread_t and init with - pthread_this(). - (pthread_setcanceltype): Ditto. - - * exit.c (__ptw32_exit): Add new pthread_t arg. - Rename __ptw32_delete_thread_entry to __ptw32_delete_thread. - Rename "us" to "thread". - (pthread_exit): Call __ptw32_exit with added thread arg. - - * create.c (__ptw32_start_call): Insert missing ")". - Add "us" arg to __ptw32_exit() call. - (pthread_create): Modify to use new thread allocation scheme. - - * private.c: Added detailed explanation of the new thread - allocation scheme. - (__ptw32_new_thread): Totally rewritten to use - new thread allocation scheme. - (__ptw32_delete_thread): Ditto. - (__ptw32_find_thread): Obsolete. - -Mon Jul 27 17:46:37 1998 Ross Johnson - - * create.c (pthread_create): Start of rewrite. Not completed yet. - - * private.c (__ptw32_new_thread_entry): Start of rewrite. Not - complete. - - * implement.h (__ptw32_threads_thread): Rename, remove thread - member, add win32handle and ptstatus members. - (__ptw32_t): Add. - - * pthread.h: pthread_t is no longer mapped directly to a Win32 - HANDLE type. This is so we can let the Win32 thread terminate and - reuse the HANDLE while pthreads holds it's own thread ID until - the last waiting join exits. - -Mon Jul 27 00:20:37 1998 Ross Johnson - - * private.c (__ptw32_delete_thread_entry): Destroy the thread - entry attribute object before deleting the thread entry itself. - - * attr.c (pthread_attr_init): Initialise cancel_pending = FALSE. - (pthread_attr_setdetachstate): Rename "detached" to "detachedstate". - (pthread_attr_getdetachstate): Ditto. - - * exit.c (__ptw32_exit): Fix incorrect check for detachedstate. - - * implement.h (__ptw32_call_t): Remove env member. - -Sun Jul 26 13:06:12 1998 Ross Johnson - - * implement.h (__ptw32_new_thread_entry): Fix prototype. - (__ptw32_find_thread_entry): Ditto. - (__ptw32_delete_thread_entry): Ditto. - (__ptw32_exit): Add prototype. - - * exit.c (__ptw32_exit): New function. Called from pthread_exit() - and __ptw32_start_call() to exit the thread. It allows an extra - argument which is the return code passed to _endthreadex(). - (__ptw32_exit): Move thread entry delete call from __ptw32_vacuum() - into here. Add more explanation of thread entry deletion. - (__ptw32_exit): Clarify comment. - - * create.c (__ptw32_start_call): Change pthread_exit() call to - __ptw32_exit() call. - - * exit.c (__ptw32_vacuum): Add thread entry deletion code - moved from __ptw32_start_call(). See next item. - (pthread_exit): Remove longjmp(). Add mutex lock around thread table - manipulation code. This routine now calls _enthreadex(). - - * create.c (__ptw32_start_call): Remove setjmp() call and move - cleanup code out. Call pthread_exit(NULL) to terminate the thread. - -1998-07-26 Ben Elliston - - * tsd.c (pthread_getspecific): Update comments. - - * mutex.c (pthread_mutexattr_setpshared): Not supported; remove. - (pthread_mutexattr_getpshared): Likewise. - - * pthread.h (pthread_mutexattr_setpshared): Remove prototype. - (pthread_mutexattr_getpshared): Likewise. - -Sun Jul 26 00:09:59 1998 Ross Johnson - - * sync.c: Rename all instances of __ptw32_count_mutex to - __ptw32_table_mutex. - - * implement.h: Rename __ptw32_count_mutex to - __ptw32_table_mutex. - - * global.c: Rename __ptw32_count_mutex to - __ptw32_table_mutex. - - * create.c (pthread_create): Add critical sections. - (__ptw32_start_call): Rename __ptw32_count_mutex to - __ptw32_table_mutex. - - * cancel.c (pthread_setcancelstate): Fix indirection bug and rename - "this" to "us". - - * signal.c (pthread_sigmask): Rename "this" to "us" and fix some - minor syntax errors. Declare "us" and initialise it. - - * sync.c (pthread_detach): Rename "this" to "target". - - * pthread.h: Converting PTHREAD_* defines to alias the (const int) - values in global.c. - - * global.c: Started converting PTHREAD_* defines to (const int) as - a part of making the eventual pthreads DLL binary compatible - through version changes. - - * condvar.c (cond_wait): Add cancellation point. This applies the - point to both pthread_cond_wait() and pthread_cond_timedwait(). - - * exit.c (pthread_exit): Rename "this" to "us". - - * implement.h: Add comment. - - * sync.c (pthread_join): I've satisfied myself that pthread_detach() - does set the detached attribute in the thread entry attributes - to PTHREAD_CREATE_DETACHED. "if" conditions were changed to test - that attribute instead of a separate flag. - - * create.c (pthread_create): Rename "this" to "us". - (pthread_create): cancelstate and canceltype are not attributes - so the copy to thread entry attribute storage was removed. - Only the thread itself can change it's cancelstate or canceltype, - ie. the thread must exist already. - - * private.c (__ptw32_delete_thread_entry): Mutex locks removed. - Mutexes must be applied at the caller level. - (__ptw32_new_thread_entry): Ditto. - (__ptw32_new_thread_entry): Init cancelstate, canceltype, and - cancel_pending to default values. - (__ptw32_new_thread_entry): Rename "this" to "new". - (__ptw32_find_thread_entry): Rename "this" to "entry". - (__ptw32_delete_thread_entry): Rename "thread_entry" to "entry". - - * create.c (__ptw32_start_call): Mutexes changed to - __ptw32_count_mutex. All access to the threads table entries is - under the one mutex. Otherwise chaos reigns. - -Sat Jul 25 23:16:51 1998 Ross Johnson - - * implement.h (__ptw32_threads_thread): Move cancelstate and - canceltype members out of pthread_attr_t into here. - - * fork.c (fork): Add comment. - -1998-07-25 Ben Elliston - - * fork.c (fork): Autoconfiscate. - -Sat Jul 25 00:00:13 1998 Ross Johnson - - * create.c (__ptw32_start_call): Set thread priority. Ensure our - thread entry is removed from the thread table but only if - pthread_detach() was called and there are no waiting joins. - (pthread_create): Set detach flag in thread entry if the - thread is created PTHREAD_CREATE_DETACHED. - - * pthread.h (pthread_attr_t): Rename member "detachedstate". - - * attr.c (pthread_attr_init): Rename attr members. - - * exit.c (pthread_exit): Fix indirection mistake. - - * implement.h (__PTW32_THREADS_TABLE_INDEX): Add. - - * exit.c (__ptw32_vacuum): Fix incorrect args to - __ptw32_handler_pop_all() calls. - Make thread entry removal conditional. - - * sync.c (pthread_join): Add multiple join and async detach handling. - - * implement.h (__PTW32_THREADS_TABLE_INDEX): Add. - - * global.c (__ptw32_threads_mutex_table): Add. - - * implement.h (__ptw32_once_flag): Remove. - (__ptw32_once_lock): Ditto. - (__ptw32_threads_mutex_table): Add. - - * global.c (__ptw32_once_flag): Remove. - (__ptw32_once_lock): Ditto. - - * sync.c (pthread_join): Fix tests involving new return value - from __ptw32_find_thread_entry(). - (pthread_detach): Ditto. - - * private.c (__ptw32_find_thread_entry): Failure return code - changed from -1 to NULL. - -Fri Jul 24 23:09:33 1998 Ross Johnson - - * create.c (pthread_create): Change . to -> in sigmask memcpy() args. - - * pthread.h: (pthread_cancel): Add function prototype. - (pthread_testcancel): Ditto. - -1998-07-24 Ben Elliston - - * pthread.h (pthread_condattr_t): Rename dummy structure member. - (pthread_mutexattr_t): Likewise. - -Fri Jul 24 21:13:55 1998 Ross Johnson - - * cancel.c (pthread_cancel): Implement. - (pthread_testcancel): Implement. - - * exit.c (pthread_exit): Add comment explaining the longjmp(). - - * implement.h (__ptw32_threads_thread_t): New member cancelthread. - (__PTW32_YES): Define. - (__PTW32_NO): Define. - (RND_SIZEOF): Remove. - - * create.c (pthread_create): Rename cancelability to cancelstate. - - * pthread.h (pthread_attr_t): Rename cancelability to cancelstate. - (PTHREAD_CANCELED): Define. - -1998-07-24 Ben Elliston - - * pthread.h (SIG_BLOCK): Define if not already defined. - (SIG_UNBLOCK): Likewise. - (SIG_SETMASK): Likewise. - (pthread_attr_t): Add signal mask member. - (pthread_sigmask): Add function prototype. - - * signal.c (pthread_sigmask): Implement. - - * create.c: #include to get a prototype for memcpy(). - (pthread_create): New threads inherit their creator's signal - mask. Copy the signal mask to the new thread structure if we know - about signals. - -Fri Jul 24 16:33:17 1998 Ross Johnson - - * fork.c (pthread_atfork): Add all the necessary push calls. - Local implementation semantics: - If we get an ENOMEM at any time then ALL handlers - (including those from previous pthread_atfork() calls) will be - popped off each of the three atfork stacks before we return. - (fork): Add all the necessary pop calls. Add the thread cancellation - and join calls to the child fork. - Add #includes. - - * implement.h: (__ptw32_handler_push): Fix return type and stack arg - type in prototype. - (__ptw32_handler_pop): Fix stack arg type in prototype. - (__ptw32_handler_pop_all): Fix stack arg type in prototype. - - * cleanup.c (__ptw32_handler_push): Change return type to int and - return ENOMEM if malloc() fails. - - * sync.c (pthread_detach): Use equality test, not assignment. - - * create.c (__ptw32_start_call): Add call to Win32 CloseHandle() - if thread is detached. - -1998-07-24 Ben Elliston - - * sync.c (pthread_detach): Close the Win32 thread handle to - emulate detached (or daemon) threads. - -Fri Jul 24 03:00:25 1998 Ross Johnson - - * sync.c (pthread_join): Save valueptr arg in joinvalueptr for - pthread_exit() to use. - - * private.c (__ptw32_new_thread_entry): Initialise joinvalueptr to - NULL. - - * create.c (__ptw32_start_call): Rewrite to facilitate joins. - pthread_exit() will do a longjmp() back to here. Does appropriate - cleanup and exit/return from the thread. - (pthread_create): _beginthreadex() now passes a pointer to our - thread table entry instead of just the call member of that entry. - - * implement.h (__ptw32_threads_thread): New member - void ** joinvalueptr. - (__ptw32_call_t): New member jmpbuf env. - - * exit.c (pthread_exit): Major rewrite to handle joins and handing - value pointer to joining thread. Uses longjmp() back to - __ptw32_start_call(). - - * create.c (pthread_create): Ensure values of new attribute members - are copied to the thread attribute object. - - * attr.c (pthread_attr_destroy): Fix merge conflicts. - (pthread_attr_getdetachstate): Fix merge conflicts. - (pthread_attr_setdetachstate): Fix merge conflicts. - - * pthread.h: Fix merge conflicts. - - * sync.c (pthread_join): Fix merge conflicts. - -Fri Jul 24 00:21:21 1998 Ross Johnson - - * sync.c (pthread_join): Add check for valid and joinable - thread. - (pthread_detach): Implement. After checking for a valid and joinable - thread, it's still a no-op. - - * private.c (__ptw32_find_thread_entry): Bug prevented returning - an error value in some cases. - - * attr.c (pthread_attr_setdetachedstate): Implement. - (pthread_attr_getdetachedstate): Implement. - - * implement.h: Move more hidden definitions into here from - pthread.h. - -1998-07-24 Ben Elliston - - * pthread.h (PTHREAD_CREATE_JOINABLE): Define. - (PTHREAD_CREATE_DETACHED): Likewise. - (pthread_attr_t): Add new structure member `detached'. - (pthread_attr_getdetachstate): Add function prototype. - (pthread_attr_setdetachstate): Likewise. - - * sync.c (pthread_join): Return if the target thread is detached. - - * attr.c (pthread_attr_init): Initialise cancelability and - canceltype structure members. - (pthread_attr_getdetachstate): Implement. - (pthread_attr_setdetachstate): Likewise. - - * implement.h (__PTW32_CANCEL_DEFAULTS): Remove. Bit fields - proved to be too cumbersome. Set the defaults in attr.c using the - public PTHREAD_CANCEL_* constants. - - * cancel.c: New file. - - * pthread.h (sched_param): Define this type. - (pthread_attr_getschedparam): Add function prototype. - (pthread_attr_setschedparam): Likewise. - (pthread_setcancelstate): Likewise. - (pthread_setcanceltype): Likewise. - (sched_get_priority_min): Likewise. - (sched_get_priority_max): Likewise. - (pthread_mutexattr_setprotocol): Remove; not supported. - (pthread_mutexattr_getprotocol): Likewise. - (pthread_mutexattr_setprioceiling): Likewise. - (pthread_mutexattr_getprioceiling): Likewise. - (pthread_attr_t): Add canceltype member. Update comments. - (SCHED_OTHER): Define this scheduling policy constant. - (SCHED_FIFO): Likewise. - (SCHED_RR): Likewise. - (SCHED_MIN): Define the lowest possible value for this constant. - (SCHED_MAX): Likewise, the maximum possible value. - (PTHREAD_CANCEL_ASYNCHRONOUS): Redefine. - (PTHREAD_CANCEL_DEFERRED): Likewise. - - * sched.c: New file. - (pthread_setschedparam): Implement. - (pthread_getschedparam): Implement. - (sched_get_priority_max): Validate policy argument. - (sched_get_priority_min): Likewise. - - * mutex.c (pthread_mutexattr_setprotocol): Remove; not supported. - (pthread_mutexattr_getprotocol): Likewise. - (pthread_mutexattr_setprioceiling): Likewise. - (pthread_mutexattr_getprioceiling): Likewise. - -Fri Jul 24 00:21:21 1998 Ross Johnson - - * create.c (pthread_create): Arg to __ptw32_new_thread_entry() - changed. See next entry. Move mutex locks out. Changes made yesterday - and today allow us to start the new thread running rather than - temporarily suspended. - - * private.c (__ptw32_new_thread_entry): __ptw32_thread_table - was changed back to a table of thread structures rather than pointers. - As such we're trading storage for increaded speed. This routine - was modified to work with the new table. Mutex lock put in around - global data accesses. - (__ptw32_find_thread_entry): Ditto - (__ptw32_delete_thread_entry): Ditto - -Thu Jul 23 23:25:30 1998 Ross Johnson - - * global.c: New. Global data objects declared here. These moved from - pthread.h. - - * pthread.h: Move implementation hidden definitions into - implement.h. - - * implement.h: Move implementation hidden definitions from - pthread.h. Add constants to index into the different handler stacks. - - * cleanup.c (__ptw32_handler_push): Simplify args. Restructure. - (__ptw32_handler_pop): Simplify args. Restructure. - (__ptw32_handler_pop_all): Simplify args. Restructure. - -Wed Jul 22 00:16:22 1998 Ross Johnson - - * attr.c, implement.h, pthread.h, ChangeLog: Resolve CVS merge - conflicts. - - * private.c (__ptw32_find_thread_entry): Changes to return type - to support leaner __ptw32_threads_table[] which now only stores - __ptw32_thread_thread_t *. - (__ptw32_new_thread_entry): Internal changes. - (__ptw32_delete_thread_entry): Internal changes to avoid contention. - Calling routines changed accordingly. - - * pthread.h: Modified cleanup macros to use new generic push and pop. - Added destructor and atfork stacks to __ptw32_threads_thread_t. - - * cleanup.c (__ptw32_handler_push, __ptw32_handler_pop, - __ptw32_handler_pop_all): Renamed cleanup push and pop routines - and made generic to handle destructors and atfork handlers as - well. - - * create.c (__ptw32_start_call): New function is a wrapper for - all new threads. It allows us to do some cleanup when the thread - returns, ie. that is otherwise only done if the thread is cancelled. - - * exit.c (__ptw32_vacuum): New function contains code from - pthread_exit() that we need in the new __ptw32_start_call() - as well. - - * implement.h: Various additions and minor changes. - - * pthread.h: Various additions and minor changes. - Change cleanup handler macros to use generic handler push and pop - functions. - - * attr.c: Minor mods to all functions. - (is_attr): Implemented missing function. - - * create.c (pthread_create): More clean up. - - * private.c (__ptw32_find_thread_entry): Implement. - (__ptw32_delete_thread_entry): Implement. - (__ptw32_new_thread_entry): Implement. - These functions manipulate the implementations internal thread - table and are part of general code cleanup and modularisation. - They replace __ptw32_getthreadindex() which was removed. - - * exit.c (pthread_exit): Changed to use the new code above. - - * pthread.h: Add cancelability constants. Update comments. - -1998-07-22 Ben Elliston - - * attr.c (pthread_setstacksize): Update test of attr argument. - (pthread_getstacksize): Likewise. - (pthread_setstackaddr): Likewise. - (pthread_getstackaddr): Likewise. - (pthread_attr_init): No need to allocate any storage. - (pthread_attr_destroy): No need to free any storage. - - * mutex.c (is_attr): Not likely to be needed; remove. - (remove_attr): Likewise. - (insert_attr): Likewise. - - * implement.h (__ptw32_mutexattr_t): Moved to a public definition - in pthread.h. There was little gain in hiding these details. - (__ptw32_condattr_t): Likewise. - (__ptw32_attr_t): Likewise. - - * pthread.h (pthread_atfork): Add function prototype. - (pthread_attr_t): Moved here from implement.h. - - * fork.c (pthread_atfork): Preliminary implementation. - (__ptw32_fork): Likewise. - -Wed Jul 22 00:16:22 1998 Ross Johnson - - * cleanup.c (__ptw32_cleanup_push): Implement. - (__ptw32_cleanup_pop): Implement. - (__ptw32_do_cancellation): Implement. - These are private to the implementation. The real cleanup functions - are macros. See below. - - * pthread.h (pthread_cleanup_push): Implement as a macro. - (pthread_cleanup_pop): Implement as a macro. - Because these are macros which start and end a block, the POSIX scoping - requirement is observed. See the comment in the file. - - * exit.c (pthread_exit): Refine the code. - - * create.c (pthread_create): Code cleanup. - - * implement.h (RND_SIZEOF): Add RND_SIZEOF(T) to round sizeof(T) - up to multiple of DWORD. - Add function prototypes. - - * private.c (__ptw32_getthreadindex): "*thread" should have been - "thread". Detect empty slot fail condition. - -1998-07-20 Ben Elliston - - * misc.c (pthread_once): Implement. Don't use a per-application - flag and mutex--make `pthread_once_t' contain these elements in - their structure. The earlier version had incorrect semantics. - - * pthread.h (__ptw32_once_flag): Add new variable. Remove. - (__ptw32_once_lock): Add new mutex lock to ensure integrity of - access to __ptw32_once_flag. Remove. - (pthread_once): Add function prototype. - (pthread_once_t): Define this type. - -Mon Jul 20 02:31:05 1998 Ross Johnson - - * private.c (__ptw32_getthreadindex): Implement. - - * pthread.h: Add application static data dependent on - _PTHREADS_BUILD_DLL define. This is needed to avoid allocating - non-sharable static data within the pthread DLL. - - * implement.h: Add __ptw32_cleanup_stack_t, __ptw32_cleanup_node_t - and __PTW32_HASH_INDEX. - - * exit.c (pthread_exit): Begin work on cleanup and de-allocate - thread-private storage. - - * create.c (pthread_create): Add thread to thread table. - Keep a thread-private copy of the attributes with default values - filled in when necessary. Same for the cleanup stack. Make - pthread_create C run-time library friendly by using _beginthreadex() - instead of CreateThread(). Fix error returns. - -Sun Jul 19 16:26:23 1998 Ross Johnson - - * implement.h: Rename pthreads_thread_count to __ptw32_threads_count. - Create __ptw32_threads_thread_t struct to keep thread specific data. - - * create.c: Rename pthreads_thread_count to __ptw32_threads_count. - (pthread_create): Handle errors from CreateThread(). - -1998-07-19 Ben Elliston - - * condvar.c (pthread_cond_wait): Generalise. Moved from here .. - (cond_wait): To here. - (pthread_cond_timedwait): Implement; use generalised cond_wait(). - - * pthread.h (pthread_key_t): Define this type. - (pthread_key_create): Add function prototype. - (pthread_setspecific): Likewise. - (pthread_getspecific): Likwise. - (pthread_key_delete): Likewise. - - * tsd.c (pthread_key_create): Implement. - (pthread_setspecific): Likewise. - (pthread_getspecific): Likewise. - (pthread_key_delete): Likewise. - - * mutex.c (pthread_mutex_trylock): Return ENOSYS if this function - is called on a Win32 platform which is not Windows NT. - -1998-07-18 Ben Elliston - - * condvar.c (pthread_condattr_init): Do not attempt to malloc any - storage; none is needed now that condattr_t is an empty struct. - (pthread_condattr_destory): Likewise; do not free storage. - (pthread_condattr_setpshared): No longer supported; return ENOSYS. - (pthread_condattr_getpshared): Likewise. - (pthread_cond_init): Implement with help from Douglas Schmidt. - Remember to initialise the cv's internal mutex. - (pthread_cond_wait): Likewise. - (pthread_cond_signal): Likewise. - (pthread_cond_broadcast): Likewise. - (pthread_cond_timedwait): Preliminary implementation, but I need - to see some API documentation for `WaitForMultipleObject'. - (pthread_destory): Implement. - - * pthread.h (pthread_cond_init): Add function protoype. - (pthread_cond_broadcast): Likewise. - (pthread_cond_signal): Likewise. - (pthread_cond_timedwait): Likewise. - (pthread_cond_wait): Likewise. - (pthread_cond_destroy): Likewise. - (pthread_cond_t): Define this type. Fix for u_int. Do not assume - that the mutex contained withing the pthread_cond_t structure will - be a critical section. Use our new POSIX type! - - * implement.h (__ptw32_condattr_t): Remove shared attribute. - -1998-07-17 Ben Elliston - - * pthread.h (PTHREADS_PROCESS_PRIVATE): Remove. - (PTHREAD_PROCESS_SHARED): Likewise. No support for mutexes shared - across processes for now. - (pthread_mutex_t): Use a Win32 CRITICAL_SECTION type for better - performance. - - * implement.h (__ptw32_mutexattr_t): Remove shared attribute. - - * mutex.c (pthread_mutexattr_setpshared): This optional function - is no longer supported, since we want to implement POSIX mutex - variables using the much more efficient Win32 critical section - primitives. Critical section objects in Win32 cannot be shared - between processes. - (pthread_mutexattr_getpshared): Likewise. - (pthread_mutexattr_init): No need to malloc any storage; the - attributes structure is now empty. - (pthread_mutexattr_destroy): This is now a nop. - (pthread_mutex_init): Use InitializeCriticalSection(). - (pthread_mutex_destroy): Use DeleteCriticalSection(). - (pthread_mutex_lock): Use EnterCriticalSection(). - (pthread_mutex_trylock): Use TryEnterCriticalSection(). This is - not supported by Windows 9x, but trylock is a hack anyway, IMHO. - (pthread_mutex_unlock): Use LeaveCriticalSection(). - -1998-07-14 Ben Elliston - - * attr.c (pthread_attr_setstacksize): Implement. - (pthread_attr_getstacksize): Likewise. - (pthread_attr_setstackaddr): Likewise. - (pthread_attr_getstackaddr): Likewise. - (pthread_attr_init): Likewise. - (pthread_attr_destroy): Likewise. - - * condvar.c (pthread_condattr_init): Add `_cond' to function name. - - * mutex.c (pthread_mutex_lock): Add `_mutex' to function name. - (pthread_mutex_trylock): Likewise. - (pthread_mutex_unlock): Likewise. - - * pthread.h (pthread_condattr_setpshared): Fix typo. - (pthread_attr_init): Add function prototype. - (pthread_attr_destroy): Likewise. - (pthread_attr_setstacksize): Likewise. - (pthread_attr_getstacksize): Likewise. - (pthread_attr_setstackaddr): Likewise. - (pthread_attr_getstackaddr): Likewise. - -Mon Jul 13 01:09:55 1998 Ross Johnson - - * implement.h: Wrap in #ifndef _IMPLEMENT_H - - * create.c (pthread_create): Map stacksize attr to Win32. - - * mutex.c: Include implement.h - -1998-07-13 Ben Elliston - - * condvar.c (pthread_condattr_init): Implement. - (pthread_condattr_destroy): Likewise. - (pthread_condattr_setpshared): Likewise. - (pthread_condattr_getpshared): Likewise. - - * implement.h (PTHREAD_THREADS_MAX): Remove trailing semicolon. - (PTHREAD_STACK_MIN): Specify; needs confirming. - (__ptw32_attr_t): Define this type. - (__ptw32_condattr_t): Likewise. - - * pthread.h (pthread_mutex_t): Define this type. - (pthread_condattr_t): Likewise. - (pthread_mutex_destroy): Add function prototype. - (pthread_lock): Likewise. - (pthread_trylock): Likewise. - (pthread_unlock): Likewise. - (pthread_condattr_init): Likewise. - (pthread_condattr_destroy): Likewise. - (pthread_condattr_setpshared): Likewise. - (pthread_condattr_getpshared): Likewise. - - * mutex.c (pthread_mutex_init): Implement. - (pthread_mutex_destroy): Likewise. - (pthread_lock): Likewise. - (pthread_trylock): Likewise. - (pthread_unlock): Likewise. - -1998-07-12 Ben Elliston - - * implement.h (__ptw32_mutexattr_t): Define this implementation - internal type. Application programmers only see a mutex attribute - object as a void pointer. - - * pthread.h (pthread_mutexattr_t): Define this type. - (pthread_mutexattr_init): Add function prototype. - (pthread_mutexattr_destroy): Likewise. - (pthread_mutexattr_setpshared): Likewise. - (pthread_mutexattr_getpshared): Likewise. - (pthread_mutexattr_setprotocol): Likewise. - (pthread_mutexattr_getprotocol): Likewise. - (pthread_mutexattr_setprioceiling): Likewise. - (pthread_mutexattr_getprioceiling): Likewise. - (PTHREAD_PROCESS_PRIVATE): Define. - (PTHREAD_PROCESS_SHARED): Define. - - * mutex.c (pthread_mutexattr_init): Implement. - (pthread_mutexattr_destroy): Implement. - (pthread_mutexattr_setprotocol): Implement. - (pthread_mutexattr_getprotocol): Likewise. - (pthread_mutexattr_setprioceiling): Likewise. - (pthread_mutexattr_getprioceiling): Likewise. - (pthread_mutexattr_setpshared): Likewise. - (pthread_mutexattr_getpshared): Likewise. - (insert_attr): New function; very preliminary implementation! - (is_attr): Likewise. - (remove_attr): Likewise. - -Sat Jul 11 14:48:54 1998 Ross Johnson - - * implement.h: Preliminary implementation specific defines. - - * create.c (pthread_create): Preliminary implementation. - -1998-07-11 Ben Elliston - - * sync.c (pthread_join): Implement. - - * misc.c (pthread_equal): Likewise. - - * pthread.h (pthread_join): Add function prototype. - (pthread_equal): Likewise. - -1998-07-10 Ben Elliston - - * misc.c (pthread_self): Implement. - - * exit.c (pthread_exit): Implement. - - * pthread.h (pthread_exit): Add function prototype. - (pthread_self): Likewise. - (pthread_t): Define this type. - -1998-07-09 Ben Elliston - - * create.c (pthread_create): A dummy stub right now. - - * pthread.h (pthread_create): Add function prototype. diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/FAQ b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/FAQ deleted file mode 100644 index d62686a..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/FAQ +++ /dev/null @@ -1,468 +0,0 @@ - ========================================= - PTHREADS-WIN32 Frequently Asked Questions - ========================================= - -INDEX ------ - -Q 1 What is it? - -Q 2 Which of the several dll versions do I use? - or, - What are all these pthread*.dll and pthread*.lib files? - -Q 3 What is the library naming convention? - -Q 4 Cleanup code default style or: it used to work when I built - the library myself, but now it doesn't - why? - -Q 5 Why is the default library version now less exception-friendly? - -Q 6 Should I use Cygwin or Mingw32 as a development environment? - -Q 7 Now that pthreads-win32 builds under Mingw32, why do I get - memory access violations (segfaults)? - -Q 8 How do I use pthread.dll for Win32 (Visual C++ 5.0) - -Q 9 cancellation doesn't work for me, why? - -Q 10 How do I generate pthreadGCE.dll and libpthreadw32.a for use - with Mingw32? - -Q 11 Why isn't pthread_t defined as a scalar (e.g. pointer or int) - like it is for other POSIX threads implementations? - -============================================================================= - -Q 1 What is it? ---- - -Pthreads-win32 is an Open Source Software implementation of the -Threads component of the POSIX 1003.1c 1995 Standard for Microsoft's -Win32 environment. Some functions from POSIX 1003.1b are also -supported including semaphores. Other related functions include -the set of read-write lock functions. The library also supports -some of the functionality of the Open Group's Single Unix -specification, version 2, namely mutex types. - -See the file "ANNOUNCE" for more information including standards -conformance details and list of supported routines. - - ------------------------------------------------------------------------------- - -Q 2 Which of the several dll versions do I use? ---- or, - What are all these pthread*.dll and pthread*.lib files? - -Simply, you only use one of them, but you need to choose carefully. - -The most important choice you need to make is whether to use a -version that uses exceptions internally, or not (there are versions -of the library that use exceptions as part of the thread -cancellation and cleanup implementation, and one that uses -setjmp/longjmp instead). - -There is some contension amongst POSIX threads experts as -to how POSIX threads cancellation and exit should work -with languages that include exceptions and handlers, e.g. -C++ and even C (Microsoft's Structured Exceptions). - -The issue is: should cancellation of a thread in, say, -a C++ application cause object destructors and C++ exception -handlers to be invoked as the stack unwinds during thread -exit, or not? - -There seems to be more opinion in favour of using the -standard C version of the library (no EH) with C++ applications -since this appears to be the assumption commercial pthreads -implementations make. Therefore, if you use an EH version -of pthreads-win32 then you may be under the illusion that -your application will be portable, when in fact it is likely to -behave very differently linked with other pthreads libraries. - -Now you may be asking: why have you kept the EH versions of -the library? - -There are a couple of reasons: -- there is division amongst the experts and so the code may - be needed in the future. (Yes, it's in the repository and we - can get it out anytime in the future, but ...) -- pthreads-win32 is one of the few implementations, and possibly - the only freely available one, that has EH versions. It may be - useful to people who want to play with or study application - behaviour under these conditions. - - ------------------------------------------------------------------------------- - -Q 3 What is the library naming convention? ---- - -Because the library is being built using various exception -handling schemes and compilers - and because the library -may not work reliably if these are mixed in an application, -each different version of the library has it's own name. - -Note 1: the incompatibility is really between EH implementations -of the different compilers. It should be possible to use the -standard C version from either compiler with C++ applications -built with a different compiler. If you use an EH version of -the library, then you must use the same compiler for the -application. This is another complication and dependency that -can be avoided by using only the standard C library version. - -Note 2: if you use a standard C pthread*.dll with a C++ -application, then any functions that you define that are -intended to be called via pthread_cleanup_push() must be -__cdecl. - -Note 3: the intention is to also name either the VC or GC -version (it should be arbitrary) as pthread.dll, including -pthread.lib and libpthread.a as appropriate. - -In general: - pthread[VG]{SE,CE,C}.dll - pthread[VG]{SE,CE,C}.lib - -where: - [VG] indicates the compiler - V - MS VC - G - GNU C - - {SE,CE,C} indicates the exception handling scheme - SE - Structured EH - CE - C++ EH - C - no exceptions - uses setjmp/longjmp - -For example: - pthreadVSE.dll (MSVC/SEH) - pthreadGCE.dll (GNUC/C++ EH) - pthreadGC.dll (GNUC/not dependent on exceptions) - -The GNU library archive file names have changed to: - - libpthreadGCE.a - libpthreadGC.a - - ------------------------------------------------------------------------------- - -Q 4 Cleanup code default style or: it used to work when I built ---- the library myself, but now it doesn't - why? - -Up to and including snapshot 2001-07-12, if not defined, the cleanup -style was determined automatically from the compiler used, and one -of the following was defined accordingly: - - __PTW32_CLEANUP_SEH MSVC only - __PTW32_CLEANUP_CXX C++, including MSVC++, GNU G++ - __PTW32_CLEANUP_C C, including GNU GCC, not MSVC - -These defines determine the style of cleanup (see pthread.h) and, -most importantly, the way that cancellation and thread exit (via -pthread_exit) is performed (see the routine __ptw32_throw() in private.c). - -In short, the exceptions versions of the library throw an exception -when a thread is canceled or exits (via pthread_exit()), which is -caught by a handler in the thread startup routine, so that the -the correct stack unwinding occurs regardless of where the thread -is when it's canceled or exits via pthread_exit(). - -After snapshot 2001-07-12, unless your build explicitly defines (e.g. -via a compiler option) __PTW32_CLEANUP_SEH, __PTW32_CLEANUP_CXX, or __PTW32_CLEANUP_C, then -the build now ALWAYS defaults to __PTW32_CLEANUP_C style cleanup. This style -uses setjmp/longjmp in the cancellation and pthread_exit implementations, -and therefore won't do stack unwinding even when linked to applications -that have it (e.g. C++ apps). This is for consistency with most/all -commercial Unix POSIX threads implementations. - -Although it was not clearly documented before, it is still necessary to -build your application using the same __PTW32_CLEANUP_* define as was -used for the version of the library that you link with, so that the -correct parts of pthread.h are included. That is, the possible -defines require the following library versions: - - __PTW32_CLEANUP_SEH pthreadVSE.dll - __PTW32_CLEANUP_CXX pthreadVCE.dll or pthreadGCE.dll - __PTW32_CLEANUP_C pthreadVC.dll or pthreadGC.dll - -THE POINT OF ALL THIS IS: if you have not been defining one of these -explicitly, then the defaults have been set according to the compiler -and language you are using, as described at the top of this -section. - -THIS NOW CHANGES, as has been explained above. For example: - -If you were building your application with MSVC++ i.e. using C++ -exceptions (rather than SEH) and not explicitly defining one of -__PTW32_CLEANUP_*, then __PTW32_CLEANUP_C++ was defined for you in pthread.h. -You should have been linking with pthreadVCE.dll, which does -stack unwinding. - -If you now build your application as you had before, pthread.h will now -set __PTW32_CLEANUP_C as the default style, and you will need to link -with pthreadVC.dll. Stack unwinding will now NOT occur when a -thread is canceled, nor when the thread calls pthread_exit(). - -Your application will now most likely behave differently to previous -versions, and in non-obvious ways. Most likely is that local -objects may not be destroyed or cleaned up after a thread -is canceled. - -If you want the same behaviour as before, then you must now define -__PTW32_CLEANUP_C++ explicitly using a compiler option and link with -pthreadVCE.dll as you did before. - - ------------------------------------------------------------------------------- - -Q 5 Why is the default library version now less exception-friendly? ---- - -Because most commercial Unix POSIX threads implementations don't allow you to -choose to have stack unwinding. (Compaq's TRU64 Unix is possibly an exception.) - -Therefore, providing it in pthread-win32 as a default could be dangerous -and non-portable. We still provide the choice but you must now consciously -make it. - -WHY NOT REMOVE THE EXCEPTIONS VERSIONS OF THE LIBRARY ALTOGETHER? -There are a few reasons: -- because there are well respected POSIX threads people who believe - that POSIX threads implementations should be exceptions-aware and - do the expected thing in that context. (There are equally respected - people who believe it should not be easily accessible, if it's there - at all.) -- because pthreads-win32 is one of the few implementations that has - the choice, perhaps the only freely available one, and so offers - a laboratory to people who may want to explore the effects; -- although the code will always be around somewhere for anyone who - wants it, once it's removed from the current version it will not be - nearly as visible to people who may have a use for it. - - ------------------------------------------------------------------------------- - -Q 6 Should I use Cygwin or Mingw32 as a development environment? ---- - -Important: see Q7 also. - -Use Mingw32 with the MSVCRT library to build applications that use -the pthreads DLL. - -Cygwin's own internal support for POSIX threads is growing. -Consult that project's documentation for more information. - ------------------------------------------------------------------------------- - -Q 7 Now that pthreads-win32 builds under Mingw32, why do I get ---- memory access violations (segfaults)? - -The latest Mingw32 package has thread-safe exception handling (see Q10). -Also, see Q6 above. - ------------------------------------------------------------------------------- - -Q 8 How do I use pthread.dll for Win32 (Visual C++ 5.0) ---- - -> -> I'm a "rookie" when it comes to your pthread implementation. I'm currently -> desperately trying to install the prebuilt .dll file into my MSVC compiler. -> Could you please provide me with explicit instructions on how to do this (or -> direct me to a resource(s) where I can acquire such information)? -> -> Thank you, -> - -You should have a .dll, .lib, .def, and three .h files. It is recommended -that you use pthreadVC.dll, rather than pthreadVCE.dll or pthreadVSE.dll -(see Q2 above). - -The .dll can go in any directory listed in your PATH environment -variable, so putting it into C:\WINDOWS should work. - -The .lib file can go in any directory listed in your LIB environment -variable. - -The .h files can go in any directory listed in your INCLUDE -environment variable. - -Or you might prefer to put the .lib and .h files into a new directory -and add its path to LIB and INCLUDE. You can probably do this easiest -by editing the file:- - -C:\Program Files\DevStudio\vc\bin\vcvars32.bat - -The .def file isn't used by anything in the pre-compiled version but -is included for information. - -Cheers. -Ross - ------------------------------------------------------------------------------- - -Q 9 cancellation doesn't work for me, why? ---- - -> I'm investigating a problem regarding thread cancellation. The thread I want -> to cancel has PTHREAD_CANCEL_ASYNCHRONOUS, however, this piece of code -> blocks on the join(): -> -> if ((retv = Pthread_cancel( recvThread )) == 0) -> { -> retv = Pthread_join( recvThread, 0 ); -> } -> -> Pthread_* are just macro's; they call pthread_*. -> -> The thread recvThread seems to block on a select() call. It doesn't get -> cancelled. -> -> Two questions: -> -> 1) is this normal behaviour? -> -> 2) if not, how does the cancel mechanism work? I'm not very familliar to -> win32 programming, so I don't really understand how the *Event() family of -> calls work. - -The answer to your first question is, normal POSIX behaviour would -be to asynchronously cancel the thread. However, even that doesn't -guarantee cancellation as the standard only says it should be -cancelled as soon as possible. - -Snapshot 99-11-02 or earlier only partially supports asynchronous cancellation. -Snapshots since then simulate async cancellation by poking the address of -a cancellation routine into the PC of the threads context. This requires -the thread to be resumed in some way for the cancellation to actually -proceed. This is not true async cancellation, but it is as close as we've -been able to get to it. - -If the thread you're trying to cancel is blocked (for instance, it could be -waiting for data from the network), it will only get cancelled when it unblocks -(when the data arrives). For true pre-emptive cancellation in these cases, -pthreads-win32 from snapshot 2004-05-16 can automatically recognise and use the -QueueUserAPCEx package by Panagiotis E. Hadjidoukas. This package is available -from the pthreads-win32 ftp site and is included in the pthreads-win32 -self-unpacking zip from 2004-05-16 onwards. - -Using deferred cancellation would normally be the way to go, however, -even though the POSIX threads standard lists a number of C library -functions that are defined as deferred cancellation points, there is -no hookup between those which are provided by Windows and the -pthreads-win32 library. - -Incidently, it's worth noting for code portability that the older POSIX -threads standards cancellation point lists didn't include "select" because -(as I read in Butenhof) it wasn't part of POSIX. However, it does appear in -the SUSV3. - -Effectively, the only mandatory cancellation points that pthreads-win32 -recognises are those the library implements itself, ie. - - pthread_testcancel - pthread_cond_wait - pthread_cond_timedwait - pthread_join - sem_wait - sem_timedwait - pthread_delay_np - -The following routines from the non-mandatory list in SUSV3 are -cancellation points in pthreads-win32: - - pthread_rwlock_wrlock - pthread_rwlock_timedwrlock - -The following routines from the non-mandatory list in SUSV3 are not -cancellation points in pthreads-win32: - - pthread_rwlock_rdlock - pthread_rwlock_timedrdlock - -Pthreads-win32 also provides two functions that allow you to create -cancellation points within your application, but only for cases where -a thread is going to block on a Win32 handle. These are: - - pthreadCancelableWait(HANDLE waitHandle) /* Infinite wait */ - - pthreadCancelableTimedWait(HANDLE waitHandle, DWORD timeout) - ------------------------------------------------------------------------------- - - -Q 10 How do I create thread-safe applications using ----- pthreadGCE.dll, libpthreadw32.a and Mingw32? - -This should not be a problem with recent versions of MinGW32. - -For early versions, see Thomas Pfaff's email at: -http://sources.redhat.com/ml/pthreads-win32/2002/msg00000.html ------------------------------------------------------------------------------- - -Q 11 Why isn't pthread_t defined as a scalar (e.g. pointer or int) - like it is for other POSIX threads implementations? ----- - -The change from scalar to vector was made in response to the numerous -queries we received at that time either requesting assistance to debug -applications or reporting problems with the library that turned out to be -application bugs. Since the change we have only received requests that -we change back to scalar in order to support applications that are not -compliant with POSIX. - -Originally we defined pthread_t as a pointer (to the opaque pthread_t_ -struct) and later we changed it to a struct containing the original -pointer plus a sequence counter. This is not only allowed under both -the original POSIX Threads Standard and the current Single Unix -Specification, it is expected if the implemented chooses and is why -the standard requires pthread_t to be an opaque type. - -When pthread_t is a simple pointer some very difficult thread management -problems arise because the process of freeing and later allocing -thread structs means that new pthread_t handles can acquire the identity of -previously detached threads. There are solutions to manage this risk but -they can easily introduce their own bugs and require all developers to -spend significant time solving a problem that is not "core" to their work -and that others have already solved. The problem is rarely solved in -a portable and POSIX compliant way. It can't be because pthread_t is opaque, -i.e. a developer is not supposed to assume anything about pthread_t. Several -pthreads implmentations do provide non-portable aids, such as API calls to -return unique sequence numbers etc. - -The change to a struct was made, along with some changes to their internal -managment, in order to guarantee (for practical applications) that the -pthread_t handle will be unique over the life of the running process. - -Where application code attempts to compare one pthread_t against another -directly, a compiler error will be emitted because structs can't be -compared at that level. This should signal a potentially serious problem -in the code design, which would go undetected if pthread_t was a scalar. - -The POSIX Threading API provides a function named pthread_equal() to -compare pthread_t thread handles. - -Other pthreads implementations, such as Sun's, use an int as the handle -but do guarantee uniqueness within the process scope. Win32 scalar typed -thread handles also guarantee uniqueness in system scope. It wasn't clear -how well the internal management of these handles would scale as the -number of threads and the fragmentation of the sequence numbering -increased for applications where thousands or millions of threads are -created and detached over time. The current management of threads within -pthreads-win32 using structs for pthread_t, and reusing without ever -freeing them, reduces the management time overheads to a constant, which -could be important given that pthreads-win32 threads are built on top of -Win32 threads and will therefore include that management overhead on top -of their own. The cost is that the memory resources used for thread -handles will remain at the peak level until the process exits. - -While it may be inconvenient for developers to be forced away from making -assumptions about the internals of pthread_t, the advantage for the -future development of pthread-win32, as well as those applications that -use it, is that the library is free to change pthread_t internals and -management as better methods arise. - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/GNUmakefile.in b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/GNUmakefile.in deleted file mode 100644 index 3455b6d..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/GNUmakefile.in +++ /dev/null @@ -1,409 +0,0 @@ -# @configure_input@ -# -------------------------------------------------------------------------- -# -# Pthreads4w - POSIX Threads for Windows -# Copyright 1998 John E. Bossom -# Copyright 1999-2018, Pthreads4w contributors -# -# Homepage: https://sourceforge.net/projects/pthreads4w/ -# -# The current list of contributors is contained -# in the file CONTRIBUTORS included with the source -# code distribution. The list can also be seen at the -# following World Wide Web location: -# -# https://sourceforge.net/p/pthreads4w/wiki/Contributors/ -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library in the file COPYING.LIB; -# if not, write to the Free Software Foundation, Inc., -# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA -# -PACKAGE = @PACKAGE_TARNAME@ -VERSION = @PACKAGE_VERSION@ - -PTW32_VER = 3$(EXTRAVERSION) - -# See pthread.h and README for the description of version numbering. -PTW32_VERD = $(PTW32_VER)d - -srcdir = @srcdir@ -builddir = @builddir@ -VPATH = @srcdir@ - -# FIXME: Replace these path name references with autoconf standards. -DESTROOT = ../PTHREADS-BUILT -DLLDEST = $(DESTROOT)/bin -LIBDEST = $(DESTROOT)/lib -HDRDEST = $(DESTROOT)/include -# i.e. -# -prefix = @prefix@ -exec_prefix = @exec_prefix@ -bindir = ${DESTDIR}@bindir@ -includedir = ${DESTDIR}@includedir@ -libdir = ${DESTDIR}@libdir@ - -# FIXME: This is correct for a static library; a DLL import library -# should be called libpthread.dll.a, or some such. -DEST_LIB_NAME = libpthread - -# If Running MsysDTK -RM = rm -f -MV = mv -f -CP = cp -f -GREP = grep -MKDIR = mkdir -p -ECHO = echo -TESTNDIR = test ! -d -TESTFILE = test -f -AND = && -COUNT_UNIQ = uniq -c - -# If not. -#RM = erase -#MV = rename -#CP = copy -#MKDIR = mkdir -#ECHO = echo -#TESTNDIR = if exist -#TESTFILE = if exist -# AND = - -# For cross compiling use e.g. -# make CROSS=x86_64-w64-mingw32- clean GC-inlined -# FIXME: To be removed; autoconf handles this transparently; -# DO NOT use this non-standard feature. -#CROSS = - -CC = @CC@ -CXX = @CXX@ - -AR = @AR@ -DLLTOOL = @DLLTOOL@ -RANLIB = @RANLIB@ -RC = @RC@ -OD_PRIVATE = @OBJDUMP@ -p - -# Build for non-native architecture. E.g. "-m64" "-m32" etc. -# Not tested fully, needs gcc built with "--enable-multilib" -# Check your "gcc -v" output for the options used to build your gcc. -# You can set this as a shell variable or on the make comand line. -# You don't need to uncomment it here unless you want to hardwire -# a value. -#ARCH = - -# -# Look for targets that $(RC) (usually windres) supports then look at any object -# file just built to see which target the compiler used and set the $(RC) target -# to match it. -# -KNOWN_TARGETS := pe-% pei-% elf32-% elf64-% srec symbolsrec verilog tekhex binary ihex -SUPPORTED_TARGETS := $(filter $(KNOWN_TARGETS),$(shell $(RC) --help)) -RC_TARGET = --target $(firstword $(filter $(SUPPORTED_TARGETS),$(shell $(OD_PRIVATE) *.$(OBJEXT)))) - -OPT = $(CLEANUP) -O3 # -finline-functions -findirect-inlining -XOPT = - -RCFLAGS = --include-dir=${srcdir} -LFLAGS = $(ARCH) -# Uncomment this if config.h defines RETAIN_WSALASTERROR -# FIXME: autoconf (or GNU make) convention dictates that this should be -# LIBS (or LDLIBS); ideally, it should be set by configure. -#LFLAGS += -lws2_32 -# -# Uncomment this next to link the GCC/C++ runtime libraries statically -# (Be sure to read about these options and their associated caveats -# at http://gcc.gnu.org/onlinedocs/gcc/Link-Options.html) -# -# NOTE 1: Doing this appears to break GCE:pthread_cleanup_*(), which -# relies on C++ class destructors being called when leaving scope. -# -# NOTE 2: If you do this DO NOT distribute your pthreads DLLs with -# the official filenaming, i.e. pthreadVC2.dll, etc. Instead, change PTW32_VER -# above to "2slgcc" for example, to build "pthreadGC2slgcc.dll", etc. -# -# FIXME: in this case, convention would have us use LDFLAGS; once again, if -# we really want this, we should support it via a configure script option. -#LFLAGS += -static-libgcc -static-libstdc++ - -# ---------------------------------------------------------------------- -# The library can be built with some alternative behaviour to -# facilitate development of applications on Win32 that will be ported -# to other POSIX systems. Nothing definable here will make the library -# non-compliant, but applications that make assumptions that POSIX -# does not garrantee may fail or misbehave under some settings. -# -# __PTW32_THREAD_ID_REUSE_INCREMENT -# Purpose: -# POSIX says that applications should assume that thread IDs can be -# recycled. However, Solaris and some other systems use a [very large] -# sequence number as the thread ID, which provides virtual uniqueness. -# Pthreads-win32 provides pseudo-unique IDs when the default increment -# (1) is used, but pthread_t is not a scalar type like Solaris's. -# -# Usage: -# Set to any value in the range: 0 <= value <= 2^wordsize -# -# Examples: -# Set to 0 to emulate non recycle-unique behaviour like Linux or *BSD. -# Set to 1 for recycle-unique thread IDs (this is the default). -# Set to some other +ve value to emulate smaller word size types -# (i.e. will wrap sooner). -# -#__PTW32_FLAGS = "-D__PTW32_THREAD_ID_REUSE_INCREMENT=0" -# -# ---------------------------------------------------------------------- - -GC_CFLAGS = $(__PTW32_FLAGS) -GCE_CFLAGS = $(__PTW32_FLAGS) -mthreads - -## Mingw -#MAKE ?= make -DEFS = @DEFS@ -D__PTW32_BUILD -CFLAGS = $(OPT) $(XOPT) $(ARCH) -I. -I${srcdir} $(DEFS) -Wall - -OBJEXT = @OBJEXT@ -OEXT = @OBJEXT@ -RESEXT = @OBJEXT@ - -include ${srcdir}/common.mk - -DLL_OBJS += $(RESOURCE_OBJS) -STATIC_OBJS += $(RESOURCE_OBJS) -STATIC_OBJS_SMALL += $(RESOURCE_OBJS) - -GCE_DLL = pthreadGCE$(PTW32_VER).dll -GCED_DLL= pthreadGCE$(PTW32_VERD).dll -GCE_LIB = libpthreadGCE$(PTW32_VER).a -GCED_LIB= libpthreadGCE$(PTW32_VERD).a - -GC_DLL = pthreadGC$(PTW32_VER).dll -GCD_DLL = pthreadGC$(PTW32_VERD).dll -GC_LIB = libpthreadGC$(PTW32_VER).a -GCD_LIB = libpthreadGC$(PTW32_VERD).a -GC_INLINED_STATIC_STAMP = libpthreadGC$(PTW32_VER).inlined_static_stamp -GCD_INLINED_STATIC_STAMP = libpthreadGC$(PTW32_VERD).inlined_static_stamp -GCE_INLINED_STATIC_STAMP = libpthreadGCE$(PTW32_VER).inlined_static_stamp -GCED_INLINED_STATIC_STAMP = libpthreadGCE$(PTW32_VERD).inlined_static_stamp -GC_SMALL_STATIC_STAMP = libpthreadGC$(PTW32_VER).small_static_stamp -GCD_SMALL_STATIC_STAMP = libpthreadGC$(PTW32_VERD).small_static_stamp -GCE_SMALL_STATIC_STAMP = libpthreadGCE$(PTW32_VER).small_static_stamp -GCED_SMALL_STATIC_STAMP = libpthreadGCE$(PTW32_VERD).small_static_stamp - -PTHREAD_DEF = pthread.def - -help: - @ echo "Run one of the following command lines:" - @ echo "$(MAKE) clean all (build targets GC, GCE, GC-static, GCE-static)" - @ echo "$(MAKE) clean all-tests (build and test all non-debug targets below)" - @ echo "$(MAKE) clean GC (to build the GNU C dll with C cleanup code)" - @ echo "$(MAKE) clean GC-debug (to build the GNU C debug dll with C cleanup code)" - @ echo "$(MAKE) clean GCE (to build the GNU C dll with C++ exception handling)" - @ echo "$(MAKE) clean GCE-debug (to build the GNU C debug dll with C++ exception handling)" - @ echo "$(MAKE) clean GC-static (to build the GNU C static lib with C cleanup code)" - @ echo "$(MAKE) clean GC-static-debug (to build the GNU C static debug lib with C cleanup code)" - @ echo "$(MAKE) clean GCE-static (to build the GNU C++ static lib with C++ cleanup code)" - @ echo "$(MAKE) clean GCE-static-debug (to build the GNU C++ static debug lib with C++ cleanup code)" - @ echo "$(MAKE) clean GC-small-static (to build the GNU C static lib with C cleanup code)" - @ echo "$(MAKE) clean GC-small-static-debug (to build the GNU C static debug lib with C cleanup code)" - @ echo "$(MAKE) clean GCE-small-static (to build the GNU C++ static lib with C++ cleanup code)" - @ echo "$(MAKE) clean GCE-small-static-debug (to build the GNU C++ static debug lib with C++ cleanup code)" - -all: - @ $(MAKE) clean GC - @ $(MAKE) clean GCE - @ $(MAKE) clean GC-static - @ $(MAKE) clean GCE-static - -TEST_ENV = __PTW32_FLAGS="$(__PTW32_FLAGS) -DNO_ERROR_DIALOGS" PTW32_VER=$(PTW32_VER) ARCH="$(ARCH)" - -all-tests: - $(MAKE) realclean GC - cd tests && $(MAKE) clean GC $(TEST_ENV) && $(MAKE) clean GCX $(TEST_ENV) - $(MAKE) realclean GCE - cd tests && $(MAKE) clean GCE $(TEST_ENV) - $(MAKE) realclean GC-static - cd tests && $(MAKE) clean GC-static $(TEST_ENV) && $(MAKE) clean GCX-static $(TEST_ENV) - $(MAKE) realclean GCE-static - cd tests && $(MAKE) clean GCE-static $(TEST_ENV) - $(MAKE) realclean GC-small-static - cd tests && $(MAKE) clean GC-small-static $(TEST_ENV) && $(MAKE) clean GCX-small-static $(TEST_ENV) - $(MAKE) realclean GCE-small-static - cd tests && $(MAKE) clean GCE-small-static $(TEST_ENV) - $(MAKE) realclean - @ - $(GREP) Passed *.log | $(COUNT_UNIQ) - @ - $(GREP) FAILED *.log - -all-tests-cflags: - $(MAKE) all-tests __PTW32_FLAGS="-Wall -Wextra" - @ $(ECHO) "$@ completed." - -GC: - $(MAKE) XOPT="-D__PTW32_BUILD_INLINED" CLEANUP=-D__PTW32_CLEANUP_C XC_FLAGS="$(GC_CFLAGS)" OBJ="$(DLL_OBJS)" $(GC_DLL) - -GC-debug: - $(MAKE) XOPT="-D__PTW32_BUILD_INLINED" CLEANUP=-D__PTW32_CLEANUP_C XC_FLAGS="$(GC_CFLAGS)" OBJ="$(DLL_OBJS)" PTW32_VER=$(PTW32_VERD) OPT="-D__PTW32_CLEANUP_C -g -O0" $(GCD_DLL) - -GCE: - $(MAKE) XOPT="-D__PTW32_BUILD_INLINED" CC=$(CXX) CLEANUP=-D__PTW32_CLEANUP_CXX XC_FLAGS="$(GCE_CFLAGS)" OBJ="$(DLL_OBJS)" $(GCE_DLL) - -GCE-debug: - $(MAKE) XOPT="-D__PTW32_BUILD_INLINED" CC=$(CXX) CLEANUP=-D__PTW32_CLEANUP_CXX XC_FLAGS="$(GCE_CFLAGS)" OBJ="$(DLL_OBJS)" PTW32_VER=$(PTW32_VERD) OPT="-D__PTW32_CLEANUP_CXX -g -O0" $(GCED_DLL) - -GC-static: - $(MAKE) XOPT="-D__PTW32_BUILD_INLINED -D__PTW32_STATIC_LIB" CLEANUP=-D__PTW32_CLEANUP_C XC_FLAGS="$(GC_CFLAGS)" OBJ="$(STATIC_OBJS)" $(GC_INLINED_STATIC_STAMP) - -GC-static-debug: - $(MAKE) XOPT="-D__PTW32_BUILD_INLINED -D__PTW32_STATIC_LIB" CLEANUP=-D__PTW32_CLEANUP_C XC_FLAGS="$(GC_CFLAGS)" OBJ="$(STATIC_OBJS)" PTW32_VER=$(PTW32_VERD) OPT="-D__PTW32_CLEANUP_C -g -O0" $(GCD_INLINED_STATIC_STAMP) - -GC-small-static: - $(MAKE) XOPT="-D__PTW32_STATIC_LIB" CLEANUP=-D__PTW32_CLEANUP_C XC_FLAGS="$(GC_CFLAGS)" OBJ="$(STATIC_OBJS_SMALL)" $(GC_SMALL_STATIC_STAMP) - -GC-small-static-debug: - $(MAKE) XOPT="-D__PTW32_STATIC_LIB" CLEANUP=-D__PTW32_CLEANUP_C XC_FLAGS="$(GC_CFLAGS)" OBJ="$(STATIC_OBJS_SMALL)" PTW32_VER=$(PTW32_VERD) OPT="-D__PTW32_CLEANUP_C -g -O0" $(GCD_SMALL_STATIC_STAMP) - -GCE-static: - $(MAKE) XOPT="-D__PTW32_BUILD_INLINED -D__PTW32_STATIC_LIB" CC=$(CXX) CLEANUP=-D__PTW32_CLEANUP_CXX XC_FLAGS="$(GCE_CFLAGS)" OBJ="$(STATIC_OBJS)" $(GCE_INLINED_STATIC_STAMP) - -GCE-static-debug: - $(MAKE) XOPT="-D__PTW32_BUILD_INLINED -D__PTW32_STATIC_LIB" CC=$(CXX) CLEANUP=-D__PTW32_CLEANUP_CXX XC_FLAGS="$(GCE_CFLAGS)" OBJ="$(STATIC_OBJS)" PTW32_VER=$(PTW32_VERD) OPT="-D__PTW32_CLEANUP_C -g -O0" $(GCED_INLINED_STATIC_STAMP) - -GCE-small-static: - $(MAKE) XOPT="-D__PTW32_STATIC_LIB" CC=$(CXX) CLEANUP=-D__PTW32_CLEANUP_CXX XC_FLAGS="$(GCE_CFLAGS)" OBJ="$(STATIC_OBJS_SMALL)" $(GCE_SMALL_STATIC_STAMP) - -GCE-small-static-debug: - $(MAKE) XOPT="-D__PTW32_STATIC_LIB" CC=$(CXX) CLEANUP=-D__PTW32_CLEANUP_CXX XC_FLAGS="$(GCE_CFLAGS)" OBJ="$(STATIC_OBJS_SMALL)" PTW32_VER=$(PTW32_VERD) OPT="-D__PTW32_CLEANUP_C -g -O0" $(GCED_SMALL_STATIC_STAMP) - -tests: - @ cd tests - @ $(MAKE) auto - -# Very basic install. - -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -mkinstalldirs = @MKDIR_P@ $1 - -.PHONY: install installdirs install-headers -.PHONY: install-dlls install-lib-default install-libs-specific - -install: installdirs install-headers install-libs install-dlls - -installdirs: ${bindir} ${includedir} ${libdir} -${bindir} ${includedir} ${libdir}:; $(call mkinstalldirs,$@) - -install-dlls: $(wildcard ${builddir}/pthreadGC*.dll) - $(INSTALL_DATA) $^ ${bindir} - -install-libs: install-libs-specific -install-libs-specific: $(wildcard ${builddir}/libpthreadGC*.a) - $(INSTALL_DATA) $^ ${libdir} - -default_libs = $(wildcard $(addprefix $1,$(PTW32_VER)$2 $(PTW32_VERD)$2)) - -# FIXME: this is a ghastly, utterly non-deterministic hack; who knows -# what it's going to install as the default libpthread.a? Better to -# just explicitly make it a copy of libpthreadGC$(PTW32_VER).a -install-libs: install-lib-default -install-lib-default: $(call default_libs,libpthreadGC,.a) -install-lib-default: $(call default_libs,libpthreadGCE,.a) - $(INSTALL_DATA) $(lastword $^) ${libdir}/$(DEST_LIB_NAME).a - -# FIXME: similarly, who knows what this will install? Once again, it -# would be better to explicitly install libpthread.dll.a as a copy of -# libpthreadGC$(PTW32_VER).dll.a -install-libs: install-implib-default -install-implib-default: $(call default_libs,libpthreadGC,.dll.a) -install-implib-default: $(call default_libs,libpthreadGCE,.dll.a) - $(INSTALL_DATA) $(lastword $^) ${libdir}/$(DEST_LIB_NAME).dll.a - -install-headers: pthread.h sched.h semaphore.h _ptw32.h - $(INSTALL_DATA) $^ ${includedir} - -%.pre: %.c - $(CC) -E -o $@ $(CFLAGS) $^ - -%.s: %.c - $(CC) -c $(CFLAGS) -D__PTW32_BUILD_INLINED -Wa,-ahl $^ > $@ - -%.o: %.rc - $(RC) $(RC_TARGET) $(RCFLAGS) $(CLEANUP) -o $@ -i $< - -.SUFFIXES: .dll .rc .c .o - -.c.o: - $(CC) -c -o $@ $(CFLAGS) $(XC_FLAGS) $< - - -$(GC_DLL) $(GCD_DLL): $(DLL_OBJS) - $(CC) $(OPT) -shared -o $@ $^ $(LFLAGS) - $(DLLTOOL) -z pthread.def $^ - $(DLLTOOL) -k --dllname $@ --output-lib lib$@.a --def $(PTHREAD_DEF) - -$(GCE_DLL) $(GCED_DLL): $(DLL_OBJS) - $(CC) $(OPT) -mthreads -shared -o $@ $^ $(LFLAGS) - $(DLLTOOL) -z pthread.def $^ - $(DLLTOOL) -k --dllname $@ --output-lib lib$@.a --def $(PTHREAD_DEF) - -$(GC_INLINED_STATIC_STAMP) $(GCE_INLINED_STATIC_STAMP) $(GCD_INLINED_STATIC_STAMP) $(GCED_INLINED_STATIC_STAMP): $(STATIC_OBJS) - $(RM) $(basename $@).a - $(AR) -rsv $(basename $@).a $^ - $(ECHO) touched > $@ - -$(GC_SMALL_STATIC_STAMP) $(GCE_SMALL_STATIC_STAMP) $(GCD_SMALL_STATIC_STAMP) $(GCED_SMALL_STATIC_STAMP): $(STATIC_OBJS_SMALL) - $(RM) $(basename $@).a - $(AR) -rsv $(basename $@).a $^ - $(ECHO) touched > $@ - -clean: - -$(RM) *~ - -$(RM) *.i - -$(RM) *.s - -$(RM) *.o - -$(RM) *.obj - -$(RM) *.exe - -$(RM) *.manifest - -$(RM) $(PTHREAD_DEF) - -cd tests && $(MAKE) clean - -realclean: clean - -$(RM) lib*.a - -$(RM) *.lib - -$(RM) pthread*.dll - -$(RM) *_stamp - -$(RM) make.log.txt - -cd tests && $(MAKE) realclean - -var_check_list = - -define var_check_target -var-check-$(1): - @for src in $($(1)); do \ - fgrep -q "\"$$$$src\"" $(2) && continue; \ - echo "$$$$src is in \$$$$($(1)), but not in $(2)"; \ - exit 1; \ - done - @grep '^# *include *".*\.c"' $(2) | cut -d'"' -f2 | while read src; do \ - echo " $($(1)) " | fgrep -q " $$$$src " && continue; \ - echo "$$$$src is in $(2), but not in \$$$$($(1))"; \ - exit 1; \ - done - @echo "$(1) <-> $(2): OK" - -var_check_list += var-check-$(1) -endef - -$(eval $(call var_check_target,PTHREAD_SRCS,pthread.c)) - -srcs-vars-check: $(var_check_list) diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/LICENSE b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/LICENSE deleted file mode 100644 index 7a4a3ea..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/LICENSE +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/MAINTAINERS b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/MAINTAINERS deleted file mode 100644 index 4314b6a..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/MAINTAINERS +++ /dev/null @@ -1,3 +0,0 @@ -CVS Repository maintainers - -Ross Johnson Firstname.Lastname at LoungeByTheLake dot net diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/NEWS b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/NEWS deleted file mode 100644 index b6c57c8..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/NEWS +++ /dev/null @@ -1,1588 +0,0 @@ -RELEASE 3.0.0 --------------- -(2018-08-08) - -General -------- -Note that this is a new major release. The major version increment -introduces two ABI changes along with other naming changes that will -require recompilation of linking applications and possibly some textual -changes to compile-time macro references in configuration and source -files, e.g. PTW32_* changes to __PTW32_*, ptw32_* to __ptw32_*, etc. - -License Change --------------- -With the agreement of all substantial relevant contributors Pthreads4w -version 3, with the exception of four files, is being released under the -terms of the Apache License v2.0. The APLv2 is compatible with the GPLv3 -and LGPLv3 licenses and therefore this code may continue to be legally -included within GPLv3 and LGPLv3 projects. - -A substantial relevant contributor was defined as one who has contributed -original code that implements a capability present in the releases going -forward. This excludes several contributors who have contributed code -that has been obsoleted, or have provided patches that fix bugs, -reorganise code for aesthetic or practical purposes, or improve build -processes. This distinction was necessary in order to move forward in the -likelyhood that not all contributors would be contactable. All -contributors are listed in the file CONTRIBUTORS. - -The four files that will remain LGPL but change to v3 are files used to -configure the GNU environment builds: - - aclocal.m4 - configure.ac - GNUmakefile.in - tests/GNUmakefile.in - -Contributors who have either requested this change or agreed to it when -consulted are: - -John Bossom -Alexander Terekhov -Vladimir Kliatchko -Ross Johnson - -Pthreads4w version 2 releases will remain LGPL but version 2.11 and later -will be released under v3 of that license so that any additions to -pthreads4w version 3 code that is backported to v2 will not pollute that -code. - -Backporting and Support of Legacy Windows Releases --------------------------------------------------- -Some changes from 2011-02-26 onward may not be compatible with pre -Windows 2000 systems. - -New bug fixes in all releases since 2.8.0 have NOT been applied to the -1.x.x series. - -Testing and verification ------------------------- -The MSVC, MinGW and MinGW64 builds have been tested on SMP architecture -(Intel x64 Hex Core) by completing the included test suite, as well as the -stress and bench tests. - -Be sure to run your builds against the test suite. If you see failures -then please consider how your toolchains might be contributing to the -failure. See the README file for more detailed descriptions of the -toolchains and test systems that we have used to get the tests to pass -successfully. - -We recommend MinGW64 over MinGW for both 64 and 32 bit GNU CC builds -only because the MinGW DWARF2 exception handling with C++ builds causes some -problems with thread cancelation. - -MinGW64 also includes its own native pthreads implementation, which you may -prefer to use. If you wish to build our library you will need to select the -Win32 native threads option at install time. We recommend also selecting the -SJLJ exception handling method for MinGW64-w32 builds. For MinGW64-w64 builds -either the SJLJ or SEH exception handling method should work. - -New Features ------------- -Other than the following, this release is feature-equivalent to v2.11.0. - -This release introduces a change to pthread_t and pthread_once_t that will -affect applications that link with the library. - -pthread_t: remains a struct but extends the reuse counter from 32 bits to 64 -bits. On 64 bit machines the overall size of the object will not increase, we -simply put 4 bytes of padding to good use reducing the risk that the counter -could wrap around in very long-running applications from small to, effectively, -zero. The 64 bit reuse counter extends risk-free run time from months -(assuming an average thread lifetime of 1ms) to centuries (assuming an -average thread lifetime of 1ns). - -pthread_once_t: removes two long-obsoleted elements and reduces it's size. - - -RELEASE 2.11.0 --------------- -(2018-08-08) - -General -------- -New bug fixes in all releases since 2.8.0 have NOT been applied to the -1.x.x series. - -Some changes from 2011-02-26 onward may not be compatible with -pre Windows 2000 systems. - -License Change to LGPL v3 -------------------------- -Pthreads4w version 2.11 and all future 2.x versions will be released -under the Lesser GNU Public License version 3 (LGPLv3). - -Planned Release Under the Apache License v2 -------------------------------------------- -The next major version of this software (version 3) will be released -under the Apache License version 2.0 (ALv2). Releasing 2.11 under LGPLv3 -will allow modifications to version 3 of this software to be backported -to version 2 going forward. Further to this, any GPL projects currently -using this library will be able to continue to use either version 2 or 3 -of this code in their projects. - -For more information please see: -https://www.apache.org/licenses/GPL-compatibility.html - -In order to remain consistent with this change, from this point on -modifications to this library will only be accepted against version 3 -of this software under the terms of the ALv2. They will then, where -appropriate, be backported to version 2. - -We hope to release version 3 at the same time as we release version 2.11. - -Testing and verification ------------------------- -This version has been tested on SMP architecture (Intel x64 Hex Core) -by completing the included test suite, as well as the stress and bench -tests. - -Be sure to run your builds against the test suite. If you see failures -then please consider how your toolchains might be contributing to the -failure. See the README file for more detailed descriptions of the -toolchains and test systems that we have used to get the tests to pass -successfully. We recommend MinGW64 over MinGW32 for both 64 and 32 bit -GNU CC builds. MinGW64 also includes its own independent pthreads -implementation, which you may prefer to use. - -New Features or Changes ------------------------ -For Microsoft toolchain builds: -(1) Static linking requires both this library and any linking -libraries or applications to be compiled with /MT consistently. - -(2) Static libraries have been renamed as libpthreadV*.lib -to differentiate them from DLL import libs pthreadV*.lib. - -(3) If you are using mixed linkage, e.g. linking the static /MT version -of the library to an application linked with /MD you may be able to use -GetLastError() to interrogate the error code because the library sets -both errno (via _set_errno()) and SetLastError(). - -Bug Fixes ---------- -Remove the attempt to set PTW32_USES_SEPARATE_CRT in the headers which -can cause unexpected results. In certain situations a user may want to -define it explicitly in their environment to invoke it's effects, either -when buidling the library or an application or both. See README.NONPORTABLE. --- Ross Johnson - -The library should be more reliable under fully statically linked -scenarios. Note: we have removed the PIMAGE_TLS_CALLBACK code and -reverted to the earlier method that appears to be more reliable -across all compiler editions. -- Mark Pizzolato - -Various corrections to GNUmakefile. Although this file has been removed, -for completeness the changes have been recorded as commits to the -repository. -- Kyle Schwarz - -MinGW64-w64 defines pid_t as __int64. sched.h now reflects that. -- Kyle Schwarz - -Several tests have been fixed that were seen to fail on machines under -load. Other tests that used similar crude mechanisms to synchronise -threads (these are unit tests) had the same improvements applied: -semaphore5.c recognises that sem_destroy can legitimately return -EBUSY; mutex6*.c, mutex7*.c and mutex8*.c all replaced a single -Sleep() with a polling loop. -- Ross Johnson - - -RELEASE 2.10.0 --------------- -(2016-09-18) - -General -------- -New bug fixes in all releases since 2.8.0 have NOT been applied to the -1.x.x series. - -Some changes from 2011-02-26 onward may not be compatible with -pre Windows 2000 systems. - -Testing and verification ------------------------- -This version has been tested on SMP architecture (Intel x64 Hex Core) -by completing the included test suite, as well as the stress and bench -tests. - -Be sure to run your builds against the test suite. If you see failures -then please consider how your toolchains might be contributing to the -failure. See the README file for more detailed descriptions of the -toolchains and test systems that we have used to get the tests to pass -successfully. We recommend MinGW64 over MinGW32 for both 64 and 32 bit -GNU CC builds. MinGW64 also includes its own independent pthreads -implementation, which you may prefer to use. - -New Features ------------- -New routines: -pthread_timedjoin_np() -pthread_tryjoin_np() - - added for compatibility with Linux. -sched_getaffinity() -sched_setaffinity() -pthread_getaffinity_np() -pthread_setaffinity_np() -pthread_attr_getaffinity_np() -pthread_attr_setaffinity_np() - - added for compatibility with Linux and other libgcc-based systems. - The macros to manipulate cpu_set_t objects (the cpu affinity mask - vector) are also defined: CPU_ZERO, CPU_CLR, CPU_SET, CPU_EQUAL, - CPU_AND, CPU_OR, CPU_XOR, CPU_COUNT, CPU_ISSET. -pthread_getname_np() -pthread_setname_np() -pthread_attr_getname_np() -pthread_attr_setname_np() - - added for compatibility with other POSIX implementations. Because - some implementations use different *_setname_np() prototypes - you can define one of the following macros when building the library: - __PTW32_COMPATIBILITY_BSD (compatibility with NetBSD, FreeBSD) - __PTW32_COMPATIBILITY_TRU64 - If not defined then compatibility is with Linux and other equivalents. - We don't impose a strict limit on the length of the thread name for the - default compatibility case. Unlike Linux, no default thread name is set. - For MSVC builds, the thread name if set is made available for use by the - MSVS debugger, i.e. it should be displayed within the debugger to - identify the thread in place of/as well as a threadID. -pthread_win32_getabstime_np() - - Return the current time plus an optional offset in a platform-aware way - that is compatible with POSIX timed calls (returns the struct timespec - address which is the first argument). Intended primarily to make it - easier to write tests but may be useful for applications generally. -GNU compiler environments (MinGW32 and MinGW64) now have the option of using -autoconf to automatically configure the build. - -Builds: -New makefile targets have been added and existing targets modified or -removed. For example, targets to build and test all of the possible -configurations of both dll and static libs. - -GNU compiler builds are now explicitly using ISO C and C++ 2011 standards -compatibility. If your GNU compiler doesn't support this please consider -updating. Auto configuration is now possible via 'configure' script. The -script must be generated using autoconf - see the README file. Thanks to -Keith Marshall from the MinGW project. - -Static linking: -The autostatic functionality has been moved to dll.c, and extended so -that builds using MSVC8 and later no longer require apps to call -pthread_win32_thread_detach_np(). That is, all of the DllMain -functionality is now automatic for static linking for these builds. - -Some nmake static linking targets have been disabled: -Due to an issue with TLS behaviour, the V*-small-static* nmake targets -in Makefile have been disabled. The issue is exposed by tests/semaphore3.c -where the pthread_self() call inside the thread fails to return the -correct POSIX thread handle but returns a new "implicit" POSIX thread -handle instead. Implicit pthread handles have detached thread status, which -causes the pthread_detach() call inside the thread to return EINVAL. The -V*-static* targets appear to be not affected. The primary difference is -that the latter are generated from a single compilation unit. - -Bug Fixes ---------- -Small object file static linking now works (MinGW). The autostatic code -is required but nothing explicitly referenced this code so was getting -optimised out. -- Daniel Richard G. - -sem_getvalue() could return the errno value instead of setting errno -and returning -1. -- Ross Johnson - -Errno values were being lost if the library is statically linked -with the runtime library, meaning also that the application used a -separate runtime instance. This is still the case except a build -switch has been added that allows more robust error status to be -incorporated, i.e. allow the return code to be retrieved via -GetLastError(). -- Daniel Richard G. - -Identified the cause of significant failures around cancelation -and pthread_exit() for the GCE (GNU C++) build configuration as -coming from Mingw32. Not sure if this is general or just when -building 32 bit libraries and apps that run on 64 bit systems. -These failures do not arise with Mingw64 32 bit builds (GCC built -with multilib enabled) running on 64 bit systems. -- Daniel Richard G. and Ross Johnson - -pthread_key_delete() bug introduced in release 2.9.x caused this -routine to fail in a way that the test suite was not detecting. A -new test has been added to confirm that this routine behaves -correctly, particularly when keys with destructors are deleted -before threads exit. -- Stephane Clairet - -pthread_win32_process_attach_np() fix potential failure/security around -finding and loading of QUSEREX.DLL. -- Jason Baker - -_POSIX_THREAD_ATTR_STACKADDR is now set equal to -1 in pthread.h. As a -consequence pthread_attr_setstackaddr() now returns ENOSYS. Previously -the value was stored and could be retrieved but was otherwise unused. -pthread_attr_getstackaddr() returns ENOSYS correspondingly. -- Ross Johnson - -Fixed a potential memory leak in pthread_mutex_init(). The leak would -only occur if the mutex initialisation failed (extremely rare if ever). -- Jaeeun Choi - -Fixed sub-millisecond timeouts, which caused the library to busy wait. -- Mark Smith - -Fix a race condition and crash in MCS locks. The waiter queue management -code in __ptw32_mcs_lock_acquire was racing with the queue management code -in __ptw32_mcs_lock_release and causing a segmentation fault. -- Anurag Sharma -- Jonathan Brown (also reported this bug and provided a fix) - -RELEASE 2.9.1 -------------- -(2012-05-27) - -General -------- -New bug fixes in this release since 2.8.0 have NOT been applied to the -1.x.x series. - -This release replaces an extremely brief 2.9.0 release and adds -some last minute non-code changes were made to embed better -descriptive properties in the dlls to indicate target architecture -and build environments. - -Some changes post 2011-02-26 in CVS may not be compatible with pre -Windows 2000 systems. - -Use of other than the "C" version of the library is now discouraged. -That is, the "C++" version fails some tests and does not provide any -additional functionality. - -Testing and verification ------------------------- -This version has been tested on SMP architecture (Intel x64 Hex Core) -by completing the included test suite, stress and bench tests. - -New Features ------------- -DLL properties now properly includes the target architecture, i.e. -right-click on the file pthreadVC2.dll in explorer and choose the Detail -tab will show the compiler and architecture in the description field, e.g. -"MS C x64" or "MS C x86". -- Ross Johnson - -(MSC and GNU builds) The statically linked library now automatically -initialises and cleans up on program start/exit, i.e. statically linked -applications need not call the routines pthread_win32_process_attach_np() -and pthread_win32_process_detach_np() explicitly. The per-thread routine -pthread_win32_thread_detach_np() is also called at program exit to cleanup -POSIX resources acquired by the primary Windows native thread, if I (RJ) -understand the process correctly. Other Windows native threads that call -POSIX API routines may need to call the thread detach routine on thread -exit if the application depends on reclaimed POSIX resources or running -POSIX TSD (TLS) destructors. -See README.NONPORTABLE for descriptions of these routines. -- Ramiro Polla - -Robust mutexes are implemented within the PROCESS_PRIVATE scope. NOTE that -pthread_mutex_* functions may return different error codes for robust -mutexes than they otherwise do in normal usage, e.g. pthread_mutex_unlock -is required to check ownership for all mutex types when the mutex is -robust, whereas this does not occur for the "normal" non-robust mutex type. -- Ross Johnson - -pthread_getunique_np is implemented for source level compatibility -with some other implementations. This routine returns a 64 bit -sequence number that is uniquely associated with a thread. It can be -used by applications to order or hash POSIX thread handles. -- Ross Johnson - -Bug fixes ---------- -Many more changes for 64 bit systems. -- Kai Tietz - -Various modifications and fixes to build and test for WinCE. -- Marcel Ruff, Sinan Kaya - -Fix pthread_cond_destroy() - should not be a cancellation point. Other -minor build problems fixed. -- Romano Paolo Tenca - -Remove potential deadlock condition from pthread_cond_destroy(). -- Eric Berge - -Various modifications to build and test for Win64. -- Kip Streithorst - -Various fixes to the QueueUserAPCEx async cancellation helper DLL -(this is a separate download) and pthreads code cleanups. -- Sebastian Gottschalk - -Removed potential NULL pointer reference. -- Robert Kindred - -Removed the requirement that applications restrict the number of threads -calling pthread_barrier_wait to just the barrier count. Also reduced the -contention between barrier_wait and barrier_destroy. This change will have -slowed barriers down slightly but halves the number of semaphores consumed -per barrier to one. -- Ross Johnson - -Fixed a handle leak in sched_[gs]etscheduler. -- Mark Pizzolato - -Removed all of the POSIX re-entrant function compatibility macros from pthread.h. -Some were simply not semanticly correct. -- Igor Lubashev - -Threads no longer attempt to pass uncaught exceptions out of thread scope (C++ -and SEH builds only). Uncaught exceptions now cause the thread to exit with -the return code PTHREAD_CANCELED. -- Ross Johnson - -Lots of casting fixes particularly for x64, Interlocked fixes and reworking -for x64. -- Daniel Richard G., John Kamp - -Other changes -------------- -Dependence on the winsock library is now discretionary via -#define RETAIN_WSALASTERROR in config.h. It is undefined by default unless -WINCE is defined (because RJ is unsure of the dependency there). -- Ramiro Polla - -Several static POSIX mutexes used for internal management were replaced by -MCS queue-based locks to reduce resource consumption, in particular use of Win32 -objects. -- Ross Johnson - -For security, the QuserEx.dll if used must now be installed in the Windows System -folder. -- Ross Johnson - -New tests ---------- -robust[1-5].c - Robust mutexes -sequence1.c - per-thread unique sequence numbers - -Modified tests and benchtests ------------------------------ -All mutex*.c tests wherever appropriate have been modified to also test -robust mutexes under the same conditions. -Added robust mutex benchtests to benchtest*.c wherever appropriate. - - -RELEASE 2.8.0 -------------- -(2006-12-22) - -General -------- -New bug fixes in this release since 2.7.0 have not been applied to the -version 1.x.x series. It is probably time to drop version 1. - -Testing and verification ------------------------- -This release has not yet been tested on SMP architechtures. All tests pass -on a uni-processor system. - -Bug fixes ---------- -Sem_destroy could return EBUSY even though no threads were waiting on the -semaphore. Other races around invalidating semaphore structs (internally) -have been removed as well. - -New tests ---------- -semaphore5.c - tests the bug fix referred to above. - - -RELEASE 2.7.0 -------------- -(2005-06-04) - -General -------- -All new features in this release have been back-ported in release 1.11.0, -including the incorporation of MCS locks in pthread_once, however, versions -1 and 2 remain incompatible even though they are now identical in -performance and functionality. - -Testing and verification ------------------------- -This release has been tested (passed the test suite) on both uni-processor -and multi-processor systems. -- Tim Theisen - -Bug fixes ---------- -Pthread_once has been re-implemented to remove priority boosting and other -complexity to improve robustness. Races for Win32 handles that are not -recycle-unique have been removed. The general form of pthread_once is now -the same as that suggested earlier by Alexander Terekhov, but instead of the -'named mutex', a queue-based lock has been implemented which has the required -properties of dynamic self initialisation and destruction. This lock is also -efficient. The ABI is unaffected in as much as the size of pthread_once_t has -not changed and PTHREAD_ONCE_INIT has not changed, however, applications that -peek inside pthread_once_t, which is supposed to be opaque, will break. -- Vladimir Kliatchko - -New features ------------- -* Support for Mingw cross development tools added to GNUmakefile. -Mingw cross tools allow building the libraries on Linux. -- Mikael Magnusson - - -RELEASE 2.6.0 -------------- -(2005-05-19) - -General -------- -All of the bug fixes and new features in this release have been -back-ported in release 1.10.0. - -Testing and verification ------------------------- -This release has been tested (passed the test suite) on both uni-processor -and multi-processor systems. Thanks to Tim Theisen at TomoTherapy for -exhaustively running the MP tests and for providing crutial observations -and data when faults are detected. - -Bugs fixed ----------- - -* pthread_detach() now reclaims remaining thread resources if called after -the target thread has terminated. Previously, this routine did nothing in -this case. - -New tests ---------- - -* detach1.c - tests that pthread_detach properly invalidates the target -thread, which indicates that the thread resources have been reclaimed. - - -RELEASE 2.5.0 -------------- -(2005-05-09) - -General -------- - -The package now includes a reference documentation set consisting of -HTML formatted Unix-style manual pages that have been edited for -consistency with Pthreads-w32. The set can also be read online at: -https://sourceforge.net/projects/pthreads4w/manual/index.html - -Thanks again to Tim Theisen for running the test suite pre-release -on an MP system. - -All of the bug fixes and new features in this release have been -back-ported in release 1.9.0. - -Bugs fixed ----------- - -* Thread Specific Data (TSD) key management has been ammended to -eliminate a source of (what was effectively) resource leakage (a HANDLE -plus memory for each key destruct routine/thread association). This was -not a true leak because these resources were eventually reclaimed when -pthread_key_delete was run AND each thread referencing the key had exited. -The problem was that these two conditions are often not met until very -late, and often not until the process is about to exit. - -The ammended implementation avoids the need for the problematic HANDLE -and reclaims the memory as soon as either the key is deleted OR the -thread exits, whichever is first. - -Thanks to Richard Hughes at Aculab for identifying and locating the leak. - -* TSD key destructors are now processed up to PTHREAD_DESTRUCTOR_ITERATIONS -times instead of just once. PTHREAD_DESTRUCTOR_ITERATIONS has been -defined in pthread.h for some time but not used. - -* Fix a semaphore accounting race between sem_post/sem_post_multiple -and sem_wait cancellation. This is the same issue as with -sem_timedwait that was fixed in the last release. - -* sem_init, sem_post, and sem_post_multiple now check that the -semaphore count never exceeds _POSIX_SEM_VALUE_MAX. - -* Although sigwait() is nothing more than a no-op, it should at least -be a cancellation point to be consistent with the standard. - -New tests ---------- - -* stress1.c - attempts to expose problems in condition variable -and semaphore timed wait logic. This test was inspired by Stephan -Mueller's sample test code used to identify the sem_timedwait bug -from the last release. It's not a part of the regular test suite -because it can take awhile to run. To run it: -nmake clean VC-stress - -* tsd2.c - tests that key destructors are re-run if the tsd key value is -not NULL after the destructor routine has run. Also tests that -pthread_setspecific() and pthread_getspecific() are callable from -destructors. - - -RELEASE 2.4.0 -------------- -(2005-04-26) - -General -------- - -There is now no plan to release a version 3.0.0 to fix problems in -pthread_once(). Other possible implementations of pthread_once -will still be investigated for a possible future release in an attempt -to reduce the current implementation's complexity. - -All of the bug fixes and new features in this release have been -back-ported for release 1.8.0. - -Bugs fixed ----------- - -* Fixed pthread_once race (failures on an MP system). Thanks to -Tim Theisen for running exhaustive pre-release testing on his MP system -using a range of compilers: - VC++ 6 - VC++ 7.1 - Intel C++ version 8.0 -All tests passed. -Some minor speed improvements were also done. - -* Fix integer overrun error in pthread_mutex_timedlock() - missed when -sem_timedwait() was fixed in release 2.2.0. This routine no longer returns -ENOTSUP when NEED_SEM is defined - it is supported (NEED_SEM is only -required for WinCE versions prior to 3.0). - -* Fix timeout bug in sem_timedwait(). -- Thanks to Stephan Mueller for reporting, providing diagnostic output -and test code. - -* Fix several problems in the NEED_SEM conditionally included code. -NEED_SEM included code is provided for systems that don't implement W32 -semaphores, such as WinCE prior to version 3.0. An alternate implementation -of POSIX semaphores is built using W32 events for these systems when -NEED_SEM is defined. This code has been completely rewritten in this -release to reuse most of the default POSIX semaphore code, and particularly, -to implement all of the sem_* routines supported by Pthreads4w. Tim -Theisen also run the test suite over the NEED_SEM code on his MP system. All -tests passed. - -* The library now builds without errors for the Borland Builder 5.5 compiler. - -New features ------------- - -* pthread_mutex_timedlock() and all sem_* routines provided by -Pthreads4w are now implemented for WinCE versions prior to 3.0. Those -versions did not implement W32 semaphores. Define NEED_SEM in config.h when -building the library for these systems. - -Known issues in this release ----------------------------- - -* pthread_once is too complicated - but it works as far as testing can -determine.. - -* The Borland version of the dll fails some of the tests with a memory read -exception. The cause is not yet known but a compiler bug has not been ruled -out. - - -RELEASE 2.3.0 -------------- -(2005-04-12) - -General -------- - -Release 1.7.0 is a backport of features and bug fixes new in -this release. See earlier notes under Release 2.0.0/General. - -Bugs fixed ----------- - -* Fixed pthread_once potential for post once_routine cancellation -hanging due to starvation. See comments in pthread_once.c. -Momentary priority boosting is used to ensure that, after a -once_routine is cancelled, the thread that will run the -once_routine is not starved by higher priority waiting threads at -critical times. Priority boosting occurs only AFTER a once_routine -cancellation, and is applied only to that once_control. The -once_routine is run at the thread's normal base priority. - -New tests ---------- - -* once4.c: Aggressively tests pthread_once() under realtime -conditions using threads with varying priorities. Windows' -random priority boosting does not occur for threads with realtime -priority levels. - - -RELEASE 2.2.0 -------------- -(2005-04-04) - -General -------- - -* Added makefile targets to build static link versions of the library. -Both MinGW and MSVC. Please note that this does not imply any change -to the LGPL licensing, which still imposes psecific conditions on -distributing software that has been statically linked with this library. - -* There is a known bug in pthread_once(). Cancellation of the init_routine -exposes a potential starvation (i.e. deadlock) problem if a waiting thread -has a higher priority than the initting thread. This problem will be fixed -in version 3.0.0 of the library. - -Bugs fixed ----------- - -* Fix integer overrun error in sem_timedwait(). -Kevin Lussier - -* Fix preprocessor directives for static linking. -Dimitar Panayotov - - -RELEASE 2.1.0 -------------- -(2005-03-16) - -Bugs fixed ----------- - -* Reverse change to pthread_setcancelstate() in 2.0.0. - - -RELEASE 2.0.0 -------------- -(2005-03-16) - -General -------- - -This release represents an ABI change and the DLL version naming has -incremented from 1 to 2, e.g. pthreadVC2.dll. - -Version 1.4.0 back-ports the new functionality included in this -release. Please distribute DLLs built from that version with updates -to applications built on pthreads-win32 version 1.x.x. - -The package naming has changed, replacing the snapshot date with -the version number + descriptive information. E.g. this -release is "pthreads-w32-2-0-0-release". - -Bugs fixed ----------- - -* pthread_setcancelstate() no longer checks for a pending -async cancel event if the library is using alertable async -cancel. See the README file (Prerequisites section) for info -on adding alertable async cancellation. - -New features ------------- - -* pthread_once() now supports init_routine cancellability. - -New tests ---------- - -* Agressively test pthread_once() init_routine cancellability. - - -SNAPSHOT 2005-03-08 -------------------- -Version 1.3.0 - -Bug reports (fixed) -------------------- - -* Implicitly created threads leave Win32 handles behind after exiting. -- Dmitrii Semii - -* pthread_once() starvation problem. -- Gottlob Frege - -New tests ---------- - -* More intense testing of pthread_once(). - - -SNAPSHOT 2005-01-25 -------------------- -Version 1.2.0 - -Bug fixes ---------- - -* Attempted acquisition of a recursive mutex could cause waiting threads -to not be woken when the mutex was released. -- Ralf Kubis - -* Various package omissions have been fixed. - - -SNAPSHOT 2005-01-03 -------------------- -Version 1.1.0 - -Bug fixes ---------- - -* Unlocking recursive or errorcheck mutexes would sometimes -unexpectedly return an EPERM error (bug introduced in -snapshot-2004-11-03). -- Konstantin Voronkov - - -SNAPSHOT 2004-11-22 -------------------- -Version 1.0.0 - -This snapshot primarily fixes the condvar bug introduced in -snapshot-2004-11-03. DLL versioning has also been included to allow -applications to runtime check the Microsoft compatible DLL version -information, and to extend the DLL naming system for ABI and major -(non-backward compatible) API changes. See the README file for details. - -Bug fixes ---------- - -* Condition variables no longer deadlock (bug introduced in -snapshot-2004-11-03). -- Alexander Kotliarov and Nicolas at saintmac - -* DLL naming extended to avoid 'DLL hell' in the future, and to -accommodate the ABI change introduced in snapshot-2004-11-03. Snapshot -2004-11-03 will be removed from FTP sites. - -New features ------------- - -* A Microsoft-style version resource has been added to the DLL for -applications that wish to check DLL compatibility at runtime. - -* Pthreads4w DLL naming has been extended to allow incompatible DLL -versions to co-exist in the same filesystem. See the README file for details, -but briefly: while the version information inside the DLL will change with -each release from now on, the DLL version names will only change if the new -DLL is not backward compatible with older applications. - -The versioning scheme has been borrowed from GNU Libtool, and the DLL -naming scheme is from Cygwin. Provided the Libtool-style numbering rules are -honoured, the Cygwin DLL naming scheme automatcally ensures that DLL name -changes are minimal and that applications will not load an incompatible -Pthreads4w DLL. - -Those who use the pre-built DLLs will find that the DLL/LIB names have a new -suffix (1) in this snapshot. E.g. pthreadVC1.dll etc. - -* The POSIX thread ID reuse uniqueness feature introduced in the last snapshot -has been kept as default, but the behaviour can now be controlled when the DLL -is built to effectively switch it off. This makes the library much more -sensitive to applications that assume that POSIX thread IDs are unique, i.e. -are not strictly compliant with POSIX. See the __PTW32_THREAD_ID_REUSE_INCREMENT -macro comments in config.h for details. - -Other changes -------------- -Certain POSIX macros have changed. - -These changes are intended to conform to the Single Unix Specification version 3, -which states that, if set to 0 (zero) or not defined, then applications may use -sysconf() to determine their values at runtime. Pthreads4w does not -implement sysconf(). - -The following macros are no longer undefined, but defined and set to -1 -(not implemented): - - _POSIX_THREAD_ATTR_STACKADDR - _POSIX_THREAD_PRIO_INHERIT - _POSIX_THREAD_PRIO_PROTECT - _POSIX_THREAD_PROCESS_SHARED - -The following macros are defined and set to 200112L (implemented): - - _POSIX_THREADS - _POSIX_THREAD_SAFE_FUNCTIONS - _POSIX_THREAD_ATTR_STACKSIZE - _POSIX_THREAD_PRIORITY_SCHEDULING - _POSIX_SEMAPHORES - _POSIX_READER_WRITER_LOCKS - _POSIX_SPIN_LOCKS - _POSIX_BARRIERS - -The following macros are defined and set to appropriate values: - - _POSIX_THREAD_THREADS_MAX - _POSIX_SEM_VALUE_MAX - _POSIX_SEM_NSEMS_MAX - PTHREAD_DESTRUCTOR_ITERATIONS - PTHREAD_KEYS_MAX - PTHREAD_STACK_MIN - PTHREAD_THREADS_MAX - - -SNAPSHOT 2004-11-03 -------------------- - -DLLs produced from this snapshot cannot be used with older applications without -recompiling the application, due to a change to pthread_t to provide unique POSIX -thread IDs. - -Although this snapshot passes the extended test suite, many of the changes are -fairly major, and some applications may show different behaviour than previously, -so adopt with care. Hopefully, any changed behaviour will be due to the library -being better at it's job, not worse. - -Bug fixes ---------- - -* pthread_create() no longer accepts NULL as the thread reference arg. -A segfault (memory access fault) will result, and no thread will be -created. - -* pthread_barrier_wait() no longer acts as a cancellation point. - -* Fix potential race condition in pthread_once() -- Tristan Savatier - -* Changes to pthread_cond_destroy() exposed some coding weaknesses in several -test suite mini-apps because pthread_cond_destroy() now returns EBUSY if the CV -is still in use. - -New features ------------- - -* Added for compatibility: -PTHREAD_RECURSIVE_MUTEX_INITIALIZER, -PTHREAD_ERRORCHECK_MUTEX_INITIALIZER, -PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP, -PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP - -* Initial support for Digital Mars compiler -- Anuj Goyal - -* Faster Mutexes. These have been been rewritten following a model provided by -Alexander Terekhov that reduces kernel space checks, and eliminates some additional -critical sections used to manage a race between timedlock expiration and unlock. -Please be aware that the new mutexes do not enforce strict absolute FIFO scheduling -of mutexes, however any out-of-order lock acquisition should be very rare. - -* Faster semaphores. Following a similar model to mutexes above, these have been -rewritten to use preliminary users space checks. - -* sem_getvalue() now returns the number of waiters. - -* The POSIX thread ID now has much stronger uniqueness characteristics. The library -garrantees not to reuse the same thread ID for at least 2^(wordsize) thread -destruction/creation cycles. - -New tests ---------- - -* semaphore4.c: Tests cancellation of the new sem_wait(). - -* semaphore4t.c: Likewise for sem_timedwait(). - -* rwlock8.c: Tests and times the slow execution paths of r/w locks, and the CVs, -mutexes, and semaphores that they're built on. - - -SNAPSHOT 2004-05-16 -------------------- - -Attempt to add Watcom to the list of compilers that can build the library. -This failed in the end due to it's non-thread-aware errno. The library -builds but the test suite fails. See README.Watcom for more details. - -Bug fixes ---------- -* Bug and memory leak in sem_init() -- Alex Blanco - -* __ptw32_getprocessors() now returns CPU count of 1 for WinCE. -- James Ewing - -* pthread_cond_wait() could be canceled at a point where it should not -be cancelable. Fixed. -- Alexander Terekhov - -* sem_timedwait() had an incorrect timeout calculation. -- Philippe Di Cristo - -* Fix a memory leak left behind after threads are destroyed. -- P. van Bruggen - -New features ------------- -* Ported to AMD64. -- Makoto Kato - -* True pre-emptive asynchronous cancellation of threads. This is optional -and requires that Panagiotis E. Hadjidoukas's QueueUserAPCEx package be -installed. This package is included in the pthreads-win32 self-unpacking -Zip archive starting from this snapshot. See the README.txt file inside -the package for installation details. - -Note: If you don't use async cancellation in your application, or don't need -to cancel threads that are blocked on system resources such as network I/O, -then the default non-preemptive async cancellation is probably good enough. -However, pthreads-win32 auto-detects the availability of these components -at run-time, so you don't need to rebuild the library from source if you -change your mind later. - -All of the advice available in books and elsewhere on the undesirability -of using async cancellation in any application still stands, but this -feature is a welcome addition with respect to the library's conformance to -the POSIX standard. - -SNAPSHOT 2003-09-18 -------------------- - -Cleanup of thread priority management. In particular, setting of thread -priority now attempts to map invalid Win32 values within the range returned -by sched_get_priority_min/max() to useful values. See README.NONPORTABLE -under "Thread priority". - -Bug fixes ---------- -* pthread_getschedparam() now returns the priority given by the most recent -call to pthread_setschedparam() or established by pthread_create(), as -required by the standard. Previously, pthread_getschedparam() incorrectly -returned the running thread priority at the time of the call, which may have -been adjusted or temporarily promoted/demoted. - -* sched_get_priority_min() and sched_get_priority_max() now return -1 on error -and set errno. Previously, they incorrectly returned the error value directly. - - -SNAPSHOT 2003-09-04 -------------------- - -Bug fixes ---------- -* __ptw32_cancelableWait() now allows cancellation of waiting implicit POSIX -threads. - -New test --------- -* cancel8.c tests cancellation of Win32 threads waiting at a POSIX cancellation -point. - - -SNAPSHOT 2003-09-03 -------------------- - -Bug fixes ---------- -* pthread_self() would free the newly created implicit POSIX thread handle if -DuplicateHandle failed instead of recycle it (very unlikely). - -* pthread_exit() was neither freeing nor recycling the POSIX thread struct -for implicit POSIX threads. - -New feature - cancellation of/by Win32 (non-POSIX) threads ---------------------------------------------------------- -Since John Bossom's original implementation, the library has allowed non-POSIX -initialised threads (Win32 threads) to call Pthreads4w routines and -therefore interact with POSIX threads. This is done by creating an on-the-fly -POSIX thread ID for the Win32 thread that, once created, allows fully -reciprical interaction. This did not extend to thread cancellation (async or -deferred). Now it does. - -Any thread can be canceled by any other thread (Win32 or POSIX) if the former -thread's POSIX pthread_t value is known. It's TSD destructors and POSIX -cleanup handlers will be run before the thread exits with an exit code of -PTHREAD_CANCELED (retrieved with GetExitCodeThread()). - -This allows a Win32 thread to, for example, call POSIX CV routines in the same way -that POSIX threads would/should, with pthread_cond_wait() cancelability and -cleanup handlers (pthread_cond_wait() is a POSIX cancellation point). - -By adding cancellation, Win32 threads should now be able to call all POSIX -threads routines that make sense including semaphores, mutexes, condition -variables, read/write locks, barriers, spinlocks, tsd, cleanup push/pop, -cancellation, pthread_exit, scheduling, etc. - -Note that these on-the-fly 'implicit' POSIX thread IDs are initialised as detached -(not joinable) with deferred cancellation type. The POSIX thread ID will be created -automatically by any POSIX routines that need a POSIX handle (unless the routine -needs a pthread_t as a parameter of course). A Win32 thread can discover it's own -POSIX thread ID by calling pthread_self(), which will create the handle if -necessary and return the pthread_t value. - -New tests ---------- -Test the above new feature. - - -SNAPSHOT 2003-08-19 -------------------- - -This snapshot fixes some accidental corruption to new test case sources. -There are no changes to the library source code. - - -SNAPSHOT 2003-08-15 -------------------- - -Bug fixes ---------- - -* pthread.dsp now uses correct compile flags (/MD). -- Viv - -* pthread_win32_process_detach_np() fixed memory leak. -- Steven Reddie - -* pthread_mutex_destroy() fixed incorrect return code. -- Nicolas Barry - -* pthread_spin_destroy() fixed memory leak. -- Piet van Bruggen - -* Various changes to tighten arg checking, and to work with later versions of -MinGW32 and MsysDTK. - -* pthread_getschedparam() etc, fixed dangerous thread validity checking. -- Nicolas Barry - -* POSIX thread handles are now reused and their memory is not freed on thread exit. -This allows for stronger thread validity checking. - -New standard routine --------------------- - -* pthread_kill() added to provide thread validity checking to applications. -It does not accept any non zero values for the signal arg. - -New test cases --------------- - -* New test cases to confirm validity checking, pthread_kill(), and thread reuse. - - -SNAPSHOT 2003-05-10 -------------------- - -Bug fixes ---------- - -* pthread_mutex_trylock() now returns correct error values. -pthread_mutex_destroy() will no longer destroy a recursively locked mutex. -pthread_mutex_lock() is no longer inadvertantly behaving as a cancellation point. -- Thomas Pfaff - -* pthread_mutex_timedlock() no longer occasionally sets incorrect mutex -ownership, causing deadlocks in some applications. -- Robert Strycek and Alexander Terekhov - - -SNAPSHOT 2002-11-04 -------------------- - -Bug fixes ---------- - -* sem_getvalue() now returns the correct value under Win NT and WinCE. -- Rob Fanner - -* sem_timedwait() now uses tighter checks for unreasonable -abstime values - that would result in unexpected timeout values. - -* __ptw32_cond_wait_cleanup() no longer mysteriously consumes -CV signals but may produce more spurious wakeups. It is believed -that the sem_timedwait() call is consuming a CV signal that it -shouldn't. -- Alexander Terekhov - -* Fixed a memory leak in __ptw32_threadDestroy() for implicit threads. - -* Fixed potential for deadlock in pthread_cond_destroy(). -A deadlock could occur for statically declared CVs (PTHREAD_COND_INITIALIZER), -when one thread is attempting to destroy the condition variable while another -is attempting to dynamically initialize it. -- Michael Johnson - - -SNAPSHOT 2002-03-02 -------------------- - -Cleanup code default style. (IMPORTANT) ----------------------------------------------------------------------- -Previously, if not defined, the cleanup style was determined automatically -from the compiler/language, and one of the following was defined accordingly: - - __PTW32_CLEANUP_SEH MSVC only - __PTW32_CLEANUP_CXX C++, including MSVC++, GNU G++ - __PTW32_CLEANUP_C C, including GNU GCC, not MSVC - -These defines determine the style of cleanup (see pthread.h) and, -most importantly, the way that cancellation and thread exit (via -pthread_exit) is performed (see the routine __ptw32_throw() in private.c). - -In short, the exceptions versions of the library throw an exception -when a thread is canceled or exits (via pthread_exit()), which is -caught by a handler in the thread startup routine, so that the -the correct stack unwinding occurs regardless of where the thread -is when it's canceled or exits via pthread_exit(). - -In this and future snapshots, unless the build explicitly defines (e.g. -via a compiler option) __PTW32_CLEANUP_SEH, __PTW32_CLEANUP_CXX, or __PTW32_CLEANUP_C, then -the build NOW always defaults to __PTW32_CLEANUP_C style cleanup. This style -uses setjmp/longjmp in the cancellation and pthread_exit implementations, -and therefore won't do stack unwinding even when linked to applications -that have it (e.g. C++ apps). This is for consistency with most -current commercial Unix POSIX threads implementations. Compaq's TRU64 -may be an exception (no pun intended) and possible future trend. - -Although it was not clearly documented before, it is still necessary to -build your application using the same __PTW32_CLEANUP_* define as was -used for the version of the library that you link with, so that the -correct parts of pthread.h are included. That is, the possible -defines require the following library versions: - - __PTW32_CLEANUP_SEH pthreadVSE.dll - __PTW32_CLEANUP_CXX pthreadVCE.dll or pthreadGCE.dll - __PTW32_CLEANUP_C pthreadVC.dll or pthreadGC.dll - -E.g. regardless of whether your app is C or C++, if you link with -pthreadVC.lib or libpthreadGC.a, then you must define __PTW32_CLEANUP_C. - - -THE POINT OF ALL THIS IS: if you have not been defining one of these -explicitly, then the defaults as described at the top of this -section were being used. - -THIS NOW CHANGES, as has been explained above, but to try to make this -clearer here's an example: - -If you were building your application with MSVC++ i.e. using C++ -exceptions and not explicitly defining one of __PTW32_CLEANUP_*, then -__PTW32_CLEANUP_C++ was automatically defined for you in pthread.h. -You should have been linking with pthreadVCE.dll, which does -stack unwinding. - -If you now build your application as you had before, pthread.h will now -automatically set __PTW32_CLEANUP_C as the default style, and you will need to -link with pthreadVC.dll. Stack unwinding will now NOT occur when a thread -is canceled, or the thread calls pthread_exit(). - -Your application will now most likely behave differently to previous -versions, and in non-obvious ways. Most likely is that locally -instantiated objects may not be destroyed or cleaned up after a thread -is canceled. - -If you want the same behaviour as before, then you must now define -__PTW32_CLEANUP_C++ explicitly using a compiler option and link with -pthreadVCE.dll as you did before. - - -WHY ARE WE MAKING THE DEFAULT STYLE LESS EXCEPTION-FRIENDLY? -Because no commercial Unix POSIX threads implementation allows you to -choose to have stack unwinding. Therefore, providing it in pthread-win32 -as a default is dangerous. We still provide the choice but unless -you consciously choose to do otherwise, your pthreads applications will -now run or crash in similar ways irrespective of the threads platform -you use. Or at least this is the hope. - - -WHY NOT REMOVE THE EXCEPTIONS VERSIONS OF THE LIBRARY ALTOGETHER? -There are a few reasons: -- because there are well respected POSIX threads people who believe - that POSIX threads implementations should be exceptions aware and - do the expected thing in that context. (There are equally respected - people who believe it should not be easily accessible, if it's there - at all, for unconditional conformity to other implementations.) -- because Pthreads4w is one of the few implementations that has - the choice, perhaps the only freely available one, and so offers - a laboratory to people who may want to explore the effects; -- although the code will always be around somewhere for anyone who - wants it, once it's removed from the current version it will not be - nearly as visible to people who may have a use for it. - - -Source module splitting ------------------------ -In order to enable smaller image sizes to be generated -for applications that link statically with the library, -most routines have been separated out into individual -source code files. - -This is being done in such a way as to be backward compatible. -The old source files are reused to congregate the individual -routine files into larger translation units (via a bunch of -# includes) so that the compiler can still optimise wherever -possible, e.g. through inlining, which can only be done -within the same translation unit. - -It is also possible to build the entire library by compiling -the single file named "pthread.c", which just #includes all -the secondary congregation source files. The compiler -may be able to use this to do more inlining of routines. - -Although the GNU compiler is able to produce libraries with -the necessary separation (the -ffunction-segments switch), -AFAIK, the MSVC and other compilers don't have this feature. - -Finally, since I use makefiles and command-line compilation, -I don't know what havoc this reorganisation may wreak amongst -IDE project file users. You should be able to continue -using your existing project files without modification. - - -New non-portable functions --------------------------- -pthread_num_processors_np(): - Returns the number of processors in the system that are - available to the process, as determined from the processor - affinity mask. - -pthread_timechange_handler_np(): - To improve tolerance against operator or time service initiated - system clock changes. - - This routine can be called by an application when it - receives a WM_TIMECHANGE message from the system. At present - it broadcasts all condition variables so that waiting threads - can wake up and re-evaluate their conditions and restart - their timed waits if required. - - Suggested by Alexander Terekhov - - -Platform dependence -------------------- -As Win95 doesn't provide one, the library now contains -it's own InterlockedCompareExchange() routine, which is used -whenever Windows doesn't provide it. InterlockedCompareExchange() -is used to implement spinlocks and barriers, and also in mutexes. -This routine relies on the CMPXCHG machine instruction which -is not available on i386 CPUs. This library (from snapshot -20010712 onwards) is therefore no longer supported on i386 -processor platforms. - - -New standard routines ---------------------- -For source code portability only - rwlocks cannot be process shared yet. - - pthread_rwlockattr_init() - pthread_rwlockattr_destroy() - pthread_rwlockattr_setpshared() - pthread_rwlockattr_getpshared() - -As defined in the new POSIX standard, and the Single Unix Spec version 3: - - sem_timedwait() - pthread_mutex_timedlock() - Alexander Terekhov and Thomas Pfaff - pthread_rwlock_timedrdlock() - adapted from pthread_rwlock_rdlock() - pthread_rwlock_timedwrlock() - adapted from pthread_rwlock_wrlock() - - -pthread.h no longer includes windows.h --------------------------------------- -[Not yet for G++] - -This was done to prevent conflicts. - -HANDLE, DWORD, and NULL are temporarily defined within pthread.h if -they are not already. - - -pthread.h, sched.h and semaphore.h now use dllexport/dllimport --------------------------------------------------------------- -Not only to avoid the need for the pthread.def file, but to -improve performance. Apparently, declaring functions with dllimport -generates a direct call to the function and avoids the overhead -of a stub function call. - -Bug fixes ---------- -* Fixed potential NULL pointer dereferences in pthread_mutexattr_init, -pthread_mutexattr_getpshared, pthread_barrierattr_init, -pthread_barrierattr_getpshared, and pthread_condattr_getpshared. -- Scott McCaskill - -* Removed potential race condition in pthread_mutex_trylock and -pthread_mutex_lock; -- Alexander Terekhov - -* The behaviour of pthread_mutex_trylock in relation to -recursive mutexes was inconsistent with commercial implementations. -Trylock would return EBUSY if the lock was owned already by the -calling thread regardless of mutex type. Trylock now increments the -recursion count and returns 0 for RECURSIVE mutexes, and will -return EDEADLK rather than EBUSY for ERRORCHECK mutexes. This is -consistent with Solaris. -- Thomas Pfaff - -* Found a fix for the library and workaround for applications for -the known bug #2, i.e. where __PTW32_CLEANUP_CXX or __PTW32_CLEANUP_SEH is defined. -See the "Known Bugs in this snapshot" section below. - -This could be made transparent to applications by replacing the macros that -define the current C++ and SEH versions of pthread_cleanup_push/pop -with the C version, but AFAIK cleanup handlers would not then run in the -correct sequence with destructors and exception cleanup handlers when -an exception occurs. - -* cancellation once started in a thread cannot now be inadvertantly -double canceled. That is, once a thread begins it's cancellation run, -cancellation is disabled and a subsequent cancel request will -return an error (ESRCH). - -* errno: An incorrect compiler directive caused a local version -of errno to be used instead of the Win32 errno. Both instances are -thread-safe but applications checking errno after a Pthreads4w -call would be wrong. Fixing this also fixed a bad compiler -option in the testsuite (/MT should have been /MD) which is -needed to link with the correct library MSVCRT.LIB. - - -SNAPSHOT 2001-07-12 -------------------- - -To be added - - -SNAPSHOT 2001-07-03 -------------------- - -To be added - - -SNAPSHOT 2000-08-13 -------------------- - -New: -- Renamed DLL and LIB files: - pthreadVSE.dll (MS VC++/Structured EH) - pthreadVSE.lib - pthreadVCE.dll (MS VC++/C++ EH) - pthreadVCE.lib - pthreadGCE.dll (GNU G++/C++ EH) - libpthreadw32.a - - Both your application and the pthread dll should use the - same exception handling scheme. - -Bugs fixed: -- MSVC++ C++ exception handling. - -Some new tests have been added. - - -SNAPSHOT 2000-08-10 -------------------- - -New: -- asynchronous cancellation on X86 (Jason Nye) -- Makefile compatible with MS nmake to replace - buildlib.bat -- GNUmakefile for Mingw32 -- tests/Makefile for MS nmake replaces runall.bat -- tests/GNUmakefile for Mingw32 - -Bugs fixed: -- kernel32 load/free problem -- attempt to hide internel exceptions from application - exception handlers (__try/__except and try/catch blocks) -- Win32 thread handle leakage bug - (David Baggett/Paul Redondo/Eyal Lebedinsky) - -Some new tests have been added. - - -SNAPSHOT 1999-11-02 -------------------- - -Bugs fixed: -- ctime_r macro had an incorrect argument (Erik Hensema), -- threads were not being created - PTHREAD_CANCEL_DEFERRED. This should have - had little effect as deferred is the only - supported type. (Ross Johnson). - -Some compatibility improvements added, eg. -- pthread_setcancelstate accepts NULL pointer - for the previous value argument. Ditto for - pthread_setcanceltype. This is compatible - with Solaris but should not affect - standard applications (Erik Hensema) - -Some new tests have been added. - - -SNAPSHOT 1999-10-17 -------------------- - -Bug fix - cancellation of threads waiting on condition variables -now works properly (Lorin Hochstein and Peter Slacik) - - -SNAPSHOT 1999-08-12 -------------------- - -Fixed exception stack cleanup if calling pthread_exit() -- (Lorin Hochstein and John Bossom). - -Fixed bugs in condition variables - (Peter Slacik): - - additional contention checks - - properly adjust number of waiting threads after timed - condvar timeout. - - -SNAPSHOT 1999-05-30 -------------------- - -Some minor bugs have been fixed. See the ChangeLog file for details. - -Some more POSIX 1b functions are now included but ony return an -error (ENOSYS) if called. They are: - - sem_open - sem_close - sem_unlink - sem_getvalue - - -SNAPSHOT 1999-04-07 -------------------- - -Some POSIX 1b functions which were internally supported are now -available as exported functions: - - sem_init - sem_destroy - sem_wait - sem_trywait - sem_post - sched_yield - sched_get_priority_min - sched_get_priority_max - -Some minor bugs have been fixed. See the ChangeLog file for details. - - -SNAPSHOT 1999-03-16 -------------------- - -Initial release. - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/NOTICE b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/NOTICE deleted file mode 100644 index d73542d..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/NOTICE +++ /dev/null @@ -1,29 +0,0 @@ -PThreads4W - POSIX threads for Windows -Copyright 1998 John E. Bossom -Copyright 1999-2018, Pthreads4w contributors - -This product includes software developed through the colaborative -effort of several individuals, each of whom is listed in the file -CONTRIBUTORS included with this software. - -The following files are not covered under the Copyrights -listed above: - - [1] tests/rwlock7.c - [1] tests/rwlock7_1.c - [1] tests/rwlock8.c - [1] tests/rwlock8_1.c - [2] tests/threestage.c - -[1] The file tests/rwlock7.c and those similarly named are derived from -code written by Dave Butenhof for his book 'Programming With POSIX(R) -Threads'. The original code was obtained by free download from his -website http://home.earthlink.net/~anneart/family/Threads/source.html - -[2] The file tests/threestage.c is taken directly from examples in the -book "Windows System Programming, Edition 4" by Johnson (John) Hart -Session 6, Chapter 10. ThreeStage.c -Several required additional header and source files from the -book examples have been included inline to simplify compilation. -The only modification to the code has been to provide default -values when run without arguments. diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/Nmakefile b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/Nmakefile deleted file mode 100644 index 368a151..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/Nmakefile +++ /dev/null @@ -1,24 +0,0 @@ -/* - * nmake file for uwin pthread library - */ - -VERSION = - -CCFLAGS = -V -g $(CC.DLL) -HAVE_CONFIG_H == 1 -_MT == 1 -_timeb == timeb -_ftime == ftime -_errno == _ast_errno - -$(INCLUDEDIR) :INSTALLDIR: pthread.h sched.h - -pthread $(VERSION) :LIBRARY: attr.c barrier.c cancel.c cleanup.c condvar.c \ - create.c dll.c exit.c fork.c global.c misc.c mutex.c private.c \ - rwlock.c sched.c semaphore.c spin.c sync.c tsd.c nonportable.c - -:: ANNOUNCE CONTRIBUTORS COPYING.LIB ChangeLog FAQ GNUmakefile MAINTAINERS \ - Makefile Makefile.in Makefile.vc NEWS PROGRESS README README.WinCE \ - TODO WinCE-PORT install-sh errno.c tests tests.mk acconfig.h \ - config.guess config.h.in config.sub configure configure.in signal.c \ - README.CV README.NONPORTABLE pthread.dsp pthread.dsw - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/Nmakefile.tests b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/Nmakefile.tests deleted file mode 100644 index 203560b..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/Nmakefile.tests +++ /dev/null @@ -1,260 +0,0 @@ -/* for running tests */ -CCFLAGS = -g -_MT == 1 -_timeb == timeb -_ftime == ftime - -.SOURCE: tests -/* -:PACKAGE: pthread -*/ - -set keepgoing - -":test:" : .MAKE .OPERATOR - local I - $(<:D:B:S=.pass) : .IMPLICIT $(>:D:B:S=.pass) - for I $(<) $(>) - $(I:D:B:S=.pass) : .VIRTUAL .FORCE $(I) - $(>) - end -sizes:: sizes.c -loadfree:: loadfree.c -mutex1:: mutex1.c -mutex1e:: mutex1e.c -mutex1n:: mutex1n.c -mutex1r:: mutex1r.c -mutex2:: mutex2.c -mutex2r:: mutex2r.c -mutex2e:: mutex2e.c -exit1:: exit1.c -condvar1:: condvar1.c -condvar1_1:: condvar1_1.c -condvar1_2:: condvar1_2.c -self1:: self1.c -condvar2:: condvar2.c -condvar2_1:: condvar2_1.c -condvar3_1:: condvar3_1.c -condvar3_2:: condvar3_2.c -condvar3_3:: condvar3_3.c -create1.:: create1.c -create2.:: create2.c -cancel1:: cancel1.c -cancel2:: cancel2.c -mutex3:: mutex3.c -mutex3r:: mutex3r.c -mutex3e:: mutex3e.c -mutex4:: mutex4.c -mutex5:: mutex5.c -mutex6:: mutex6.c -mutex6e:: mutex6e.c -mutex6n:: mutex6n.c -mutex6r:: mutex6r.c -mutex7:: mutex7.c -mutex6s:: mutex6s.c -mutex6rs:: mutex6rs.c -mutex6es:: mutex6es.c -mutex7e:: mutex7e.c -mutex7n:: mutex7n.c -mutex7r:: mutex7r.c -mutex8:: mutex8.c -mutex8e:: mutex8e.c -mutex8n:: mutex8n.c -mutex8r:: mutex8r.c -equal1:: equal1.c -exit2:: exit2.c -exit3:: exit3.c -exit4:: exit4.c -exit5:: exit5.c -join0:: join0.c -join1:: join1.c -join2:: join2.c -join3:: join3.c -kill1:: kill1.c -count1:: count1.c -once1:: once1.c -tsd1:: tsd1.c -self2:: self2.c -eyal1:: eyal1.c -condvar3:: condvar3.c -condvar4:: condvar4.c -condvar5:: condvar5.c -condvar6:: condvar6.c -condvar7:: condvar7.c -condvar8:: condvar8.c -condvar9:: condvar9.c -errno1:: errno1.c -reuse1.:: reuse1.c -reuse2.:: reuse2.c -rwlock1:: rwlock1.c -rwlock2:: rwlock2.c -rwlock3:: rwlock3.c -rwlock4:: rwlock4.c -rwlock5:: rwlock5.c -rwlock6:: rwlock6.c -rwlock7:: rwlock7.c -rwlock8:: rwlock8.c -rwlock2_t:: rwlock2_t.c -rwlock3_t:: rwlock3_t.c -rwlock4_t:: rwlock4_t.c -rwlock5_t:: rwlock5_t.c -rwlock6_t:: rwlock6_t.c -rwlock6_t2:: rwlock6_t2.c -semaphore1:: semaphore1.c -semaphore2:: semaphore2.c -semaphore3:: semaphore3.c -context1:: context1.c -cancel3:: cancel3.c -cancel4:: cancel4.c -cancel5:: cancel5.c -cancel6a:: cancel6a.c -cancel6d:: cancel6d.c -cancel7:: cancel7.c -cleanup0:: cleanup0.c -cleanup1:: cleanup1.c -cleanup2:: cleanup2.c -cleanup3:: cleanup3.c -priority1:: priority1.c -priority2:: priority2.c -inherit1:: inherit1.c -spin1:: spin1.c -spin2:: spin2.c -spin3:: spin3.c -spin4:: spin4.c -barrier1:: barrier1.c -barrier2:: barrier2.c -barrier3:: barrier3.c -barrier4:: barrier4.c -barrier5:: barrier5.c -exception1:: exception1.c -exception2:: exception2.c -exception3:: exception3.c -benchtest1:: benchtest1.c -benchtest2:: benchtest2.c -benchtest3:: benchtest3.c -benchtest4:: benchtest4.c -benchtest5:: benchtest5.c -valid1:: valid1.c -valid2:: valid2.c -cancel9:: cancel9.c - -sizes: :test: sizes -loadfree: :test: -mutex5 :test: loadfree -mutex1 :test: loadfree -mutex1n :test: loadfree -mutex1r :test: loadfree -mutex1e :test: loadfree -semaphore1 :test: loadfree -semaphore2 :test: loadfree -semaphore3 :test: loadfree -mutex2 :test: loadfree -mutex2r :test: loadfree -mutex2e :test: loadfree -exit1 :test: loadfree -condvar1 :test: loadfree -kill1 :test: loadfree -condvar1_1 :test: condvar1 -condvar1_2 :test: join2 -self1 :test: loadfree -condvar2 :test: condvar1 -condvar2_1 :test: condvar2 -create1 :test: mutex2 -create2 :test: create1 -reuse1 :test: create2 -reuse2 :test: reuse1 -cancel1 :test: create1 -cancel2 :test: cancel1 -mutex3 :test: create1 -mutex3r :test: create1 -mutex3e :test: create1 -mutex4 :test: mutex3 -mutex6 :test: mutex4 -mutex6n :test: mutex4 -mutex6e :test: mutex4 -mutex6r :test: mutex4 -mutex6s :test: mutex6 -mutex6rs :test: mutex6r -mutex6es :test: mutex6e -mutex7 :test: mutex6 -mutex7n :test: mutex6n -mutex7e :test: mutex6e -mutex7r :test: mutex6r -mutex8 :test: mutex7 -mutex8n :test: mutex7n -mutex8e :test: mutex7e -mutex8r :test: mutex7r -equal1 :test: create1 -exit2 :test: create1 -exit3 :test: create1 -exit4 :test: kill1 -exit5 :test: exit4 -join0 :test: create1 -join1 :test: create1 -join2 :test: create1 -join3 :test: join2 -count1 :test: join1 -once1 :test: create1 -tsd1 :test: join1 -self2 :test: create1 -eyal1 :test: tsd1 -condvar3 :test: create1 -condvar3_1 :test: condvar3 -condvar3_2 :test: condvar3_1 -condvar3_3 :test: condvar3_2 -condvar4 :test: create1 -condvar5 :test: condvar4 -condvar6 :test: condvar5 -condvar7 :test: condvar6 cleanup1 -condvar8 :test: condvar7 -condvar9 :test: condvar8 -errno1 :test: mutex3 -rwlock1 :test: condvar6 -rwlock2 :test: rwlock1 -rwlock3 :test: rwlock2 -rwlock4 :test: rwlock3 -rwlock5 :test: rwlock4 -rwlock6 :test: rwlock5 -rwlock7 :test: rwlock6 -rwlock8 :test: rwlock7 -rwlock2_t :test: rwlock2 -rwlock3_t :test: rwlock2_t -rwlock4_t :test: rwlock3_t -rwlock5_t :test: rwlock4_t -rwlock6_t :test: rwlock5_t -rwlock6_t2 :test: rwlock6_t -context1 :test: cancel2 -cancel3 :test: context1 -cancel4 :test: cancel3 -cancel5 :test: cancel3 -cancel6a :test: cancel3 -cancel6d :test: cancel3 -cancel7 :test: kill1 -cleanup0 :test: cancel5 -cleanup1 :test: cleanup0 -cleanup2 :test: cleanup1 -cleanup3 :test: cleanup2 -priority1 :test: join1 -priority2 :test: priority1 -inherit1 :test: join1 -spin1 :test: -spin2 :test: spin1.c -spin3 :test: spin2.c -spin4 :test: spin3.c -barrier1 :test: -barrier2 :test: barrier1.c -barrier3 :test: barrier2.c -barrier4 :test: barrier3.c -barrier5 :test: barrier4.c -benchtest1 :test: mutex3 -benchtest2 :test: benchtest1 -benchtest3 :test: benchtest2 -benchtest4 :test: benchtest3 -benchtest5 :test: benchtest4 -exception1 :test: cancel4 -exception2 :test: exception1 -exception3 :test: exception2 -exit4 :test: exit3 -valid1 :test: join1 -valid2 :test: valid1 -cancel9 :test: cancel8 diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/PROGRESS b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/PROGRESS deleted file mode 100644 index 6a1b4e5..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/PROGRESS +++ /dev/null @@ -1,4 +0,0 @@ -Please see the ANNOUNCE file "Level of Standards Conformance" -or the web page: - -https://sourceforge.net/projects/pthreads4w/conformance.html diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/README b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/README deleted file mode 100644 index d7c8181..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/README +++ /dev/null @@ -1,571 +0,0 @@ -PTHREADS4W (a.k.a. PTHREADS-WIN32) -================================== - -What is it? ------------ - -Pthreads4w is an Open Source Software implementation of the Threads -component of the POSIX 1003.1c 1995 Standard (or later) for Microsoft's -Windows environment. Some functions from POSIX 1003.1b are also supported, -including semaphores. Other related functions include the set of read-write -lock functions. The library also supports some of the functionality of the -Open Group's Single Unix specification, namely mutex types, plus some common -and pthreads4w specific non-portable routines (see README.NONPORTABLE). - -See the file "ANNOUNCE" for more information including standards -conformance details and the list of supported and unsupported -routines. - - -Prerequisites -------------- -MSVC or GNU C (MinGW or MinGW64 with AutoConf Tools) - To build from source. - -QueueUserAPCEx by Panagiotis E. Hadjidoukas - To support any thread cancellation in C++ library builds or - to support cancellation of blocked threads in any build. - This library is not required otherwise. - - For true async cancellation of threads (including blocked threads). - This is a DLL and Windows driver that provides pre-emptive APC - by forcing threads into an alertable state when the APC is queued. - Both the DLL and driver are provided with the pthreads4w.exe - self-unpacking ZIP, and on the pthreads4w FTP site (in source - and pre-built forms). Currently this is a separate LGPL package to - pthreads4w. See the README in the QueueUserAPCEx folder for - installation instructions. - - pthreads4w will automatically detect if the QueueUserAPCEx DLL - QuserEx.DLL is available and whether the driver AlertDrv.sys is - loaded. If it is not available, pthreads4w will simulate async - cancellation, which means that it can async cancel only threads that - are runnable. The simulated async cancellation cannot cancel blocked - threads. - - [FOR SECURITY] To be found Quserex.dll MUST be installed in the - Windows System Folder. This is not an unreasonable constraint given a - driver must also be installed and loaded at system startup. - - -Library naming --------------- - -Because the library is being built using various exception -handling schemes and compilers - and because the library -may not work reliably if these are mixed in an application, -each different version of the library has it's own name. - -Please do not distribute your own modified versions of the library -using names conforming to this description. You can use the -makefile variable "EXTRAVERSION" to append your own suffix to the -library names when building and testing your library. - -Note 1: the incompatibility is really between EH implementations -of the different compilers. It should be possible to use the -standard C version from either compiler with C++ applications -built with a different compiler. If you use an EH version of -the library, then you must use the same compiler for the -application. This is another complication and dependency that -can be avoided by using only the standard C library version. - -Note 2: if you use a standard C pthread*.dll with a C++ -application, then any functions that you define that are -intended to be called via pthread_cleanup_push() must be -__cdecl. - -Note 3: the intention was to also name either the VC or GC -version (it should be arbitrary) as pthread.dll, including -pthread.lib and libpthread.a as appropriate. This is no longer -likely to happen. - -Note 4: the compatibility number (major version number) was -added so that applications can differentiate between binary -incompatible versions of the libs and dlls. - -In general the naming format used is: - pthread[VG]{SE,CE,C}[c][E].dll - pthread[VG]{SE,CE,C}[c][E].lib - -where: - [VG] indicates the compiler - V - MS VC, or - G - GNU C - - {SE,CE,C} indicates the exception handling scheme - SE - Structured EH, or - CE - C++ EH, or - C - no exceptions - uses setjmp/longjmp - - c - DLL major version number indicating ABI - compatibility with applications built against - a snapshot with the same major version number. - See 'Version numbering' below. - E - EXTRAVERSION suffix. - -The name may also be suffixed by a 'd' to indicate a debugging version -of the library. E.g. pthreadVC2d.lib. These will be created e.g. when -the *-debug makefile targets are used. - -Examples: - pthreadVC2.dll (MSVC/not dependent on exceptions - not binary - compatible with pthreadVC1.dll or pthreadVC.dll) - pthreadGC2-w32.dll (As built, e.g., by "make GC ARCH=-m32 EXTRAVERSION=-w32") - pthreadVC2-w64.dll (As built, e.g., by "nmake VC ARCH=-m64 EXTRAVERSION=-w64") - -For information on ARCH (MinGW GNUmakefile) or TARGET_CPU (MSVS Makefile) -see the respective "Building with ..." sections below. - -The GNU library archive file names have correspondingly changed, e.g.: - - libpthreadGCE2.a - libpthreadGC2.a - libpthreadGC2-w64.a - - -Version numbering ------------------ - -See pthread.h and the resource file 'version.rc'. - -Microsoft version numbers use 4 integers: - - 0.0.0.0 - -Pthreads4w uses the first 3 following the standard major.minor.micro -system. We had claimed to follow the Libtool convention but this has -not been the case with recent releases. Binary compatibility and -consequently library file naming has not changed over this time either -so it should not cause any problems. - -NOTE: Changes to the platform ABI can cause the library ABI to change -and the current version numbering system does not account for this. - -The fourth is commonly used for the build number, but will be reserved -for future use. - - major.minor.micro.0 - -The numbers are changed as follows: - -1. If the general binary interface (ABI) has changed at all since the - last update in a way that requires recompilation and relinking of - applications, then increment Major, and set both minor and micro to 0. - (`M:m:u' becomes `M+1:0:0') -2. If the general API has changed at all since the last update or - there have been semantic/behaviour changes (bug fixes etc) but does - not require recompilation of existing applications, then increment - minor and set micro to 0. - (`M:m:u' becomes `M:m+1:0') -3. If there have been no interface or semantic changes since the last - public release but a new release is deemed necessary for some reason, - then increment micro. - (`M:m:u' becomes `M:m:u+1') - - -DLL compatibility numbering is an attempt to ensure that applications -always load a compatible pthreads4w DLL by using a DLL naming system -that is consistent with the version numbering system. It also allows -older and newer DLLs to coexist in the same filesystem so that older -applications can continue to be used. For pre .NET Windows systems, -this inevitably requires incompatible versions of the same DLLs to have -different names. - -Pthreads4w has adopted the Cygwin convention of appending a single -integer number to the DLL name. The number used is simply the library's -major version number. - -Consequently, DLL name/s will only change when the DLL's -backwards compatibility changes. Note that the addition of new -'interfaces' will not of itself change the DLL's compatibility for older -applications. - - -Which of the several dll versions to use? ------------------------------------------ -or, ---- -What are all these pthread*.dll and pthread*.lib files? -------------------------------------------------------- - -Simple, use either pthreadGCc.* if you use GCC, or pthreadVCc.* if you -use MSVC - where 'c' is the DLL versioning (compatibility) number. - -Otherwise, you need to choose carefully and know WHY. - -The most important choice you need to make is whether to use a -version that uses exceptions internally, or not. There are versions -of the library that use exceptions as part of the thread -cancellation and exit implementation. The default version uses -setjmp/longjmp. - -If you use either pthreadVCE[2] or pthreadGCE[2]: - -1. [See also the discussion in the FAQ file - Q2, Q4, and Q5] - -If your application contains catch(...) blocks in your POSIX -threads then you will need to replace the "catch(...)" with the macro -"__PtW32Catch", eg. - - #ifdef __PtW32Catch - __PtW32Catch { - ... - } - #else - catch(...) { - ... - } - #endif - -Otherwise neither pthreads cancellation nor pthread_exit() will work -reliably when using versions of the library that use C++ exceptions -for cancellation and thread exit. - -NB: [lib]pthreadGCE[2] does not support asynchronous cancellation. Any -attempt to cancel a thread set for asynchronous cancellation using -this version of the library will cause the applicaton to terminate. -We believe this is due to the "unmanaged" context switch that is -disrupting the stack unwinding mechanism and which is used -to cancel blocked threads. See pthread_cancel.c - - -Other name changes ------------------- - -All snapshots prior to and including snapshot 2000-08-13 -used "_pthread_" as the prefix to library internal -functions, and "_PTHREAD_" to many library internal -macros. These have now been changed to "__ptw32_" and "__PTW32_" -respectively so as to not conflict with the ANSI standard's -reservation of identifiers beginning with "_" and "__" for -use by compiler implementations only. - -If you have written any applications and you are linking -statically with the pthreads4w library then you may have -included a call to _pthread_processInitialize. You will -now have to change that to __ptw32_processInitialize. - - -Cleanup code default style --------------------------- - -Previously, if not defined, the cleanup style was determined automatically -from the compiler used, and one of the following was defined accordingly: - - __PTW32_CLEANUP_SEH MSVC only - __PTW32_CLEANUP_CXX C++, including MSVC++, GNU G++ - __PTW32_CLEANUP_C C, including GNU GCC, not MSVC - -These defines determine the style of cleanup (see pthread.h) and, -most importantly, the way that cancellation and thread exit (via -pthread_exit) is performed (see the routine __ptw32_throw()). - -In short, the exceptions versions of the library throw an exception -when a thread is canceled, or exits via pthread_exit(). This exception is -caught by a handler in the thread startup routine, so that the -the correct stack unwinding occurs regardless of where the thread -is when it's canceled or exits via pthread_exit(). - -In this snapshot, unless the build explicitly defines (e.g. via a -compiler option) __PTW32_CLEANUP_SEH, __PTW32_CLEANUP_CXX, or __PTW32_CLEANUP_C, then -the build NOW always defaults to __PTW32_CLEANUP_C style cleanup. This style -uses setjmp/longjmp in the cancellation and pthread_exit implementations, -and therefore won't do stack unwinding even when linked to applications -that have it (e.g. C++ apps). This is for consistency with most/all -commercial Unix POSIX threads implementations. - -Although it was not clearly documented before, it is still necessary to -build your application using the same __PTW32_CLEANUP_* define as was -used for the version of the library that you link with, so that the -correct parts of pthread.h are included. That is, the possible -defines require the following library versions: - - __PTW32_CLEANUP_SEH pthreadVSE.dll - __PTW32_CLEANUP_CXX pthreadVCE.dll or pthreadGCE.dll - __PTW32_CLEANUP_C pthreadVC.dll or pthreadGC.dll - -It is recommended that you let pthread.h use it's default __PTW32_CLEANUP_C -for both library and application builds. That is, don't define any of -the above, and then link with pthreadVC.lib (MSVC or MSVC++) and -libpthreadGC.a (MinGW GCC or G++). The reason is explained below, but -another reason is that the prebuilt pthreadVCE.dll is currently broken. -Versions built with MSVC++ later than version 6 may not be broken, but I -can't verify this yet. - -WHY ARE WE MAKING THE DEFAULT STYLE LESS EXCEPTION-FRIENDLY? -Because no commercial Unix POSIX threads implementation allows you to -choose to have stack unwinding. Therefore, providing it in pthread-win32 -as a default is dangerous. We still provide the choice but unless -you consciously choose to do otherwise, your pthreads applications will -now run or crash in similar ways irrespective of the pthreads platform -you use. Or at least this is the hope. - - -Development Build Toolchains and Configurations ------------------------------------------------ - -As of Release 2.10 all build configurations pass the full test suite -for the following toolchains and configurations: - -All DLL and static library build targets enabled in the makefiles: -VC, VCE, VSE (DLL, inlined statics only) -GC, GCE (DLL, inlined and small statics) - -MSVS: -Intel Core i7 (6 Core HT) -Windows 7 64 bit -MSVS 2010 Express with SDK 7.1 (using the SDK command shell TARGET_CPU = x64 or x86) -MSVS 2013 Express Cross Tools for x64 Command Prompt -MSVS 2013 Express Native Tools for x32 Command Prompt - -GNU: -Intel Core i7 (6 Core HT) -Windows 7 64 bit -MinGW64 multilib enabled (ARCH = -m64 or -m32) -MinGW64 multilib disabled - - -Building with MS Visual Studio (C, VC++ using C++ EH, or Structured EH) ------------------------------------------------------------------------ - -NOTE: A VS project/solution/whatever file is included as a contributed -work and is not used of maintained in development. All building and -testing is done using makefiles. We use the native make system for each -toolchain, which is 'nmake' in this case. - -From the source directory run nmake without any arguments to list -help information. E.g. - -$ nmake - -As examples, as at Release 2.10 the pre-built DLLs and static libraries -can be built using one of the following command-lines: - -[Note: "setenv" comes with the SDK which is not required to build the library. -I use it to build and test both 64 and 32 bit versions of the library. -"/2003" is used to override my build system which is Win7 (at the time of -writing) for backwards compatibility.] - -$ setenv /x64 /2003 /Release -$ nmake realclean VC -$ nmake realclean VCE -$ nmake realclean VSE -$ nmake realclean VC-static -$ nmake realclean VCE-static -$ nmake realclean VSE-static -$ setenv /x86 /2003 /Release -$ nmake realclean VC -$ nmake realclean VCE -$ nmake realclean VSE -$ nmake realclean VC-static -$ nmake realclean VCE-static -$ nmake realclean VSE-static - -If you want to differentiate or customise library naming you can use, -e.g.: - -$ nmake realclean VC EXTRAVERSION="-w64" - -The string provided via the variable EXTRAVERSION is appended to the dll -and .lib library names, e.g.: - -pthreadVC2-w64.dll -pthreadVC2-w64.lib - -To build and test all DLLs and static lib compatibility versions -(VC, VCE, VSE): - -$ setenv /x64 /2003 /release -$ nmake all-tests - -You can run the testsuite by changing to the "tests" directory and -running nmake. E.g.: - -$ cd tests -$ nmake VC - -Note: the EXTRAVERSION="..." option is passed to the tests Makefile -when you target "all-tests". If you build the library then change to the -tests directory to run the tests you will need to repeat the option -explicitly to the test "nmake" command-line. - -For failure analysis etc. individual tests can be built -and run, e.g: - -$ cd tests -$ nmake VC TESTS="foo bar" - -This builds and runs all prerequisite tests as well as the individual -tests listed. Prerequisite tests are defined in tests\runorder.mk. - -To build and run only the tests listed use: - -$ cd tests -$ nmake VC NO_DEPS=1 TESTS="foo bar" - - -Building with MinGW -------------------- - -NOTE: All building and testing is done using makefiles. We use the native -make system for each toolchain, which is 'make' in this case. - -We have found that Mingw builds of the GCE library variants can fail when -run on 64 bit systems, believed to be due to the DWARF2 exception handling -being a 32 bit mechanism. The GC variants are fine. MinGW64 offers -SJLJ or SEH exception handling so choose one of those. - -From the source directory: - -run 'autoheader' to rewrite the config.h file -run 'autoconf' to rewrite the GNUmakefiles (library and tests) -run './configure' to create config.h and GNUmakefile. -run 'make' without arguments to list possible targets. - -E.g. - -$ autoheader -$ autoconf -$ ./configure -$ make realclean all-tests - -With MinGW64 multilib installed the following variables can be defined -either on the make command line or in the shell environment: - -ARCH - - possible values are "-m64" and "-m32". You will probably recognise - these as gcc flags however the GNUmakefile also converts these into - the appropriate windres options when building version.o. - -As examples, as at Release 2.10 the pre-built DLLs and static libraries -are built from the following command-lines: - -$ nmake realclean GC ARCH=-m64 -$ nmake realclean GC ARCH=-m32 -$ nmake realclean GCE ARCH=-m64 -$ nmake realclean GCE ARCH=-m32 -$ nmake realclean GC-static ARCH=-m64 -$ nmake realclean GC-static ARCH=-m32 -$ nmake realclean GCE-static ARCH=-m64 -$ nmake realclean GCE-static ARCH=-m32 - -If you want to differentiate between libraries by their names you can use, -e.g.: - -$ make realclean GC ARCH="-m64" EXTRAVERSION="-w64" - -The string provided via the variable EXTRAVERSION is appended to the dll -and .a library names, e.g.: - -pthreadGC2-w64.dll -libpthreadGC2-w64.a - -To build and test all DLLs and static lib compatibility variants (GC, GCE): - -$ make all-tests -or, with MinGW64 (multilib enabled): -$ make all-tests ARCH=-m64 -$ make all-tests ARCH=-m32 - -You can run the testsuite by changing to the "tests" directory and -running make. E.g.: - -$ cd tests -$ make GC - -Note that the ARCH="..." and/or EXTRAVERSION="..." options are passed to the -tests GNUmakefile when you target "all-tests". If you change to the tests -directory and run the tests you will need to repeat those options explicitly -to the test "make" command-line. - -For failure analysis etc. individual tests can be built and run, e.g: - -$ cd tests -$ make GC TESTS="foo bar" - -This builds and runs all prerequisite tests as well as the individual -tests listed. Prerequisite tests are defined in tests\runorder.mk. - -To build and run only those tests listed use: - -$ cd tests -$ make GC NO_DEPS=1 TESTS="foo bar" - - -Building under Linux using the MinGW cross development tools ------------------------------------------------------------- - -You can build the library on Linux by using the MinGW cross development -toolchain. See http://www.libsdl.org/extras/win32/cross/ for tools and -info. The GNUmakefile contains some support for this, for example: - -make CROSS=i386-mingw32msvc- clean GC - -will build pthreadGCn.dll and libpthreadGCn.a (n=version#), provided your -cross-tools/bin directory is in your PATH (or use the cross-make.sh script -at the URL above). - - -Building the library as a statically linkable library ------------------------------------------------------ - -General: __PTW32_STATIC_LIB must be defined for both the library build and the -application build. The makefiles supplied and used by the following 'make' -command lines will define this for you. - -MSVC (creates pthreadVCn.lib as a static link lib): - -nmake clean VC-static - - -MinGW32 (creates libpthreadGCn.a as a static link lib): - -make clean GC-static - -Define __PTW32_STATIC_LIB also when building your application. - -Building the library under Cygwin ---------------------------------- - -Cygwin implements it's own POSIX threads routines and these -will be the ones to use if you develop using Cygwin. - -Building applications ---------------------- - -The files you will need for your application build are: - -The four header files: - _ptw32.h - pthread.h - semaphore.h - sched.h - -The DLL library files that you built: - pthread*.dll - plus the matching *.lib (MSVS) or *.a file (GNU) - -or, the static link library that you built: - pthread*.lib (MSVS) or libpthread*.a (GNU) - -Place them in the appropriate directories for your build, which may be the -standard compiler locations or, locations specific to your project (you -might have a separate third-party dependency tree for example). - -Acknowledgements ----------------- - -See the ANNOUNCE file for acknowledgements. -See the 'CONTRIBUTORS' file for the list of contributors. - -As much as possible, the ChangeLog file attributes -contributions and patches that have been incorporated -in the library to the individuals responsible. - -Finally, thanks to all those who work on and contribute to the -POSIX and Single Unix Specification standards. The maturity of an -industry can be measured by it's open standards. - ----- -Ross Johnson - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/README.Borland b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/README.Borland deleted file mode 100644 index a130d2b..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/README.Borland +++ /dev/null @@ -1,57 +0,0 @@ -In ptw32_InterlockedCompareExchange.c, I've added a section for -Borland's compiler; it's identical to that for the MS compiler except -that it uses /* ... */ comments instead of ; comments. - -[RPJ: need to define HAVE_TASM32 in config.h to use the above.] - - -The other file is a makefile suitable for use with Borland's compiler -(run "make -fBmakefile" in the directory). It builds a single version -of the library, pthreadBC.dll and the corresponding pthreadBC.lib -import library, which is comparable to the pthreadVC version; I can't -personally see any demand for the versions that include structured or -C++ exception cancellation handling so I haven't attempted to build -those versions of the library. (I imagine a static version might be -of use to some, but we can't legally use that on my commercial -projects so I can't try that out, unfortunately.) - -[RPJ: Added tests\Bmakefile as well.] - -Borland C++ doesn't define the ENOSYS constant used by pthreads-win32; -rather than make more extensive patches to the pthreads-win32 source I -have a mostly-arbitrary constant for it in the makefile. However this -doesn't make it visible to the application using the library, so if -anyone actually wants to use this constant in their apps (why?) -someone might like to make a seperate NEED_BCC_something define to add -this stuff. - -The makefile also #defines EDEADLK as EDEADLOCK, _timeb as timeb, and -_ftime as ftime, to deal with the minor differences between the two -RTLs' naming conventions, and sets the compiler flags as required to -get a normal compile of the library. - -[RPJ: Moved errno values and _timeb etc to pthread.h, so apps will also -use them.] - -(While I'm on the subject, the reason Borland users should recompile -the library, rather than using the impdef/implib technique suggested -previously on the mailing list, is that a) the errno constants are -different, so the results returned by the pthread_* functions can be -meaningless, and b) the errno variable/pseudo-variable itself is -different in the MS & BCC runtimes, so you can't access the -pthreadVC's errno from a Borland C++-compiled host application -correctly - I imagine there are other potential problems from the RTL -mismatch too.) - -[RPJ: Make sure you use the same RTL in both dll and application builds. -The dll and tests Bmakefiles use cw32mti.lib. Having some trouble with -memory read exceptions running the test suite using BCC55.] - -Best regards, -Will - --- -Will Bryant -Systems Architect, eCOSM Limited -Cell +64 21 655 443, office +64 3 365 4176 -http://www.ecosm.com/ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/README.CV b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/README.CV deleted file mode 100644 index a05e0f4..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/README.CV +++ /dev/null @@ -1,3036 +0,0 @@ -README.CV -- Condition Variables --------------------------------- - -The original implementation of condition variables in -pthreads-win32 was based on a discussion paper: - -"Strategies for Implementing POSIX Condition Variables -on Win32": http://www.cs.wustl.edu/~schmidt/win32-cv-1.html - -The changes suggested below were made on Feb 6 2001. This -file is included in the package for the benefit of anyone -interested in understanding the pthreads-win32 implementation -of condition variables and the (sometimes subtle) issues that -it attempts to resolve. - -Thanks go to the individuals whose names appear throughout -the following text. - -Ross Johnson - --------------------------------------------------------------------- - -fyi.. (more detailed problem description/demos + possible fix/patch) - -regards, -alexander. - - -Alexander Terekhov -31.01.2001 17:43 - -To: ace-bugs@cs.wustl.edu -cc: -From: Alexander Terekhov/Germany/IBM@IBMDE -Subject: Implementation of POSIX CVs: spur.wakeups/lost - signals/deadlocks/unfairness - - - - ACE VERSION: - - 5.1.12 (pthread-win32 snapshot 2000-12-29) - - HOST MACHINE and OPERATING SYSTEM: - - IBM IntelliStation Z Pro, 2 x XEON 1GHz, Win2K - - TARGET MACHINE and OPERATING SYSTEM, if different from HOST: - COMPILER NAME AND VERSION (AND PATCHLEVEL): - - Microsoft Visual C++ 6.0 - - AREA/CLASS/EXAMPLE AFFECTED: - - Implementation of POSIX condition variables - OS.cpp/.h - - DOES THE PROBLEM AFFECT: - - EXECUTION? YES! - - SYNOPSIS: - - a) spurious wakeups (minor problem) - b) lost signals - c) broadcast deadlock - d) unfairness (minor problem) - - DESCRIPTION: - - Please see attached copy of discussion thread - from comp.programming.threads for more details on - some reported problems. (i've also posted a "fyi" - message to ace-users a week or two ago but - unfortunately did not get any response so far). - - It seems that current implementation suffers from - two essential problems: - - 1) cond.waiters_count does not accurately reflect - number of waiters blocked on semaphore - w/o - proper synchronisation that could result (in the - time window when counter is not accurate) - in spurious wakeups organised by subsequent - _signals and _broadcasts. - - 2) Always having (with no e.g. copy_and_clear/..) - the same queue in use (semaphore+counter) - neither signal nor broadcast provide 'atomic' - behaviour with respect to other threads/subsequent - calls to signal/broadcast/wait. - - Each problem and combination of both could produce - various nasty things: - - a) spurious wakeups (minor problem) - - it is possible that waiter(s) which was already - unblocked even so is still counted as blocked - waiter. signal and broadcast will release - semaphore which will produce a spurious wakeup - for a 'real' waiter coming later. - - b) lost signals - - signalling thread ends up consuming its own - signal. please see demo/discussion below. - - c) broadcast deadlock - - last_waiter processing code does not correctly - handle the case with multiple threads - waiting for the end of broadcast. - please see demo/discussion below. - - d) unfairness (minor problem) - - without SignalObjectAndWait some waiter(s) - may end up consuming broadcasted signals - multiple times (spurious wakeups) because waiter - thread(s) can be preempted before they call - semaphore wait (but after count++ and mtx.unlock). - - REPEAT BY: - - See below... run problem demos programs (tennis.cpp and - tennisb.cpp) number of times concurrently (on multiprocessor) - and in multiple sessions or just add a couple of "Sleep"s - as described in the attached copy of discussion thread - from comp.programming.threads - - SAMPLE FIX/WORKAROUND: - - See attached patch to pthread-win32.. well, I can not - claim that it is completely bug free but at least my - test and tests provided by pthreads-win32 seem to work. - Perhaps that will help. - - regards, - alexander. - - ->> Forum: comp.programming.threads ->> Thread: pthread_cond_* implementation questions -. -. -. -David Schwartz wrote: - -> terekhov@my-deja.com wrote: -> ->> BTW, could you please also share your view on other perceived ->> "problems" such as nested broadcast deadlock, spurious wakeups ->> and (the latest one) lost signals?? -> ->I'm not sure what you mean. The standard allows an implementation ->to do almost whatever it likes. In fact, you could implement ->pthread_cond_wait by releasing the mutex, sleeping a random ->amount of time, and then reacquiring the mutex. Of course, ->this would be a pretty poor implementation, but any code that ->didn't work under that implementation wouldn't be strictly ->compliant. - -The implementation you suggested is indeed correct -one (yes, now I see it :). However it requires from -signal/broadcast nothing more than to "{ return 0; }" -That is not the case for pthread-win32 and ACE -implementations. I do think that these implementations -(basically the same implementation) have some serious -problems with wait/signal/broadcast calls. I am looking -for help to clarify whether these problems are real -or not. I think that I can demonstrate what I mean -using one or two small sample programs. -. -. -. -========== -tennis.cpp -========== - -#include "ace/Synch.h" -#include "ace/Thread.h" - -enum GAME_STATE { - - START_GAME, - PLAYER_A, // Player A playes the ball - PLAYER_B, // Player B playes the ball - GAME_OVER, - ONE_PLAYER_GONE, - BOTH_PLAYERS_GONE - -}; - -enum GAME_STATE eGameState; -ACE_Mutex* pmtxGameStateLock; -ACE_Condition< ACE_Mutex >* pcndGameStateChange; - -void* - playerA( - void* pParm - ) -{ - - // For access to game state variable - pmtxGameStateLock->acquire(); - - // Play loop - while ( eGameState < GAME_OVER ) { - - // Play the ball - cout << endl << "PLAYER-A" << endl; - - // Now its PLAYER-B's turn - eGameState = PLAYER_B; - - // Signal to PLAYER-B that now it is his turn - pcndGameStateChange->signal(); - - // Wait until PLAYER-B finishes playing the ball - do { - - pcndGameStateChange->wait(); - - if ( PLAYER_B == eGameState ) - cout << endl << "----PLAYER-A: SPURIOUS WAKEUP!!!" << endl; - - } while ( PLAYER_B == eGameState ); - - } - - // PLAYER-A gone - eGameState = (GAME_STATE)(eGameState+1); - cout << endl << "PLAYER-A GONE" << endl; - - // No more access to state variable needed - pmtxGameStateLock->release(); - - // Signal PLAYER-A gone event - pcndGameStateChange->broadcast(); - - return 0; - -} - -void* - playerB( - void* pParm - ) -{ - - // For access to game state variable - pmtxGameStateLock->acquire(); - - // Play loop - while ( eGameState < GAME_OVER ) { - - // Play the ball - cout << endl << "PLAYER-B" << endl; - - // Now its PLAYER-A's turn - eGameState = PLAYER_A; - - // Signal to PLAYER-A that now it is his turn - pcndGameStateChange->signal(); - - // Wait until PLAYER-A finishes playing the ball - do { - - pcndGameStateChange->wait(); - - if ( PLAYER_A == eGameState ) - cout << endl << "----PLAYER-B: SPURIOUS WAKEUP!!!" << endl; - - } while ( PLAYER_A == eGameState ); - - } - - // PLAYER-B gone - eGameState = (GAME_STATE)(eGameState+1); - cout << endl << "PLAYER-B GONE" << endl; - - // No more access to state variable needed - pmtxGameStateLock->release(); - - // Signal PLAYER-B gone event - pcndGameStateChange->broadcast(); - - return 0; - -} - - -int -main (int, ACE_TCHAR *[]) -{ - - pmtxGameStateLock = new ACE_Mutex(); - pcndGameStateChange = new ACE_Condition< ACE_Mutex >( *pmtxGameStateLock -); - - // Set initial state - eGameState = START_GAME; - - // Create players - ACE_Thread::spawn( playerA ); - ACE_Thread::spawn( playerB ); - - // Give them 5 sec. to play - Sleep( 5000 );//sleep( 5 ); - - // Set game over state - pmtxGameStateLock->acquire(); - eGameState = GAME_OVER; - - // Let them know - pcndGameStateChange->broadcast(); - - // Wait for players to stop - do { - - pcndGameStateChange->wait(); - - } while ( eGameState < BOTH_PLAYERS_GONE ); - - // Cleanup - cout << endl << "GAME OVER" << endl; - pmtxGameStateLock->release(); - delete pcndGameStateChange; - delete pmtxGameStateLock; - - return 0; - -} - -=========== -tennisb.cpp -=========== -#include "ace/Synch.h" -#include "ace/Thread.h" - -enum GAME_STATE { - - START_GAME, - PLAYER_A, // Player A playes the ball - PLAYER_B, // Player B playes the ball - GAME_OVER, - ONE_PLAYER_GONE, - BOTH_PLAYERS_GONE - -}; - -enum GAME_STATE eGameState; -ACE_Mutex* pmtxGameStateLock; -ACE_Condition< ACE_Mutex >* pcndGameStateChange; - -void* - playerA( - void* pParm - ) -{ - - // For access to game state variable - pmtxGameStateLock->acquire(); - - // Play loop - while ( eGameState < GAME_OVER ) { - - // Play the ball - cout << endl << "PLAYER-A" << endl; - - // Now its PLAYER-B's turn - eGameState = PLAYER_B; - - // Signal to PLAYER-B that now it is his turn - pcndGameStateChange->broadcast(); - - // Wait until PLAYER-B finishes playing the ball - do { - - pcndGameStateChange->wait(); - - if ( PLAYER_B == eGameState ) - cout << endl << "----PLAYER-A: SPURIOUS WAKEUP!!!" << endl; - - } while ( PLAYER_B == eGameState ); - - } - - // PLAYER-A gone - eGameState = (GAME_STATE)(eGameState+1); - cout << endl << "PLAYER-A GONE" << endl; - - // No more access to state variable needed - pmtxGameStateLock->release(); - - // Signal PLAYER-A gone event - pcndGameStateChange->broadcast(); - - return 0; - -} - -void* - playerB( - void* pParm - ) -{ - - // For access to game state variable - pmtxGameStateLock->acquire(); - - // Play loop - while ( eGameState < GAME_OVER ) { - - // Play the ball - cout << endl << "PLAYER-B" << endl; - - // Now its PLAYER-A's turn - eGameState = PLAYER_A; - - // Signal to PLAYER-A that now it is his turn - pcndGameStateChange->broadcast(); - - // Wait until PLAYER-A finishes playing the ball - do { - - pcndGameStateChange->wait(); - - if ( PLAYER_A == eGameState ) - cout << endl << "----PLAYER-B: SPURIOUS WAKEUP!!!" << endl; - - } while ( PLAYER_A == eGameState ); - - } - - // PLAYER-B gone - eGameState = (GAME_STATE)(eGameState+1); - cout << endl << "PLAYER-B GONE" << endl; - - // No more access to state variable needed - pmtxGameStateLock->release(); - - // Signal PLAYER-B gone event - pcndGameStateChange->broadcast(); - - return 0; - -} - - -int -main (int, ACE_TCHAR *[]) -{ - - pmtxGameStateLock = new ACE_Mutex(); - pcndGameStateChange = new ACE_Condition< ACE_Mutex >( *pmtxGameStateLock -); - - // Set initial state - eGameState = START_GAME; - - // Create players - ACE_Thread::spawn( playerA ); - ACE_Thread::spawn( playerB ); - - // Give them 5 sec. to play - Sleep( 5000 );//sleep( 5 ); - - // Make some noise - pmtxGameStateLock->acquire(); - cout << endl << "---Noise ON..." << endl; - pmtxGameStateLock->release(); - for ( int i = 0; i < 100000; i++ ) - pcndGameStateChange->broadcast(); - cout << endl << "---Noise OFF" << endl; - - // Set game over state - pmtxGameStateLock->acquire(); - eGameState = GAME_OVER; - cout << endl << "---Stopping the game..." << endl; - - // Let them know - pcndGameStateChange->broadcast(); - - // Wait for players to stop - do { - - pcndGameStateChange->wait(); - - } while ( eGameState < BOTH_PLAYERS_GONE ); - - // Cleanup - cout << endl << "GAME OVER" << endl; - pmtxGameStateLock->release(); - delete pcndGameStateChange; - delete pmtxGameStateLock; - - return 0; - -} -. -. -. -David Schwartz wrote: ->> > It's compliant ->> ->> That is really good. -> ->> Tomorrow (I have to go urgently now) I will try to ->> demonstrate the lost-signal "problem" of current ->> pthread-win32 and ACE-(variant w/o SingleObjectAndWait) ->> implementations: players start suddenly drop their balls :-) ->> (with no change in source code). -> ->Signals aren't lost, they're going to the main thread, ->which isn't coded correctly to handle them. Try this: -> -> // Wait for players to stop -> do { -> -> pthread_cond_wait( &cndGameStateChange,&mtxGameStateLock ); ->printf("Main thread stole a signal\n"); -> -> } while ( eGameState < BOTH_PLAYERS_GONE ); -> ->I bet everytime you thing a signal is lost, you'll see that printf. ->The signal isn't lost, it was stolen by another thread. - -well, you can probably loose your bet.. it was indeed stolen -by "another" thread but not the one you seem to think of. - -I think that what actually happens is the following: - -H:\SA\UXX\pt\PTHREADS\TESTS>tennis3.exe - -PLAYER-A - -PLAYER-B - -----PLAYER-B: SPURIOUS WAKEUP!!! - -PLAYER-A GONE - -PLAYER-B GONE - -GAME OVER - -H:\SA\UXX\pt\PTHREADS\TESTS> - -here you can see that PLAYER-B after playing his first -ball (which came via signal from PLAYER-A) just dropped -it down. What happened is that his signal to player A -was consumed as spurious wakeup by himself (player B). - -The implementation has a problem: - -================ -waiting threads: -================ - -{ /** Critical Section - - inc cond.waiters_count - -} - - /* - /* Atomic only if using Win32 SignalObjectAndWait - /* - cond.mtx.release - - /*** ^^-- A THREAD WHICH DID SIGNAL MAY ACQUIRE THE MUTEX, - /*** GO INTO WAIT ON THE SAME CONDITION AND OVERTAKE - /*** ORIGINAL WAITER(S) CONSUMING ITS OWN SIGNAL! - - cond.sem.wait - -Player-A after playing game's initial ball went into -wait (called _wait) but was pre-empted before reaching -wait semaphore. He was counted as waiter but was not -actually waiting/blocked yet. - -=============== -signal threads: -=============== - -{ /** Critical Section - - waiters_count = cond.waiters_count - -} - - if ( waiters_count != 0 ) - - sem.post 1 - - endif - -Player-B after he received signal/ball from Player A -called _signal. The _signal did see that there was -one waiter blocked on the condition (Player-A) and -released the semaphore.. (but it did not unblock -Player-A because he was not actually blocked). -Player-B thread continued its execution, called _wait, -was counted as second waiter BUT was allowed to slip -through opened semaphore gate (which was opened for -Player-B) and received his own signal. Player B remained -blocked followed by Player A. Deadlock happened which -lasted until main thread came in and said game over. - -It seems to me that the implementation fails to -correctly implement the following statement -from specification: - -http://www.opengroup.org/ -onlinepubs/007908799/xsh/pthread_cond_wait.html - -"These functions atomically release mutex and cause -the calling thread to block on the condition variable -cond; atomically here means "atomically with respect -to access by another thread to the mutex and then the -condition variable". That is, if another thread is -able to acquire the mutex after the about-to-block -thread has released it, then a subsequent call to -pthread_cond_signal() or pthread_cond_broadcast() -in that thread behaves as if it were issued after -the about-to-block thread has blocked." - -Question: Am I right? - -(I produced the program output above by simply -adding ?Sleep( 1 )?: - -================ -waiting threads: -================ - -{ /** Critical Section - - inc cond.waiters_count - -} - - /* - /* Atomic only if using Win32 SignalObjectAndWait - /* - cond.mtx.release - -Sleep( 1 ); // Win32 - - /*** ^^-- A THREAD WHICH DID SIGNAL MAY ACQUIRE THE MUTEX, - /*** GO INTO WAIT ON THE SAME CONDITION AND OVERTAKE - /*** ORIGINAL WAITER(S) CONSUMING ITS OWN SIGNAL! - - cond.sem.wait - -to the source code of pthread-win32 implementation: - -http://sources.redhat.com/cgi-bin/cvsweb.cgi/pthreads/ -condvar.c?rev=1.36&content-type=text/ -x-cvsweb-markup&cvsroot=pthreads-win32 - - - /* - * We keep the lock held just long enough to increment the count of - * waiters by one (above). - * Note that we can't keep it held across the - * call to sem_wait since that will deadlock other calls - * to pthread_cond_signal - */ - cleanup_args.mutexPtr = mutex; - cleanup_args.cv = cv; - cleanup_args.resultPtr = &result; - - pthread_cleanup_push (__ptw32_cond_wait_cleanup, (void *) -&cleanup_args); - - if ((result = pthread_mutex_unlock (mutex)) == 0) - {((result -Sleep( 1 ); // @AT - - /* - * Wait to be awakened by - * pthread_cond_signal, or - * pthread_cond_broadcast, or - * a timeout - * - * Note: - * __ptw32_sem_timedwait is a cancellation point, - * hence providing the - * mechanism for making pthread_cond_wait a cancellation - * point. We use the cleanup mechanism to ensure we - * re-lock the mutex and decrement the waiters count - * if we are canceled. - */ - if (__ptw32_sem_timedwait (&(cv->sema), abstime) == -1) { - result = __PTW32_GET_ERRNO(); - } - } - - pthread_cleanup_pop (1); /* Always cleanup */ - - -BTW, on my system (2 CPUs) I can manage to get -signals lost even without any source code modification -if I run the tennis program many times in different -shell sessions. -. -. -. -David Schwartz wrote: ->terekhov@my-deja.com wrote: -> ->> well, it might be that the program is in fact buggy. ->> but you did not show me any bug. -> ->You're right. I was close but not dead on. I was correct, however, ->that the code is buggy because it uses 'pthread_cond_signal' even ->though not any thread waiting on the condition variable can do the ->job. I was wrong in which thread could be waiting on the cv but ->unable to do the job. - -Okay, lets change 'pthread_cond_signal' to 'pthread_cond_broadcast' -but also add some noise from main() right before declaring the game -to be over (I need it in order to demonstrate another problem of -pthread-win32/ACE implementations - broadcast deadlock)... -. -. -. -It is my understanding of POSIX conditions, -that on correct implementation added noise -in form of unnecessary broadcasts from main, -should not break the tennis program. The -only 'side effect' of added noise on correct -implementation would be 'spurious wakeups' of -players (in fact they are not spurious, -players just see them as spurious) unblocked, -not by another player but by main before -another player had a chance to acquire the -mutex and change the game state variable: -. -. -. - -PLAYER-B - -PLAYER-A - ----Noise ON... - -PLAYER-B - -PLAYER-A - -. -. -. - -PLAYER-B - -PLAYER-A - -----PLAYER-A: SPURIOUS WAKEUP!!! - -PLAYER-B - -PLAYER-A - ----Noise OFF - -PLAYER-B - ----Stopping the game... - -PLAYER-A GONE - -PLAYER-B GONE - -GAME OVER - -H:\SA\UXX\pt\PTHREADS\TESTS> - -On pthread-win32/ACE implementations the -program could stall: - -. -. -. - -PLAYER-A - -PLAYER-B - -PLAYER-A - -PLAYER-B - -PLAYER-A - -PLAYER-B - -PLAYER-A - -PLAYER-B - ----Noise ON... - -PLAYER-A - ----Noise OFF -^C -H:\SA\UXX\pt\PTHREADS\TESTS> - - -The implementation has problems: - -================ -waiting threads: -================ - -{ /** Critical Section - - inc cond.waiters_count - -} - - /* - /* Atomic only if using Win32 SignalObjectAndWait - /* - cond.mtx.release - cond.sem.wait - - /*** ^^-- WAITER CAN BE PREEMPTED AFTER BEING UNBLOCKED... - -{ /** Critical Section - - dec cond.waiters_count - - /*** ^^- ...AND BEFORE DECREMENTING THE COUNT (1) - - last_waiter = ( cond.was_broadcast && - cond.waiters_count == 0 ) - - if ( last_waiter ) - - cond.was_broadcast = FALSE - - endif - -} - - if ( last_waiter ) - - /* - /* Atomic only if using Win32 SignalObjectAndWait - /* - cond.auto_reset_event_or_sem.post /* Event for Win32 - cond.mtx.acquire - - /*** ^^-- ...AND BEFORE CALL TO mtx.acquire (2) - - /*** ^^-- NESTED BROADCASTS RESULT IN A DEADLOCK - - - else - - cond.mtx.acquire - - /*** ^^-- ...AND BEFORE CALL TO mtx.acquire (3) - - endif - - -================== -broadcast threads: -================== - -{ /** Critical Section - - waiters_count = cond.waiters_count - - if ( waiters_count != 0 ) - - cond.was_broadcast = TRUE - - endif - -} - -if ( waiters_count != 0 ) - - cond.sem.post waiters_count - - /*** ^^^^^--- SPURIOUS WAKEUPS DUE TO (1) - - cond.auto_reset_event_or_sem.wait /* Event for Win32 - - /*** ^^^^^--- DEADLOCK FOR FURTHER BROADCASTS IF THEY - HAPPEN TO GO INTO WAIT WHILE PREVIOUS - BROADCAST IS STILL IN PROGRESS/WAITING - -endif - -a) cond.waiters_count does not accurately reflect -number of waiters blocked on semaphore - that could -result (in the time window when counter is not accurate) -in spurios wakeups organised by subsequent _signals -and _broadcasts. From standard compliance point of view -that is OK but that could be a real problem from -performance/efficiency point of view. - -b) If subsequent broadcast happen to go into wait on -cond.auto_reset_event_or_sem before previous -broadcast was unblocked from cond.auto_reset_event_or_sem -by its last waiter, one of two blocked threads will -remain blocked because last_waiter processing code -fails to unblock both threads. - -In the situation with tennisb.c the Player-B was put -in a deadlock by noise (broadcast) coming from main -thread. And since Player-B holds the game state -mutex when it calls broadcast, the whole program -stalled: Player-A was deadlocked on mutex and -main thread after finishing with producing the noise -was deadlocked on mutex too (needed to declare the -game over) - -(I produced the program output above by simply -adding ?Sleep( 1 )?: - -================== -broadcast threads: -================== - -{ /** Critical Section - - waiters_count = cond.waiters_count - - if ( waiters_count != 0 ) - - cond.was_broadcast = TRUE - - endif - -} - -if ( waiters_count != 0 ) - -Sleep( 1 ); //Win32 - - cond.sem.post waiters_count - - /*** ^^^^^--- SPURIOUS WAKEUPS DUE TO (1) - - cond.auto_reset_event_or_sem.wait /* Event for Win32 - - /*** ^^^^^--- DEADLOCK FOR FURTHER BROADCASTS IF THEY - HAPPEN TO GO INTO WAIT WHILE PREVIOUS - BROADCAST IS STILL IN PROGRESS/WAITING - -endif - -to the source code of pthread-win32 implementation: - -http://sources.redhat.com/cgi-bin/cvsweb.cgi/pthreads/ -condvar.c?rev=1.36&content-type=text/ -x-cvsweb-markup&cvsroot=pthreads-win32 - - if (wereWaiters) - {(wereWaiters)sroot=pthreads-win32eb.cgi/pthreads/Yem...m - /* - * Wake up all waiters - */ - -Sleep( 1 ); //@AT - -#ifdef NEED_SEM - - result = (__ptw32_increase_semaphore( &cv->sema, cv->waiters ) - ? 0 - : EINVAL); - -#else /* NEED_SEM */ - - result = (ReleaseSemaphore( cv->sema, cv->waiters, NULL ) - ? 0 - : EINVAL); - -#endif /* NEED_SEM */ - - } - - (void) pthread_mutex_unlock(&(cv->waitersLock)); - - if (wereWaiters && result == 0) - {(wereWaiters - /* - * Wait for all the awakened threads to acquire their part of - * the counting semaphore - */ - - if (WaitForSingleObject (cv->waitersDone, INFINITE) - == WAIT_OBJECT_0) - { - result = 0; - } - else - { - result = EINVAL; - } - - } - - return (result); - -} - -BTW, on my system (2 CPUs) I can manage to get -the program stalled even without any source code -modification if I run the tennisb program many -times in different shell sessions. - -=================== -pthread-win32 patch -=================== -struct pthread_cond_t_ { - long nWaitersBlocked; /* Number of threads blocked -*/ - long nWaitersUnblocked; /* Number of threads unblocked -*/ - long nWaitersToUnblock; /* Number of threads to unblock -*/ - sem_t semBlockQueue; /* Queue up threads waiting for the -*/ - /* condition to become signalled -*/ - sem_t semBlockLock; /* Semaphore that guards access to -*/ - /* | waiters blocked count/block queue -*/ - /* +-> Mandatory Sync.LEVEL-1 -*/ - pthread_mutex_t mtxUnblockLock; /* Mutex that guards access to -*/ - /* | waiters (to)unblock(ed) counts -*/ - /* +-> Optional* Sync.LEVEL-2 -*/ -}; /* Opt*) for _timedwait and -cancellation*/ - -int -pthread_cond_init (pthread_cond_t * cond, const pthread_condattr_t * attr) - int result = EAGAIN; - pthread_cond_t cv = NULL; - - if (cond == NULL) - {(cond - return EINVAL; - } - - if ((attr != NULL && *attr != NULL) && - ((*attr)->pshared == PTHREAD_PROCESS_SHARED)) - { - /* - * Creating condition variable that can be shared between - * processes. - */ - result = ENOSYS; - - goto FAIL0; - } - - cv = (pthread_cond_t) calloc (1, sizeof (*cv)); - - if (cv == NULL) - {(cv - result = ENOMEM; - goto FAIL0; - } - - cv->nWaitersBlocked = 0; - cv->nWaitersUnblocked = 0; - cv->nWaitersToUnblock = 0; - - if (sem_init (&(cv->semBlockLock), 0, 1) != 0) - {(sem_init - goto FAIL0; - } - - if (sem_init (&(cv->semBlockQueue), 0, 0) != 0) - {(sem_init - goto FAIL1; - } - - if (pthread_mutex_init (&(cv->mtxUnblockLock), 0) != 0) - {(pthread_mutex_init - goto FAIL2; - } - - - result = 0; - - goto DONE; - - /* - * ------------- - * Failed... - * ------------- - */ -FAIL2: - (void) sem_destroy (&(cv->semBlockQueue)); - -FAIL1: - (void) sem_destroy (&(cv->semBlockLock)); - -FAIL0: -DONE: - *cond = cv; - - return (result); - -} /* pthread_cond_init */ - -int -pthread_cond_destroy (pthread_cond_t * cond) -{ - int result = 0; - pthread_cond_t cv; - - /* - * Assuming any race condition here is harmless. - */ - if (cond == NULL - || *cond == NULL) - { - return EINVAL; - } - - if (*cond != (pthread_cond_t) __PTW32_OBJECT_AUTO_INIT) - {(*cond - cv = *cond; - - /* - * Synchronize access to waiters blocked count (LEVEL-1) - */ - if (sem_wait(&(cv->semBlockLock)) != 0) - {(sem_wait(&(cv->semBlockLock)) - return errno; - } - - /* - * Synchronize access to waiters (to)unblock(ed) counts (LEVEL-2) - */ - if ((result = pthread_mutex_lock(&(cv->mtxUnblockLock))) != 0) - {((result - (void) sem_post(&(cv->semBlockLock)); - return result; - } - - /* - * Check whether cv is still busy (still has waiters blocked) - */ - if (cv->nWaitersBlocked - cv->nWaitersUnblocked > 0) - {(cv->nWaitersBlocked - (void) sem_post(&(cv->semBlockLock)); - (void) pthread_mutex_unlock(&(cv->mtxUnblockLock)); - return EBUSY; - } - - /* - * Now it is safe to destroy - */ - (void) sem_destroy (&(cv->semBlockLock)); - (void) sem_destroy (&(cv->semBlockQueue)); - (void) pthread_mutex_unlock (&(cv->mtxUnblockLock)); - (void) pthread_mutex_destroy (&(cv->mtxUnblockLock)); - - free(cv); - *cond = NULL; - } - else - { - /* - * See notes in __ptw32_cond_check_need_init() above also. - */ - EnterCriticalSection(&__ptw32_cond_test_init_lock); - - /* - * Check again. - */ - if (*cond == (pthread_cond_t) __PTW32_OBJECT_AUTO_INIT) - {(*cond - /* - * This is all we need to do to destroy a statically - * initialised cond that has not yet been used (initialised). - * If we get to here, another thread - * waiting to initialise this cond will get an EINVAL. - */ - *cond = NULL; - } - else - { - /* - * The cv has been initialised while we were waiting - * so assume it's in use. - */ - result = EBUSY; - } - - LeaveCriticalSection(&__ptw32_cond_test_init_lock); - } - - return (result); -} - -/* - * Arguments for cond_wait_cleanup, since we can only pass a - * single void * to it. - */ -typedef struct { - pthread_mutex_t * mutexPtr; - pthread_cond_t cv; - int * resultPtr; -} __ptw32_cond_wait_cleanup_args_t; - -static void -__ptw32_cond_wait_cleanup(void * args) -{ - __ptw32_cond_wait_cleanup_args_t * cleanup_args = -(__ptw32_cond_wait_cleanup_args_t *) args; - pthread_cond_t cv = cleanup_args->cv; - int * resultPtr = cleanup_args->resultPtr; - int eLastSignal; /* enum: 1=yes 0=no -1=cancelled/timedout w/o signal(s) -*/ - int result; - - /* - * Whether we got here as a result of signal/broadcast or because of - * timeout on wait or thread cancellation we indicate that we are no - * longer waiting. The waiter is responsible for adjusting waiters - * (to)unblock(ed) counts (protected by unblock lock). - * Unblock lock/Sync.LEVEL-2 supports _timedwait and cancellation. - */ - if ((result = pthread_mutex_lock(&(cv->mtxUnblockLock))) != 0) - {((result - *resultPtr = result; - return; - } - - cv->nWaitersUnblocked++; - - eLastSignal = (cv->nWaitersToUnblock == 0) ? - -1 : (--cv->nWaitersToUnblock == 0); - - /* - * No more LEVEL-2 access to waiters (to)unblock(ed) counts needed - */ - if ((result = pthread_mutex_unlock(&(cv->mtxUnblockLock))) != 0) - {((result - *resultPtr = result; - return; - } - - /* - * If last signal... - */ - if (eLastSignal == 1) - {(eLastSignal - /* - * ...it means that we have end of 'atomic' signal/broadcast - */ - if (sem_post(&(cv->semBlockLock)) != 0) - {(sem_post(&(cv->semBlockLock)) - *resultPtr = __PTW32_GET_ERRNO(); - return; - } - } - /* - * If not last signal and not timed out/cancelled wait w/o signal... - */ - else if (eLastSignal == 0) - { - /* - * ...it means that next waiter can go through semaphore - */ - if (sem_post(&(cv->semBlockQueue)) != 0) - {(sem_post(&(cv->semBlockQueue)) - *resultPtr = __PTW32_GET_ERRNO(); - return; - } - } - - /* - * XSH: Upon successful return, the mutex has been locked and is owned - * by the calling thread - */ - if ((result = pthread_mutex_lock(cleanup_args->mutexPtr)) != 0) - {((result - *resultPtr = result; - } - -} /* __ptw32_cond_wait_cleanup */ - -static int -__ptw32_cond_timedwait (pthread_cond_t * cond, - pthread_mutex_t * mutex, - const struct timespec *abstime) -{ - int result = 0; - pthread_cond_t cv; - __ptw32_cond_wait_cleanup_args_t cleanup_args; - - if (cond == NULL || *cond == NULL) - {(cond - return EINVAL; - } - - /* - * We do a quick check to see if we need to do more work - * to initialise a static condition variable. We check - * again inside the guarded section of __ptw32_cond_check_need_init() - * to avoid race conditions. - */ - if (*cond == (pthread_cond_t) __PTW32_OBJECT_AUTO_INIT) - {(*cond - result = __ptw32_cond_check_need_init(cond); - } - - if (result != 0 && result != EBUSY) - {(result - return result; - } - - cv = *cond; - - /* - * Synchronize access to waiters blocked count (LEVEL-1) - */ - if (sem_wait(&(cv->semBlockLock)) != 0) - {(sem_wait(&(cv->semBlockLock)) - return errno; - } - - cv->nWaitersBlocked++; - - /* - * Thats it. Counted means waiting, no more access needed - */ - if (sem_post(&(cv->semBlockLock)) != 0) - {(sem_post(&(cv->semBlockLock)) - return errno; - } - - /* - * Setup this waiter cleanup handler - */ - cleanup_args.mutexPtr = mutex; - cleanup_args.cv = cv; - cleanup_args.resultPtr = &result; - - pthread_cleanup_push (__ptw32_cond_wait_cleanup, (void *) &cleanup_args); - - /* - * Now we can release 'mutex' and... - */ - if ((result = pthread_mutex_unlock (mutex)) == 0) - {((result - - /* - * ...wait to be awakened by - * pthread_cond_signal, or - * pthread_cond_broadcast, or - * timeout, or - * thread cancellation - * - * Note: - * - * __ptw32_sem_timedwait is a cancellation point, - * hence providing the mechanism for making - * pthread_cond_wait a cancellation point. - * We use the cleanup mechanism to ensure we - * re-lock the mutex and adjust (to)unblock(ed) waiters - * counts if we are cancelled, timed out or signalled. - */ - if (__ptw32_sem_timedwait (&(cv->semBlockQueue), abstime) != 0) - {(__ptw32_sem_timedwait - result = __PTW32_GET_ERRNO(); - } - } - - /* - * Always cleanup - */ - pthread_cleanup_pop (1); - - - /* - * "result" can be modified by the cleanup handler. - */ - return (result); - -} /* __ptw32_cond_timedwait */ - - -static int -__ptw32_cond_unblock (pthread_cond_t * cond, - int unblockAll) -{ - int result; - pthread_cond_t cv; - - if (cond == NULL || *cond == NULL) - {(cond - return EINVAL; - } - - cv = *cond; - - /* - * No-op if the CV is static and hasn't been initialised yet. - * Assuming that any race condition is harmless. - */ - if (cv == (pthread_cond_t) __PTW32_OBJECT_AUTO_INIT) - {(cv - return 0; - } - - /* - * Synchronize access to waiters blocked count (LEVEL-1) - */ - if (sem_wait(&(cv->semBlockLock)) != 0) - {(sem_wait(&(cv->semBlockLock)) - return errno; - } - - /* - * Synchronize access to waiters (to)unblock(ed) counts (LEVEL-2) - * This sync.level supports _timedwait and cancellation - */ - if ((result = pthread_mutex_lock(&(cv->mtxUnblockLock))) != 0) - {((result - return result; - } - - /* - * Adjust waiters blocked and unblocked counts (collect garbage) - */ - if (cv->nWaitersUnblocked != 0) - {(cv->nWaitersUnblocked - cv->nWaitersBlocked -= cv->nWaitersUnblocked; - cv->nWaitersUnblocked = 0; - } - - /* - * If (after adjustment) there are still some waiters blocked counted... - */ - if ( cv->nWaitersBlocked > 0) - {( - /* - * We will unblock first waiter and leave semBlockLock/LEVEL-1 locked - * LEVEL-1 access is left disabled until last signal/unblock -completes - */ - cv->nWaitersToUnblock = (unblockAll) ? cv->nWaitersBlocked : 1; - - /* - * No more LEVEL-2 access to waiters (to)unblock(ed) counts needed - * This sync.level supports _timedwait and cancellation - */ - if ((result = pthread_mutex_unlock(&(cv->mtxUnblockLock))) != 0) - {((result - return result; - } - - - /* - * Now, with LEVEL-2 lock released let first waiter go through -semaphore - */ - if (sem_post(&(cv->semBlockQueue)) != 0) - {(sem_post(&(cv->semBlockQueue)) - return errno; - } - } - /* - * No waiter blocked - no more LEVEL-1 access to blocked count needed... - */ - else if (sem_post(&(cv->semBlockLock)) != 0) - { - return errno; - } - /* - * ...and no more LEVEL-2 access to waiters (to)unblock(ed) counts needed -too - * This sync.level supports _timedwait and cancellation - */ - else - { - result = pthread_mutex_unlock(&(cv->mtxUnblockLock)); - } - - return(result); - -} /* __ptw32_cond_unblock */ - -int -pthread_cond_wait (pthread_cond_t * cond, - pthread_mutex_t * mutex) -{ - /* The NULL abstime arg means INFINITE waiting. */ - return(__ptw32_cond_timedwait(cond, mutex, NULL)); -} /* pthread_cond_wait */ - - -int -pthread_cond_timedwait (pthread_cond_t * cond, - pthread_mutex_t * mutex, - const struct timespec *abstime) -{ - if (abstime == NULL) - {(abstime - return EINVAL; - } - - return(__ptw32_cond_timedwait(cond, mutex, abstime)); -} /* pthread_cond_timedwait */ - - -int -pthread_cond_signal (pthread_cond_t * cond) -{ - /* The '0'(FALSE) unblockAll arg means unblock ONE waiter. */ - return(__ptw32_cond_unblock(cond, 0)); -} /* pthread_cond_signal */ - -int -pthread_cond_broadcast (pthread_cond_t * cond) -{ - /* The '1'(TRUE) unblockAll arg means unblock ALL waiters. */ - return(__ptw32_cond_unblock(cond, 1)); -} /* pthread_cond_broadcast */ - - - - -TEREKHOV@de.ibm.com on 17.01.2001 01:00:57 - -Please respond to TEREKHOV@de.ibm.com - -To: pthreads-win32@sourceware.cygnus.com -cc: schmidt@uci.edu -Subject: win32 conditions: sem+counter+event = broadcast_deadlock + - spur.wakeup/unfairness/incorrectness ?? - - - - - - - -Hi, - -Problem 1: broadcast_deadlock - -It seems that current implementation does not provide "atomic" -broadcasts. That may lead to "nested" broadcasts... and it seems -that nested case is not handled correctly -> producing a broadcast -DEADLOCK as a result. - -Scenario: - -N (>1) waiting threads W1..N are blocked (in _wait) on condition's -semaphore. - -Thread B1 calls pthread_cond_broadcast, which results in "releasing" N -W threads via incrementing semaphore counter by N (stored in -cv->waiters) BUT cv->waiters counter does not change!! The caller -thread B1 remains blocked on cv->waitersDone event (auto-reset!!) BUT -condition is not protected from starting another broadcast (when called -on another thread) while still waiting for the "old" broadcast to -complete on thread B1. - -M (>=0, waiters counter. - -L (N-M) "late" waiter W threads are a) still blocked/not returned from -their semaphore wait call or b) were preempted after sem_wait but before -lock( &cv->waitersLock ) or c) are blocked on cv->waitersLock. - -cv->waiters is still > 0 (= L). - -Another thread B2 (or some W thread from M group) calls -pthread_cond_broadcast and gains access to counter... neither a) nor b) -prevent thread B2 in pthread_cond_broadcast from gaining access to -counter and starting another broadcast ( for c) - it depends on -cv->waitersLock scheduling rules: FIFO=OK, PRTY=PROBLEM,... ) - -That call to pthread_cond_broadcast (on thread B2) will result in -incrementing semaphore by cv->waiters (=L) which is INCORRECT (all -W1..N were in fact already released by thread B1) and waiting on -_auto-reset_ event cv->waitersDone which is DEADLY WRONG (produces a -deadlock)... - -All late W1..L threads now have a chance to complete their _wait call. -Last W_L thread sets an auto-reselt event cv->waitersDone which will -release either B1 or B2 leaving one of B threads in a deadlock. - -Problem 2: spur.wakeup/unfairness/incorrectness - -It seems that: - -a) because of the same problem with counter which does not reflect the -actual number of NOT RELEASED waiters, the signal call may increment -a semaphore counter w/o having a waiter blocked on it. That will result -in (best case) spurious wake ups - performance degradation due to -unnecessary context switches and predicate re-checks and (in worth case) -unfairness/incorrectness problem - see b) - -b) neither signal nor broadcast prevent other threads - "new waiters" -(and in the case of signal, the caller thread as well) from going into -_wait and overtaking "old" waiters (already released but still not returned -from sem_wait on condition's semaphore). Win semaphore just [API DOC]: -"Maintains a count between zero and some maximum value, limiting the number -of threads that are simultaneously accessing a shared resource." Calling -ReleaseSemaphore does not imply (at least not documented) that on return -from ReleaseSemaphore all waiters will in fact become released (returned -from their Wait... call) and/or that new waiters calling Wait... afterwards -will become less importance. It is NOT documented to be an atomic release -of -waiters... And even if it would be there is still a problem with a thread -being preempted after Wait on semaphore and before Wait on cv->waitersLock -and scheduling rules for cv->waitersLock itself -(??WaitForMultipleObjects??) -That may result in unfairness/incorrectness problem as described -for SetEvent impl. in "Strategies for Implementing POSIX Condition -Variables -on Win32": http://www.cs.wustl.edu/~schmidt/win32-cv-1.html - -Unfairness -- The semantics of the POSIX pthread_cond_broadcast function is -to wake up all threads currently blocked in wait calls on the condition -variable. The awakened threads then compete for the external_mutex. To -ensure -fairness, all of these threads should be released from their -pthread_cond_wait calls and allowed to recheck their condition expressions -before other threads can successfully complete a wait on the condition -variable. - -Unfortunately, the SetEvent implementation above does not guarantee that -all -threads sleeping on the condition variable when cond_broadcast is called -will -acquire the external_mutex and check their condition expressions. Although -the Pthreads specification does not mandate this degree of fairness, the -lack of fairness can cause starvation. - -To illustrate the unfairness problem, imagine there are 2 threads, C1 and -C2, -that are blocked in pthread_cond_wait on condition variable not_empty_ that -is guarding a thread-safe message queue. Another thread, P1 then places two -messages onto the queue and calls pthread_cond_broadcast. If C1 returns -from -pthread_cond_wait, dequeues and processes the message, and immediately -waits -again then it and only it may end up acquiring both messages. Thus, C2 will -never get a chance to dequeue a message and run. - -The following illustrates the sequence of events: - -1. Thread C1 attempts to dequeue and waits on CV non_empty_ -2. Thread C2 attempts to dequeue and waits on CV non_empty_ -3. Thread P1 enqueues 2 messages and broadcasts to CV not_empty_ -4. Thread P1 exits -5. Thread C1 wakes up from CV not_empty_, dequeues a message and runs -6. Thread C1 waits again on CV not_empty_, immediately dequeues the 2nd - message and runs -7. Thread C1 exits -8. Thread C2 is the only thread left and blocks forever since - not_empty_ will never be signaled - -Depending on the algorithm being implemented, this lack of fairness may -yield -concurrent programs that have subtle bugs. Of course, application -developers -should not rely on the fairness semantics of pthread_cond_broadcast. -However, -there are many cases where fair implementations of condition variables can -simplify application code. - -Incorrectness -- A variation on the unfairness problem described above -occurs -when a third consumer thread, C3, is allowed to slip through even though it -was not waiting on condition variable not_empty_ when a broadcast occurred. - -To illustrate this, we will use the same scenario as above: 2 threads, C1 -and -C2, are blocked dequeuing messages from the message queue. Another thread, -P1 -then places two messages onto the queue and calls pthread_cond_broadcast. -C1 -returns from pthread_cond_wait, dequeues and processes the message. At this -time, C3 acquires the external_mutex, calls pthread_cond_wait and waits on -the events in WaitForMultipleObjects. Since C2 has not had a chance to run -yet, the BROADCAST event is still signaled. C3 then returns from -WaitForMultipleObjects, and dequeues and processes the message in the -queue. -Thus, C2 will never get a chance to dequeue a message and run. - -The following illustrates the sequence of events: - -1. Thread C1 attempts to dequeue and waits on CV non_empty_ -2. Thread C2 attempts to dequeue and waits on CV non_empty_ -3. Thread P1 enqueues 2 messages and broadcasts to CV not_empty_ -4. Thread P1 exits -5. Thread C1 wakes up from CV not_empty_, dequeues a message and runs -6. Thread C1 exits -7. Thread C3 waits on CV not_empty_, immediately dequeues the 2nd - message and runs -8. Thread C3 exits -9. Thread C2 is the only thread left and blocks forever since - not_empty_ will never be signaled - -In the above case, a thread that was not waiting on the condition variable -when a broadcast occurred was allowed to proceed. This leads to incorrect -semantics for a condition variable. - - -COMMENTS??? - -regards, -alexander. - ------------------------------------------------------------------------------ - -Subject: RE: FYI/comp.programming.threads/Re: pthread_cond_* - implementation questions -Date: Wed, 21 Feb 2001 11:54:47 +0100 -From: TEREKHOV@de.ibm.com -To: lthomas@arbitrade.com -CC: rpj@ise.canberra.edu.au, Thomas Pfaff , - Nanbor Wang - -Hi Louis, - -generation number 8.. - -had some time to revisit timeouts/spurious wakeup problem.. -found some bugs (in 7.b/c/d) and something to improve -(7a - using IPC semaphores but it should speedup Win32 -version as well). - -regards, -alexander. - ----------- Algorithm 8a / IMPL_SEM,UNBLOCK_STRATEGY == UNBLOCK_ALL ------ -given: -semBlockLock - bin.semaphore -semBlockQueue - semaphore -mtxExternal - mutex or CS -mtxUnblockLock - mutex or CS -nWaitersGone - int -nWaitersBlocked - int -nWaitersToUnblock - int - -wait( timeout ) { - - [auto: register int result ] // error checking omitted - [auto: register int nSignalsWasLeft ] - [auto: register int nWaitersWasGone ] - - sem_wait( semBlockLock ); - nWaitersBlocked++; - sem_post( semBlockLock ); - - unlock( mtxExternal ); - bTimedOut = sem_wait( semBlockQueue,timeout ); - - lock( mtxUnblockLock ); - if ( 0 != (nSignalsWasLeft = nWaitersToUnblock) ) { - if ( bTimeout ) { // timeout (or canceled) - if ( 0 != nWaitersBlocked ) { - nWaitersBlocked--; - } - else { - nWaitersGone++; // count spurious wakeups - } - } - if ( 0 == --nWaitersToUnblock ) { - if ( 0 != nWaitersBlocked ) { - sem_post( semBlockLock ); // open the gate - nSignalsWasLeft = 0; // do not open the gate below -again - } - else if ( 0 != (nWaitersWasGone = nWaitersGone) ) { - nWaitersGone = 0; - } - } - } - else if ( INT_MAX/2 == ++nWaitersGone ) { // timeout/canceled or spurious -semaphore :-) - sem_wait( semBlockLock ); - nWaitersBlocked -= nWaitersGone; // something is going on here - -test of timeouts? :-) - sem_post( semBlockLock ); - nWaitersGone = 0; - } - unlock( mtxUnblockLock ); - - if ( 1 == nSignalsWasLeft ) { - if ( 0 != nWaitersWasGone ) { - // sem_adjust( -nWaitersWasGone ); - while ( nWaitersWasGone-- ) { - sem_wait( semBlockLock ); // better now than spurious -later - } - } - sem_post( semBlockLock ); // open the gate - } - - lock( mtxExternal ); - - return ( bTimedOut ) ? ETIMEOUT : 0; -} - -signal(bAll) { - - [auto: register int result ] - [auto: register int nSignalsToIssue] - - lock( mtxUnblockLock ); - - if ( 0 != nWaitersToUnblock ) { // the gate is closed!!! - if ( 0 == nWaitersBlocked ) { // NO-OP - return unlock( mtxUnblockLock ); - } - if (bAll) { - nWaitersToUnblock += nSignalsToIssue=nWaitersBlocked; - nWaitersBlocked = 0; - } - else { - nSignalsToIssue = 1; - nWaitersToUnblock++; - nWaitersBlocked--; - } - } - else if ( nWaitersBlocked > nWaitersGone ) { // HARMLESS RACE CONDITION! - sem_wait( semBlockLock ); // close the gate - if ( 0 != nWaitersGone ) { - nWaitersBlocked -= nWaitersGone; - nWaitersGone = 0; - } - if (bAll) { - nSignalsToIssue = nWaitersToUnblock = nWaitersBlocked; - nWaitersBlocked = 0; - } - else { - nSignalsToIssue = nWaitersToUnblock = 1; - nWaitersBlocked--; - } - } - else { // NO-OP - return unlock( mtxUnblockLock ); - } - - unlock( mtxUnblockLock ); - sem_post( semBlockQueue,nSignalsToIssue ); - return result; -} - ----------- Algorithm 8b / IMPL_SEM,UNBLOCK_STRATEGY == UNBLOCK_ONEBYONE ------- -given: -semBlockLock - bin.semaphore -semBlockQueue - bin.semaphore -mtxExternal - mutex or CS -mtxUnblockLock - mutex or CS -nWaitersGone - int -nWaitersBlocked - int -nWaitersToUnblock - int - -wait( timeout ) { - - [auto: register int result ] // error checking omitted - [auto: register int nWaitersWasGone ] - [auto: register int nSignalsWasLeft ] - - sem_wait( semBlockLock ); - nWaitersBlocked++; - sem_post( semBlockLock ); - - unlock( mtxExternal ); - bTimedOut = sem_wait( semBlockQueue,timeout ); - - lock( mtxUnblockLock ); - if ( 0 != (nSignalsWasLeft = nWaitersToUnblock) ) { - if ( bTimeout ) { // timeout (or canceled) - if ( 0 != nWaitersBlocked ) { - nWaitersBlocked--; - nSignalsWasLeft = 0; // do not unblock next waiter -below (already unblocked) - } - else { - nWaitersGone = 1; // spurious wakeup pending!! - } - } - if ( 0 == --nWaitersToUnblock && - if ( 0 != nWaitersBlocked ) { - sem_post( semBlockLock ); // open the gate - nSignalsWasLeft = 0; // do not open the gate below -again - } - else if ( 0 != (nWaitersWasGone = nWaitersGone) ) { - nWaitersGone = 0; - } - } - } - else if ( INT_MAX/2 == ++nWaitersGone ) { // timeout/canceled or spurious -semaphore :-) - sem_wait( semBlockLock ); - nWaitersBlocked -= nWaitersGone; // something is going on here - -test of timeouts? :-) - sem_post( semBlockLock ); - nWaitersGone = 0; - } - unlock( mtxUnblockLock ); - - if ( 1 == nSignalsWasLeft ) { - if ( 0 != nWaitersWasGone ) { - // sem_adjust( -1 ); - sem_wait( semBlockQueue ); // better now than spurious -later - } - sem_post( semBlockLock ); // open the gate - } - else if ( 0 != nSignalsWasLeft ) { - sem_post( semBlockQueue ); // unblock next waiter - } - - lock( mtxExternal ); - - return ( bTimedOut ) ? ETIMEOUT : 0; -} - -signal(bAll) { - - [auto: register int result ] - - lock( mtxUnblockLock ); - - if ( 0 != nWaitersToUnblock ) { // the gate is closed!!! - if ( 0 == nWaitersBlocked ) { // NO-OP - return unlock( mtxUnblockLock ); - } - if (bAll) { - nWaitersToUnblock += nWaitersBlocked; - nWaitersBlocked = 0; - } - else { - nWaitersToUnblock++; - nWaitersBlocked--; - } - unlock( mtxUnblockLock ); - } - else if ( nWaitersBlocked > nWaitersGone ) { // HARMLESS RACE CONDITION! - sem_wait( semBlockLock ); // close the gate - if ( 0 != nWaitersGone ) { - nWaitersBlocked -= nWaitersGone; - nWaitersGone = 0; - } - if (bAll) { - nWaitersToUnblock = nWaitersBlocked; - nWaitersBlocked = 0; - } - else { - nWaitersToUnblock = 1; - nWaitersBlocked--; - } - unlock( mtxUnblockLock ); - sem_post( semBlockQueue ); - } - else { // NO-OP - unlock( mtxUnblockLock ); - } - - return result; -} - ----------- Algorithm 8c / IMPL_EVENT,UNBLOCK_STRATEGY == UNBLOCK_ONEBYONE ---------- -given: -hevBlockLock - auto-reset event -hevBlockQueue - auto-reset event -mtxExternal - mutex or CS -mtxUnblockLock - mutex or CS -nWaitersGone - int -nWaitersBlocked - int -nWaitersToUnblock - int - -wait( timeout ) { - - [auto: register int result ] // error checking omitted - [auto: register int nSignalsWasLeft ] - [auto: register int nWaitersWasGone ] - - wait( hevBlockLock,INFINITE ); - nWaitersBlocked++; - set_event( hevBlockLock ); - - unlock( mtxExternal ); - bTimedOut = wait( hevBlockQueue,timeout ); - - lock( mtxUnblockLock ); - if ( 0 != (SignalsWasLeft = nWaitersToUnblock) ) { - if ( bTimeout ) { // timeout (or canceled) - if ( 0 != nWaitersBlocked ) { - nWaitersBlocked--; - nSignalsWasLeft = 0; // do not unblock next waiter -below (already unblocked) - } - else { - nWaitersGone = 1; // spurious wakeup pending!! - } - } - if ( 0 == --nWaitersToUnblock ) - if ( 0 != nWaitersBlocked ) { - set_event( hevBlockLock ); // open the gate - nSignalsWasLeft = 0; // do not open the gate below -again - } - else if ( 0 != (nWaitersWasGone = nWaitersGone) ) { - nWaitersGone = 0; - } - } - } - else if ( INT_MAX/2 == ++nWaitersGone ) { // timeout/canceled or spurious -event :-) - wait( hevBlockLock,INFINITE ); - nWaitersBlocked -= nWaitersGone; // something is going on here - -test of timeouts? :-) - set_event( hevBlockLock ); - nWaitersGone = 0; - } - unlock( mtxUnblockLock ); - - if ( 1 == nSignalsWasLeft ) { - if ( 0 != nWaitersWasGone ) { - reset_event( hevBlockQueue ); // better now than spurious -later - } - set_event( hevBlockLock ); // open the gate - } - else if ( 0 != nSignalsWasLeft ) { - set_event( hevBlockQueue ); // unblock next waiter - } - - lock( mtxExternal ); - - return ( bTimedOut ) ? ETIMEOUT : 0; -} - -signal(bAll) { - - [auto: register int result ] - - lock( mtxUnblockLock ); - - if ( 0 != nWaitersToUnblock ) { // the gate is closed!!! - if ( 0 == nWaitersBlocked ) { // NO-OP - return unlock( mtxUnblockLock ); - } - if (bAll) { - nWaitersToUnblock += nWaitersBlocked; - nWaitersBlocked = 0; - } - else { - nWaitersToUnblock++; - nWaitersBlocked--; - } - unlock( mtxUnblockLock ); - } - else if ( nWaitersBlocked > nWaitersGone ) { // HARMLESS RACE CONDITION! - wait( hevBlockLock,INFINITE ); // close the gate - if ( 0 != nWaitersGone ) { - nWaitersBlocked -= nWaitersGone; - nWaitersGone = 0; - } - if (bAll) { - nWaitersToUnblock = nWaitersBlocked; - nWaitersBlocked = 0; - } - else { - nWaitersToUnblock = 1; - nWaitersBlocked--; - } - unlock( mtxUnblockLock ); - set_event( hevBlockQueue ); - } - else { // NO-OP - unlock( mtxUnblockLock ); - } - - return result; -} - ----------- Algorithm 8d / IMPL_EVENT,UNBLOCK_STRATEGY == UNBLOCK_ALL ------ -given: -hevBlockLock - auto-reset event -hevBlockQueueS - auto-reset event // for signals -hevBlockQueueB - manual-reset even // for broadcasts -mtxExternal - mutex or CS -mtxUnblockLock - mutex or CS -eBroadcast - int // 0: no broadcast, 1: broadcast, 2: -broadcast after signal(s) -nWaitersGone - int -nWaitersBlocked - int -nWaitersToUnblock - int - -wait( timeout ) { - - [auto: register int result ] // error checking omitted - [auto: register int eWasBroadcast ] - [auto: register int nSignalsWasLeft ] - [auto: register int nWaitersWasGone ] - - wait( hevBlockLock,INFINITE ); - nWaitersBlocked++; - set_event( hevBlockLock ); - - unlock( mtxExternal ); - bTimedOut = waitformultiple( hevBlockQueueS,hevBlockQueueB,timeout,ONE ); - - lock( mtxUnblockLock ); - if ( 0 != (SignalsWasLeft = nWaitersToUnblock) ) { - if ( bTimeout ) { // timeout (or canceled) - if ( 0 != nWaitersBlocked ) { - nWaitersBlocked--; - nSignalsWasLeft = 0; // do not unblock next waiter -below (already unblocked) - } - else if ( 1 != eBroadcast ) { - nWaitersGone = 1; - } - } - if ( 0 == --nWaitersToUnblock ) { - if ( 0 != nWaitersBlocked ) { - set_event( hevBlockLock ); // open the gate - nSignalsWasLeft = 0; // do not open the gate below -again - } - else { - if ( 0 != (eWasBroadcast = eBroadcast) ) { - eBroadcast = 0; - } - if ( 0 != (nWaitersWasGone = nWaitersGone ) { - nWaitersGone = 0; - } - } - } - else if ( 0 != eBroadcast ) { - nSignalsWasLeft = 0; // do not unblock next waiter -below (already unblocked) - } - } - else if ( INT_MAX/2 == ++nWaitersGone ) { // timeout/canceled or spurious -event :-) - wait( hevBlockLock,INFINITE ); - nWaitersBlocked -= nWaitersGone; // something is going on here - -test of timeouts? :-) - set_event( hevBlockLock ); - nWaitersGone = 0; - } - unlock( mtxUnblockLock ); - - if ( 1 == nSignalsWasLeft ) { - if ( 0 != eWasBroadcast ) { - reset_event( hevBlockQueueB ); - } - if ( 0 != nWaitersWasGone ) { - reset_event( hevBlockQueueS ); // better now than spurious -later - } - set_event( hevBlockLock ); // open the gate - } - else if ( 0 != nSignalsWasLeft ) { - set_event( hevBlockQueueS ); // unblock next waiter - } - - lock( mtxExternal ); - - return ( bTimedOut ) ? ETIMEOUT : 0; -} - -signal(bAll) { - - [auto: register int result ] - [auto: register HANDLE hevBlockQueue ] - - lock( mtxUnblockLock ); - - if ( 0 != nWaitersToUnblock ) { // the gate is closed!!! - if ( 0 == nWaitersBlocked ) { // NO-OP - return unlock( mtxUnblockLock ); - } - if (bAll) { - nWaitersToUnblock += nWaitersBlocked; - nWaitersBlocked = 0; - eBroadcast = 2; - hevBlockQueue = hevBlockQueueB; - } - else { - nWaitersToUnblock++; - nWaitersBlocked--; - return unlock( mtxUnblockLock ); - } - } - else if ( nWaitersBlocked > nWaitersGone ) { // HARMLESS RACE CONDITION! - wait( hevBlockLock,INFINITE ); // close the gate - if ( 0 != nWaitersGone ) { - nWaitersBlocked -= nWaitersGone; - nWaitersGone = 0; - } - if (bAll) { - nWaitersToUnblock = nWaitersBlocked; - nWaitersBlocked = 0; - eBroadcast = 1; - hevBlockQueue = hevBlockQueueB; - } - else { - nWaitersToUnblock = 1; - nWaitersBlocked--; - hevBlockQueue = hevBlockQueueS; - } - } - else { // NO-OP - return unlock( mtxUnblockLock ); - } - - unlock( mtxUnblockLock ); - set_event( hevBlockQueue ); - return result; -} ----------------------- Forwarded by Alexander Terekhov/Germany/IBM on -02/21/2001 09:13 AM --------------------------- - -Alexander Terekhov -02/20/2001 04:33 PM - -To: Louis Thomas -cc: - -From: Alexander Terekhov/Germany/IBM@IBMDE -Subject: RE: FYI/comp.programming.threads/Re: pthread_cond_* implementatio - n questions -Importance: Normal - ->Sorry, gotta take a break and work on something else for a while. ->Real work ->calls, unfortunately. I'll get back to you in two or three days. - -ok. no problem. here is some more stuff for pauses you might have -in between :) - ----------- Algorithm 7d / IMPL_EVENT,UNBLOCK_STRATEGY == UNBLOCK_ALL ------ -given: -hevBlockLock - auto-reset event -hevBlockQueueS - auto-reset event // for signals -hevBlockQueueB - manual-reset even // for broadcasts -mtxExternal - mutex or CS -mtxUnblockLock - mutex or CS -bBroadcast - int -nWaitersGone - int -nWaitersBlocked - int -nWaitersToUnblock - int - -wait( timeout ) { - - [auto: register int result ] // error checking omitted - [auto: register int bWasBroadcast ] - [auto: register int nSignalsWasLeft ] - - wait( hevBlockLock,INFINITE ); - nWaitersBlocked++; - set_event( hevBlockLock ); - - unlock( mtxExternal ); - bTimedOut = waitformultiple( hevBlockQueueS,hevBlockQueueB,timeout,ONE ); - - lock( mtxUnblockLock ); - if ( 0 != (SignalsWasLeft = nWaitersToUnblock) ) { - if ( bTimeout ) { // timeout (or canceled) - if ( 0 != nWaitersBlocked ) { - nWaitersBlocked--; - nSignalsWasLeft = 0; // do not unblock next waiter -below (already unblocked) - } - else if ( !bBroadcast ) { - wait( hevBlockQueueS,INFINITE ); // better now than spurious -later - } - } - if ( 0 == --nWaitersToUnblock ) { - if ( 0 != nWaitersBlocked ) { - if ( bBroadcast ) { - reset_event( hevBlockQueueB ); - bBroadcast = false; - } - set_event( hevBlockLock ); // open the gate - nSignalsWasLeft = 0; // do not open the gate below -again - } - else if ( false != (bWasBroadcast = bBroadcast) ) { - bBroadcast = false; - } - } - else { - bWasBroadcast = bBroadcast; - } - } - else if ( INT_MAX/2 == ++nWaitersGone ) { // timeout/canceled or spurious -event :-) - wait( hevBlockLock,INFINITE ); - nWaitersBlocked -= nWaitersGone; // something is going on here - -test of timeouts? :-) - set_event( hevBlockLock ); - nWaitersGone = 0; - } - unlock( mtxUnblockLock ); - - if ( 1 == nSignalsWasLeft ) { - if ( bWasBroadcast ) { - reset_event( hevBlockQueueB ); - } - set_event( hevBlockLock ); // open the gate - } - else if ( 0 != nSignalsWasLeft && !bWasBroadcast ) { - set_event( hevBlockQueueS ); // unblock next waiter - } - - lock( mtxExternal ); - - return ( bTimedOut ) ? ETIMEOUT : 0; -} - -signal(bAll) { - - [auto: register int result ] - [auto: register HANDLE hevBlockQueue ] - - lock( mtxUnblockLock ); - - if ( 0 != nWaitersToUnblock ) { // the gate is closed!!! - if ( 0 == nWaitersBlocked ) { // NO-OP - return unlock( mtxUnblockLock ); - } - if (bAll) { - nWaitersToUnblock += nWaitersBlocked; - nWaitersBlocked = 0; - bBroadcast = true; - hevBlockQueue = hevBlockQueueB; - } - else { - nWaitersToUnblock++; - nWaitersBlocked--; - return unlock( mtxUnblockLock ); - } - } - else if ( nWaitersBlocked > nWaitersGone ) { // HARMLESS RACE CONDITION! - wait( hevBlockLock,INFINITE ); // close the gate - if ( 0 != nWaitersGone ) { - nWaitersBlocked -= nWaitersGone; - nWaitersGone = 0; - } - if (bAll) { - nWaitersToUnblock = nWaitersBlocked; - nWaitersBlocked = 0; - bBroadcast = true; - hevBlockQueue = hevBlockQueueB; - } - else { - nWaitersToUnblock = 1; - nWaitersBlocked--; - hevBlockQueue = hevBlockQueueS; - } - } - else { // NO-OP - return unlock( mtxUnblockLock ); - } - - unlock( mtxUnblockLock ); - set_event( hevBlockQueue ); - return result; -} - - ----------------------------------------------------------------------------- - -Subject: RE: FYI/comp.programming.threads/Re: pthread_cond_* implementatio - n questions -Date: Mon, 26 Feb 2001 22:20:12 -0600 -From: Louis Thomas -To: "'TEREKHOV@de.ibm.com'" -CC: rpj@ise.canberra.edu.au, Thomas Pfaff , - Nanbor Wang - - -Sorry all. Busy week. - -> this insures the fairness -> which POSIX does not (e.g. two subsequent broadcasts - the gate does -insure -> that first wave waiters will start the race for the mutex before waiters -> from the second wave - Linux pthreads process/unblock both waves -> concurrently...) - -I'm not sure how we are any more fair about this than Linux. We certainly -don't guarantee that the threads released by the first broadcast will get -the external mutex before the threads of the second wave. In fact, it is -possible that those threads will never get the external mutex if there is -enough contention for it. - -> e.g. i was thinking about implementation with a pool of -> N semaphores/counters [...] - -I considered that too. The problem is as you mentioned in a). You really -need to assign threads to semaphores once you know how you want to wake them -up, not when they first begin waiting which is the only time you can assign -them. - -> well, i am not quite sure that i've fully understood your scenario, - -Hmm. Well, it think it's an important example, so I'll try again. First, we -have thread A which we KNOW is waiting on a condition. As soon as it becomes -unblocked for any reason, we will know because it will set a flag. Since the -flag is not set, we are 100% confident that thread A is waiting on the -condition. We have another thread, thread B, which has acquired the mutex -and is about to wait on the condition. Thus it is pretty clear that at any -point, either just A is waiting, or A and B are waiting. Now thread C comes -along. C is about to do a broadcast on the condition. A broadcast is -guaranteed to unblock all threads currently waiting on a condition, right? -Again, we said that either just A is waiting, or A and B are both waiting. -So, when C does its broadcast, depending upon whether B has started waiting -or not, thread C will unblock A or unblock A and B. Either way, C must -unblock A, right? - -Now, you said anything that happens is correct so long as a) "a signal is -not lost between unlocking the mutex and waiting on the condition" and b) "a -thread must not steal a signal it sent", correct? Requirement b) is easy to -satisfy: in this scenario, thread C will never wait on the condition, so it -won't steal any signals. Requirement a) is not hard either. The only way we -could fail to meet requirement a) in this scenario is if thread B was -started waiting but didn't wake up because a signal was lost. This will not -happen. - -Now, here is what happens. Assume thread C beats thread B. Thread C looks to -see how many threads are waiting on the condition. Thread C sees just one -thread, thread A, waiting. It does a broadcast waking up just one thread -because just one thread is waiting. Next, before A can become unblocked, -thread B begins waiting. Now there are two threads waiting, but only one -will be unblocked. Suppose B wins. B will become unblocked. A will not -become unblocked, because C only unblocked one thread (sema_post cond, 1). -So at the end, B finishes and A remains blocked. - -We have met both of your requirements, so by your rules, this is an -acceptable outcome. However, I think that the spec says this is an -unacceptable outcome! We know for certain that A was waiting and that C did -a broadcast, but A did not become unblocked! Yet, the spec says that a -broadcast wakes up all waiting threads. This did not happen. Do you agree -that this shows your rules are not strict enough? - -> and what about N2? :) this one does allow almost everything. - -Don't get me started about rule #2. I'll NEVER advocate an algorithm that -uses rule 2 as an excuse to suck! - -> but it is done (decrement)under mutex protection - this is not a subject -> of a race condition. - -You are correct. My mistake. - -> i would remove "_bTimedOut=false".. after all, it was a real timeout.. - -I disagree. A thread that can't successfully retract its waiter status can't -really have timed out. If a thread can't return without executing extra code -to deal with the fact that someone tried to unblock it, I think it is a poor -idea to pretend we -didn't realize someone was trying to signal us. After all, a signal is more -important than a time out. - -> when nSignaled != 0, it is possible to update nWaiters (--) and do not -> touch nGone - -I realize this, but I was thinking that writing it the other ways saves -another if statement. - -> adjust only if nGone != 0 and save one cache memory write - probably much -slower than 'if' - -Hmm. You are probably right. - -> well, in a strange (e.g. timeout test) program you may (theoretically) -> have an overflow of nWaiters/nGone counters (with waiters repeatedly -timing -> out and no signals at all). - -Also true. Not only that, but you also have the possibility that one could -overflow the number of waiters as well! However, considering the limit you -have chosen for nWaitersGone, I suppose it is unlikely that anyone would be -able to get INT_MAX/2 threads waiting on a single condition. :) - -Analysis of 8a: - -It looks correct to me. - -What are IPC semaphores? - -In the line where you state, "else if ( nWaitersBlocked > nWaitersGone ) { -// HARMLESS RACE CONDITION!" there is no race condition for nWaitersGone -because nWaitersGone is never modified without holding mtxUnblockLock. You -are correct that there is a harmless race on nWaitersBlocked, which can -increase and make the condition become true just after we check it. If this -happens, we interpret it as the wait starting after the signal. - -I like your optimization of this. You could improve Alg. 6 as follows: ----------- Algorithm 6b ---------- -signal(bAll) { - _nSig=0 - lock counters - // this is safe because nWaiting can only be decremented by a thread that - // owns counters and nGone can only be changed by a thread that owns -counters. - if (nWaiting>nGone) { - if (0==nSignaled) { - sema_wait gate // close gate if not already closed - } - if (nGone>0) { - nWaiting-=nGone - nGone=0 - } - _nSig=bAll?nWaiting:1 - nSignaled+=_nSig - nWaiting-=_nSig - } - unlock counters - if (0!=_nSig) { - sema_post queue, _nSig - } -} ----------- ---------- ---------- -I guess this wouldn't apply to Alg 8a because nWaitersGone changes meanings -depending upon whether the gate is open or closed. - -In the loop "while ( nWaitersWasGone-- ) {" you do a sema_wait on -semBlockLock. Perhaps waiting on semBlockQueue would be a better idea. - -What have you gained by making the last thread to be signaled do the waits -for all the timed out threads, besides added complexity? It took me a long -time to figure out what your objective was with this, to realize you were -using nWaitersGone to mean two different things, and to verify that you -hadn't introduced any bug by doing this. Even now I'm not 100% sure. - -What has all this playing about with nWaitersGone really gained us besides a -lot of complexity (it is much harder to verify that this solution is -correct), execution overhead (we now have a lot more if statements to -evaluate), and space overhead (more space for the extra code, and another -integer in our data)? We did manage to save a lock/unlock pair in an -uncommon case (when a time out occurs) at the above mentioned expenses in -the common cases. - -As for 8b, c, and d, they look ok though I haven't studied them thoroughly. -What would you use them for? - - Later, - -Louis! :) - ------------------------------------------------------------------------------ - -Subject: RE: FYI/comp.programming.threads/Re: pthread_cond_* implementatio - n questions -Date: Tue, 27 Feb 2001 15:51:28 +0100 -From: TEREKHOV@de.ibm.com -To: Louis Thomas -CC: rpj@ise.canberra.edu.au, Thomas Pfaff , - Nanbor Wang - -Hi Louis, - ->> that first wave waiters will start the race for the mutex before waiters ->> from the second wave - Linux pthreads process/unblock both waves ->> concurrently...) -> ->I'm not sure how we are any more fair about this than Linux. We certainly ->don't guarantee that the threads released by the first broadcast will get ->the external mutex before the threads of the second wave. In fact, it is ->possible that those threads will never get the external mutex if there is ->enough contention for it. - -correct. but gate is nevertheless more fair than Linux because of the -barrier it establishes between two races (1st and 2nd wave waiters) for -the mutex which under 'normal' circumstances (e.g. all threads of equal -priorities,..) will 'probably' result in fair behaviour with respect to -mutex ownership. - ->> well, i am not quite sure that i've fully understood your scenario, -> ->Hmm. Well, it think it's an important example, so I'll try again. ... - -ok. now i seem to understand this example. well, now it seems to me -that the only meaningful rule is just: - -a) "a signal is not lost between unlocking the mutex and waiting on the -condition" - -and that the rule - -b) "a thread must not steal a signal it sent" - -is not needed at all because a thread which violates b) also violates a). - -i'll try to explain.. - -i think that the most important thing is how POSIX defines waiter's -visibility: - -"if another thread is able to acquire the mutex after the about-to-block -thread -has released it, then a subsequent call to pthread_cond_signal() or -pthread_cond_broadcast() in that thread behaves as if it were issued after -the about-to-block thread has blocked. " - -my understanding is the following: - -1) there is no guarantees whatsoever with respect to whether -signal/broadcast -will actually unblock any 'waiter' if it is done w/o acquiring the mutex -first -(note that a thread may release it before signal/broadcast - it does not -matter). - -2) it is guaranteed that waiters become 'visible' - eligible for unblock as -soon -as signalling thread acquires the mutex (but not before!!) - -so.. - ->So, when C does its broadcast, depending upon whether B has started -waiting ->or not, thread C will unblock A or unblock A and B. Either way, C must ->unblock A, right? - -right. but only if C did acquire the mutex prior to broadcast (it may -release it before broadcast as well). - -implementation will violate waiters visibility rule (signal will become -lost) -if C will not unblock A. - ->Now, here is what happens. Assume thread C beats thread B. Thread C looks -to ->see how many threads are waiting on the condition. Thread C sees just one ->thread, thread A, waiting. It does a broadcast waking up just one thread ->because just one thread is waiting. Next, before A can become unblocked, ->thread B begins waiting. Now there are two threads waiting, but only one ->will be unblocked. Suppose B wins. B will become unblocked. A will not ->become unblocked, because C only unblocked one thread (sema_post cond, 1). ->So at the end, B finishes and A remains blocked. - -thread C did acquire the mutex ("Thread C sees just one thread, thread A, -waiting"). beginning from that moment it is guaranteed that subsequent -broadcast will unblock A. Otherwise we will have a lost signal with respect -to A. I do think that it does not matter whether the signal was physically -(completely) lost or was just stolen by another thread (B) - in both cases -it was simply lost with respect to A. - ->..Do you agree that this shows your rules are not strict enough? - -probably the opposite.. :-) i think that it shows that the only meaningful -rule is - -a) "a signal is not lost between unlocking the mutex and waiting on the -condition" - -with clarification of waiters visibility as defined by POSIX above. - ->> i would remove "_bTimedOut=false".. after all, it was a real timeout.. -> ->I disagree. A thread that can't successfully retract its waiter status -can't ->really have timed out. If a thread can't return without executing extra -code ->to deal with the fact that someone tried to unblock it, I think it is a -poor ->idea to pretend we ->didn't realize someone was trying to signal us. After all, a signal is -more ->important than a time out. - -a) POSIX does allow timed out thread to consume a signal (cancelled is -not). -b) ETIMEDOUT status just says that: "The time specified by abstime to -pthread_cond_timedwait() has passed." -c) it seem to me that hiding timeouts would violate "The -pthread_cond_timedwait() -function is the same as pthread_cond_wait() except that an error is -returned if -the absolute time specified by abstime passes (that is, system time equals -or -exceeds abstime) before the condition cond is signaled or broadcasted" -because -the abs. time did really pass before cond was signaled (waiter was -released via semaphore). however, if it really matters, i could imaging -that we -can save an abs. time of signal/broadcast and compare it with timeout after -unblock to find out whether it was a 'real' timeout or not. absent this -check -i do think that hiding timeouts would result in technical violation of -specification.. but i think that this check is not important and we can -simply -trust timeout error code provided by wait since we are not trying to make -'hard' realtime implementation. - ->What are IPC semaphores? - - -int semctl(int, int, int, ...); -int semget(key_t, int, int); -int semop(int, struct sembuf *, size_t); - -they support adjustment of semaphore counter (semvalue) -in one single call - imaging Win32 ReleaseSemaphore( hsem,-N ) - ->In the line where you state, "else if ( nWaitersBlocked > nWaitersGone ) { ->// HARMLESS RACE CONDITION!" there is no race condition for nWaitersGone ->because nWaitersGone is never modified without holding mtxUnblockLock. You ->are correct that there is a harmless race on nWaitersBlocked, which can ->increase and make the condition become true just after we check it. If -this ->happens, we interpret it as the wait starting after the signal. - -well, the reason why i've asked on comp.programming.threads whether this -race -condition is harmless or not is that in order to be harmless it should not -violate the waiters visibility rule (see above). Fortunately, we increment -the counter under protection of external mutex.. so that any (signalling) -thread which will acquire the mutex next, should see the updated counter -(in signal) according to POSIX memory visibility rules and mutexes -(memory barriers). But i am not so sure how it actually works on -Win32/INTEL -which does not explicitly define any memory visibility rules :( - ->I like your optimization of this. You could improve Alg. 6 as follows: ->---------- Algorithm 6b ---------- ->signal(bAll) { -> _nSig=0 -> lock counters -> // this is safe because nWaiting can only be decremented by a thread -that -> // owns counters and nGone can only be changed by a thread that owns ->counters. -> if (nWaiting>nGone) { -> if (0==nSignaled) { -> sema_wait gate // close gate if not already closed -> } -> if (nGone>0) { -> nWaiting-=nGone -> nGone=0 -> } -> _nSig=bAll?nWaiting:1 -> nSignaled+=_nSig -> nWaiting-=_nSig -> } -> unlock counters -> if (0!=_nSig) { -> sema_post queue, _nSig -> } ->} ->---------- ---------- ---------- ->I guess this wouldn't apply to Alg 8a because nWaitersGone changes -meanings ->depending upon whether the gate is open or closed. - -agree. - ->In the loop "while ( nWaitersWasGone-- ) {" you do a sema_wait on ->semBlockLock. Perhaps waiting on semBlockQueue would be a better idea. - -you are correct. my mistake. - ->What have you gained by making the last thread to be signaled do the waits ->for all the timed out threads, besides added complexity? It took me a long ->time to figure out what your objective was with this, to realize you were ->using nWaitersGone to mean two different things, and to verify that you ->hadn't introduced any bug by doing this. Even now I'm not 100% sure. -> ->What has all this playing about with nWaitersGone really gained us besides -a ->lot of complexity (it is much harder to verify that this solution is ->correct), execution overhead (we now have a lot more if statements to ->evaluate), and space overhead (more space for the extra code, and another ->integer in our data)? We did manage to save a lock/unlock pair in an ->uncommon case (when a time out occurs) at the above mentioned expenses in ->the common cases. - -well, please consider the following: - -1) with multiple waiters unblocked (but some timed out) the trick with -counter -seem to ensure potentially higher level of concurrency by not delaying -most of unblocked waiters for semaphore cleanup - only the last one -will be delayed but all others would already contend/acquire/release -the external mutex - the critical section protected by mtxUnblockLock is -made smaller (increment + couple of IFs is faster than system/kernel call) -which i think is good in general. however, you are right, this is done -at expense of 'normal' waiters.. - -2) some semaphore APIs (e.g. POSIX IPC sems) do allow to adjust the -semaphore counter in one call => less system/kernel calls.. imagine: - -if ( 1 == nSignalsWasLeft ) { - if ( 0 != nWaitersWasGone ) { - ReleaseSemaphore( semBlockQueue,-nWaitersWasGone ); // better now -than spurious later - } - sem_post( semBlockLock ); // open the gate - } - -3) even on win32 a single thread doing multiple cleanup calls (to wait) -will probably result in faster execution (because of processor caching) -than multiple threads each doing a single call to wait. - ->As for 8b, c, and d, they look ok though I haven't studied them -thoroughly. ->What would you use them for? - -8b) for semaphores which do not allow to unblock multiple waiters -in a single call to post/release (e.g. POSIX realtime semaphores - -) - -8c/8d) for WinCE prior to 3.0 (WinCE 3.0 does have semaphores) - -ok. so, which one is the 'final' algorithm(s) which we should use in -pthreads-win32?? - -regards, -alexander. - ----------------------------------------------------------------------------- - -Louis Thomas on 02/27/2001 05:20:12 AM - -Please respond to Louis Thomas - -To: Alexander Terekhov/Germany/IBM@IBMDE -cc: rpj@ise.canberra.edu.au, Thomas Pfaff , Nanbor Wang - -Subject: RE: FYI/comp.programming.threads/Re: pthread_cond_* implementatio - n questions - -Sorry all. Busy week. - -> this insures the fairness -> which POSIX does not (e.g. two subsequent broadcasts - the gate does -insure -> that first wave waiters will start the race for the mutex before waiters -> from the second wave - Linux pthreads process/unblock both waves -> concurrently...) - -I'm not sure how we are any more fair about this than Linux. We certainly -don't guarantee that the threads released by the first broadcast will get -the external mutex before the threads of the second wave. In fact, it is -possible that those threads will never get the external mutex if there is -enough contention for it. - -> e.g. i was thinking about implementation with a pool of -> N semaphores/counters [...] - -I considered that too. The problem is as you mentioned in a). You really -need to assign threads to semaphores once you know how you want to wake -them -up, not when they first begin waiting which is the only time you can assign -them. - -> well, i am not quite sure that i've fully understood your scenario, - -Hmm. Well, it think it's an important example, so I'll try again. First, we -have thread A which we KNOW is waiting on a condition. As soon as it -becomes -unblocked for any reason, we will know because it will set a flag. Since -the -flag is not set, we are 100% confident that thread A is waiting on the -condition. We have another thread, thread B, which has acquired the mutex -and is about to wait on the condition. Thus it is pretty clear that at any -point, either just A is waiting, or A and B are waiting. Now thread C comes -along. C is about to do a broadcast on the condition. A broadcast is -guaranteed to unblock all threads currently waiting on a condition, right? -Again, we said that either just A is waiting, or A and B are both waiting. -So, when C does its broadcast, depending upon whether B has started waiting -or not, thread C will unblock A or unblock A and B. Either way, C must -unblock A, right? - -Now, you said anything that happens is correct so long as a) "a signal is -not lost between unlocking the mutex and waiting on the condition" and b) -"a -thread must not steal a signal it sent", correct? Requirement b) is easy to -satisfy: in this scenario, thread C will never wait on the condition, so it -won't steal any signals. Requirement a) is not hard either. The only way -we -could fail to meet requirement a) in this scenario is if thread B was -started waiting but didn't wake up because a signal was lost. This will not -happen. - -Now, here is what happens. Assume thread C beats thread B. Thread C looks -to -see how many threads are waiting on the condition. Thread C sees just one -thread, thread A, waiting. It does a broadcast waking up just one thread -because just one thread is waiting. Next, before A can become unblocked, -thread B begins waiting. Now there are two threads waiting, but only one -will be unblocked. Suppose B wins. B will become unblocked. A will not -become unblocked, because C only unblocked one thread (sema_post cond, 1). -So at the end, B finishes and A remains blocked. - -We have met both of your requirements, so by your rules, this is an -acceptable outcome. However, I think that the spec says this is an -unacceptable outcome! We know for certain that A was waiting and that C did -a broadcast, but A did not become unblocked! Yet, the spec says that a -broadcast wakes up all waiting threads. This did not happen. Do you agree -that this shows your rules are not strict enough? - -> and what about N2? :) this one does allow almost everything. - -Don't get me started about rule #2. I'll NEVER advocate an algorithm that -uses rule 2 as an excuse to suck! - -> but it is done (decrement)under mutex protection - this is not a subject -> of a race condition. - -You are correct. My mistake. - -> i would remove "_bTimedOut=false".. after all, it was a real timeout.. - -I disagree. A thread that can't successfully retract its waiter status -can't -really have timed out. If a thread can't return without executing extra -code -to deal with the fact that someone tried to unblock it, I think it is a -poor -idea to pretend we -didn't realize someone was trying to signal us. After all, a signal is more -important than a time out. - -> when nSignaled != 0, it is possible to update nWaiters (--) and do not -> touch nGone - -I realize this, but I was thinking that writing it the other ways saves -another if statement. - -> adjust only if nGone != 0 and save one cache memory write - probably much -slower than 'if' - -Hmm. You are probably right. - -> well, in a strange (e.g. timeout test) program you may (theoretically) -> have an overflow of nWaiters/nGone counters (with waiters repeatedly -timing -> out and no signals at all). - -Also true. Not only that, but you also have the possibility that one could -overflow the number of waiters as well! However, considering the limit you -have chosen for nWaitersGone, I suppose it is unlikely that anyone would be -able to get INT_MAX/2 threads waiting on a single condition. :) - -Analysis of 8a: - -It looks correct to me. - -What are IPC semaphores? - -In the line where you state, "else if ( nWaitersBlocked > nWaitersGone ) { -// HARMLESS RACE CONDITION!" there is no race condition for nWaitersGone -because nWaitersGone is never modified without holding mtxUnblockLock. You -are correct that there is a harmless race on nWaitersBlocked, which can -increase and make the condition become true just after we check it. If this -happens, we interpret it as the wait starting after the signal. - -I like your optimization of this. You could improve Alg. 6 as follows: ----------- Algorithm 6b ---------- -signal(bAll) { - _nSig=0 - lock counters - // this is safe because nWaiting can only be decremented by a thread that - // owns counters and nGone can only be changed by a thread that owns -counters. - if (nWaiting>nGone) { - if (0==nSignaled) { - sema_wait gate // close gate if not already closed - } - if (nGone>0) { - nWaiting-=nGone - nGone=0 - } - _nSig=bAll?nWaiting:1 - nSignaled+=_nSig - nWaiting-=_nSig - } - unlock counters - if (0!=_nSig) { - sema_post queue, _nSig - } -} ----------- ---------- ---------- -I guess this wouldn't apply to Alg 8a because nWaitersGone changes meanings -depending upon whether the gate is open or closed. - -In the loop "while ( nWaitersWasGone-- ) {" you do a sema_wait on -semBlockLock. Perhaps waiting on semBlockQueue would be a better idea. - -What have you gained by making the last thread to be signaled do the waits -for all the timed out threads, besides added complexity? It took me a long -time to figure out what your objective was with this, to realize you were -using nWaitersGone to mean two different things, and to verify that you -hadn't introduced any bug by doing this. Even now I'm not 100% sure. - -What has all this playing about with nWaitersGone really gained us besides -a -lot of complexity (it is much harder to verify that this solution is -correct), execution overhead (we now have a lot more if statements to -evaluate), and space overhead (more space for the extra code, and another -integer in our data)? We did manage to save a lock/unlock pair in an -uncommon case (when a time out occurs) at the above mentioned expenses in -the common cases. - -As for 8b, c, and d, they look ok though I haven't studied them thoroughly. -What would you use them for? - - Later, - -Louis! :) - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/README.NONPORTABLE b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/README.NONPORTABLE deleted file mode 100644 index ea504de..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/README.NONPORTABLE +++ /dev/null @@ -1,860 +0,0 @@ -This file documents non-portable functions and other issues. - -Non-portable functions included in pthreads-win32 -------------------------------------------------- - -BOOL -pthread_win32_test_features_np(int mask) - - This routine allows an application to check which - run-time auto-detected features are available within - the library. - - The possible features are: - - PTW32_SYSTEM_INTERLOCKED_COMPARE_EXCHANGE - Return TRUE if the native version of - InterlockedCompareExchange() is being used. - This feature is not meaningful in recent - library versions as MSVC builds only support - system implemented ICE. Note that all Mingw - builds use inlined asm versions of all the - Interlocked routines. - PTW32_ALERTABLE_ASYNC_CANCEL - Return TRUE is the QueueUserAPCEx package - QUSEREX.DLL is available and the AlertDrv.sys - driver is loaded into Windows, providing - alertable (pre-emptive) asyncronous threads - cancellation. If this feature returns FALSE - then the default async cancel scheme is in - use, which cannot cancel blocked threads. - - Features may be Or'ed into the mask parameter, in which case - the routine returns TRUE if any of the Or'ed features would - return TRUE. At this stage it doesn't make sense to Or features - but it may some day. - - -void * -pthread_timechange_handler_np(void *) - - To improve tolerance against operator or time service - initiated system clock changes. - - This routine can be called by an application when it - receives a WM_TIMECHANGE message from the system. At - present it broadcasts all condition variables so that - waiting threads can wake up and re-evaluate their - conditions and restart their timed waits if required. - - It has the same return type and argument type as a - thread routine so that it may be called directly - through pthread_create(), i.e. as a separate thread. - - Parameters - - Although a parameter must be supplied, it is ignored. - The value NULL can be used. - - Return values - - It can return an error EAGAIN to indicate that not - all condition variables were broadcast for some reason. - Otherwise, 0 is returned. - - If run as a thread, the return value is returned - through pthread_join(). - - The return value should be cast to an integer. - - -HANDLE -pthread_getw32threadhandle_np(pthread_t thread); - - Returns the win32 thread handle that the POSIX - thread "thread" is running as. - - Applications can use the win32 handle to set - win32 specific attributes of the thread. - -DWORD -pthread_getw32threadid_np (pthread_t thread) - - Returns the Windows native thread ID that the POSIX - thread "thread" is running as. - - Only valid when the library is built where - ! (defined(__MINGW64__) || defined(__MINGW32__)) || defined (__MSVCRT__) || defined (__DMC__) - and otherwise returns 0. - - -int -pthread_mutexattr_setkind_np(pthread_mutexattr_t * attr, int kind) - -int -pthread_mutexattr_getkind_np(pthread_mutexattr_t * attr, int *kind) - - These two routines are included for Linux compatibility - and are direct equivalents to the standard routines - pthread_mutexattr_settype - pthread_mutexattr_gettype - - pthread_mutexattr_setkind_np accepts the following - mutex kinds: - PTHREAD_MUTEX_FAST_NP - PTHREAD_MUTEX_ERRORCHECK_NP - PTHREAD_MUTEX_RECURSIVE_NP - - These are really just equivalent to (respectively): - PTHREAD_MUTEX_NORMAL - PTHREAD_MUTEX_ERRORCHECK - PTHREAD_MUTEX_RECURSIVE - - -int -pthread_delay_np (const struct timespec *interval) - - This routine causes a thread to delay execution for a specific period of time. - This period ends at the current time plus the specified interval. The routine - will not return before the end of the period is reached, but may return an - arbitrary amount of time after the period has gone by. This can be due to - system load, thread priorities, and system timer granularity. - - Specifying an interval of zero (0) seconds and zero (0) nanoseconds is - allowed and can be used to force the thread to give up the processor or to - deliver a pending cancellation request. - - This routine is a cancellation point. - - The timespec structure contains the following two fields: - - tv_sec is an integer number of seconds. - tv_nsec is an integer number of nanoseconds. - - Return Values - - If an error condition occurs, this routine returns an integer value - indicating the type of error. Possible return values are as follows: - - 0 Successful completion. - [EINVAL] The value specified by interval is invalid. - - -__int64 -pthread_getunique_np (pthread_t thr) - - Returns the unique number associated with thread thr. - The unique numbers are a simple way of positively identifying a thread when - pthread_t cannot be relied upon to identify the true thread instance. I.e. a - pthread_t value may be assigned to different threads throughout the life of a - process. - - Because pthreads4w (pthreads-win32) threads can be uniquely identified by their - pthread_t values this routine is provided only for source code compatibility. - - NOTE: if the library is re-initialised, i.e. by calling pthread_win32_process_detach_np() - followed by pthread_win32_process_attach_np(), then the unique number is reset along with - several other library global values. Library reinitialisation should not be required, - however, some older applications may still call these routines as they were once required to - do when statically linking the library. - -int -pthread_timedjoin_np (pthread_t thread, void **value_ptr, const struct timespec *abstime) - -int -pthread_tryjoin_np (pthread_t thread, void **value_ptr) - - These function is added for compatibility with Linux. - - -int -pthread_num_processors_np (void) - - This routine (found on HPUX systems) returns the number of processors - in the system. This implementation actually returns the number of - processors available to the process, which can be a lower number - than the system's number, depending on the process's affinity mask. - - -BOOL -pthread_win32_process_attach_np (void); - -BOOL -pthread_win32_process_detach_np (void); - -BOOL -pthread_win32_thread_attach_np (void); - -BOOL -pthread_win32_thread_detach_np (void); - - These functions contain the code normally run via DllMain - when the library is used as a dll. As of version 2.9.0 of the - library, static builds using either MSC or GCC will call - pthread_win32_process_* automatically at application startup and - exit respectively. - - pthread_win32_thread_attach_np() is currently a no-op. - - pthread_win32_thread_detach_np() is not a no-op. It cleans up the - implicit pthread handle that is allocated to any thread not started - via pthread_create(). Such non-posix threads should call this routine - when they exit, or call pthread_exit() to both cleanup and exit. - - These functions invariably return TRUE except for - pthread_win32_process_attach_np() which will return FALSE - if pthreads-win32 initialisation fails. - - -int -pthread_attr_getaffinity_np (pthread_attr_t * attr, size_t cpusetsize, cpu_set_t * cpuset); - -int -pthread_attr_setaffinity_np (pthread_attr_t * attr, size_t cpusetsize, const cpu_set_t * cpuset); - -int -pthread_getaffinity_np (pthread_t thread, size_t cpusetsize, cpu_set_t * cpuset); - -int -pthread_setaffinity_np (pthread_t thread, size_t cpusetsize, const cpu_set_t * cpuset); - - Manipulate the CPU affinity of threads. Compatibility with libgcc-based pthreads - implementations. - - -int -pthreadCancelableWait (HANDLE waitHandle); - -int -pthreadCancelableTimedWait (HANDLE waitHandle, DWORD timeout); - - These two functions provide hooks into the pthread_cancel - mechanism that will allow you to wait on a Windows handle - and make it a cancellation point. Both functions block - until either the given w32 handle is signaled, or - pthread_cancel has been called. It is implemented using - WaitForMultipleObjects on 'waitHandle' and a manually - reset w32 event used to implement pthread_cancel. - -int -pthread_getname_np(pthread_t thr, char *name, int len); - -If __PTW32_COMPATIBILITY_BSD or __PTW32_COMPATIBILITY_TRU64 defined -int -pthread_setname_np(pthread_t thr, const char *name, void *arg); - -Otherwise: -int -pthread_setname_np(pthread_t thr, const char *name); - - Set and get thread names. Compatibility. - - -struct timespec * -pthread_win32_getabstime_np (struct timespec * abstime, const struct timespec * relative); - - Primarily to facilitate writing unit tests but exported for convenience. - The struct timespec pointed to by the first parameter is modified to represent the - time 'now' plus an optional offset value timespec in a platform optimal way. - Returns the first parameter so is compatible as the struct timespec * parameter in - POSIX timed function calls, e.g. - - struct timespec abstime, reltime = { 0, 5000000 } /* 5 ms */; - pthread_mutex_timedwait(&mtx, pthread_win32_getabstime_np(&abstime, &reltime)); - - -Non-portable issues -------------------- - -Thread priority - - POSIX defines a single contiguous range of numbers that determine a - thread's priority. Win32 defines priority classes and priority - levels relative to these classes. Classes are simply priority base - levels that the defined priority levels are relative to such that, - changing a process's priority class will change the priority of all - of it's threads, while the threads retain the same relativity to each - other. - - A Win32 system defines a single contiguous monotonic range of values - that define system priority levels, just like POSIX. However, Win32 - restricts individual threads to a subset of this range on a - per-process basis. - - The following table shows the base priority levels for combinations - of priority class and priority value in Win32. - - Process Priority Class Thread Priority Level - ----------------------------------------------------------------- - 1 IDLE_PRIORITY_CLASS THREAD_PRIORITY_IDLE - 1 BELOW_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_IDLE - 1 NORMAL_PRIORITY_CLASS THREAD_PRIORITY_IDLE - 1 ABOVE_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_IDLE - 1 HIGH_PRIORITY_CLASS THREAD_PRIORITY_IDLE - 2 IDLE_PRIORITY_CLASS THREAD_PRIORITY_LOWEST - 3 IDLE_PRIORITY_CLASS THREAD_PRIORITY_BELOW_NORMAL - 4 IDLE_PRIORITY_CLASS THREAD_PRIORITY_NORMAL - 4 BELOW_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_LOWEST - 5 IDLE_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL - 5 BELOW_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_BELOW_NORMAL - 5 Background NORMAL_PRIORITY_CLASS THREAD_PRIORITY_LOWEST - 6 IDLE_PRIORITY_CLASS THREAD_PRIORITY_HIGHEST - 6 BELOW_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_NORMAL - 6 Background NORMAL_PRIORITY_CLASS THREAD_PRIORITY_BELOW_NORMAL - 7 BELOW_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL - 7 Background NORMAL_PRIORITY_CLASS THREAD_PRIORITY_NORMAL - 7 Foreground NORMAL_PRIORITY_CLASS THREAD_PRIORITY_LOWEST - 8 BELOW_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_HIGHEST - 8 NORMAL_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL - 8 Foreground NORMAL_PRIORITY_CLASS THREAD_PRIORITY_BELOW_NORMAL - 8 ABOVE_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_LOWEST - 9 NORMAL_PRIORITY_CLASS THREAD_PRIORITY_HIGHEST - 9 Foreground NORMAL_PRIORITY_CLASS THREAD_PRIORITY_NORMAL - 9 ABOVE_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_BELOW_NORMAL - 10 Foreground NORMAL_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL - 10 ABOVE_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_NORMAL - 11 Foreground NORMAL_PRIORITY_CLASS THREAD_PRIORITY_HIGHEST - 11 ABOVE_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL - 11 HIGH_PRIORITY_CLASS THREAD_PRIORITY_LOWEST - 12 ABOVE_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_HIGHEST - 12 HIGH_PRIORITY_CLASS THREAD_PRIORITY_BELOW_NORMAL - 13 HIGH_PRIORITY_CLASS THREAD_PRIORITY_NORMAL - 14 HIGH_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL - 15 HIGH_PRIORITY_CLASS THREAD_PRIORITY_HIGHEST - 15 HIGH_PRIORITY_CLASS THREAD_PRIORITY_TIME_CRITICAL - 15 IDLE_PRIORITY_CLASS THREAD_PRIORITY_TIME_CRITICAL - 15 BELOW_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_TIME_CRITICAL - 15 NORMAL_PRIORITY_CLASS THREAD_PRIORITY_TIME_CRITICAL - 15 ABOVE_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_TIME_CRITICAL - 16 REALTIME_PRIORITY_CLASS THREAD_PRIORITY_IDLE - 17 REALTIME_PRIORITY_CLASS -7 - 18 REALTIME_PRIORITY_CLASS -6 - 19 REALTIME_PRIORITY_CLASS -5 - 20 REALTIME_PRIORITY_CLASS -4 - 21 REALTIME_PRIORITY_CLASS -3 - 22 REALTIME_PRIORITY_CLASS THREAD_PRIORITY_LOWEST - 23 REALTIME_PRIORITY_CLASS THREAD_PRIORITY_BELOW_NORMAL - 24 REALTIME_PRIORITY_CLASS THREAD_PRIORITY_NORMAL - 25 REALTIME_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL - 26 REALTIME_PRIORITY_CLASS THREAD_PRIORITY_HIGHEST - 27 REALTIME_PRIORITY_CLASS 3 - 28 REALTIME_PRIORITY_CLASS 4 - 29 REALTIME_PRIORITY_CLASS 5 - 30 REALTIME_PRIORITY_CLASS 6 - 31 REALTIME_PRIORITY_CLASS THREAD_PRIORITY_TIME_CRITICAL - - Windows NT: Values -7, -6, -5, -4, -3, 3, 4, 5, and 6 are not supported. - - - As you can see, the real priority levels available to any individual - Win32 thread are non-contiguous. - - An application using pthreads-win32 should not make assumptions about - the numbers used to represent thread priority levels, except that they - are monotonic between the values returned by sched_get_priority_min() - and sched_get_priority_max(). E.g. Windows 95, 98, NT, 2000, XP make - available a non-contiguous range of numbers between -15 and 15, while - at least one version of WinCE (3.0) defines the minimum priority - (THREAD_PRIORITY_LOWEST) as 5, and the maximum priority - (THREAD_PRIORITY_HIGHEST) as 1. - - Internally, pthreads-win32 maps any priority levels between - THREAD_PRIORITY_IDLE and THREAD_PRIORITY_LOWEST to THREAD_PRIORITY_LOWEST, - or between THREAD_PRIORITY_TIME_CRITICAL and THREAD_PRIORITY_HIGHEST to - THREAD_PRIORITY_HIGHEST. Currently, this also applies to - REALTIME_PRIORITY_CLASSi even if levels -7, -6, -5, -4, -3, 3, 4, 5, and 6 - are supported. - - If it wishes, a Win32 application using pthreads-win32 can use the Win32 - defined priority macros THREAD_PRIORITY_IDLE through - THREAD_PRIORITY_TIME_CRITICAL. - - -The opacity of the pthread_t datatype -------------------------------------- -and possible solutions for portable null/compare/hash, etc ----------------------------------------------------------- - -Because pthread_t is an opague datatype an implementation is permitted to define -pthread_t in any way it wishes. That includes defining some bits, if it is -scalar, or members, if it is an aggregate, to store information that may be -extra to the unique identifying value of the ID. As a result, pthread_t values -may not be directly comparable. - -If you want your code to be portable you must adhere to the following contraints: - -1) Don't assume it is a scalar data type, e.g. an integer or pointer value. There -are several other implementations where pthread_t is also a struct. See our FAQ -Question 11 for our reasons for defining pthread_t as a struct. - -2) You must not compare them using relational or equality operators. You must use -the API function pthread_equal() to test for equality. - -3) Never attempt to reference individual members. - - -The problem - -Certain applications would like to be able to access a scalar pthread_t, -primarily to use as keys into data structures to manage threads or -thread-related data, but this is not possible in a maximally portable and -standards compliant way for current POSIX threads implementations. - -This use is often required because pthread_t values are not unique through -the life of the process and so it is necessary for the application to keep -track of a threads status itself, and ironically this is because they are -scalar types in the first place. - -To my knowledge the only platform that provides a scalar pthread_t that is -unique through the life of a process is Solaris. Other platforms, including -HPUX, will not provide support to applications that do this. - -For implementations that define pthread_t as a scalar, programmers often -employ direct relational and equality operators with pthread_t. This code -will break when ported to a standard-comforming implementation that defines -pthread_t as an aggregate type. - -For implementations that define pthread_t as an aggregate, e.g. a struct, -programmers can use memcmp etc., but then face the prospect that the struct may -include alignment padding bytes or bits as well as extra implementation-specific -members that are not part of the unique identifying value. - -Opacity also means that an implementation is free to change the definition, -which should generally only require that applications be recompiled and relinked, -not rewritten. - - -Doesn't the compiler take care of padding? - -The C89 and later standards only effectively guarantee element-by-element -equivalence following an assignment or pass by value of a struct or union, -therefore undefined areas of any two otherwise equivalent pthread_t instances -can still compare differently, e.g. attempting to compare two such pthread_t -variables byte-by-byte, e.g. memcmp(&t1, &t2, sizeof(pthread_t) may give an -incorrect result. In practice I'm reasonably confident that compilers routinely -also copy the padding bytes, mainly because assignment of unions would be far -too complicated otherwise. But it just isn't guarranteed by the standard. - -Illustration: - -We have two thread IDs t1 and t2 - -pthread_t t1, t2; - -In an application we create the threads and intend to store the thread IDs in an -ordered data structure (linked list, tree, etc) so we need to be able to compare -them in order to insert them initially and also to traverse. - -Suppose pthread_t contains undefined padding bits and our compiler copies our -pthread_t [struct] element-by-element, then for the assignment: - -pthread_t temp = t1; - -temp and t1 will be equivalent and correct but a byte-for-byte comparison such as -memcmp(&temp, &t1, sizeof(pthread_t)) == 0 may not return true as we expect because -the undefined bits may not have the same values in the two variable instances. - -Similarly if passing by value under the same conditions. - -If, on the other hand, the undefined bits are at least constant through every -assignment and pass-by-value then the byte-for-byte comparison -memcmp(&temp, &t1, sizeof(pthread_t)) == 0 will always return the expected result. -How can we force the behaviour we need? - - -Solutions - -Adding new functions to the standard API or as non-portable extentions is -the only reliable to provide the necessary operations. Remember also that -POSIX is not tied to the C language. The most common functions that have -been suggested are: - -pthread_null() -pthread_compare() -pthread_hash() - -A single more general purpose function could also be defined as a -basis for at least the last two of the above functions. - -First we need to list the freedoms and constraints with respect -to pthread_t so that we can be sure our solution is compatible with the -standard. - -What is known or may be deduced from the standard: -1) pthread_t must be able to be passed by value, so it must be a single object. -2) from (1) it must be copyable so cannot embed thread-state information, locks -or other volatile objects required to manage the thread it associates with. -3) pthread_t may carry additional information, e.g. for debugging or to manage -itself. -4) there is an implicit requirement that the size of pthread_t is determinable -at compile-time and size-invariant, because it must be able to copy the object -(i.e. through assignment and pass-by-value). Such copies must be genuine -duplicates, not merely a copy of a pointer to a common instance such as -would be the case if pthread_t were defined as an array. - - -Suppose we define the following function: - -/* This function shall return it's argument */ -pthread_t* pthread_normalize(pthread_t* thread); - -For scalar or aggregate pthread_t types this function would simply zero any bits -within the pthread_t that don't uniquely identify the thread, including padding, -such that client code can return consistent results from operations done on the -result. If the additional bits are a pointer to an associate structure then -this function would ensure that the memory used to store that associate -structure does not leak. With normalization the following compare would be -valid and repeatable: - -memcmp(pthread_normalize(&t1),pthread_normalize(&t2),sizeof(pthread_t)) - -Note 1: such comparisons are intended merely to order and sort pthread_t values -and allow them to index various data structures. They are not intended to reveal -anything about the relationships between threads, like startup order. - -Note 2: the normalized pthread_t is also a valid pthread_t that uniquely -identifies the same thread. - -Advantages: -1) In most existing implementations this function would reduce to a no-op that -emits no additional instructions, i.e after in-lining or optimisation, or if -defined as a macro: -#define pthread_normalise(tptr) (tptr) - -2) This single function allows an application to portably derive -application-level versions of any of the other required functions. - -3) It is a generic function that could enable unanticipated uses. - -Disadvantages: -1) Less efficient than dedicated compare or hash functions for implementations -that include significant extra non-id elements in pthread_t. - -2) Still need to be concerned about padding if copying normalized pthread_t. -See the later section on defining pthread_t to neutralise padding issues. - -Generally a pthread_t may need to be normalized every time it is used, -which could have a significant impact. However, this is a design decision -for the implementor in a competitive environment. An implementation is free -to define a pthread_t in a way that minimises or eliminates padding or -renders this function a no-op. - -Hazards: -1) Pass-by-reference directly modifies 'thread' so the application must -synchronise access or ensure that the pointer refers to a copy. The alternative -of pass-by-value/return-by-value was considered but then this requires two copy -operations, disadvantaging implementations where this function is not a no-op -in terms of speed of execution. This function is intended to be used in high -frequency situations and needs to be efficient, or at least not unnecessarily -inefficient. The alternative also sits awkwardly with functions like memcmp. - -2) [Non-compliant] code that uses relational and equality operators on -arithmetic or pointer style pthread_t types would need to be rewritten, but it -should be rewritten anyway. - - -C implementation of null/compare/hash functions using pthread_normalize(): - -/* In pthread.h */ -pthread_t* pthread_normalize(pthread_t* thread); - -/* In user code */ -/* User-level bitclear function - clear bits in loc corresponding to mask */ -void* bitclear (void* loc, void* mask, size_t count); - -typedef unsigned int hash_t; - -/* User-level hash function */ -hash_t hash(void* ptr, size_t count); - -/* - * User-level pthr_null function - modifies the origin thread handle. - * The concept of a null pthread_t is highly implementation dependent - * and this design may be far from the mark. For example, in an - * implementation "null" may mean setting a special value inside one - * element of pthread_t to mean "INVALID". However, if that value was zero and - * formed part of the id component then we may get away with this design. - */ -pthread_t* pthr_null(pthread_t* tp) -{ - /* - * This should have the same effect as memset(tp, 0, sizeof(pthread_t)) - * We're just showing that we can do it. - */ - void* p = (void*) pthread_normalize(tp); - return (pthread_t*) bitclear(p, p, sizeof(pthread_t)); -} - -/* - * Safe user-level pthr_compare function - modifies temporary thread handle copies - */ -int pthr_compare_safe(pthread_t thread1, pthread_t thread2) -{ - return memcmp(pthread_normalize(&thread1), pthread_normalize(&thread2), sizeof(pthread_t)); -} - -/* - * Fast user-level pthr_compare function - modifies origin thread handles - */ -int pthr_compare_fast(pthread_t* thread1, pthread_t* thread2) -{ - return memcmp(pthread_normalize(&thread1), pthread_normalize(&thread2), sizeof(pthread_t)); -} - -/* - * Safe user-level pthr_hash function - modifies temporary thread handle copy - */ -hash_t pthr_hash_safe(pthread_t thread) -{ - return hash((void *) pthread_normalize(&thread), sizeof(pthread_t)); -} - -/* - * Fast user-level pthr_hash function - modifies origin thread handle - */ -hash_t pthr_hash_fast(pthread_t thread) -{ - return hash((void *) pthread_normalize(&thread), sizeof(pthread_t)); -} - -/* User-level bitclear function - modifies the origin array */ -void* bitclear(void* loc, void* mask, size_t count) -{ - int i; - for (i=0; i < count; i++) { - (unsigned char) *loc++ &= ~((unsigned char) *mask++); - } -} - -/* Donald Knuth hash */ -hash_t hash(void* str, size_t count) -{ - hash_t hash = (hash_t) count; - unsigned int i = 0; - - for(i = 0; i < len; str++, i++) - { - hash = ((hash << 5) ^ (hash >> 27)) ^ (*str); - } - return hash; -} - -/* Example of advantage point (3) - split a thread handle into its id and non-id values */ -pthread_t id = thread, non-id = thread; -bitclear((void*) &non-id, (void*) pthread_normalize(&id), sizeof(pthread_t)); - - -A pthread_t type change proposal to neutralise the effects of padding - -Even if pthread_normalize() is available, padding is still a problem because -the standard only garrantees element-by-element equivalence through -copy operations (assignment and pass-by-value). So padding bit values can -still change randomly after calls to pthread_normalize(). - -[I suspect that most compilers take the easy path and always byte-copy anyway, -partly because it becomes too complex to do (e.g. unions that contain sub-aggregates) -but also because programmers can easily design their aggregates to minimise and -often eliminate padding]. - -How can we eliminate the problem of padding bytes in structs? Could -defining pthread_t as a union rather than a struct provide a solution? - -In fact, the Linux pthread.h defines most of it's pthread_*_t objects (but not -pthread_t itself) as unions, possibly for this and/or other reasons. We'll -borrow some element naming from there but the ideas themselves are well known -- the __align element used to force alignment of the union comes from K&R's -storage allocator example. - -/* Essentially our current pthread_t renamed */ -typedef struct { - struct thread_state_t * __p; - long __x; /* sequence counter */ -} thread_id_t; - -Ensuring that the last element in the above struct is a long ensures that the -overall struct size is a multiple of sizeof(long), so there should be no trailing -padding in this struct or the union we define below. -(Later we'll see that we can handle internal but not trailing padding.) - -/* New pthread_t */ -typedef union { - char __size[sizeof(thread_id_t)]; /* array as the first element */ - thread_id_t __tid; - long __align; /* Ensure that the union starts on long boundary */ -} pthread_t; - -This guarrantees that, during an assignment or pass-by-value, the compiler copies -every byte in our thread_id_t because the compiler guarrantees that the __size -array, which we have ensured is the equal-largest element in the union, retains -equivalence. - -This means that pthread_t values stored, assigned and passed by value will at least -carry the value of any undefined padding bytes along and therefore ensure that -those values remain consistent. Our comparisons will return consistent results and -our hashes of [zero initialised] pthread_t values will also return consistent -results. - -We have also removed the need for a pthread_null() function; we can initialise -at declaration time or easily create our own const pthread_t to use in assignments -later: - -const pthread_t null_tid = {0}; /* braces are required */ - -pthread_t t; -... -t = null_tid; - - -Note that we don't have to explicitly make use of the __size array at all. It's -there just to force the compiler behaviour we want. - - -Partial solutions without a pthread_normalize function - - -An application-level pthread_null and pthread_compare proposal -(and pthread_hash proposal by extention) - -In order to deal with the problem of scalar/aggregate pthread_t type disparity in -portable code I suggest using an old-fashioned union, e.g.: - -Contraints: -- there is no padding, or padding values are preserved through assignment and - pass-by-value (see above); -- there are no extra non-id values in the pthread_t. - - -Example 1: A null initialiser for pthread_t variables... - -typedef union { - unsigned char b[sizeof(pthread_t)]; - pthread_t t; -} init_t; - -const init_t initial = {0}; - -pthread_t tid = initial.t; /* init tid to all zeroes */ - - -Example 2: A comparison function for pthread_t values - -typedef union { - unsigned char b[sizeof(pthread_t)]; - pthread_t t; -} pthcmp_t; - -int pthcmp(pthread_t left, pthread_t right) -{ - /* - * Compare two pthread handles in a way that imposes a repeatable but arbitrary - * ordering on them. - * I.e. given the same set of pthread_t handles the ordering should be the same - * each time but the order has no particular meaning other than that. E.g. - * the ordering does not imply the thread start sequence, or any other - * relationship between threads. - * - * Return values are: - * 1 : left is greater than right - * 0 : left is equal to right - * -1 : left is less than right - */ - int i; - pthcmp_t L, R; - L.t = left; - R.t = right; - for (i = 0; i < sizeof(pthread_t); i++) - { - if (L.b[i] > R.b[i]) - return 1; - else if (L.b[i] < R.b[i]) - return -1; - } - return 0; -} - -It has been pointed out that the C99 standard allows for the possibility that -integer types also may include padding bits, which could invalidate the above -method. This addition to C99 was specifically included after it was pointed -out that there was one, presumably not particularly well known, architecture -that included a padding bit in it's 32 bit integer type. See section 6.2.6.2 -of both the standard and the rationale, specifically the paragraph starting at -line 16 on page 43 of the rationale. - - -An aside - -Certain compilers, e.g. gcc and one of the IBM compilers, include a feature -extention: provided the union contains a member of the same type as the -object then the object may be cast to the union itself. - -We could use this feature to speed up the pthrcmp() function from example 2 -above by directly referencing rather than copying the pthread_t arguments to -the local union variables, e.g.: - -int pthcmp(pthread_t left, pthread_t right) -{ - /* - * Compare two pthread handles in a way that imposes a repeatable but arbitrary - * ordering on them. - * I.e. given the same set of pthread_t handles the ordering should be the same - * each time but the order has no particular meaning other than that. E.g. - * the ordering does not imply the thread start sequence, or any other - * relationship between threads. - * - * Return values are: - * 1 : left is greater than right - * 0 : left is equal to right - * -1 : left is less than right - */ - int i; - for (i = 0; i < sizeof(pthread_t); i++) - { - if (((pthcmp_t)left).b[i] > ((pthcmp_t)right).b[i]) - return 1; - else if (((pthcmp_t)left).b[i] < ((pthcmp_t)right).b[i]) - return -1; - } - return 0; -} - - -Result thus far - -We can't remove undefined bits if they are there in pthread_t already, but we have -attempted to render them inert for comparison and hashing functions by making them -consistent through assignment, copy and pass-by-value. - -Note: Hashing pthread_t values requires that all pthread_t variables be initialised -to the same value (usually all zeros) before being assigned a proper thread ID, i.e. -to ensure that any padding bits are zero, or at least the same value for all -pthread_t. Since all pthread_t values are generated by the library in the first -instance this need not be an application-level operation. - - -Conclusion - -I've attempted to resolve the multiple issues of type opacity and the possible -presence of undefined bits and bytes in pthread_t values, which prevent -applications from comparing or hashing pthread handles. - -Two complimentary partial solutions have been proposed, one an application-level -scheme to handle both scalar and aggregate pthread_t types equally, plus a -definition of pthread_t itself that neutralises padding bits and bytes by -coercing semantics out of the compiler to eliminate variations in the values of -padding bits. - -I have not provided any solution to the problem of handling extra values embedded -in pthread_t, e.g. debugging or trap information that an implementation is entitled -to include. Therefore none of this replaces the portability and flexibility of API -functions but what functions are needed? The threads standard is unlikely to -include new functions that can be implemented by a combination of existing features -and more generic functions (several references in the threads rationale suggest this). -Therefore I propose that the following function could replace the several functions -that have been suggested in conversations: - -pthread_t * pthread_normalize(pthread_t * handle); - -For most existing pthreads implementations this function, or macro, would reduce to -a no-op with zero call overhead. Most of the other desired operations on pthread_t -values (null, compare, hash, etc.) can be trivially derived from this and other -standard functions. diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/README.Watcom b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/README.Watcom deleted file mode 100644 index 2974928..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/README.Watcom +++ /dev/null @@ -1,62 +0,0 @@ -Watcom compiler notes -===================== - -Status ------- -Not yet usable. Although the library builds under Watcom it -substantially fails the test suite. - -There is a working Wmakefile for wmake for the library build. - -invoke as any of: -wmake -f Wmakefile clean WC -wmake -f Wmakefile clean WC-inlined -wmake -f Wmakefile clean WCE -wmake -f Wmakefile clean WCE-inlined - -These build pthreadWC.dll and pthreadWCE.dll. - -There is a working Wmakefile for wmake for the test suite. - -invoke as any of: -wmake -f Wmakefile clean WC -wmake -f Wmakefile clean WCX -wmake -f Wmakefile clean WCE -wmake -f Wmakefile clean WC-bench -wmake -f Wmakefile clean WCX-bench -wmake -f Wmakefile clean WCE-bench - - -Current known problems ----------------------- - -Library build: -The Watcom compiler uses a different default call convention to MS C or GNU C and so -applications are not compatible with pthreadVC.dll etc using pre 2003-10-14 versions -of pthread.h, sched.h, or semaphore.h. The cdecl attribute can be used on exposed -function prototypes to force compatibility with MS C built DLLs. - -However, there appear to be other incompatibilities. Errno.h, for example, defines -different values for the standard C and POSIX errors to those defined by the MS C -errno.h. It may be that references to Watcom's threads compatible 'errno' do set -and return translated numbers consistently, but I have not verified this. - -Watcom defines errno as a dereferenced pointer returned by the function -_get_errno_ptr(). This is similar to both the MS and GNU C environments for -multithreaded use. However, the Watcom version appears to have a number of problems: - -- different threads return the same pointer value. Compare with the MS and GNU C -versions which correctly return different values (since each thread must maintain -a thread specific errno value). - -- an errno value set within the DLL appears as zero in the application even though -both share the same thread. - -Therefore applications built using the Watcom compiler may need to use -a Watcom built version of the library (pthreadWC.dll). If this is the case, then -the cdecl function attribute should not be required. - -Application builds: -The test suite fails with the Watcom compiler. - -Test semaphore1.c fails for pthreadWC.dll because errno returns 0 instead of EAGAIN. diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/README.WinCE b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/README.WinCE deleted file mode 100644 index a2cd8c2..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/README.WinCE +++ /dev/null @@ -1,6 +0,0 @@ -WinCE port ----------- -(See the file WinCE-PORT for a detailed explanation.) - -Make sure you define "WINCE" amongst your compiler flags (eg. -DWINCE). -The config.h file will define all the necessary defines for you. diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/TODO b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/TODO deleted file mode 100644 index 6fc172e..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/TODO +++ /dev/null @@ -1,9 +0,0 @@ - Things that aren't done yet - --------------------------- - -1. Implement PTHREAD_PROCESS_SHARED for semaphores, mutexes, - condition variables, read/write locks, barriers. - - IMO, to do this in a source code compatible way requires implementation of - POSIX shared memory functions, etc. - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/WinCE-PORT b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/WinCE-PORT deleted file mode 100644 index 28e5034..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/WinCE-PORT +++ /dev/null @@ -1,222 +0,0 @@ -NOTE: The comments in this file relate to the original WinCE port -done by Tristan Savatier. The semaphore routines have been -completely rewritten since (2005-04-25), having been progressively -broken more and more by changes to the library. All of the semaphore -routines implemented for W9x/WNT/2000 and up should now also work for -WinCE. Also, pthread_mutex_timedlock should now work. - -Additional WinCE updates have been applied since this as well. Check the -ChangeLog file and search for WINCE for example. (2007-01-07) - -[RPJ] - ----- - -Some interesting news: - -I have been able to port pthread-win32 to Windows-CE, -which uses a subset of the WIN32 API. - -Since we intend to keep using pthread-win32 for our -Commercial WinCE developments, I would be very interested -if WinCE support could be added to the main source tree -of pthread-win32. Also, I would like to be credited -for this port :-) - -Now, here is the story... - -The port was performed and tested on a Casio "Cassiopeia" -PalmSize PC, which runs a MIP processor. The OS in the -Casio is WinCE version 2.11, but I used VC++ 6.0 with -the WinCE SDK for version 2.01. - -I used pthread-win32 to port a heavily multithreaded -commercial application (real-time MPEG video player) -from Linux to WinCE. I consider the changes that -I have done to be quite well tested. - -Overall the modifications that we had to do are minor. - -The WinCE port were based on pthread-win32-snap-1999-05-30, -but I am certain that they can be integrated very easiely -to more recent versions of the source. - -I have attached the modified source code: -pthread-win32-snap-1999-05-30-WinCE. - -All the changes do not affect the code compiled on non-WinCE -environment, provided that the macros used for WinCE compilation -are not used, of course! - -Overall description of the WinCE port: -------------------------------------- - -Most of the changes had to be made in areas where -pthread-win32 was relying on some standard-C librairies -(e.g. _ftime, calloc, errno), which are not available -on WinCE. We have changed the code to use native Win32 -API instead (or in some cases we made wrappers). - -The Win32 Semaphores are not available, -so we had to re-implement Semaphores using mutexes -and events. - -Limitations / known problems of the WinCE port: ----------------------------------------------- - -Not all the semaphore routines have been ported -(semaphores are defined by Posix but are not part -pf pthread). I have just done enough to make -pthread routines (that rely internally on semaphores) -work, like signal conditions. - -I noticed that the Win32 threads work slightly -differently on WinCE. This may have some impact -on some tricky parts of pthread-win32, but I have -not really investigated. For example, on WinCE, -the process is killed if the main thread falls off -the bottom (or calls pthread_exit), regardless -of the existence of any other detached thread. -Microsoft manual indicates that this behavior is -deffirent from that of Windows Threads for other -Win32 platforms. - - -Detailed descriptions of the changes and rationals: - ------------------------------------- -- use a new macro NEED_ERRNO. - -If defined, the code in errno.c that defines a reentrant errno -is compiled, regardless of _MT and _REENTRANT. - -Rational: On WinCE, there is no support for , or -any other standard C library, i.e. even if _MT or _REENTRANT -is defined, errno is not provided by any library. NEED_ERRNO -must be set to compile for WinCE. - ------------------------------------- -- In implement.h, change #include to #include "semaphore.h". - -Rational: semaphore.h is provided in pthread-win32 and should not -be searched in the systems standard include. would not compile. -This change does not seem to create problems on "classic" win32 -(e.g. win95). - ------------------------------------- -- use a new macro NEED_CALLOC. - -If defined, some code in misc.c will provide a replacement -for calloc, which is not available on Win32. - - ------------------------------------- -- use a new macro NEED_CREATETHREAD. - -If defined, implement.h defines the macro _beginthreadex -and _endthreadex. - -Rational: On WinCE, the wrappers _beginthreadex and _endthreadex -do not exist. The native Win32 routines must be used. - ------------------------------------- -- in misc.c: - -#ifdef NEED_DUPLICATEHANDLE - /* DuplicateHandle does not exist on WinCE */ - self->threadH = GetCurrentThread(); -#else - if( !DuplicateHandle( - GetCurrentProcess(), - GetCurrentThread(), - GetCurrentProcess(), - &self->threadH, - 0, - FALSE, - DUPLICATE_SAME_ACCESS ) ) - { - free( self ); - return (NULL); - } -#endif - -Rational: On WinCE, DuplicateHandle does not exist. I could not understand -why DuplicateHandle must be used. It seems to me that getting the current -thread handle with GetCurrentThread() is sufficient, and it seems to work -perfectly fine, so maybe DuplicateHandle was just plain useless to begin with ? - ------------------------------------- -- In private.c, added some code at the beginning of __ptw32_processInitialize -to detect the case of multiple calls to __ptw32_processInitialize. - -Rational: In order to debug pthread-win32, it is easier to compile -it as a regular library (it is not possible to debug DLL's on winCE). -In that case, the application must call __ptw32_rocessInitialize() -explicitely, to initialize pthread-win32. It is safer in this circumstance -to handle the case where __ptw32_processInitialize() is called on -an already initialized library: - -int -__ptw32_processInitialize (void) -{ - if (__ptw32_processInitialized) { - /* - * ignore if already initialized. this is useful for - * programs that uses a non-dll pthread - * library. such programs must call __ptw32_processInitialize() explicitely, - * since this initialization routine is automatically called only when - * the dll is loaded. - */ - return TRUE; - } - __ptw32_processInitialized = TRUE; - [...] -} - ------------------------------------- -- in private.c, if macro NEED_FTIME is defined, add routines to -convert timespec_to_filetime and filetime_to_timespec, and modified -code that was using _ftime() to use Win32 API instead. - -Rational: _ftime is not available on WinCE. It is necessary to use -the native Win32 time API instead. - -Note: the routine timespec_to_filetime is provided as a convenience and a mean -to test that filetime_to_timespec works, but it is not used by the library. - ------------------------------------- -- in semaphore.c, if macro NEED_SEM is defined, add code for the routines -_increase_semaphore and _decrease_semaphore, and modify significantly -the implementation of the semaphores so that it does not use CreateSemaphore. - -Rational: CreateSemaphore is not available on WinCE. I had to re-implement -semaphores using mutexes and Events. - -Note: Only the semaphore routines that are used by pthread are implemented -(i.e. signal conditions rely on a subset of the semaphores routines, and -this subset works). Some other semaphore routines (e.g. sem_trywait) are -not yet supported on my WinCE port (and since I don't need them, I am not -planning to do anything about them). - ------------------------------------- -- in tsd.c, changed the code that defines TLS_OUT_OF_INDEXES - -/* TLS_OUT_OF_INDEXES not defined on WinCE */ -#ifndef TLS_OUT_OF_INDEXES -#define TLS_OUT_OF_INDEXES 0xffffffff -#endif - -Rational: TLS_OUT_OF_INDEXES is not defined in any standard include file -on WinCE. - ------------------------------------- -- added file need_errno.h - -Rational: On WinCE, there is no errno.h file. need_errno.h is just a -copy of windows version of errno.h, with minor modifications due to the fact -that some of the error codes are defined by the WinCE socket library. -In pthread.h, if NEED_ERRNO is defined, the file need_errno.h is -included (instead of ). - - --- eof diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/_ptw32.h b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/_ptw32.h deleted file mode 100644 index 94d64e7..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/_ptw32.h +++ /dev/null @@ -1,215 +0,0 @@ -/* - * Module: _ptw32.h - * - * Purpose: - * Pthreads4w internal macros, to be shared by other headers - * comprising the pthreads4w package. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - */ - -#ifndef __PTW32_H -#define __PTW32_H - -/* See the README file for an explanation of the pthreads-win32 - * version numbering scheme and how the DLL is named etc. - * - * FIXME: consider moving this to <_ptw32.h>; maybe also add a - * leading underscore to the macro names. - */ -#define __PTW32_VERSION_MAJOR 3 -#define __PTW32_VERSION_MINOR 0 -#define __PTW32_VERSION_MICRO 0 -#define __PTW32_VERION_BUILD 0 -#define __PTW32_VERSION 3,0,0,0 -#define __PTW32_VERSION_STRING "3, 0, 0, 0\0" - -#if defined(__GNUC__) -# pragma GCC system_header -# if ! defined __declspec -# error "Please upgrade your GNU compiler to one that supports __declspec." -# endif -#endif - -#if defined (__cplusplus) -# define __PTW32_BEGIN_C_DECLS extern "C" { -# define __PTW32_END_C_DECLS } -#else -# define __PTW32_BEGIN_C_DECLS -# define __PTW32_END_C_DECLS -#endif - -#if defined __PTW32_STATIC_LIB -# define __PTW32_DLLPORT - -#elif defined __PTW32_BUILD -# define __PTW32_DLLPORT __declspec (dllexport) -#else -# define __PTW32_DLLPORT /*__declspec (dllimport)*/ -#endif - -#ifndef __PTW32_CDECL -/* FIXME: another internal macro; should have two initial underscores; - * Nominally, we prefer to use __cdecl calling convention for all our - * functions, but we map it through this macro alias to facilitate the - * possible choice of alternatives; for example: - */ -# ifdef _OPEN_WATCOM_SOURCE - /* The Open Watcom C/C++ compiler uses a non-standard default calling - * convention, (similar to __fastcall), which passes function arguments - * in registers, unless the __cdecl convention is explicitly specified - * in exposed function prototypes. - * - * Our preference is to specify the __cdecl convention for all calls, - * even though this could slow Watcom code down slightly. If you know - * that the Watcom compiler will be used to build both the DLL and your - * application, then you may #define _OPEN_WATCOM_SOURCE, so disabling - * the forced specification of __cdecl for all function declarations; - * remember that this must be defined consistently, for both the DLL - * build, and the application build. - */ -# define __PTW32_CDECL -# else -# define __PTW32_CDECL __cdecl -# endif -#endif - -/* - * This is more or less a duplicate of what is in the autoconf config.h, - * which is only used when building the pthreads4w libraries. - */ - -#if !defined (__PTW32_CONFIG_H) && !defined(__PTW32_PSEUDO_CONFIG_H_SOURCED) -# define __PTW32_PSEUDO_CONFIG_H_SOURCED -# if defined(WINCE) -# undef HAVE_CPU_AFFINITY -# define NEED_DUPLICATEHANDLE -# define NEED_CREATETHREAD -# define NEED_ERRNO -# define NEED_CALLOC -# define NEED_UNICODE_CONSTS -# define NEED_PROCESS_AFFINITY_MASK -/* This may not be needed */ -# define RETAIN_WSALASTERROR -# elif defined(_MSC_VER) -# if _MSC_VER >= 1900 -# define HAVE_STRUCT_TIMESPEC -# elif _MSC_VER < 1300 -# define __PTW32_CONFIG_MSVC6 -# elif _MSC_VER < 1400 -# define __PTW32_CONFIG_MSVC7 -# endif -# elif defined(_UWIN) -# define HAVE_MODE_T -# define HAVE_STRUCT_TIMESPEC -# define HAVE_SIGNAL_H -# endif -#endif - -/* - * If HAVE_ERRNO_H is defined then assume that autoconf has been used - * to overwrite config.h, otherwise the original config.h is in use - * at build-time or the above block of defines is in use otherwise - * and NEED_ERRNO is either defined or not defined. - */ -#if defined(HAVE_ERRNO_H) || !defined(NEED_ERRNO) -# include -#else -# include "need_errno.h" -#endif - -#if defined(__BORLANDC__) -# define int64_t LONGLONG -# define uint64_t ULONGLONG -#elif !defined(__MINGW32__) - typedef _int64 int64_t; - typedef unsigned _int64 uint64_t; -# if defined (__PTW32_CONFIG_MSVC6) - typedef long intptr_t; -# endif -#elif defined(HAVE_STDINT_H) && HAVE_STDINT_H == 1 -# include -#endif - -/* - * In case ETIMEDOUT hasn't been defined above somehow. - */ -#if !defined(ETIMEDOUT) - /* - * note: ETIMEDOUT is no longer defined in winsock.h - * WSAETIMEDOUT is so use its value. - */ -# include -# if defined(WSAETIMEDOUT) -# define ETIMEDOUT WSAETIMEDOUT -# else -# define ETIMEDOUT 10060 /* This is the value of WSAETIMEDOUT in winsock.h. */ -# endif -#endif - -/* - * Several systems may not define some error numbers; - * defining those which are likely to be missing here will let - * us complete the library builds. - */ -#if !defined(ENOTSUP) -# define ENOTSUP 48 /* This is the value in Solaris. */ -#endif - -#if !defined(ENOSYS) -# define ENOSYS 140 /* Semi-arbitrary value */ -#endif - -#if !defined(EDEADLK) -# if defined(EDEADLOCK) -# define EDEADLK EDEADLOCK -# else -# define EDEADLK 36 /* This is the value in MSVC. */ -# endif -#endif - -/* POSIX 2008 - related to robust mutexes */ -#if __PTW32_VERSION_MAJOR > 2 -# if !defined(EOWNERDEAD) -# define EOWNERDEAD 1000 -# endif -# if !defined(ENOTRECOVERABLE) -# define ENOTRECOVERABLE 1001 -# endif -#else -# if !defined(EOWNERDEAD) -# define EOWNERDEAD 42 -# endif -# if !defined(ENOTRECOVERABLE) -# define ENOTRECOVERABLE 43 -# endif -#endif - -#endif /* !__PTW32_H */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/aclocal.m4 b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/aclocal.m4 deleted file mode 100644 index 02c1ba1..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/aclocal.m4 +++ /dev/null @@ -1,122 +0,0 @@ -## aclocal.m4 -## -------------------------------------------------------------------------- -## -## Pthreads4w - POSIX Threads for Windows -## Copyright 1998 John E. Bossom -## Copyright 1999-2018, Pthreads4w contributors -## -## Homepage: https://sourceforge.net/projects/pthreads4w/ -## -## The current list of contributors is contained -## in the file CONTRIBUTORS included with the source -## code distribution. The list can also be seen at the -## following World Wide Web location: -## -## https://sourceforge.net/p/pthreads4w/wiki/Contributors/ -## -## This library is free software; you can redistribute it and/or -## modify it under the terms of the GNU Lesser General Public -## License as published by the Free Software Foundation; either -## version 3 of the License, or (at your option) any later version. -## -## This library is distributed in the hope that it will be useful, -## but WITHOUT ANY WARRANTY; without even the implied warranty of -## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -## Lesser General Public License for more details. -## -## You should have received a copy of the GNU Lesser General Public -## License along with this library in the file COPYING.LIB; -## if not, write to the Free Software Foundation, Inc., -## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA -## -# -# PTW32_AC_CHECK_TYPEDEF( TYPENAME, [HEADER] ) -# -------------------------------------------- -# Set HAVE_TYPENAME in config.h, if either HEADER, or any default -# header which autoconf checks automatically, defines TYPENAME. -# -AC_DEFUN([PTW32_AC_CHECK_TYPEDEF],dnl -[m4_ifnblank([$2],[AC_CHECK_HEADERS_ONCE([$2])]) - AC_CHECK_TYPE([$1],dnl - [AC_DEFINE(AS_TR_CPP([HAVE_$1]),[1],[Define if your compiler knows about $1])],,dnl - [AC_INCLUDES_DEFAULT - m4_ifnblank([$2],[[ -#ifdef ]AS_TR_CPP([HAVE_$2])[ -# include <$2> -#endif -]])])dnl -]) - -# PTW32_AC_NEED_FUNC( WITNESS, FUNCNAME ) -# --------------------------------------- -# Add a WITNESS definition in config.h, if FUNCNAME is not provided -# by the standard library, and a replacement must be provided. -# -AC_DEFUN([PTW32_AC_NEED_FUNC],dnl -[AC_CHECK_FUNCS([$2],,[AC_DEFINE([$1],[1],[Define if you do not have $2])])dnl -]) - -# PTW32_AC_NEED_ERRNO -# ------------------- -# Check if the host provides the header, and supports the -# errno global symbol, otherwise, add a NEED_ERRNO request in config.h -# -AC_DEFUN([PTW32_AC_NEED_ERRNO],[dnl -AC_CHECK_HEADERS_ONCE([errno.h]) -AC_MSG_CHECKING([for errno]) -AC_LINK_IFELSE([AC_LANG_SOURCE([[ -#ifdef HAVE_ERRNO_H -# include -#endif -int main(){ return errno; } -]])],dnl -[AC_MSG_RESULT([yes])],dnl -[AC_DEFINE([NEED_ERRNO],[1],[Define if you do not have errno]) - AC_MSG_RESULT([no])dnl -]) -]) - -# PTW32_AC_CHECK_WINAPI_FUNC( FUNCNAME, ARGUMENTS, ... ) -# ------------------------------------------------------ -# Check if the WinAPI function FUNCNAME is available on the host; -# unlike __cdecl functions, which can be detected by AC_CHECK_FUNCS, -# WinAPI functions need a full argument list specification in the -# function call. (Additional 3rd and 4th arguments provide for -# qualification of the yes/no messages, respectively; they may -# be exploited, for example, to add config.h annotations). -# -AC_DEFUN([PTW32_AC_CHECK_WINAPI_FUNC], -[AC_MSG_CHECKING([for $1]) - AC_LINK_IFELSE([AC_LANG_SOURCE([[ -#include -int APIENTRY WinMain(HINSTANCE curr, HINSTANCE prev, LPSTR argv, int mode) -{ (void)($1($2)); return 0; } - ]])],dnl - [AC_MSG_RESULT([yes])$3], - [AC_MSG_RESULT([no])$4 - ]) -]) - -# PTW32_AC_NEED_WINAPI_FUNC( FUNCNAME, ARGUMENTS ) -# ------------------------------------------------ -# Check if WinAPI function FUNCNAME is available on the host; add a -# NEED_FUNCNAME annotation in config.h, if it is not. -# -AC_DEFUN([PTW32_AC_NEED_WINAPI_FUNC], -[PTW32_AC_CHECK_WINAPI_FUNC([$1],[$2],,dnl - [AC_DEFINE(AS_TR_CPP([NEED_$1]),[1],[Define if $1 is unsupported])dnl - ]) -]) - -# PTW32_AC_CHECK_CPU_AFFINITY -# --------------------------- -# Check if the host supports the GetProcessAffinityMask() WinAPI -# function; (all Windows versions since Win95 should, but WinCE may -# not). Add the HAVE_CPU_AFFINITY annotation in config.h, for hosts -# which do have this support. -# -AC_DEFUN([PTW32_AC_CHECK_CPU_AFFINITY], -[PTW32_AC_CHECK_WINAPI_FUNC([GetProcessAffinityMask],[NULL,NULL,NULL],dnl - [AC_DEFINE([HAVE_CPU_AFFINITY],[1],[Define if CPU_AFFINITY is supported])dnl - ]) -]) diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/builddmc.bat b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/builddmc.bat deleted file mode 100644 index 18e328d..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/builddmc.bat +++ /dev/null @@ -1,9 +0,0 @@ -; Build the pthreads library with the Digital Mars Compiler -; -set DMCDIR=c:\dm - -; RELEASE -%DMCDIR%\bin\dmc -D_MT -DHAVE_CONFIG_H -I.;c:\dm\include -o+all -WD pthread.c user32.lib+kernel32.lib+wsock32.lib -L/impl -L/NODEBUG -L/SU:WINDOWS - -; DEBUG -%DMCDIR%\bin\dmc -g -D_MT -DHAVE_CONFIG_H -I.;c:\dm\include -o+all -WD pthread.c user32.lib+kernel32.lib+wsock32.lib -L/impl -L/SU:WINDOWS diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/cleanup.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/cleanup.c deleted file mode 100644 index 0c3b05b..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/cleanup.c +++ /dev/null @@ -1,152 +0,0 @@ -/* - * cleanup.c - * - * Description: - * This translation unit implements routines associated - * with cleaning up threads. - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -/* - * The functions __ptw32_pop_cleanup and __ptw32_push_cleanup - * are implemented here for applications written in C with no - * SEH or C++ destructor support. - */ - -__ptw32_cleanup_t * -__ptw32_pop_cleanup (int execute) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function pops the most recently pushed cleanup - * handler. If execute is nonzero, then the cleanup handler - * is executed if non-null. - * - * PARAMETERS - * execute - * if nonzero, execute the cleanup handler - * - * - * DESCRIPTION - * This function pops the most recently pushed cleanup - * handler. If execute is nonzero, then the cleanup handler - * is executed if non-null. - * NOTE: specify 'execute' as nonzero to avoid duplication - * of common cleanup code. - * - * RESULTS - * N/A - * - * ------------------------------------------------------ - */ -{ - __ptw32_cleanup_t *cleanup; - - cleanup = (__ptw32_cleanup_t *) pthread_getspecific (__ptw32_cleanupKey); - - if (cleanup != NULL) - { - if (execute && (cleanup->routine != NULL)) - { - - (*cleanup->routine) (cleanup->arg); - - } - - pthread_setspecific (__ptw32_cleanupKey, (void *) cleanup->prev); - - } - - return (cleanup); - -} /* __ptw32_pop_cleanup */ - - -void -__ptw32_push_cleanup (__ptw32_cleanup_t * cleanup, - __ptw32_cleanup_callback_t routine, void *arg) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function pushes a new cleanup handler onto the thread's stack - * of cleanup handlers. Each cleanup handler pushed onto the stack is - * popped and invoked with the argument 'arg' when - * a) the thread exits by calling 'pthread_exit', - * b) when the thread acts on a cancellation request, - * c) or when the thread calls pthread_cleanup_pop with a nonzero - * 'execute' argument - * - * PARAMETERS - * cleanup - * a pointer to an instance of pthread_cleanup_t, - * - * routine - * pointer to a cleanup handler, - * - * arg - * parameter to be passed to the cleanup handler - * - * - * DESCRIPTION - * This function pushes a new cleanup handler onto the thread's stack - * of cleanup handlers. Each cleanup handler pushed onto the stack is - * popped and invoked with the argument 'arg' when - * a) the thread exits by calling 'pthread_exit', - * b) when the thread acts on a cancellation request, - * c) or when the thrad calls pthread_cleanup_pop with a nonzero - * 'execute' argument - * NOTE: pthread_push_cleanup, __ptw32_pop_cleanup must be paired - * in the same lexical scope. - * - * RESULTS - * pthread_cleanup_t * - * pointer to the previous cleanup - * - * ------------------------------------------------------ - */ -{ - cleanup->routine = routine; - cleanup->arg = arg; - - cleanup->prev = (__ptw32_cleanup_t *) pthread_getspecific (__ptw32_cleanupKey); - - pthread_setspecific (__ptw32_cleanupKey, (void *) cleanup); - -} /* __ptw32_push_cleanup */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/common.mk b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/common.mk deleted file mode 100644 index 92a8e0d..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/common.mk +++ /dev/null @@ -1,321 +0,0 @@ -# Common makefile definitions - -RESOURCE_OBJS = \ - version.$(RESEXT) - -# pthread.c aggregates all source into a single compilation unit for inlinability -DLL_OBJS = \ - pthread.$(OBJEXT) - -STATIC_OBJS = \ - pthread.$(OEXT) - -# Separate modules for minimising the size of statically linked images -STATIC_OBJS_SMALL = \ - cleanup.$(OBJEXT) \ - create.$(OBJEXT) \ - dll.$(OBJEXT) \ - errno.$(OBJEXT) \ - global.$(OBJEXT) \ - pthread_attr_destroy.$(OBJEXT) \ - pthread_attr_getaffinity_np.$(OBJEXT) \ - pthread_attr_getdetachstate.$(OBJEXT) \ - pthread_attr_getinheritsched.$(OBJEXT) \ - pthread_attr_getname_np.$(OBJEXT) \ - pthread_attr_getschedparam.$(OBJEXT) \ - pthread_attr_getschedpolicy.$(OBJEXT) \ - pthread_attr_getscope.$(OBJEXT) \ - pthread_attr_getstackaddr.$(OBJEXT) \ - pthread_attr_getstacksize.$(OBJEXT) \ - pthread_attr_init.$(OBJEXT) \ - pthread_attr_setaffinity_np.$(OBJEXT) \ - pthread_attr_setdetachstate.$(OBJEXT) \ - pthread_attr_setinheritsched.$(OBJEXT) \ - pthread_attr_setname_np.$(OBJEXT) \ - pthread_attr_setschedparam.$(OBJEXT) \ - pthread_attr_setschedpolicy.$(OBJEXT) \ - pthread_attr_setscope.$(OBJEXT) \ - pthread_attr_setstackaddr.$(OBJEXT) \ - pthread_attr_setstacksize.$(OBJEXT) \ - pthread_barrier_destroy.$(OBJEXT) \ - pthread_barrier_init.$(OBJEXT) \ - pthread_barrier_wait.$(OBJEXT) \ - pthread_barrierattr_destroy.$(OBJEXT) \ - pthread_barrierattr_getpshared.$(OBJEXT) \ - pthread_barrierattr_init.$(OBJEXT) \ - pthread_barrierattr_setpshared.$(OBJEXT) \ - pthread_cancel.$(OBJEXT) \ - pthread_cond_destroy.$(OBJEXT) \ - pthread_cond_init.$(OBJEXT) \ - pthread_cond_signal.$(OBJEXT) \ - pthread_cond_wait.$(OBJEXT) \ - pthread_condattr_destroy.$(OBJEXT) \ - pthread_condattr_getpshared.$(OBJEXT) \ - pthread_condattr_init.$(OBJEXT) \ - pthread_condattr_setpshared.$(OBJEXT) \ - pthread_delay_np.$(OBJEXT) \ - pthread_detach.$(OBJEXT) \ - pthread_equal.$(OBJEXT) \ - pthread_exit.$(OBJEXT) \ - pthread_getconcurrency.$(OBJEXT) \ - pthread_getname_np.$(OBJEXT) \ - pthread_getschedparam.$(OBJEXT) \ - pthread_getspecific.$(OBJEXT) \ - pthread_getunique_np.$(OBJEXT) \ - pthread_getw32threadhandle_np.$(OBJEXT) \ - pthread_join.$(OBJEXT) \ - pthread_timedjoin_np.$(OBJEXT) \ - pthread_tryjoin_np.$(OBJEXT) \ - pthread_key_create.$(OBJEXT) \ - pthread_key_delete.$(OBJEXT) \ - pthread_kill.$(OBJEXT) \ - pthread_mutex_consistent.$(OBJEXT) \ - pthread_mutex_destroy.$(OBJEXT) \ - pthread_mutex_init.$(OBJEXT) \ - pthread_mutex_lock.$(OBJEXT) \ - pthread_mutex_timedlock.$(OBJEXT) \ - pthread_mutex_trylock.$(OBJEXT) \ - pthread_mutex_unlock.$(OBJEXT) \ - pthread_mutexattr_destroy.$(OBJEXT) \ - pthread_mutexattr_getkind_np.$(OBJEXT) \ - pthread_mutexattr_getpshared.$(OBJEXT) \ - pthread_mutexattr_getrobust.$(OBJEXT) \ - pthread_mutexattr_gettype.$(OBJEXT) \ - pthread_mutexattr_init.$(OBJEXT) \ - pthread_mutexattr_setkind_np.$(OBJEXT) \ - pthread_mutexattr_setpshared.$(OBJEXT) \ - pthread_mutexattr_setrobust.$(OBJEXT) \ - pthread_mutexattr_settype.$(OBJEXT) \ - pthread_num_processors_np.$(OBJEXT) \ - pthread_once.$(OBJEXT) \ - pthread_rwlock_destroy.$(OBJEXT) \ - pthread_rwlock_init.$(OBJEXT) \ - pthread_rwlock_rdlock.$(OBJEXT) \ - pthread_rwlock_timedrdlock.$(OBJEXT) \ - pthread_rwlock_timedwrlock.$(OBJEXT) \ - pthread_rwlock_tryrdlock.$(OBJEXT) \ - pthread_rwlock_trywrlock.$(OBJEXT) \ - pthread_rwlock_unlock.$(OBJEXT) \ - pthread_rwlock_wrlock.$(OBJEXT) \ - pthread_rwlockattr_destroy.$(OBJEXT) \ - pthread_rwlockattr_getpshared.$(OBJEXT) \ - pthread_rwlockattr_init.$(OBJEXT) \ - pthread_rwlockattr_setpshared.$(OBJEXT) \ - pthread_self.$(OBJEXT) \ - pthread_setaffinity.$(OBJEXT) \ - pthread_setcancelstate.$(OBJEXT) \ - pthread_setcanceltype.$(OBJEXT) \ - pthread_setconcurrency.$(OBJEXT) \ - pthread_setname_np.$(OBJEXT) \ - pthread_setschedparam.$(OBJEXT) \ - pthread_setspecific.$(OBJEXT) \ - pthread_spin_destroy.$(OBJEXT) \ - pthread_spin_init.$(OBJEXT) \ - pthread_spin_lock.$(OBJEXT) \ - pthread_spin_trylock.$(OBJEXT) \ - pthread_spin_unlock.$(OBJEXT) \ - pthread_testcancel.$(OBJEXT) \ - pthread_timechange_handler_np.$(OBJEXT) \ - pthread_win32_attach_detach_np.$(OBJEXT) \ - ptw32_MCS_lock.$(OBJEXT) \ - ptw32_callUserDestroyRoutines.$(OBJEXT) \ - ptw32_calloc.$(OBJEXT) \ - ptw32_cond_check_need_init.$(OBJEXT) \ - ptw32_getprocessors.$(OBJEXT) \ - ptw32_is_attr.$(OBJEXT) \ - ptw32_mutex_check_need_init.$(OBJEXT) \ - ptw32_new.$(OBJEXT) \ - ptw32_processInitialize.$(OBJEXT) \ - ptw32_processTerminate.$(OBJEXT) \ - ptw32_relmillisecs.$(OBJEXT) \ - ptw32_reuse.$(OBJEXT) \ - ptw32_rwlock_cancelwrwait.$(OBJEXT) \ - ptw32_rwlock_check_need_init.$(OBJEXT) \ - ptw32_semwait.$(OBJEXT) \ - ptw32_spinlock_check_need_init.$(OBJEXT) \ - ptw32_threadDestroy.$(OBJEXT) \ - ptw32_threadStart.$(OBJEXT) \ - ptw32_throw.$(OBJEXT) \ - ptw32_timespec.$(OBJEXT) \ - ptw32_tkAssocCreate.$(OBJEXT) \ - ptw32_tkAssocDestroy.$(OBJEXT) \ - sched_get_priority_max.$(OBJEXT) \ - sched_get_priority_min.$(OBJEXT) \ - sched_getscheduler.$(OBJEXT) \ - sched_setaffinity.$(OBJEXT) \ - sched_setscheduler.$(OBJEXT) \ - sched_yield.$(OBJEXT) \ - sem_close.$(OBJEXT) \ - sem_destroy.$(OBJEXT) \ - sem_getvalue.$(OBJEXT) \ - sem_init.$(OBJEXT) \ - sem_open.$(OBJEXT) \ - sem_post.$(OBJEXT) \ - sem_post_multiple.$(OBJEXT) \ - sem_timedwait.$(OBJEXT) \ - sem_trywait.$(OBJEXT) \ - sem_unlink.$(OBJEXT) \ - sem_wait.$(OBJEXT) \ - w32_CancelableWait.$(OBJEXT) - -PTHREAD_SRCS = \ - ptw32_MCS_lock.c \ - ptw32_is_attr.c \ - ptw32_processInitialize.c \ - ptw32_processTerminate.c \ - ptw32_threadStart.c \ - ptw32_threadDestroy.c \ - ptw32_tkAssocCreate.c \ - ptw32_tkAssocDestroy.c \ - ptw32_callUserDestroyRoutines.c \ - ptw32_semwait.c \ - ptw32_timespec.c \ - ptw32_throw.c \ - ptw32_getprocessors.c \ - ptw32_calloc.c \ - ptw32_new.c \ - ptw32_reuse.c \ - ptw32_relmillisecs.c \ - ptw32_cond_check_need_init.c \ - ptw32_mutex_check_need_init.c \ - ptw32_rwlock_check_need_init.c \ - ptw32_rwlock_cancelwrwait.c \ - ptw32_spinlock_check_need_init.c \ - pthread_attr_init.c \ - pthread_attr_destroy.c \ - pthread_attr_getaffinity_np.c \ - pthread_attr_setaffinity_np.c \ - pthread_attr_getdetachstate.c \ - pthread_attr_setdetachstate.c \ - pthread_attr_getname_np.c \ - pthread_attr_setname_np.c \ - pthread_attr_getscope.c \ - pthread_attr_setscope.c \ - pthread_attr_getstackaddr.c \ - pthread_attr_setstackaddr.c \ - pthread_attr_getstacksize.c \ - pthread_attr_setstacksize.c \ - pthread_barrier_init.c \ - pthread_barrier_destroy.c \ - pthread_barrier_wait.c \ - pthread_barrierattr_init.c \ - pthread_barrierattr_destroy.c \ - pthread_barrierattr_setpshared.c \ - pthread_barrierattr_getpshared.c \ - pthread_setcancelstate.c \ - pthread_setcanceltype.c \ - pthread_testcancel.c \ - pthread_cancel.c \ - pthread_condattr_destroy.c \ - pthread_condattr_getpshared.c \ - pthread_condattr_init.c \ - pthread_condattr_setpshared.c \ - pthread_cond_destroy.c \ - pthread_cond_init.c \ - pthread_cond_signal.c \ - pthread_cond_wait.c \ - create.c \ - cleanup.c \ - dll.c \ - errno.c \ - pthread_exit.c \ - global.c \ - pthread_equal.c \ - pthread_getconcurrency.c \ - pthread_kill.c \ - pthread_once.c \ - pthread_self.c \ - pthread_setconcurrency.c \ - w32_CancelableWait.c \ - pthread_mutex_init.c \ - pthread_mutex_destroy.c \ - pthread_mutexattr_init.c \ - pthread_mutexattr_destroy.c \ - pthread_mutexattr_getpshared.c \ - pthread_mutexattr_setpshared.c \ - pthread_mutexattr_settype.c \ - pthread_mutexattr_gettype.c \ - pthread_mutexattr_setrobust.c \ - pthread_mutexattr_getrobust.c \ - pthread_mutex_lock.c \ - pthread_mutex_timedlock.c \ - pthread_mutex_unlock.c \ - pthread_mutex_trylock.c \ - pthread_mutex_consistent.c \ - pthread_mutexattr_setkind_np.c \ - pthread_mutexattr_getkind_np.c \ - pthread_getw32threadhandle_np.c \ - pthread_getunique_np.c \ - pthread_setaffinity.c \ - pthread_delay_np.c \ - pthread_num_processors_np.c \ - pthread_win32_attach_detach_np.c \ - pthread_timechange_handler_np.c \ - pthread_rwlock_init.c \ - pthread_rwlock_destroy.c \ - pthread_rwlockattr_init.c \ - pthread_rwlockattr_destroy.c \ - pthread_rwlockattr_getpshared.c \ - pthread_rwlockattr_setpshared.c \ - pthread_rwlock_rdlock.c \ - pthread_rwlock_timedrdlock.c \ - pthread_rwlock_wrlock.c \ - pthread_rwlock_timedwrlock.c \ - pthread_rwlock_unlock.c \ - pthread_rwlock_tryrdlock.c \ - pthread_rwlock_trywrlock.c \ - pthread_attr_setschedpolicy.c \ - pthread_attr_getschedpolicy.c \ - pthread_attr_setschedparam.c \ - pthread_attr_getschedparam.c \ - pthread_attr_setinheritsched.c \ - pthread_attr_getinheritsched.c \ - pthread_getname_np.c \ - pthread_setname_np.c \ - pthread_setschedparam.c \ - pthread_getschedparam.c \ - sched_get_priority_max.c \ - sched_get_priority_min.c \ - sched_setscheduler.c \ - sched_getscheduler.c \ - sched_yield.c \ - sched_setaffinity.c \ - sem_init.c \ - sem_destroy.c \ - sem_trywait.c \ - sem_timedwait.c \ - sem_wait.c \ - sem_post.c \ - sem_post_multiple.c \ - sem_getvalue.c \ - sem_open.c \ - sem_close.c \ - sem_unlink.c \ - pthread_spin_init.c \ - pthread_spin_destroy.c \ - pthread_spin_lock.c \ - pthread_spin_unlock.c \ - pthread_spin_trylock.c \ - pthread_detach.c \ - pthread_join.c \ - pthread_timedjoin_np.c \ - pthread_tryjoin_np.c \ - pthread_key_create.c \ - pthread_key_delete.c \ - pthread_setspecific.c \ - pthread_getspecific.c - -INCL = \ - config.h \ - implement.h \ - need_errno.h \ - pthread.h \ - semaphore.h \ - need_errno.h - -# Output useful info if no target given. I.e. the first target that "make" sees is used in this case. -default_target: help - -pthread.$(OBJEXT): pthread.c $(PTHREAD_SRCS) - -# end common.mk diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/config.h b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/config.h deleted file mode 100644 index 6da5690..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/config.h +++ /dev/null @@ -1,150 +0,0 @@ -/* config.h */ - -#ifndef __PTW32_CONFIG_H -#define __PTW32_CONFIG_H - -/********************************************************************* - * Defaults: see target specific redefinitions below. - *********************************************************************/ - -/* We're building the pthreads-win32 library */ -#define __PTW32_BUILD - -/* CPU affinity */ -#define HAVE_CPU_AFFINITY - -/* Do we know about the C type sigset_t? */ -#undef HAVE_SIGSET_T - -/* Define if you have the header file. */ -#undef HAVE_SIGNAL_H - -/* Define if you have the Borland TASM32 or compatible assembler. */ -#undef HAVE_TASM32 - -/* Define if you don't have Win32 DuplicateHandle. (eg. WinCE) */ -#undef NEED_DUPLICATEHANDLE - -/* Define if you don't have Win32 _beginthreadex. (eg. WinCE) */ -#undef NEED_CREATETHREAD - -/* Define if you don't have Win32 errno. (eg. WinCE) */ -#undef NEED_ERRNO - -/* Define if you don't have Win32 calloc. (eg. WinCE) */ -#undef NEED_CALLOC - -/* Define if you don't have Win32 semaphores. (eg. WinCE 2.1 or earlier) */ -#undef NEED_SEM - -/* Define if you need to convert string parameters to unicode. (eg. WinCE) */ -#undef NEED_UNICODE_CONSTS - -/* Define if your C (not C++) compiler supports "inline" functions. */ -#undef HAVE_C_INLINE - -/* Do we know about type mode_t? */ -#undef HAVE_MODE_T - -/* - * Define if GCC has atomic builtins, i.e. __sync_* intrinsics - * __sync_lock_* is implemented in mingw32 gcc 4.5.2 at least - * so this define does not turn those on or off. If you get an - * error from __sync_lock* then consider upgrading your gcc. - */ -#undef HAVE_GCC_ATOMIC_BUILTINS - -/* Define if you have the timespec struct */ -#undef HAVE_STRUCT_TIMESPEC - -/* Define if you don't have the GetProcessAffinityMask() */ -#undef NEED_PROCESS_AFFINITY_MASK - -/* Define if your version of Windows TLSGetValue() clears WSALastError - * and calling SetLastError() isn't enough restore it. You'll also need to - * link against wsock32.lib (or libwsock32.a for MinGW). - */ -#undef RETAIN_WSALASTERROR - -/* -# ---------------------------------------------------------------------- -# The library can be built with some alternative behaviour to better -# facilitate development of applications on Win32 that will be ported -# to other POSIX systems. -# -# Nothing described here will make the library non-compliant and strictly -# compliant applications will not be affected in any way, but -# applications that make assumptions that POSIX does not guarantee are -# not strictly compliant and may fail or misbehave with some settings. -# -# __PTW32_THREAD_ID_REUSE_INCREMENT -# Purpose: -# POSIX says that applications should assume that thread IDs can be -# recycled. However, Solaris (and some other systems) use a [very large] -# sequence number as the thread ID, which provides virtual uniqueness. -# This provides a very high but finite level of safety for applications -# that are not meticulous in tracking thread lifecycles e.g. applications -# that call functions which target detached threads without some form of -# thread exit synchronisation. -# -# Usage: -# Set to any value in the range: 0 <= value < 2^wordsize. -# Set to 0 to emulate reusable thread ID behaviour like Linux or *BSD. -# Set to 1 for unique thread IDs like Solaris (this is the default). -# Set to some factor of 2^wordsize to emulate smaller word size types -# (i.e. will wrap sooner). This might be useful to emulate some embedded -# systems. -# -# define __PTW32_THREAD_ID_REUSE_INCREMENT 0 -# -# ---------------------------------------------------------------------- - */ -#undef __PTW32_THREAD_ID_REUSE_INCREMENT - - -/********************************************************************* - * Target specific groups - * - * If you find that these are incorrect or incomplete please report it - * to the pthreads-win32 maintainer. Thanks. - *********************************************************************/ -#if defined(WINCE) -# undef HAVE_CPU_AFFINITY -# define NEED_DUPLICATEHANDLE -# define NEED_CREATETHREAD -# define NEED_ERRNO -# define NEED_CALLOC -# define NEED_FTIME -/* # define NEED_SEM */ -# define NEED_UNICODE_CONSTS -# define NEED_PROCESS_AFFINITY_MASK -/* This may not be needed */ -# define RETAIN_WSALASTERROR -#endif - -#if defined(_UWIN) -# define HAVE_MODE_T -# define HAVE_STRUCT_TIMESPEC -# define HAVE_SIGNAL_H -#endif - -#if defined(__GNUC__) -# define HAVE_C_INLINE -#endif - -#if defined(__BORLANDC__) -#endif - -#if defined(__WATCOMC__) -#endif - -#if defined(__DMC__) -#define HAVE_SIGNAL_H -#define HAVE_C_INLINE -#endif - -#if defined(_MSC_VER) && _MSC_VER >= 1900 -#define HAVE_STRUCT_TIMESPEC -#endif - -#endif /* __PTW32_CONFIG_H */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/configure.ac b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/configure.ac deleted file mode 100644 index f571dbf..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/configure.ac +++ /dev/null @@ -1,88 +0,0 @@ -# configure.ac -# -------------------------------------------------------------------------- -# -# Pthreads4w - POSIX Threads for Windows -# Copyright 1998 John E. Bossom -# Copyright 1999-2018, Pthreads4w contributors -# -# Homepage: https://sourceforge.net/projects/pthreads4w/ -# -# The current list of contributors is contained -# in the file CONTRIBUTORS included with the source -# code distribution. The list can also be seen at the -# following World Wide Web location: -# -# https://sourceforge.net/p/pthreads4w/wiki/Contributors/ -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library in the file COPYING.LIB; -# if not, write to the Free Software Foundation, Inc., -# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA -# -AC_INIT([pthreads4w],[git]) -AC_CONFIG_HEADERS([config.h]) - -# Checks for build tools. -# -AC_PROG_CC -AC_PROG_CXX -AC_CHECK_TOOLS([AR],[ar],[ar]) -AC_CHECK_TOOLS([DLLTOOL],[dlltool],[dlltool]) -AC_CHECK_TOOLS([OBJDUMP],[objdump],[objdump]) -AC_CHECK_TOOLS([RC],[windres],[windres]) -AC_PROG_RANLIB - -# Autoconf doesn't normally guard config.h, but we prefer it so; -# this is also a convenient place to force HAVE_C_INLINE, because -# AC_C_INLINE makes it available, even if the build compiler does -# not normally support it. -# -AH_TOP(dnl -[#ifndef __PTW32_CONFIG_H] -[#define __PTW32_CONFIG_H]dnl -) -# FIXME: AC_C_INLINE defines 'inline' to work with any C compiler, -# whether or not it supports inline code expansion, but it does NOT -# define HAVE_C_INLINE; can we use this standard autoconf feature, -# without also needing to define HAVE_C_INLINE? -# -AC_C_INLINE -AH_BOTTOM([#define HAVE_C_INLINE]) -AH_BOTTOM([#endif]) - -# Checks for data types and structures. -# -PTW32_AC_CHECK_TYPEDEF([mode_t]) -PTW32_AC_CHECK_TYPEDEF([sigset_t],[signal.h]) -PTW32_AC_CHECK_TYPEDEF([struct timespec],[time.h]) - -# Checks for __cdecl functions. -# -PTW32_AC_NEED_ERRNO -PTW32_AC_NEED_FUNC([NEED_CALLOC],[calloc]) -PTW32_AC_NEED_FUNC([NEED_CREATETHREAD],[_beginthreadex]) -PTW32_AC_CHECK_CPU_AFFINITY - -# WinAPI functions need a full argument list for detection. -# -PTW32_AC_NEED_WINAPI_FUNC([DuplicateHandle],[NULL,NULL,NULL,NULL,0,0,0]) - -# Checks for installation tools. -# -AC_PROG_MKDIR_P -AC_PROG_INSTALL - -# Build system generation, as configured. -# -AC_CONFIG_FILES([GNUmakefile tests/GNUmakefile]) -AC_OUTPUT diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/context.h b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/context.h deleted file mode 100644 index 33294c1..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/context.h +++ /dev/null @@ -1,72 +0,0 @@ -/* - * context.h - * - * Description: - * POSIX thread macros related to thread cancellation. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef __PTW32_CONTEXT_H -#define __PTW32_CONTEXT_H - -#undef __PTW32_PROGCTR - -#if defined(_M_IX86) || (defined(_X86_) && !defined(__amd64__)) -#define __PTW32_PROGCTR(Context) ((Context).Eip) -#endif - -#if defined (_M_IA64) || defined(_IA64) -#define __PTW32_PROGCTR(Context) ((Context).StIIP) -#endif - -#if defined(_MIPS_) || defined(MIPS) -#define __PTW32_PROGCTR(Context) ((Context).Fir) -#endif - -#if defined(_ALPHA_) -#define __PTW32_PROGCTR(Context) ((Context).Fir) -#endif - -#if defined(_PPC_) -#define __PTW32_PROGCTR(Context) ((Context).Iar) -#endif - -#if defined(_AMD64_) || defined(__amd64__) -#define __PTW32_PROGCTR(Context) ((Context).Rip) -#endif - -#if defined(_ARM_) || defined(ARM) || defined(_M_ARM) || defined(_M_ARM64) -#define PTW32_PROGCTR(Context) ((Context).Pc) -#endif - -#if !defined (__PTW32_PROGCTR) -#error Module contains CPU-specific code; modify and recompile. -#endif - -#endif diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/create.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/create.c deleted file mode 100644 index 3ed7ca9..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/create.c +++ /dev/null @@ -1,341 +0,0 @@ -/* - * create.c - * - * Description: - * This translation unit implements routines associated with spawning a new - * thread. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" -#if ! defined(_UWIN) && ! defined(WINCE) -#include -#endif - -int -pthread_create (pthread_t * tid, - const pthread_attr_t * attr, - void * (__PTW32_CDECL *start) (void *), void *arg) -/* - * ------------------------------------------------------ - * DOCPUBLIC - * This function creates a thread running the start function, - * passing it the parameter value, 'arg'. The 'attr' - * argument specifies optional creation attributes. - * The identity of the new thread is returned - * via 'tid', which should not be NULL. - * - * PARAMETERS - * tid - * pointer to an instance of pthread_t - * - * attr - * optional pointer to an instance of pthread_attr_t - * - * start - * pointer to the starting routine for the new thread - * - * arg - * optional parameter passed to 'start' - * - * - * DESCRIPTION - * This function creates a thread running the start function, - * passing it the parameter value, 'arg'. The 'attr' - * argument specifies optional creation attributes. - * The identity of the new thread is returned - * via 'tid', which should not be the NULL pointer. - * - * RESULTS - * 0 successfully created thread, - * EINVAL attr invalid, - * EAGAIN insufficient resources. - * - * ------------------------------------------------------ - */ -{ - pthread_t thread; - __ptw32_thread_t * tp; - __ptw32_thread_t * sp; - register pthread_attr_t a; - HANDLE threadH = 0; - int result = EAGAIN; - int run = __PTW32_TRUE; - ThreadParms *parms = NULL; - unsigned int stackSize; - int priority; - - /* - * Before doing anything, check that tid can be stored through - * without invoking a memory protection error (segfault). - * Make sure that the assignment below can't be optimised out by the compiler. - * This is assured by conditionally assigning *tid again at the end. - */ - tid->x = 0; - - if (NULL == (sp = (__ptw32_thread_t *)pthread_self().p)) - { - goto FAIL0; - } - - if (attr != NULL) - { - a = *attr; - } - else - { - a = NULL; - } - - thread = __ptw32_new(); - if (thread.p == NULL) - { - goto FAIL0; - } - - tp = (__ptw32_thread_t *) thread.p; - - priority = tp->sched_priority; - - if ((parms = (ThreadParms *) malloc (sizeof (*parms))) == NULL) - { - goto FAIL0; - } - - parms->tid = thread; - parms->start = start; - parms->arg = arg; - - /* - * Threads inherit their initial sigmask and CPU affinity from their creator thread. - */ -#if defined(HAVE_SIGSET_T) - tp->sigmask = sp->sigmask; -#endif -#if defined(HAVE_CPU_AFFINITY) - tp->cpuset = sp->cpuset; -#endif - - if (a != NULL) - { -#if defined(HAVE_CPU_AFFINITY) - cpu_set_t none; - cpu_set_t attr_cpuset; - ((_sched_cpu_set_vector_*)&attr_cpuset)->_cpuset = a->cpuset; - - CPU_ZERO(&none); - if (! CPU_EQUAL(&attr_cpuset, &none)) - { - tp->cpuset = a->cpuset; - } -#endif - stackSize = (unsigned int)a->stacksize; - tp->detachState = a->detachstate; - priority = a->param.sched_priority; - if (a->thrname != NULL) - tp->name = _strdup(a->thrname); - -#if (THREAD_PRIORITY_LOWEST > THREAD_PRIORITY_NORMAL) - /* WinCE */ -#else - /* Everything else */ - - /* - * Thread priority must be set to a valid system level - * without altering the value set by pthread_attr_setschedparam(). - */ - - /* - * PTHREAD_EXPLICIT_SCHED is the default because Win32 threads - * don't inherit their creator's priority. They are started with - * THREAD_PRIORITY_NORMAL (win32 value). The result of not supplying - * an 'attr' arg to pthread_create() is equivalent to defaulting to - * PTHREAD_EXPLICIT_SCHED and priority THREAD_PRIORITY_NORMAL. - */ - if (PTHREAD_INHERIT_SCHED == a->inheritsched) - { - /* - * If the thread that called pthread_create() is a Win32 thread - * then the inherited priority could be the result of a temporary - * system adjustment. This is not the case for POSIX threads. - */ - priority = sp->sched_priority; - } - -#endif - - } - else - { - /* - * Default stackSize - */ - stackSize = PTHREAD_STACK_MIN; - } - - /* - * State must be >= PThreadStateRunning before we return to the caller. - * __ptw32_threadStart will set state to PThreadStateRunning. - */ - tp->state = PThreadStateSuspended; - - tp->keys = NULL; - - /* - * Threads must be started in suspended mode and resumed if necessary - * after _beginthreadex returns us the handle. Otherwise we set up a - * race condition between the creating and the created threads. - * Note that we also retain a local copy of the handle for use - * by us in case thread.p->threadH gets NULLed later but before we've - * finished with it here. - */ - -#if ! defined (__MINGW32__) || defined (__MSVCRT__) || defined (__DMC__) - - tp->threadH = - threadH = - (HANDLE) _beginthreadex ((void *) NULL, /* No security info */ - stackSize, /* default stack size */ - __ptw32_threadStart, - parms, - (unsigned) - CREATE_SUSPENDED, - (unsigned *) &(tp->thread)); - - if (threadH != 0) - { - if (a != NULL) - { - (void) __ptw32_setthreadpriority (thread, SCHED_OTHER, priority); - } - -#if defined(HAVE_CPU_AFFINITY) - - SetThreadAffinityMask(tp->threadH, tp->cpuset); - -#endif - - if (run) - { - ResumeThread (threadH); - } - } - -#else - - { - __ptw32_mcs_local_node_t stateLock; - - /* - * This lock will force pthread_threadStart() to wait until we have - * the thread handle and have set the priority. - */ - __ptw32_mcs_lock_acquire(&tp->stateLock, &stateLock); - - tp->threadH = - threadH = - (HANDLE) _beginthread (__ptw32_threadStart, stackSize, /* default stack size */ - parms); - - /* - * Make the return code match _beginthreadex's. - */ - if (threadH == (HANDLE) - 1L) - { - tp->threadH = threadH = 0; - } - else - { - if (!run) - { - /* - * beginthread does not allow for create flags, so we do it now. - * Note that beginthread itself creates the thread in SUSPENDED - * mode, and then calls ResumeThread to start it. - */ - SuspendThread (threadH); - } - - if (a != NULL) - { - (void) __ptw32_setthreadpriority (thread, SCHED_OTHER, priority); - } - -#if defined(HAVE_CPU_AFFINITY) - - SetThreadAffinityMask(tp->threadH, tp->cpuset); - -#endif - - } - - __ptw32_mcs_lock_release (&stateLock); - } -#endif - - result = (threadH != 0) ? 0 : EAGAIN; - - /* - * Fall Through Intentionally - */ - - /* - * ------------ - * Failure Code - * ------------ - */ - - FAIL0: - if (result != 0) - { - - __ptw32_threadDestroy (thread); - tp = NULL; - - if (parms != NULL) - { - free (parms); - } - } - else - { - *tid = thread; - } - -#if defined(_UWIN) - if (result == 0) - pthread_count++; -#endif - return (result); -} /* pthread_create */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/dll.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/dll.c deleted file mode 100644 index 1dccfb0..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/dll.c +++ /dev/null @@ -1,167 +0,0 @@ -/* - * dll.c - * - * Description: - * This translation unit implements DLL initialisation. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -#if !defined (__PTW32_STATIC_LIB) - -#if defined(_MSC_VER) -/* - * lpvReserved yields an unreferenced formal parameter; - * ignore it - */ -#pragma warning( disable : 4100 ) -#endif - -#if defined(__cplusplus) -/* - * Dear c++: Please don't mangle this name. -thanks - */ -extern "C" -#endif /* __cplusplus */ - BOOL WINAPI DllMain (HINSTANCE hinstDll, DWORD fdwReason, LPVOID lpvReserved) -{ - BOOL result = __PTW32_TRUE; - - switch (fdwReason) - { - - case DLL_PROCESS_ATTACH: - result = pthread_win32_process_attach_np (); - break; - - case DLL_THREAD_ATTACH: - /* - * A thread is being created - */ - result = pthread_win32_thread_attach_np (); - break; - - case DLL_THREAD_DETACH: - /* - * A thread is exiting cleanly - */ - result = pthread_win32_thread_detach_np (); - break; - - case DLL_PROCESS_DETACH: - (void) pthread_win32_thread_detach_np (); - result = pthread_win32_process_detach_np (); - break; - } - - return (result); - -} /* DllMain */ - -#endif /* !PTW32_STATIC_LIB */ - -#if ! defined (__PTW32_BUILD_INLINED) -/* - * Avoid "translation unit is empty" warnings - */ -typedef int foo; -#endif - -#if defined(__PTW32_STATIC_LIB) - -/* - * Note: MSVC 8 and higher use code in dll.c, which enables TLS cleanup - * on thread exit. Code here can only do process init and exit functions. - */ - -#if defined(__MINGW32__) || defined(_MSC_VER) - -/* For an explanation of this code (at least the MSVC parts), refer to - * - * http://www.codeguru.com/cpp/misc/misc/threadsprocesses/article.php/c6945/ - * ("Running Code Before and After Main") - * - * Compatibility with MSVC8 was cribbed from Boost: - * - * http://svn.boost.org/svn/boost/trunk/libs/thread/src/win32/tss_pe.cpp - * - * In addition to that, because we are in a static library, and the linker - * can't tell that the constructor/destructor functions are actually - * needed, we need a way to prevent the linker from optimizing away this - * module. The pthread_win32_autostatic_anchor() hack below (and in - * implement.h) does the job in a portable manner. - */ - -static int on_process_init(void) -{ - pthread_win32_process_attach_np (); - return 0; -} - -static int on_process_exit(void) -{ - pthread_win32_thread_detach_np (); - pthread_win32_process_detach_np (); - return 0; -} - -#if defined(__GNUC__) -__attribute__((section(".ctors"), used)) static int (*gcc_ctor)(void) = on_process_init; -__attribute__((section(".dtors"), used)) static int (*gcc_dtor)(void) = on_process_exit; -#elif defined(_MSC_VER) -# if _MSC_VER >= 1400 /* MSVC8+ */ -# pragma section(".CRT$XCU", long, read) -# pragma section(".CRT$XPU", long, read) -__declspec(allocate(".CRT$XCU")) static int (*msc_ctor)(void) = on_process_init; -__declspec(allocate(".CRT$XPU")) static int (*msc_dtor)(void) = on_process_exit; -# else -# pragma data_seg(".CRT$XCU") -static int (*msc_ctor)(void) = on_process_init; -# pragma data_seg(".CRT$XPU") -static int (*msc_dtor)(void) = on_process_exit; -# pragma data_seg() /* reset data segment */ -# endif -#endif - -#endif /* defined(__MINGW32__) || defined(_MSC_VER) */ - -/* This dummy function exists solely to be referenced by other modules - * (specifically, in implement.h), so that the linker can't optimize away - * this module. Don't call it. - */ -void __ptw32_autostatic_anchor(void) { abort(); } - -#endif /* __PTW32_STATIC_LIB */ - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/errno.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/errno.c deleted file mode 100644 index 36eb301..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/errno.c +++ /dev/null @@ -1,103 +0,0 @@ -/* - * errno.c - * - * Description: - * This translation unit implements routines associated with spawning a new - * thread. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#if defined(NEED_ERRNO) - -#include "pthread.h" -#include "implement.h" - -static int reallyBad = ENOMEM; - -/* - * Re-entrant errno. - * - * Each thread has it's own errno variable in pthread_t. - * - * The benefit of using the pthread_t structure - * instead of another TSD key is TSD keys are limited - * on Win32 to 64 per process. Secondly, to implement - * it properly without using pthread_t you'd need - * to dynamically allocate an int on starting the thread - * and store it manually into TLS and then ensure that you free - * it on thread termination. We get all that for free - * by simply storing the errno on the pthread_t structure. - * - * MSVC and Mingw32 already have their own thread-safe errno. - * - * #if defined( _REENTRANT ) || defined( _MT ) - * #define errno *_errno() - * - * int *_errno( void ); - * #else - * extern int errno; - * #endif - * - */ - -int * -_errno (void) -{ - pthread_t self; - int *result; - - if ((self = pthread_self ()).p == NULL) - { - /* - * Yikes! unable to allocate a thread! - * Throw an exception? return an error? - */ - result = &reallyBad; - } - else - { - result = (int *)(&((__ptw32_thread_t *)self.p)->exitStatus); - } - - return (result); - -} /* _errno */ - -#endif /* (NEED_ERRNO) */ - -#if ! defined (__PTW32_BUILD_INLINED) -/* - * Avoid "translation unit is empty" warnings - */ -typedef int foo; -#endif diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/global.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/global.c deleted file mode 100644 index f1f0ecf..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/global.c +++ /dev/null @@ -1,109 +0,0 @@ -/* - * global.c - * - * Description: - * This translation unit instantiates data associated with the implementation - * as a whole. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int __ptw32_processInitialized = __PTW32_FALSE; -__ptw32_thread_t * __ptw32_threadReuseTop = __PTW32_THREAD_REUSE_EMPTY; -__ptw32_thread_t * __ptw32_threadReuseBottom = __PTW32_THREAD_REUSE_EMPTY; -pthread_key_t __ptw32_selfThreadKey = NULL; -pthread_key_t __ptw32_cleanupKey = NULL; -pthread_cond_t __ptw32_cond_list_head = NULL; -pthread_cond_t __ptw32_cond_list_tail = NULL; - -int __ptw32_concurrency = 0; - -/* What features have been auto-detected */ -int __ptw32_features = 0; - -/* - * Global [process wide] thread sequence Number - */ -unsigned __int64 __ptw32_threadSeqNumber = 0; - -/* - * Function pointer to QueueUserAPCEx if it exists, otherwise - * it will be set at runtime to a substitute routine which cannot unblock - * blocked threads. - */ -DWORD (*__ptw32_register_cancellation) (PAPCFUNC, HANDLE, DWORD) = NULL; - -/* - * Global lock for managing pthread_t struct reuse. - */ -__ptw32_mcs_lock_t __ptw32_thread_reuse_lock = 0; - -/* - * Global lock for testing internal state of statically declared mutexes. - */ -__ptw32_mcs_lock_t __ptw32_mutex_test_init_lock = 0; - -/* - * Global lock for testing internal state of PTHREAD_COND_INITIALIZER - * created condition variables. - */ -__ptw32_mcs_lock_t __ptw32_cond_test_init_lock = 0; - -/* - * Global lock for testing internal state of PTHREAD_RWLOCK_INITIALIZER - * created read/write locks. - */ -__ptw32_mcs_lock_t __ptw32_rwlock_test_init_lock = 0; - -/* - * Global lock for testing internal state of PTHREAD_SPINLOCK_INITIALIZER - * created spin locks. - */ -__ptw32_mcs_lock_t __ptw32_spinlock_test_init_lock = 0; - -/* - * Global lock for condition variable linked list. The list exists - * to wake up CVs when a WM_TIMECHANGE message arrives. See - * w32_TimeChangeHandler.c. - */ -__ptw32_mcs_lock_t __ptw32_cond_list_lock = 0; - -#if defined(_UWIN) -/* - * Keep a count of the number of threads. - */ -int pthread_count = 0; -#endif diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/implement.h b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/implement.h deleted file mode 100644 index 78623e9..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/implement.h +++ /dev/null @@ -1,974 +0,0 @@ -/* - * implement.h - * - * Definitions that don't need to be public. - * - * Keeps all the internals out of pthread.h - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#if !defined(_IMPLEMENT_H) -#define _IMPLEMENT_H - -#if !defined (__PTW32_CONFIG_H) -# error "config.h was not #included" -#endif - -#include <_ptw32.h> - -#if !defined(_WIN32_WINNT) -# define _WIN32_WINNT 0x0400 -#endif - -#define WIN32_LEAN_AND_MEAN - -#include -#include -/* - * In case windows.h doesn't define it (e.g. WinCE perhaps) - */ -#if defined(WINCE) -typedef VOID (APIENTRY *PAPCFUNC)(DWORD dwParam); -#endif - -/* - * Designed to allow error values to be set and retrieved in builds where - * MSCRT libraries are statically linked to DLLs. - * - * This does not handle the case where a static pthreads4w lib is linked - * to a static linked app. Compiling and linking pthreads.c with app.c - * as one does work with the right macros defined. See tests/Makefile - * for clues or just "cd tests && nmake clean VC-static". - */ -#if ! defined(WINCE) && \ - (( defined(__MINGW32__) && __MSVCRT_VERSION__ >= 0x0800 ) || \ - ( defined(_MSC_VER) && _MSC_VER >= 1400 )) /* MSVC8+ */ -# if defined(__MINGW32__) -__attribute__((unused)) -# endif -static int __ptw32_get_errno(void) { int err = 0; _get_errno(&err); return err; } -# define __PTW32_GET_ERRNO() __ptw32_get_errno() -# if defined(__MINGW32__) -__attribute__((unused)) -# endif -static void __ptw32_set_errno(int err) { _set_errno(err); SetLastError(err); } -# define __PTW32_SET_ERRNO(err) __ptw32_set_errno(err) -#else -# define __PTW32_GET_ERRNO() (errno) -# if defined(__MINGW32__) -__attribute__((unused)) -# endif -static void __ptw32_set_errno(int err) { errno = err; SetLastError(err); } -# define __PTW32_SET_ERRNO(err) __ptw32_set_errno(err) -#endif - -#if !defined(malloc) -# include -#endif - -#if defined(__PTW32_CLEANUP_C) -# include -#endif - -#if !defined(INT_MAX) -# include -#endif - -/* use local include files during development */ -#include "semaphore.h" -#include "sched.h" - -/* MSVC 7.1 doesn't like complex #if expressions */ -#define INLINE -#if defined (__PTW32_BUILD_INLINED) -# if defined(HAVE_C_INLINE) || defined(__cplusplus) -# undef INLINE -# define INLINE inline -# endif -#endif - -#if defined (__PTW32_CONFIG_MSVC6) -# define __PTW32_INTERLOCKED_VOLATILE -#else -# define __PTW32_INTERLOCKED_VOLATILE volatile -#endif - -#define __PTW32_INTERLOCKED_LONG long -#define __PTW32_INTERLOCKED_PVOID PVOID -#define __PTW32_INTERLOCKED_LONGPTR __PTW32_INTERLOCKED_VOLATILE long* -#define __PTW32_INTERLOCKED_PVOID_PTR __PTW32_INTERLOCKED_VOLATILE PVOID* -#if defined(_WIN64) -# define __PTW32_INTERLOCKED_SIZE LONGLONG -# define __PTW32_INTERLOCKED_SIZEPTR __PTW32_INTERLOCKED_VOLATILE LONGLONG* -#else -# define __PTW32_INTERLOCKED_SIZE long -# define __PTW32_INTERLOCKED_SIZEPTR __PTW32_INTERLOCKED_VOLATILE long* -#endif - -/* - * Don't allow the linker to optimize away dll.obj (dll.o) in static builds. - */ -#if defined (__PTW32_STATIC_LIB) && defined (__PTW32_BUILD) && !defined (__PTW32_TEST_SNEAK_PEEK) - void __ptw32_autostatic_anchor(void); -# if defined(__GNUC__) - __attribute__((unused, used)) -# endif - static void (*local_autostatic_anchor)(void) = __ptw32_autostatic_anchor; -#endif - -typedef enum -{ - /* - * This enumeration represents the state of the thread; - * The thread is still valid if the numeric value of the - * state is greater or equal "PThreadStateRunning". - */ - PThreadStateInitial = 0, /* Thread not running */ - PThreadStateReuse, /* In reuse pool. */ - PThreadStateRunning, /* Thread alive & kicking */ - PThreadStateSuspended, /* Thread alive but suspended */ - PThreadStateCancelPending, /* Thread alive but */ - /* has cancellation pending. */ - PThreadStateCanceling, /* Thread alive but is */ - /* in the process of terminating */ - /* due to a cancellation request */ - PThreadStateExiting, /* Thread alive but exiting */ - /* due to an exception */ - PThreadStateLast /* All handlers have been run and now */ - /* final cleanup can be done. */ -} -PThreadState; - -typedef struct __ptw32_mcs_node_t_ __ptw32_mcs_local_node_t; -typedef struct __ptw32_mcs_node_t_* __ptw32_mcs_lock_t; -typedef struct __ptw32_robust_node_t_ __ptw32_robust_node_t; -typedef struct __ptw32_thread_t_ __ptw32_thread_t; - -struct __ptw32_thread_t_ -{ - unsigned __int64 seqNumber; /* Process-unique thread sequence number */ - HANDLE threadH; /* Win32 thread handle - POSIX thread is invalid if threadH == 0 */ - pthread_t ptHandle; /* This thread's permanent pthread_t handle */ - __ptw32_thread_t * prevReuse; /* Links threads on reuse stack */ - volatile PThreadState state; - __ptw32_mcs_lock_t threadLock; /* Used for serialised access to public thread state */ - __ptw32_mcs_lock_t stateLock; /* Used for async-cancel safety */ - HANDLE cancelEvent; - void *exitStatus; - void *parms; - void *keys; - void *nextAssoc; -#if defined(__PTW32_CLEANUP_C) - jmp_buf start_mark; /* Jump buffer follows void* so should be aligned */ -#endif /* __PTW32_CLEANUP_C */ -#if defined(HAVE_SIGSET_T) - sigset_t sigmask; -#endif /* HAVE_SIGSET_T */ - __ptw32_mcs_lock_t - robustMxListLock; /* robustMxList lock */ - __ptw32_robust_node_t* - robustMxList; /* List of currenty held robust mutexes */ - int ptErrno; - int detachState; - int sched_priority; /* As set, not as currently is */ - int cancelState; - int cancelType; - int implicit:1; - DWORD thread; /* Windows thread ID */ -#if defined(HAVE_CPU_AFFINITY) - size_t cpuset; /* Thread CPU affinity set */ -#endif - char * name; /* Thread name */ -#if defined(_UWIN) - DWORD dummy[5]; -#endif - size_t align; /* Force alignment if this struct is packed */ -}; - - -/* - * Special value to mark attribute objects as valid. - */ -#define __PTW32_ATTR_VALID ((unsigned long) 0xC4C0FFEE) - -struct pthread_attr_t_ -{ - unsigned long valid; - void *stackaddr; - size_t stacksize; - int detachstate; - struct sched_param param; - int inheritsched; - int contentionscope; - size_t cpuset; - char * thrname; -#if defined(HAVE_SIGSET_T) - sigset_t sigmask; -#endif /* HAVE_SIGSET_T */ -}; - - -/* - * ==================== - * ==================== - * Semaphores, Mutexes and Condition Variables - * ==================== - * ==================== - */ - -struct sem_t_ -{ - int value; - __ptw32_mcs_lock_t lock; - HANDLE sem; -#if defined(NEED_SEM) - int leftToUnblock; -#endif -}; - -#define __PTW32_OBJECT_AUTO_INIT ((void *)(size_t) -1) -#define __PTW32_OBJECT_INVALID NULL - -struct pthread_mutex_t_ -{ - LONG lock_idx; /* Provides exclusive access to mutex state - via the Interlocked* mechanism. - 0: unlocked/free. - 1: locked - no other waiters. - -1: locked - with possible other waiters. - */ - int recursive_count; /* Number of unlocks a thread needs to perform - before the lock is released (recursive - mutexes only). */ - int kind; /* Mutex type. */ - pthread_t ownerThread; - HANDLE event; /* Mutex release notification to waiting - threads. */ - __ptw32_robust_node_t* - robustNode; /* Extra state for robust mutexes */ -}; - -enum __ptw32_robust_state_t_ -{ - __PTW32_ROBUST_CONSISTENT, - __PTW32_ROBUST_INCONSISTENT, - __PTW32_ROBUST_NOTRECOVERABLE -}; - -typedef enum __ptw32_robust_state_t_ __ptw32_robust_state_t; - -/* - * Node used to manage per-thread lists of currently-held robust mutexes. - */ -struct __ptw32_robust_node_t_ -{ - pthread_mutex_t mx; - __ptw32_robust_state_t stateInconsistent; - __ptw32_robust_node_t* prev; - __ptw32_robust_node_t* next; -}; - -struct pthread_mutexattr_t_ -{ - int pshared; - int kind; - int robustness; -}; - -/* - * Possible values, other than __PTW32_OBJECT_INVALID, - * for the "interlock" element in a spinlock. - * - * In this implementation, when a spinlock is initialised, - * the number of cpus available to the process is checked. - * If there is only one cpu then "interlock" is set equal to - * __PTW32_SPIN_USE_MUTEX and u.mutex is an initialised mutex. - * If the number of cpus is greater than 1 then "interlock" - * is set equal to __PTW32_SPIN_UNLOCKED and the number is - * stored in u.cpus. This arrangement allows the spinlock - * routines to attempt an InterlockedCompareExchange on "interlock" - * immediately and, if that fails, to try the inferior mutex. - * - * "u.cpus" isn't used for anything yet, but could be used at - * some point to optimise spinlock behaviour. - */ -#define __PTW32_SPIN_INVALID (0) -#define __PTW32_SPIN_UNLOCKED (1) -#define __PTW32_SPIN_LOCKED (2) -#define __PTW32_SPIN_USE_MUTEX (3) - -struct pthread_spinlock_t_ -{ - long interlock; /* Locking element for multi-cpus. */ - union - { - int cpus; /* No. of cpus if multi cpus, or */ - pthread_mutex_t mutex; /* mutex if single cpu. */ - } u; -}; - -/* - * MCS lock queue node - see ptw32_MCS_lock.c - */ -struct __ptw32_mcs_node_t_ -{ - struct __ptw32_mcs_node_t_ **lock; /* ptr to tail of queue */ - struct __ptw32_mcs_node_t_ *next; /* ptr to successor in queue */ - HANDLE readyFlag; /* set after lock is released by - predecessor */ - HANDLE nextFlag; /* set after 'next' ptr is set by - successor */ -}; - - -struct pthread_barrier_t_ -{ - unsigned int nCurrentBarrierHeight; - unsigned int nInitialBarrierHeight; - int pshared; - sem_t semBarrierBreeched; - __ptw32_mcs_lock_t lock; - __ptw32_mcs_local_node_t proxynode; -}; - -struct pthread_barrierattr_t_ -{ - int pshared; -}; - -struct pthread_key_t_ -{ - DWORD key; - void (__PTW32_CDECL *destructor) (void *); - __ptw32_mcs_lock_t keyLock; - void *threads; -}; - - -typedef struct ThreadParms ThreadParms; - -struct ThreadParms -{ - pthread_t tid; - void * (__PTW32_CDECL *start) (void *); - void *arg; -}; - - -struct pthread_cond_t_ -{ - long nWaitersBlocked; /* Number of threads blocked */ - long nWaitersGone; /* Number of threads timed out */ - long nWaitersToUnblock; /* Number of threads to unblock */ - sem_t semBlockQueue; /* Queue up threads waiting for the */ - /* condition to become signalled */ - sem_t semBlockLock; /* Semaphore that guards access to */ - /* | waiters blocked count/block queue */ - /* +-> Mandatory Sync.LEVEL-1 */ - pthread_mutex_t mtxUnblockLock; /* Mutex that guards access to */ - /* | waiters (to)unblock(ed) counts */ - /* +-> Optional* Sync.LEVEL-2 */ - pthread_cond_t next; /* Doubly linked list */ - pthread_cond_t prev; -}; - - -struct pthread_condattr_t_ -{ - int pshared; -}; - -#define __PTW32_RWLOCK_MAGIC 0xfacade2 - -struct pthread_rwlock_t_ -{ - pthread_mutex_t mtxExclusiveAccess; - pthread_mutex_t mtxSharedAccessCompleted; - pthread_cond_t cndSharedAccessCompleted; - int nSharedAccessCount; - int nExclusiveAccessCount; - int nCompletedSharedAccessCount; - int nMagic; -}; - -struct pthread_rwlockattr_t_ -{ - int pshared; -}; - -typedef union -{ - char cpuset[CPU_SETSIZE/8]; - size_t _cpuset; -} _sched_cpu_set_vector_; - -typedef struct ThreadKeyAssoc ThreadKeyAssoc; - -struct ThreadKeyAssoc -{ - /* - * Purpose: - * This structure creates an association between a thread and a key. - * It is used to implement the implicit invocation of a user defined - * destroy routine for thread specific data registered by a user upon - * exiting a thread. - * - * Graphically, the arrangement is as follows, where: - * - * K - Key with destructor - * (head of chain is key->threads) - * T - Thread that has called pthread_setspecific(Kn) - * (head of chain is thread->keys) - * A - Association. Each association is a node at the - * intersection of two doubly-linked lists. - * - * T1 T2 T3 - * | | | - * | | | - * K1 -----+-----A-----A-----> - * | | | - * | | | - * K2 -----A-----A-----+-----> - * | | | - * | | | - * K3 -----A-----+-----A-----> - * | | | - * | | | - * V V V - * - * Access to the association is guarded by two locks: the key's - * general lock (guarding the row) and the thread's general - * lock (guarding the column). This avoids the need for a - * dedicated lock for each association, which not only consumes - * more handles but requires that the lock resources persist - * until both the key is deleted and the thread has called the - * destructor. The two-lock arrangement allows those resources - * to be freed as soon as either thread or key is concluded. - * - * To avoid deadlock, whenever both locks are required both the - * key and thread locks are acquired consistently in the order - * "key lock then thread lock". An exception to this exists - * when a thread calls the destructors, however, this is done - * carefully (but inelegantly) to avoid deadlock. - * - * An association is created when a thread first calls - * pthread_setspecific() on a key that has a specified - * destructor. - * - * An association is destroyed either immediately after the - * thread calls the key destructor function on thread exit, or - * when the key is deleted. - * - * Attributes: - * thread - * reference to the thread that owns the - * association. This is actually the pointer to the - * thread struct itself. Since the association is - * destroyed before the thread exits, this can never - * point to a different logical thread to the one that - * created the assoc, i.e. after thread struct reuse. - * - * key - * reference to the key that owns the association. - * - * nextKey - * The pthread_t->keys attribute is the head of a - * chain of associations that runs through the nextKey - * link. This chain provides the 1 to many relationship - * between a pthread_t and all pthread_key_t on which - * it called pthread_setspecific. - * - * prevKey - * Similarly. - * - * nextThread - * The pthread_key_t->threads attribute is the head of - * a chain of associations that runs through the - * nextThreads link. This chain provides the 1 to many - * relationship between a pthread_key_t and all the - * PThreads that have called pthread_setspecific for - * this pthread_key_t. - * - * prevThread - * Similarly. - * - * Notes: - * 1) As soon as either the key or the thread is no longer - * referencing the association, it can be destroyed. The - * association will be removed from both chains. - * - * 2) Under WIN32, an association is only created by - * pthread_setspecific if the user provided a - * destroyRoutine when they created the key. - * - * - */ - __ptw32_thread_t * thread; - pthread_key_t key; - ThreadKeyAssoc *nextKey; - ThreadKeyAssoc *nextThread; - ThreadKeyAssoc *prevKey; - ThreadKeyAssoc *prevThread; -}; - - -#if defined(__PTW32_CLEANUP_SEH) -/* - * -------------------------------------------------------------- - * MAKE_SOFTWARE_EXCEPTION - * This macro constructs a software exception code following - * the same format as the standard Win32 error codes as defined - * in WINERROR.H - * Values are 32 bit values laid out as follows: - * - * 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 - * +---+-+-+-----------------------+-------------------------------+ - * |Sev|C|R| Facility | Code | - * +---+-+-+-----------------------+-------------------------------+ - * - * Severity Values: - */ -#define SE_SUCCESS 0x00 -#define SE_INFORMATION 0x01 -#define SE_WARNING 0x02 -#define SE_ERROR 0x03 - -#define MAKE_SOFTWARE_EXCEPTION( _severity, _facility, _exception ) \ -( (DWORD) ( ( (_severity) << 30 ) | /* Severity code */ \ - ( 1 << 29 ) | /* MS=0, User=1 */ \ - ( 0 << 28 ) | /* Reserved */ \ - ( (_facility) << 16 ) | /* Facility Code */ \ - ( (_exception) << 0 ) /* Exception Code */ \ - ) ) - -/* - * We choose one specific Facility/Error code combination to - * identify our software exceptions vs. WIN32 exceptions. - * We store our actual component and error code within - * the optional information array. - */ -#define EXCEPTION_PTW32_SERVICES \ - MAKE_SOFTWARE_EXCEPTION( SE_ERROR, \ - __PTW32_SERVICES_FACILITY, \ - __PTW32_SERVICES_ERROR ) - -#define __PTW32_SERVICES_FACILITY 0xBAD -#define __PTW32_SERVICES_ERROR 0xDEED - -#endif /* __PTW32_CLEANUP_SEH */ - -/* - * Services available through EXCEPTION_PTW32_SERVICES - * and also used [as parameters to __ptw32_throw()] as - * generic exception selectors. - */ - -#define __PTW32_EPS_EXIT (1) -#define __PTW32_EPS_CANCEL (2) - - -/* Useful macros */ -#define __PTW32_MAX(a,b) ((a)<(b)?(b):(a)) -#define __PTW32_MIN(a,b) ((a)>(b)?(b):(a)) - - -/* Declared in pthread_cancel.c */ -extern DWORD (*__ptw32_register_cancellation) (PAPCFUNC, HANDLE, DWORD); - -/* Thread Reuse stack bottom marker. Must not be NULL or any valid pointer to memory. */ -#define __PTW32_THREAD_REUSE_EMPTY ((__ptw32_thread_t *)(size_t) 1) - -extern int __ptw32_processInitialized; -extern __ptw32_thread_t * __ptw32_threadReuseTop; -extern __ptw32_thread_t * __ptw32_threadReuseBottom; -extern pthread_key_t __ptw32_selfThreadKey; -extern pthread_key_t __ptw32_cleanupKey; -extern pthread_cond_t __ptw32_cond_list_head; -extern pthread_cond_t __ptw32_cond_list_tail; - -extern int __ptw32_mutex_default_kind; - -extern unsigned __int64 __ptw32_threadSeqNumber; - -extern int __ptw32_concurrency; - -extern int __ptw32_features; - -extern __ptw32_mcs_lock_t __ptw32_thread_reuse_lock; -extern __ptw32_mcs_lock_t __ptw32_mutex_test_init_lock; -extern __ptw32_mcs_lock_t __ptw32_cond_list_lock; -extern __ptw32_mcs_lock_t __ptw32_cond_test_init_lock; -extern __ptw32_mcs_lock_t __ptw32_rwlock_test_init_lock; -extern __ptw32_mcs_lock_t __ptw32_spinlock_test_init_lock; - -#if defined(_UWIN) -extern int pthread_count; -#endif - -__PTW32_BEGIN_C_DECLS - -/* - * ===================== - * ===================== - * Forward Declarations - * ===================== - * ===================== - */ - - int __ptw32_is_attr (const pthread_attr_t * attr); - - int __ptw32_cond_check_need_init (pthread_cond_t * cond); - int __ptw32_mutex_check_need_init (pthread_mutex_t * mutex); - int __ptw32_rwlock_check_need_init (pthread_rwlock_t * rwlock); - int __ptw32_spinlock_check_need_init (pthread_spinlock_t * lock); - - int __ptw32_robust_mutex_inherit(pthread_mutex_t * mutex); - void __ptw32_robust_mutex_add(pthread_mutex_t* mutex, pthread_t self); - void __ptw32_robust_mutex_remove(pthread_mutex_t* mutex, __ptw32_thread_t* otp); - - DWORD - __ptw32_Registercancellation (PAPCFUNC callback, - HANDLE threadH, DWORD callback_arg); - - int __ptw32_processInitialize (void); - - void __ptw32_processTerminate (void); - - void __ptw32_threadDestroy (pthread_t tid); - - void __ptw32_pop_cleanup_all (int execute); - - pthread_t __ptw32_new (void); - - pthread_t __ptw32_threadReusePop (void); - - void __ptw32_threadReusePush (pthread_t thread); - - int __ptw32_getprocessors (int *count); - - int __ptw32_setthreadpriority (pthread_t thread, int policy, int priority); - - void __ptw32_rwlock_cancelwrwait (void *arg); - -#if ! defined (__MINGW32__) || (defined (__MSVCRT__) && ! defined (__DMC__)) - unsigned __stdcall -#else - void -#endif - __ptw32_threadStart (void *vthreadParms); - - void __ptw32_callUserDestroyRoutines (pthread_t thread); - - int __ptw32_tkAssocCreate (__ptw32_thread_t * thread, pthread_key_t key); - - void __ptw32_tkAssocDestroy (ThreadKeyAssoc * assoc); - - int __ptw32_semwait (sem_t * sem); - - DWORD __ptw32_relmillisecs (const struct timespec * abstime); - - void __ptw32_mcs_lock_acquire (__ptw32_mcs_lock_t * lock, __ptw32_mcs_local_node_t * node); - - int __ptw32_mcs_lock_try_acquire (__ptw32_mcs_lock_t * lock, __ptw32_mcs_local_node_t * node); - - void __ptw32_mcs_lock_release (__ptw32_mcs_local_node_t * node); - - void __ptw32_mcs_node_transfer (__ptw32_mcs_local_node_t * new_node, __ptw32_mcs_local_node_t * old_node); - - void __ptw32_timespec_to_filetime (const struct timespec *ts, FILETIME * ft); - - void __ptw32_filetime_to_timespec (const FILETIME * ft, struct timespec *ts); - -/* Declared in pthw32_calloc.c */ -#if defined(NEED_CALLOC) -#define calloc(n, s) __ptw32_calloc(n, s) - void *__ptw32_calloc (size_t n, size_t s); -#endif - -/* Declared in ptw32_throw.c */ -void __ptw32_throw (DWORD exception); - -__PTW32_END_C_DECLS - -#if defined(_UWIN_) -# if defined(_MT) - -__PTW32_BEGIN_C_DECLS - - _CRTIMP unsigned long __cdecl _beginthread (void (__cdecl *) (void *), - unsigned, void *); - _CRTIMP void __cdecl _endthread (void); - _CRTIMP unsigned long __cdecl _beginthreadex (void *, unsigned, - unsigned (__stdcall *) (void *), - void *, unsigned, unsigned *); - _CRTIMP void __cdecl _endthreadex (unsigned); - -__PTW32_END_C_DECLS - -# endif -#else -# if ! defined(WINCE) -# include -# endif -#endif - - -/* - * Use intrinsic versions wherever possible. VC will do this - * automatically where possible and GCC define these if available: - * __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 - * __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 - * __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 - * __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 - * __GCC_HAVE_SYNC_COMPARE_AND_SWAP_16 - * - * The full set of Interlocked intrinsics in GCC are (check versions): - * type __sync_fetch_and_add (type *ptr, type value, ...) - * type __sync_fetch_and_sub (type *ptr, type value, ...) - * type __sync_fetch_and_or (type *ptr, type value, ...) - * type __sync_fetch_and_and (type *ptr, type value, ...) - * type __sync_fetch_and_xor (type *ptr, type value, ...) - * type __sync_fetch_and_nand (type *ptr, type value, ...) - * type __sync_add_and_fetch (type *ptr, type value, ...) - * type __sync_sub_and_fetch (type *ptr, type value, ...) - * type __sync_or_and_fetch (type *ptr, type value, ...) - * type __sync_and_and_fetch (type *ptr, type value, ...) - * type __sync_xor_and_fetch (type *ptr, type value, ...) - * type __sync_nand_and_fetch (type *ptr, type value, ...) - * bool __sync_bool_compare_and_swap (type *ptr, type oldval type newval, ...) - * type __sync_val_compare_and_swap (type *ptr, type oldval type newval, ...) - * __sync_synchronize (...) // Full memory barrier - * type __sync_lock_test_and_set (type *ptr, type value, ...) // Acquire barrier - * void __sync_lock_release (type *ptr, ...) // Release barrier - * - * These are all overloaded and take 1,2,4,8 byte scalar or pointer types. - * - * The above aren't available in Mingw32 as of gcc 4.5.2 so define our own. - */ -#if defined(__cplusplus) -# define __PTW32_TO_VLONG64PTR(ptr) reinterpret_cast(ptr) -#else -# define __PTW32_TO_VLONG64PTR(ptr) (ptr) -#endif - -#if defined(__GNUC__) -# if defined(_WIN64) -# define __PTW32_INTERLOCKED_COMPARE_EXCHANGE_64(location, value, comparand) \ - ({ \ - __typeof (value) _result; \ - __asm__ __volatile__ \ - ( \ - "lock\n\t" \ - "cmpxchgq %2,(%1)" \ - :"=a" (_result) \ - :"r" (location), "r" (value), "a" (comparand) \ - :"memory", "cc"); \ - _result; \ - }) -# define __PTW32_INTERLOCKED_EXCHANGE_64(location, value) \ - ({ \ - __typeof (value) _result; \ - __asm__ __volatile__ \ - ( \ - "xchgq %0,(%1)" \ - :"=r" (_result) \ - :"r" (location), "0" (value) \ - :"memory", "cc"); \ - _result; \ - }) -# define __PTW32_INTERLOCKED_EXCHANGE_ADD_64(location, value) \ - ({ \ - __typeof (value) _result; \ - __asm__ __volatile__ \ - ( \ - "lock\n\t" \ - "xaddq %0,(%1)" \ - :"=r" (_result) \ - :"r" (location), "0" (value) \ - :"memory", "cc"); \ - _result; \ - }) -# define __PTW32_INTERLOCKED_INCREMENT_64(location) \ - ({ \ - __PTW32_INTERLOCKED_LONG _temp = 1; \ - __asm__ __volatile__ \ - ( \ - "lock\n\t" \ - "xaddq %0,(%1)" \ - :"+r" (_temp) \ - :"r" (location) \ - :"memory", "cc"); \ - ++_temp; \ - }) -# define __PTW32_INTERLOCKED_DECREMENT_64(location) \ - ({ \ - __PTW32_INTERLOCKED_LONG _temp = -1; \ - __asm__ __volatile__ \ - ( \ - "lock\n\t" \ - "xaddq %2,(%1)" \ - :"+r" (_temp) \ - :"r" (location) \ - :"memory", "cc"); \ - --_temp; \ - }) -#endif -# define __PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG(location, value, comparand) \ - ({ \ - __typeof (value) _result; \ - __asm__ __volatile__ \ - ( \ - "lock\n\t" \ - "cmpxchgl %2,(%1)" \ - :"=a" (_result) \ - :"r" (location), "r" (value), "a" (comparand) \ - :"memory", "cc"); \ - _result; \ - }) -# define __PTW32_INTERLOCKED_EXCHANGE_LONG(location, value) \ - ({ \ - __typeof (value) _result; \ - __asm__ __volatile__ \ - ( \ - "xchgl %0,(%1)" \ - :"=r" (_result) \ - :"r" (location), "0" (value) \ - :"memory", "cc"); \ - _result; \ - }) -# define __PTW32_INTERLOCKED_EXCHANGE_ADD_LONG(location, value) \ - ({ \ - __typeof (value) _result; \ - __asm__ __volatile__ \ - ( \ - "lock\n\t" \ - "xaddl %0,(%1)" \ - :"=r" (_result) \ - :"r" (location), "0" (value) \ - :"memory", "cc"); \ - _result; \ - }) -# define __PTW32_INTERLOCKED_INCREMENT_LONG(location) \ - ({ \ - __PTW32_INTERLOCKED_LONG _temp = 1; \ - __asm__ __volatile__ \ - ( \ - "lock\n\t" \ - "xaddl %0,(%1)" \ - :"+r" (_temp) \ - :"r" (location) \ - :"memory", "cc"); \ - ++_temp; \ - }) -# define __PTW32_INTERLOCKED_DECREMENT_LONG(location) \ - ({ \ - __PTW32_INTERLOCKED_LONG _temp = -1; \ - __asm__ __volatile__ \ - ( \ - "lock\n\t" \ - "xaddl %0,(%1)" \ - :"+r" (_temp) \ - :"r" (location) \ - :"memory", "cc"); \ - --_temp; \ - }) -# define __PTW32_INTERLOCKED_COMPARE_EXCHANGE_PTR(location, value, comparand) \ - __PTW32_INTERLOCKED_COMPARE_EXCHANGE_SIZE ((__PTW32_INTERLOCKED_SIZEPTR)location, \ - (__PTW32_INTERLOCKED_SIZE)value, \ - (__PTW32_INTERLOCKED_SIZE)comparand) -# define __PTW32_INTERLOCKED_EXCHANGE_PTR(location, value) \ - __PTW32_INTERLOCKED_EXCHANGE_SIZE ((__PTW32_INTERLOCKED_SIZEPTR)location, \ - (__PTW32_INTERLOCKED_SIZE)value) -#else -# if defined(_WIN64) -# define __PTW32_INTERLOCKED_COMPARE_EXCHANGE_64(p,v,c) InterlockedCompareExchange64 (__PTW32_TO_VLONG64PTR(p),(v),(c)) -# define __PTW32_INTERLOCKED_EXCHANGE_64(p,v) InterlockedExchange64 (__PTW32_TO_VLONG64PTR(p),(v)) -# define __PTW32_INTERLOCKED_EXCHANGE_ADD_64(p,v) InterlockedExchangeAdd64 (__PTW32_TO_VLONG64PTR(p),(v)) -# define __PTW32_INTERLOCKED_INCREMENT_64(p) InterlockedIncrement64 (__PTW32_TO_VLONG64PTR(p)) -# define __PTW32_INTERLOCKED_DECREMENT_64(p) InterlockedDecrement64 (__PTW32_TO_VLONG64PTR(p)) -# endif -# if defined (__PTW32_CONFIG_MSVC6) && !defined(_WIN64) -# define __PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG(location, value, comparand) \ - ((LONG)InterlockedCompareExchange((PVOID *)(location), (PVOID)(value), (PVOID)(comparand))) -# else -# define __PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG InterlockedCompareExchange -# endif -# define __PTW32_INTERLOCKED_EXCHANGE_LONG(p,v) InterlockedExchange((p),(v)) -# define __PTW32_INTERLOCKED_EXCHANGE_ADD_LONG(p,v) InterlockedExchangeAdd((p),(v)) -# define __PTW32_INTERLOCKED_INCREMENT_LONG(p) InterlockedIncrement((p)) -# define __PTW32_INTERLOCKED_DECREMENT_LONG(p) InterlockedDecrement((p)) -# if defined (__PTW32_CONFIG_MSVC6) && !defined(_WIN64) -# define __PTW32_INTERLOCKED_COMPARE_EXCHANGE_PTR InterlockedCompareExchange -# define __PTW32_INTERLOCKED_EXCHANGE_PTR(location, value) \ - ((PVOID)InterlockedExchange((LPLONG)(location), (LONG)(value))) -# else -# define __PTW32_INTERLOCKED_COMPARE_EXCHANGE_PTR(p,v,c) InterlockedCompareExchangePointer((p),(v),(c)) -# define __PTW32_INTERLOCKED_EXCHANGE_PTR(p,v) InterlockedExchangePointer((p),(v)) -# endif -#endif -#if defined(_WIN64) -# define __PTW32_INTERLOCKED_COMPARE_EXCHANGE_SIZE(p,v,c) __PTW32_INTERLOCKED_COMPARE_EXCHANGE_64 (__PTW32_TO_VLONG64PTR(p),(v),(c)) -# define __PTW32_INTERLOCKED_EXCHANGE_SIZE(p,v) __PTW32_INTERLOCKED_EXCHANGE_64 (__PTW32_TO_VLONG64PTR(p),(v)) -# define __PTW32_INTERLOCKED_EXCHANGE_ADD_SIZE(p,v) __PTW32_INTERLOCKED_EXCHANGE_ADD_64 (__PTW32_TO_VLONG64PTR(p),(v)) -# define __PTW32_INTERLOCKED_INCREMENT_SIZE(p) __PTW32_INTERLOCKED_INCREMENT_64 (__PTW32_TO_VLONG64PTR(p)) -# define __PTW32_INTERLOCKED_DECREMENT_SIZE(p) __PTW32_INTERLOCKED_DECREMENT_64 (__PTW32_TO_VLONG64PTR(p)) -#else -# define __PTW32_INTERLOCKED_COMPARE_EXCHANGE_SIZE(p,v,c) __PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG((p),(v),(c)) -# define __PTW32_INTERLOCKED_EXCHANGE_SIZE(p,v) __PTW32_INTERLOCKED_EXCHANGE_LONG((p),(v)) -# define __PTW32_INTERLOCKED_EXCHANGE_ADD_SIZE(p,v) __PTW32_INTERLOCKED_EXCHANGE_ADD_LONG((p),(v)) -# define __PTW32_INTERLOCKED_INCREMENT_SIZE(p) __PTW32_INTERLOCKED_INCREMENT_LONG((p)) -# define __PTW32_INTERLOCKED_DECREMENT_SIZE(p) __PTW32_INTERLOCKED_DECREMENT_LONG((p)) -#endif - -#if defined(NEED_CREATETHREAD) - -/* - * Macro uses args so we can cast start_proc to LPTHREAD_START_ROUTINE - * in order to avoid warnings because of return type - */ - -#define _beginthreadex(security, \ - stack_size, \ - start_proc, \ - arg, \ - flags, \ - pid) \ - CreateThread(security, \ - stack_size, \ - (LPTHREAD_START_ROUTINE) start_proc, \ - arg, \ - flags, \ - pid) - -#define _endthreadex ExitThread - -#endif /* NEED_CREATETHREAD */ - - -#endif /* _IMPLEMENT_H */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/install-sh b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/install-sh deleted file mode 100644 index e9de238..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/install-sh +++ /dev/null @@ -1,251 +0,0 @@ -#!/bin/sh -# -# install - install a program, script, or datafile -# This comes from X11R5 (mit/util/scripts/install.sh). -# -# Copyright 1991 by the Massachusetts Institute of Technology -# -# Permission to use, copy, modify, distribute, and sell this software and its -# documentation for any purpose is hereby granted without fee, provided that -# the above copyright notice appear in all copies and that both that -# copyright notice and this permission notice appear in supporting -# documentation, and that the name of M.I.T. not be used in advertising or -# publicity pertaining to distribution of the software without specific, -# written prior permission. M.I.T. makes no representations about the -# suitability of this software for any purpose. It is provided "as is" -# without express or implied warranty. -# -# Calling this script install-sh is preferred over install.sh, to prevent -# `make' implicit rules from creating a file called install from it -# when there is no Makefile. -# -# This script is compatible with the BSD install script, but was written -# from scratch. It can only install one file at a time, a restriction -# shared with many OS's install programs. - - -# set DOITPROG to echo to test this script - -# Don't use :- since 4.3BSD and earlier shells don't like it. -doit="${DOITPROG-}" - - -# put in absolute paths if you don't have them in your path; or use env. vars. - -mvprog="${MVPROG-mv}" -cpprog="${CPPROG-cp}" -chmodprog="${CHMODPROG-chmod}" -chownprog="${CHOWNPROG-chown}" -chgrpprog="${CHGRPPROG-chgrp}" -stripprog="${STRIPPROG-strip}" -rmprog="${RMPROG-rm}" -mkdirprog="${MKDIRPROG-mkdir}" - -transformbasename="" -transform_arg="" -instcmd="$mvprog" -chmodcmd="$chmodprog 0755" -chowncmd="" -chgrpcmd="" -stripcmd="" -rmcmd="$rmprog -f" -mvcmd="$mvprog" -src="" -dst="" -dir_arg="" - -while [ x"$1" != x ]; do - case $1 in - -c) instcmd="$cpprog" - shift - continue;; - - -d) dir_arg=true - shift - continue;; - - -m) chmodcmd="$chmodprog $2" - shift - shift - continue;; - - -o) chowncmd="$chownprog $2" - shift - shift - continue;; - - -g) chgrpcmd="$chgrpprog $2" - shift - shift - continue;; - - -s) stripcmd="$stripprog" - shift - continue;; - - -t=*) transformarg=`echo $1 | sed 's/-t=//'` - shift - continue;; - - -b=*) transformbasename=`echo $1 | sed 's/-b=//'` - shift - continue;; - - *) if [ x"$src" = x ] - then - src=$1 - else - # this colon is to work around a 386BSD /bin/sh bug - : - dst=$1 - fi - shift - continue;; - esac -done - -if [ x"$src" = x ] -then - echo "install: no input file specified" - exit 1 -else - true -fi - -if [ x"$dir_arg" != x ]; then - dst=$src - src="" - - if [ -d $dst ]; then - instcmd=: - chmodcmd="" - else - instcmd=mkdir - fi -else - -# Waiting for this to be detected by the "$instcmd $src $dsttmp" command -# might cause directories to be created, which would be especially bad -# if $src (and thus $dsttmp) contains '*'. - - if [ -f $src -o -d $src ] - then - true - else - echo "install: $src does not exist" - exit 1 - fi - - if [ x"$dst" = x ] - then - echo "install: no destination specified" - exit 1 - else - true - fi - -# If destination is a directory, append the input filename; if your system -# does not like double slashes in filenames, you may need to add some logic - - if [ -d $dst ] - then - dst="$dst"/`basename $src` - else - true - fi -fi - -## this sed command emulates the dirname command -dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'` - -# Make sure that the destination directory exists. -# this part is taken from Noah Friedman's mkinstalldirs script - -# Skip lots of stat calls in the usual case. -if [ ! -d "$dstdir" ]; then -defaultIFS=' -' -IFS="${IFS-${defaultIFS}}" - -oIFS="${IFS}" -# Some sh's can't handle IFS=/ for some reason. -IFS='%' -set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'` -IFS="${oIFS}" - -pathcomp='' - -while [ $# -ne 0 ] ; do - pathcomp="${pathcomp}${1}" - shift - - if [ ! -d "${pathcomp}" ] ; - then - $mkdirprog "${pathcomp}" - else - true - fi - - pathcomp="${pathcomp}/" -done -fi - -if [ x"$dir_arg" != x ] -then - $doit $instcmd $dst && - - if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else true ; fi && - if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi && - if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi && - if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fi -else - -# If we're going to rename the final executable, determine the name now. - - if [ x"$transformarg" = x ] - then - dstfile=`basename $dst` - else - dstfile=`basename $dst $transformbasename | - sed $transformarg`$transformbasename - fi - -# don't allow the sed command to completely eliminate the filename - - if [ x"$dstfile" = x ] - then - dstfile=`basename $dst` - else - true - fi - -# Make a temp file name in the proper directory. - - dsttmp=$dstdir/#inst.$$# - -# Move or copy the file name to the temp name - - $doit $instcmd $src $dsttmp && - - trap "rm -f ${dsttmp}" 0 && - -# and set any options; do chmod last to preserve setuid bits - -# If any of these fail, we abort the whole thing. If we want to -# ignore errors from any of these, just make sure not to ignore -# errors from the above "$doit $instcmd $src $dsttmp" command. - - if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi && - if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi && - if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi && - if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi && - -# Now rename the file to the real destination. - - $doit $rmcmd -f $dstdir/$dstfile && - $doit $mvcmd $dsttmp $dstdir/$dstfile - -fi && - - -exit 0 diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/ChangeLog b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/ChangeLog deleted file mode 100644 index bcf8930..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/ChangeLog +++ /dev/null @@ -1,104 +0,0 @@ -2016-12-25 Ross Johnson - - * Change all references to "pthreads-w32" etc. to "PThreads4W" - * Change all references to the sourceware projects web page to the - SourceForge project web page. - -2015-02-03 Ross Johnson - - * *.html: Fix HEAD section inconsistencies and remove editor meta tags. - * pthread_equal.html (pthread_self): Fix HREF URL. - * pthread_exit.html (several): Likewise. - * pthread_setaffinity_np.html: New. - -2012-10-04 Ross Johnson - - * pthread_join.html (pthread_tryjoin_np): Added description. - * index.html (pthread_tryjoin_np): Added link. - -2012-09-20 Ross Johnson - - * cpu_set.html: New manual page. - * pthread_create.html: Updated. - * index.html: Updated. - * sched_setaffinity.html: Fixed corrupted formatting. - -2012-08-19 Ross Johnson - - * pthread_join.html(pthread_timedjoin_np): Added. - * index.html(pthread_timedjoin_np): Added link. - -2011-03-26 Ross Johnson - - * pthread_nutex_init.html (robust mutexes): Added - descriptions for newly implemented interface. - * pthread_mutexattr_init.html (robust mutexes): Likewise. - * pthread_getsequence_np.html: New. - * index.html: Updated. - -2008-06-30 Ross Johnson - - * pthread_setschedparam.html: Fix "see also" links. - -2005-05-06 Ross Johnson - - * PortabilityIssues.html: Was nonPortableIssues.html. - * index.html: Updated; add table of contents at top. - * *.html: Add PThreads4W header info; add link back to the - index page 'index.html'. - -2005-05-06 Ross Johnson - - * index.html: New. - * nonPortableIssues.html: New. - * pthread_attr_init.html: New. - * pthread_attr_setstackaddr.html: New. - * pthread_attr_setstacksize.html: New. - * pthread_barrierattr_init.html: New. - * pthread_barrierattr_setpshared.html: New. - * pthread_barrier_init.html: New. - * pthread_barrier_wait.html: New. - * pthreadCancelableWait.html: New. - * pthread_cancel.html: New. - * pthread_cleanup_push.html: New. - * pthread_condattr_init.html: New. - * pthread_condattr_setpshared.html: New. - * pthread_cond_init.html: New. - * pthread_create.html: New. - * pthread_delay_np.html: New. - * pthread_detach.html: New. - * pthread_equal.html: New. - * pthread_exit.html: New. - * pthread_getw32threadhandle_np.html: New. - * pthread_join.html: New. - * pthread_key_create.html: New. - * pthread_kill.html: New. - * pthread_mutexattr_init.html: New. - * pthread_mutexattr_setpshared.html: New. - * pthread_mutex_init.html: New. - * pthread_num_processors_np.html: New. - * pthread_once.html: New. - * pthread_rwlockattr_init.html: New. - * pthread_rwlockattr_setpshared.html: New. - * pthread_rwlock_init.html: New. - * pthread_rwlock_rdlock.html: New. - * pthread_rwlock_timedrdlock.html: New. - * pthread_rwlock_timedwrlock.html: New. - * pthread_rwlock_unlock.html: New. - * pthread_rwlock_wrlock.html: New. - * pthread_self.html: New. - * pthread_setcancelstate.html: New. - * pthread_setcanceltype.html: New. - * pthread_setconcurrency.html: New. - * pthread_setschedparam.html: New. - * pthread_spin_init.html: New. - * pthread_spin_lock.html: New. - * pthread_spin_unlock.html: New. - * pthread_timechange_handler_np.html: New. - * pthread_win32_attach_detach_np.html: New. - * pthread_win32_test_features_np.html: New. - * sched_get_priority_max.html: New. - * sched_getscheduler.html: New. - * sched_setscheduler.html: New. - * sched_yield.html: New. - * sem_init.html: New. diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/PortabilityIssues.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/PortabilityIssues.html deleted file mode 100644 index 0fce9e0..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/PortabilityIssues.html +++ /dev/null @@ -1,726 +0,0 @@ - - - - - PORTABILITY ISSUES manual page - - - - - - - -

POSIX Threads for Windows – REFERENCE – -Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

Portability issues

-

Synopsis

-

Thread priority

-

Description

-

Thread priority

-

POSIX defines a single contiguous range -of numbers that determine a thread's priority. Win32 defines priority -classes - and priority levels relative to these classes. Classes are -simply priority base levels that the defined priority levels are -relative to such that, changing a process's priority class will -change the priority of all of it's threads, while the threads retain -the same relativity to each other.

-

A Win32 system defines a single -contiguous monotonic range of values that define system priority -levels, just like POSIX. However, Win32 restricts individual threads -to a subset of this range on a per-process basis.

-

The following table shows the base -priority levels for combinations of priority class and priority value -in Win32.

-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-


-

-
-

Process Priority Class

-
-

Thread Priority Level

-
-

1

-
-

IDLE_PRIORITY_CLASS

-
-

THREAD_PRIORITY_IDLE

-
-

1

-
-

BELOW_NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_IDLE

-
-

1

-
-

NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_IDLE

-
-

1

-
-

ABOVE_NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_IDLE

-
-

1

-
-

HIGH_PRIORITY_CLASS

-
-

THREAD_PRIORITY_IDLE

-
-

2

-
-

IDLE_PRIORITY_CLASS

-
-

THREAD_PRIORITY_LOWEST

-
-

3

-
-

IDLE_PRIORITY_CLASS

-
-

THREAD_PRIORITY_BELOW_NORMAL

-
-

4

-
-

IDLE_PRIORITY_CLASS

-
-

THREAD_PRIORITY_NORMAL

-
-

4

-
-

BELOW_NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_LOWEST

-
-

5

-
-

IDLE_PRIORITY_CLASS

-
-

THREAD_PRIORITY_ABOVE_NORMAL

-
-

5

-
-

BELOW_NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_BELOW_NORMAL

-
-

5

-
-

Background NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_LOWEST

-
-

6

-
-

IDLE_PRIORITY_CLASS

-
-

THREAD_PRIORITY_HIGHEST

-
-

6

-
-

BELOW_NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_NORMAL

-
-

6

-
-

Background NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_BELOW_NORMAL

-
-

7

-
-

BELOW_NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_ABOVE_NORMAL

-
-

7

-
-

Background NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_NORMAL

-
-

7

-
-

Foreground NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_LOWEST

-
-

8

-
-

BELOW_NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_HIGHEST

-
-

8

-
-

NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_ABOVE_NORMAL

-
-

8

-
-

Foreground NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_BELOW_NORMAL

-
-

8

-
-

ABOVE_NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_LOWEST

-
-

9

-
-

NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_HIGHEST

-
-

9

-
-

Foreground NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_NORMAL

-
-

9

-
-

ABOVE_NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_BELOW_NORMAL

-
-

10

-
-

Foreground NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_ABOVE_NORMAL

-
-

10

-
-

ABOVE_NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_NORMAL

-
-

11

-
-

Foreground NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_HIGHEST

-
-

11

-
-

ABOVE_NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_ABOVE_NORMAL

-
-

11

-
-

HIGH_PRIORITY_CLASS

-
-

THREAD_PRIORITY_LOWEST

-
-

12

-
-

ABOVE_NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_HIGHEST

-
-

12

-
-

HIGH_PRIORITY_CLASS

-
-

THREAD_PRIORITY_BELOW_NORMAL

-
-

13

-
-

HIGH_PRIORITY_CLASS

-
-

THREAD_PRIORITY_NORMAL

-
-

14

-
-

HIGH_PRIORITY_CLASS

-
-

THREAD_PRIORITY_ABOVE_NORMAL

-
-

15

-
-

HIGH_PRIORITY_CLASS

-
-

THREAD_PRIORITY_HIGHEST

-
-

15

-
-

HIGH_PRIORITY_CLASS

-
-

THREAD_PRIORITY_TIME_CRITICAL

-
-

15

-
-

IDLE_PRIORITY_CLASS

-
-

THREAD_PRIORITY_TIME_CRITICAL

-
-

15

-
-

BELOW_NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_TIME_CRITICAL

-
-

15

-
-

NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_TIME_CRITICAL

-
-

15

-
-

ABOVE_NORMAL_PRIORITY_CLASS

-
-

THREAD_PRIORITY_TIME_CRITICAL

-
-

16

-
-

REALTIME_PRIORITY_CLASS

-
-

THREAD_PRIORITY_IDLE

-
-

17

-
-

REALTIME_PRIORITY_CLASS

-
-

-7

-
-

18

-
-

REALTIME_PRIORITY_CLASS

-
-

-6

-
-

19

-
-

REALTIME_PRIORITY_CLASS

-
-

-5

-
-

20

-
-

REALTIME_PRIORITY_CLASS

-
-

-4

-
-

21

-
-

REALTIME_PRIORITY_CLASS

-
-

-3

-
-

22

-
-

REALTIME_PRIORITY_CLASS

-
-

THREAD_PRIORITY_LOWEST

-
-

23

-
-

REALTIME_PRIORITY_CLASS

-
-

THREAD_PRIORITY_BELOW_NORMAL

-
-

24

-
-

REALTIME_PRIORITY_CLASS

-
-

THREAD_PRIORITY_NORMAL

-
-

25

-
-

REALTIME_PRIORITY_CLASS

-
-

THREAD_PRIORITY_ABOVE_NORMAL

-
-

26

-
-

REALTIME_PRIORITY_CLASS

-
-

THREAD_PRIORITY_HIGHEST

-
-

27

-
-

REALTIME_PRIORITY_CLASS

-
-

3

-
-

28

-
-

REALTIME_PRIORITY_CLASS

-
-

4

-
-

29

-
-

REALTIME_PRIORITY_CLASS

-
-

5

-
-

30

-
-

REALTIME_PRIORITY_CLASS

-
-

6

-
-

31

-
-

REALTIME_PRIORITY_CLASS

-
-

THREAD_PRIORITY_TIME_CRITICAL

-
-
-

Windows NT: Values -7, -6, -5, -4, -3, 3, -4, 5, and 6 are not supported.

-

As you can see, the real priority levels -available to any individual Win32 thread are non-contiguous.

-

An application using PThreads4W should -not make assumptions about the numbers used to represent thread -priority levels, except that they are monotonic between the values -returned by sched_get_priority_min() and sched_get_priority_max(). -E.g. Windows 95, 98, NT, 2000, XP make available a non-contiguous -range of numbers between -15 and 15, while at least one version of -WinCE (3.0) defines the minimum priority (THREAD_PRIORITY_LOWEST) as -5, and the maximum priority (THREAD_PRIORITY_HIGHEST) as 1.

-

Internally, PThreads4W maps any -priority levels between THREAD_PRIORITY_IDLE and -THREAD_PRIORITY_LOWEST to THREAD_PRIORITY_LOWEST, or between -THREAD_PRIORITY_TIME_CRITICAL and THREAD_PRIORITY_HIGHEST to -THREAD_PRIORITY_HIGHEST. Currently, this also applies to -REALTIME_PRIORITY_CLASS even if levels -7, -6, -5, -4, -3, 3, 4, 5, -and 6 are supported.

-

If it wishes, a Win32 application using -PThreads4W can use the Win32 defined priority macros -THREAD_PRIORITY_IDLE through THREAD_PRIORITY_TIME_CRITICAL.

-

Author

-

Ross Johnson for use with Pthreads4W.

-

See also

-



-

-
-

Table of Contents

- - - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/cpu_set.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/cpu_set.html deleted file mode 100644 index 15d3660..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/cpu_set.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - CPU_SET(3) manual page - - - -

POSIX -Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

Operations on CPU affinity sets:

-

CPU_EQUAL - test equality of two sets

-

CPU_ZERO - clear all CPUs from set

-

CPU_SET - set a specified CPU in a set

-

CPU_CLR - unset a specified CPU in a set

-

CPU_ISSET - test if a specified CPU in a set is set

-

CPU_COUNT - return the number of CPUs currently set

-

CPU_AND - obtain the intersection of two sets

-

CPU_OR - obtain the union of two sets

-

CPU_XOR - obtain the mutually excluded set

-

Synopsis

-

#include <sched.h> -

-

int CPU_EQUAL(cpu_set_t * set1, -cpu_set_t * set2);

-

void CPU_ZERO(cpu_set_t * set);

-

void CPU_SET(int cpu, -cpu_set_t * set);

-

void CPU_CLR(int cpu, -cpu_set_t * set);

-

int CPU_ISSET(int cpu, -cpu_set_t * set);

-

int CPU_COUNT(cpu_set_t * set);

-

void CPU_AND(cpu_set_t * destset, -cpu_set_t * srcset1, -cpu_set_t * srcset2);

-

void CPU_OR(cpu_set_t * destset, -cpu_set_t * srcset1, -cpu_set_t * srcset2);

-

void CPU_XOR(cpu_set_t * destset, -cpu_set_t * srcset1, -cpu_set_t * srcset2);

-

Description

-

The cpu_set_t data structure represents a set of CPUs. CPU sets -are used by sched_setaffinity() -and pthread_setaffinity_np(), -etc.

-

The cpu_set_t data type is implemented as a bitset. However, the -data structure is considered opaque: all manipulation of CPU sets -should be done via the macros described in this page.

-

The following macros are provided to operate on the CPU set set:

-

CPU_ZERO Clears set, so that it contains no CPUs.

-

CPU_SET Add CPU cpu to set.

-

CPU_CLR Remove CPU cpu from set.

-

CPU_ISSET Test to see if CPU cpu is a member of set.

-

CPU_COUNT Return the number of CPUs in set.

-

Where a cpu argument is specified, it should not produce -side effects, since the above macros may evaluate the argument more -than once.

-

The first available CPU on the system corresponds to a cpu value -of 0, the next CPU corresponds to a cpu value of 1, and so on.

-

The following macros perform logical operations on CPU sets:

-

CPU_AND Store the intersection of the sets srcset1 -and srcset2 in destset (which may be one of the source -sets).

-

CPU_OR Store the union of the sets srcset1 and -srcset2 in destset (which may be one of the source -sets).

-

CPU_XOR Store the XOR of the sets srcset1 and -srcset2 in destset (which may be one of the source -sets). The XOR means the set of CPUs that are in either srcset1 or -srcset2, but not both.

-

CPU_EQUAL Test whether two CPU set contain exactly the -same CPUs.

-

Return Value

-

These macros either return a value consistent with the operation -or nothing.

-

Errors

-

These macros do not return an error status.

-

See Also

-

sched_getaffinity(3) , -sched_setaffinity(3) -, pthread_setaffininty_np(3) -, pthread_getaffinity_np(3) -.

-
-

Table of Contents

- -



-

- - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/index.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/index.html deleted file mode 100644 index 36828a5..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/index.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - - - - - - -

POSIX Threads for Windows – REFERENCE - -Pthreads4W

-

Table of Contents

-

POSIX threads API -reference
Miscellaneous POSIX -thread safe routines provided by PThreads4W
Non-portable -PThreads4W routines
Other

-

POSIX threads API -reference

-

cpu_set

-

pthread_attr_destroy

-

pthread_attr_getdetachstate

-

pthread_attr_getinheritsched

-

pthread_attr_getname_np

-

pthread_attr_getschedparam

-

pthread_attr_getschedpolicy

-

pthread_attr_getscope

-

pthread_attr_getstackaddr

-

pthread_attr_getstacksize

-

pthread_attr_init

-

pthread_attr_getaffinity_np

-

pthread_attr_setdetachstate

-

pthread_attr_setinheritsched

-

pthread_attr_setname_np

-

pthread_attr_setschedparam

-

pthread_attr_setschedpolicy

-

pthread_attr_setscope

-

pthread_attr_setstackaddr

-

pthread_attr_setstacksize

-

pthread_barrierattr_destroy

-

pthread_barrierattr_getpshared

-

pthread_barrierattr_init

-

pthread_barrierattr_setpshared

-

pthread_barrier_destroy

-

pthread_barrier_init

-

pthread_barrier_wait

-

pthread_cancel

-

pthread_cleanup_pop

-

pthread_cleanup_push

-

pthread_condattr_destroy

-

pthread_condattr_getpshared

-

pthread_condattr_init

-

pthread_condattr_setpshared

-

pthread_cond_broadcast

-

pthread_cond_destroy

-

pthread_cond_init

-

pthread_cond_signal

-

pthread_cond_timedwait

-

pthread_cond_wait

-

pthread_create

-

pthread_detach

-

pthread_equal

-

pthread_exit

-

pthread_getconcurrency

-

pthread_getname_np

-

pthread_getschedparam

-

pthread_getunique_np

-

pthread_getspecific

-

pthread_join

-

pthread_timedjoin_np

-

pthread_tryjoin_np

-

pthread_key_create

-

pthread_key_delete

-

pthread_kill

-

pthread_mutexattr_destroy

-

pthread_mutexattr_getkind_np

-

pthread_mutexattr_getpshared

-

pthread_mutexattr_getrobust

-

pthread_mutexattr_gettype

-

pthread_mutexattr_init

-

pthread_mutexattr_setkind_np

-

pthread_mutexattr_setpshared

-

pthread_mutexattr_setrobust

-

pthread_mutexattr_settype

-

pthread_mutex_consistent

-

pthread_mutex_destroy

-

pthread_mutex_init

-

pthread_mutex_lock

-

pthread_mutex_timedlock

-

pthread_mutex_trylock

-

pthread_mutex_unlock

-

pthread_once

-

pthread_rwlockattr_destroy

-

pthread_rwlockattr_getpshared

-

pthread_rwlockattr_init

-

pthread_rwlockattr_setpshared

-

pthread_rwlock_destroy

-

pthread_rwlock_init

-

pthread_rwlock_rdlock

-

pthread_rwlock_timedrdlock

-

pthread_rwlock_timedwrlock

-

pthread_rwlock_tryrdlock

-

pthread_rwlock_trywrlock

-

pthread_rwlock_unlock

-

pthread_rwlock_wrlock

-

pthread_self

-

pthread_setcancelstate

-

pthread_setcanceltype

-

pthread_setconcurrency

-

pthread_setname_np

-

pthread_setschedparam

-

pthread_setspecific

-

pthread_sigmask

-

pthread_spin_destroy

-

pthread_spin_init

-

pthread_spin_lock

-

pthread_spin_trylock

-

pthread_spin_unlock

-

pthread_testcancel

-

sched_get_priority_max

-

sched_get_priority_min

-

sched_getaffinity

-

sched_getscheduler

-

sched_setaffinity

-

sched_setscheduler

-

sched_yield

-

sem_close

-

sem_destroy

-

sem_getvalue

-

sem_init

-

sem_open

-

sem_post

-

sem_post_multiple

-

sem_timedwait

-

sem_trywait

-

sem_unlink

-

sem_wait

-

sigwait

-

Non-portable -PThreads4W routines

-

pthreadCancelableTimedWait

-

pthreadCancelableWait

-

pthread_attr_getaffinity_np

-

pthread_attr_setaffinity_np

-

pthread_getaffinity_np

-

pthread_setaffinity_np

-

pthread_delay_np

-

pthread_getname_np

-

pthread_getunique_np

-

pthread_getw32threadhandle_np

-

pthread_num_processors_np

-

pthread_setname_np

-

pthread_timechange_handler_np

-

pthread_timedjoin_np

-

pthread_win32_getabstime_np

-

pthread_win32_process_attach_np

-

pthread_win32_process_detach_np

-

pthread_win32_test_features_np

-

pthread_win32_thread_attach_np

-

pthread_win32_thread_detach_np

-

Other

-

Portability issues

- - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthreadCancelableWait.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthreadCancelableWait.html deleted file mode 100644 index bd3108b..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthreadCancelableWait.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - PTHREADCANCELLABLEWAIT(3) manual page - - - - - - - -

POSIX Threads for Windows – REFERENCE – -Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthreadCancelableTimedWait, -pthreadCancelableWait – provide cancellation hooks for user -Win32 routines

-

Synopsis

-

#include <pthread.h> -

-

int pthreadCancelableTimedWait (HANDLE waitHandle, -DWORD timeout);

-

int pthreadCancelableWait (HANDLE waitHandle);

-

Description

-

These two functions provide hooks into the pthread_cancel() -mechanism that will allow you to wait on a Windows handle and make it -a cancellation point. Both functions block until either the given -Win32 HANDLE is signalled, or pthread_cancel() -has been called. They are implemented using WaitForMultipleObjects -on waitHandle and the manually reset Win32 event handle that -is the target of pthread_cancel(). -These routines may be called from Win32 native threads but -pthread_cancel() will -require that thread's POSIX thread ID that the thread must retrieve -using pthread_self().

-

pthreadCancelableTimedWait is the timed version that will -return with the code ETIMEDOUT if the interval timeout -milliseconds elapses before waitHandle is signalled.

-

Cancellation

-

These routines allow routines that block on Win32 HANDLEs to be -cancellable via pthread_cancel().

-

Return Value

-



-

-

Errors

-

The pthreadCancelableTimedWait function returns the -following error code on error: -

-
-
ETIMEDOUT -
-
-

-The interval timeout milliseconds elapsed before waitHandle -was signalled.

-

Author

-

Ross Johnson for use with Pthreads4W.

-

See also

-

pthread_cancel(), -pthread_self()

-
-

Table of Contents

- - - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_attr_init.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_attr_init.html deleted file mode 100644 index 79b2b0b..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_attr_init.html +++ /dev/null @@ -1,330 +0,0 @@ - - - - - PTHREAD_ATTR_INIT(3) manual page - - - - - - - -

POSIX Threads for Windows – REFERENCE – -Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_attr_init, pthread_attr_destroy, -pthread_attr_setaffinity_np, pthread_attr_setdetachstate, -pthread_attr_getaffinity_np, pthread_attr_getdetachstate, -pthread_attr_setschedparam, pthread_attr_getschedparam, -pthread_attr_setschedpolicy, pthread_attr_getschedpolicy, -pthread_attr_setinheritsched, pthread_attr_getinheritsched, -pthread_attr_setscope, pthread_attr_getscope - thread creation -attributes -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_attr_init(pthread_attr_t *attr); -

-

int pthread_attr_destroy(pthread_attr_t *attr); -

-

int pthread_attr_setaffinity_np(pthread_attr_t *attr, -size_t cpusetsize, -cpu_set_t * -cpuset); -

-

int pthread_attr_getaffinity_np(const pthread_attr_t *attr, -size_t cpusetsize, -cpu_set_t * -cpuset); -

-

int pthread_attr_setdetachstate(pthread_attr_t *attr, -int detachstate); -

-

int pthread_attr_getdetachstate(const pthread_attr_t *attr, -int *detachstate); -

-

int pthread_attr_setname_np(const pthread_attr_t *attr, -const char * name, -void * arg);

-

int pthread_attr_getname_np(const pthread_attr_t *attr, -char * name, -int len);

-

int pthread_attr_setschedpolicy(pthread_attr_t *attr, -int policy); -

-

int pthread_attr_getschedpolicy(const pthread_attr_t *attr, -int *policy); -

-

int pthread_attr_setschedparam(pthread_attr_t *attr, -const struct sched_param *param); -

-

int pthread_attr_getschedparam(const pthread_attr_t *attr, -struct sched_param *param); -

-

int pthread_attr_setinheritsched(pthread_attr_t *attr, -int inherit); -

-

int pthread_attr_getinheritsched(const pthread_attr_t *attr, -int *inherit); -

-

int pthread_attr_setscope(pthread_attr_t *attr, -int scope); -

-

int pthread_attr_getscope(const pthread_attr_t *attr, -int *scope); -

-

Description

-

Setting attributes for threads is achieved by filling a thread -attribute object attr of type pthread_attr_t, then -passing it as second argument to pthread_create(3) -. Passing NULL is equivalent to passing a thread attribute -object with all attributes set to their default values. -

-

pthread_attr_init initializes the thread attribute object -attr and fills it with default values for the attributes. (The -default values are listed below for each attribute.) -

-

Each attribute attrname (see below for a list of all -attributes) can be individually set using the function -pthread_attr_setattrname and retrieved using the -function pthread_attr_getattrname. -

-

pthread_attr_destroy destroys a thread attribute object, -which must not then be reused until it is reinitialized. -

-

Attribute objects are consulted only when creating a new thread. -The same attribute object can be used for creating several threads. -Modifying an attribute object after a call to pthread_create -does not change the attributes of the thread previously created. -

-

The following thread attributes are supported: -

-

affinity

-

Controls which CPUs the thread is eligible to run on. If not set -then the thread will inherit the cpuset from it's parent -[creator thread]. See also: pthread_setaffinity_np(3), -pthread_getaffinity_np(3), -sched_setaffinity(3), -sched_getaffinity(3), cpu_set(3)

-

detachstate

-

Control whether the thread is created in the joinable state (value -PTHREAD_CREATE_JOINABLE) or in the detached state ( -PTHREAD_CREATE_DETACHED). -

-

Default value: PTHREAD_CREATE_JOINABLE. -

-

In the joinable state, another thread can synchronize on the -thread termination and recover its termination code using -pthread_join(3) . When a -joinable thread terminates, some of the thread resources are kept -allocated, and released only when another thread performs -pthread_join(3) on that -thread. -

-

In the detached state, the thread's resources are released -immediately when it terminates. pthread_join(3) -cannot be used to synchronize on the thread termination. -

-

A thread created in the joinable state can later be put in the -detached thread using pthread_detach(3) -. -

-

name

-

Give threads names to aid in tracing during debugging Threads do -not have a default name. See also: pthread_setname_np(3), -pthread_getname_np(3).

-

schedpolicy

-

Select the scheduling policy for the thread: one of SCHED_OTHER -(regular, non-real-time scheduling), SCHED_RR (real-time, -round-robin) or SCHED_FIFO (real-time, first-in first-out). -

-

PThreads4W only supports SCHED_OTHER - attempting -to set one of the other policies will return an error ENOTSUP.

-

Default value: SCHED_OTHER. -

-

PThreads4W only supports SCHED_OTHER - attempting -to set one of the other policies will return an error ENOTSUP.

-

The scheduling policy of a thread can be changed after creation -with pthread_setschedparam(3) -. -

-

schedparam

-

Contain the scheduling parameters (essentially, the scheduling -priority) for the thread.

-

PThreads4W supports the priority levels defined by the -Windows system it is running on. Under Windows, thread priorities are -relative to the process priority class, which must be set via the -Windows W32 API.

-

Default value: priority is 0 (Win32 level THREAD_PRIORITY_NORMAL). -

-

The scheduling priority of a thread can be changed after creation -with pthread_setschedparam(3) -. -

-

inheritsched

-

Indicate whether the scheduling policy and scheduling parameters -for the newly created thread are determined by the values of the -schedpolicy and schedparam attributes (value -PTHREAD_EXPLICIT_SCHED) or are inherited from the parent -thread (value PTHREAD_INHERIT_SCHED). -

-

Default value: PTHREAD_EXPLICIT_SCHED. -

-

scope

-

Define the scheduling contention scope for the created thread. The -only value supported in the PThreads4W implementation is -PTHREAD_SCOPE_SYSTEM, meaning that the threads contend for CPU -time with all processes running on the machine. The other value -specified by the standard, PTHREAD_SCOPE_PROCESS, means that -scheduling contention occurs only between the threads of the running -process.

-

PThreads4W only supports PTHREAD_SCOPE_SYSTEM.

-

Default value: PTHREAD_SCOPE_SYSTEM. -

-

Return Value

-

All functions return 0 on success and a non-zero error code on -error. On success, the pthread_attr_getattrname -functions also store the current value of the attribute attrname -in the location pointed to by their second argument. -

-

Errors

-

The pthread_attr_setaffinity function returns the following -error codes on error: -

-
-
EINVAL
- one or both of the specified attribute or cpuset - argument is invalid.
-
-

-The pthread_attr_setdetachstate function returns the following -error codes on error: -

-
-
EINVAL -
- the specified detachstate is not one of - PTHREAD_CREATE_JOINABLE or PTHREAD_CREATE_DETACHED. -
-
-

-The pthread_attr_setschedparam function returns the following -error codes on error: -

-
-
EINVAL -
- the priority specified in param is outside the range of - allowed priorities for the scheduling policy currently in attr - (1 to 99 for SCHED_FIFO and SCHED_RR; 0 for - SCHED_OTHER). -
-
-

-The pthread_attr_setschedpolicy function returns the following -error codes on error: -

-
-
EINVAL -
- the specified policy is not one of SCHED_OTHER, - SCHED_FIFO, or SCHED_RR. -
- ENOTSUP -
- policy is not SCHED_OTHER, the only value supported - by PThreads4W.
-
-

-The pthread_attr_setinheritsched function returns the -following error codes on error: -

-
-
EINVAL -
- the specified inherit is not one of PTHREAD_INHERIT_SCHED - or PTHREAD_EXPLICIT_SCHED. -
-
-

-The pthread_attr_setscope function returns the following error -codes on error: -

-
-
EINVAL -
- the specified scope is not one of PTHREAD_SCOPE_SYSTEM - or PTHREAD_SCOPE_PROCESS. -
- ENOTSUP -
- the specified scope is PTHREAD_SCOPE_PROCESS (not - supported by PThreads4W). -
-
-

-Author

-

Xavier Leroy <Xavier.Leroy@inria.fr> -

-

Modified by Ross Johnson for use with Pthreads4W.

-

See Also

-

pthread_create(3) , -pthread_join(3) , -pthread_detach(3) , -pthread_setname_np(3), -pthread_getname_np(3), -pthread_setschedparam(3) -, pthread_setaffinity_np(3) -, pthread_getaffinity_np(3) -, sched_setaffinity(3) , -sched_getaffinity(3) , -cpu_set(3) . -

-
-

Table of Contents

- - - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_attr_setstackaddr.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_attr_setstackaddr.html deleted file mode 100644 index 44c9ea1..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_attr_setstackaddr.html +++ /dev/null @@ -1,164 +0,0 @@ - - - - - PTHREAD_ATTR_SETSTACKADDR(3) manual page - - - - - - - -

POSIX Threads for Windows – REFERENCE – -PThreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_attr_getstackaddr, pthread_attr_setstackaddr - get and set -the stackaddr attribute -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_attr_getstackaddr(const pthread_attr_t *restrict -attr, void **restrict stackaddr);
int -pthread_attr_setstackaddr(pthread_attr_t *
attr, void -*stackaddr); -

-

Description

-

The pthread_attr_getstackaddr and pthread_attr_setstackaddr -functions, respectively, shall get and set the thread creation -stackaddr attribute in the attr object. -

-

The stackaddr attribute specifies the location of storage -to be used for the created thread’s stack. The size of the -storage shall be at least {PTHREAD_STACK_MIN}. -

-

PThreads4W defines _POSIX_THREAD_ATTR_STACKADDR in -pthread.h as -1 to indicate that these routines are implemented but -cannot used to set or get the stack address. These routines always -return the error ENOSYS when called.

-

Return Value

-

Upon successful completion, pthread_attr_getstackaddr and -pthread_attr_setstackaddr shall return a value of 0; -otherwise, an error number shall be returned to indicate the error. -

-

The pthread_attr_getstackaddr function stores the stackaddr -attribute value in stackaddr if successful. -

-

Errors

-

The pthread_attr_setstackaddr function always returns the -following error code: -

-
-
ENOSYS
- The function is not supported. -
-
-

-The pthread_attr_getstackaddr function always returns the -following error code: -

-
-
ENOSYS
- The function is not supported. -
-
-

-These functions shall not return an error code of [EINTR]. -

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

The specification of the stackaddr attribute presents -several ambiguities that make portable use of these interfaces -impossible. The description of the single address parameter as a -"stack" does not specify a particular relationship between -the address and the "stack" implied by that address. For -example, the address may be taken as the low memory address of a -buffer intended for use as a stack, or it may be taken as the address -to be used as the initial stack pointer register value for the new -thread. These two are not the same except for a machine on which the -stack grows "up" from low memory to high, and on which a -"push" operation first stores the value in memory and then -increments the stack pointer register. Further, on a machine where -the stack grows "down" from high memory to low, -interpretation of the address as the "low memory" address -requires a determination of the intended size of the stack. -IEEE Std 1003.1-2001 has introduced the new interfaces -pthread_attr_setstack(3) -and pthread_attr_getstack(3) -to resolve these ambiguities. -

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

pthread_attr_destroy(3) -, pthread_attr_getdetachstate(3) -, pthread_attr_getstack(3) -, pthread_attr_getstacksize(3) -, pthread_attr_setstack(3) -, pthread_create(3) , the -Base Definitions volume of IEEE Std 1003.1-2001, -<limits.h>, <pthread.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with PThreads4W.

-
-

Table of Contents

- - - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_attr_setstacksize.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_attr_setstacksize.html deleted file mode 100644 index ebce839..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_attr_setstacksize.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - PTHREAD_ATTR_SETSTACKSIZE(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_attr_getstacksize, pthread_attr_setstacksize - get and set -the stacksize attribute -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_attr_getstacksize(const pthread_attr_t *restrict -attr, size_t *restrict stacksize);
int -pthread_attr_setstacksize(pthread_attr_t *
attr, size_t -stacksize); -

-

Description

-

The pthread_attr_getstacksize and pthread_attr_setstacksize -functions, respectively, shall get and set the thread creation -stacksize attribute in the attr object. -

-

The stacksize attribute shall define the minimum stack size -(in bytes) allocated for the created threads stack. -

-

PThreads4W defines _POSIX_THREAD_ATTR_STACKSIZE in -pthread.h to indicate that these routines are implemented and may be -used to set or get the stack size.

-

Default value: 0 (in PThreads4W a value of 0 means the stack -will grow as required)

-

Return Value

-

Upon successful completion, pthread_attr_getstacksize and -pthread_attr_setstacksize shall return a value of 0; -otherwise, an error number shall be returned to indicate the error. -

-

The pthread_attr_getstacksize function stores the stacksize -attribute value in stacksize if successful. -

-

Errors

-

The pthread_attr_setstacksize function shall fail if: -

-
-
EINVAL -
- The value of stacksize is less than {PTHREAD_STACK_MIN} or - exceeds a system-imposed limit. -
-

-These functions shall not return an error code of [EINTR]. -

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

None. -

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

pthread_attr_destroy(3) -, pthread_attr_getstackaddr(3) -, pthread_attr_getdetachstate(3) -, pthread_create(3) , -the Base Definitions volume of IEEE Std 1003.1-2001, -<limits.h>, <pthread.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_barrier_init.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_barrier_init.html deleted file mode 100644 index 82116a2..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_barrier_init.html +++ /dev/null @@ -1,191 +0,0 @@ - - - - - PTHREAD_BARRIER_INIT(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_barrier_destroy, pthread_barrier_init - destroy and -initialize a barrier object (ADVANCED REALTIME THREADS) -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_barrier_destroy(pthread_barrier_t *barrier); -
int pthread_barrier_init(pthread_barrier_t *restrict
barrier, -const pthread_barrierattr_t *restrict attr, unsigned -count); -

-

Description

-

The pthread_barrier_destroy function shall destroy the -barrier referenced by barrier and release any resources used -by the barrier. The effect of subsequent use of the barrier is -undefined until the barrier is reinitialized by another call to -pthread_barrier_init . An implementation may use this function -to set barrier to an invalid value. An error code is returned if pthread_barrier_destroy is called when any thread is -blocked on the barrier, or if this function is called with an -uninitialized barrier. -

-

The pthread_barrier_init function shall allocate any -resources required to use the barrier referenced by barrier -and shall initialize the barrier with attributes referenced by attr. -If attr is NULL, the default barrier attributes shall be used; -the effect is the same as passing the address of a default barrier -attributes object. The results are undefined if pthread_barrier_init -is called when any thread is blocked on the barrier (that is, has not -returned from the pthread_barrier_wait(3) -call). The results are undefined if a barrier is used without first -being initialized. The results are undefined if pthread_barrier_init -is called specifying an already initialized barrier. -

-

The count argument specifies the number of threads that -must call pthread_barrier_wait(3) -before any of them successfully return from the call. The value -specified by count must be greater than zero. -

-

If the pthread_barrier_init function fails, the barrier -shall not be initialized and the contents of barrier are -undefined. -

-

Only the object referenced by barrier may be used for -performing synchronization. The result of referring to copies of that -object in calls to pthread_barrier_destroy or -pthread_barrier_wait(3) -is undefined.

-

Return Value

-

Upon successful completion, these functions shall return zero; -otherwise, an error number shall be returned to indicate the error. -

-

Errors

-

The pthread_barrier_destroy function may fail if: -

-
-
EBUSY -
- The implementation has detected an attempt to destroy a barrier - while it is in use (for example, while being used in a - pthread_barrier_wait(3) - call) by another thread. -
- EINVAL -
- The value specified by barrier is invalid. -
-

-The pthread_barrier_init function shall fail if: -

-
-
EAGAIN -
- The system lacks the necessary resources to initialize another - barrier. -
- EINVAL -
- The value specified by count is equal to zero. -
- ENOMEM -
- Insufficient memory exists to initialize the barrier. -
-

-The pthread_barrier_init function may fail if: -

-
-
EBUSY -
- The implementation has detected an attempt to reinitialize a barrier - while it is in use (for example, while being used in a - pthread_barrier_wait(3) - call) by another thread. -
- EINVAL -
- The value specified by attr is invalid. -
-

-These functions shall not return an error code of [EINTR]. -

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

The pthread_barrier_destroy and pthread_barrier_init -functions are part of the Barriers option and need not be provided on -all implementations. -

-

PThreads4W defines _POSIX_BARRIERS to indicate -that these routines are implemented and may be used.

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

Known Bugs

-
-
In - PThreads4W, - the behaviour of threads which enter pthread_barrier_wait(3) - while the barrier is being destroyed is undefined. -
-

-See Also

-

pthread_barrier_wait(3) -, the Base Definitions volume of IEEE Std 1003.1-2001, -<pthread.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_barrier_wait.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_barrier_wait.html deleted file mode 100644 index 82c8243..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_barrier_wait.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - PTHREAD_BARRIER_WAIT(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_barrier_wait - synchronize at a barrier (ADVANCED -REALTIME THREADS) -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_barrier_wait(pthread_barrier_t *barrier); - -

-

Description

-

The pthread_barrier_wait function shall synchronize -participating threads at the barrier referenced by barrier. -The calling thread shall block until the required number of threads -have called pthread_barrier_wait specifying the barrier. -

-

When the required number of threads have called -pthread_barrier_wait specifying the barrier, the constant -PTHREAD_BARRIER_SERIAL_THREAD shall be returned to one -unspecified thread and zero shall be returned to each of the -remaining threads. At this point, the barrier shall be reset to the -state it had as a result of the most recent pthread_barrier_init(3) -function that referenced it. -

-

The constant PTHREAD_BARRIER_SERIAL_THREAD is defined in -<pthread.h> and its value shall be distinct from any -other value returned by pthread_barrier_wait . -

-

The results are undefined if this function is called with an -uninitialized barrier. -

-

If a signal is delivered to a thread blocked on a barrier, upon -return from the signal handler the thread shall resume waiting at the -barrier if the barrier wait has not completed (that is, if the -required number of threads have not arrived at the barrier during the -execution of the signal handler); otherwise, the thread shall -continue as normal from the completed barrier wait. Until the thread -in the signal handler returns from it, it is unspecified whether -other threads may proceed past the barrier once they have all reached -it. -

-

A thread that has blocked on a barrier shall not prevent any -unblocked thread that is eligible to use the same processing -resources from eventually making forward progress in its execution. -Eligibility for processing resources shall be determined by the -scheduling policy. -

-

Return Value

-

Upon successful completion, the pthread_barrier_wait -function shall return PTHREAD_BARRIER_SERIAL_THREAD for a -single (arbitrary) thread synchronized at the barrier and zero for -each of the other threads. Otherwise, an error number shall be -returned to indicate the error. -

-

Errors

-

The pthread_barrier_wait function may fail if: -

-
-
EINVAL -
- The value specified by barrier does not refer to an - initialized barrier object. -
-

-This function shall not return an error code of [EINTR]. -

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

Applications using this function may be subject to priority -inversion, as discussed in the Base Definitions volume of -IEEE Std 1003.1-2001, Section 3.285, Priority Inversion. -

-

The pthread_barrier_wait function is part of the Barriers -option and need not be provided on all implementations. -

-

PThreads4W defines _POSIX_BARRIERS to indicate -that this routine is implemented and may be used.

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

Known Bugs

-
- None.
-

-See Also

-

pthread_barrier_destroy(3), -pthread_barrier_init(3), -the Base Definitions volume of IEEE Std 1003.1-2001, -<pthread.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_barrierattr_init.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_barrierattr_init.html deleted file mode 100644 index b26c402..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_barrierattr_init.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - PTHREAD_BARRIERATTR_INIT(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_barrierattr_destroy, pthread_barrierattr_init - destroy -and initialize the barrier attributes object (ADVANCED REALTIME -THREADS) -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_barrierattr_destroy(pthread_barrierattr_t *attr); -
int pthread_barrierattr_init(pthread_barrierattr_t *
attr); - -

-

Description

-

The pthread_barrierattr_destroy function shall destroy a -barrier attributes object. A destroyed attr attributes object -can be reinitialized using pthread_barrierattr_init ; the -results of otherwise referencing the object after it has been -destroyed are undefined. An implementation may cause -pthread_barrierattr_destroy to set the object referenced by -attr to an invalid value. -

-

The pthread_barrierattr_init function shall initialize a -barrier attributes object attr with the default value for all -of the attributes defined by the implementation. -

-

Results are undefined if pthread_barrierattr_init is called -specifying an already initialized attr attributes object. -

-

After a barrier attributes object has been used to initialize one -or more barriers, any function affecting the attributes object -(including destruction) shall not affect any previously initialized -barrier. -

-

Return Value

-

If successful, the pthread_barrierattr_destroy and -pthread_barrierattr_init functions shall return zero; -otherwise, an error number shall be returned to indicate the error. -

-

Errors

-

The pthread_barrierattr_destroy function may fail if: -

-
-
EINVAL -
- The value specified by attr is invalid. -
-

-The pthread_barrierattr_init function shall fail if: -

-
-
ENOMEM -
- Insufficient memory exists to initialize the barrier attributes - object. -
-

-These functions shall not return an error code of [EINTR]. -

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

The pthread_barrierattr_destroy and -pthread_barrierattr_init functions are part of the Barriers -option and need not be provided on all implementations. -

-

PThreads4W defines _POSIX_BARRIERS to indicate -that these routines are implemented and may be used.

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

pthread_barrierattr_getpshared(3) -, pthread_barrierattr_setpshared(3) -, the Base Definitions volume of IEEE Std 1003.1-2001, -<pthread.h>. -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_barrierattr_setpshared.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_barrierattr_setpshared.html deleted file mode 100644 index afeab8e..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_barrierattr_setpshared.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - PTHREAD_BARRIERATTR_SETPSHARED(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_barrierattr_getpshared, pthread_barrierattr_setpshared - -get and set the process-shared attribute of the barrier attributes -object (ADVANCED REALTIME THREADS) -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_barrierattr_getpshared(const pthread_barrierattr_t -* restrict attr, int *restrict pshared); -
int pthread_barrierattr_setpshared(pthread_barrierattr_t *
attr, -int pshared); -

-

Description

-

The pthread_barrierattr_getpshared function shall obtain -the value of the process-shared attribute from the attributes -object referenced by attr. The pthread_barrierattr_setpshared -function shall set the process-shared attribute in an -initialized attributes object referenced by attr. -

-

The process-shared attribute is set to -PTHREAD_PROCESS_SHARED to permit a barrier to be operated upon by any -thread that has access to the memory where the barrier is allocated. -If the process-shared attribute is PTHREAD_PROCESS_PRIVATE, -the barrier shall only be operated upon by threads created within the -same process as the thread that initialized the barrier; if threads -of different processes attempt to operate on such a barrier, the -behavior is undefined. The default value of the attribute shall be -PTHREAD_PROCESS_PRIVATE. Both constants PTHREAD_PROCESS_SHARED and -PTHREAD_PROCESS_PRIVATE are defined in <pthread.h>. -

-

PThreads4W defines _POSIX_THREAD_PROCESS_SHARED in -pthread.h as -1 to indicate that these routines are implemented but -that the process shared attribute is not supported.

-

Additional attributes, their default values, and the names of the -associated functions to get and set those attribute values are -implementation-defined. -

-

Return Value

-

If successful, the pthread_barrierattr_getpshared function -shall return zero and store the value of the process-shared -attribute of attr into the object referenced by the pshared -parameter. Otherwise, an error number shall be returned to indicate -the error. -

-

If successful, the pthread_barrierattr_setpshared function -shall return zero; otherwise, an error number shall be returned to -indicate the error. -

-

Errors

-

These functions may fail if: -

-
-
EINVAL -
- The value specified by attr is invalid. -
- The pthread_barrierattr_setpshared function may fail if: -
- EINVAL -
- The new value specified for the process-shared attribute is - not one of the legal values PTHREAD_PROCESS_SHARED or - PTHREAD_PROCESS_PRIVATE. -
- ENOSYS -
- The value specified by attr was PTHREAD_PROCESS_SHARED - (PThreads4W).
-

-These functions shall not return an error code of [EINTR]. -

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

The pthread_barrierattr_getpshared and -pthread_barrierattr_setpshared functions are part of the -Barriers option and need not be provided on all implementations. -

-

PThreads4W defines _POSIX_BARRIERS and -_POSIX_THREAD_PROCESS_SHARED in pthread.h as -1 to indicate -that these routines are implemented and may be used, but do not -support the process shared option.

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

pthread_barrier_destroy(3) -, pthread_barrierattr_destroy(3) -, pthread_barrierattr_init(3) -, the Base Definitions volume of IEEE Std 1003.1-2001, -<pthread.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_cancel.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_cancel.html deleted file mode 100644 index b6ce0a0..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_cancel.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - - PTHREAD_CANCEL(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_cancel, pthread_setcancelstate, pthread_setcanceltype, -pthread_testcancel - thread cancellation -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_cancel(pthread_t thread); -

-

int pthread_setcancelstate(int state, int -*oldstate); -

-

int pthread_setcanceltype(int type, int -*oldtype); -

-

void pthread_testcancel(void); -

-

Description

-

Cancellation is the mechanism by which a thread can terminate the -execution of another thread. More precisely, a thread can send a -cancellation request to another thread. Depending on its settings, -the target thread can then either ignore the request, honor it -immediately, or defer it until it reaches a cancellation point. -

-

When a thread eventually honors a cancellation request, it -performs as if pthread_exit(PTHREAD_CANCELED) has been called -at that point: all cleanup handlers are executed in reverse order, -destructor functions for thread-specific data are called, and finally -the thread stops executing with the return value PTHREAD_CANCELED. -See pthread_exit(3) for more -information. -

-

pthread_cancel sends a cancellation request to the thread -denoted by the thread argument. -

-

pthread_setcancelstate changes the cancellation state for -the calling thread -- that is, whether cancellation requests are -ignored or not. The state argument is the new cancellation -state: either PTHREAD_CANCEL_ENABLE to enable cancellation, or -PTHREAD_CANCEL_DISABLE to disable cancellation (cancellation -requests are ignored). If oldstate is not NULL, the -previous cancellation state is stored in the location pointed to by -oldstate, and can thus be restored later by another call to -pthread_setcancelstate. -

-

pthread_setcanceltype changes the type of responses to -cancellation requests for the calling thread: asynchronous -(immediate) or deferred. The type argument is the new -cancellation type: either PTHREAD_CANCEL_ASYNCHRONOUS to -cancel the calling thread as soon as the cancellation request is -received, or PTHREAD_CANCEL_DEFERRED to keep the cancellation -request pending until the next cancellation point. If oldtype -is not NULL, the previous cancellation state is stored in the -location pointed to by oldtype, and can thus be restored later -by another call to pthread_setcanceltype. -

-

PThreads4W provides two levels of support for -PTHREAD_CANCEL_ASYNCHRONOUS: full and partial. Full support -requires an additional DLL and driver be installed on the Windows -system (see the See Also section below) that allows blocked threads -to be cancelled immediately. Partial support means that the target -thread will not cancel until it resumes execution naturally. Partial -support is provided if either the DLL or the driver are not -automatically detected by the PThreads4W library at run-time.

-

Threads are always created by pthread_create(3) -with cancellation enabled and deferred. That is, the initial -cancellation state is PTHREAD_CANCEL_ENABLE and the initial -type is PTHREAD_CANCEL_DEFERRED. -

-

Cancellation points are those points in the program execution -where a test for pending cancellation requests is performed and -cancellation is executed if positive. The following POSIX threads -functions are cancellation points: -

-

pthread_join(3) -
pthread_cond_wait(3) -
pthread_cond_timedwait(3) -
pthread_testcancel(3)
sem_wait(3) -
sem_timedwait(3)
sigwait(3)

-

PThreads4W provides two functions to enable additional -cancellation points to be created in user functions that block on -Win32 HANDLEs:

-

pthreadCancelableWait() -
pthreadCancelableTimedWait()

-

All other POSIX threads functions are guaranteed not to be -cancellation points. That is, they never perform cancellation in -deferred cancellation mode. -

-

pthread_testcancel does nothing except testing for pending -cancellation and executing it. Its purpose is to introduce explicit -checks for cancellation in long sequences of code that do not call -cancellation point functions otherwise. -

-

Return Value

-

pthread_cancel, pthread_setcancelstate and -pthread_setcanceltype return 0 on success and a non-zero error -code on error. -

-

Errors

-

pthread_cancel returns the following error code on error: -

-
-
ESRCH -
- no thread could be found corresponding to that specified by the - thread ID. -
-
-

-pthread_setcancelstate returns the following error code on -error: -

-
-
EINVAL -
- the state argument is not -
-
-
-PTHREAD_CANCEL_ENABLE nor PTHREAD_CANCEL_DISABLE -
-

pthread_setcanceltype returns the following error code on -error: -

-
-
EINVAL -
- the type argument is not -
-
-
-PTHREAD_CANCEL_DEFERRED nor PTHREAD_CANCEL_ASYNCHRONOUS -
-

Author

-

Xavier Leroy <Xavier.Leroy@inria.fr> -

-

Modified by Ross Johnson for use with Pthreads4W.

-

See Also

-

pthread_exit(3) , -pthread_cleanup_push(3) -, pthread_cleanup_pop(3) -, PThreads4W package README file 'Prerequisites' section. -

-

Bugs

-

POSIX specifies that a number of system calls (basically, all -system calls that may block, such as read(2) -, write(2) , wait(2) -, etc.) and library functions that may call these system calls (e.g. -fprintf(3) ) are cancellation -points. PThreads4W is not integrated enough with the C -library to implement this, and thus none of the C library functions -is a cancellation point. -

-

A workaround for these calls is to temporarily switch to -asynchronous cancellation (assuming full asynchronous cancellation -support is installed). So, checking for cancellation during a read -system call, for instance, can be achieved as follows: -

-


-
-
pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &oldCancelType);
-read(fd, buffer, length);
-pthread_setcanceltype(oldCancelType, NULL);
-
-
Table of Contents
- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_cleanup_push.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_cleanup_push.html deleted file mode 100644 index 2eda0a5..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_cleanup_push.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - PTHREAD_CLEANUP_PUSH(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_cleanup_push, pthread_cleanup_pop - install and remove -cleanup handlers -

-

Synopsis

-

#include <pthread.h> -

-

void pthread_cleanup_push(void (*routine) (void -*), void *arg); -

-

void pthread_cleanup_pop(int execute); -

-

Description

-

Cleanup handlers are functions that get called when a thread -terminates, either by calling pthread_exit(3) -or because of cancellation. Cleanup handlers are installed and -removed following a stack-like discipline. -

-

The purpose of cleanup handlers is to free the resources that a -thread may hold at the time it terminates. In particular, if a thread -exits or is cancelled while it owns a locked mutex, the mutex will -remain locked forever and prevent other threads from executing -normally. The best way to avoid this is, just before locking the -mutex, to install a cleanup handler whose effect is to unlock the -mutex. Cleanup handlers can be used similarly to free blocks -allocated with malloc(3) or close -file descriptors on thread termination. -

-

pthread_cleanup_push installs the routine function -with argument arg as a cleanup handler. From this point on to -the matching pthread_cleanup_pop, the function routine -will be called with arguments arg when the thread terminates, -either through pthread_exit(3) -or by cancellation. If several cleanup handlers are active at that -point, they are called in LIFO order: the most recently installed -handler is called first. -

-

pthread_cleanup_pop removes the most recently installed -cleanup handler. If the execute argument is not 0, it also -executes the handler, by calling the routine function with -arguments arg. If the execute argument is 0, the -handler is only removed but not executed. -

-

Matching pairs of pthread_cleanup_push and -pthread_cleanup_pop must occur in the same function, at the -same level of block nesting. Actually, pthread_cleanup_push -and pthread_cleanup_pop are macros, and the expansion of -pthread_cleanup_push introduces an open brace { with -the matching closing brace } being introduced by the expansion -of the matching pthread_cleanup_pop. -

-

Return Value

-
None. -
-

Errors

-
None. -
-

Author

-
Xavier Leroy -<Xavier.Leroy@inria.fr> -
-
Modified by -Ross Johnson for use with PThreads4W.
-

See Also

-
pthread_exit(3) -, pthread_cancel(3) , -pthread_setcanceltype(3) . -
-

Example

-
Here is how -to lock a mutex mut in such a way that it will be unlocked if -the thread is canceled while mut is locked: -
-
pthread_cleanup_push(pthread_mutex_unlock, (void *) &mut);
-pthread_mutex_lock(&mut);
-/* do some work */
-pthread_mutex_unlock(&mut);
-pthread_cleanup_pop(0);
-Equivalently, the last two lines can be replaced by -
-
pthread_cleanup_pop(1);
-Notice that the code above is safe only in deferred cancellation mode -(see pthread_setcanceltype(3) -). In asynchronous cancellation mode, a cancellation can occur -between pthread_cleanup_push and pthread_mutex_lock, or -between pthread_mutex_unlock and pthread_cleanup_pop, -resulting in both cases in the thread trying to unlock a mutex not -locked by the current thread. This is the main reason why -asynchronous cancellation is difficult to use. -
-
If the code -above must also work in asynchronous cancellation mode, then it must -switch to deferred mode for locking and unlocking the mutex: -
-
pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, &oldtype);
-pthread_cleanup_push(pthread_mutex_unlock, (void *) &mut);
-pthread_mutex_lock(&mut);
-/* do some work */
-pthread_cleanup_pop(1);
-pthread_setcanceltype(oldtype, NULL);
-
-
-Table of Contents
- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_cond_init.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_cond_init.html deleted file mode 100644 index 9c88684..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_cond_init.html +++ /dev/null @@ -1,300 +0,0 @@ - - - - - PTHREAD_COND_INIT(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_cond_init, pthread_cond_destroy, pthread_cond_signal, -pthread_cond_broadcast, pthread_cond_wait, pthread_cond_timedwait - -operations on conditions -

-

Synopsis

-

#include <pthread.h> -

-

pthread_cond_t cond = PTHREAD_COND_INITIALIZER; -

-

int pthread_cond_init(pthread_cond_t *cond, -pthread_condattr_t *cond_attr); -

-

int pthread_cond_signal(pthread_cond_t *cond); -

-

int pthread_cond_broadcast(pthread_cond_t *cond); -

-

int pthread_cond_wait(pthread_cond_t *cond, -pthread_mutex_t *mutex); -

-

int pthread_cond_timedwait(pthread_cond_t *cond, -pthread_mutex_t *mutex, const struct timespec -*abstime); -

-

int pthread_cond_destroy(pthread_cond_t *cond); -

-

Description

-

A condition (short for ‘‘condition variable’’) is a -synchronization device that allows threads to suspend execution and -relinquish the processors until some predicate on shared data is -satisfied. The basic operations on conditions are: signal the -condition (when the predicate becomes true), and wait for the -condition, suspending the thread execution until another thread -signals the condition. -

-

A condition variable must always be associated with a mutex, to -avoid the race condition where a thread prepares to wait on a -condition variable and another thread signals the condition just -before the first thread actually waits on it. -

-

pthread_cond_init initializes the condition variable cond, -using the condition attributes specified in cond_attr, or -default attributes if cond_attr is NULL. -

-

Variables of type pthread_cond_t can also be initialized -statically, using the constant PTHREAD_COND_INITIALIZER. In -the PThreads4W implementation, an application should still -call pthread_cond_destroy at some point to ensure that any -resources consumed by the condition variable are released.

-

pthread_cond_signal restarts one of the threads that are -waiting on the condition variable cond. If no threads are -waiting on cond, nothing happens. If several threads are -waiting on cond, exactly one is restarted, but it is not -specified which. -

-

pthread_cond_broadcast restarts all the threads that are -waiting on the condition variable cond. Nothing happens if no -threads are waiting on cond. -

-

pthread_cond_wait atomically unlocks the mutex (as -per pthread_unlock_mutex) and waits for the condition variable -cond to be signalled. The thread execution is suspended and -does not consume any CPU time until the condition variable is -signalled. The mutex must be locked by the calling thread on -entrance to pthread_cond_wait. Before returning to the calling -thread, pthread_cond_wait re-acquires mutex (as per -pthread_lock_mutex). -

-

Unlocking the mutex and suspending on the condition variable is -done atomically. Thus, if all threads always acquire the mutex before -signalling the condition, this guarantees that the condition cannot -be signalled (and thus ignored) between the time a thread locks the -mutex and the time it waits on the condition variable. -

-

pthread_cond_timedwait atomically unlocks mutex and -waits on cond, as pthread_cond_wait does, but it also -bounds the duration of the wait. If cond has not been -signalled within the amount of time specified by abstime, the -mutex mutex is re-acquired and pthread_cond_timedwait -returns the error ETIMEDOUT. The abstime parameter -specifies an absolute time, with the same origin as time(2) -and gettimeofday(2). -

-

pthread_cond_destroy destroys a condition variable, freeing -the resources it might hold. No threads must be waiting on the -condition variable on entrance to pthread_cond_destroy.

-

Cancellation

-

pthread_cond_wait and pthread_cond_timedwait are -cancellation points. If a thread is cancelled while suspended in one -of these functions, the thread immediately resumes execution, then -locks again the mutex argument to pthread_cond_wait and -pthread_cond_timedwait, and finally executes the cancellation. -Consequently, cleanup handlers are assured that mutex is -locked when they are called. -

-

Async-signal Safety

-

The condition functions are not async-signal safe, and should not -be called from a signal handler. In particular, calling -pthread_cond_signal or pthread_cond_broadcast from a -signal handler may deadlock the calling thread. -

-

Return Value

-

All condition variable functions return 0 on success and a -non-zero error code on error. -

-

Errors

-

pthread_cond_init, pthread_cond_signal, -pthread_cond_broadcast, and pthread_cond_wait never -return an error code. -

-

The pthread_cond_init function returns the following error -codes on error: -

-
-
EINVAL -
- The cond argument is invalid. -
- ENOMEM -
-
-
-There was not enough memory to allocate the condition variable. -
-

The pthread_cond_signal function returns the following -error codes on error: -

-
-
EINVAL -
- The cond argument is invalid. -
-
-

-The pthread_cond_broadcast function returns the following -error codes on error: -

-
-
EINVAL -
- The cond argument is invalid. -
-
-

-The pthread_cond_wait function returns the following error -codes on error: -

-
-
EINVAL -
- The cond argument is invalid. -
- ENOMEM -
-
-
-There was not enough memory to allocate the statically initialised -condition variable. Statically initialised condition variables are -dynamically allocated by the first thread to wait on them.
-

The pthread_cond_timedwait function returns the following -error codes on error: -

-
-
EINVAL -
-
-

-The cond argument is invalid. -

-
-
ETIMEDOUT -
- The condition variable was not signalled before the timeout - specified by abstime -
- ENOMEM -
-
-
-There was not enough memory to allocate the statically initialised -condition variable. Statically initialised condition variables are -dynamically allocated by the first thread to wait on them. -
-

The pthread_cond_destroy function returns the following -error code on error: -

-
-
EINVAL -
-
-

-The cond argument is invalid. -

-
-
EBUSY -
- Some threads are currently waiting on cond. -
-
-

-Author

-

Xavier Leroy <Xavier.Leroy@inria.fr> -

-

Modified by Ross Johnson for use with Pthreads4W.

-

See Also

-

pthread_condattr_init(3) -, pthread_mutex_lock(3) -, pthread_mutex_unlock(3) -, pthread_cancel(3). -

-

Example

-

Consider two shared variables x and y, protected by -the mutex mut, and a condition variable cond that is to -be signaled whenever x becomes greater than y. -

-
int x,y;
-pthread_mutex_t mut = PTHREAD_MUTEX_INITIALIZER;
-pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
-Waiting until x is greater than y is performed as -follows: -
-
pthread_mutex_lock(&mut);
-while (x <= y) {
-        pthread_cond_wait(&cond, &mut);
-}
-/* operate on x and y */
-pthread_mutex_unlock(&mut);
-Modifications on x and y that may cause x to -become greater than y should signal the condition if needed: -
-
pthread_mutex_lock(&mut);
-/* modify x and y */
-if (x > y) pthread_cond_broadcast(&cond);
-pthread_mutex_unlock(&mut);
-If it can be proved that at most one waiting thread needs to be waken -up (for instance, if there are only two threads communicating through -x and y), pthread_cond_signal can be used as a -slightly more efficient alternative to pthread_cond_broadcast. -If in doubt, use pthread_cond_broadcast. -
-
To wait for x to -become greater than y with a timeout of 5 seconds, do: -
-
struct timeval now;
-struct timespec timeout;
-int retcode;
-pthread_mutex_lock(&mut);
-gettimeofday(&now);
-timeout.tv_sec = now.tv_sec + 5;
-timeout.tv_nsec = now.tv_usec * 1000;
-retcode = 0;
-while (x <= y && retcode != ETIMEDOUT) {
-        retcode = pthread_cond_timedwait(&cond, &mut, &timeout);
-}
-if (retcode == ETIMEDOUT) {
-        /* timeout occurred */
-} else {
-        /* operate on x and y */
-}
-pthread_mutex_unlock(&mut);
-
-
-Table of Contents
- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_condattr_init.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_condattr_init.html deleted file mode 100644 index 3c6f7cf..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_condattr_init.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - PTHREAD_CONDATTR_INIT(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_condattr_init, pthread_condattr_destroy - condition -creation -

-

attributes -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_condattr_init(pthread_condattr_t *attr); -

-

int pthread_condattr_destroy(pthread_condattr_t *attr); -

-

Description

-

Condition attributes can be specified at condition creation time, -by passing a condition attribute object as second argument to -pthread_cond_init(3) . -Passing NULL is equivalent to passing a condition attribute -object with all attributes set to their default values. -

-

pthread_condattr_init initializes the condition attribute -object attr and fills it with default values for the -attributes. pthread_condattr_destroy destroys a condition -attribute object, which must not be reused until it is reinitialized.

-

PThreads4W defines _POSIX_THREAD_PROCESS_SHARED in -pthread.h as -1 to indicate that the attribute routines are -implemented but that the process shared attribute is not supported.

-

Return Value

-

All condition variable functions return 0 on success and a -non-zero error code on error.

-

Errors

-

The pthread_condattr_init function returns the following -error code on error: -

-
-
ENOMEM -
- The was insufficient memory to create the attribute. - -
-
-

-The pthread_condattr_destroy function returns the following -error code on error: -

-
-
EINVAL -
- The attr argument is not valid. - -
-
-

-Author

-

Xavier Leroy <Xavier.Leroy@inria.fr> -

-

Modified by Ross Johnson for use with Pthreads4W.

-

See Also

-

pthread_cond_init(3) . -

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_condattr_setpshared.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_condattr_setpshared.html deleted file mode 100644 index 6f3b2f9..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_condattr_setpshared.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - PTHREAD_CONDATTR_SETPSHARED(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_condattr_getpshared, pthread_condattr_setpshared - get and -set the process-shared condition variable attributes -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_condattr_getpshared(const pthread_condattr_t -*restrict attr, int *restrict pshared); -
int pthread_condattr_setpshared(pthread_condattr_t *
attr, -int pshared); -

-

Description

-

The pthread_condattr_getpshared function shall obtain the -value of the process-shared attribute from the attributes -object referenced by attr. The pthread_condattr_setpshared -function shall set the process-shared attribute in an -initialized attributes object referenced by attr. -

-

The process-shared attribute is set to -PTHREAD_PROCESS_SHARED to permit a condition variable to be -operated upon by any thread that has access to the memory where the -condition variable is allocated, even if the condition variable is -allocated in memory that is shared by multiple processes. If the -process-shared attribute is PTHREAD_PROCESS_PRIVATE, -the condition variable shall only be operated upon by threads created -within the same process as the thread that initialized the condition -variable; if threads of differing processes attempt to operate on -such a condition variable, the behavior is undefined. The default -value of the attribute is PTHREAD_PROCESS_PRIVATE. -

-

PThreads4W defines _POSIX_THREAD_PROCESS_SHARED in -pthread.h as -1 to indicate that these routines are implemented but -that the process shared attribute is not supported.

-

Return Value

-

If successful, the pthread_condattr_setpshared function -shall return zero; otherwise, an error number shall be returned to -indicate the error. -

-

If successful, the pthread_condattr_getpshared function -shall return zero and store the value of the process-shared -attribute of attr into the object referenced by the pshared -parameter. Otherwise, an error number shall be returned to indicate -the error. -

-

Errors

-

The pthread_condattr_getpshared and -pthread_condattr_setpshared functions may fail if: -

-
-
EINVAL -
- The value specified by attr is invalid. -
-

-The pthread_condattr_setpshared function may fail if: -

-
-
EINVAL -
- The new value specified for the attribute is outside the range of - legal values for that attribute. -
- ENOSYS -
- The value specified by attr was PTHREAD_PROCESS_SHARED - (PThreads4W).
-

-These functions shall not return an error code of [EINTR]. -

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

PThreads4W defines _POSIX_THREAD_PROCESS_SHARED in -pthread.h as -1 to indicate that these routines are implemented and -may be used, but do not support the process shared option.

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

pthread_create(3) , -pthread_cond_destroy(3) , -pthread_condattr_destroy(3) -, pthread_mutex_destroy(3) -, the Base Definitions volume of IEEE Std 1003.1-2001, -<pthread.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_create.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_create.html deleted file mode 100644 index 9d58eaf..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_create.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - PTHREAD_CREATE(3) manual page - - - - - - - -

POSIX Threads for Windows – REFERENCE - -Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_create - create a new thread -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_create(pthread_t * thread, -pthread_attr_t * attr, void * (*start_routine)(void -*), void * arg); -

-

Description

-

pthread_create creates a new thread of control that -executes concurrently with the calling thread. The new thread applies -the function start_routine passing it arg as first -argument. The new thread terminates either explicitly, by calling -pthread_exit(3) , or -implicitly, by returning from the start_routine function. The -latter case is equivalent to calling pthread_exit(3) -with the result returned by start_routine as exit code. -

-

The initial signal state of the new thread is inherited from it's -creating thread and there are no pending signals. PThreads4W -does not yet implement signals.

-

The initial CPU affinity of the new thread is inherited from it's -creating thread. A threads CPU affinity can be obtained through -pthread_getaffinity_np(3) -and may be changed through pthread_setaffinity_np(3). -Unless changed, all threads inherit the CPU affinity of the parent -process. See sched_getaffinity(3) -and sched_setaffinity(3).

-

The attr argument specifies thread attributes to be applied -to the new thread. See pthread_attr_init(3) -for a complete list of thread attributes. The attr argument -can also be NULL, in which case default attributes are used: -the created thread is joinable (not detached) and has default (non -real-time) scheduling policy. -

-

Return Value

-

On success, the identifier of the newly created thread is stored -in the location pointed by the thread argument, and a 0 is -returned. On error, a non-zero error code is returned. -

-

Errors

-
-
-
EAGAIN
-
-
- Not enough system resources to create a process for the new - thread, or
more than PTHREAD_THREADS_MAX threads are - already active. -
-
-
-
-

-Author

-

Xavier Leroy <Xavier.Leroy@inria.fr> -

-

Modified by Ross Johnson for use with Pthreads4W.

-

See Also

-

pthread_exit(3) , -pthread_join(3) , -pthread_detach(3) , -pthread_attr_init(3) , -pthread_getaffinity_np(3) -, pthread_setaffinity_np(3) -, sched_getaffinity(3) , -sched_setaffinity(3) . -

-
-

Table of Contents

- - - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_delay_np.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_delay_np.html deleted file mode 100644 index 6570444..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_delay_np.html +++ /dev/null @@ -1,66 +0,0 @@ - - - - - PTHREAD_DELAY_NP(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_delay_np – suspend the -thread for a specified period

-

Synopsis

-

#include <pthread.h> -

-

int pthread_delay_np (const struct timespec *interval);

-

Description

-

pthread_delay_np causes a thread to delay execution for a -specific period of time. This period ends at the current time plus -the specified interval. The routine will not return before the end of -the period is reached, but may return an arbitrary amount of time -after the period has gone by. This can be due to system load, thread -priorities, and system timer granularity.

-

Specifying an interval of zero (0) seconds and zero (0) -nanoseconds is allowed and can be used to force the thread to give up -the processor or to deliver a pending cancellation request.

-

Cancellation

-

pthread_delay_np is a cancellation point.

-

Return Value

-

If an error condition occurs, pthread_delay_np returns an -integer value indicating the type of error.

-

Errors

-

The pthread_delay_np function returns the following error -code on error: -

-
-
-
EINVAL -
-
-

-The value specified by interval is invalid.

-

Author

-

Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_detach.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_detach.html deleted file mode 100644 index 779b032..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_detach.html +++ /dev/null @@ -1,84 +0,0 @@ - - - - - PTHREAD_DETACH(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_detach - put a running thread in the detached state -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_detach(pthread_t th); -

-

Description

-

pthread_detach puts the thread th in the detached -state. This guarantees that the resources consumed by th will -be freed immediately when th terminates. However, this -prevents other threads from synchronizing on the termination of th -using pthread_join. If, when pthread_detach is called, -th has already terminated, all of th's remaining -resources will be freed.

-

A thread can be created initially in the detached state, using the -detachstate attribute to pthread_create(3) -. In contrast, pthread_detach applies to threads created in -the joinable state, and which need to be put in the detached state -later. -

-

After pthread_detach completes, subsequent attempts to -perform pthread_join on th will fail. If another thread -is already joining the thread th at the time pthread_detach -is called, th will be detached and pthread_join will -eventually return when th terminates but may not return with -th's correct return code. -

-

Return Value

-

On success, 0 is returned. On error, a non-zero error code is -returned. -

-

Errors

-
-
ESRCH -
- No thread could be found corresponding to that specified by th -
- EINVAL -
- the thread th is already in the detached state -
-

-Author

-

Xavier Leroy <Xavier.Leroy@inria.fr> -

-

Modified by Ross Johnson for use with PThreads4W.

-

See Also

-

pthread_create(3) , -pthread_join(3) , -pthread_attr_setdetachstate(3) -

-
-

Table of Contents

- - - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_equal.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_equal.html deleted file mode 100644 index 4503e66..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_equal.html +++ /dev/null @@ -1,63 +0,0 @@ - - - - - PTHREAD_EQUAL(3) manual page - - - - - - - -

Table of Contents

-

Name

-

pthread_equal - compare two thread identifiers -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_equal(pthread_t thread1, -pthread_t thread2); -

-

Description

-

pthread_equal determines if two thread -identifiers refer to the same thread. -

-

Return -Value

-

A non-zero value is returned if thread1 and -thread2 refer to the same thread. Otherwise, 0 is returned. -

-

Author

-

Xavier Leroy <Xavier.Leroy@inria.fr> -

-

See -Also

-

pthread_self(3) -. -

-
-

Table of Contents

- - - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_exit.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_exit.html deleted file mode 100644 index 715bf61..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_exit.html +++ /dev/null @@ -1,71 +0,0 @@ - - - - - PTHREAD_EXIT(3) manual page - - - - - - - -

Table of Contents

-

Name

-

pthread_exit - terminate the calling thread -

-

Synopsis

-

#include <pthread.h> -

-

void pthread_exit(void *retval); -

-

Description

-

pthread_exit terminates the execution of the -calling thread. All cleanup handlers that have been set for the -calling thread with pthread_cleanup_push(3) -are executed in reverse order (the most recently pushed handler is -executed first). Finalization functions for thread-specific data are -then called for all keys that have non- NULL values associated -with them in the calling thread (see pthread_key_create(3) -). Finally, execution of the calling thread is stopped. -

-

The retval argument is the return value of the -thread. It can be consulted from another thread using pthread_join(3) -. -

-

Return -Value

-

The pthread_exit function never returns. -

-

Author

-

Xavier Leroy <Xavier.Leroy@inria.fr> -

-

See -Also

-

pthread_create(3) -, pthread_join(3) . -

-
-

Table of Contents

- - - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_getunique_np.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_getunique_np.html deleted file mode 100644 index 191d43e..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_getunique_np.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - PTHREAD_GETUNIQUE_NP(3) manual page - - - -

POSIX Threads for Windows – REFERENCE - -Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_getunique_np – get the -unique sequence number associated with a thread

-

Synopsis

-

#include <pthread.h> -

-

unsigned long long pthread_getunique_np(pthread_t thread);

-

Description

-

Returns the unique 64 bit -sequence number assigned to thread.

-

In PThreads4W:

-
    -
  • the value returned is not reused after the thread terminates - so it is unique for the life of the process

    -
  • Windows native threads may obtain their own POSIX thread - sequence number by first retrieving their pthread_t handle - via pthread_self to use as the thread argument.

    -
-

This function was added for source code compatibility with some -other POSIX threads implementations.

-

Cancellation

-

None.

-

Return Value

-

pthread_getunique_np returns the unique sequence number for -thread.

-

Errors

-

None.

-

Author

-

Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_getw32threadhandle_np.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_getw32threadhandle_np.html deleted file mode 100644 index d4899c3..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_getw32threadhandle_np.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - PTHREAD_GETW32THREADHANDLE_NP(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_getw32threadhandle_np – get -the Win32 thread handle associated with a thread

-

Synopsis

-

#include <pthread.h> -

-

HANDLE pthread_getw32threadhandle_np(pthread_t thread);

-

Description

-

Returns the Win32 native thread HANDLE that the POSIX -thread thread is running as.

-

Applications can use the Win32 handle to set Win32 specific -attributes of the thread.

-

Cancellation

-

None.

-

Return Value

-

pthread_getw32threadhandle_np returns the Win32 native -thread HANDLE for the specified POSIX thread thread.

-

Errors

-

None.

-

Author

-

Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_join.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_join.html deleted file mode 100644 index f470cdd..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_join.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - PTHREAD_JOIN(3) manual page - - - -

POSIX Threads for Windows – REFERENCE - -Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_join - wait for termination of another thread

-

pthread_timedjoin_np - wait for termination of another thread with -a timeout -

-

pthread_tryjoin_np – join another thread without waiting

-

Synopsis

-

#include <pthread.h> -

-

int pthread_join(pthread_t th, void -**thread_return); -

-

int pthread_timedjoin_np(pthread_t th, void -**thread_return, const -struct timespec *abstime); -

-

int pthread_tryjoin_np(pthread_t th, void -**thread_return); -

-

Description

-

pthread_join suspends the execution of the calling thread -until the thread identified by th terminates, either by -calling pthread_exit(3) or by -being cancelled. -

-

If thread_return is not NULL, the return value of th -is stored in the location pointed to by thread_return. The -return value of th is either the argument it gave to -pthread_exit(3) , or -PTHREAD_CANCELED if th was cancelled. -

-

The joined thread th -must be in the joinable state: it must not have been detached using -pthread_detach(3) or the -PTHREAD_CREATE_DETACHED attribute to pthread_create(3) -. -

-

When a joinable thread terminates, its memory resources (thread -descriptor and stack) are not deallocated until another thread -performs pthread_join on it. Therefore, pthread_join -must be called once for each joinable thread created to avoid memory -leaks.

-

pthread_timedjoin_np is identical to pthread_join except -that it will return the error ETIMEDOUT if the target thread th -has not exited before abstime passes. If abstime is -NULL the function will wait forever and it's behaviour will therefore -be identical to pthread_join.

-

pthread_tryjoin_np is identical to pthread_join except that -it will return immediately with the error EBUSY if the target thread -th has not exited.

-

At most one thread can wait for the termination of a given thread. -Calling pthread_join on a thread th on which another -thread is already waiting for termination returns an error. -

-

Cancellation

-

pthread_join, pthread_tryjoin_np and -pthread_timedjoin_np are cancellation points. If a -thread is cancelled while suspended in either -function, the thread execution resumes immediately and the -cancellation is executed without waiting for the th thread to -terminate. If cancellation occurs during either function, the th -thread remains not joined. -

-

Return Value

-

On success, the return value of th is stored in the -location pointed to by thread_return, and 0 is returned. On -error, a non-zero error code is returned. -

-

Errors

-
-
ESRCH -
- No thread could be found corresponding to that specified by th. -
- EINVAL -
- The th thread has been detached. -
- EINVAL -
- Another thread is already waiting on termination of th. -
- ETIMEDOUT -
- (pthread_timedjoin_np - only): abstime passed - before th could be - joined. -
- EDEADLK -
- The th argument refers to the calling thread. -
-

-Author

-

Xavier Leroy <Xavier.Leroy@inria.fr> -

-

Modified by Ross Johnson for use with Pthreads4W. -

-

See Also

-

pthread_exit(3) , -pthread_detach(3) , -pthread_create(3) , -pthread_attr_setdetachstate(3) -, pthread_cleanup_push(3) -, pthread_key_create(3) -. -

-
-

Table of Contents

- - - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_key_create.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_key_create.html deleted file mode 100644 index 3f1d566..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_key_create.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - PTHREAD_KEY_CREATE(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_key_create, pthread_key_delete, pthread_setspecific, -pthread_getspecific - management of thread-specific data -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_key_create(pthread_key_t *key, void -(*destr_function) (void *)); -

-

int pthread_key_delete(pthread_key_t key); -

-

int pthread_setspecific(pthread_key_t key, const -void *pointer); -

-

void * pthread_getspecific(pthread_key_t key); -

-

Description

-

Programs often need global or static variables that have different -values in different threads. Since threads share one memory space, -this cannot be achieved with regular variables. Thread-specific data -is the POSIX threads answer to this need. -

-

Each thread possesses a private memory block, the thread-specific -data area, or TSD area for short. This area is indexed by TSD keys. -The TSD area associates values of type void * to TSD keys. TSD -keys are common to all threads, but the value associated with a given -TSD key can be different in each thread. -

-

For concreteness, the TSD areas can be viewed as arrays of void -* pointers, TSD keys as integer indices into these arrays, and -the value of a TSD key as the value of the corresponding array -element in the calling thread. -

-

When a thread is created, its TSD area initially associates NULL -with all keys. -

-

pthread_key_create allocates a new TSD key. The key is -stored in the location pointed to by key. There is a limit of -PTHREAD_KEYS_MAX on the number of keys allocated at a given -time. The value initially associated with the returned key is NULL -in all currently executing threads. -

-

The destr_function argument, if not NULL, specifies -a destructor function associated with the key. When a thread -terminates via pthread_exit or by cancellation, destr_function -is called with arguments the value associated with the key in that -thread. The destr_function is not called if that value is NULL -or the key has been deleted. The order in which destructor -functions are called at thread termination time is unspecified. -

-

Before the destructor function is called, the NULL value is -associated with the key in the current thread. A destructor function -might, however, re-associate non- NULL values to that key or -some other key. To deal with this, if after all the destructors have -been called for all non- NULL values, there are still some -non- NULL values with associated destructors, then the process -is repeated.

-

pthread_key_delete deallocates a TSD key. It does not check -whether non- NULL values are associated with that key in the -currently executing threads, nor call the destructor function -associated with the key. -

-

pthread_setspecific changes the value associated with key -in the calling thread, storing the given pointer instead. -

-

pthread_getspecific returns the value currently associated -with key in the calling thread. -

-

The routines pthread_setspecific, pthread_getspecific, -and pthread_key_delete can be called from destr_function -targeting any valid key including the key on which destr_function -is currently operating. If pthread_getspecific is called on -the key whose thread specific data is being destroyed, the value NULL -is returned, unless pthread_setspecific was called previously -on that key from within destr_function to set the value to -non-NULL. For some implementations the effect of calling -pthread_setspecific from within destr_function can be -either memory leakage or infinite loops if destr_function has -already been called at least PTHREAD_DESTRUCTOR_ITERATIONS -times.

-

PThreads4W stops running key -destr_function routines after PTHREAD_DESTRUCTOR_ITERATIONS -iterations, even if some non- NULL values with associated -descriptors remain. If memory is allocated and associated with a key -from within destr_function, that memory may not be reclaimed -because that key's destr_function, may not run again.

-

Return Value

-

pthread_key_create, pthread_key_delete, and -pthread_setspecific return 0 on success and a non-zero error -code on failure. If successful, pthread_key_create stores the -newly allocated key in the location pointed to by its key -argument. -

-

pthread_getspecific returns the value associated with key -on success, and NULL on error. -

-

Errors

-

pthread_key_create returns the following error code on -error: -

-
-
-
EAGAIN -
-
-
-PTHREAD_KEYS_MAX keys are already allocated -
-
-
-
ENOMEM -
-
-
-Insufficient memory to allocate the key. -
-

pthread_key_delete and pthread_setspecific return -the following error code on error: -

-
-
-
EINVAL -
- key is not a valid, allocated TSD key -
-
-

-pthread_getspecific returns NULL if key is not a -valid, allocated TSD key. -

-

Author

-

Xavier Leroy <Xavier.Leroy@inria.fr> -

-

Modified by Ross Johnson for use with Pthreads4W.

-

See Also

-

pthread_create(3) , -pthread_exit(3) , -pthread_testcancel(3) . -

-

Example

-

The following code fragment allocates a thread-specific array of -100 characters, with automatic reclamation at thread exit: -

-


-
-
/* Key for the thread-specific buffer */
-static pthread_key_t buffer_key;
-/* Once-only initialisation of the key */
-static pthread_once_t buffer_key_once = PTHREAD_ONCE_INIT;
-/* Allocate the thread-specific buffer */
-void buffer_alloc(void)
-{
-  pthread_once(&buffer_key_once, buffer_key_alloc);
-  pthread_setspecific(buffer_key, malloc(100));
-}
-/* Return the thread-specific buffer */
-char * get_buffer(void)
-{
-  return (char *) pthread_getspecific(buffer_key);
-}
-/* Allocate the key */
-static void buffer_key_alloc()
-{
-  pthread_key_create(&buffer_key, buffer_destroy);
-}
-/* Free the thread-specific buffer */
-static void buffer_destroy(void * buf)
-{
-  free(buf);
-}
-
-
-Table of Contents
- - - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_kill.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_kill.html deleted file mode 100644 index 005e937..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_kill.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - PTHREAD_KILL(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_sigmask, pthread_kill, sigwait - handling of signals in -threads -

-

Synopsis

-

#include <pthread.h>
#include <signal.h> -

-

int pthread_sigmask(int how, const sigset_t -*newmask, sigset_t *oldmask); -

-

int pthread_kill(pthread_t thread, int signo); -

-

int sigwait(const sigset_t *set, int *sig);

-

Description

-

pthread_sigmask changes the signal mask for the calling -thread as described by the how and newmask arguments. -If oldmask is not NULL, the previous signal mask is -stored in the location pointed to by oldmask. PThreads4W -implements this function but no other function uses the signal mask -yet.

-

The meaning of the how and newmask arguments is the -same as for sigprocmask(2). -If how is SIG_SETMASK, the signal mask is set to -newmask. If how is SIG_BLOCK, the signals -specified to newmask are added to the current signal mask. If -how is SIG_UNBLOCK, the signals specified to newmask -are removed from the current signal mask. -

-

Recall that signal masks are set on a per-thread basis, but signal -actions and signal handlers, as set with sigaction(2), are -shared between all threads. -

-

pthread_kill send signal number signo to the thread -thread. PThreads4W only supports signal number 0, -which does not send any signal but causes pthread_kill to -return an error if thread is not valid.

-

sigwait suspends the calling thread until one of the -signals in set is delivered to the calling thread. It then -stores the number of the signal received in the location pointed to -by sig and returns. The signals in set must be blocked -and not ignored on entrance to sigwait. If the delivered -signal has a signal handler function attached, that function is not -called. PThreads4W implements this function as a -cancellation point only - it does not wait for any signals and does -not change the location pointed to by sig.

-

Cancellation

-

sigwait is a cancellation point. -

-

Return Value

-

On success, 0 is returned. On failure, a non-zero error code is -returned. -

-

Errors

-

The pthread_sigmask function returns the following error -codes on error: -

-
-
-
EINVAL -
- how is not one of SIG_SETMASK, SIG_BLOCK, or - SIG_UNBLOCK -
-
-

-The pthread_kill function returns the following error codes on -error: -

-
-
-
EINVAL -
- signo is not a valid signal number or is unsupported.
- ESRCH -
- the thread thread does not exist (e.g. it has already - terminated) -
-
-

-The sigwait function never returns an error. -

-

Author

-

Xavier Leroy <Xavier.Leroy@inria.fr> -

-

Modified by Ross Johnson for use with Pthreads4W.

-

See Also

-

-

-

Notes

-

In any implementation, for sigwait to work reliably, the -signals being waited for must be blocked in all threads, not only in -the calling thread, since otherwise the POSIX semantics for signal -delivery do not guarantee that it’s the thread doing the sigwait -that will receive the signal. The best way to achieve this is to -block those signals before any threads are created, and never unblock -them in the program other than by calling sigwait. This works -because all threads inherit their initial sigmask from their creating -thread.

-

Bugs

-

PThreads4W does not implement signals yet and so these -routines have almost no use except to prevent the compiler or linker -from complaining. pthread_kill is useful in determining if the -thread is a valid thread, but since many threads implementations -reuse thread IDs, the valid thread may no longer be the thread you -think it is, and so this method of determining thread validity is not -portable, and very risky. PThreads4W from version 1.0.0 -onwards implements pseudo-unique thread IDs, so applications that use -this technique (but really shouldn't) have some protection.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_mutex_init.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_mutex_init.html deleted file mode 100644 index 8eae6cc..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_mutex_init.html +++ /dev/null @@ -1,348 +0,0 @@ - - - - - PTHREAD_MUTEX_INIT(3) manual page - - - -

POSIX Threads for Windows – REFERENCE - -Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_mutex_init, pthread_mutex_lock, pthread_mutex_trylock, -pthread_mutex_timedlock, pthread_mutex_unlock, -pthread_mutex_consistent, pthread_mutex_destroy - operations on -mutexes -

-

Synopsis

-

#include <pthread.h> -

-

#include <time.h>

-

pthread_mutex_t fastmutex = -PTHREAD_MUTEX_INITIALIZER; -

-

pthread_mutex_t recmutex = -PTHREAD_RECURSIVE_MUTEX_INITIALIZER; -

-

pthread_mutex_t errchkmutex = -PTHREAD_ERRORCHECK_MUTEX_INITIALIZER; -

-

pthread_mutex_t recmutex = -PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP; -

-

pthread_mutex_t errchkmutex = -PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP; -

-

int pthread_mutex_init(pthread_mutex_t *mutex, -const pthread_mutexattr_t *mutexattr); -

-

int pthread_mutex_lock(pthread_mutex_t *mutex); -

-

int pthread_mutex_trylock(pthread_mutex_t *mutex); -

-

int pthread_mutex_timedlock(pthread_mutex_t *mutex, -const struct timespec *abs_timeout); -

-

int pthread_mutex_unlock(pthread_mutex_t *mutex); -

-

int pthread_mutex_consistent(pthread_mutex_t *mutex); -

-

int pthread_mutex_destroy(pthread_mutex_t *mutex); -

-

Description

-

A mutex is a MUTual EXclusion device, and is useful for protecting -shared data structures from concurrent modifications, and -implementing critical sections and monitors. -

-

A mutex has two possible states: unlocked (not owned by any -thread), and locked (owned by one thread). A mutex can never be owned -by two different threads simultaneously. A thread attempting to lock -a mutex that is already locked by another thread is suspended until -the owning thread unlocks the mutex first. -

-

pthread_mutex_init initializes the mutex object pointed to -by mutex according to the mutex attributes specified in -mutexattr. If mutexattr is NULL, default -attributes are used instead. -

-

The type of a mutex determines whether it can be locked again by a -thread that already owns it. The default type is “normal�. See -pthread_mutexattr_init(3) -for more information on mutex attributes. -

-

Variables of type pthread_mutex_t can also be initialized -statically, using the constants PTHREAD_MUTEX_INITIALIZER (for -normal “fast� mutexes), PTHREAD_RECURSIVE_MUTEX_INITIALIZER -(for recursive mutexes), and PTHREAD_ERRORCHECK_MUTEX_INITIALIZER -(for error checking mutexes). In -the PThreads4W implementation, -an application should still call pthread_mutex_destroy -at some point to ensure that any -resources consumed by the mutex are released.

-

Any mutex type can be -initialized as a robust mutex. -See pthread_mutexattr_init(3) -for more information as well as the -section Robust Mutexes -below.

-

pthread_mutex_lock locks the given mutex. If the mutex is -currently unlocked, it becomes locked and owned by the calling -thread, and pthread_mutex_lock returns immediately. If the -mutex is already locked by another thread, pthread_mutex_lock -suspends the calling thread until the mutex is unlocked.

-

If the mutex is already locked by the calling thread, the behavior -of pthread_mutex_lock depends on the type of the mutex. If the -mutex is of the “normal� type, the calling thread is suspended -until the mutex is unlocked, thus effectively causing the calling -thread to deadlock. If the mutex is of the ‘‘error checking’’ -type, pthread_mutex_lock returns immediately with the error -code EDEADLK. If the mutex is of the ‘‘recursive’’ -type, pthread_mutex_lock succeeds and returns immediately, -recording the number of times the calling thread has locked the -mutex. An equal number of pthread_mutex_unlock operations must -be performed before the mutex returns to the unlocked state. -

-

pthread_mutex_trylock behaves identically to -pthread_mutex_lock, except that it does not block the calling -thread if the mutex is already locked by another thread (or by the -calling thread in the case of a “normal� or “errorcheck� -mutex). Instead, pthread_mutex_trylock returns immediately -with the error code EBUSY. -

-

pthread_mutex_timedlock behaves identically to -pthread_mutex_lock, except that if it cannot acquire the lock -before the abs_timeout time, the call returns with the error -code ETIMEDOUT. If the mutex can be locked immediately it is, -and the abs_timeout parameter is ignored.

-

pthread_mutex_consistent may only be called for -PTHREAD_MUTEX_ROBUST mutexes. It simply marks the mutex as -consistent. See Robust Mutexes below.

-

pthread_mutex_unlock unlocks the given mutex. The mutex is -assumed to be locked and owned by the calling thread on entrance to -pthread_mutex_unlock. If the mutex is of the “normal� -type, pthread_mutex_unlock always returns it to the unlocked -state. If it is of the ‘‘recursive’’ type, it decrements the -locking count of the mutex (number of pthread_mutex_lock -operations performed on it by the calling thread), and only when this -count reaches zero is the mutex actually unlocked. In PThreads4W, -non-robust normal or default mutex types do not check the owner of -the mutex. For all types of robust mutexes the owner is checked and -an error code is returned if the calling thread does not own the -mutex.

-

On ‘‘error checking’’ mutexes, pthread_mutex_unlock -actually checks at run-time that the mutex is locked on entrance, and -that it was locked by the same thread that is now calling -pthread_mutex_unlock. If these conditions are not met, an -error code is returned and the mutex remains unchanged. ‘‘Normal’’ -[non-robust] mutexes perform no such checks, thus allowing a locked -mutex to be unlocked by a thread other than its owner. This is -non-portable behavior and is not meant to be used as a feature.

-

pthread_mutex_destroy destroys a mutex object, freeing the -resources it might hold. The mutex must be unlocked on entrance.

-

Robust Mutexes

-

If the mutex is PTHREAD_MUTEX_ROBUST and the owning thread -terminates without unlocking the mutex the implementation will wake -one waiting thread, if any. The next thread to acquire the mutex will -receive the error code EOWNERDEAD, -in which case that thread should if possible ensure that the state -protected by the mutex is consistent and then call -pthread_mutex_consistent before -unlocking. The mutex may then be used normally from then on.

-

If the thread cannot recover the -state then it must call pthread_mutex_unlock -without calling pthread_mutex_consistent. -This will mark the mutex as unusable and wake all currently waiting -threads with the return code ENOTRECOVERABLE. -The error indicates that the mutex is no longer usable and any -threads that receive this error code from any lock operation have not -acquired the mutex. The mutex can be made consistent by calling -pthread_mutex_destroy to -uninitialize the mutex, and calling pthread_mutex_int -to reinitialize the mutex. However, -the state that was protected by the mutex remains inconsistent and -some form of application recovery is required.

-

If a thread that receives the -EOWNERDEAD error code -itself terminates without unlocking the mutex then this behaviour -repeats for the next acquiring thread.

-

Applications must ensure that -they check the return values from all calls targeting robust mutexes.

-

Robust mutexes are slower because they -require some additional overhead, however they are not very much -slower than the non-robust recursive type.

-

Cancellation

-

None of the mutex functions is a cancellation point, not even -pthread_mutex_lock, in spite of the fact that it can suspend a -thread for arbitrary durations. This way, the status of mutexes at -cancellation points is predictable, allowing cancellation handlers to -unlock precisely those mutexes that need to be unlocked before the -thread stops executing. Consequently, threads using deferred -cancellation should never hold a mutex for extended periods of time. -

-

Async-signal Safety

-

The mutex functions are not async-signal safe. What this means is -that they should not be called from a signal handler. In particular, -calling pthread_mutex_lock or pthread_mutex_unlock from -a signal handler may deadlock the calling thread. -

-

Return Value

-

pthread_mutex_init always returns 0. The other mutex -functions return 0 on success and a non-zero error code on error. -

-

Errors

-

The pthread_mutex_lock function returns the following error -code on error: -

-
-
-
EINVAL
- the mutex has not been properly initialized. -
- EDEADLK
- the mutex is already locked by the calling thread (‘‘error - checking’’ mutexes only). -
- EOWNERDEAD
- the robust mutex is now locked by the calling thread after the - previous owner terminated without unlocking it.
- ENOTRECOVERABLE
- the robust mutex is not locked and is no longer usable after the - previous owner unlocked it without calling - pthread_mutex_consistent.
-
- The pthread_mutex_trylock function returns the following - error codes on error: -
-
- EBUSY -
- the mutex could not be acquired because it was currently locked. -
- EINVAL -
- the mutex has not been properly initialized. -
- EOWNERDEAD
- the robust mutex is now locked by the calling thread after the - previous owner terminated without unlocking it.
- ENOTRECOVERABLE
- the robust mutex is not locked and is no longer usable after the - previous owner unlocked it without calling - pthread_mutex_consistent.
-
-

-The pthread_mutex_timedlock function returns the following -error codes on error: -

-
-
-
ETIMEDOUT -
- the mutex could not be acquired before the abs_timeout time - arrived. -
- EINVAL -
- the mutex has not been properly initialized. -
- EOWNERDEAD
- the robust mutex is now locked by the calling thread after the - previous owner terminated without unlocking it.
- ENOTRECOVERABLE
- the robust mutex is not locked and is no longer usable after the - previous owner unlocked it without calling - pthread_mutex_consistent.
-
-

-The pthread_mutex_unlock function returns the following error -code on error: -

-
-
-
EINVAL -
- the mutex has not been properly initialized. -
- EPERM -
- the calling thread does not own the mutex (‘‘error checking’’ - mutexes only). -
-
-

-The pthread_mutex_destroy function returns the following error -code on error: -

-
-
-
EBUSY -
- the mutex is currently locked. -
-
-

-Author

-

Xavier Leroy <Xavier.Leroy@inria.fr> -

-

Modified by Ross Johnson for use with Pthreads4W.

-

See Also

-

pthread_mutexattr_init(3) -, pthread_mutexattr_settype(3) -, pthread_cancel(3) . -

-

Example

-

A shared global variable x can be protected by a mutex as -follows: -

-
int x;
-pthread_mutex_t mut = PTHREAD_MUTEX_INITIALIZER;
-All accesses and modifications to x should be bracketed by -calls to pthread_mutex_lock and pthread_mutex_unlock as -follows: -
-
pthread_mutex_lock(&mut);
-/* operate on x */
-pthread_mutex_unlock(&mut);
-
-
Table -of Contents
- - - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_mutexattr_init.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_mutexattr_init.html deleted file mode 100644 index 1b3f119..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_mutexattr_init.html +++ /dev/null @@ -1,201 +0,0 @@ - - - - - PTHREAD_MUTEXATTR_INIT(3) manual page - - - -

POSIX Threads for Windows – REFERENCE - -Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_mutexattr_init, pthread_mutexattr_destroy, -pthread_mutexattr_settype, pthread_mutexattr_gettype - mutex creation -attributes -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_mutexattr_init(pthread_mutexattr_t *attr); -

-

int pthread_mutexattr_destroy(pthread_mutexattr_t *attr); -

-

int pthread_mutexattr_settype(pthread_mutexattr_t *attr, -int type); -

-

int pthread_mutexattr_gettype(const pthread_mutexattr_t *attr, -int *type); -

-

int pthread_mutexattr_setkind_np(pthread_mutexattr_t *attr, -int type); -

-

int pthread_mutexattr_getkind_np(const pthread_mutexattr_t -*attr, int *type); -

-

int pthread_mutexattr_setrobust(pthread_mutexattr_t *attr, -int robust); -

-

int pthread_mutexattr_getrobust(pthread_mutexattr_t *attr, -int *robust); -

-

Description

-

Mutex attributes can be specified at mutex creation time, by -passing a mutex attribute object as second argument to -pthread_mutex_init(3) . -Passing NULL is equivalent to passing a mutex attribute object -with all attributes set to their default values. -

-

pthread_mutexattr_init initializes the mutex attribute -object attr and fills it with default values for the -attributes. -

-

pthread_mutexattr_destroy destroys a mutex attribute -object, which must not be reused until it is reinitialized.

-

pthread_mutexattr_settype sets the mutex type attribute in -attr to the value specified by type. -

-

pthread_mutexattr_gettype retrieves the current value of -the mutex kind attribute in attr and stores it in the location -pointed to by type. -

-

PThreads4W also recognises the following equivalent -functions that are used in Linux:

-

pthread_mutexattr_setkind_np is an alias for -pthread_mutexattr_settype. -

-

pthread_mutexattr_getkind_np is -an alias for pthread_mutexattr_gettype. -

-

The following mutex types are supported:

-

PTHREAD_MUTEX_NORMAL - for -‘‘fast’’ mutexes.

-

PTHREAD_MUTEX_RECURSIVE - for -‘‘recursive’’ mutexes.

-

PTHREAD_MUTEX_ERRORCHECK - for -‘‘error checking’’ mutexes.

-

The mutex type determines what happens if a thread attempts to -lock a mutex it already owns with pthread_mutex_lock(3) -. If the mutex is of the “normal� or “fast� type, -pthread_mutex_lock(3) -simply suspends the calling thread forever. If the mutex is of the -‘‘error checking’’ type, pthread_mutex_lock(3) -returns immediately with the error code EDEADLK. If the mutex -is of the ‘‘recursive’’ type, the call to -pthread_mutex_lock(3) -returns immediately with a success return code. The number of times -the thread owning the mutex has locked it is recorded in the mutex. -The owning thread must call pthread_mutex_unlock(3) -the same number of times before the mutex returns to the unlocked -state. -

-

The default mutex type is PTHREAD_MUTEX_NORMAL

-

PThreads4W also recognises the following equivalent types -that are used by Linux:

-

PTHREAD_MUTEX_FAST_NP -– equivalent to PTHREAD_MUTEX_NORMAL

-

PTHREAD_MUTEX_RECURSIVE_NP

-

PTHREAD_MUTEX_ERRORCHECK_NP

-

pthread_mutexattr_setrobust -sets the robustness attribute to the value given by robust.

-

pthread_mutexattr_getrobust -returns the current robustness value to the location given by -*robust.

-

The possible values for robust -are:

-

PTHREAD_MUTEX_STALLED -- when the owner of the mutex terminates without unlocking the mutex, -all subsequent calls to pthread_mutex_*lock() are blocked from -progress in an unspecified manner.

-

PTHREAD_MUTEX_ROBUST -- when the owner of the mutex terminates without unlocking the mutex, -the mutex is unlocked. The next owner of this mutex acquires the -mutex with an error return of EOWNERDEAD.

-

Return Value

-

On success all functions return -0, otherwise they return an error code as follows:

-

pthread_mutexattr_init

-

ENOMEM -- insufficient memory for attr.

-

pthread_mutexattr_destroy

-

EINVAL -- attr -is invalid.

-

pthread_mutexattr_gettype

-

EINVAL -- attr -is invalid.

-

pthread_mutexattr_settype

-
-
-
-
EINVAL - attr - is invalid or type - is none of:
-
-
- PTHREAD_MUTEX_NORMAL
PTHREAD_MUTEX_FAST_NP
PTHREAD_MUTEX_RECURSIVE
PTHREAD_MUTEX_RECURSIVE_NP
PTHREAD_MUTEX_ERRORCHECK
PTHREAD_MUTEX_ERRORCHECK_NP
-
-
-
-
-
-
-

-pthread_mutexattr_getrobust

-

EINVAL -– attr -or robust -is invalid.

-

pthread_mutexattr_setrobust

-

EINVAL -– attr -or robust -is invalid.

-

Author

-

Xavier Leroy <Xavier.Leroy@inria.fr> -

-

Modified by Ross Johnson for use with Pthreads4W.

-

See Also

-

pthread_mutex_init(3) -, pthread_mutex_lock(3) -, pthread_mutex_unlock(3) -. -

-

Notes

-

For speed, PThreads4W never checks the thread ownership -of non-robust mutexes of type PTHREAD_MUTEX_NORMAL (or -PTHREAD_MUTEX_FAST_NP) when performing operations on the -mutex. It is therefore possible for one thread to lock such a mutex -and another to unlock it.

-

When developing code, it is a common -precaution to substitute the error checking type, then drop in the -normal type for release if the extra performance is required.

-
-

Table of Contents

- - - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_mutexattr_setpshared.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_mutexattr_setpshared.html deleted file mode 100644 index c3100b8..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_mutexattr_setpshared.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - PTHREAD_MUTEXATTR_SETPSHARED(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_mutexattr_getpshared, pthread_mutexattr_setpshared - get -and set the process-shared attribute -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_mutexattr_getpshared(const pthread_mutexattr_t * -restrict attr, int *restrict pshared); -
int pthread_mutexattr_setpshared(pthread_mutexattr_t *
attr, -int pshared); -

-

Description

-

The pthread_mutexattr_getpshared function shall obtain the -value of the process-shared attribute from the attributes -object referenced by attr. The pthread_mutexattr_setpshared -function shall set the process-shared attribute in an -initialized attributes object referenced by attr. -

-

The process-shared attribute is set to -PTHREAD_PROCESS_SHARED to permit a mutex to be operated upon -by any thread that has access to the memory where the mutex is -allocated, even if the mutex is allocated in memory that is shared by -multiple processes. If the process-shared attribute is -PTHREAD_PROCESS_PRIVATE, the mutex shall only be operated upon -by threads created within the same process as the thread that -initialized the mutex; if threads of differing processes attempt to -operate on such a mutex, the behavior is undefined. The default value -of the attribute shall be PTHREAD_PROCESS_PRIVATE. -

-

PThreads4W defines _POSIX_THREAD_PROCESS_SHARED in -pthread.h as -1 to indicate that these routines are implemented but -the process shared option is not supported.

-

Return Value

-

Upon successful completion, pthread_mutexattr_setpshared -shall return zero; otherwise, an error number shall be returned to -indicate the error. -

-

Upon successful completion, pthread_mutexattr_getpshared -shall return zero and store the value of the process-shared -attribute of attr into the object referenced by the pshared -parameter. Otherwise, an error number shall be returned to indicate -the error. -

-

Errors

-

The pthread_mutexattr_getpshared and -pthread_mutexattr_setpshared functions may fail if: -

-
-
EINVAL -
- The value specified by attr is invalid. -
-

-The pthread_mutexattr_setpshared function may fail if: -

-
-
EINVAL -
- The new value specified for the attribute is outside the range of - legal values for that attribute. -
- ENOTSUP -
- The new value specified for the attribute is PTHREAD_PROCESS_SHARED. -
-

-These functions shall not return an error code of [EINTR]. -

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

None. -

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

pthread_cond_destroy(3) -, pthread_create(3) , -pthread_mutex_destroy(3) -, pthread_mutexattr_destroy(3) -, the Base Definitions volume of IEEE Std 1003.1-2001, -<pthread.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_num_processors_np.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_num_processors_np.html deleted file mode 100644 index ab148c3..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_num_processors_np.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - PTHREAD_NUM_PROCESSORS_NP(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_num_processors_np – get the -number of processors (CPUs) in use by the process

-

Synopsis

-

#include <pthread.h> -

-

int pthread_num_processors_np(void);

-

Description

-

pthread_num_processors_np returns the number of processors -in the system. This implementation actually returns the number of -processors available to the process, which can be a lower number than -the system's number, depending on the process's affinity mask.

-

Cancellation

-

None.

-

Return Value

-

pthread_num_processors_np returns the number of processors -currently available to the process.

-

Errors

-

None.

-

Author

-

Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_once.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_once.html deleted file mode 100644 index 69903fa..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_once.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - - PTHREAD_ONCE(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_once - once-only initialization -

-

Synopsis

-

#include <pthread.h> -

-

pthread_once_t once_control = PTHREAD_ONCE_INIT; -

-

int pthread_once(pthread_once_t *once_control, -void (*init_routine) (void)); -

-

Description

-

The purpose of pthread_once is to ensure that a piece of -initialization code is executed at most once. The once_control -argument points to a static or extern variable statically initialized -to PTHREAD_ONCE_INIT. -

-

The first time pthread_once is called with a given -once_control argument, it calls init_routine with no -argument and changes the value of the once_control variable to -record that initialization has been performed. Subsequent calls to -pthread_once with the same once_control argument do -nothing. -

-

Cancellation

-

While pthread_once is not a cancellation point, -init_routine can be. The effect on once_control of a -cancellation inside the init_routine is to leave it as if -pthread_once had not been called by the cancelled thread.

-

Return Value

-

pthread_once -returns 0 on success, or an error code on failure.

-

Errors

-

The pthread_once function returns the following error code -on error: -

-
-
-
EINVAL -
-
-

-The once_control or init_routine parameter is NULL.

-

Author

-

Xavier Leroy <Xavier.Leroy@inria.fr> -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlock_init.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlock_init.html deleted file mode 100644 index 5ab9aa6..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlock_init.html +++ /dev/null @@ -1,188 +0,0 @@ - - - - - PTHREAD_RWLOCK_INIT(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_rwlock_destroy, pthread_rwlock_init - destroy and -initialize a read-write lock object -

-

Synopsis

-

#include <pthread.h> -

-

pthread_wrlock_t rwlock = -PTHREAD_RWLOCK_INITIALIZER;

-

int pthread_rwlock_destroy(pthread_rwlock_t *rwlock); -
int pthread_rwlock_init(pthread_rwlock_t *restrict
rwlock, -const pthread_rwlockattr_t *restrict attr); -

-

Description

-

The pthread_rwlock_destroy function shall destroy the -read-write lock object referenced by rwlock and release any -resources used by the lock. The effect of subsequent use of the lock -is undefined until the lock is reinitialized by another call to -pthread_rwlock_init. An implementation may cause -pthread_rwlock_destroy to set the object referenced by rwlock -to an invalid value. Results are undefined if pthread_rwlock_destroy -is called when any thread holds rwlock. Attempting to destroy -an uninitialized read-write lock results in undefined behavior. -

-

The pthread_rwlock_init function shall allocate any -resources required to use the read-write lock referenced by rwlock -and initializes the lock to an unlocked state with attributes -referenced by attr. If attr is NULL, the default -read-write lock attributes shall be used; the effect is the same as -passing the address of a default read-write lock attributes object. -Once initialized, the lock can be used any number of times without -being reinitialized. Results are undefined if pthread_rwlock_init -is called specifying an already initialized read-write lock. Results -are undefined if a read-write lock is used without first being -initialized. -

-

If the pthread_rwlock_init function fails, rwlock -shall not be initialized and the contents of rwlock are -undefined. -

-

PThreads4W supports statically initialized rwlock -objects using PTHREAD_RWLOCK_INITIALIZER. -An application should still call pthread_rwlock_destroy at -some point to ensure that any resources consumed by the read/write -lock are released.

-

Only the object referenced by rwlock may be used for -performing synchronization. The result of referring to copies of that -object in calls to pthread_rwlock_destroy , -pthread_rwlock_rdlock , pthread_rwlock_timedrdlock , -pthread_rwlock_timedwrlock , pthread_rwlock_tryrdlock , -pthread_rwlock_trywrlock , pthread_rwlock_unlock , or -pthread_rwlock_wrlock is undefined. -

-

PThreads4W defines _POSIX_READER_WRITER_LOCKS in -pthread.h as 200112L to indicate that the reader/writer routines are -implemented and may be used.

-

Return Value

-

If successful, the pthread_rwlock_destroy and -pthread_rwlock_init functions shall return zero; otherwise, an -error number shall be returned to indicate the error. -

-

The [EBUSY] and [EINVAL] error checks, if implemented, act as if -they were performed immediately at the beginning of processing for -the function and caused an error return prior to modifying the state -of the read-write lock specified by rwlock. -

-

Errors

-

The pthread_rwlock_destroy function may fail if: -

-
-
EBUSY -
- The implementation has detected an attempt to destroy the object - referenced by rwlock while it is locked. -
- EINVAL -
- The value specified by rwlock is invalid. -
-

-The pthread_rwlock_init function shall fail if: -

-
-
EAGAIN -
- The system lacked the necessary resources (other than memory) to - initialize another read-write lock. -
- ENOMEM -
- Insufficient memory exists to initialize the read-write lock. -
-

-
-

-The pthread_rwlock_init function may fail if: -

-
-
EINVAL -
- The value specified by attr is invalid. -
-

-These functions shall not return an error code of [EINTR]. -

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

Applications using these and related read-write lock functions may -be subject to priority inversion, as discussed in the Base -Definitions volume of IEEE Std 1003.1-2001, Section 3.285, -Priority Inversion. -

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

pthread_rwlock_rdlock(3) -, pthread_rwlock_timedrdlock(3) -, pthread_rwlock_timedwrlock(3) -, pthread_rwlock_tryrdlock(3) -, pthread_rwlock_trywrlock(3) -, pthread_rwlock_unlock(3) -, pthread_rwlock_wrlock(3) -, the Base Definitions volume of IEEE Std 1003.1-2001, -<pthread.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlock_rdlock.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlock_rdlock.html deleted file mode 100644 index a9a13df..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlock_rdlock.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - PTHREAD_RWLOCK_RDLOCK(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_rwlock_rdlock, pthread_rwlock_tryrdlock - lock a -read-write lock object for reading -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_rwlock_rdlock(pthread_rwlock_t *rwlock); -
int pthread_rwlock_tryrdlock(pthread_rwlock_t *rwlock); - -

-

Description

-

The pthread_rwlock_rdlock function shall apply a read lock -to the read-write lock referenced by rwlock. The calling -thread acquires the read lock if a writer does not hold the lock and -there are no writers blocked on the lock. -

-

PThreads4W does not prefer either writers or readers in -acquiring the lock – all threads enter a single prioritised FIFO -queue. While this may not be optimally efficient for some -applications, it does ensure that one type does not starve the other.

-

A thread may hold multiple concurrent read locks on rwlock -(that is, successfully call the pthread_rwlock_rdlock function -n times). If so, the application shall ensure that the thread -performs matching unlocks (that is, it calls the -pthread_rwlock_unlock(3) -function n times). -

-

The pthread_rwlock_tryrdlock function shall apply a read -lock as in the pthread_rwlock_rdlock function, with the -exception that the function shall fail if the equivalent -pthread_rwlock_rdlock call would have blocked the calling -thread. In no case shall the pthread_rwlock_tryrdlock function -ever block; it always either acquires the lock or fails and returns -immediately. -

-

Results are undefined if any of these functions are called with an -uninitialized read-write lock. -

-

PThreads4W does not detect deadlock if the thread already -owns the lock for writing.

-

PThreads4W defines _POSIX_READER_WRITER_LOCKS in -pthread.h as 200112L to indicate that the reader/writer routines are -implemented and may be used.

-

Return Value

-

If successful, the pthread_rwlock_rdlock function shall -return zero; otherwise, an error number shall be returned to indicate -the error. -

-

The pthread_rwlock_tryrdlock function shall return zero if -the lock for reading on the read-write lock object referenced by -rwlock is acquired. Otherwise, an error number shall be -returned to indicate the error. -

-

Errors

-

The pthread_rwlock_tryrdlock function shall fail if: -

-
-
EBUSY -
- The read-write lock could not be acquired for reading because a - writer holds the lock or a writer with the appropriate priority was - blocked on it. -
-

-The pthread_rwlock_rdlock and pthread_rwlock_tryrdlock -functions may fail if: -

-
-
EINVAL -
- The value specified by rwlock does not refer to an - initialized read-write lock object. -
- EAGAIN -
- The read lock could not be acquired because the maximum number of - read locks for rwlock has been exceeded. -
-

-These functions shall not return an error code of [EINTR]. -

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

Applications using these functions may be subject to priority -inversion, as discussed in the Base Definitions volume of -IEEE Std 1003.1-2001, Section 3.285, Priority Inversion. -

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

pthread_rwlock_destroy(3) -, pthread_rwlock_timedrdlock(3) -, pthread_rwlock_timedwrlock(3) -, pthread_rwlock_trywrlock(3) -, pthread_rwlock_unlock(3) -, pthread_rwlock_wrlock(3) -, the Base Definitions volume of IEEE Std 1003.1-2001, -<pthread.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlock_timedrdlock.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlock_timedrdlock.html deleted file mode 100644 index e135f8d..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlock_timedrdlock.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - - PTHREAD_RWLOCK_TIMEDRDLOCK(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_rwlock_timedrdlock - lock a read-write lock for reading -

-

Synopsis

-

#include <pthread.h>
#include <time.h> -

-

int pthread_rwlock_timedrdlock(pthread_rwlock_t *restrict -rwlock, const struct timespec *restrict abs_timeout); - -

-

Description

-

The pthread_rwlock_timedrdlock function shall apply a read -lock to the read-write lock referenced by rwlock as in the -pthread_rwlock_rdlock(3) -function. However, if the lock cannot be acquired without waiting for -other threads to unlock the lock, this wait shall be terminated when -the specified timeout expires. The timeout shall expire when the -absolute time specified by abs_timeout passes, as measured by -the clock on which timeouts are based (that is, when the value of -that clock equals or exceeds abs_timeout), or if the absolute -time specified by abs_timeout has already been passed at the -time of the call. -

-

The timespec data type is defined in the <time.h> -header. Under no circumstances shall the function fail with a timeout -if the lock can be acquired immediately. The validity of the -abs_timeout parameter need not be checked if the lock can be -immediately acquired. -

-

The calling thread may deadlock if at the time the call is made it -holds a write lock on rwlock. The results are undefined if -this function is called with an uninitialized read-write lock. -

-

PThreads4W defines _POSIX_READER_WRITER_LOCKS in -pthread.h as 200112L to indicate that the reader/writer routines are -implemented and may be used.

-

Return Value

-

The pthread_rwlock_timedrdlock function shall return zero -if the lock for reading on the read-write lock object referenced by -rwlock is acquired. Otherwise, an error number shall be -returned to indicate the error. -

-

Errors

-

The pthread_rwlock_timedrdlock function shall fail if: -

-
-
ETIMEDOUT -
- The lock could not be acquired before the specified timeout expired. -
-

-The pthread_rwlock_timedrdlock function may fail if: -

-
-
EAGAIN -
- The read lock could not be acquired because the maximum number of - read locks for lock would be exceeded. -
- EINVAL -
- The value specified by rwlock does not refer to an - initialized read-write lock object, or the abs_timeout - nanosecond value is less than zero or greater than or equal to 1000 - million. -
-

-This function shall not return an error code of [EINTR]. -

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

Applications using this function may be subject to priority -inversion, as discussed in the Base Definitions volume of -IEEE Std 1003.1-2001, Section 3.285, Priority Inversion. -

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

pthread_rwlock_destroy(3) -, pthread_rwlock_rdlock(3) -, pthread_rwlock_timedwrlock(3) -, pthread_rwlock_tryrdlock(3) -, pthread_rwlock_trywrlock(3) -, pthread_rwlock_unlock(3) -, pthread_rwlock_wrlock(3) -, the Base Definitions volume of IEEE Std 1003.1-2001, -<pthread.h>, <time.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlock_timedwrlock.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlock_timedwrlock.html deleted file mode 100644 index f2f853d..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlock_timedwrlock.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - PTHREAD_RWLOCK_TIMEDWRLOCK(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_rwlock_timedwrlock - lock a read-write lock for writing -

-

Synopsis

-

#include <pthread.h>
#include <time.h> -

-

int pthread_rwlock_timedwrlock(pthread_rwlock_t *restrict -rwlock, const struct timespec *restrict abs_timeout); - -

-

Description

-

The pthread_rwlock_timedwrlock function shall apply a write -lock to the read-write lock referenced by rwlock as in the -pthread_rwlock_wrlock(3) -function. However, if the lock cannot be acquired without waiting for -other threads to unlock the lock, this wait shall be terminated when -the specified timeout expires. The timeout shall expire when the -absolute time specified by abs_timeout passes, as measured by -the clock on which timeouts are based (that is, when the value of -that clock equals or exceeds abs_timeout), or if the absolute -time specified by abs_timeout has already been passed at the -time of the call. -

-

The timespec data type is defined in the <time.h> -header. Under no circumstances shall the function fail with a timeout -if the lock can be acquired immediately. The validity of the -abs_timeout parameter need not be checked if the lock can be -immediately acquired. -

-

The calling thread may deadlock if at the time the call is made it -holds the read-write lock. The results are undefined if this function -is called with an uninitialized read-write lock. -

-

PThreads4W defines _POSIX_READER_WRITER_LOCKS in -pthread.h as 200112L to indicate that the reader/writer routines are -implemented and may be used.

-

Return Value

-

The pthread_rwlock_timedwrlock function shall return zero -if the lock for writing on the read-write lock object referenced by -rwlock is acquired. Otherwise, an error number shall be -returned to indicate the error. -

-

Errors

-

The pthread_rwlock_timedwrlock function shall fail if: -

-
-
ETIMEDOUT -
- The lock could not be acquired before the specified timeout expired. -
-

-The pthread_rwlock_timedwrlock function may fail if: -

-
-
EINVAL -
- The value specified by rwlock does not refer to an initialized - read-write lock object, or the abs_timeout nanosecond value - is less than zero or greater than or equal to 1000 million. -
-

-This function shall not return an error code of [EINTR]. -

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

Applications using this function may be subject to priority -inversion, as discussed in the Base Definitions volume of -IEEE Std 1003.1-2001, Section 3.285, Priority Inversion. -

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

pthread_rwlock_destroy(3) -, pthread_rwlock_rdlock(3) -, pthread_rwlock_timedrdlock(3) -, pthread_rwlock_tryrdlock(3) -, pthread_rwlock_trywrlock(3) -, pthread_rwlock_unlock(3) -, pthread_rwlock_wrlock(3) -, the Base Definitions volume of IEEE Std 1003.1-2001, -<pthread.h>, <time.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlock_unlock.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlock_unlock.html deleted file mode 100644 index 583faa0..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlock_unlock.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - PTHREAD_RWLOCK_UNLOCK(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_rwlock_unlock - unlock a read-write lock object -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_rwlock_unlock(pthread_rwlock_t *rwlock); - -

-

Description

-

The pthread_rwlock_unlock function shall release a lock -held on the read-write lock object referenced by rwlock. -Results are undefined if the read-write lock rwlock is not -held by the calling thread. -

-

If this function is called to release a read lock from the -read-write lock object and there are other read locks currently held -on this read-write lock object, the read-write lock object remains in -the read locked state. If this function releases the last read lock -for this read-write lock object, the read-write lock object shall be -put in the unlocked state with no owners. -

-

If this function is called to release a write lock for this -read-write lock object, the read-write lock object shall be put in -the unlocked state. -

-

PThreads4W does not prefer either writers or readers in -acquiring the lock – all threads enter a single prioritised FIFO -queue. While this may not be optimally efficient for some -applications, it does ensure that one type does not starve the other.

-

Results are undefined if any of these functions are called with an -uninitialized read-write lock. -

-

PThreads4W defines _POSIX_READER_WRITER_LOCKS in -pthread.h as 200112L to indicate that the reader/writer routines are -implemented and may be used.

-

Return Value

-

If successful, the pthread_rwlock_unlock function shall -return zero; otherwise, an error number shall be returned to indicate -the error. -

-

Errors

-

The pthread_rwlock_unlock function may fail if: -

-
-
EINVAL -
- The value specified by rwlock does not refer to an - initialized read-write lock object. -
-

-
-

-The pthread_rwlock_unlock function shall not return an error -code of [EINTR]. -

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

None. -

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

pthread_rwlock_destroy(3) -, pthread_rwlock_rdlock(3) -, pthread_rwlock_timedrdlock(3) -, pthread_rwlock_timedwrlock(3) -, pthread_rwlock_tryrdlock(3) -, pthread_rwlock_trywrlock(3) -, pthread_rwlock_wrlock(3) -, the Base Definitions volume of IEEE Std 1003.1-2001, -<pthread.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlock_wrlock.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlock_wrlock.html deleted file mode 100644 index 7e165b3..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlock_wrlock.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - PTHREAD_RWLOCK_WRLOCK(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_rwlock_trywrlock, pthread_rwlock_wrlock - lock a -read-write lock object for writing -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_rwlock_trywrlock(pthread_rwlock_t *rwlock); -
int pthread_rwlock_wrlock(pthread_rwlock_t *
rwlock); - -

-

Description

-

The pthread_rwlock_trywrlock function shall apply a write -lock like the pthread_rwlock_wrlock function, with the -exception that the function shall fail if any thread currently holds -rwlock (for reading or writing). -

-

The pthread_rwlock_wrlock function shall apply a write lock -to the read-write lock referenced by rwlock. The calling -thread acquires the write lock if no other thread (reader or writer) -holds the read-write lock rwlock. Otherwise, the thread shall -block until it can acquire the lock. The calling thread may deadlock -if at the time the call is made it holds the read-write lock (whether -a read or write lock). -

-

PThreads4W does not prefer either writers or readers in -acquiring the lock – all threads enter a single prioritised FIFO -queue. While this may not be optimally efficient for some -applications, it does ensure that one type does not starve the other.

-

Results are undefined if any of these functions are called with an -uninitialized read-write lock. -

-

PThreads4W defines _POSIX_READER_WRITER_LOCKS in -pthread.h as 200112L to indicate that the reader/writer routines are -implemented and may be used.

-

Return Value

-

The pthread_rwlock_trywrlock function shall return zero if -the lock for writing on the read-write lock object referenced by -rwlock is acquired. Otherwise, an error number shall be -returned to indicate the error. -

-

If successful, the pthread_rwlock_wrlock function shall -return zero; otherwise, an error number shall be returned to indicate -the error. -

-

Errors

-

The pthread_rwlock_trywrlock function shall fail if: -

-
-
EBUSY -
- The read-write lock could not be acquired for writing because it was - already locked for reading or writing. -
-

-The pthread_rwlock_trywrlock and pthread_rwlock_wrlock -functions may fail if: -

-
-
EINVAL -
- The value specified by rwlock does not refer to an - initialized read-write lock object. -
-

-These functions shall not return an error code of [EINTR]. -

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

Applications using these functions may be subject to priority -inversion, as discussed in the Base Definitions volume of -IEEE Std 1003.1-2001, Section 3.285, Priority Inversion. -

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

pthread_rwlock_destroy(3) -, pthread_rwlock_rdlock(3) -, pthread_rwlock_timedrdlock(3) -, pthread_rwlock_timedwrlock(3) -, pthread_rwlock_tryrdlock(3) -, pthread_rwlock_unlock(3) -, the Base Definitions volume of IEEE Std 1003.1-2001, -<pthread.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlockattr_init.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlockattr_init.html deleted file mode 100644 index c9d04ea..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlockattr_init.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - PTHREAD_RWLOCKATTR_INIT(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_rwlockattr_destroy, pthread_rwlockattr_init - destroy and -initialize the read-write lock attributes object -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_rwlockattr_destroy(pthread_rwlockattr_t *attr); -
int pthread_rwlockattr_init(pthread_rwlockattr_t *
attr); - -

-

Description

-

The pthread_rwlockattr_destroy function shall destroy a -read-write lock attributes object. A destroyed attr attributes -object can be reinitialized using pthread_rwlockattr_init ; -the results of otherwise referencing the object after it has been -destroyed are undefined. An implementation may cause -pthread_rwlockattr_destroy to set the object referenced by -attr to an invalid value. -

-

The pthread_rwlockattr_init function shall initialize a -read-write lock attributes object attr with the default value -for all of the attributes defined by the implementation. -

-

Results are undefined if pthread_rwlockattr_init is called -specifying an already initialized attr attributes object. -

-

After a read-write lock attributes object has been used to -initialize one or more read-write locks, any function affecting the -attributes object (including destruction) shall not affect any -previously initialized read-write locks. -

-

PThreads4W defines _POSIX_READER_WRITER_LOCKS in -pthread.h as 200112L to indicate that the reader/writer routines are -implemented and may be used.

-

Return Value

-

If successful, the pthread_rwlockattr_destroy and -pthread_rwlockattr_init functions shall return zero; -otherwise, an error number shall be returned to indicate the error. -

-

Errors

-

The pthread_rwlockattr_destroy function may fail if: -

-
-
EINVAL -
- The value specified by attr is invalid. -
-

-The pthread_rwlockattr_init function shall fail if: -

-
-
ENOMEM -
- Insufficient memory exists to initialize the read-write lock - attributes object. -
-

-These functions shall not return an error code of [EINTR]. -

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

None. -

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

pthread_rwlock_destroy(3) -, pthread_rwlockattr_getpshared(3) -, pthread_rwlockattr_setpshared(3) -, the Base Definitions volume of IEEE Std 1003.1-2001, -<pthread.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlockattr_setpshared.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlockattr_setpshared.html deleted file mode 100644 index dfe033e..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_rwlockattr_setpshared.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - PTHREAD_RWLOCKATTR_SETPSHARED(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_rwlockattr_getpshared, pthread_rwlockattr_setpshared - get -and set the process-shared attribute of the read-write lock -attributes object -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t * -restrict attr, int *restrict pshared); -
int pthread_rwlockattr_setpshared(pthread_rwlockattr_t *
attr, -int pshared); -

-

Description

-

The pthread_rwlockattr_getpshared function shall obtain the -value of the process-shared attribute from the initialized -attributes object referenced by attr. The -pthread_rwlockattr_setpshared function shall set the -process-shared attribute in an initialized attributes object -referenced by attr. -

-

The process-shared attribute shall be set to -PTHREAD_PROCESS_SHARED to permit a read-write lock to be -operated upon by any thread that has access to the memory where the -read-write lock is allocated, even if the read-write lock is -allocated in memory that is shared by multiple processes. If the -process-shared attribute is PTHREAD_PROCESS_PRIVATE, -the read-write lock shall only be operated upon by threads created -within the same process as the thread that initialized the read-write -lock; if threads of differing processes attempt to operate on such a -read-write lock, the behavior is undefined. The default value of the -process-shared attribute shall be PTHREAD_PROCESS_PRIVATE. -

-

PThreads4W defines _POSIX_THREAD_PROCESS_SHARED in -pthread.h as -1 to indicate that these routines are implemented but -they do not support the process shared option.

-

Additional attributes, their default values, and the names of the -associated functions to get and set those attribute values are -implementation-defined. -

-

PThreads4W defines _POSIX_READER_WRITER_LOCKS in -pthread.h as 200112L to indicate that the reader/writer routines are -implemented and may be used.

-

Return Value

-

Upon successful completion, the pthread_rwlockattr_getpshared -function shall return zero and store the value of the process-shared -attribute of attr into the object referenced by the pshared -parameter. Otherwise, an error number shall be returned to indicate -the error. -

-

If successful, the pthread_rwlockattr_setpshared function -shall return zero; otherwise, an error number shall be returned to -indicate the error. -

-

Errors

-

The pthread_rwlockattr_getpshared and -pthread_rwlockattr_setpshared functions may fail if: -

-
-
EINVAL -
- The value specified by attr is invalid. -
-

-The pthread_rwlockattr_setpshared function may fail if: -

-
-
EINVAL -
- The new value specified for the attribute is outside the range of - legal values for that attribute. -
- ENOTSUP -
- The new value specified for the attribute is PTHREAD_PROCESS_SHARED. -
-

-These functions shall not return an error code of [EINTR]. -

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

None. -

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

pthread_rwlock_destroy(3) -, pthread_rwlockattr_destroy(3) -, pthread_rwlockattr_init(3) -, the Base Definitions volume of IEEE Std 1003.1-2001, -<pthread.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_self.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_self.html deleted file mode 100644 index f0080ea..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_self.html +++ /dev/null @@ -1,65 +0,0 @@ - - - - - PTHREAD_SELF(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_self - return identifier of current thread -

-

Synopsis

-

#include <pthread.h> -

-

pthread_t pthread_self(void); -

-

Description

-

pthread_self return the thread identifier for the calling -thread. -

-

PThreads4W also provides support for Win32 native -threads to interact with POSIX threads through the pthreads API. -Whereas all threads created via a call to pthread_create have a POSIX -thread ID and thread state, the library ensures that any Win32 native -threads that interact through the Pthreads API also generate a POSIX -thread ID and thread state when and if necessary. This provides full -reciprocity between Win32 and POSIX -threads. Win32 native threads that generate a POSIX thread ID and -state are treated by the library as having been created with the -PTHREAD_CREATE_DETACHED attribute.

-

Any Win32 native thread may call pthread_self directly to -return it's POSIX thread identifier. The ID and state will be -generated if it does not already exist. Win32 native threads do not -need to call pthread_self before calling PThreads4W routines -unless that routine requires a pthread_t parameter.

-

Author

-

Xavier Leroy <Xavier.Leroy@inria.fr> -

-

Modified by Ross Johnson for use with Pthreads4W.

-

See Also

-

pthread_equal(3) , -pthread_join(3) , -pthread_detach(3) , -pthread_setschedparam(3) -, pthread_getschedparam(3) -. -

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_setaffinity_np.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_setaffinity_np.html deleted file mode 100644 index 3983171..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_setaffinity_np.html +++ /dev/null @@ -1,134 +0,0 @@ - - - - PTHREAD_SETAFFINITY_NP(3) manual page - - - -

POSIX -Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_setaffinity_np - set thread CPU affinity

-

pthread_getaffinity_np - get thread CPU affinity

-

Synopsis

-

#include <pthread.h> -

-

int pthread_setaffinity_np(pthread_t tid, -int cpusetsize, -const cpu_set_t *mask);

-

int pthread_getaffinity_np(pthread_t tid, -int cpusetsize, -cpu_set_t *mask);

-

Description

-

pthread_setaffinity_np sets the CPU affinity mask of the thread -whose ID is tid to the value specified by mask. The argument cpusetsize -is the length (in bytes) of the data pointed to by mask. -Normally this argument would be specified as sizeof(cpu_set_t).

-

If the thread specified by tid is not currently running on -one of the CPUs specified in mask, then that thread is -migrated to one of the CPUs specified in mask.

-

After a call to pthread_setaffinity_np, the set of CPUs on which -the thread will actually run is the intersection of the set -specified in the mask argument and the set of CPUs actually -present on the system.

-

pthread_getaffinity_np writes the affinity mask of the thread -whose ID is tid into the cpu_set_t structure pointed to by -mask. The cpusetsize argument specifies the size (in -bytes) of mask. -

PThreads4W currently ignores the cpusetsize -parameter for either function because cpu_set_t is a direct typeset -to the Windows affinity vector type DWORD_PTR.

-

Return Value

-

On success, pthread_setaffinity_np and pthread_getaffinity_np -return 0. On error, an error number is returned.

-

Errors

-
-
EFAULT
-
-
- A supplied memory address was invalid.
-
-
- EINVAL
-
-
- The affinity bit mask mask contains no processors that are - currently physically on the system.
-
-
- EAGAIN
-
-
- The function did not succeed in changing or obtaining the CPU - affinity for some undetermined reason. Try again.
-
-
- EPERM
-
-
- The calling process does not have appropriate privileges.
-
-
- ESRCH -
-
-
- The thread whose ID is tid could not be found.
-
-
-

-Application Usage

-

A thread's CPU affinity mask determines the set of CPUs on which -it is eligible to run. On a multiprocessor system, setting the CPU -affinity mask can be used to obtain performance benefits. For -example, by dedicating one CPU to a particular thread (i.e., setting -the affinity mask of that thread to specify a single CPU, and -setting the affinity mask of all other threads to exclude that -CPU), it is possible to ensure maximum execution speed for that -thread. Restricting a thread to run on a single CPU also minimises the -performance cost caused by the cache invalidation that occurs when a -thread ceases to execute on one CPU and then recommences execution -on a different CPU.

-

A CPU affinity mask is represented by the cpu_set_t structure, a -"CPU set", pointed to by mask. A set of macros for -manipulating CPU sets is described in cpu_set(3).

-

See Also

-

cpu_set(3), -sched_setaffininty(3), -sched_getaffinity(3)

-

Copyright

-

Most of this is taken from the Linux manual page.

-

Modified by Ross Johnson for use with PThreads4W.

-
-

Table of Contents

- -



-

- - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_setcancelstate.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_setcancelstate.html deleted file mode 100644 index 231625c..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_setcancelstate.html +++ /dev/null @@ -1,202 +0,0 @@ - - - - - PTHREAD_SETCANCELSTATE(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_cancel, pthread_setcancelstate, pthread_setcanceltype, -pthread_testcancel - thread cancellation -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_cancel(pthread_t thread); -

-

int pthread_setcancelstate(int state, int -*oldstate); -

-

int pthread_setcanceltype(int type, int -*oldtype); -

-

void pthread_testcancel(void); -

-

Description

-

Cancellation is the mechanism by which a thread can terminate the -execution of another thread. More precisely, a thread can send a -cancellation request to another thread. Depending on its settings, -the target thread can then either ignore the request, honor it -immediately, or defer it until it reaches a cancellation point. -

-

When a thread eventually honors a cancellation request, it -performs as if pthread_exit(PTHREAD_CANCELED) has been called -at that point: all cleanup handlers are executed in reverse order, -destructor functions for thread-specific data are called, and finally -the thread stops executing with the return value PTHREAD_CANCELED. -See pthread_exit(3) for more -information. -

-

pthread_cancel sends a cancellation request to the thread -denoted by the thread argument. -

-

pthread_setcancelstate changes the cancellation state for -the calling thread -- that is, whether cancellation requests are -ignored or not. The state argument is the new cancellation -state: either PTHREAD_CANCEL_ENABLE to enable cancellation, or -PTHREAD_CANCEL_DISABLE to disable cancellation (cancellation -requests are ignored). If oldstate is not NULL, the -previous cancellation state is stored in the location pointed to by -oldstate, and can thus be restored later by another call to -pthread_setcancelstate. -

-

pthread_setcanceltype changes the type of responses to -cancellation requests for the calling thread: asynchronous -(immediate) or deferred. The type argument is the new -cancellation type: either PTHREAD_CANCEL_ASYNCHRONOUS to -cancel the calling thread as soon as the cancellation request is -received, or PTHREAD_CANCEL_DEFERRED to keep the cancellation -request pending until the next cancellation point. If oldtype -is not NULL, the previous cancellation state is stored in the -location pointed to by oldtype, and can thus be restored later -by another call to pthread_setcanceltype. -

-

PThreads4W provides two levels of support for -PTHREAD_CANCEL_ASYNCHRONOUS: full and partial. Full support -requires an additional DLL and driver be installed on the Windows -system (see the See Also section below) that allows blocked threads -to be cancelled immediately. Partial support means that the target -thread will not cancel until it resumes execution naturally. Partial -support is provided if either the DLL or the driver are not -automatically detected by the PThreads4W library at run-time.

-

Threads are always created by pthread_create(3) -with cancellation enabled and deferred. That is, the initial -cancellation state is PTHREAD_CANCEL_ENABLE and the initial -type is PTHREAD_CANCEL_DEFERRED. -

-

Cancellation points are those points in the program execution -where a test for pending cancellation requests is performed and -cancellation is executed if positive. The following POSIX threads -functions are cancellation points: -

-

pthread_join(3) -
pthread_cond_wait(3) -
pthread_cond_timedwait(3) -
pthread_testcancel(3) -
sem_wait(3)
sem_timedwait(3) -
sigwait(3) (not supported under -PThreads4W)

-

PThreads4W provides two functions to enable additional -cancellation points to be created in user functions that block on -Win32 HANDLEs:

-

pthreadCancelableWait() -
pthreadCancelableTimedWait()

-

All other POSIX threads functions are guaranteed not to be -cancellation points. That is, they never perform cancellation in -deferred cancellation mode. -

-

pthread_testcancel does nothing except testing for pending -cancellation and executing it. Its purpose is to introduce explicit -checks for cancellation in long sequences of code that do not call -cancellation point functions otherwise. -

-

Return Value

-

pthread_cancel, pthread_setcancelstate and -pthread_setcanceltype return 0 on success and a non-zero error -code on error. -

-

Errors

-

pthread_cancel returns the following error code on error: -

-
-
-
ESRCH -
- no thread could be found corresponding to that specified by the - thread ID. -
-
-

-pthread_setcancelstate returns the following error code on -error: -

-
-
-
EINVAL -
- the state argument is not -
-
-
-PTHREAD_CANCEL_ENABLE nor PTHREAD_CANCEL_DISABLE -
-

pthread_setcanceltype returns the following error code on -error: -

-
-
-
EINVAL -
- the type argument is not -
-
-
-PTHREAD_CANCEL_DEFERRED nor PTHREAD_CANCEL_ASYNCHRONOUS -
-

Author

-

Xavier Leroy <Xavier.Leroy@inria.fr> -

-

Modified by Ross Johnson for use with Pthreads4W.

-

See Also

-

pthread_exit(3) , -pthread_cleanup_push(3) -, pthread_cleanup_pop(3) -, PThreads4W package README file 'Prerequisites' section. -

-

Bugs

-

POSIX specifies that a number of system calls (basically, all -system calls that may block, such as read(2) -, write(2) , wait(2) -, etc.) and library functions that may call these system calls (e.g. -fprintf(3) ) are cancellation -points. PThreads4W is not integrated enough with the C -library to implement this, and thus none of the C library functions -is a cancellation point. -

-

A workaround for these calls is to temporarily switch to -asynchronous cancellation (assuming full asynchronous cancellation -support is installed). So, checking for cancellation during a read -system call, for instance, can be achieved as follows: -

-


-
-
pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &oldCancelType);
-read(fd, buffer, length);
-pthread_setcanceltype(oldCancelType, NULL);
-
-
Table of Contents
- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_setcanceltype.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_setcanceltype.html deleted file mode 100644 index 231625c..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_setcanceltype.html +++ /dev/null @@ -1,202 +0,0 @@ - - - - - PTHREAD_SETCANCELSTATE(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_cancel, pthread_setcancelstate, pthread_setcanceltype, -pthread_testcancel - thread cancellation -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_cancel(pthread_t thread); -

-

int pthread_setcancelstate(int state, int -*oldstate); -

-

int pthread_setcanceltype(int type, int -*oldtype); -

-

void pthread_testcancel(void); -

-

Description

-

Cancellation is the mechanism by which a thread can terminate the -execution of another thread. More precisely, a thread can send a -cancellation request to another thread. Depending on its settings, -the target thread can then either ignore the request, honor it -immediately, or defer it until it reaches a cancellation point. -

-

When a thread eventually honors a cancellation request, it -performs as if pthread_exit(PTHREAD_CANCELED) has been called -at that point: all cleanup handlers are executed in reverse order, -destructor functions for thread-specific data are called, and finally -the thread stops executing with the return value PTHREAD_CANCELED. -See pthread_exit(3) for more -information. -

-

pthread_cancel sends a cancellation request to the thread -denoted by the thread argument. -

-

pthread_setcancelstate changes the cancellation state for -the calling thread -- that is, whether cancellation requests are -ignored or not. The state argument is the new cancellation -state: either PTHREAD_CANCEL_ENABLE to enable cancellation, or -PTHREAD_CANCEL_DISABLE to disable cancellation (cancellation -requests are ignored). If oldstate is not NULL, the -previous cancellation state is stored in the location pointed to by -oldstate, and can thus be restored later by another call to -pthread_setcancelstate. -

-

pthread_setcanceltype changes the type of responses to -cancellation requests for the calling thread: asynchronous -(immediate) or deferred. The type argument is the new -cancellation type: either PTHREAD_CANCEL_ASYNCHRONOUS to -cancel the calling thread as soon as the cancellation request is -received, or PTHREAD_CANCEL_DEFERRED to keep the cancellation -request pending until the next cancellation point. If oldtype -is not NULL, the previous cancellation state is stored in the -location pointed to by oldtype, and can thus be restored later -by another call to pthread_setcanceltype. -

-

PThreads4W provides two levels of support for -PTHREAD_CANCEL_ASYNCHRONOUS: full and partial. Full support -requires an additional DLL and driver be installed on the Windows -system (see the See Also section below) that allows blocked threads -to be cancelled immediately. Partial support means that the target -thread will not cancel until it resumes execution naturally. Partial -support is provided if either the DLL or the driver are not -automatically detected by the PThreads4W library at run-time.

-

Threads are always created by pthread_create(3) -with cancellation enabled and deferred. That is, the initial -cancellation state is PTHREAD_CANCEL_ENABLE and the initial -type is PTHREAD_CANCEL_DEFERRED. -

-

Cancellation points are those points in the program execution -where a test for pending cancellation requests is performed and -cancellation is executed if positive. The following POSIX threads -functions are cancellation points: -

-

pthread_join(3) -
pthread_cond_wait(3) -
pthread_cond_timedwait(3) -
pthread_testcancel(3) -
sem_wait(3)
sem_timedwait(3) -
sigwait(3) (not supported under -PThreads4W)

-

PThreads4W provides two functions to enable additional -cancellation points to be created in user functions that block on -Win32 HANDLEs:

-

pthreadCancelableWait() -
pthreadCancelableTimedWait()

-

All other POSIX threads functions are guaranteed not to be -cancellation points. That is, they never perform cancellation in -deferred cancellation mode. -

-

pthread_testcancel does nothing except testing for pending -cancellation and executing it. Its purpose is to introduce explicit -checks for cancellation in long sequences of code that do not call -cancellation point functions otherwise. -

-

Return Value

-

pthread_cancel, pthread_setcancelstate and -pthread_setcanceltype return 0 on success and a non-zero error -code on error. -

-

Errors

-

pthread_cancel returns the following error code on error: -

-
-
-
ESRCH -
- no thread could be found corresponding to that specified by the - thread ID. -
-
-

-pthread_setcancelstate returns the following error code on -error: -

-
-
-
EINVAL -
- the state argument is not -
-
-
-PTHREAD_CANCEL_ENABLE nor PTHREAD_CANCEL_DISABLE -
-

pthread_setcanceltype returns the following error code on -error: -

-
-
-
EINVAL -
- the type argument is not -
-
-
-PTHREAD_CANCEL_DEFERRED nor PTHREAD_CANCEL_ASYNCHRONOUS -
-

Author

-

Xavier Leroy <Xavier.Leroy@inria.fr> -

-

Modified by Ross Johnson for use with Pthreads4W.

-

See Also

-

pthread_exit(3) , -pthread_cleanup_push(3) -, pthread_cleanup_pop(3) -, PThreads4W package README file 'Prerequisites' section. -

-

Bugs

-

POSIX specifies that a number of system calls (basically, all -system calls that may block, such as read(2) -, write(2) , wait(2) -, etc.) and library functions that may call these system calls (e.g. -fprintf(3) ) are cancellation -points. PThreads4W is not integrated enough with the C -library to implement this, and thus none of the C library functions -is a cancellation point. -

-

A workaround for these calls is to temporarily switch to -asynchronous cancellation (assuming full asynchronous cancellation -support is installed). So, checking for cancellation during a read -system call, for instance, can be achieved as follows: -

-


-
-
pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &oldCancelType);
-read(fd, buffer, length);
-pthread_setcanceltype(oldCancelType, NULL);
-
-
Table of Contents
- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_setconcurrency.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_setconcurrency.html deleted file mode 100644 index cb18405..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_setconcurrency.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - PTHREAD_SETCONCURRENCY(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_getconcurrency, pthread_setconcurrency - get and set the -level of concurrency -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_getconcurrency(void);
int -pthread_setconcurrency(int new_level); -

-

Description

-

Unbound threads in a process may or may not be required to be -simultaneously active. By default, the threads implementation ensures -that a sufficient number of threads are active so that the process -can continue to make progress. While this conserves system resources, -it may not produce the most effective level of concurrency. -

-

The pthread_setconcurrency function allows an application -to inform the threads implementation of its desired concurrency -level, new_level. The actual level of concurrency provided by -the implementation as a result of this function call is unspecified. -

-

If new_level is zero, it causes the implementation to -maintain the concurrency level at its discretion as if -pthread_setconcurrency had never been called. -

-

The pthread_getconcurrency function shall return the value -set by a previous call to the pthread_setconcurrency function. -If the pthread_setconcurrency function was not previously -called, this function shall return zero to indicate that the -implementation is maintaining the concurrency level. -

-

A call to pthread_setconcurrency shall inform the -implementation of its desired concurrency level. The implementation -shall use this as a hint, not a requirement. -

-

If an implementation does not support multiplexing of user threads -on top of several kernel-scheduled entities, the -pthread_setconcurrency and pthread_getconcurrency -functions are provided for source code compatibility but they shall -have no effect when called. To maintain the function semantics, the -new_level parameter is saved when pthread_setconcurrency -is called so that a subsequent call to pthread_getconcurrency -shall return the same value. -

-

PThreads4W provides these routines for source code -compatibility only, as described in the previous paragraph.

-

Return Value

-

If successful, the pthread_setconcurrency function shall -return zero; otherwise, an error number shall be returned to indicate -the error. -

-

The pthread_getconcurrency function shall always return the -concurrency level set by a previous call to pthread_setconcurrency -. If the pthread_setconcurrency function has never been -called, pthread_getconcurrency shall return zero. -

-

Errors

-

The pthread_setconcurrency function shall fail if: -

-
-
EINVAL -
- The value specified by new_level is negative. -
- EAGAIN -
- The value specific by new_level would cause a system resource - to be exceeded. -
-

-These functions shall not return an error code of [EINTR]. -

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

Use of these functions changes the state of the underlying -concurrency upon which the application depends. Library developers -are advised to not use the pthread_getconcurrency and -pthread_setconcurrency functions since their use may conflict -with an applications use of these functions. -

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

The Base Definitions volume of IEEE Std 1003.1-2001, -<pthread.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_setname_np.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_setname_np.html deleted file mode 100644 index 5e4e8b1..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_setname_np.html +++ /dev/null @@ -1,228 +0,0 @@ - - - - - PTHREAD_SETNAME_NP(3) manual page - - - -

POSIX -Threads for Windows – REFERENCE - PThreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_getname_np, pthread_setname_np - get and set the thread -name

-

Synopsis

-

#include <pthread.h> -

-

int pthread_getname_np(pthread_t thr, -char * name, -int len);

-

#if defined (__PTW32_COMPATIBILITY_BSD) || -defined (__PTW32_COMPATIBILITY_TRU64)
int -pthread_setname_np(pthread_t thr, -const char * name, -void * arg);

-

#else

-

int pthread_setname_np(pthread_t thr, -const char * name);

-

#endif

-

Description

-

pthread_setname_np() sets the descriptive name of the -thread. It takes the following arguments.

-

#if defined (__PTW32_COMPATIBILITY_BSD)

- - - - - - - - - - - - - - - -
-

thr

-
-

The thread whose name will be set.

-
-

name

-
-

The printf(3) format string to be used to construct the name of - the thread. The resulting name should be shorter than - PTHREAD_MAX_NAMELEN_NP.

-
-

arg

-
-

The printf(3) argument used with name.

-
-

#elif defined (__PTW32_COMPATIBILITY_TRU64)

- - - - - - - - - - - - - - - -
-

thr

-
-

The thread whose name will be set.

-
-

name

-
-

The name.

-
-

arg

-
-

Reserved for future use.

-
-

#else

- - - - - - - - - - - -
-

thr

-
-

The thread whose name will be set.

-
-

name

-
-

The name.

-
-

#endif

-

The string passed as the name argument is copied.

-



-

-

pthread_getname_np() gets the descriptive name of the -thread. It takes the following arguments.

- - - - - - - - - - - - - - - -
-

thr

-
-

The thread whose descriptive name will be obtained.

-
-

name

-
-

The buffer to be filled with the descriptive name of the - thread.

-
-

len

-
-

The size of the buffer name in bytes.

-
-



-

-

For the MSVC built library the name is made available for use and -display by the MSVS debugger.

-

Return Value

-

These routines return 0 on success or an error code on failure.

-
        

-Errors

-

The pthread_setname_np function shall fail if: -

-
-
ESRCH -
-

-The value specified by thr does not refer to a valid thread.

-
-
EINVAL
-

-The expansion of name with arg has length greater or equal to -PTHREAD_MAX_NAMELEN_NP.

-



-

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

In addition to use within applications, when the library is built -with MSVC, thread names set via pthread_setname_np will be available -for display in the MSVS debugger.

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

The Base Definitions volume of IEEE Std 1003.1-2001, -<pthread.h> -

-

Table of Contents

-

Name -

-

Synopsis -

-

Description -

-

Return Value -

-

Errors -

-

Examples -

-

Application Usage -

-

Rationale -

-

Future Directions -

-

See Also

- - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_setschedparam.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_setschedparam.html deleted file mode 100644 index 6fe6d60..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_setschedparam.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - PTHREAD_SETSCHEDPARAM(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_setschedparam, pthread_getschedparam - control thread -scheduling -

-

parameters -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_setschedparam(pthread_t target_thread, -int policy, const struct sched_param *param); -

-

int pthread_getschedparam(pthread_t target_thread, -int *policy, struct sched_param *param); -

-

Description

-

pthread_setschedparam sets the scheduling parameters for -the thread target_thread as indicated by policy and -param. policy can be either SCHED_OTHER -(regular, non-real-time scheduling), SCHED_RR (real-time, -round-robin) or SCHED_FIFO (real-time, first-in first-out). -param specifies the scheduling priority for the two real-time -policies.

-

PThreads4W only supports SCHED_OTHER and does not support -the real-time scheduling policies SCHED_RR and SCHED_FIFO. -

-

pthread_getschedparam retrieves the scheduling policy and -scheduling parameters for the thread target_thread and stores -them in the locations pointed to by policy and param, -respectively. -

-

Return Value

-

pthread_setschedparam and pthread_getschedparam -return 0 on success and a non-zero error code on error. -

-

Errors

-

On error, pthread_setschedparam returns the following error -codes: -

-
-
-
ENOTSUP -
- policy is not SCHED_OTHER.
- EINVAL -
- One of the arguments is invalid, or the priority value specified by - param is not valid for the specified policy.
- ESRCH -
- The target_thread is invalid or has already terminated -
-
-

-On error, pthread_getschedparam returns the following error -codes: -

-
-
-
ESRCH -
- the target_thread is invalid or has already terminated -
-
-

-Author

-

Xavier Leroy <Xavier.Leroy@inria.fr> -

-

Modified by Ross Johnson for use with Pthreads4W.

-

See Also

-

sched_setscheduler(2) -, sched_getscheduler(2) -, sched_getparam(2) , -pthread_attr_setschedpolicy(3) -, pthread_attr_setschedparam(3) -. -

-
-

Table of Contents

- - - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_spin_init.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_spin_init.html deleted file mode 100644 index 2287ec1..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_spin_init.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - PTHREAD_SPIN_INIT(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_spin_destroy, pthread_spin_init - destroy or initialize a -spin lock object (ADVANCED REALTIME THREADS) -

-

Synopsis

-

#include <pthread.h> -

-

pthread_spinlock_t lock = -PTHREAD_SPINLOCK_INITIALIZER;

-

int pthread_spin_destroy(pthread_spinlock_t *lock); -
int pthread_spin_init(pthread_spinlock_t *
lock, int -pshared); -

-

Description

-

The pthread_spin_destroy function shall destroy the spin -lock referenced by lock and release any resources used by the -lock. The effect of subsequent use of the lock is undefined until the -lock is reinitialized by another call to pthread_spin_init . -The results are undefined if pthread_spin_destroy is called -when a thread holds the lock, or if this function is called with an -uninitialized thread spin lock. -

-

The pthread_spin_init function shall allocate any resources -required to use the spin lock referenced by lock and -initialize the lock to an unlocked state. -

-

PThreads4W supports single and multiple processor systems -as well as process CPU affinity masking by checking the mask when the -spin lock is initialized. If the process is using only a single -processor at the time pthread_spin_init is called then the -spin lock is initialized as a PTHREAD_MUTEX_NORMAL mutex object. A -thread that calls pthread_spin_lock(3) -will block rather than spin in this case. If the process CPU affinity -mask is altered after the spin lock has been initialised, the spin -lock is not modified, and may no longer be optimal for the number of -CPUs available.

-

PThreads4W defines _POSIX_THREAD_PROCESS_SHARED in -pthread.h as -1 to indicate that these routines do not support the -PTHREAD_PROCESS_SHARED attribute. pthread_spin_init -will return the error ENOTSUP if the value of pshared -is not PTHREAD_PROCESS_PRIVATE.

-

The results are undefined if pthread_spin_init is called -specifying an already initialized spin lock. The results are -undefined if a spin lock is used without first being initialized. -

-

If the pthread_spin_init function fails, the lock is not -initialized and the contents of lock are undefined. -

-

Only the object referenced by lock may be used for -performing synchronization. -

-

The result of referring to copies of that object in calls to -pthread_spin_destroy , pthread_spin_lock(3) -, pthread_spin_trylock(3), -or pthread_spin_unlock(3) -is undefined. -

-

PThreads4W supports statically initialized spin locks -using PTHREAD_SPINLOCK_INITIALIZER. An application should -still call pthread_spin_destroy at some point to ensure that -any resources consumed by the spin lock are released.

-

Return Value

-

Upon successful completion, these functions shall return zero; -otherwise, an error number shall be returned to indicate the error. -

-

Errors

-

These functions may fail if: -

-
-
EBUSY -
- The implementation has detected an attempt to initialize or destroy - a spin lock while it is in use (for example, while being used in a - pthread_spin_lock(3) - call) by another thread. -
- EINVAL -
- The value specified by lock is invalid. -
-

-The pthread_spin_init function shall fail if: -

-
-
ENOTSUP -
- The value of pshared is not PTHREAD_PROCESS_PRIVATE.
- ENOMEM -
- Insufficient memory exists to initialize the lock. -
-

-These functions shall not return an error code of [EINTR]. -

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

The pthread_spin_destroy and pthread_spin_init -functions are part of the Spin Locks option and need not be provided -on all implementations. -

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

pthread_spin_lock(3) , -pthread_spin_unlock(3) -, the Base Definitions volume of IEEE Std 1003.1-2001, -<pthread.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_spin_lock.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_spin_lock.html deleted file mode 100644 index e33b6bf..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_spin_lock.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - PTHREAD_SPIN_LOCK(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_spin_lock, pthread_spin_trylock - lock a spin lock object -(ADVANCED REALTIME THREADS) -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_spin_lock(pthread_spinlock_t *lock); -
int pthread_spin_trylock(pthread_spinlock_t *
lock); - -

-

Description

-

The pthread_spin_lock function shall lock the spin lock -referenced by lock. The calling thread shall acquire the lock -if it is not held by another thread. Otherwise, the thread shall spin -(that is, shall not return from the pthread_spin_lock call) -until the lock becomes available. The results are undefined if the -calling thread holds the lock at the time the call is made.

-

PThreads4W supports single and multiple processor systems -as well as process CPU affinity masking by checking the mask when the -spin lock is initialized. If the process is using only a single -processor at the time pthread_spin_init(3) -is called then the spin lock is initialized as a PTHREAD_MUTEX_NORMAL -mutex object. A thread that calls pthread_spin_lock will block -rather than spin in this case. If the process CPU affinity mask is -altered after the spin lock has been initialised, the spin lock is -not modified, and may no longer be optimal for the number of CPUs -available.

-

The pthread_spin_trylock function shall lock the spin lock -referenced by lock if it is not held by any thread. Otherwise, -the function shall fail. -

-

The results are undefined if any of these functions is called with -an uninitialized spin lock. -

-

Return Value

-

Upon successful completion, these functions shall return zero; -otherwise, an error number shall be returned to indicate the error. -

-

Errors

-

These functions may fail if: -

-
-
EINVAL -
- The value specified by lock does not refer to an initialized - spin lock object. -
-

-The pthread_spin_trylock function shall fail if: -

-
-
EBUSY -
- A thread currently holds the lock. -
-

-These functions shall not return an error code of [EINTR]. -

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

Applications using this function may be subject to priority -inversion, as discussed in the Base Definitions volume of -IEEE Std 1003.1-2001, Section 3.285, Priority Inversion. -

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

pthread_spin_destroy(3) -, pthread_spin_unlock(3) -, the Base Definitions volume of IEEE Std 1003.1-2001, -<pthread.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_spin_unlock.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_spin_unlock.html deleted file mode 100644 index 19d66bf..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_spin_unlock.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - PTHREAD_SPIN_UNLOCK(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_spin_unlock - unlock a spin lock object (ADVANCED -REALTIME THREADS) -

-

Synopsis

-

#include <pthread.h> -

-

int pthread_spin_unlock(pthread_spinlock_t *lock); - -

-

Description

-

The pthread_spin_unlock function shall release the spin -lock referenced by lock which was locked via the -pthread_spin_lock(3) or -pthread_spin_trylock(3) -functions. If there are threads spinning on the lock when -pthread_spin_unlock is called, the lock becomes available and -an unspecified spinning thread shall acquire the lock. -

-

PThreads4W does not check ownership of the lock and it is -therefore possible for a thread other than the locker to unlock the -spin lock. This is not a feature that should be exploited.

-

The results are undefined if this function is called with an -uninitialized thread spin lock. -

-

Return Value

-

Upon successful completion, the pthread_spin_unlock -function shall return zero; otherwise, an error number shall be -returned to indicate the error. -

-

Errors

-

The pthread_spin_unlock function may fail if: -

-
-
EINVAL -
- An invalid argument was specified. -
-
-
-

-This function shall not return an error code of [EINTR]. -

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

PThreads4W does not check ownership of the lock and it is -therefore possible for a thread other than the locker to unlock the -spin lock. This is not a feature that should be exploited.

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

pthread_spin_destroy(3) -, pthread_spin_lock(3) -, the Base Definitions volume of IEEE Std 1003.1-2001, -<pthread.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_timechange_handler_np.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_timechange_handler_np.html deleted file mode 100644 index 1509826..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_timechange_handler_np.html +++ /dev/null @@ -1,71 +0,0 @@ - - - - - PTHREAD_TIMECHANGE_HANDLER_NP(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_timechange_handler_np – -alert timed waiting condition variables to system time changes.

-

Synopsis

-

#include <pthread.h> -

-

void * pthread_timechange_handler_np(void * dummy);

-

Description

-

To improve tolerance against operator or time service initiated -system clock changes.

-

pthread_timechange_handler_np can be called by an -application when it receives a WM_TIMECHANGE message from the system. -At present it broadcasts all condition variables so that waiting -threads can wake up and re-evaluate their conditions and restart -their timed waits if required.

-

pthread_timechange_handler_np has the same return type and -argument type as a thread routine so that it may be called directly -through pthread_create(), i.e. as a separate thread. If run as a -thread, the return code must be retrieved through pthread_join().

-

Although the dummy parameter is required it is not used and -any value including NULL can be given.

-

Cancellation

-

None.

-

Return Value

-

pthread_timechange_handler_np returns 0 on success, or an -error code.

-

Errors

-

The pthread_timechange_handler_np function returns the -following error code on error: -

-
-
-
EAGAIN -
-
-

-To indicate that not all condition variables were signalled for some -reason.

-

Author

-

Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_win32_attach_detach_np.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_win32_attach_detach_np.html deleted file mode 100644 index b042968..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_win32_attach_detach_np.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - PTHREAD_WIN32_ATTACH_DETACH_NP(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_win32_process_attach_np, -pthread_win32_process_detach_np, pthread_win32_thread_attach_np, -pthread_win32_thread_detach_np – exposed versions of the -PThreads4W DLL dllMain() switch functionality for use when -statically linking the library.

-

Synopsis

-

#include <pthread.h> -

-

BOOL pthread_win32_process_attach_np (void);

-

BOOL pthread_win32_process_detach_np (void);

-

BOOL pthread_win32_thread_attach_np (void);

-

BOOL pthread_win32_thread_detach_np (void);

-

Description

-

These functions contain the code normally run via dllMain -when the library is used as a dll but which need to be called -explicitly by an application when the library is statically linked. As of version 2.9.0, the static library built using either MSC or GCC includes RT hooks which will call the pthread_win32_process_*_np routines automatically on start/exit of the application.

-

You will need to call pthread_win32_process_attach_np -before you can call any pthread routines when statically linking. You -should call pthread_win32_process_detach_np before exiting -your application to clean up.

-

pthread_win32_thread_attach_np is currently a no-op, but -pthread_win32_thread_detach_np is needed to clean up the -implicit pthread handle that is allocated to a Win32 thread if it -calls certain pthreads routines. Call this routine when the Win32 -thread exits.

-

These functions invariably return TRUE except for -pthread_win32_process_attach_np which will return FALSE if -PThreads4W initialisation fails.

-

Cancellation

-

None.

-

Return Value

-

These routines return TRUE (non-zero) on success, or FALSE (0) if -they fail.

-

Errors

-

None.

-

Author

-

Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_win32_getabstime_np.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_win32_getabstime_np.html deleted file mode 100644 index 7e4e060..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_win32_getabstime_np.html +++ /dev/null @@ -1,71 +0,0 @@ - - - - - PTHREAD_WIN32_ATTACH_DETACH_NP(3) manual page - - - - - - - -

POSIX Threads for Windows – REFERENCE - -Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_win32_getabstime_np

-

Synopsis

-

#include <pthread.h> -

-

struct timespec * pthread_win32_getabstime_np (struct timespec -* abstime, struct timespec * reltime);

-

Description

-

Primarily to facilitate writing unit tests but exported for -convenience. The struct -timespec pointed to by -the first parameter is modified to represent the current time plus an -optional offset value struct timespec -in a platform optimal way.

-

Returns the first parameter so is compatible as the struct -timespec * -parameter in POSIX timed function calls.

-

Cancellation

-

None.

-

Return -Value

-

This routine returns the first parameter (non-zero) on success, or -NULL (0) if it fails.

-

Errors

-

None.

-

Author

-

Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_win32_test_features_np.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_win32_test_features_np.html deleted file mode 100644 index 927942c..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/pthread_win32_test_features_np.html +++ /dev/null @@ -1,63 +0,0 @@ - - - - - PTHREAD_WIN32_TEST_FEATURES_NP(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

pthread_win32_test_features_np – -find out what features were detected at process attach time.

-

Synopsis

-

#include <pthread.h> -

-

BOOL pthread_win32_test_features_np(int mask);

-

Description

-

pthread_win32_test_features_np allows an application to -check which run-time auto-detected features are available within the -library.

-

The possible features are:

-

PTW32_SYSTEM_INTERLOCKED_COMPARE_EXCHANGE

-

Return TRUE if the Win32 version of -InterlockedCompareExchange() is being used. On IA32 systems the -library can use optimised and inlinable assembler versions of -InterlockedExchange() and InterlockedCompareExchange().

-

PTW32_ALERTABLE_ASYNC_CANCEL

-

Return TRUE if the QueueUserAPCEx package -QUSEREX.DLL and the AlertDrv.sys driver was detected. This package -provides alertable (pre-emptive) asynchronous threads cancellation. -If this feature returns FALSE then the default async cancel scheme is -in use, which cannot cancel blocked threads.

-

Cancellation

-

None.

-

Return Value

-

pthread_win32_test_features_np returns TRUE (non-zero) if -the specified feature is present, and FALSE (0) otherwise.

-

Errors

-

None.

-

Author

-

Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/sched_get_priority_max.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/sched_get_priority_max.html deleted file mode 100644 index 72311d9..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/sched_get_priority_max.html +++ /dev/null @@ -1,110 +0,0 @@ - - - - - SCHED_GET_PRIORITY_MAX(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

sched_get_priority_max, sched_get_priority_min - get priority -limits (REALTIME) -

-

Synopsis

-

#include <sched.h> -

-

int sched_get_priority_max(int policy);
int -sched_get_priority_min(int
policy); -

-

Description

-

The sched_get_priority_max and sched_get_priority_min -functions shall return the appropriate maximum or minimum, -respectively, for the scheduling policy specified by policy. -

-

The value of policy shall be one of the scheduling policy -values defined in <sched.h>. -

-

Return Value

-

If successful, the sched_get_priority_max and -sched_get_priority_min functions shall return the appropriate -maximum or minimum values, respectively. If unsuccessful, they shall -return a value of -1 and set errno to indicate the error. -

-

Errors

-

The sched_get_priority_max and sched_get_priority_min -functions shall fail if: -

-
-
EINVAL -
- The value of the policy parameter does not represent a - defined scheduling policy. -
-

-The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

None. -

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

sched_getscheduler(3) -, sched_setscheduler(3) -, the Base Definitions volume of IEEE Std 1003.1-2001, -<sched.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/sched_getscheduler.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/sched_getscheduler.html deleted file mode 100644 index 9acd5e7..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/sched_getscheduler.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - SCHED_GETSCHEDULER(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

sched_getscheduler - get scheduling policy (REALTIME) -

-

Synopsis

-

#include <sched.h> -

-

int sched_getscheduler(pid_t pid); -

-

Description

-

The sched_getscheduler function shall return the scheduling -policy of the process specified by pid. If the value of pid -is negative, the behavior of the sched_getscheduler function -is unspecified. -

-

The values that can be returned by sched_getscheduler are -defined in the <sched.h> header. -

-

PThreads4W only supports the SCHED_OTHER policy, -which is the only value that can be returned. However, checks on pid -and permissions are performed first so that the other useful side -effects of this routine are retained.

-

If a process specified by pid exists, and if the calling -process has permission, the scheduling policy shall be returned for -the process whose process ID is equal to pid. -

-

If pid is zero, the scheduling policy shall be returned for -the calling process. -

-

Return Value

-

Upon successful completion, the sched_getscheduler function -shall return the scheduling policy of the specified process. If -unsuccessful, the function shall return -1 and set errno to -indicate the error. -

-

Errors

-

The sched_getscheduler function shall fail if: -

-
-
EPERM -
- The requesting process does not have permission to determine the - scheduling policy of the specified process. -
- ESRCH -
- No process can be found corresponding to that specified by pid. -
-

-The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

None. -

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

sched_setscheduler(3) -, the Base Definitions volume of IEEE Std 1003.1-2001, -<sched.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/sched_setaffinity.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/sched_setaffinity.html deleted file mode 100644 index 279e4b0..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/sched_setaffinity.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - SCHED_SETAFFINITY(3) manual page - - - -

POSIX -Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

sched_setaffinity - set process CPU affinity

-

sched_getaffinity - get process CPU affinity

-

Synopsis

-

#include <sched.h> -

-

int sched_setaffinity(pid_t pid, -int cpusetsize, -const cpu_set_t *mask);

-

int sched_getaffinity(pid_t pid, -int cpusetsize, -cpu_set_t *mask);

-

Description

-

sched_setaffinity sets the CPU affinity mask of the process -whose ID is pid to the value specified by mask. If pid -is zero, then the calling process is used. The argument cpusetsize -is the length (in bytes) of the data pointed to by mask. -Normally this argument would be specified as sizeof(cpu_set_t).

-

If the process specified by pid is not currently running on -one of the CPUs specified in mask, then that process is -migrated to one of the CPUs specified in mask.

-

After a call to sched_setaffinity, the set of CPUs on which -the process will actually run is the intersection of the set -specified in the mask argument and the set of CPUs actually -present on the system.

-

sched_getaffinity writes the affinity mask of the process -whose ID is pid into the cpu_set_t structure pointed to by -mask. The cpusetsize argument specifies the size (in -bytes) of mask. If pid is zero, then the mask of the -calling process is returned.

-

PThreads4W currently ignores the cpusetsize -parameter for either function because cpu_set_t is a direct typeset -to the Windows affinity vector type DWORD_PTR.

-

Windows may require that the requesting process have permission to -set its own CPU affinity or that of another process.

-

Return Value

-

On success, sched_setaffinity and sched_getaffinity -return 0. On error, -1 is returned, and errno is set -appropriately.

-

Errors

-
-
EFAULT
-
-
- A supplied memory address was invalid.
-
-
- EINVAL
-
-
- The affinity bit mask mask contains no processors that are - currently physically on the system.
-
-
- EAGAIN
-
-
- The function did not succeed in changing or obtaining the CPU - affinity for some undetermined reason. Try again.
-
-
- EPERM
-
-
- The calling process does not have appropriate privileges.
-
-
- ESRCH -
-
-
- The process whose ID is pid could not be found.
-
-
-

-Application Usage

-

A process's CPU affinity mask determines the set of CPUs on which -it is eligible to run. On a multiprocessor system, setting the CPU -affinity mask can be used to obtain performance benefits. For -example, by dedicating one CPU to a particular process (i.e., setting -the affinity mask of that process to specify a single CPU, and -setting the affinity mask of all other processes to exclude that -CPU), it is possible to ensure maximum execution speed for that -process. Restricting a process to run on a single CPU also avoids the -performance cost caused by the cache invalidation that occurs when a -process ceases to execute on one CPU and then recommences execution -on a different CPU.

-

A CPU affinity mask is represented by the cpu_set_t structure, a -"CPU set", pointed to by mask. A set of macros for -manipulating CPU sets is described in cpu_set(3).

-

See Also

-

cpu_set(3), -pthread_setaffininty_np(3), -pthread_getaffinity_np(3)

-

Copyright

-

Most of this is taken from the Linux manual page.

-

Modified by Ross Johnson for use with PThreads4W.

-
-

Table of Contents

- -



-

- - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/sched_setscheduler.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/sched_setscheduler.html deleted file mode 100644 index 988287f..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/sched_setscheduler.html +++ /dev/null @@ -1,176 +0,0 @@ - - - - - SCHED_SETSCHEDULER(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

sched_setscheduler - set scheduling policy and parameters -(REALTIME) -

-

Synopsis

-

#include <sched.h> -

-

int sched_setscheduler(pid_t pid, int policy, -const struct sched_param *param); -

-

Description

-

The sched_setscheduler function shall set the scheduling -policy and scheduling parameters of the process specified by pid -to policy and the parameters specified in the sched_param -structure pointed to by param, respectively. The value of the -sched_priority member in the sched_param structure -shall be any integer within the inclusive priority range for the -scheduling policy specified by policy. If the value of pid -is negative, the behavior of the sched_setscheduler function -is unspecified. -

-

The possible values for the policy parameter are defined in -the <sched.h> header. -

-

PThreads4W only supports the SCHED_OTHER policy. -Any other value for policy will return failure with errno set -to ENOSYS. However, checks on pid and permissions are -performed first so that the other useful side effects of this routine -are retained.

-

If a process specified by pid exists, and if the calling -process has permission, the scheduling policy and scheduling -parameters shall be set for the process whose process ID is equal to -pid. -

-

If pid is zero, the scheduling policy and scheduling -parameters shall be set for the calling process. -

-

Implementations may require that the requesting process have -permission to set its own scheduling parameters or those of another -process. Additionally, implementation-defined restrictions may apply -as to the appropriate privileges required to set a process’ own -scheduling policy, or another process’ scheduling policy, to a -particular value. -

-

The sched_setscheduler function shall be considered -successful if it succeeds in setting the scheduling policy and -scheduling parameters of the process specified by pid to the -values specified by policy and the structure pointed to by -param, respectively. -

-

The effect of this function on individual threads is dependent on -the scheduling contention scope of the threads: -

-
-
* -
- For threads with system scheduling contention scope, these functions - shall have no effect on their scheduling. -
- * -
- For threads with process scheduling contention scope, the threads’ - scheduling policy and associated parameters shall not be affected. - However, the scheduling of these threads with respect to threads in - other processes may be dependent on the scheduling parameters of - their process, which are governed using these functions. -
-

-This function is not atomic with respect to other threads in the -process. Threads may continue to execute while this function call is -in the process of changing the scheduling policy and associated -scheduling parameters for the underlying kernel-scheduled entities -used by the process contention scope threads. -

-

Return Value

-

Upon successful completion, the function shall return the former -scheduling policy of the specified process. If the sched_setscheduler -function fails to complete successfully, the policy and scheduling -parameters shall remain unchanged, and the function shall return a -value of -1 and set errno to indicate the error. -

-

Errors

-

The sched_setscheduler function shall fail if: -

-
-
EINVAL -
- The value of the policy parameter is invalid, or one or more - of the parameters contained in param is outside the valid - range for the specified scheduling policy. -
- EPERM -
- The requesting process does not have permission to set either or - both of the scheduling parameters or the scheduling policy of the - specified process. -
- ESRCH -
- No process can be found corresponding to that specified by pid. -
-

-The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

None. -

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

sched_getscheduler(3) -, the Base Definitions volume of IEEE Std 1003.1-2001, -<sched.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-

Modified by Ross Johnson for use with Pthreads4W.

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/sched_yield.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/sched_yield.html deleted file mode 100644 index 1eed915..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/sched_yield.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - SCHED_YIELD(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

sched_yield - yield the processor -

-

Synopsis

-

#include <sched.h> -

-

int sched_yield(void); -

-

Description

-

The sched_yield function shall force the running thread to -relinquish the processor until it again becomes the head of its -thread list. It takes no arguments. -

-

Return Value

-

The sched_yield function shall return 0 if it completes -successfully; otherwise, it shall return a value of -1 and set errno -to indicate the error. -

-

Errors

-

No errors are defined. -

-

The following sections are informative. -

-

Examples

-

None. -

-

Application Usage

-

None. -

-

Rationale

-

None. -

-

Future Directions

-

None. -

-

See Also

-

The Base Definitions volume of IEEE Std 1003.1-2001, -<sched.h> -

-

Copyright

-

Portions of this text are reprinted and reproduced in electronic -form from IEEE Std 1003.1, 2003 Edition, Standard for Information -Technology -- Portable Operating System Interface (POSIX), The Open -Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the -Institute of Electrical and Electronics Engineers, Inc and The Open -Group. In the event of any discrepancy between this version and the -original IEEE and The Open Group Standard, the original IEEE and The -Open Group Standard is the referee document. The original Standard -can be obtained online at http://www.opengroup.org/unix/online.html -. -

-
-

Table of Contents

- - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/sem_init.html b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/sem_init.html deleted file mode 100644 index a856b45..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/manual/sem_init.html +++ /dev/null @@ -1,195 +0,0 @@ - - - - - SEM_INIT(3) manual page - - -

POSIX Threads for Windows – REFERENCE - Pthreads4W

-

Reference Index

-

Table of Contents

-

Name

-

sem_init, sem_wait, sem_trywait, sem_post, sem_getvalue, -sem_destroy - operations on semaphores -

-

Synopsis

-

#include <semaphore.h> -

-

int sem_init(sem_t *sem, int pshared, -unsigned int value); -

-

int sem_wait(sem_t * sem); -

-

int sem_timedwait(sem_t * sem, const struct -timespec *abstime); -

-

int sem_trywait(sem_t * sem); -

-

int sem_post(sem_t * sem); -

-

int sem_post_multiple(sem_t * sem, int -number); -

-

int sem_getvalue(sem_t * sem, int * sval); -

-

int sem_destroy(sem_t * sem); -

-

Description

-

Semaphores are counters for resources shared between threads. The -basic operations on semaphores are: increment the counter atomically, -and wait until the counter is non-null and decrement it atomically. -

-

sem_init initializes the semaphore object pointed to by -sem. The count associated with the semaphore is set initially -to value. The pshared argument indicates whether the -semaphore is local to the current process ( pshared is zero) -or is to be shared between several processes ( pshared is not -zero).

-

PThreads4W currently does not support process-shared -semaphores, thus sem_init always returns with error EPERM -if pshared is not zero. -

-

sem_wait atomically decrements sem's count if it is -greater than 0 and returns immediately or it suspends the calling -thread until it can resume following a call to sem_post or -sem_post_multiple.

-

sem_timedwait atomically decrements sem's count if -it is greater than 0 and returns immediately, or it suspends the -calling thread. If abstime time arrives before the thread can -resume following a call to sem_post or sem_post_multiple, -then sem_timedwait returns with a return code of -1 after -having set errno to ETIMEDOUT. If the call can return -without suspending then abstime is not checked.

-

sem_trywait atomically decrements sem's count if it -is greater than 0 and returns immediately, or it returns immediately -with a return code of -1 after having set errno to EAGAIN. -sem_trywait never blocks.

-

sem_post either releases one thread if there are any -waiting on sem, or it atomically increments sem's -count.

-

sem_post_multiple either releases multiple threads if there -are any waiting on sem and/or it atomically increases sem's -count. If there are currently n waiters, where n the -largest number less than or equal to number, then n -waiters are released and sem's count is incremented by number -minus n.

-

sem_getvalue stores in the location pointed to by sval -the current count of the semaphore sem. In the PThreads4W -implementation: if the value returned in sval is greater than -or equal to 0 it was the sem's count at some point during the -call to sem_getvalue. If the value returned in sval is -less than 0 then it's absolute value represents the number of threads -waiting on sem at some point during the call to sem_getvalue. -POSIX does not require an implementation of sem_getvalue -to return a value in sval that is less than 0, but if it does -then it's absolute value must represent the number of waiters.

-

sem_destroy destroys a semaphore object, freeing the -resources it might hold. No threads should be waiting on the -semaphore at the time sem_destroy is called.

-

Cancellation

-

sem_wait and sem_timedwait are cancellation points. -

-

Async-signal Safety

-

These routines are not async-cancel safe.

-

Return Value

-

All semaphore functions return 0 on success, or -1 on error in -which case they write an error code in errno. -

-

Errors

-

The sem_init function sets errno to the following -codes on error: -

-
-
-
EINVAL -
- value exceeds the maximal counter value SEM_VALUE_MAX -
- ENOSYS -
-
-
-pshared is not zero -
-

The sem_timedwait function sets errno to the -following error code on error: -

-
-
-
ETIMEDOUT -
-
-
-if abstime arrives before the waiting thread can resume -following a call to sem_post or sem_post_multiple. -
-

The sem_trywait function sets errno to the following -error code on error: -

-
-
-
EAGAIN -
-
-
-if the semaphore count is currently 0 -
-

The sem_post and sem_post_multiple functions set -errno to the following error code on error: -

-
-
-
ERANGE -
- if after incrementing, the semaphore count would exceed - SEM_VALUE_MAX (the semaphore count is left unchanged in this - case) -
-
-

-The sem_destroy function sets errno to the following -error code on error: -

-
-
-
EBUSY -
- if some threads are currently blocked waiting on the semaphore. -
-
-

-Author

-

Xavier Leroy <Xavier.Leroy@inria.fr> -

-

Modified by Ross Johnson for use with Pthreads4W.

-

See Also

-

pthread_mutex_init(3) -, pthread_cond_init(3) , -pthread_cancel(3) . -

-
-

Table of Contents

- - - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/need_errno.h b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/need_errno.h deleted file mode 100644 index fc79f2e..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/need_errno.h +++ /dev/null @@ -1,166 +0,0 @@ -/*** -* errno.h - system wide error numbers (set by system calls) -* -* Copyright (c) 1985-1997, Microsoft Corporation. All rights reserved. -* -* Purpose: -* This file defines the system-wide error numbers (set by -* system calls). Conforms to the XENIX standard. Extended -* for compatibility with Uniforum standard. -* [System V] -* -* [Public] -* -****/ - -#if _MSC_VER > 1000 -#pragma once -#endif - -#if !defined(_INC_ERRNO) -#define _INC_ERRNO - -#if !defined(_WIN32) -#error ERROR: Only Win32 targets supported! -#endif - -//#include - -#if defined(__cplusplus) -extern "C" { -#endif - - - -/* Define _CRTIMP */ - -#ifndef _CRTIMP -#if defined(_DLL) -#define _CRTIMP __declspec(dllimport) -#else /* ndef _DLL */ -#define _CRTIMP -#endif /* _DLL */ -#endif /* _CRTIMP */ - - -/* Define __cdecl for non-Microsoft compilers */ - -#if ( !defined(_MSC_VER) && !defined(__cdecl) ) -#define __cdecl -#endif - -/* Define _CRTAPI1 (for compatibility with the NT SDK) */ - -#if !defined(_CRTAPI1) -#if _MSC_VER >= 800 && _M_IX86 >= 300 -#define _CRTAPI1 __cdecl -#else -#define _CRTAPI1 -#endif -#endif - -#if defined(__PTW32_STATIC_LIB) && defined(_MSC_VER) && _MSC_VER >= 1400 -# define __PTW32_STATIC_TLSLIB -#endif - -#if defined (__PTW32_STATIC_LIB) || defined (__PTW32_STATIC_TLSLIB) -# define __PTW32_DLLPORT -#elif defined (__PTW32_BUILD) -# define __PTW32_DLLPORT __declspec (dllexport) -# else -# define __PTW32_DLLPORT __declspec (dllimport) -# endif - -/* declare reference to errno */ - -#if (defined(_MT) || defined(_MD) || defined(_DLL)) && !defined(_MAC) -__PTW32_DLLPORT int * __cdecl _errno(void); -#define errno (*_errno()) -#else /* ndef _MT && ndef _MD && ndef _DLL */ -_CRTIMP extern int errno; -#endif /* _MT || _MD || _DLL */ - -/* Error Codes */ - -#define EPERM 1 -#define ENOENT 2 -#define ESRCH 3 -#define EINTR 4 -#define EIO 5 -#define ENXIO 6 -#define E2BIG 7 -#define ENOEXEC 8 -#define EBADF 9 -#define ECHILD 10 -#define EAGAIN 11 -#define ENOMEM 12 -#define EACCES 13 -#define EFAULT 14 -#define EBUSY 16 -#define EEXIST 17 -#define EXDEV 18 -#define ENODEV 19 -#define ENOTDIR 20 -#define EISDIR 21 -#define EINVAL 22 -#define ENFILE 23 -#define EMFILE 24 -#define ENOTTY 25 -#define EFBIG 27 -#define ENOSPC 28 -#define ESPIPE 29 -#define EROFS 30 -#define EMLINK 31 -#define EPIPE 32 -#define EDOM 33 -#define ERANGE 34 -#define EDEADLK 36 - -/* defined differently in winsock.h on WinCE - * We don't use this value. - */ -//#if !defined(ENAMETOOLONG) -//#define ENAMETOOLONG 38 -//#endif - -#define ENOLCK 39 -#define ENOSYS 40 - -/* defined differently in winsock.h on WinCE - * We don't use this value. - */ -//#if !defined(ENOTEMPTY) -//#define ENOTEMPTY 41 -//#endif - -#define EILSEQ 42 - -/* - * POSIX 2008 - robust mutexes. - */ -#if __PTW32_VERSION_MAJOR > 2 -# if !defined(EOWNERDEAD) -# define EOWNERDEAD 1000 -# endif -# if !defined(ENOTRECOVERABLE) -# define ENOTRECOVERABLE 1001 -# endif -#else -# if !defined(EOWNERDEAD) -# define EOWNERDEAD 42 -# endif -# if !defined(ENOTRECOVERABLE) -# define ENOTRECOVERABLE 43 -# endif -#endif - -/* - * Support EDEADLOCK for compatibility with older MS-C versions. - */ -#define EDEADLOCK EDEADLK - -#if defined(__cplusplus) -} -#endif - -#endif /* _INC_ERRNO */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread.c deleted file mode 100644 index 61828f3..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread.c +++ /dev/null @@ -1,190 +0,0 @@ -/* - * pthread.c - * - * Description: - * This translation unit agregates pthreads-win32 translation units. - * It is used for inline optimisation of the library, - * maximising for speed at the expense of size. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -/* The following are ordered for inlining */ - -#include "ptw32_MCS_lock.c" -#include "ptw32_is_attr.c" -#include "ptw32_processInitialize.c" -#include "ptw32_processTerminate.c" -#include "ptw32_threadStart.c" -#include "ptw32_threadDestroy.c" -#include "ptw32_tkAssocCreate.c" -#include "ptw32_tkAssocDestroy.c" -#include "ptw32_callUserDestroyRoutines.c" -#include "ptw32_semwait.c" -#include "ptw32_timespec.c" -#include "ptw32_throw.c" -#include "ptw32_getprocessors.c" -#include "ptw32_calloc.c" -#include "ptw32_new.c" -#include "ptw32_reuse.c" -#include "ptw32_relmillisecs.c" -#include "ptw32_cond_check_need_init.c" -#include "ptw32_mutex_check_need_init.c" -#include "ptw32_rwlock_check_need_init.c" -#include "ptw32_rwlock_cancelwrwait.c" -#include "ptw32_spinlock_check_need_init.c" -#include "pthread_attr_init.c" -#include "pthread_attr_destroy.c" -#include "pthread_attr_getaffinity_np.c" -#include "pthread_attr_setaffinity_np.c" -#include "pthread_attr_getdetachstate.c" -#include "pthread_attr_setdetachstate.c" -#include "pthread_attr_getname_np.c" -#include "pthread_attr_setname_np.c" -#include "pthread_attr_getscope.c" -#include "pthread_attr_setscope.c" -#include "pthread_attr_getstackaddr.c" -#include "pthread_attr_setstackaddr.c" -#include "pthread_attr_getstacksize.c" -#include "pthread_attr_setstacksize.c" -#include "pthread_barrier_init.c" -#include "pthread_barrier_destroy.c" -#include "pthread_barrier_wait.c" -#include "pthread_barrierattr_init.c" -#include "pthread_barrierattr_destroy.c" -#include "pthread_barrierattr_setpshared.c" -#include "pthread_barrierattr_getpshared.c" -#include "pthread_setcancelstate.c" -#include "pthread_setcanceltype.c" -#include "pthread_testcancel.c" -#include "pthread_cancel.c" -#include "pthread_condattr_destroy.c" -#include "pthread_condattr_getpshared.c" -#include "pthread_condattr_init.c" -#include "pthread_condattr_setpshared.c" -#include "pthread_cond_destroy.c" -#include "pthread_cond_init.c" -#include "pthread_cond_signal.c" -#include "pthread_cond_wait.c" -#include "create.c" -#include "cleanup.c" -#include "dll.c" -#include "errno.c" -#include "pthread_exit.c" -#include "global.c" -#include "pthread_equal.c" -#include "pthread_getconcurrency.c" -#include "pthread_kill.c" -#include "pthread_once.c" -#include "pthread_self.c" -#include "pthread_setconcurrency.c" -#include "w32_CancelableWait.c" -#include "pthread_mutex_init.c" -#include "pthread_mutex_destroy.c" -#include "pthread_mutexattr_init.c" -#include "pthread_mutexattr_destroy.c" -#include "pthread_mutexattr_getpshared.c" -#include "pthread_mutexattr_setpshared.c" -#include "pthread_mutexattr_settype.c" -#include "pthread_mutexattr_gettype.c" -#include "pthread_mutexattr_setrobust.c" -#include "pthread_mutexattr_getrobust.c" -#include "pthread_mutex_lock.c" -#include "pthread_mutex_timedlock.c" -#include "pthread_mutex_unlock.c" -#include "pthread_mutex_trylock.c" -#include "pthread_mutex_consistent.c" -#include "pthread_mutexattr_setkind_np.c" -#include "pthread_mutexattr_getkind_np.c" -#include "pthread_getw32threadhandle_np.c" -#include "pthread_getunique_np.c" -#include "pthread_timedjoin_np.c" -#include "pthread_tryjoin_np.c" -#include "pthread_setaffinity.c" -#include "pthread_delay_np.c" -#include "pthread_num_processors_np.c" -#include "pthread_win32_attach_detach_np.c" -#include "pthread_timechange_handler_np.c" -#include "pthread_rwlock_init.c" -#include "pthread_rwlock_destroy.c" -#include "pthread_rwlockattr_init.c" -#include "pthread_rwlockattr_destroy.c" -#include "pthread_rwlockattr_getpshared.c" -#include "pthread_rwlockattr_setpshared.c" -#include "pthread_rwlock_rdlock.c" -#include "pthread_rwlock_timedrdlock.c" -#include "pthread_rwlock_wrlock.c" -#include "pthread_rwlock_timedwrlock.c" -#include "pthread_rwlock_unlock.c" -#include "pthread_rwlock_tryrdlock.c" -#include "pthread_rwlock_trywrlock.c" -#include "pthread_attr_setschedpolicy.c" -#include "pthread_attr_getschedpolicy.c" -#include "pthread_attr_setschedparam.c" -#include "pthread_attr_getschedparam.c" -#include "pthread_attr_setinheritsched.c" -#include "pthread_attr_getinheritsched.c" -#include "pthread_setschedparam.c" -#include "pthread_getschedparam.c" -#include "sched_get_priority_max.c" -#include "sched_get_priority_min.c" -#include "sched_setscheduler.c" -#include "sched_getscheduler.c" -#include "sched_yield.c" -#include "sched_setaffinity.c" -#include "sem_init.c" -#include "sem_destroy.c" -#include "sem_trywait.c" -#include "sem_timedwait.c" -#include "sem_wait.c" -#include "sem_post.c" -#include "sem_post_multiple.c" -#include "sem_getvalue.c" -#include "sem_open.c" -#include "sem_close.c" -#include "sem_unlink.c" -#include "pthread_spin_init.c" -#include "pthread_spin_destroy.c" -#include "pthread_spin_lock.c" -#include "pthread_spin_unlock.c" -#include "pthread_spin_trylock.c" -#include "pthread_detach.c" -#include "pthread_join.c" -#include "pthread_key_create.c" -#include "pthread_key_delete.c" -#include "pthread_getname_np.c" -#include "pthread_setname_np.c" -#include "pthread_setspecific.c" -#include "pthread_getspecific.c" diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread.h b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread.h deleted file mode 100644 index f35a39b..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread.h +++ /dev/null @@ -1,1228 +0,0 @@ -/* This is an implementation of the threads API of the Single Unix Specification. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#if !defined( PTHREAD_H ) -#define PTHREAD_H - -/* There are three implementations of cancel cleanup. - * Note that pthread.h is included in both application - * compilation units and also internally for the library. - * The code here and within the library aims to work - * for all reasonable combinations of environments. - * - * The three implementations are: - * - * WIN32 SEH - * C - * C++ - * - * Please note that exiting a push/pop block via - * "return", "exit", "break", or "continue" will - * lead to different behaviour amongst applications - * depending upon whether the library was built - * using SEH, C++, or C. For example, a library built - * with SEH will call the cleanup routine, while both - * C++ and C built versions will not. - */ - -/* - * Define defaults for cleanup code. - * Note: Unless the build explicitly defines one of the following, then - * we default to standard C style cleanup. This style uses setjmp/longjmp - * in the cancellation and thread exit implementations and therefore won't - * do stack unwinding if linked to applications that have it (e.g. - * C++ apps). This is currently consistent with most/all commercial Unix - * POSIX threads implementations. - */ -#if !defined( __PTW32_CLEANUP_SEH ) && !defined( __PTW32_CLEANUP_CXX ) && !defined( __PTW32_CLEANUP_C ) -# define __PTW32_CLEANUP_C -#endif - -#if defined( __PTW32_CLEANUP_SEH ) && ( !defined( _MSC_VER ) && !defined (__PTW32_RC_MSC)) -#error ERROR [__FILE__, line __LINE__]: SEH is not supported for this compiler. -#endif - -#include <_ptw32.h> - -/* - * Stop here if we are being included by the resource compiler. - */ -#if !defined(RC_INVOKED) - -#undef __PTW32_LEVEL -#undef __PTW32_LEVEL_MAX -#define __PTW32_LEVEL_MAX 3 - -#if _POSIX_C_SOURCE >= 200112L /* POSIX.1-2001 and later */ -# define __PTW32_LEVEL __PTW32_LEVEL_MAX /* include everything */ - -#elif defined INCLUDE_NP /* earlier than POSIX.1-2001, but... */ -# define __PTW32_LEVEL 2 /* include non-portable extensions */ - -#elif _POSIX_C_SOURCE >= 199309L /* POSIX.1-1993 */ -# define __PTW32_LEVEL 1 /* include 1b, 1c, and 1d */ - -#elif defined _POSIX_SOURCE /* early POSIX */ -# define __PTW32_LEVEL 0 /* minimal support */ - -#else /* unspecified support level */ -# define __PTW32_LEVEL __PTW32_LEVEL_MAX /* include everything anyway */ -#endif - -/* - * ------------------------------------------------------------- - * - * - * Module: pthread.h - * - * Purpose: - * Provides an implementation of PThreads based upon the - * standard: - * - * POSIX 1003.1-2001 - * and - * The Single Unix Specification version 3 - * - * (these two are equivalent) - * - * in order to enhance code portability between Windows, - * various commercial Unix implementations, and Linux. - * - * See the ANNOUNCE file for a full list of conforming - * routines and defined constants, and a list of missing - * routines and constants not defined in this implementation. - * - * Authors: - * There have been many contributors to this library. - * The initial implementation was contributed by - * John Bossom, and several others have provided major - * sections or revisions of parts of the implementation. - * Often significant effort has been contributed to - * find and fix important bugs and other problems to - * improve the reliability of the library, which sometimes - * is not reflected in the amount of code which changed as - * result. - * As much as possible, the contributors are acknowledged - * in the ChangeLog file in the source code distribution - * where their changes are noted in detail. - * - * Contributors are listed in the CONTRIBUTORS file. - * - * As usual, all bouquets go to the contributors, and all - * brickbats go to the project maintainer. - * - * Maintainer: - * The code base for this project is coordinated and - * eventually pre-tested, packaged, and made available by - * - * Ross Johnson - * - * QA Testers: - * Ultimately, the library is tested in the real world by - * a host of competent and demanding scientists and - * engineers who report bugs and/or provide solutions - * which are then fixed or incorporated into subsequent - * versions of the library. Each time a bug is fixed, a - * test case is written to prove the fix and ensure - * that later changes to the code don't reintroduce the - * same error. The number of test cases is slowly growing - * and therefore so is the code reliability. - * - * Compliance: - * See the file ANNOUNCE for the list of implemented - * and not-implemented routines and defined options. - * Of course, these are all defined is this file as well. - * - * Web site: - * The source code and other information about this library - * are available from - * - * https://sourceforge.net/projects/pthreads4w/ - * - * ------------------------------------------------------------- - */ -enum -{ /* Boolean values to make us independent of system includes. */ - __PTW32_FALSE = 0, - __PTW32_TRUE = (! __PTW32_FALSE) -}; - -#include -#include - -/* - * ------------------------------------------------------------- - * - * POSIX 1003.1-2001 Options - * ========================= - * - * Options are normally set in , which is not provided - * with pthreads-win32. - * - * For conformance with the Single Unix Specification (version 3), all of the - * options below are defined, and have a value of either -1 (not supported) - * or yyyymm[dd]L (supported). - * - * These options can neither be left undefined nor have a value of 0, because - * either indicates that sysconf(), which is not implemented, may be used at - * runtime to check the status of the option. - * - * _POSIX_THREADS (== 20080912L) - * If == 20080912L, you can use threads - * - * _POSIX_THREAD_ATTR_STACKSIZE (== 200809L) - * If == 200809L, you can control the size of a thread's - * stack - * pthread_attr_getstacksize - * pthread_attr_setstacksize - * - * _POSIX_THREAD_ATTR_STACKADDR (== -1) - * If == 200809L, you can allocate and control a thread's - * stack. If not supported, the following functions - * will return ENOSYS, indicating they are not - * supported: - * pthread_attr_getstackaddr - * pthread_attr_setstackaddr - * - * _POSIX_THREAD_PRIORITY_SCHEDULING (== -1) - * If == 200112L, you can use realtime scheduling. - * This option indicates that the behaviour of some - * implemented functions conforms to the additional TPS - * requirements in the standard. E.g. rwlocks favour - * writers over readers when threads have equal priority. - * - * _POSIX_THREAD_PRIO_INHERIT (== -1) - * If == 200809L, you can create priority inheritance - * mutexes. - * pthread_mutexattr_getprotocol + - * pthread_mutexattr_setprotocol + - * - * _POSIX_THREAD_PRIO_PROTECT (== -1) - * If == 200809L, you can create priority ceiling mutexes - * Indicates the availability of: - * pthread_mutex_getprioceiling - * pthread_mutex_setprioceiling - * pthread_mutexattr_getprioceiling - * pthread_mutexattr_getprotocol + - * pthread_mutexattr_setprioceiling - * pthread_mutexattr_setprotocol + - * - * _POSIX_THREAD_PROCESS_SHARED (== -1) - * If set, you can create mutexes and condition - * variables that can be shared with another - * process.If set, indicates the availability - * of: - * pthread_mutexattr_getpshared - * pthread_mutexattr_setpshared - * pthread_condattr_getpshared - * pthread_condattr_setpshared - * - * _POSIX_THREAD_SAFE_FUNCTIONS (== 200809L) - * If == 200809L you can use the special *_r library - * functions that provide thread-safe behaviour - * - * _POSIX_READER_WRITER_LOCKS (== 200809L) - * If == 200809L, you can use read/write locks - * - * _POSIX_SPIN_LOCKS (== 200809L) - * If == 200809L, you can use spin locks - * - * _POSIX_BARRIERS (== 200809L) - * If == 200809L, you can use barriers - * - * _POSIX_ROBUST_MUTEXES (== 200809L) - * If == 200809L, you can use robust mutexes - * Officially this should also imply - * _POSIX_THREAD_PROCESS_SHARED != -1 however - * not here yet. - * - * ------------------------------------------------------------- - */ - -/* - * POSIX Options - */ -#undef _POSIX_THREADS -#define _POSIX_THREADS 200809L - -#undef _POSIX_READER_WRITER_LOCKS -#define _POSIX_READER_WRITER_LOCKS 200809L - -#undef _POSIX_SPIN_LOCKS -#define _POSIX_SPIN_LOCKS 200809L - -#undef _POSIX_BARRIERS -#define _POSIX_BARRIERS 200809L - -#undef _POSIX_THREAD_SAFE_FUNCTIONS -#define _POSIX_THREAD_SAFE_FUNCTIONS 200809L - -#undef _POSIX_THREAD_ATTR_STACKSIZE -#define _POSIX_THREAD_ATTR_STACKSIZE 200809L - -#undef _POSIX_ROBUST_MUTEXES -#define _POSIX_ROBUST_MUTEXES 200809L - -/* - * The following options are not supported - */ -#undef _POSIX_THREAD_ATTR_STACKADDR -#define _POSIX_THREAD_ATTR_STACKADDR -1 - -#undef _POSIX_THREAD_PRIO_INHERIT -#define _POSIX_THREAD_PRIO_INHERIT -1 - -#undef _POSIX_THREAD_PRIO_PROTECT -#define _POSIX_THREAD_PRIO_PROTECT -1 - -/* TPS is not fully supported. */ -#undef _POSIX_THREAD_PRIORITY_SCHEDULING -#define _POSIX_THREAD_PRIORITY_SCHEDULING -1 - -#undef _POSIX_THREAD_PROCESS_SHARED -#define _POSIX_THREAD_PROCESS_SHARED -1 - - -/* - * POSIX 1003.1-2001 Limits - * =========================== - * - * These limits are normally set in , which is not provided with - * pthreads-win32. - * - * PTHREAD_DESTRUCTOR_ITERATIONS - * Maximum number of attempts to destroy - * a thread's thread-specific data on - * termination (must be at least 4) - * - * PTHREAD_KEYS_MAX - * Maximum number of thread-specific data keys - * available per process (must be at least 128) - * - * PTHREAD_STACK_MIN - * Minimum supported stack size for a thread - * - * PTHREAD_THREADS_MAX - * Maximum number of threads supported per - * process (must be at least 64). - * - * SEM_NSEMS_MAX - * The maximum number of semaphores a process can have. - * (must be at least 256) - * - * SEM_VALUE_MAX - * The maximum value a semaphore can have. - * (must be at least 32767) - * - */ -#undef _POSIX_THREAD_DESTRUCTOR_ITERATIONS -#define _POSIX_THREAD_DESTRUCTOR_ITERATIONS 4 - -#undef PTHREAD_DESTRUCTOR_ITERATIONS -#define PTHREAD_DESTRUCTOR_ITERATIONS _POSIX_THREAD_DESTRUCTOR_ITERATIONS - -#undef _POSIX_THREAD_KEYS_MAX -#define _POSIX_THREAD_KEYS_MAX 128 - -#undef PTHREAD_KEYS_MAX -#define PTHREAD_KEYS_MAX _POSIX_THREAD_KEYS_MAX - -#undef PTHREAD_STACK_MIN -#define PTHREAD_STACK_MIN 0 - -#undef _POSIX_THREAD_THREADS_MAX -#define _POSIX_THREAD_THREADS_MAX 64 - -/* Arbitrary value */ -#undef PTHREAD_THREADS_MAX -#define PTHREAD_THREADS_MAX 2019 - -#undef _POSIX_SEM_NSEMS_MAX -#define _POSIX_SEM_NSEMS_MAX 256 - -/* Arbitrary value */ -#undef SEM_NSEMS_MAX -#define SEM_NSEMS_MAX 1024 - -#undef _POSIX_SEM_VALUE_MAX -#define _POSIX_SEM_VALUE_MAX 32767 - -#undef SEM_VALUE_MAX -#define SEM_VALUE_MAX INT_MAX - - -#if defined(_UWIN) && __PTW32_LEVEL >= __PTW32_LEVEL_MAX -# include -#else -/* Generic handle type - intended to provide the lifetime-uniqueness that - * a simple pointer can't. It should scale for either - * 32 or 64 bit systems. - * - * The constraint with this approach is that applications must - * strictly comply with POSIX, e.g. not assume scalar type, only - * compare pthread_t using the API function pthread_equal(), etc. - * - * Non-conforming applications could use the element 'p' to compare, - * e.g. for sorting, but it will be up to the application to determine - * if handles are live or dead, or resurrected for an entirely - * new/different thread. I.e. the thread is valid iff - * x == p->ptHandle.x - */ -typedef struct -{ void * p; /* Pointer to actual object */ -#if __PTW32_VERSION_MAJOR > 2 - size_t x; /* Extra information - reuse count etc */ -#else - unsigned int x; /* Extra information - reuse count etc */ -#endif -} __ptw32_handle_t; - -typedef __ptw32_handle_t pthread_t; -typedef struct pthread_attr_t_ * pthread_attr_t; -typedef struct pthread_once_t_ pthread_once_t; -typedef struct pthread_key_t_ * pthread_key_t; -typedef struct pthread_mutex_t_ * pthread_mutex_t; -typedef struct pthread_mutexattr_t_ * pthread_mutexattr_t; -typedef struct pthread_cond_t_ * pthread_cond_t; -typedef struct pthread_condattr_t_ * pthread_condattr_t; -#endif - -typedef struct pthread_rwlock_t_ * pthread_rwlock_t; -typedef struct pthread_rwlockattr_t_ * pthread_rwlockattr_t; -typedef struct pthread_spinlock_t_ * pthread_spinlock_t; -typedef struct pthread_barrier_t_ * pthread_barrier_t; -typedef struct pthread_barrierattr_t_ * pthread_barrierattr_t; - -/* - * ==================== - * ==================== - * POSIX Threads - * ==================== - * ==================== - */ - -enum -{ /* pthread_attr_{get,set}detachstate - */ - PTHREAD_CREATE_JOINABLE = 0, /* Default */ - PTHREAD_CREATE_DETACHED = 1, - /* - * pthread_attr_{get,set}inheritsched - */ - PTHREAD_INHERIT_SCHED = 0, - PTHREAD_EXPLICIT_SCHED = 1, /* Default */ - /* - * pthread_{get,set}scope - */ - PTHREAD_SCOPE_PROCESS = 0, - PTHREAD_SCOPE_SYSTEM = 1, /* Default */ - /* - * pthread_setcancelstate paramters - */ - PTHREAD_CANCEL_ENABLE = 0, /* Default */ - PTHREAD_CANCEL_DISABLE = 1, - /* - * pthread_setcanceltype parameters - */ - PTHREAD_CANCEL_ASYNCHRONOUS = 0, - PTHREAD_CANCEL_DEFERRED = 1, /* Default */ - /* - * pthread_mutexattr_{get,set}pshared - * pthread_condattr_{get,set}pshared - */ - PTHREAD_PROCESS_PRIVATE = 0, - PTHREAD_PROCESS_SHARED = 1, - /* - * pthread_mutexattr_{get,set}robust - */ - PTHREAD_MUTEX_STALLED = 0, /* Default */ - PTHREAD_MUTEX_ROBUST = 1, - /* - * pthread_barrier_wait - */ - PTHREAD_BARRIER_SERIAL_THREAD = -1 -}; - -/* - * ==================== - * ==================== - * cancellation - * ==================== - * ==================== - */ -#define PTHREAD_CANCELED ((void *)(size_t) -1) - - -/* - * ==================== - * ==================== - * Once Key - * ==================== - * ==================== - */ -#if __PTW32_VERSION_MAJOR > 2 - -#define PTHREAD_ONCE_INIT { 0, __PTW32_FALSE } - -struct pthread_once_t_ -{ - void * lock; /* MCS lock */ - int done; /* indicates if user function has been executed */ -}; - -#else - -#define PTHREAD_ONCE_INIT { __PTW32_FALSE, 0, 0, 0 } - -struct pthread_once_t_ -{ - int done; /* indicates if user function has been executed */ - void * lock; /* MCS lock */ - int reserved1; - int reserved2; -}; - -#endif - - -/* - * ==================== - * ==================== - * Object initialisers - * ==================== - * ==================== - */ -#define PTHREAD_MUTEX_INITIALIZER ((pthread_mutex_t)(size_t) -1) -#define PTHREAD_RECURSIVE_MUTEX_INITIALIZER ((pthread_mutex_t)(size_t) -2) -#define PTHREAD_ERRORCHECK_MUTEX_INITIALIZER ((pthread_mutex_t)(size_t) -3) - -/* - * Compatibility with LinuxThreads - */ -#define PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP PTHREAD_RECURSIVE_MUTEX_INITIALIZER -#define PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP PTHREAD_ERRORCHECK_MUTEX_INITIALIZER - -#define PTHREAD_COND_INITIALIZER ((pthread_cond_t)(size_t) -1) - -#define PTHREAD_RWLOCK_INITIALIZER ((pthread_rwlock_t)(size_t) -1) - -#define PTHREAD_SPINLOCK_INITIALIZER ((pthread_spinlock_t)(size_t) -1) - - -/* - * Mutex types. - */ -enum -{ - /* Compatibility with LinuxThreads */ - PTHREAD_MUTEX_FAST_NP, - PTHREAD_MUTEX_RECURSIVE_NP, - PTHREAD_MUTEX_ERRORCHECK_NP, - PTHREAD_MUTEX_TIMED_NP = PTHREAD_MUTEX_FAST_NP, - PTHREAD_MUTEX_ADAPTIVE_NP = PTHREAD_MUTEX_FAST_NP, - /* For compatibility with POSIX */ - PTHREAD_MUTEX_NORMAL = PTHREAD_MUTEX_FAST_NP, - PTHREAD_MUTEX_RECURSIVE = PTHREAD_MUTEX_RECURSIVE_NP, - PTHREAD_MUTEX_ERRORCHECK = PTHREAD_MUTEX_ERRORCHECK_NP, - PTHREAD_MUTEX_DEFAULT = PTHREAD_MUTEX_NORMAL -}; - - -typedef struct __ptw32_cleanup_t __ptw32_cleanup_t; - -#if defined(_MSC_VER) -/* Disable MSVC 'anachronism used' warning */ -#pragma warning( disable : 4229 ) -#endif - -typedef void (* __PTW32_CDECL __ptw32_cleanup_callback_t)(void *); - -#if defined(_MSC_VER) -#pragma warning( default : 4229 ) -#endif - -struct __ptw32_cleanup_t -{ - __ptw32_cleanup_callback_t routine; - void *arg; - struct __ptw32_cleanup_t *prev; -}; - -#if defined(__PTW32_CLEANUP_SEH) - /* - * WIN32 SEH version of cancel cleanup. - */ - -#define pthread_cleanup_push( _rout, _arg ) \ - { \ - __ptw32_cleanup_t _cleanup; \ - \ - _cleanup.routine = (__ptw32_cleanup_callback_t)(_rout); \ - _cleanup.arg = (_arg); \ - __try \ - { \ - -#define pthread_cleanup_pop( _execute ) \ - } \ - __finally \ - { \ - if( _execute || AbnormalTermination()) \ - { \ - (*(_cleanup.routine))( _cleanup.arg ); \ - } \ - } \ - } - -#else /* __PTW32_CLEANUP_SEH */ - -#if defined(__PTW32_CLEANUP_C) - - /* - * C implementation of PThreads cancel cleanup - */ - -#define pthread_cleanup_push( _rout, _arg ) \ - { \ - __ptw32_cleanup_t _cleanup; \ - \ - __ptw32_push_cleanup( &_cleanup, (__ptw32_cleanup_callback_t) (_rout), (_arg) ); \ - -#define pthread_cleanup_pop( _execute ) \ - (void) __ptw32_pop_cleanup( _execute ); \ - } - -#else /* __PTW32_CLEANUP_C */ - -#if defined(__PTW32_CLEANUP_CXX) - - /* - * C++ version of cancel cleanup. - * - John E. Bossom. - */ - - class PThreadCleanup { - /* - * PThreadCleanup - * - * Purpose - * This class is a C++ helper class that is - * used to implement pthread_cleanup_push/ - * pthread_cleanup_pop. - * The destructor of this class automatically - * pops the pushed cleanup routine regardless - * of how the code exits the scope - * (i.e. such as by an exception) - */ - __ptw32_cleanup_callback_t cleanUpRout; - void * obj; - int executeIt; - - public: - PThreadCleanup() : - cleanUpRout( 0 ), - obj( 0 ), - executeIt( 0 ) - /* - * No cleanup performed - */ - { - } - - PThreadCleanup( - __ptw32_cleanup_callback_t routine, - void * arg ) : - cleanUpRout( routine ), - obj( arg ), - executeIt( 1 ) - /* - * Registers a cleanup routine for 'arg' - */ - { - } - - ~PThreadCleanup() - { - if ( executeIt && ((void *) cleanUpRout != (void *) 0) ) - { - (void) (*cleanUpRout)( obj ); - } - } - - void execute( int exec ) - { - executeIt = exec; - } - }; - - /* - * C++ implementation of PThreads cancel cleanup; - * This implementation takes advantage of a helper - * class who's destructor automatically calls the - * cleanup routine if we exit our scope weirdly - */ -#define pthread_cleanup_push( _rout, _arg ) \ - { \ - PThreadCleanup cleanup((__ptw32_cleanup_callback_t)(_rout), \ - (void *) (_arg) ); - -#define pthread_cleanup_pop( _execute ) \ - cleanup.execute( _execute ); \ - } - -#else - -#error ERROR [__FILE__, line __LINE__]: Cleanup type undefined. - -#endif /* __PTW32_CLEANUP_CXX */ - -#endif /* __PTW32_CLEANUP_C */ - -#endif /* __PTW32_CLEANUP_SEH */ - - -/* - * =============== - * =============== - * Methods - * =============== - * =============== - */ - -__PTW32_BEGIN_C_DECLS - -/* - * PThread Attribute Functions - */ -__PTW32_DLLPORT int __PTW32_CDECL pthread_attr_init (pthread_attr_t * attr); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_attr_destroy (pthread_attr_t * attr); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_attr_getaffinity_np (const pthread_attr_t * attr, - size_t cpusetsize, - cpu_set_t * cpuset); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_attr_getdetachstate (const pthread_attr_t * attr, - int *detachstate); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_attr_getstackaddr (const pthread_attr_t * attr, - void **stackaddr); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_attr_getstacksize (const pthread_attr_t * attr, - size_t * stacksize); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_attr_setaffinity_np (pthread_attr_t * attr, - size_t cpusetsize, - const cpu_set_t * cpuset); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_attr_setdetachstate (pthread_attr_t * attr, - int detachstate); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_attr_setstackaddr (pthread_attr_t * attr, - void *stackaddr); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_attr_setstacksize (pthread_attr_t * attr, - size_t stacksize); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_attr_getschedparam (const pthread_attr_t *attr, - struct sched_param *param); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_attr_setschedparam (pthread_attr_t *attr, - const struct sched_param *param); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_attr_setschedpolicy (pthread_attr_t *, - int); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_attr_getschedpolicy (const pthread_attr_t *, - int *); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_attr_setinheritsched(pthread_attr_t * attr, - int inheritsched); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_attr_getinheritsched(const pthread_attr_t * attr, - int * inheritsched); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_attr_setscope (pthread_attr_t *, - int); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_attr_getscope (const pthread_attr_t *, - int *); - -/* - * PThread Functions - */ -__PTW32_DLLPORT int __PTW32_CDECL pthread_create (pthread_t * tid, - const pthread_attr_t * attr, - void * (__PTW32_CDECL *start) (void *), - void *arg); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_detach (pthread_t tid); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_equal (pthread_t t1, - pthread_t t2); - -__PTW32_DLLPORT void __PTW32_CDECL pthread_exit (void *value_ptr); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_join (pthread_t thread, - void **value_ptr); - -__PTW32_DLLPORT pthread_t __PTW32_CDECL pthread_self (void); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_cancel (pthread_t thread); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_setcancelstate (int state, - int *oldstate); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_setcanceltype (int type, - int *oldtype); - -__PTW32_DLLPORT void __PTW32_CDECL pthread_testcancel (void); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_once (pthread_once_t * once_control, - void (__PTW32_CDECL *init_routine) (void)); - -#if __PTW32_LEVEL >= __PTW32_LEVEL_MAX -__PTW32_DLLPORT __ptw32_cleanup_t * __PTW32_CDECL __ptw32_pop_cleanup (int execute); - -__PTW32_DLLPORT void __PTW32_CDECL __ptw32_push_cleanup (__ptw32_cleanup_t * cleanup, - __ptw32_cleanup_callback_t routine, - void *arg); -#endif /* __PTW32_LEVEL >= __PTW32_LEVEL_MAX */ - -/* - * Thread Specific Data Functions - */ -__PTW32_DLLPORT int __PTW32_CDECL pthread_key_create (pthread_key_t * key, - void (__PTW32_CDECL *destructor) (void *)); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_key_delete (pthread_key_t key); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_setspecific (pthread_key_t key, - const void *value); - -__PTW32_DLLPORT void * __PTW32_CDECL pthread_getspecific (pthread_key_t key); - - -/* - * Mutex Attribute Functions - */ -__PTW32_DLLPORT int __PTW32_CDECL pthread_mutexattr_init (pthread_mutexattr_t * attr); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_mutexattr_destroy (pthread_mutexattr_t * attr); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_mutexattr_getpshared (const pthread_mutexattr_t - * attr, - int *pshared); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_mutexattr_setpshared (pthread_mutexattr_t * attr, - int pshared); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_mutexattr_settype (pthread_mutexattr_t * attr, int kind); -__PTW32_DLLPORT int __PTW32_CDECL pthread_mutexattr_gettype (const pthread_mutexattr_t * attr, int *kind); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_mutexattr_setrobust( - pthread_mutexattr_t *attr, - int robust); -__PTW32_DLLPORT int __PTW32_CDECL pthread_mutexattr_getrobust( - const pthread_mutexattr_t * attr, - int * robust); - -/* - * Barrier Attribute Functions - */ -__PTW32_DLLPORT int __PTW32_CDECL pthread_barrierattr_init (pthread_barrierattr_t * attr); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_barrierattr_destroy (pthread_barrierattr_t * attr); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_barrierattr_getpshared (const pthread_barrierattr_t - * attr, - int *pshared); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_barrierattr_setpshared (pthread_barrierattr_t * attr, - int pshared); - -/* - * Mutex Functions - */ -__PTW32_DLLPORT int __PTW32_CDECL pthread_mutex_init (pthread_mutex_t * mutex, - const pthread_mutexattr_t * attr); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_mutex_destroy (pthread_mutex_t * mutex); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_mutex_lock (pthread_mutex_t * mutex); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_mutex_timedlock(pthread_mutex_t * mutex, - const struct timespec *abstime); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_mutex_trylock (pthread_mutex_t * mutex); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_mutex_unlock (pthread_mutex_t * mutex); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_mutex_consistent (pthread_mutex_t * mutex); - -/* - * Spinlock Functions - */ -__PTW32_DLLPORT int __PTW32_CDECL pthread_spin_init (pthread_spinlock_t * lock, int pshared); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_spin_destroy (pthread_spinlock_t * lock); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_spin_lock (pthread_spinlock_t * lock); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_spin_trylock (pthread_spinlock_t * lock); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_spin_unlock (pthread_spinlock_t * lock); - -/* - * Barrier Functions - */ -__PTW32_DLLPORT int __PTW32_CDECL pthread_barrier_init (pthread_barrier_t * barrier, - const pthread_barrierattr_t * attr, - unsigned int count); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_barrier_destroy (pthread_barrier_t * barrier); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_barrier_wait (pthread_barrier_t * barrier); - -/* - * Condition Variable Attribute Functions - */ -__PTW32_DLLPORT int __PTW32_CDECL pthread_condattr_init (pthread_condattr_t * attr); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_condattr_destroy (pthread_condattr_t * attr); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_condattr_getpshared (const pthread_condattr_t * attr, - int *pshared); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_condattr_setpshared (pthread_condattr_t * attr, - int pshared); - -/* - * Condition Variable Functions - */ -__PTW32_DLLPORT int __PTW32_CDECL pthread_cond_init (pthread_cond_t * cond, - const pthread_condattr_t * attr); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_cond_destroy (pthread_cond_t * cond); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_cond_wait (pthread_cond_t * cond, - pthread_mutex_t * mutex); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_cond_timedwait (pthread_cond_t * cond, - pthread_mutex_t * mutex, - const struct timespec *abstime); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_cond_signal (pthread_cond_t * cond); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_cond_broadcast (pthread_cond_t * cond); - -/* - * Scheduling - */ -__PTW32_DLLPORT int __PTW32_CDECL pthread_setschedparam (pthread_t thread, - int policy, - const struct sched_param *param); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_getschedparam (pthread_t thread, - int *policy, - struct sched_param *param); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_setconcurrency (int); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_getconcurrency (void); - -/* - * Read-Write Lock Functions - */ -__PTW32_DLLPORT int __PTW32_CDECL pthread_rwlock_init(pthread_rwlock_t *lock, - const pthread_rwlockattr_t *attr); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_rwlock_destroy(pthread_rwlock_t *lock); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_rwlock_tryrdlock(pthread_rwlock_t *); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_rwlock_trywrlock(pthread_rwlock_t *); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_rwlock_rdlock(pthread_rwlock_t *lock); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_rwlock_timedrdlock(pthread_rwlock_t *lock, - const struct timespec *abstime); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_rwlock_wrlock(pthread_rwlock_t *lock); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_rwlock_timedwrlock(pthread_rwlock_t *lock, - const struct timespec *abstime); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_rwlock_unlock(pthread_rwlock_t *lock); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_rwlockattr_init (pthread_rwlockattr_t * attr); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_rwlockattr_destroy (pthread_rwlockattr_t * attr); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_rwlockattr_getpshared (const pthread_rwlockattr_t * attr, - int *pshared); - -__PTW32_DLLPORT int __PTW32_CDECL pthread_rwlockattr_setpshared (pthread_rwlockattr_t * attr, - int pshared); - -#if __PTW32_LEVEL >= __PTW32_LEVEL_MAX - 1 - -/* - * Signal Functions. Should be defined in but MSVC and MinGW32 - * already have signal.h that don't define these. - */ -__PTW32_DLLPORT int __PTW32_CDECL pthread_kill(pthread_t thread, int sig); - -/* - * Non-portable functions - */ - -/* - * Compatibility with Linux. - */ -__PTW32_DLLPORT int __PTW32_CDECL pthread_mutexattr_setkind_np(pthread_mutexattr_t * attr, - int kind); -__PTW32_DLLPORT int __PTW32_CDECL pthread_mutexattr_getkind_np(pthread_mutexattr_t * attr, - int *kind); -__PTW32_DLLPORT int __PTW32_CDECL pthread_timedjoin_np(pthread_t thread, - void **value_ptr, - const struct timespec *abstime); -__PTW32_DLLPORT int __PTW32_CDECL pthread_tryjoin_np(pthread_t thread, - void **value_ptr); -__PTW32_DLLPORT int __PTW32_CDECL pthread_setaffinity_np(pthread_t thread, - size_t cpusetsize, - const cpu_set_t *cpuset); -__PTW32_DLLPORT int __PTW32_CDECL pthread_getaffinity_np(pthread_t thread, - size_t cpusetsize, - cpu_set_t *cpuset); - -/* - * Possibly supported by other POSIX threads implementations - */ -__PTW32_DLLPORT int __PTW32_CDECL pthread_delay_np (struct timespec * interval); -__PTW32_DLLPORT int __PTW32_CDECL pthread_num_processors_np(void); -__PTW32_DLLPORT unsigned __int64 __PTW32_CDECL pthread_getunique_np(pthread_t thread); - -/* - * Useful if an application wants to statically link - * the lib rather than load the DLL at run-time. - */ -__PTW32_DLLPORT int __PTW32_CDECL pthread_win32_process_attach_np(void); -__PTW32_DLLPORT int __PTW32_CDECL pthread_win32_process_detach_np(void); -__PTW32_DLLPORT int __PTW32_CDECL pthread_win32_thread_attach_np(void); -__PTW32_DLLPORT int __PTW32_CDECL pthread_win32_thread_detach_np(void); - -/* - * Returns the first parameter "abstime" modified to represent the current system time. - * If "relative" is not NULL it represents an interval to add to "abstime". - */ - -__PTW32_DLLPORT struct timespec * __PTW32_CDECL pthread_win32_getabstime_np( - struct timespec * abstime, - const struct timespec * relative); - -/* - * Features that are auto-detected at load/run time. - */ -__PTW32_DLLPORT int __PTW32_CDECL pthread_win32_test_features_np(int); -enum __ptw32_features -{ - __PTW32_SYSTEM_INTERLOCKED_COMPARE_EXCHANGE = 0x0001, /* System provides it. */ - __PTW32_ALERTABLE_ASYNC_CANCEL = 0x0002 /* Can cancel blocked threads. */ -}; - -/* - * Register a system time change with the library. - * Causes the library to perform various functions - * in response to the change. Should be called whenever - * the application's top level window receives a - * WM_TIMECHANGE message. It can be passed directly to - * pthread_create() as a new thread if desired. - */ -__PTW32_DLLPORT void * __PTW32_CDECL pthread_timechange_handler_np(void *); - -#endif /* __PTW32_LEVEL >= __PTW32_LEVEL_MAX - 1 */ - -#if __PTW32_LEVEL >= __PTW32_LEVEL_MAX - -/* - * Returns the Win32 HANDLE for the POSIX thread. - */ -__PTW32_DLLPORT void * __PTW32_CDECL pthread_getw32threadhandle_np(pthread_t thread); -/* - * Returns the win32 thread ID for POSIX thread. - */ -__PTW32_DLLPORT unsigned long __PTW32_CDECL pthread_getw32threadid_np (pthread_t thread); - -/* - * Sets the POSIX thread name. If _MSC_VER is defined the name should be displayed by - * the MSVS debugger. - */ -#if defined (__PTW32_COMPATIBILITY_BSD) || defined (__PTW32_COMPATIBILITY_TRU64) -#define PTHREAD_MAX_NAMELEN_NP 16 -__PTW32_DLLPORT int __PTW32_CDECL pthread_setname_np (pthread_t thr, const char * name, void * arg); -__PTW32_DLLPORT int __PTW32_CDECL pthread_attr_setname_np (pthread_attr_t * attr, const char * name, void * arg); -#else -__PTW32_DLLPORT int __PTW32_CDECL pthread_setname_np (pthread_t thr, const char * name); -__PTW32_DLLPORT int __PTW32_CDECL pthread_attr_setname_np (pthread_attr_t * attr, const char * name); -#endif - -__PTW32_DLLPORT int __PTW32_CDECL pthread_getname_np (pthread_t thr, char * name, int len); -__PTW32_DLLPORT int __PTW32_CDECL pthread_attr_getname_np (pthread_attr_t * attr, char * name, int len); - - -/* - * Protected Methods - * - * This function blocks until the given WIN32 handle - * is signalled or pthread_cancel had been called. - * This function allows the caller to hook into the - * PThreads cancel mechanism. It is implemented using - * - * WaitForMultipleObjects - * - * on 'waitHandle' and a manually reset WIN32 Event - * used to implement pthread_cancel. The 'timeout' - * argument to TimedWait is simply passed to - * WaitForMultipleObjects. - */ -__PTW32_DLLPORT int __PTW32_CDECL pthreadCancelableWait (void *waitHandle); -__PTW32_DLLPORT int __PTW32_CDECL pthreadCancelableTimedWait (void *waitHandle, - unsigned long timeout); - -#endif /* __PTW32_LEVEL >= __PTW32_LEVEL_MAX */ - -/* - * Declare a thread-safe errno for Open Watcom - * (note: this has not been tested in a long time) - */ -#if defined(__WATCOMC__) && !defined(errno) -# if defined(_MT) || defined(_DLL) - __declspec(dllimport) extern int * __cdecl _errno(void); -# define errno (*_errno()) -# endif -#endif - -#if defined (__PTW32_USES_SEPARATE_CRT) && (defined(__PTW32_CLEANUP_CXX) || defined(__PTW32_CLEANUP_SEH)) -typedef void (*__ptw32_terminate_handler)(); -__PTW32_DLLPORT __ptw32_terminate_handler __PTW32_CDECL pthread_win32_set_terminate_np(__ptw32_terminate_handler termFunction); -#endif - -#if defined(__cplusplus) - -/* - * Internal exceptions - */ -class __ptw32_exception {}; -class __ptw32_exception_cancel : public __ptw32_exception {}; -class __ptw32_exception_exit : public __ptw32_exception {}; - -#endif - -#if __PTW32_LEVEL >= __PTW32_LEVEL_MAX - -/* FIXME: This is only required if the library was built using SEH */ -/* - * Get internal SEH tag - */ -__PTW32_DLLPORT unsigned long __PTW32_CDECL __ptw32_get_exception_services_code(void); - -#endif /* __PTW32_LEVEL >= __PTW32_LEVEL_MAX */ - -#if !defined (__PTW32_BUILD) - -#if defined(__PTW32_CLEANUP_SEH) - -/* - * Redefine the SEH __except keyword to ensure that applications - * propagate our internal exceptions up to the library's internal handlers. - */ -#define __except( E ) \ - __except( ( GetExceptionCode() == __ptw32_get_exception_services_code() ) \ - ? EXCEPTION_CONTINUE_SEARCH : ( E ) ) - -#endif /* __PTW32_CLEANUP_SEH */ - -#if defined(__PTW32_CLEANUP_CXX) - -/* - * Redefine the C++ catch keyword to ensure that applications - * propagate our internal exceptions up to the library's internal handlers. - */ -#if defined(_MSC_VER) - /* - * WARNING: Replace any 'catch( ... )' with '__PtW32CatchAll' - * if you want Pthread-Win32 cancellation and pthread_exit to work. - */ - -#if !defined(__PtW32NoCatchWarn) - -#pragma message("Specify \"/D__PtW32NoCatchWarn\" compiler flag to skip this message.") -#pragma message("------------------------------------------------------------------") -#pragma message("When compiling applications with MSVC++ and C++ exception handling:") -#pragma message(" Replace any 'catch( ... )' in routines called from POSIX threads") -#pragma message(" with '__PtW32CatchAll' or 'CATCHALL' if you want POSIX thread") -#pragma message(" cancellation and pthread_exit to work. For example:") -#pragma message("") -#pragma message(" #if defined(__PtW32CatchAll)") -#pragma message(" __PtW32CatchAll") -#pragma message(" #else") -#pragma message(" catch(...)") -#pragma message(" #endif") -#pragma message(" {") -#pragma message(" /* Catchall block processing */") -#pragma message(" }") -#pragma message("------------------------------------------------------------------") - -#endif - -#define __PtW32CatchAll \ - catch( __ptw32_exception & ) { throw; } \ - catch( ... ) - -#else /* _MSC_VER */ - -#define catch( E ) \ - catch( __ptw32_exception & ) { throw; } \ - catch( E ) - -#endif /* _MSC_VER */ - -#endif /* __PTW32_CLEANUP_CXX */ - -#endif /* ! __PTW32_BUILD */ - -__PTW32_END_C_DECLS - -#undef __PTW32_LEVEL -#undef __PTW32_LEVEL_MAX - -#endif /* ! RC_INVOKED */ - -#endif /* PTHREAD_H */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_destroy.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_destroy.c deleted file mode 100644 index cc9a471..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_destroy.c +++ /dev/null @@ -1,81 +0,0 @@ -/* - * pthread_attr_destroy.c - * - * Description: - * This translation unit implements operations on thread attribute objects. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_attr_destroy (pthread_attr_t * attr) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Destroys a thread attributes object. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_attr_t - * - * - * DESCRIPTION - * Destroys a thread attributes object. - * - * NOTES: - * 1) Does not affect threads created with 'attr'. - * - * RESULTS - * 0 successfully destroyed attr, - * EINVAL 'attr' is invalid. - * - * ------------------------------------------------------ - */ -{ - if (__ptw32_is_attr (attr) != 0) - { - return EINVAL; - } - - /* - * Set the attribute object to a specific invalid value. - */ - (*attr)->valid = 0; - free (*attr); - *attr = NULL; - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getaffinity_np.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getaffinity_np.c deleted file mode 100644 index adec730..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getaffinity_np.c +++ /dev/null @@ -1,54 +0,0 @@ -/* - * pthread_attr_getaffinity_np.c - * - * Description: - * POSIX thread functions that deal with thread CPU affinity. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" -#include "sched.h" - -int -pthread_attr_getaffinity_np (const pthread_attr_t * attr, size_t cpusetsize, cpu_set_t * cpuset) -{ - if (__ptw32_is_attr (attr) != 0 || cpuset == NULL) - { - return EINVAL; - } - - ((_sched_cpu_set_vector_*)cpuset)->_cpuset = (*attr)->cpuset; - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getdetachstate.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getdetachstate.c deleted file mode 100644 index 2d8bbb0..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getdetachstate.c +++ /dev/null @@ -1,88 +0,0 @@ -/* - * pthread_attr_getdetachstate.c - * - * Description: - * This translation unit implements operations on thread attribute objects. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_attr_getdetachstate (const pthread_attr_t * attr, int *detachstate) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function determines whether threads created with - * 'attr' will run detached. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_attr_t - * - * detachstate - * pointer to an integer into which is returned one - * of: - * - * PTHREAD_CREATE_JOINABLE - * Thread ID is valid, must be joined - * - * PTHREAD_CREATE_DETACHED - * Thread ID is invalid, cannot be joined, - * canceled, or modified - * - * - * DESCRIPTION - * This function determines whether threads created with - * 'attr' will run detached. - * - * NOTES: - * 1) You cannot join or cancel detached threads. - * - * RESULTS - * 0 successfully retrieved detach state, - * EINVAL 'attr' is invalid - * - * ------------------------------------------------------ - */ -{ - if (__ptw32_is_attr (attr) != 0 || detachstate == NULL) - { - return EINVAL; - } - - *detachstate = (*attr)->detachstate; - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getinheritsched.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getinheritsched.c deleted file mode 100644 index 6a24862..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getinheritsched.c +++ /dev/null @@ -1,53 +0,0 @@ -/* - * pthread_attr_getinheritsched.c - * - * Description: - * POSIX thread functions that deal with thread scheduling. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" -#include "sched.h" - -int -pthread_attr_getinheritsched (const pthread_attr_t * attr, int *inheritsched) -{ - if (__ptw32_is_attr (attr) != 0 || inheritsched == NULL) - { - return EINVAL; - } - - *inheritsched = (*attr)->inheritsched; - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getname_np.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getname_np.c deleted file mode 100644 index cec14d4..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getname_np.c +++ /dev/null @@ -1,51 +0,0 @@ -/* - * pthread_attr_getname_np.c - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include -#include "pthread.h" -#include "implement.h" - -int -pthread_attr_getname_np(pthread_attr_t * attr, char *name, int len) -{ - //strncpy_s(name, len - 1, (*attr)->thrname, len - 1); -#if defined(_MSVCRT_) -# pragma warning(suppress:4996) - strncpy(name, (*attr)->thrname, len - 1); - (*attr)->thrname[len - 1] = '\0'; -#endif - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getschedparam.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getschedparam.c deleted file mode 100644 index 515a0af..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getschedparam.c +++ /dev/null @@ -1,54 +0,0 @@ -/* - * pthread_attr_getschedparam.c - * - * Description: - * POSIX thread functions that deal with thread scheduling. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" -#include "sched.h" - -int -pthread_attr_getschedparam (const pthread_attr_t * attr, - struct sched_param *param) -{ - if (__ptw32_is_attr (attr) != 0 || param == NULL) - { - return EINVAL; - } - - memcpy (param, &(*attr)->param, sizeof (*param)); - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getschedpolicy.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getschedpolicy.c deleted file mode 100644 index 85762f3..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getschedpolicy.c +++ /dev/null @@ -1,54 +0,0 @@ -/* - * pthread_attr_getschedpolicy.c - * - * Description: - * POSIX thread functions that deal with thread scheduling. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" -#include "sched.h" - -int -pthread_attr_getschedpolicy (const pthread_attr_t * attr, int *policy) -{ - if (__ptw32_is_attr (attr) != 0 || policy == NULL) - { - return EINVAL; - } - - *policy = SCHED_OTHER; - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getscope.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getscope.c deleted file mode 100644 index 9f6c13f..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getscope.c +++ /dev/null @@ -1,56 +0,0 @@ -/* - * pthread_attr_getscope.c - * - * Description: - * This translation unit implements operations on thread attribute objects. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -/* ignore warning "unreferenced formal parameter" */ -#if defined(_MSC_VER) -#pragma warning( disable : 4100 ) -#endif - -int -pthread_attr_getscope (const pthread_attr_t * attr, int *contentionscope) -{ -#if defined(_POSIX_THREAD_PRIORITY_SCHEDULING) - *contentionscope = (*attr)->contentionscope; - return 0; -#else - return ENOSYS; -#endif -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getstackaddr.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getstackaddr.c deleted file mode 100644 index 2a21805..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getstackaddr.c +++ /dev/null @@ -1,99 +0,0 @@ -/* - * pthread_attr_getstackaddr.c - * - * Description: - * This translation unit implements operations on thread attribute objects. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -/* ignore warning "unreferenced formal parameter" */ -#if defined(_MSC_VER) -#pragma warning( disable : 4100 ) -#endif - -int -pthread_attr_getstackaddr (const pthread_attr_t * attr, void **stackaddr) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function determines the address of the stack - * on which threads created with 'attr' will run. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_attr_t - * - * stackaddr - * pointer into which is returned the stack address. - * - * - * DESCRIPTION - * This function determines the address of the stack - * on which threads created with 'attr' will run. - * - * NOTES: - * 1) Function supported only if this macro is - * defined: - * - * _POSIX_THREAD_ATTR_STACKADDR - * - * 2) Create only one thread for each stack - * address.. - * - * RESULTS - * 0 successfully retrieved stack address, - * EINVAL 'attr' is invalid - * ENOSYS function not supported - * - * ------------------------------------------------------ - */ -{ -#if defined( _POSIX_THREAD_ATTR_STACKADDR ) && _POSIX_THREAD_ATTR_STACKADDR != -1 - - if (__ptw32_is_attr (attr) != 0) - { - return EINVAL; - } - - *stackaddr = (*attr)->stackaddr; - return 0; - -#else - - return ENOSYS; - -#endif /* _POSIX_THREAD_ATTR_STACKADDR */ -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getstacksize.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getstacksize.c deleted file mode 100644 index 3916a7c..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_getstacksize.c +++ /dev/null @@ -1,102 +0,0 @@ -/* - * pthread_attr_getstacksize.c - * - * Description: - * This translation unit implements operations on thread attribute objects. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -/* ignore warning "unreferenced formal parameter" */ -#if defined(_MSC_VER) -#pragma warning( disable : 4100 ) -#endif - -int -pthread_attr_getstacksize (const pthread_attr_t * attr, size_t * stacksize) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function determines the size of the stack on - * which threads created with 'attr' will run. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_attr_t - * - * stacksize - * pointer to size_t into which is returned the - * stack size, in bytes. - * - * - * DESCRIPTION - * This function determines the size of the stack on - * which threads created with 'attr' will run. - * - * NOTES: - * 1) Function supported only if this macro is - * defined: - * - * _POSIX_THREAD_ATTR_STACKSIZE - * - * 2) Use on newly created attributes object to - * find the default stack size. - * - * RESULTS - * 0 successfully retrieved stack size, - * EINVAL 'attr' is invalid - * ENOSYS function not supported - * - * ------------------------------------------------------ - */ -{ -#if defined(_POSIX_THREAD_ATTR_STACKSIZE) && _POSIX_THREAD_ATTR_STACKSIZE != -1 - - if (__ptw32_is_attr (attr) != 0) - { - return EINVAL; - } - - /* Everything is okay. */ - *stacksize = (*attr)->stacksize; - return 0; - -#else - - return ENOSYS; - -#endif /* _POSIX_THREAD_ATTR_STACKSIZE */ - -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_init.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_init.c deleted file mode 100644 index ff671e7..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_init.c +++ /dev/null @@ -1,123 +0,0 @@ -/* - * pthread_attr_init.c - * - * Description: - * This translation unit implements operations on thread attribute objects. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_attr_init (pthread_attr_t * attr) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Initializes a thread attributes object with default - * attributes. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_attr_t - * - * - * DESCRIPTION - * Initializes a thread attributes object with default - * attributes. - * - * NOTES: - * 1) Used to define thread attributes - * - * RESULTS - * 0 successfully initialized attr, - * ENOMEM insufficient memory for attr. - * - * ------------------------------------------------------ - */ -{ - pthread_attr_t attr_result; - cpu_set_t cpuset; - - if (attr == NULL) - { - /* This is disallowed. */ - return EINVAL; - } - - attr_result = (pthread_attr_t) malloc (sizeof (*attr_result)); - - if (attr_result == NULL) - { - return ENOMEM; - } - -#if defined(_POSIX_THREAD_ATTR_STACKSIZE) - /* - * Default to zero size. Unless changed explicitly this - * will allow Win32 to set the size to that of the - * main thread. - */ - attr_result->stacksize = 0; -#endif - -#if defined(_POSIX_THREAD_ATTR_STACKADDR) - /* FIXME: Set this to something sensible when we support it. */ - attr_result->stackaddr = NULL; -#endif - - attr_result->detachstate = PTHREAD_CREATE_JOINABLE; - -#if defined(HAVE_SIGSET_T) - memset (&(attr_result->sigmask), 0, sizeof (sigset_t)); -#endif /* HAVE_SIGSET_T */ - - /* - * Win32 sets new threads to THREAD_PRIORITY_NORMAL and - * not to that of the parent thread. We choose to default to - * this arrangement. - */ - attr_result->param.sched_priority = THREAD_PRIORITY_NORMAL; - attr_result->inheritsched = PTHREAD_EXPLICIT_SCHED; - attr_result->contentionscope = PTHREAD_SCOPE_SYSTEM; - CPU_ZERO(&cpuset); - attr_result->cpuset = ((_sched_cpu_set_vector_*)&cpuset)->_cpuset; - attr_result->thrname = NULL; - - attr_result->valid = __PTW32_ATTR_VALID; - - *attr = attr_result; - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setaffinity_np.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setaffinity_np.c deleted file mode 100644 index c3da27e..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setaffinity_np.c +++ /dev/null @@ -1,54 +0,0 @@ -/* - * pthread_attr_setaffinity_np.c - * - * Description: - * POSIX thread functions that deal with thread CPU affinity. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" -#include "sched.h" - -int -pthread_attr_setaffinity_np (pthread_attr_t * attr, size_t cpusetsize, const cpu_set_t * cpuset) -{ - if (__ptw32_is_attr (attr) != 0 || cpuset == NULL) - { - return EINVAL; - } - - (*attr)->cpuset = ((_sched_cpu_set_vector_*)cpuset)->_cpuset; - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setdetachstate.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setdetachstate.c deleted file mode 100644 index b12ff95..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setdetachstate.c +++ /dev/null @@ -1,93 +0,0 @@ -/* - * pthread_attr_setdetachstate.c - * - * Description: - * This translation unit implements operations on thread attribute objects. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_attr_setdetachstate (pthread_attr_t * attr, int detachstate) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function specifies whether threads created with - * 'attr' will run detached. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_attr_t - * - * detachstate - * an integer containing one of: - * - * PTHREAD_CREATE_JOINABLE - * Thread ID is valid, must be joined - * - * PTHREAD_CREATE_DETACHED - * Thread ID is invalid, cannot be joined, - * canceled, or modified - * - * - * DESCRIPTION - * This function specifies whether threads created with - * 'attr' will run detached. - * - * NOTES: - * 1) You cannot join or cancel detached threads. - * - * RESULTS - * 0 successfully set detach state, - * EINVAL 'attr' or 'detachstate' is invalid - * - * ------------------------------------------------------ - */ -{ - if (__ptw32_is_attr (attr) != 0) - { - return EINVAL; - } - - if (detachstate != PTHREAD_CREATE_JOINABLE && - detachstate != PTHREAD_CREATE_DETACHED) - { - return EINVAL; - } - - (*attr)->detachstate = detachstate; - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setinheritsched.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setinheritsched.c deleted file mode 100644 index 003a821..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setinheritsched.c +++ /dev/null @@ -1,59 +0,0 @@ -/* - * pthread_attr_setinheritsched.c - * - * Description: - * POSIX thread functions that deal with thread scheduling. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" -#include "sched.h" - -int -pthread_attr_setinheritsched (pthread_attr_t * attr, int inheritsched) -{ - if (__ptw32_is_attr (attr) != 0) - { - return EINVAL; - } - - if (PTHREAD_INHERIT_SCHED != inheritsched - && PTHREAD_EXPLICIT_SCHED != inheritsched) - { - return EINVAL; - } - - (*attr)->inheritsched = inheritsched; - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setname_np.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setname_np.c deleted file mode 100644 index 3161bf1..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setname_np.c +++ /dev/null @@ -1,96 +0,0 @@ -/* - * pthread_attr_setname_np.c - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include -#include -#include "pthread.h" -#include "implement.h" - -#if defined (__PTW32_COMPATIBILITY_BSD) || defined (__PTW32_COMPATIBILITY_TRU64) -int -pthread_attr_setname_np(pthread_attr_t * attr, const char *name, void *arg) -{ - int len; - int result; - char tmpbuf[PTHREAD_MAX_NAMELEN_NP]; - char * newname; - char * oldname; - - /* - * According to the MSDN description for snprintf() - * where count is the second parameter: - * If len < count, then len characters are stored in buffer, a null-terminator is appended, and len is returned. - * If len = count, then len characters are stored in buffer, no null-terminator is appended, and len is returned. - * If len > count, then count characters are stored in buffer, no null-terminator is appended, and a negative value is returned. - * - * This is different to the POSIX behaviour which returns the number of characters that would have been written in all cases. - */ - len = snprintf(tmpbuf, PTHREAD_MAX_NAMELEN_NP-1, name, arg); - tmpbuf[PTHREAD_MAX_NAMELEN_NP-1] = '\0'; - if (len < 0) - { - return EINVAL; - } - - newname = _strdup(tmpbuf); - - oldname = (*attr)->thrname; - (*attr)->thrname = newname; - if (oldname) - { - free(oldname); - } - - return 0; -} -#else -int -pthread_attr_setname_np(pthread_attr_t * attr, const char *name) -{ - char * newname; - char * oldname; - - newname = _strdup(name); - - oldname = (*attr)->thrname; - (*attr)->thrname = newname; - if (oldname) - { - free(oldname); - } - - return 0; -} -#endif diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setschedparam.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setschedparam.c deleted file mode 100644 index 36e64eb..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setschedparam.c +++ /dev/null @@ -1,65 +0,0 @@ -/* - * pthread_attr_setschedparam.c - * - * Description: - * POSIX thread functions that deal with thread scheduling. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" -#include "sched.h" - -int -pthread_attr_setschedparam (pthread_attr_t * attr, - const struct sched_param *param) -{ - int priority; - - if (__ptw32_is_attr (attr) != 0 || param == NULL) - { - return EINVAL; - } - - priority = param->sched_priority; - - /* Validate priority level. */ - if (priority < sched_get_priority_min (SCHED_OTHER) || - priority > sched_get_priority_max (SCHED_OTHER)) - { - return EINVAL; - } - - memcpy (&(*attr)->param, param, sizeof (*param)); - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setschedpolicy.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setschedpolicy.c deleted file mode 100644 index af6fb9e..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setschedpolicy.c +++ /dev/null @@ -1,57 +0,0 @@ -/* - * pthread_attr_setschedpolicy.c - * - * Description: - * POSIX thread functions that deal with thread scheduling. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" -#include "sched.h" - -int -pthread_attr_setschedpolicy (pthread_attr_t * attr, int policy) -{ - if (__ptw32_is_attr (attr) != 0) - { - return EINVAL; - } - - if (policy != SCHED_OTHER) - { - return ENOTSUP; - } - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setscope.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setscope.c deleted file mode 100644 index 81765b8..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setscope.c +++ /dev/null @@ -1,64 +0,0 @@ -/* - * pthread_attr_setscope.c - * - * Description: - * This translation unit implements operations on thread attribute objects. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -/* ignore warning "unreferenced formal parameter" */ -#if defined(_MSC_VER) -#pragma warning( disable : 4100 ) -#endif - -int -pthread_attr_setscope (pthread_attr_t * attr, int contentionscope) -{ -#if defined(_POSIX_THREAD_PRIORITY_SCHEDULING) - switch (contentionscope) - { - case PTHREAD_SCOPE_SYSTEM: - (*attr)->contentionscope = contentionscope; - return 0; - case PTHREAD_SCOPE_PROCESS: - return ENOTSUP; - default: - return EINVAL; - } -#else - return ENOSYS; -#endif -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setstackaddr.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setstackaddr.c deleted file mode 100644 index 20a53dd..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setstackaddr.c +++ /dev/null @@ -1,99 +0,0 @@ -/* - * pthread_attr_setstackaddr.c - * - * Description: - * This translation unit implements operations on thread attribute objects. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_attr_setstackaddr (pthread_attr_t * attr, void *stackaddr) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Threads created with 'attr' will run on the stack - * starting at 'stackaddr'. - * Stack must be at least PTHREAD_STACK_MIN bytes. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_attr_t - * - * stackaddr - * the address of the stack to use - * - * - * DESCRIPTION - * Threads created with 'attr' will run on the stack - * starting at 'stackaddr'. - * Stack must be at least PTHREAD_STACK_MIN bytes. - * - * NOTES: - * 1) Function supported only if this macro is - * defined: - * - * _POSIX_THREAD_ATTR_STACKADDR - * - * 2) Create only one thread for each stack - * address.. - * - * 3) Ensure that stackaddr is aligned. - * - * RESULTS - * 0 successfully set stack address, - * EINVAL 'attr' is invalid - * ENOSYS function not supported - * - * ------------------------------------------------------ - */ -{ -#if defined( _POSIX_THREAD_ATTR_STACKADDR ) && _POSIX_THREAD_ATTR_STACKADDR != -1 - - if (__ptw32_is_attr (attr) != 0) - { - return EINVAL; - } - - (*attr)->stackaddr = stackaddr; - return 0; - -#else - - return ENOSYS; - -#endif /* _POSIX_THREAD_ATTR_STACKADDR */ -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setstacksize.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setstacksize.c deleted file mode 100644 index fe930ef..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_attr_setstacksize.c +++ /dev/null @@ -1,112 +0,0 @@ -/* - * pthread_attr_setstacksize.c - * - * Description: - * This translation unit implements operations on thread attribute objects. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_attr_setstacksize (pthread_attr_t * attr, size_t stacksize) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function specifies the size of the stack on - * which threads created with 'attr' will run. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_attr_t - * - * stacksize - * stack size, in bytes. - * - * - * DESCRIPTION - * This function specifies the size of the stack on - * which threads created with 'attr' will run. - * - * NOTES: - * 1) Function supported only if this macro is - * defined: - * - * _POSIX_THREAD_ATTR_STACKSIZE - * - * 2) Find the default first (using - * pthread_attr_getstacksize), then increase - * by multiplying. - * - * 3) Only use if thread needs more than the - * default. - * - * RESULTS - * 0 successfully set stack size, - * EINVAL 'attr' is invalid or stacksize too - * small or too big. - * ENOSYS function not supported - * - * ------------------------------------------------------ - */ -{ -#if defined(_POSIX_THREAD_ATTR_STACKSIZE) && _POSIX_THREAD_ATTR_STACKSIZE != -1 - -#if PTHREAD_STACK_MIN > 0 - - /* Verify that the stack size is within range. */ - if (stacksize < PTHREAD_STACK_MIN) - { - return EINVAL; - } - -#endif - - if (__ptw32_is_attr (attr) != 0) - { - return EINVAL; - } - - /* Everything is okay. */ - (*attr)->stacksize = stacksize; - return 0; - -#else - - return ENOSYS; - -#endif /* _POSIX_THREAD_ATTR_STACKSIZE */ - -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_barrier_destroy.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_barrier_destroy.c deleted file mode 100644 index a2904c0..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_barrier_destroy.c +++ /dev/null @@ -1,105 +0,0 @@ -/* - * pthread_barrier_destroy.c - * - * Description: - * This translation unit implements barrier primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -int -pthread_barrier_destroy (pthread_barrier_t * barrier) -{ - int result = 0; - pthread_barrier_t b; - __ptw32_mcs_local_node_t node; - - if (barrier == NULL || *barrier == (pthread_barrier_t) __PTW32_OBJECT_INVALID) - { - return EINVAL; - } - - if (0 != __ptw32_mcs_lock_try_acquire(&(*barrier)->lock, &node)) - { - return EBUSY; - } - - b = *barrier; - - if (b->nCurrentBarrierHeight < b->nInitialBarrierHeight) - { - result = EBUSY; - } - else - { - if (0 == (result = sem_destroy (&(b->semBarrierBreeched)))) - { - *barrier = (pthread_barrier_t) __PTW32_OBJECT_INVALID; - /* - * Release the lock before freeing b. - * - * FIXME: There may be successors which, when we release the lock, - * will be linked into b->lock, which will be corrupted at some - * point with undefined results for the application. To fix this - * will require changing pthread_barrier_t from a pointer to - * pthread_barrier_t_ to an instance. This is a change to the ABI - * and will require a major version number increment. - */ - __ptw32_mcs_lock_release(&node); - (void) free (b); - return 0; - } - else - { - /* - * This should not ever be reached. - * Restore the barrier to working condition before returning. - */ - (void) sem_init (&(b->semBarrierBreeched), b->pshared, 0); - } - - if (result != 0) - { - /* - * The barrier still exists and is valid - * in the event of any error above. - */ - result = EBUSY; - } - } - - __ptw32_mcs_lock_release(&node); - return (result); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_barrier_init.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_barrier_init.c deleted file mode 100644 index ac5c07b..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_barrier_init.c +++ /dev/null @@ -1,71 +0,0 @@ -/* - * pthread_barrier_init.c - * - * Description: - * This translation unit implements barrier primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_barrier_init (pthread_barrier_t * barrier, - const pthread_barrierattr_t * attr, unsigned int count) -{ - pthread_barrier_t b; - - if (barrier == NULL || count == 0) - { - return EINVAL; - } - - if (NULL != (b = (pthread_barrier_t) calloc (1, sizeof (*b)))) - { - b->pshared = (attr != NULL && *attr != NULL - ? (*attr)->pshared : PTHREAD_PROCESS_PRIVATE); - - b->nCurrentBarrierHeight = b->nInitialBarrierHeight = count; - b->lock = 0; - - if (0 == sem_init (&(b->semBarrierBreeched), b->pshared, 0)) - { - *barrier = b; - return 0; - } - (void) free (b); - } - - return ENOMEM; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_barrier_wait.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_barrier_wait.c deleted file mode 100644 index ad180f4..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_barrier_wait.c +++ /dev/null @@ -1,106 +0,0 @@ -/* - * pthread_barrier_wait.c - * - * Description: - * This translation unit implements barrier primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_barrier_wait (pthread_barrier_t * barrier) -{ - int result; - pthread_barrier_t b; - - __ptw32_mcs_local_node_t node; - - if (barrier == NULL || *barrier == (pthread_barrier_t) __PTW32_OBJECT_INVALID) - { - return EINVAL; - } - - __ptw32_mcs_lock_acquire(&(*barrier)->lock, &node); - - b = *barrier; - if (--b->nCurrentBarrierHeight == 0) - { - /* - * We are the last thread to arrive at the barrier before it releases us. - * Move our MCS local node to the global scope barrier handle so that the - * last thread out (not necessarily us) can release the lock. - */ - __ptw32_mcs_node_transfer(&b->proxynode, &node); - - /* - * Any threads that have not quite entered sem_wait below when the - * multiple_post has completed will nevertheless continue through - * the semaphore (barrier). - */ - result = (b->nInitialBarrierHeight > 1 - ? sem_post_multiple (&(b->semBarrierBreeched), - b->nInitialBarrierHeight - 1) : 0); - } - else - { - __ptw32_mcs_lock_release(&node); - /* - * Use the non-cancelable version of sem_wait(). - * - * It is possible that all nInitialBarrierHeight-1 threads are - * at this point when the last thread enters the barrier, resets - * nCurrentBarrierHeight = nInitialBarrierHeight and leaves. - * If pthread_barrier_destroy is called at that moment then the - * barrier will be destroyed along with the semas. - */ - result = __ptw32_semwait (&(b->semBarrierBreeched)); - } - - if ((__PTW32_INTERLOCKED_LONG)__PTW32_INTERLOCKED_INCREMENT_LONG ((__PTW32_INTERLOCKED_LONGPTR)&b->nCurrentBarrierHeight) - == (__PTW32_INTERLOCKED_LONG)b->nInitialBarrierHeight) - { - /* - * We are the last thread to cross this barrier - */ - __ptw32_mcs_lock_release(&b->proxynode); - if (0 == result) - { - result = PTHREAD_BARRIER_SERIAL_THREAD; - } - } - - return (result); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_barrierattr_destroy.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_barrierattr_destroy.c deleted file mode 100644 index b4bf719..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_barrierattr_destroy.c +++ /dev/null @@ -1,85 +0,0 @@ -/* - * pthread_barrier_attr_destroy.c - * - * Description: - * This translation unit implements barrier primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_barrierattr_destroy (pthread_barrierattr_t * attr) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Destroys a barrier attributes object. The object can - * no longer be used. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_barrierattr_t - * - * - * DESCRIPTION - * Destroys a barrier attributes object. The object can - * no longer be used. - * - * NOTES: - * 1) Does not affect barrieres created using 'attr' - * - * RESULTS - * 0 successfully released attr, - * EINVAL 'attr' is invalid. - * - * ------------------------------------------------------ - */ -{ - int result = 0; - - if (attr == NULL || *attr == NULL) - { - result = EINVAL; - } - else - { - pthread_barrierattr_t ba = *attr; - - *attr = NULL; - free (ba); - } - - return (result); -} /* pthread_barrierattr_destroy */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_barrierattr_getpshared.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_barrierattr_getpshared.c deleted file mode 100644 index dd26705..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_barrierattr_getpshared.c +++ /dev/null @@ -1,97 +0,0 @@ -/* - * pthread_barrier_attr_getpshared.c - * - * Description: - * This translation unit implements barrier primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_barrierattr_getpshared (const pthread_barrierattr_t * attr, - int *pshared) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Determine whether barriers created with 'attr' can be - * shared between processes. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_barrierattr_t - * - * pshared - * will be set to one of: - * - * PTHREAD_PROCESS_SHARED - * May be shared if in shared memory - * - * PTHREAD_PROCESS_PRIVATE - * Cannot be shared. - * - * - * DESCRIPTION - * Mutexes creatd with 'attr' can be shared between - * processes if pthread_barrier_t variable is allocated - * in memory shared by these processes. - * NOTES: - * 1) pshared barriers MUST be allocated in shared - * memory. - * 2) The following macro is defined if shared barriers - * are supported: - * _POSIX_THREAD_PROCESS_SHARED - * - * RESULTS - * 0 successfully retrieved attribute, - * EINVAL 'attr' is invalid, - * - * ------------------------------------------------------ - */ -{ - int result; - - if ((attr != NULL && *attr != NULL) && (pshared != NULL)) - { - *pshared = (*attr)->pshared; - result = 0; - } - else - { - result = EINVAL; - } - - return (result); -} /* pthread_barrierattr_getpshared */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_barrierattr_init.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_barrierattr_init.c deleted file mode 100644 index 6aac0eb..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_barrierattr_init.c +++ /dev/null @@ -1,87 +0,0 @@ -/* - * pthread_barrier_attr_init.c - * - * Description: - * This translation unit implements barrier primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_barrierattr_init (pthread_barrierattr_t * attr) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Initializes a barrier attributes object with default - * attributes. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_barrierattr_t - * - * - * DESCRIPTION - * Initializes a barrier attributes object with default - * attributes. - * - * NOTES: - * 1) Used to define barrier types - * - * RESULTS - * 0 successfully initialized attr, - * ENOMEM insufficient memory for attr. - * - * ------------------------------------------------------ - */ -{ - pthread_barrierattr_t ba; - int result = 0; - - ba = (pthread_barrierattr_t) calloc (1, sizeof (*ba)); - - if (ba == NULL) - { - result = ENOMEM; - } - else - { - ba->pshared = PTHREAD_PROCESS_PRIVATE; - } - - *attr = ba; - - return (result); -} /* pthread_barrierattr_init */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_barrierattr_setpshared.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_barrierattr_setpshared.c deleted file mode 100644 index 6aa9314..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_barrierattr_setpshared.c +++ /dev/null @@ -1,121 +0,0 @@ -/* - * pthread_barrier_attr_setpshared.c - * - * Description: - * This translation unit implements barrier primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_barrierattr_setpshared (pthread_barrierattr_t * attr, int pshared) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Barriers created with 'attr' can be shared between - * processes if pthread_barrier_t variable is allocated - * in memory shared by these processes. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_barrierattr_t - * - * pshared - * must be one of: - * - * PTHREAD_PROCESS_SHARED - * May be shared if in shared memory - * - * PTHREAD_PROCESS_PRIVATE - * Cannot be shared. - * - * DESCRIPTION - * Mutexes creatd with 'attr' can be shared between - * processes if pthread_barrier_t variable is allocated - * in memory shared by these processes. - * - * NOTES: - * 1) pshared barriers MUST be allocated in shared - * memory. - * - * 2) The following macro is defined if shared barriers - * are supported: - * _POSIX_THREAD_PROCESS_SHARED - * - * RESULTS - * 0 successfully set attribute, - * EINVAL 'attr' or pshared is invalid, - * ENOSYS PTHREAD_PROCESS_SHARED not supported, - * - * ------------------------------------------------------ - */ -{ - int result; - - if ((attr != NULL && *attr != NULL) && - ((pshared == PTHREAD_PROCESS_SHARED) || - (pshared == PTHREAD_PROCESS_PRIVATE))) - { - if (pshared == PTHREAD_PROCESS_SHARED) - { - -#if !defined( _POSIX_THREAD_PROCESS_SHARED ) - - result = ENOSYS; - pshared = PTHREAD_PROCESS_PRIVATE; - -#else - - result = 0; - -#endif /* _POSIX_THREAD_PROCESS_SHARED */ - - } - else - { - result = 0; - } - - (*attr)->pshared = pshared; - } - else - { - result = EINVAL; - } - - return (result); - -} /* pthread_barrierattr_setpshared */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_cancel.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_cancel.c deleted file mode 100644 index fddf216..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_cancel.c +++ /dev/null @@ -1,195 +0,0 @@ -/* - * pthread_cancel.c - * - * Description: - * POSIX thread functions related to thread cancellation. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" -#include "context.h" - -static void -__ptw32_cancel_self (void) -{ - __ptw32_throw (__PTW32_EPS_CANCEL); - - /* Never reached */ -} - -static void CALLBACK -__ptw32_cancel_callback (ULONG_PTR unused) -{ - __ptw32_throw (__PTW32_EPS_CANCEL); - - /* Never reached */ -} - -/* - * __ptw32_Registercancellation() - - * Must have args of same type as QueueUserAPCEx because this function - * is a substitute for QueueUserAPCEx if it's not available. - */ -DWORD -__ptw32_Registercancellation (PAPCFUNC unused1, HANDLE threadH, DWORD unused2) -{ - CONTEXT context; - - context.ContextFlags = CONTEXT_CONTROL; - GetThreadContext (threadH, &context); - __PTW32_PROGCTR (context) = (DWORD_PTR) __ptw32_cancel_self; - SetThreadContext (threadH, &context); - return 0; -} - -int -pthread_cancel (pthread_t thread) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function requests cancellation of 'thread'. - * - * PARAMETERS - * thread - * reference to an instance of pthread_t - * - * - * DESCRIPTION - * This function requests cancellation of 'thread'. - * NOTE: cancellation is asynchronous; use pthread_join to - * wait for termination of 'thread' if necessary. - * - * RESULTS - * 0 successfully requested cancellation, - * ESRCH no thread found corresponding to 'thread', - * ENOMEM implicit self thread create failed. - * ------------------------------------------------------ - */ -{ - int result; - int cancel_self; - pthread_t self; - __ptw32_thread_t * tp; - __ptw32_mcs_local_node_t stateLock; - - /* - * Validate the thread id. This method works for pthreads-win32 because - * pthread_kill and pthread_t are designed to accommodate it, but the - * method is not portable. - */ - result = pthread_kill (thread, 0); - if (0 != result) - { - return result; - } - - if ((self = pthread_self ()).p == NULL) - { - return ENOMEM; - }; - - /* - * For self cancellation we need to ensure that a thread can't - * deadlock itself trying to cancel itself asynchronously - * (pthread_cancel is required to be an async-cancel - * safe function). - */ - cancel_self = pthread_equal (thread, self); - - tp = (__ptw32_thread_t *) thread.p; - - /* - * Lock for async-cancel safety. - */ - __ptw32_mcs_lock_acquire (&tp->stateLock, &stateLock); - - if (tp->cancelType == PTHREAD_CANCEL_ASYNCHRONOUS - && tp->cancelState == PTHREAD_CANCEL_ENABLE - && tp->state < PThreadStateCanceling) - { - if (cancel_self) - { - tp->state = PThreadStateCanceling; - tp->cancelState = PTHREAD_CANCEL_DISABLE; - - __ptw32_mcs_lock_release (&stateLock); - __ptw32_throw (__PTW32_EPS_CANCEL); - - /* Never reached */ - } - else - { - HANDLE threadH = tp->threadH; - - SuspendThread (threadH); - - if (WaitForSingleObject (threadH, 0) == WAIT_TIMEOUT) - { - tp->state = PThreadStateCanceling; - tp->cancelState = PTHREAD_CANCEL_DISABLE; - /* - * If alertdrv and QueueUserAPCEx is available then the following - * will result in a call to QueueUserAPCEx with the args given, otherwise - * this will result in a call to __ptw32_Registercancellation and only - * the threadH arg will be used. - */ - __ptw32_register_cancellation ((PAPCFUNC)__ptw32_cancel_callback, threadH, 0); - __ptw32_mcs_lock_release (&stateLock); - ResumeThread (threadH); - } - } - } - else - { - /* - * Set for deferred cancellation. - */ - if (tp->state < PThreadStateCancelPending) - { - tp->state = PThreadStateCancelPending; - if (!SetEvent (tp->cancelEvent)) - { - result = ESRCH; - } - } - else if (tp->state >= PThreadStateCanceling) - { - result = ESRCH; - } - - __ptw32_mcs_lock_release (&stateLock); - } - - return (result); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_cond_destroy.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_cond_destroy.c deleted file mode 100644 index f1928fd..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_cond_destroy.c +++ /dev/null @@ -1,255 +0,0 @@ -/* - * pthread_cond_destroy.c - * - * Description: - * This translation unit implements condition variables and their primitives. - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -int -pthread_cond_destroy (pthread_cond_t * cond) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function destroys a condition variable - * - * - * PARAMETERS - * cond - * pointer to an instance of pthread_cond_t - * - * - * DESCRIPTION - * This function destroys a condition variable. - * - * NOTES: - * 1) A condition variable can be destroyed - * immediately after all the threads that - * are blocked on it are awakened. e.g. - * - * struct list { - * pthread_mutex_t lm; - * ... - * } - * - * struct elt { - * key k; - * int busy; - * pthread_cond_t notbusy; - * ... - * } - * - * - * struct elt * - * list_find(struct list *lp, key k) - * { - * struct elt *ep; - * - * pthread_mutex_lock(&lp->lm); - * while ((ep = find_elt(l,k) != NULL) && ep->busy) - * pthread_cond_wait(&ep->notbusy, &lp->lm); - * if (ep != NULL) - * ep->busy = 1; - * pthread_mutex_unlock(&lp->lm); - * return(ep); - * } - * - * delete_elt(struct list *lp, struct elt *ep) - * { - * pthread_mutex_lock(&lp->lm); - * assert(ep->busy); - * ... remove ep from list ... - * ep->busy = 0; - * (A) pthread_cond_broadcast(&ep->notbusy); - * pthread_mutex_unlock(&lp->lm); - * (B) pthread_cond_destroy(&rp->notbusy); - * free(ep); - * } - * - * In this example, the condition variable - * and its list element may be freed (line B) - * immediately after all threads waiting for - * it are awakened (line A), since the mutex - * and the code ensure that no other thread - * can touch the element to be deleted. - * - * RESULTS - * 0 successfully released condition variable, - * EINVAL 'cond' is invalid, - * EBUSY 'cond' is in use, - * - * ------------------------------------------------------ - */ -{ - pthread_cond_t cv; - int result = 0, result1 = 0, result2 = 0; - - /* - * Assuming any race condition here is harmless. - */ - if (cond == NULL || *cond == NULL) - { - return EINVAL; - } - - if (*cond != PTHREAD_COND_INITIALIZER) - { - __ptw32_mcs_local_node_t node; - __ptw32_mcs_lock_acquire(&__ptw32_cond_list_lock, &node); - - cv = *cond; - - /* - * Close the gate; this will synchronize this thread with - * all already signaled waiters to let them retract their - * waiter status - SEE NOTE 1 ABOVE!!! - */ - if (__ptw32_semwait (&(cv->semBlockLock)) != 0) /* Non-cancelable */ - { - result = __PTW32_GET_ERRNO(); - } - else - { - /* - * !TRY! lock mtxUnblockLock; try will detect busy condition - * and will not cause a deadlock with respect to concurrent - * signal/broadcast. - */ - if ((result = pthread_mutex_trylock (&(cv->mtxUnblockLock))) != 0) - { - (void) sem_post (&(cv->semBlockLock)); - } - } - - if (result != 0) - { - __ptw32_mcs_lock_release(&node); - return result; - } - - /* - * Check whether cv is still busy (still has waiters) - */ - if (cv->nWaitersBlocked > cv->nWaitersGone) - { - if (sem_post (&(cv->semBlockLock)) != 0) - { - result = __PTW32_GET_ERRNO(); - } - result1 = pthread_mutex_unlock (&(cv->mtxUnblockLock)); - result2 = EBUSY; - } - else - { - /* - * Now it is safe to destroy - */ - *cond = NULL; - - if (sem_destroy (&(cv->semBlockLock)) != 0) - { - result = __PTW32_GET_ERRNO(); - } - if (sem_destroy (&(cv->semBlockQueue)) != 0) - { - result1 = __PTW32_GET_ERRNO(); - } - if ((result2 = pthread_mutex_unlock (&(cv->mtxUnblockLock))) == 0) - { - result2 = pthread_mutex_destroy (&(cv->mtxUnblockLock)); - } - - /* Unlink the CV from the list */ - - if (__ptw32_cond_list_head == cv) - { - __ptw32_cond_list_head = cv->next; - } - else - { - cv->prev->next = cv->next; - } - - if (__ptw32_cond_list_tail == cv) - { - __ptw32_cond_list_tail = cv->prev; - } - else - { - cv->next->prev = cv->prev; - } - - (void) free (cv); - } - - __ptw32_mcs_lock_release(&node); - } - else - { - __ptw32_mcs_local_node_t node; - /* - * See notes in __ptw32_cond_check_need_init() above also. - */ - __ptw32_mcs_lock_acquire(&__ptw32_cond_test_init_lock, &node); - - /* - * Check again. - */ - if (*cond == PTHREAD_COND_INITIALIZER) - { - /* - * This is all we need to do to destroy a statically - * initialised cond that has not yet been used (initialised). - * If we get to here, another thread waiting to initialise - * this cond will get an EINVAL. That's OK. - */ - *cond = NULL; - } - else - { - /* - * The cv has been initialised while we were waiting - * so assume it's in use. - */ - result = EBUSY; - } - - __ptw32_mcs_lock_release(&node); - } - - return ((result != 0) ? result : ((result1 != 0) ? result1 : result2)); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_cond_init.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_cond_init.c deleted file mode 100644 index 127c7b4..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_cond_init.c +++ /dev/null @@ -1,169 +0,0 @@ -/* - * pthread_cond_init.c - * - * Description: - * This translation unit implements condition variables and their primitives. - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_cond_init (pthread_cond_t * cond, const pthread_condattr_t * attr) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function initializes a condition variable. - * - * PARAMETERS - * cond - * pointer to an instance of pthread_cond_t - * - * attr - * specifies optional creation attributes. - * - * - * DESCRIPTION - * This function initializes a condition variable. - * - * RESULTS - * 0 successfully created condition variable, - * EINVAL 'attr' is invalid, - * EAGAIN insufficient resources (other than - * memory, - * ENOMEM insufficient memory, - * EBUSY 'cond' is already initialized, - * - * ------------------------------------------------------ - */ -{ - int result; - pthread_cond_t cv = NULL; - - if (cond == NULL) - { - return EINVAL; - } - - if ((attr != NULL && *attr != NULL) && - ((*attr)->pshared == PTHREAD_PROCESS_SHARED)) - { - /* - * Creating condition variable that can be shared between - * processes. - */ - result = ENOSYS; - goto DONE; - } - - cv = (pthread_cond_t) calloc (1, sizeof (*cv)); - - if (cv == NULL) - { - result = ENOMEM; - goto DONE; - } - - cv->nWaitersBlocked = 0; - cv->nWaitersToUnblock = 0; - cv->nWaitersGone = 0; - - if (sem_init (&(cv->semBlockLock), 0, 1) != 0) - { - result = __PTW32_GET_ERRNO(); - goto FAIL0; - } - - if (sem_init (&(cv->semBlockQueue), 0, 0) != 0) - { - result = __PTW32_GET_ERRNO(); - goto FAIL1; - } - - if ((result = pthread_mutex_init (&(cv->mtxUnblockLock), 0)) != 0) - { - goto FAIL2; - } - - result = 0; - - goto DONE; - - /* - * ------------- - * Failed... - * ------------- - */ -FAIL2: - (void) sem_destroy (&(cv->semBlockQueue)); - -FAIL1: - (void) sem_destroy (&(cv->semBlockLock)); - -FAIL0: - (void) free (cv); - cv = NULL; - -DONE: - if (0 == result) - { - __ptw32_mcs_local_node_t node; - - __ptw32_mcs_lock_acquire(&__ptw32_cond_list_lock, &node); - - cv->next = NULL; - cv->prev = __ptw32_cond_list_tail; - - if (__ptw32_cond_list_tail != NULL) - { - __ptw32_cond_list_tail->next = cv; - } - - __ptw32_cond_list_tail = cv; - - if (__ptw32_cond_list_head == NULL) - { - __ptw32_cond_list_head = cv; - } - - __ptw32_mcs_lock_release(&node); - } - - *cond = cv; - - return result; - -} /* pthread_cond_init */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_cond_signal.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_cond_signal.c deleted file mode 100644 index 226fd13..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_cond_signal.c +++ /dev/null @@ -1,233 +0,0 @@ -/* - * pthread_cond_signal.c - * - * Description: - * This translation unit implements condition variables and their primitives. - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * ------------------------------------------------------------- - * Algorithm: - * See the comments at the top of pthread_cond_wait.c. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -static INLINE int -__ptw32_cond_unblock (pthread_cond_t * cond, int unblockAll) - /* - * Notes. - * - * Does not use the external mutex for synchronisation, - * therefore semBlockLock is needed. - * mtxUnblockLock is for LEVEL-2 synch. LEVEL-2 is the - * state where the external mutex is not necessarily locked by - * any thread, ie. between cond_wait unlocking and re-acquiring - * the lock after having been signaled or a timeout or - * cancellation. - * - * Uses the following CV elements: - * nWaitersBlocked - * nWaitersToUnblock - * nWaitersGone - * mtxUnblockLock - * semBlockLock - * semBlockQueue - */ -{ - int result; - pthread_cond_t cv; - int nSignalsToIssue; - - if (cond == NULL || *cond == NULL) - { - return EINVAL; - } - - cv = *cond; - - /* - * No-op if the CV is static and hasn't been initialised yet. - * Assuming that any race condition is harmless. - */ - if (cv == PTHREAD_COND_INITIALIZER) - { - return 0; - } - - if ((result = pthread_mutex_lock (&(cv->mtxUnblockLock))) != 0) - { - return result; - } - - if (0 != cv->nWaitersToUnblock) - { - if (0 == cv->nWaitersBlocked) - { - return pthread_mutex_unlock (&(cv->mtxUnblockLock)); - } - if (unblockAll) - { - cv->nWaitersToUnblock += (nSignalsToIssue = cv->nWaitersBlocked); - cv->nWaitersBlocked = 0; - } - else - { - nSignalsToIssue = 1; - cv->nWaitersToUnblock++; - cv->nWaitersBlocked--; - } - } - else if (cv->nWaitersBlocked > cv->nWaitersGone) - { - /* Use the non-cancellable version of sem_wait() */ - if (__ptw32_semwait (&(cv->semBlockLock)) != 0) - { - result = __PTW32_GET_ERRNO(); - (void) pthread_mutex_unlock (&(cv->mtxUnblockLock)); - return result; - } - if (0 != cv->nWaitersGone) - { - cv->nWaitersBlocked -= cv->nWaitersGone; - cv->nWaitersGone = 0; - } - if (unblockAll) - { - nSignalsToIssue = cv->nWaitersToUnblock = cv->nWaitersBlocked; - cv->nWaitersBlocked = 0; - } - else - { - nSignalsToIssue = cv->nWaitersToUnblock = 1; - cv->nWaitersBlocked--; - } - } - else - { - return pthread_mutex_unlock (&(cv->mtxUnblockLock)); - } - - if ((result = pthread_mutex_unlock (&(cv->mtxUnblockLock))) == 0) - { - if (sem_post_multiple (&(cv->semBlockQueue), nSignalsToIssue) != 0) - { - result = __PTW32_GET_ERRNO(); - } - } - - return result; - -} /* __ptw32_cond_unblock */ - -int -pthread_cond_signal (pthread_cond_t * cond) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function signals a condition variable, waking - * one waiting thread. - * If SCHED_FIFO or SCHED_RR policy threads are waiting - * the highest priority waiter is awakened; otherwise, - * an unspecified waiter is awakened. - * - * PARAMETERS - * cond - * pointer to an instance of pthread_cond_t - * - * - * DESCRIPTION - * This function signals a condition variable, waking - * one waiting thread. - * If SCHED_FIFO or SCHED_RR policy threads are waiting - * the highest priority waiter is awakened; otherwise, - * an unspecified waiter is awakened. - * - * NOTES: - * - * 1) Use when any waiter can respond and only one need - * respond (all waiters being equal). - * - * RESULTS - * 0 successfully signaled condition, - * EINVAL 'cond' is invalid, - * - * ------------------------------------------------------ - */ -{ - /* - * The '0'(FALSE) unblockAll arg means unblock ONE waiter. - */ - return (__ptw32_cond_unblock (cond, 0)); - -} /* pthread_cond_signal */ - -int -pthread_cond_broadcast (pthread_cond_t * cond) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function broadcasts the condition variable, - * waking all current waiters. - * - * PARAMETERS - * cond - * pointer to an instance of pthread_cond_t - * - * - * DESCRIPTION - * This function signals a condition variable, waking - * all waiting threads. - * - * NOTES: - * - * 1) Use when more than one waiter may respond to - * predicate change or if any waiting thread may - * not be able to respond - * - * RESULTS - * 0 successfully signalled condition to all - * waiting threads, - * EINVAL 'cond' is invalid - * ENOSPC a required resource has been exhausted, - * - * ------------------------------------------------------ - */ -{ - /* - * The TRUE unblockAll arg means unblock ALL waiters. - */ - return (__ptw32_cond_unblock (cond, __PTW32_TRUE)); - -} /* pthread_cond_broadcast */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_cond_wait.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_cond_wait.c deleted file mode 100644 index fdb11ce..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_cond_wait.c +++ /dev/null @@ -1,568 +0,0 @@ -/* - * pthread_cond_wait.c - * - * Description: - * This translation unit implements condition variables and their primitives. - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * ------------------------------------------------------------- - * Algorithm: - * The algorithm used in this implementation is that developed by - * Alexander Terekhov in colaboration with Louis Thomas. The bulk - * of the discussion is recorded in the file README.CV, which contains - * several generations of both colaborators original algorithms. The final - * algorithm used here is the one referred to as - * - * Algorithm 8a / IMPL_SEM,UNBLOCK_STRATEGY == UNBLOCK_ALL - * - * presented below in pseudo-code as it appeared: - * - * - * given: - * semBlockLock - bin.semaphore - * semBlockQueue - semaphore - * mtxExternal - mutex or CS - * mtxUnblockLock - mutex or CS - * nWaitersGone - int - * nWaitersBlocked - int - * nWaitersToUnblock - int - * - * wait( timeout ) { - * - * [auto: register int result ] // error checking omitted - * [auto: register int nSignalsWasLeft ] - * [auto: register int nWaitersWasGone ] - * - * sem_wait( semBlockLock ); - * nWaitersBlocked++; - * sem_post( semBlockLock ); - * - * unlock( mtxExternal ); - * bTimedOut = sem_wait( semBlockQueue,timeout ); - * - * lock( mtxUnblockLock ); - * if ( 0 != (nSignalsWasLeft = nWaitersToUnblock) ) { - * if ( bTimeout ) { // timeout (or canceled) - * if ( 0 != nWaitersBlocked ) { - * nWaitersBlocked--; - * } - * else { - * nWaitersGone++; // count spurious wakeups. - * } - * } - * if ( 0 == --nWaitersToUnblock ) { - * if ( 0 != nWaitersBlocked ) { - * sem_post( semBlockLock ); // open the gate. - * nSignalsWasLeft = 0; // do not open the gate - * // below again. - * } - * else if ( 0 != (nWaitersWasGone = nWaitersGone) ) { - * nWaitersGone = 0; - * } - * } - * } - * else if ( INT_MAX/2 == ++nWaitersGone ) { // timeout/canceled or - * // spurious semaphore :-) - * sem_wait( semBlockLock ); - * nWaitersBlocked -= nWaitersGone; // something is going on here - * // - test of timeouts? :-) - * sem_post( semBlockLock ); - * nWaitersGone = 0; - * } - * unlock( mtxUnblockLock ); - * - * if ( 1 == nSignalsWasLeft ) { - * if ( 0 != nWaitersWasGone ) { - * // sem_adjust( semBlockQueue,-nWaitersWasGone ); - * while ( nWaitersWasGone-- ) { - * sem_wait( semBlockQueue ); // better now than spurious later - * } - * } sem_post( semBlockLock ); // open the gate - * } - * - * lock( mtxExternal ); - * - * return ( bTimedOut ) ? ETIMEOUT : 0; - * } - * - * signal(bAll) { - * - * [auto: register int result ] - * [auto: register int nSignalsToIssue] - * - * lock( mtxUnblockLock ); - * - * if ( 0 != nWaitersToUnblock ) { // the gate is closed!!! - * if ( 0 == nWaitersBlocked ) { // NO-OP - * return unlock( mtxUnblockLock ); - * } - * if (bAll) { - * nWaitersToUnblock += nSignalsToIssue=nWaitersBlocked; - * nWaitersBlocked = 0; - * } - * else { - * nSignalsToIssue = 1; - * nWaitersToUnblock++; - * nWaitersBlocked--; - * } - * } - * else if ( nWaitersBlocked > nWaitersGone ) { // HARMLESS RACE CONDITION! - * sem_wait( semBlockLock ); // close the gate - * if ( 0 != nWaitersGone ) { - * nWaitersBlocked -= nWaitersGone; - * nWaitersGone = 0; - * } - * if (bAll) { - * nSignalsToIssue = nWaitersToUnblock = nWaitersBlocked; - * nWaitersBlocked = 0; - * } - * else { - * nSignalsToIssue = nWaitersToUnblock = 1; - * nWaitersBlocked--; - * } - * } - * else { // NO-OP - * return unlock( mtxUnblockLock ); - * } - * - * unlock( mtxUnblockLock ); - * sem_post( semBlockQueue,nSignalsToIssue ); - * return result; - * } - * ------------------------------------------------------------- - * - * Algorithm 9 / IMPL_SEM,UNBLOCK_STRATEGY == UNBLOCK_ALL - * - * presented below in pseudo-code; basically 8a... - * ...BUT W/O "spurious wakes" prevention: - * - * - * given: - * semBlockLock - bin.semaphore - * semBlockQueue - semaphore - * mtxExternal - mutex or CS - * mtxUnblockLock - mutex or CS - * nWaitersGone - int - * nWaitersBlocked - int - * nWaitersToUnblock - int - * - * wait( timeout ) { - * - * [auto: register int result ] // error checking omitted - * [auto: register int nSignalsWasLeft ] - * - * sem_wait( semBlockLock ); - * ++nWaitersBlocked; - * sem_post( semBlockLock ); - * - * unlock( mtxExternal ); - * bTimedOut = sem_wait( semBlockQueue,timeout ); - * - * lock( mtxUnblockLock ); - * if ( 0 != (nSignalsWasLeft = nWaitersToUnblock) ) { - * --nWaitersToUnblock; - * } - * else if ( INT_MAX/2 == ++nWaitersGone ) { // timeout/canceled or - * // spurious semaphore :-) - * sem_wait( semBlockLock ); - * nWaitersBlocked -= nWaitersGone; // something is going on here - * // - test of timeouts? :-) - * sem_post( semBlockLock ); - * nWaitersGone = 0; - * } - * unlock( mtxUnblockLock ); - * - * if ( 1 == nSignalsWasLeft ) { - * sem_post( semBlockLock ); // open the gate - * } - * - * lock( mtxExternal ); - * - * return ( bTimedOut ) ? ETIMEOUT : 0; - * } - * - * signal(bAll) { - * - * [auto: register int result ] - * [auto: register int nSignalsToIssue] - * - * lock( mtxUnblockLock ); - * - * if ( 0 != nWaitersToUnblock ) { // the gate is closed!!! - * if ( 0 == nWaitersBlocked ) { // NO-OP - * return unlock( mtxUnblockLock ); - * } - * if (bAll) { - * nWaitersToUnblock += nSignalsToIssue=nWaitersBlocked; - * nWaitersBlocked = 0; - * } - * else { - * nSignalsToIssue = 1; - * ++nWaitersToUnblock; - * --nWaitersBlocked; - * } - * } - * else if ( nWaitersBlocked > nWaitersGone ) { // HARMLESS RACE CONDITION! - * sem_wait( semBlockLock ); // close the gate - * if ( 0 != nWaitersGone ) { - * nWaitersBlocked -= nWaitersGone; - * nWaitersGone = 0; - * } - * if (bAll) { - * nSignalsToIssue = nWaitersToUnblock = nWaitersBlocked; - * nWaitersBlocked = 0; - * } - * else { - * nSignalsToIssue = nWaitersToUnblock = 1; - * --nWaitersBlocked; - * } - * } - * else { // NO-OP - * return unlock( mtxUnblockLock ); - * } - * - * unlock( mtxUnblockLock ); - * sem_post( semBlockQueue,nSignalsToIssue ); - * return result; - * } - * ------------------------------------------------------------- - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -/* - * Arguments for cond_wait_cleanup, since we can only pass a - * single void * to it. - */ -typedef struct -{ - pthread_mutex_t *mutexPtr; - pthread_cond_t cv; - int *resultPtr; -} __ptw32_cond_wait_cleanup_args_t; - -static void __PTW32_CDECL -__ptw32_cond_wait_cleanup (void *args) -{ - __ptw32_cond_wait_cleanup_args_t *cleanup_args = - (__ptw32_cond_wait_cleanup_args_t *) args; - pthread_cond_t cv = cleanup_args->cv; - int *resultPtr = cleanup_args->resultPtr; - int nSignalsWasLeft; - int result; - - /* - * Whether we got here as a result of signal/broadcast or because of - * timeout on wait or thread cancellation we indicate that we are no - * longer waiting. The waiter is responsible for adjusting waiters - * (to)unblock(ed) counts (protected by unblock lock). - */ - if ((result = pthread_mutex_lock (&(cv->mtxUnblockLock))) != 0) - { - *resultPtr = result; - return; - } - - if (0 != (nSignalsWasLeft = cv->nWaitersToUnblock)) - { - --(cv->nWaitersToUnblock); - } - else if (INT_MAX / 2 == ++(cv->nWaitersGone)) - { - /* Use the non-cancellable version of sem_wait() */ - if (__ptw32_semwait (&(cv->semBlockLock)) != 0) - { - *resultPtr = __PTW32_GET_ERRNO(); - /* - * This is a fatal error for this CV, - * so we deliberately don't unlock - * cv->mtxUnblockLock before returning. - */ - return; - } - cv->nWaitersBlocked -= cv->nWaitersGone; - if (sem_post (&(cv->semBlockLock)) != 0) - { - *resultPtr = __PTW32_GET_ERRNO(); - /* - * This is a fatal error for this CV, - * so we deliberately don't unlock - * cv->mtxUnblockLock before returning. - */ - return; - } - cv->nWaitersGone = 0; - } - - if ((result = pthread_mutex_unlock (&(cv->mtxUnblockLock))) != 0) - { - *resultPtr = result; - return; - } - - if (1 == nSignalsWasLeft) - { - if (sem_post (&(cv->semBlockLock)) != 0) - { - *resultPtr = __PTW32_GET_ERRNO(); - return; - } - } - - /* - * XSH: Upon successful return, the mutex has been locked and is owned - * by the calling thread. - */ - if ((result = pthread_mutex_lock (cleanup_args->mutexPtr)) != 0) - { - *resultPtr = result; - } -} /* __ptw32_cond_wait_cleanup */ - -static INLINE int -__ptw32_cond_timedwait (pthread_cond_t * cond, - pthread_mutex_t * mutex, const struct timespec *abstime) -{ - int result = 0; - pthread_cond_t cv; - __ptw32_cond_wait_cleanup_args_t cleanup_args; - - if (cond == NULL || *cond == NULL) - { - return EINVAL; - } - - /* - * We do a quick check to see if we need to do more work - * to initialise a static condition variable. We check - * again inside the guarded section of __ptw32_cond_check_need_init() - * to avoid race conditions. - */ - if (*cond == PTHREAD_COND_INITIALIZER) - { - result = __ptw32_cond_check_need_init (cond); - } - - if (result != 0 && result != EBUSY) - { - return result; - } - - cv = *cond; - - /* Thread can be cancelled in sem_wait() but this is OK */ - if (sem_wait (&(cv->semBlockLock)) != 0) - { - return __PTW32_GET_ERRNO(); - } - - ++(cv->nWaitersBlocked); - - if (sem_post (&(cv->semBlockLock)) != 0) - { - return __PTW32_GET_ERRNO(); - } - - /* - * Setup this waiter cleanup handler - */ - cleanup_args.mutexPtr = mutex; - cleanup_args.cv = cv; - cleanup_args.resultPtr = &result; - -#if defined (__PTW32_CONFIG_MSVC7) -#pragma inline_depth(0) -#endif - pthread_cleanup_push (__ptw32_cond_wait_cleanup, (void *) &cleanup_args); - - /* - * Now we can release 'mutex' and... - */ - if ((result = pthread_mutex_unlock (mutex)) == 0) - { - - /* - * ...wait to be awakened by - * pthread_cond_signal, or - * pthread_cond_broadcast, or - * timeout, or - * thread cancellation - * - * Note: - * - * sem_timedwait is a cancellation point, - * hence providing the mechanism for making - * pthread_cond_wait a cancellation point. - * We use the cleanup mechanism to ensure we - * re-lock the mutex and adjust (to)unblock(ed) waiters - * counts if we are cancelled, timed out or signalled. - */ - if (sem_timedwait (&(cv->semBlockQueue), abstime) != 0) - { - result = __PTW32_GET_ERRNO(); - } - } - - /* - * Always cleanup - */ - pthread_cleanup_pop (1); -#if defined (__PTW32_CONFIG_MSVC7) -#pragma inline_depth() -#endif - - /* - * "result" can be modified by the cleanup handler. - */ - return result; - -} /* __ptw32_cond_timedwait */ - - -int -pthread_cond_wait (pthread_cond_t * cond, pthread_mutex_t * mutex) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function waits on a condition variable until - * awakened by a signal or broadcast. - * - * Caller MUST be holding the mutex lock; the - * lock is released and the caller is blocked waiting - * on 'cond'. When 'cond' is signaled, the mutex - * is re-acquired before returning to the caller. - * - * PARAMETERS - * cond - * pointer to an instance of pthread_cond_t - * - * mutex - * pointer to an instance of pthread_mutex_t - * - * - * DESCRIPTION - * This function waits on a condition variable until - * awakened by a signal or broadcast. - * - * NOTES: - * - * 1) The function must be called with 'mutex' LOCKED - * by the calling thread, or undefined behaviour - * will result. - * - * 2) This routine atomically releases 'mutex' and causes - * the calling thread to block on the condition variable. - * The blocked thread may be awakened by - * pthread_cond_signal or - * pthread_cond_broadcast. - * - * Upon successful completion, the 'mutex' has been locked and - * is owned by the calling thread. - * - * - * RESULTS - * 0 caught condition; mutex released, - * EINVAL 'cond' or 'mutex' is invalid, - * EINVAL different mutexes for concurrent waits, - * EINVAL mutex is not held by the calling thread, - * - * ------------------------------------------------------ - */ -{ - /* - * The NULL abstime arg means INFINITE waiting. - */ - return (__ptw32_cond_timedwait (cond, mutex, NULL)); - -} /* pthread_cond_wait */ - - -int -pthread_cond_timedwait (pthread_cond_t * cond, - pthread_mutex_t * mutex, - const struct timespec *abstime) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function waits on a condition variable either until - * awakened by a signal or broadcast; or until the time - * specified by abstime passes. - * - * PARAMETERS - * cond - * pointer to an instance of pthread_cond_t - * - * mutex - * pointer to an instance of pthread_mutex_t - * - * abstime - * pointer to an instance of (const struct timespec) - * - * - * DESCRIPTION - * This function waits on a condition variable either until - * awakened by a signal or broadcast; or until the time - * specified by abstime passes. - * - * NOTES: - * 1) The function must be called with 'mutex' LOCKED - * by the calling thread, or undefined behaviour - * will result. - * - * 2) This routine atomically releases 'mutex' and causes - * the calling thread to block on the condition variable. - * The blocked thread may be awakened by - * pthread_cond_signal or - * pthread_cond_broadcast. - * - * - * RESULTS - * 0 caught condition; mutex released, - * EINVAL 'cond', 'mutex', or abstime is invalid, - * EINVAL different mutexes for concurrent waits, - * EINVAL mutex is not held by the calling thread, - * ETIMEDOUT abstime ellapsed before cond was signaled. - * - * ------------------------------------------------------ - */ -{ - if (abstime == NULL) - { - return EINVAL; - } - - return (__ptw32_cond_timedwait (cond, mutex, abstime)); - -} /* pthread_cond_timedwait */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_condattr_destroy.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_condattr_destroy.c deleted file mode 100644 index faaa97b..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_condattr_destroy.c +++ /dev/null @@ -1,88 +0,0 @@ -/* - * condvar_attr_destroy.c - * - * Description: - * This translation unit implements condition variables and their primitives. - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_condattr_destroy (pthread_condattr_t * attr) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Destroys a condition variable attributes object. - * The object can no longer be used. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_condattr_t - * - * - * DESCRIPTION - * Destroys a condition variable attributes object. - * The object can no longer be used. - * - * NOTES: - * 1) Does not affect condition variables created - * using 'attr' - * - * RESULTS - * 0 successfully released attr, - * EINVAL 'attr' is invalid. - * - * ------------------------------------------------------ - */ -{ - int result = 0; - - if (attr == NULL || *attr == NULL) - { - result = EINVAL; - } - else - { - (void) free (*attr); - - *attr = NULL; - result = 0; - } - - return result; - -} /* pthread_condattr_destroy */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_condattr_getpshared.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_condattr_getpshared.c deleted file mode 100644 index 8c3fea3..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_condattr_getpshared.c +++ /dev/null @@ -1,99 +0,0 @@ -/* - * pthread_condattr_getpshared.c - * - * Description: - * This translation unit implements condition variables and their primitives. - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_condattr_getpshared (const pthread_condattr_t * attr, int *pshared) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Determine whether condition variables created with 'attr' - * can be shared between processes. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_condattr_t - * - * pshared - * will be set to one of: - * - * PTHREAD_PROCESS_SHARED - * May be shared if in shared memory - * - * PTHREAD_PROCESS_PRIVATE - * Cannot be shared. - * - * - * DESCRIPTION - * Condition Variables created with 'attr' can be shared - * between processes if pthread_cond_t variable is allocated - * in memory shared by these processes. - * NOTES: - * 1) pshared condition variables MUST be allocated in - * shared memory. - * - * 2) The following macro is defined if shared mutexes - * are supported: - * _POSIX_THREAD_PROCESS_SHARED - * - * RESULTS - * 0 successfully retrieved attribute, - * EINVAL 'attr' or 'pshared' is invalid, - * - * ------------------------------------------------------ - */ -{ - int result; - - if ((attr != NULL && *attr != NULL) && (pshared != NULL)) - { - *pshared = (*attr)->pshared; - result = 0; - } - else - { - result = EINVAL; - } - - return result; - -} /* pthread_condattr_getpshared */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_condattr_init.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_condattr_init.c deleted file mode 100644 index 56b89fe..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_condattr_init.c +++ /dev/null @@ -1,89 +0,0 @@ -/* - * pthread_condattr_init.c - * - * Description: - * This translation unit implements condition variables and their primitives. - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_condattr_init (pthread_condattr_t * attr) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Initializes a condition variable attributes object - * with default attributes. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_condattr_t - * - * - * DESCRIPTION - * Initializes a condition variable attributes object - * with default attributes. - * - * NOTES: - * 1) Use to define condition variable types - * 2) It is up to the application to ensure - * that it doesn't re-init an attribute - * without destroying it first. Otherwise - * a memory leak is created. - * - * RESULTS - * 0 successfully initialized attr, - * ENOMEM insufficient memory for attr. - * - * ------------------------------------------------------ - */ -{ - pthread_condattr_t attr_result; - int result = 0; - - attr_result = (pthread_condattr_t) calloc (1, sizeof (*attr_result)); - - if (attr_result == NULL) - { - result = ENOMEM; - } - - *attr = attr_result; - - return result; - -} /* pthread_condattr_init */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_condattr_setpshared.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_condattr_setpshared.c deleted file mode 100644 index a9b5b9d..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_condattr_setpshared.c +++ /dev/null @@ -1,119 +0,0 @@ -/* - * pthread_condattr_setpshared.c - * - * Description: - * This translation unit implements condition variables and their primitives. - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_condattr_setpshared (pthread_condattr_t * attr, int pshared) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Mutexes created with 'attr' can be shared between - * processes if pthread_mutex_t variable is allocated - * in memory shared by these processes. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_mutexattr_t - * - * pshared - * must be one of: - * - * PTHREAD_PROCESS_SHARED - * May be shared if in shared memory - * - * PTHREAD_PROCESS_PRIVATE - * Cannot be shared. - * - * DESCRIPTION - * Mutexes creatd with 'attr' can be shared between - * processes if pthread_mutex_t variable is allocated - * in memory shared by these processes. - * - * NOTES: - * 1) pshared mutexes MUST be allocated in shared - * memory. - * - * 2) The following macro is defined if shared mutexes - * are supported: - * _POSIX_THREAD_PROCESS_SHARED - * - * RESULTS - * 0 successfully set attribute, - * EINVAL 'attr' or pshared is invalid, - * ENOSYS PTHREAD_PROCESS_SHARED not supported, - * - * ------------------------------------------------------ - */ -{ - int result; - - if ((attr != NULL && *attr != NULL) - && ((pshared == PTHREAD_PROCESS_SHARED) - || (pshared == PTHREAD_PROCESS_PRIVATE))) - { - if (pshared == PTHREAD_PROCESS_SHARED) - { - -#if !defined( _POSIX_THREAD_PROCESS_SHARED ) - result = ENOSYS; - pshared = PTHREAD_PROCESS_PRIVATE; -#else - result = 0; - -#endif /* _POSIX_THREAD_PROCESS_SHARED */ - - } - else - { - result = 0; - } - - (*attr)->pshared = pshared; - } - else - { - result = EINVAL; - } - - return result; - -} /* pthread_condattr_setpshared */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_delay_np.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_delay_np.c deleted file mode 100644 index 9aad640..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_delay_np.c +++ /dev/null @@ -1,174 +0,0 @@ -/* - * pthreads_delay_np.c - * - * Description: - * This translation unit implements non-portable thread functions. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -/* - * pthread_delay_np - * - * DESCRIPTION - * - * This routine causes a thread to delay execution for a specific period of time. - * This period ends at the current time plus the specified interval. The routine - * will not return before the end of the period is reached, but may return an - * arbitrary amount of time after the period has gone by. This can be due to - * system load, thread priorities, and system timer granularity. - * - * Specifying an interval of zero (0) seconds and zero (0) nanoseconds is - * allowed and can be used to force the thread to give up the processor or to - * deliver a pending cancellation request. - * - * The timespec structure contains the following two fields: - * - * tv_sec is an integer number of seconds. - * tv_nsec is an integer number of nanoseconds. - * - * Return Values - * - * If an error condition occurs, this routine returns an integer value indicating - * the type of error. Possible return values are as follows: - * - * 0 - * Successful completion. - * [EINVAL] - * The value specified by interval is invalid. - * - * Example - * - * The following code segment would wait for 5 and 1/2 seconds - * - * struct timespec tsWait; - * int intRC; - * - * tsWait.tv_sec = 5; - * tsWait.tv_nsec = 500000000L; - * intRC = pthread_delay_np(&tsWait); - */ -int -pthread_delay_np (struct timespec *interval) -{ - DWORD wait_time; - DWORD secs_in_millisecs; - DWORD millisecs; - DWORD status; - pthread_t self; - __ptw32_thread_t * sp; - - if (interval == NULL) - { - return EINVAL; - } - - if (interval->tv_sec == 0L && interval->tv_nsec == 0L) - { - pthread_testcancel (); - Sleep (0); - pthread_testcancel (); - return (0); - } - - /* convert secs to millisecs */ - secs_in_millisecs = (DWORD)interval->tv_sec * 1000L; - - /* convert nanosecs to millisecs (rounding up) */ - millisecs = (interval->tv_nsec + 999999L) / 1000000L; - -#if defined(__WATCOMC__) -#pragma disable_message (124) -#endif - - /* - * Most compilers will issue a warning 'comparison always 0' - * because the variable type is unsigned, but we need to keep this - * for some reason I can't recall now. - */ - if (0 > (wait_time = secs_in_millisecs + millisecs)) - { - return EINVAL; - } - -#if defined(__WATCOMC__) -#pragma enable_message (124) -#endif - - if (NULL == (self = pthread_self ()).p) - { - return ENOMEM; - } - - sp = (__ptw32_thread_t *) self.p; - - if (sp->cancelState == PTHREAD_CANCEL_ENABLE) - { - /* - * Async cancellation won't catch us until wait_time is up. - * Deferred cancellation will cancel us immediately. - */ - if (WAIT_OBJECT_0 == - (status = WaitForSingleObject (sp->cancelEvent, wait_time))) - { - __ptw32_mcs_local_node_t stateLock; - /* - * Canceling! - */ - __ptw32_mcs_lock_acquire (&sp->stateLock, &stateLock); - if (sp->state < PThreadStateCanceling) - { - sp->state = PThreadStateCanceling; - sp->cancelState = PTHREAD_CANCEL_DISABLE; - __ptw32_mcs_lock_release (&stateLock); - - __ptw32_throw (__PTW32_EPS_CANCEL); - } - - __ptw32_mcs_lock_release (&stateLock); - return ESRCH; - } - else if (status != WAIT_TIMEOUT) - { - return EINVAL; - } - } - else - { - Sleep (wait_time); - } - - return (0); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_detach.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_detach.c deleted file mode 100644 index 4062487..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_detach.c +++ /dev/null @@ -1,142 +0,0 @@ -/* - * pthread_detach.c - * - * Description: - * This translation unit implements functions related to thread - * synchronisation. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -/* - * Not needed yet, but defining it should indicate clashes with build target - * environment that should be fixed. - */ -#if !defined(WINCE) -# include -#endif - - -int -pthread_detach (pthread_t thread) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function detaches the given thread. - * - * PARAMETERS - * thread - * an instance of a pthread_t - * - * - * DESCRIPTION - * This function detaches the given thread. You may use it to - * detach the main thread or to detach a joinable thread. - * NOTE: detached threads cannot be joined; - * storage is freed immediately on termination. - * - * RESULTS - * 0 successfully detached the thread, - * EINVAL thread is not a joinable thread, - * ENOSPC a required resource has been exhausted, - * ESRCH no thread could be found for 'thread', - * - * ------------------------------------------------------ - */ -{ - int result; - BOOL destroyIt = __PTW32_FALSE; - __ptw32_thread_t * tp = (__ptw32_thread_t *) thread.p; - __ptw32_mcs_local_node_t reuseLock; - - __ptw32_mcs_lock_acquire(&__ptw32_thread_reuse_lock, &reuseLock); - - if (NULL == tp - || thread.x != tp->ptHandle.x) - { - result = ESRCH; - } - else if (PTHREAD_CREATE_DETACHED == tp->detachState) - { - result = EINVAL; - } - else - { - __ptw32_mcs_local_node_t stateLock; - /* - * Joinable __ptw32_thread_t structs are not scavenged until - * a join or detach is done. The thread may have exited already, - * but all of the state and locks etc are still there. - */ - result = 0; - - __ptw32_mcs_lock_acquire (&tp->stateLock, &stateLock); - if (tp->state < PThreadStateLast) - { - tp->detachState = PTHREAD_CREATE_DETACHED; - if (tp->state == PThreadStateExiting) - { - destroyIt = __PTW32_TRUE; - } - } - else if (tp->detachState != PTHREAD_CREATE_DETACHED) - { - /* - * Thread is joinable and has exited or is exiting. - */ - destroyIt = __PTW32_TRUE; - } - __ptw32_mcs_lock_release (&stateLock); - } - - __ptw32_mcs_lock_release(&reuseLock); - - if (result == 0) - { - /* Thread is joinable */ - - if (destroyIt) - { - /* The thread has exited or is exiting but has not been joined or - * detached. Need to wait in case it's still exiting. - */ - (void) WaitForSingleObject(tp->threadH, INFINITE); - __ptw32_threadDestroy (thread); - } - } - - return (result); - -} /* pthread_detach */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_equal.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_equal.c deleted file mode 100644 index b94ec03..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_equal.c +++ /dev/null @@ -1,78 +0,0 @@ -/* - * pthread_equal.c - * - * Description: - * This translation unit implements miscellaneous thread functions. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_equal (pthread_t t1, pthread_t t2) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function returns nonzero if t1 and t2 are equal, else - * returns zero - * - * PARAMETERS - * t1, - * t2 - * thread IDs - * - * - * DESCRIPTION - * This function returns nonzero if t1 and t2 are equal, else - * returns zero. - * - * RESULTS - * non-zero if t1 and t2 refer to the same thread, - * 0 t1 and t2 do not refer to the same thread - * - * ------------------------------------------------------ - */ -{ - int result; - - /* - * We also accept NULL == NULL - treating NULL as a thread - * for this special case, because there is no error that we can return. - */ - result = ( t1.p == t2.p && t1.x == t2.x ); - - return (result); - -} /* pthread_equal */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_exit.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_exit.c deleted file mode 100644 index 58679af..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_exit.c +++ /dev/null @@ -1,108 +0,0 @@ -/* - * pthread_exit.c - * - * Description: - * This translation unit implements routines associated with exiting from - * a thread. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" -#if !defined(_UWIN) -/*# include */ -#endif - -void -pthread_exit (void *value_ptr) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function terminates the calling thread, returning - * the value 'value_ptr' to any joining thread. - * - * PARAMETERS - * value_ptr - * a generic data value (i.e. not the address of a value) - * - * - * DESCRIPTION - * This function terminates the calling thread, returning - * the value 'value_ptr' to any joining thread. - * NOTE: thread should be joinable. - * - * RESULTS - * N/A - * - * ------------------------------------------------------ - */ -{ - __ptw32_thread_t * sp; - - /* - * Don't use pthread_self() to avoid creating an implicit POSIX thread handle - * unnecessarily. - */ - sp = (__ptw32_thread_t *) pthread_getspecific (__ptw32_selfThreadKey); - -#if defined(_UWIN) - if (--pthread_count <= 0) - exit ((int) value_ptr); -#endif - - if (NULL == sp) - { - /* - * A POSIX thread handle was never created. I.e. this is a - * Win32 thread that has never called a pthreads-win32 routine that - * required a POSIX handle. - * - * Implicit POSIX handles are cleaned up in __ptw32_throw() now. - */ - -#if ! defined (__MINGW32__) || defined (__MSVCRT__) || defined (__DMC__) - _endthreadex ((unsigned) (size_t) value_ptr); -#else - _endthread (); -#endif - - /* Never reached */ - } - - sp->exitStatus = value_ptr; - - __ptw32_throw (__PTW32_EPS_EXIT); - - /* Never reached. */ - -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_getconcurrency.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_getconcurrency.c deleted file mode 100644 index 7f6cdb4..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_getconcurrency.c +++ /dev/null @@ -1,47 +0,0 @@ -/* - * pthread_getconcurrency.c - * - * Description: - * This translation unit implements miscellaneous thread functions. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_getconcurrency (void) -{ - return __ptw32_concurrency; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_getname_np.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_getname_np.c deleted file mode 100644 index 8fc32b1..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_getname_np.c +++ /dev/null @@ -1,69 +0,0 @@ -/* - * pthread_getname_np.c - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -int -pthread_getname_np(pthread_t thr, char *name, int len) -{ - __ptw32_mcs_local_node_t threadLock; - __ptw32_thread_t * tp; - char * s, * d; - int result; - - /* - * Validate the thread id. This method works for pthreads-win32 because - * pthread_kill and pthread_t are designed to accommodate it, but the - * method is not portable. - */ - result = pthread_kill (thr, 0); - if (0 != result) - { - return result; - } - - tp = (__ptw32_thread_t *) thr.p; - - __ptw32_mcs_lock_acquire (&tp->threadLock, &threadLock); - - for (s = tp->name, d = name; *s && d < &name[len - 1]; *d++ = *s++) - {} - - *d = '\0'; - __ptw32_mcs_lock_release (&threadLock); - - return result; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_getschedparam.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_getschedparam.c deleted file mode 100644 index 5b10d6c..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_getschedparam.c +++ /dev/null @@ -1,77 +0,0 @@ -/* - * sched_getschedparam.c - * - * Description: - * POSIX thread functions that deal with thread scheduling. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" -#include "sched.h" - -int -pthread_getschedparam (pthread_t thread, int *policy, - struct sched_param *param) -{ - int result; - - /* - * Validate the thread id. This method works for pthreads-win32 because - * pthread_kill and pthread_t are designed to accommodate it, but the - * method is not portable. - */ - result = pthread_kill (thread, 0); - if (0 != result) - { - return result; - } - - if (policy == NULL) - { - return EINVAL; - } - - /* Fill out the policy. */ - *policy = SCHED_OTHER; - - /* - * This function must return the priority value set by - * the most recent pthread_setschedparam() or pthread_create() - * for the target thread. It must not return the actual thread - * priority as altered by any system priority adjustments etc. - */ - param->sched_priority = ((__ptw32_thread_t *)thread.p)->sched_priority; - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_getspecific.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_getspecific.c deleted file mode 100644 index ea6bef4..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_getspecific.c +++ /dev/null @@ -1,89 +0,0 @@ -/* - * pthread_getspecific.c - * - * Description: - * POSIX thread functions which implement thread-specific data (TSD). - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -void * -pthread_getspecific (pthread_key_t key) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function returns the current value of key in the - * calling thread. If no value has been set for 'key' in - * the thread, NULL is returned. - * - * PARAMETERS - * key - * an instance of pthread_key_t - * - * - * DESCRIPTION - * This function returns the current value of key in the - * calling thread. If no value has been set for 'key' in - * the thread, NULL is returned. - * - * RESULTS - * key value or NULL on failure - * - * ------------------------------------------------------ - */ -{ - void * ptr; - - if (key == NULL) - { - ptr = NULL; - } - else - { - int lasterror = GetLastError (); -#if defined(RETAIN_WSALASTERROR) - int lastWSAerror = WSAGetLastError (); -#endif - ptr = TlsGetValue (key->key); - - SetLastError (lasterror); -#if defined(RETAIN_WSALASTERROR) - WSASetLastError (lastWSAerror); -#endif - } - - return ptr; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_getunique_np.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_getunique_np.c deleted file mode 100644 index 51e11fb..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_getunique_np.c +++ /dev/null @@ -1,49 +0,0 @@ -/* - * pthread_getunique_np.c - * - * Description: - * This translation unit implements non-portable thread functions. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -/* - * - */ -unsigned __int64 -pthread_getunique_np (pthread_t thread) -{ - return ((__ptw32_thread_t*)thread.p)->seqNumber; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_getw32threadhandle_np.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_getw32threadhandle_np.c deleted file mode 100644 index 3ecdaa8..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_getw32threadhandle_np.c +++ /dev/null @@ -1,67 +0,0 @@ -/* - * pthread_getw32threadhandle_np.c - * - * Description: - * This translation unit implements non-portable thread functions. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -/* - * pthread_getw32threadhandle_np() - * - * Returns the win32 thread handle that the POSIX - * thread "thread" is running as. - * - * Applications can use the win32 handle to set - * win32 specific attributes of the thread. - */ -HANDLE -pthread_getw32threadhandle_np (pthread_t thread) -{ - return ((__ptw32_thread_t *)thread.p)->threadH; -} - -/* - * pthread_getw32threadid_np() - * - * Returns the win32 thread id that the POSIX - * thread "thread" is running as. - */ -DWORD -pthread_getw32threadid_np (pthread_t thread) -{ - return ((__ptw32_thread_t *)thread.p)->thread; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_join.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_join.c deleted file mode 100644 index a2dd895..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_join.c +++ /dev/null @@ -1,159 +0,0 @@ -/* - * pthread_join.c - * - * Description: - * This translation unit implements functions related to thread - * synchronisation. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -/* - * Not needed yet, but defining it should indicate clashes with build target - * environment that should be fixed. - */ -#if !defined(WINCE) -# include -#endif - - -int -pthread_join (pthread_t thread, void **value_ptr) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function waits for 'thread' to terminate and - * returns the thread's exit value if 'value_ptr' is not - * NULL. This also detaches the thread on successful - * completion. - * - * PARAMETERS - * thread - * an instance of pthread_t - * - * value_ptr - * pointer to an instance of pointer to void - * - * - * DESCRIPTION - * This function waits for 'thread' to terminate and - * returns the thread's exit value if 'value_ptr' is not - * NULL. This also detaches the thread on successful - * completion. - * NOTE: detached threads cannot be joined or canceled - * - * RESULTS - * 0 'thread' has completed - * EINVAL thread is not a joinable thread, - * ESRCH no thread could be found with ID 'thread', - * ENOENT thread couldn't find it's own valid handle, - * EDEADLK attempt to join thread with self - * - * ------------------------------------------------------ - */ -{ - int result; - pthread_t self; - __ptw32_thread_t * tp = (__ptw32_thread_t *) thread.p; - __ptw32_mcs_local_node_t node; - - __ptw32_mcs_lock_acquire(&__ptw32_thread_reuse_lock, &node); - - if (NULL == tp - || thread.x != tp->ptHandle.x) - { - result = ESRCH; - } - else if (PTHREAD_CREATE_DETACHED == tp->detachState) - { - result = EINVAL; - } - else - { - result = 0; - } - - __ptw32_mcs_lock_release(&node); - - if (result == 0) - { - /* - * The target thread is joinable and can't be reused before we join it. - */ - self = pthread_self(); - - if (NULL == self.p) - { - result = ENOENT; - } - else if (pthread_equal (self, thread)) - { - result = EDEADLK; - } - else - { - /* - * Pthread_join is a cancellation point. - * If we are canceled then our target thread must not be - * detached (destroyed). This is guaranteed because - * pthreadCancelableWait will not return if we - * are canceled. - */ - result = pthreadCancelableWait (tp->threadH); - - if (0 == result) - { - if (value_ptr != NULL) - { - *value_ptr = tp->exitStatus; - } - - /* - * The result of making multiple simultaneous calls to - * pthread_join() or pthread_detach() specifying the same - * target is undefined. - */ - result = pthread_detach (thread); - } - else - { - result = ESRCH; - } - } - } - - return (result); - -} /* pthread_join */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_key_create.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_key_create.c deleted file mode 100644 index a23585c..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_key_create.c +++ /dev/null @@ -1,110 +0,0 @@ -/* - * pthread_key_create.c - * - * Description: - * POSIX thread functions which implement thread-specific data (TSD). - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -/* TLS_OUT_OF_INDEXES not defined on WinCE */ -#if !defined(TLS_OUT_OF_INDEXES) -#define TLS_OUT_OF_INDEXES 0xffffffff -#endif - -int -pthread_key_create (pthread_key_t * key, void (__PTW32_CDECL *destructor) (void *)) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function creates a thread-specific data key visible - * to all threads. All existing and new threads have a value - * NULL for key until set using pthread_setspecific. When any - * thread with a non-NULL value for key terminates, 'destructor' - * is called with key's current value for that thread. - * - * PARAMETERS - * key - * pointer to an instance of pthread_key_t - * - * - * DESCRIPTION - * This function creates a thread-specific data key visible - * to all threads. All existing and new threads have a value - * NULL for key until set using pthread_setspecific. When any - * thread with a non-NULL value for key terminates, 'destructor' - * is called with key's current value for that thread. - * - * RESULTS - * 0 successfully created semaphore, - * EAGAIN insufficient resources or PTHREAD_KEYS_MAX - * exceeded, - * ENOMEM insufficient memory to create the key, - * - * ------------------------------------------------------ - */ -{ - int result = 0; - pthread_key_t newkey; - - if ((newkey = (pthread_key_t) calloc (1, sizeof (*newkey))) == NULL) - { - result = ENOMEM; - } - else if ((newkey->key = TlsAlloc ()) == TLS_OUT_OF_INDEXES) - { - result = EAGAIN; - - free (newkey); - newkey = NULL; - } - else if (destructor != NULL) - { - /* - * Have to manage associations between thread and key; - * Therefore, need a lock that allows competing threads - * to gain exclusive access to the key->threads list. - * - * The mutex will only be created when it is first locked. - */ - newkey->keyLock = 0; - newkey->destructor = destructor; - } - - *key = newkey; - - return (result); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_key_delete.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_key_delete.c deleted file mode 100644 index 0c44d05..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_key_delete.c +++ /dev/null @@ -1,127 +0,0 @@ -/* - * pthread_key_delete.c - * - * Description: - * POSIX thread functions which implement thread-specific data (TSD). - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_key_delete (pthread_key_t key) -/* - * ------------------------------------------------------ - * DOCPUBLIC - * This function deletes a thread-specific data key. This - * does not change the value of the thread specific data key - * for any thread and does not run the key's destructor - * in any thread so it should be used with caution. - * - * PARAMETERS - * key - * pointer to an instance of pthread_key_t - * - * - * DESCRIPTION - * This function deletes a thread-specific data key. This - * does not change the value of the thread specific data key - * for any thread and does not run the key's destructor - * in any thread so it should be used with caution. - * - * RESULTS - * 0 successfully deleted the key, - * EINVAL key is invalid, - * - * ------------------------------------------------------ - */ -{ - __ptw32_mcs_local_node_t keyLock; - int result = 0; - - if (key != NULL) - { - if (key->threads != NULL && key->destructor != NULL) - { - ThreadKeyAssoc *assoc; - __ptw32_mcs_lock_acquire (&(key->keyLock), &keyLock); - /* - * Run through all Thread<-->Key associations - * for this key. - * - * While we hold at least one of the locks guarding - * the assoc, we know that the assoc pointed to by - * key->threads is valid. - */ - while ((assoc = (ThreadKeyAssoc *) key->threads) != NULL) - { - __ptw32_mcs_local_node_t threadLock; - __ptw32_thread_t * thread = assoc->thread; - - if (assoc == NULL) - { - /* Finished */ - break; - } - - __ptw32_mcs_lock_acquire (&(thread->threadLock), &threadLock); - /* - * Since we are starting at the head of the key's threads - * chain, this will also point key->threads at the next assoc. - * While we hold key->keyLock, no other thread can insert - * a new assoc for this key via pthread_setspecific. - */ - __ptw32_tkAssocDestroy (assoc); - __ptw32_mcs_lock_release (&threadLock); - } - __ptw32_mcs_lock_release (&keyLock); - } - - TlsFree (key->key); - if (key->destructor != NULL) - { - /* A thread could be holding the keyLock */ - __ptw32_mcs_lock_acquire (&(key->keyLock), &keyLock); - __ptw32_mcs_lock_release (&keyLock); - } - -#if defined( _DEBUG ) - memset ((char *) key, 0, sizeof (*key)); -#endif - free (key); - } - - return (result); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_kill.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_kill.c deleted file mode 100644 index 3efc421..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_kill.c +++ /dev/null @@ -1,110 +0,0 @@ -/* - * pthread_kill.c - * - * Description: - * This translation unit implements the pthread_kill routine. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -/* - * Not needed yet, but defining it should indicate clashes with build target - * environment that should be fixed. - */ -#if !defined(WINCE) -# include -#endif - -int -pthread_kill (pthread_t thread, int sig) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function requests that a signal be delivered to the - * specified thread. If sig is zero, error checking is - * performed but no signal is actually sent such that this - * function can be used to check for a valid thread ID. - * - * PARAMETERS - * thread reference to an instances of pthread_t - * sig signal. Currently only a value of 0 is supported. - * - * - * DESCRIPTION - * This function requests that a signal be delivered to the - * specified thread. If sig is zero, error checking is - * performed but no signal is actually sent such that this - * function can be used to check for a valid thread ID. - * - * RESULTS - * ESRCH the thread is not a valid thread ID, - * EINVAL the value of the signal is invalid - * or unsupported. - * 0 the signal was successfully sent. - * - * ------------------------------------------------------ - */ -{ - int result = 0; - - if (0 != sig) - { - /* - * Currently does not support any signals. - */ - result = EINVAL; - } - else - { - __ptw32_mcs_local_node_t node; - __ptw32_thread_t * tp; - - __ptw32_mcs_lock_acquire(&__ptw32_thread_reuse_lock, &node); - - tp = (__ptw32_thread_t *) thread.p; - - if (NULL == tp - || thread.x != tp->ptHandle.x - || tp->state < PThreadStateRunning) - { - result = ESRCH; - } - - __ptw32_mcs_lock_release(&node); - } - - return result; - -} /* pthread_kill */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutex_consistent.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutex_consistent.c deleted file mode 100644 index 1253b0e..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutex_consistent.c +++ /dev/null @@ -1,192 +0,0 @@ -/* - * pthread_mutex_consistent.c - * - * Description: - * This translation unit implements mutual exclusion (mutex) primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -/* - * From the Sun Multi-threaded Programming Guide - * - * robustness defines the behavior when the owner of the mutex terminates without unlocking the - * mutex, usually because its process terminated abnormally. The value of robustness that is - * defined in pthread.h is PTHREAD_MUTEX_ROBUST or PTHREAD_MUTEX_STALLED. The - * default value is PTHREAD_MUTEX_STALLED . - * [] PTHREAD_MUTEX_STALLED - * When the owner of the mutex terminates without unlocking the mutex, all subsequent calls - * to pthread_mutex_lock() are blocked from progress in an unspecified manner. - * [] PTHREAD_MUTEX_ROBUST - * When the owner of the mutex terminates without unlocking the mutex, the mutex is - * unlocked. The next owner of this mutex acquires the mutex with an error return of - * EOWNERDEAD. - * Note - Your application must always check the return code from pthread_mutex_lock() for - * a mutex initialized with the PTHREAD_MUTEX_ROBUST attribute. - * [] The new owner of this mutex should make the state protected by the mutex consistent. - * This state might have been left inconsistent when the previous owner terminated. - * [] If the new owner is able to make the state consistent, call - * pthread_mutex_consistent() for the mutex before unlocking the mutex. This - * marks the mutex as consistent and subsequent calls to pthread_mutex_lock() and - * pthread_mutex_unlock() will behave in the normal manner. - * [] If the new owner is not able to make the state consistent, do not call - * pthread_mutex_consistent() for the mutex, but unlock the mutex. - * All waiters are woken up and all subsequent calls to pthread_mutex_lock() fail to - * acquire the mutex. The return code is ENOTRECOVERABLE. The mutex can be made - * consistent by calling pthread_mutex_destroy() to uninitialize the mutex, and calling - * pthread_mutex_int() to reinitialize the mutex.However, the state that was protected - * by the mutex remains inconsistent and some form of application recovery is required. - * [] If the thread that acquires the lock with EOWNERDEAD terminates without unlocking the - * mutex, the next owner acquires the lock with an EOWNERDEAD return code. - */ -#if !defined(_UWIN) -/*# include */ -#endif -#include "pthread.h" -#include "implement.h" - -INLINE -int -__ptw32_robust_mutex_inherit(pthread_mutex_t * mutex) -{ - int result; - pthread_mutex_t mx = *mutex; - __ptw32_robust_node_t* robust = mx->robustNode; - - switch ((LONG)__PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG( - (__PTW32_INTERLOCKED_LONGPTR)&robust->stateInconsistent, - (__PTW32_INTERLOCKED_LONG)__PTW32_ROBUST_INCONSISTENT, - (__PTW32_INTERLOCKED_LONG)-1 /* The terminating thread sets this */)) - { - case -1L: - result = EOWNERDEAD; - break; - case (LONG)__PTW32_ROBUST_NOTRECOVERABLE: - result = ENOTRECOVERABLE; - break; - default: - result = 0; - break; - } - - return result; -} - -/* - * The next two internal support functions depend on being - * called only by the thread that owns the robust mutex. This - * enables us to avoid additional locks. - * Any mutex currently in the thread's robust mutex list is held - * by the thread, again eliminating the need for locks. - * The forward/backward links allow the thread to unlock mutexes - * in any order, not necessarily the reverse locking order. - * This is all possible because it is an error if a thread that - * does not own the [robust] mutex attempts to unlock it. - */ - -INLINE -void -__ptw32_robust_mutex_add(pthread_mutex_t* mutex, pthread_t self) -{ - __ptw32_robust_node_t** list; - pthread_mutex_t mx = *mutex; - __ptw32_thread_t* tp = (__ptw32_thread_t*)self.p; - __ptw32_robust_node_t* robust = mx->robustNode; - - list = &tp->robustMxList; - mx->ownerThread = self; - if (NULL == *list) - { - robust->prev = NULL; - robust->next = NULL; - *list = robust; - } - else - { - robust->prev = NULL; - robust->next = *list; - (*list)->prev = robust; - *list = robust; - } -} - -INLINE -void -__ptw32_robust_mutex_remove(pthread_mutex_t* mutex, __ptw32_thread_t* otp) -{ - __ptw32_robust_node_t** list; - pthread_mutex_t mx = *mutex; - __ptw32_robust_node_t* robust = mx->robustNode; - - list = &(((__ptw32_thread_t*)mx->ownerThread.p)->robustMxList); - mx->ownerThread.p = otp; - if (robust->next != NULL) - { - robust->next->prev = robust->prev; - } - if (robust->prev != NULL) - { - robust->prev->next = robust->next; - } - if (*list == robust) - { - *list = robust->next; - } -} - - -int -pthread_mutex_consistent (pthread_mutex_t* mutex) -{ - pthread_mutex_t mx = *mutex; - int result = 0; - - /* - * Let the system deal with invalid pointers. - */ - if (mx == NULL) - { - return EINVAL; - } - - if (mx->kind >= 0 - || (__PTW32_INTERLOCKED_LONG)__PTW32_ROBUST_INCONSISTENT != __PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG( - (__PTW32_INTERLOCKED_LONGPTR)&mx->robustNode->stateInconsistent, - (__PTW32_INTERLOCKED_LONG)__PTW32_ROBUST_CONSISTENT, - (__PTW32_INTERLOCKED_LONG)__PTW32_ROBUST_INCONSISTENT)) - { - result = EINVAL; - } - - return (result); -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutex_destroy.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutex_destroy.c deleted file mode 100644 index 688201f..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutex_destroy.c +++ /dev/null @@ -1,150 +0,0 @@ -/* - * pthread_mutex_destroy.c - * - * Description: - * This translation unit implements mutual exclusion (mutex) primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_mutex_destroy (pthread_mutex_t * mutex) -{ - int result = 0; - pthread_mutex_t mx; - - /* - * Let the system deal with invalid pointers. - */ - - /* - * Check to see if we have something to delete. - */ - if (*mutex < PTHREAD_ERRORCHECK_MUTEX_INITIALIZER) - { - mx = *mutex; - - result = pthread_mutex_trylock (&mx); - - /* - * If trylock succeeded and the mutex is not recursively locked it - * can be destroyed. - */ - if (0 == result || ENOTRECOVERABLE == result) - { - if (mx->kind != PTHREAD_MUTEX_RECURSIVE || 1 == mx->recursive_count) - { - /* - * FIXME!!! - * The mutex isn't held by another thread but we could still - * be too late invalidating the mutex below since another thread - * may already have entered mutex_lock and the check for a valid - * *mutex != NULL. - */ - *mutex = NULL; - - result = (0 == result)?pthread_mutex_unlock(&mx):0; - - if (0 == result) - { - if (mx->robustNode != NULL) - { - free(mx->robustNode); - } - if (!CloseHandle (mx->event)) - { - *mutex = mx; - result = EINVAL; - } - else - { - free (mx); - } - } - else - { - /* - * Restore the mutex before we return the error. - */ - *mutex = mx; - } - } - else /* mx->recursive_count > 1 */ - { - /* - * The mutex must be recursive and already locked by us (this thread). - */ - mx->recursive_count--; /* Undo effect of pthread_mutex_trylock() above */ - result = EBUSY; - } - } - } - else - { - __ptw32_mcs_local_node_t node; - - /* - * See notes in __ptw32_mutex_check_need_init() above also. - */ - - __ptw32_mcs_lock_acquire(&__ptw32_mutex_test_init_lock, &node); - - /* - * Check again. - */ - if (*mutex >= PTHREAD_ERRORCHECK_MUTEX_INITIALIZER) - { - /* - * This is all we need to do to destroy a statically - * initialised mutex that has not yet been used (initialised). - * If we get to here, another thread - * waiting to initialise this mutex will get an EINVAL. - */ - *mutex = NULL; - } - else - { - /* - * The mutex has been initialised while we were waiting - * so assume it's in use. - */ - result = EBUSY; - } - __ptw32_mcs_lock_release(&node); - } - - return (result); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutex_init.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutex_init.c deleted file mode 100644 index bc61dfc..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutex_init.c +++ /dev/null @@ -1,150 +0,0 @@ -/* - * pthread_mutex_init.c - * - * Description: - * This translation unit implements mutual exclusion (mutex) primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_mutex_init (pthread_mutex_t * mutex, const pthread_mutexattr_t * attr) -{ - int result = 0; - pthread_mutex_t mx; - - if (mutex == NULL) - { - return EINVAL; - } - - if (attr != NULL && *attr != NULL) - { - if ((*attr)->pshared == PTHREAD_PROCESS_SHARED) - { - /* - * Creating mutex that can be shared between - * processes. - */ -#if _POSIX_THREAD_PROCESS_SHARED >= 0 - - /* - * Not implemented yet. - */ - -#error ERROR [__FILE__, line __LINE__]: Process shared mutexes are not supported yet. - -#else - - return ENOSYS; - -#endif /* _POSIX_THREAD_PROCESS_SHARED */ - } - } - - mx = (pthread_mutex_t) calloc (1, sizeof (*mx)); - - if (mx == NULL) - { - result = ENOMEM; - } - else - { - mx->lock_idx = 0; - mx->recursive_count = 0; - mx->robustNode = NULL; - if (attr == NULL || *attr == NULL) - { - mx->kind = PTHREAD_MUTEX_DEFAULT; - } - else - { - mx->kind = (*attr)->kind; - if ((*attr)->robustness == PTHREAD_MUTEX_ROBUST) - { - /* - * Use the negative range to represent robust types. - * Replaces a memory fetch with a register negate and incr - * in pthread_mutex_lock etc. - * - * Map 0,1,..,n to -1,-2,..,(-n)-1 - */ - mx->kind = -mx->kind - 1; - - mx->robustNode = (__ptw32_robust_node_t*) malloc(sizeof(__ptw32_robust_node_t)); - if (NULL == mx->robustNode) - { - result = ENOMEM; - } - else - { - mx->robustNode->stateInconsistent = __PTW32_ROBUST_CONSISTENT; - mx->robustNode->mx = mx; - mx->robustNode->next = NULL; - mx->robustNode->prev = NULL; - } - } - } - - if (0 == result) - { - mx->ownerThread.p = NULL; - - mx->event = CreateEvent (NULL, __PTW32_FALSE, /* manual reset = No */ - __PTW32_FALSE, /* initial state = not signalled */ - NULL); /* event name */ - - if (0 == mx->event) - { - result = ENOSPC; - } - } - } - - if (0 != result) - { - if (NULL != mx->robustNode) - { - free (mx->robustNode); - } - free (mx); - mx = NULL; - } - - *mutex = mx; - - return (result); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutex_lock.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutex_lock.c deleted file mode 100644 index fcfedaa..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutex_lock.c +++ /dev/null @@ -1,271 +0,0 @@ -/* - * pthread_mutex_lock.c - * - * Description: - * This translation unit implements mutual exclusion (mutex) primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#if !defined(_UWIN) -/*# include */ -#endif -#include "pthread.h" -#include "implement.h" - -int -pthread_mutex_lock (pthread_mutex_t * mutex) -{ - /* - * Let the system deal with invalid pointers. - */ - pthread_mutex_t mx = *mutex; - int kind; - int result = 0; - - if (mx == NULL) - { - return EINVAL; - } - - /* - * We do a quick check to see if we need to do more work - * to initialise a static mutex. We check - * again inside the guarded section of __ptw32_mutex_check_need_init() - * to avoid race conditions. - */ - if (mx >= PTHREAD_ERRORCHECK_MUTEX_INITIALIZER) - { - if ((result = __ptw32_mutex_check_need_init (mutex)) != 0) - { - return (result); - } - mx = *mutex; - } - - kind = mx->kind; - - if (kind >= 0) - { - /* Non-robust */ - if (PTHREAD_MUTEX_NORMAL == kind) - { - if ((__PTW32_INTERLOCKED_LONG) __PTW32_INTERLOCKED_EXCHANGE_LONG( - (__PTW32_INTERLOCKED_LONGPTR) &mx->lock_idx, - (__PTW32_INTERLOCKED_LONG) 1) != 0) - { - while ((__PTW32_INTERLOCKED_LONG) __PTW32_INTERLOCKED_EXCHANGE_LONG( - (__PTW32_INTERLOCKED_LONGPTR) &mx->lock_idx, - (__PTW32_INTERLOCKED_LONG) -1) != 0) - { - if (WAIT_OBJECT_0 != WaitForSingleObject (mx->event, INFINITE)) - { - result = EINVAL; - break; - } - } - } - } - else - { - pthread_t self = pthread_self(); - - if ((__PTW32_INTERLOCKED_LONG) __PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG( - (__PTW32_INTERLOCKED_LONGPTR) &mx->lock_idx, - (__PTW32_INTERLOCKED_LONG) 1, - (__PTW32_INTERLOCKED_LONG) 0) == 0) - { - mx->recursive_count = 1; - mx->ownerThread = self; - } - else - { - if (pthread_equal (mx->ownerThread, self)) - { - if (kind == PTHREAD_MUTEX_RECURSIVE) - { - mx->recursive_count++; - } - else - { - result = EDEADLK; - } - } - else - { - while ((__PTW32_INTERLOCKED_LONG) __PTW32_INTERLOCKED_EXCHANGE_LONG( - (__PTW32_INTERLOCKED_LONGPTR) &mx->lock_idx, - (__PTW32_INTERLOCKED_LONG) -1) != 0) - { - if (WAIT_OBJECT_0 != WaitForSingleObject (mx->event, INFINITE)) - { - result = EINVAL; - break; - } - } - - if (0 == result) - { - mx->recursive_count = 1; - mx->ownerThread = self; - } - } - } - } - } - else - { - /* - * Robust types - * All types record the current owner thread. - * The mutex is added to a per thread list when ownership is acquired. - */ - __ptw32_robust_state_t* statePtr = &mx->robustNode->stateInconsistent; - - if ((__PTW32_INTERLOCKED_LONG)__PTW32_ROBUST_NOTRECOVERABLE == __PTW32_INTERLOCKED_EXCHANGE_ADD_LONG( - (__PTW32_INTERLOCKED_LONGPTR)statePtr, - (__PTW32_INTERLOCKED_LONG)0)) - { - result = ENOTRECOVERABLE; - } - else - { - pthread_t self = pthread_self(); - - kind = -kind - 1; /* Convert to non-robust range */ - - if (PTHREAD_MUTEX_NORMAL == kind) - { - if ((__PTW32_INTERLOCKED_LONG) __PTW32_INTERLOCKED_EXCHANGE_LONG( - (__PTW32_INTERLOCKED_LONGPTR) &mx->lock_idx, - (__PTW32_INTERLOCKED_LONG) 1) != 0) - { - while (0 == (result = __ptw32_robust_mutex_inherit(mutex)) - && (__PTW32_INTERLOCKED_LONG) __PTW32_INTERLOCKED_EXCHANGE_LONG( - (__PTW32_INTERLOCKED_LONGPTR) &mx->lock_idx, - (__PTW32_INTERLOCKED_LONG) -1) != 0) - { - if (WAIT_OBJECT_0 != WaitForSingleObject (mx->event, INFINITE)) - { - result = EINVAL; - break; - } - if ((__PTW32_INTERLOCKED_LONG)__PTW32_ROBUST_NOTRECOVERABLE == - __PTW32_INTERLOCKED_EXCHANGE_ADD_LONG( - (__PTW32_INTERLOCKED_LONGPTR)statePtr, - (__PTW32_INTERLOCKED_LONG)0)) - { - /* Unblock the next thread */ - SetEvent(mx->event); - result = ENOTRECOVERABLE; - break; - } - } - } - if (0 == result || EOWNERDEAD == result) - { - /* - * Add mutex to the per-thread robust mutex currently-held list. - * If the thread terminates, all mutexes in this list will be unlocked. - */ - __ptw32_robust_mutex_add(mutex, self); - } - } - else - { - if ((__PTW32_INTERLOCKED_LONG) __PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG( - (__PTW32_INTERLOCKED_LONGPTR) &mx->lock_idx, - (__PTW32_INTERLOCKED_LONG) 1, - (__PTW32_INTERLOCKED_LONG) 0) == 0) - { - mx->recursive_count = 1; - /* - * Add mutex to the per-thread robust mutex currently-held list. - * If the thread terminates, all mutexes in this list will be unlocked. - */ - __ptw32_robust_mutex_add(mutex, self); - } - else - { - if (pthread_equal (mx->ownerThread, self)) - { - if (PTHREAD_MUTEX_RECURSIVE == kind) - { - mx->recursive_count++; - } - else - { - result = EDEADLK; - } - } - else - { - while (0 == (result = __ptw32_robust_mutex_inherit(mutex)) - && (__PTW32_INTERLOCKED_LONG) __PTW32_INTERLOCKED_EXCHANGE_LONG( - (__PTW32_INTERLOCKED_LONGPTR) &mx->lock_idx, - (__PTW32_INTERLOCKED_LONG) -1) != 0) - { - if (WAIT_OBJECT_0 != WaitForSingleObject (mx->event, INFINITE)) - { - result = EINVAL; - break; - } - if ((__PTW32_INTERLOCKED_LONG)__PTW32_ROBUST_NOTRECOVERABLE == - __PTW32_INTERLOCKED_EXCHANGE_ADD_LONG( - (__PTW32_INTERLOCKED_LONGPTR)statePtr, - (__PTW32_INTERLOCKED_LONG)0)) - { - /* Unblock the next thread */ - SetEvent(mx->event); - result = ENOTRECOVERABLE; - break; - } - } - - if (0 == result || EOWNERDEAD == result) - { - mx->recursive_count = 1; - /* - * Add mutex to the per-thread robust mutex currently-held list. - * If the thread terminates, all mutexes in this list will be unlocked. - */ - __ptw32_robust_mutex_add(mutex, self); - } - } - } - } - } - } - - return (result); -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutex_timedlock.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutex_timedlock.c deleted file mode 100644 index 10d5bd1..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutex_timedlock.c +++ /dev/null @@ -1,329 +0,0 @@ -/* - * pthread_mutex_timedlock.c - * - * Description: - * This translation unit implements mutual exclusion (mutex) primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -static INLINE int -__ptw32_timed_eventwait (HANDLE event, const struct timespec *abstime) - /* - * ------------------------------------------------------ - * DESCRIPTION - * This function waits on an event until signaled or until - * abstime passes. - * If abstime has passed when this routine is called then - * it returns a result to indicate this. - * - * If 'abstime' is a NULL pointer then this function will - * block until it can successfully decrease the value or - * until interrupted by a signal. - * - * This routine is not a cancellation point. - * - * RESULTS - * 0 successfully signaled, - * ETIMEDOUT abstime passed - * EINVAL 'event' is not a valid event, - * - * ------------------------------------------------------ - */ -{ - - DWORD milliseconds; - DWORD status; - - if (event == NULL) - { - return EINVAL; - } - else - { - if (abstime == NULL) - { - milliseconds = INFINITE; - } - else - { - /* - * Calculate timeout as milliseconds from current system time. - */ - milliseconds = __ptw32_relmillisecs (abstime); - } - - status = WaitForSingleObject (event, milliseconds); - - if (status != WAIT_OBJECT_0) - { - if (status == WAIT_TIMEOUT) - { - return ETIMEDOUT; - } - else - { - return EINVAL; - } - } - } - - return 0; - -} /* __ptw32_timed_semwait */ - - -int -pthread_mutex_timedlock (pthread_mutex_t * mutex, - const struct timespec *abstime) -{ - /* - * Let the system deal with invalid pointers. - */ - pthread_mutex_t mx = *mutex; - int kind; - int result = 0; - - if (mx == NULL) - { - return EINVAL; - } - - /* - * We do a quick check to see if we need to do more work - * to initialise a static mutex. We check - * again inside the guarded section of __ptw32_mutex_check_need_init() - * to avoid race conditions. - */ - if (mx >= PTHREAD_ERRORCHECK_MUTEX_INITIALIZER) - { - if ((result = __ptw32_mutex_check_need_init (mutex)) != 0) - { - return (result); - } - mx = *mutex; - } - - kind = mx->kind; - - if (kind >= 0) - { - if (mx->kind == PTHREAD_MUTEX_NORMAL) - { - if ((__PTW32_INTERLOCKED_LONG) __PTW32_INTERLOCKED_EXCHANGE_LONG( - (__PTW32_INTERLOCKED_LONGPTR) &mx->lock_idx, - (__PTW32_INTERLOCKED_LONG) 1) != 0) - { - while ((__PTW32_INTERLOCKED_LONG) __PTW32_INTERLOCKED_EXCHANGE_LONG( - (__PTW32_INTERLOCKED_LONGPTR) &mx->lock_idx, - (__PTW32_INTERLOCKED_LONG) -1) != 0) - { - if (0 != (result = __ptw32_timed_eventwait (mx->event, abstime))) - { - return result; - } - } - } - } - else - { - pthread_t self = pthread_self(); - - if ((__PTW32_INTERLOCKED_LONG) __PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG( - (__PTW32_INTERLOCKED_LONGPTR) &mx->lock_idx, - (__PTW32_INTERLOCKED_LONG) 1, - (__PTW32_INTERLOCKED_LONG) 0) == 0) - { - mx->recursive_count = 1; - mx->ownerThread = self; - } - else - { - if (pthread_equal (mx->ownerThread, self)) - { - if (mx->kind == PTHREAD_MUTEX_RECURSIVE) - { - mx->recursive_count++; - } - else - { - return EDEADLK; - } - } - else - { - while ((__PTW32_INTERLOCKED_LONG) __PTW32_INTERLOCKED_EXCHANGE_LONG( - (__PTW32_INTERLOCKED_LONGPTR) &mx->lock_idx, - (__PTW32_INTERLOCKED_LONG) -1) != 0) - { - if (0 != (result = __ptw32_timed_eventwait (mx->event, abstime))) - { - return result; - } - } - - mx->recursive_count = 1; - mx->ownerThread = self; - } - } - } - } - else - { - /* - * Robust types - * All types record the current owner thread. - * The mutex is added to a per thread list when ownership is acquired. - */ - __ptw32_robust_state_t* statePtr = &mx->robustNode->stateInconsistent; - - if ((__PTW32_INTERLOCKED_LONG)__PTW32_ROBUST_NOTRECOVERABLE == __PTW32_INTERLOCKED_EXCHANGE_ADD_LONG( - (__PTW32_INTERLOCKED_LONGPTR)statePtr, - (__PTW32_INTERLOCKED_LONG)0)) - { - result = ENOTRECOVERABLE; - } - else - { - pthread_t self = pthread_self(); - - kind = -kind - 1; /* Convert to non-robust range */ - - if (PTHREAD_MUTEX_NORMAL == kind) - { - if ((__PTW32_INTERLOCKED_LONG) __PTW32_INTERLOCKED_EXCHANGE_LONG( - (__PTW32_INTERLOCKED_LONGPTR) &mx->lock_idx, - (__PTW32_INTERLOCKED_LONG) 1) != 0) - { - while (0 == (result = __ptw32_robust_mutex_inherit(mutex)) - && (__PTW32_INTERLOCKED_LONG) __PTW32_INTERLOCKED_EXCHANGE_LONG( - (__PTW32_INTERLOCKED_LONGPTR) &mx->lock_idx, - (__PTW32_INTERLOCKED_LONG) -1) != 0) - { - if (0 != (result = __ptw32_timed_eventwait (mx->event, abstime))) - { - return result; - } - if ((__PTW32_INTERLOCKED_LONG)__PTW32_ROBUST_NOTRECOVERABLE == - __PTW32_INTERLOCKED_EXCHANGE_ADD_LONG( - (__PTW32_INTERLOCKED_LONGPTR)statePtr, - (__PTW32_INTERLOCKED_LONG)0)) - { - /* Unblock the next thread */ - SetEvent(mx->event); - result = ENOTRECOVERABLE; - break; - } - } - - if (0 == result || EOWNERDEAD == result) - { - /* - * Add mutex to the per-thread robust mutex currently-held list. - * If the thread terminates, all mutexes in this list will be unlocked. - */ - __ptw32_robust_mutex_add(mutex, self); - } - } - } - else - { - pthread_t self = pthread_self(); - - if (0 == (__PTW32_INTERLOCKED_LONG) __PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG( - (__PTW32_INTERLOCKED_LONGPTR) &mx->lock_idx, - (__PTW32_INTERLOCKED_LONG) 1, - (__PTW32_INTERLOCKED_LONG) 0)) - { - mx->recursive_count = 1; - /* - * Add mutex to the per-thread robust mutex currently-held list. - * If the thread terminates, all mutexes in this list will be unlocked. - */ - __ptw32_robust_mutex_add(mutex, self); - } - else - { - if (pthread_equal (mx->ownerThread, self)) - { - if (PTHREAD_MUTEX_RECURSIVE == kind) - { - mx->recursive_count++; - } - else - { - return EDEADLK; - } - } - else - { - while (0 == (result = __ptw32_robust_mutex_inherit(mutex)) - && (__PTW32_INTERLOCKED_LONG) __PTW32_INTERLOCKED_EXCHANGE_LONG( - (__PTW32_INTERLOCKED_LONGPTR) &mx->lock_idx, - (__PTW32_INTERLOCKED_LONG) -1) != 0) - { - if (0 != (result = __ptw32_timed_eventwait (mx->event, abstime))) - { - return result; - } - } - - if ((__PTW32_INTERLOCKED_LONG)__PTW32_ROBUST_NOTRECOVERABLE == - __PTW32_INTERLOCKED_EXCHANGE_ADD_LONG( - (__PTW32_INTERLOCKED_LONGPTR)statePtr, - (__PTW32_INTERLOCKED_LONG)0)) - { - /* Unblock the next thread */ - SetEvent(mx->event); - result = ENOTRECOVERABLE; - } - else if (0 == result || EOWNERDEAD == result) - { - mx->recursive_count = 1; - /* - * Add mutex to the per-thread robust mutex currently-held list. - * If the thread terminates, all mutexes in this list will be unlocked. - */ - __ptw32_robust_mutex_add(mutex, self); - } - } - } - } - } - } - - return result; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutex_trylock.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutex_trylock.c deleted file mode 100644 index 405542a..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutex_trylock.c +++ /dev/null @@ -1,160 +0,0 @@ -/* - * pthread_mutex_trylock.c - * - * Description: - * This translation unit implements mutual exclusion (mutex) primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_mutex_trylock (pthread_mutex_t * mutex) -{ - /* - * Let the system deal with invalid pointers. - */ - pthread_mutex_t mx = *mutex; - int kind; - int result = 0; - - if (mx == NULL) - { - return EINVAL; - } - - /* - * We do a quick check to see if we need to do more work - * to initialise a static mutex. We check - * again inside the guarded section of __ptw32_mutex_check_need_init() - * to avoid race conditions. - */ - if (mx >= PTHREAD_ERRORCHECK_MUTEX_INITIALIZER) - { - if ((result = __ptw32_mutex_check_need_init (mutex)) != 0) - { - return (result); - } - mx = *mutex; - } - - kind = mx->kind; - - if (kind >= 0) - { - /* Non-robust */ - if (0 == (__PTW32_INTERLOCKED_LONG) __PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG ( - (__PTW32_INTERLOCKED_LONGPTR) &mx->lock_idx, - (__PTW32_INTERLOCKED_LONG) 1, - (__PTW32_INTERLOCKED_LONG) 0)) - { - if (kind != PTHREAD_MUTEX_NORMAL) - { - mx->recursive_count = 1; - mx->ownerThread = pthread_self (); - } - } - else - { - if (kind == PTHREAD_MUTEX_RECURSIVE && - pthread_equal (mx->ownerThread, pthread_self ())) - { - mx->recursive_count++; - } - else - { - result = EBUSY; - } - } - } - else - { - /* - * Robust types - * All types record the current owner thread. - * The mutex is added to a per thread list when ownership is acquired. - */ - pthread_t self; - __ptw32_robust_state_t* statePtr = &mx->robustNode->stateInconsistent; - - if ((__PTW32_INTERLOCKED_LONG)__PTW32_ROBUST_NOTRECOVERABLE == - __PTW32_INTERLOCKED_EXCHANGE_ADD_LONG( - (__PTW32_INTERLOCKED_LONGPTR)statePtr, - (__PTW32_INTERLOCKED_LONG)0)) - { - return ENOTRECOVERABLE; - } - - self = pthread_self(); - kind = -kind - 1; /* Convert to non-robust range */ - - if (0 == (__PTW32_INTERLOCKED_LONG) __PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG ( - (__PTW32_INTERLOCKED_LONGPTR) &mx->lock_idx, - (__PTW32_INTERLOCKED_LONG) 1, - (__PTW32_INTERLOCKED_LONG) 0)) - { - if (kind != PTHREAD_MUTEX_NORMAL) - { - mx->recursive_count = 1; - } - __ptw32_robust_mutex_add(mutex, self); - } - else - { - if (PTHREAD_MUTEX_RECURSIVE == kind && - pthread_equal (mx->ownerThread, pthread_self ())) - { - mx->recursive_count++; - } - else - { - if (EOWNERDEAD == (result = __ptw32_robust_mutex_inherit(mutex))) - { - mx->recursive_count = 1; - __ptw32_robust_mutex_add(mutex, self); - } - else - { - if (0 == result) - { - result = EBUSY; - } - } - } - } - } - - return (result); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutex_unlock.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutex_unlock.c deleted file mode 100644 index 740f443..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutex_unlock.c +++ /dev/null @@ -1,179 +0,0 @@ -/* - * pthread_mutex_unlock.c - * - * Description: - * This translation unit implements mutual exclusion (mutex) primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_mutex_unlock (pthread_mutex_t * mutex) -{ - /* - * Let the system deal with invalid pointers. - */ - pthread_mutex_t mx = *mutex; - int kind; - int result = 0; - - /* - * If the thread calling us holds the mutex then there is no - * race condition. If another thread holds the - * lock then we shouldn't be in here. - */ - if (mx < PTHREAD_ERRORCHECK_MUTEX_INITIALIZER) // Remember, pointers are unsigned. - { - kind = mx->kind; - - if (kind >= 0) - { - if (kind == PTHREAD_MUTEX_NORMAL) - { - LONG idx; - - idx = (LONG) __PTW32_INTERLOCKED_EXCHANGE_LONG ((__PTW32_INTERLOCKED_LONGPTR)&mx->lock_idx, - (__PTW32_INTERLOCKED_LONG)0); - if (idx != 0) - { - if (idx < 0) - { - /* - * Someone may be waiting on that mutex. - */ - if (SetEvent (mx->event) == 0) - { - result = EINVAL; - } - } - } - } - else - { - if (pthread_equal (mx->ownerThread, pthread_self())) - { - if (kind != PTHREAD_MUTEX_RECURSIVE - || 0 == --mx->recursive_count) - { - mx->ownerThread.p = NULL; - - if ((LONG) __PTW32_INTERLOCKED_EXCHANGE_LONG ((__PTW32_INTERLOCKED_LONGPTR)&mx->lock_idx, - (__PTW32_INTERLOCKED_LONG)0) < 0L) - { - /* Someone may be waiting on that mutex */ - if (SetEvent (mx->event) == 0) - { - result = EINVAL; - } - } - } - } - else - { - result = EPERM; - } - } - } - else - { - /* Robust types */ - pthread_t self = pthread_self(); - kind = -kind - 1; /* Convert to non-robust range */ - - /* - * The thread must own the lock regardless of type if the mutex - * is robust. - */ - if (pthread_equal (mx->ownerThread, self)) - { - __PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG ((__PTW32_INTERLOCKED_LONGPTR) &mx->robustNode->stateInconsistent, - (__PTW32_INTERLOCKED_LONG)__PTW32_ROBUST_NOTRECOVERABLE, - (__PTW32_INTERLOCKED_LONG)__PTW32_ROBUST_INCONSISTENT); - if (PTHREAD_MUTEX_NORMAL == kind) - { - __ptw32_robust_mutex_remove(mutex, NULL); - - if ((LONG) __PTW32_INTERLOCKED_EXCHANGE_LONG ((__PTW32_INTERLOCKED_LONGPTR) &mx->lock_idx, - (__PTW32_INTERLOCKED_LONG) 0) < 0) - { - /* - * Someone may be waiting on that mutex. - */ - if (SetEvent (mx->event) == 0) - { - result = EINVAL; - } - } - } - else - { - if (kind != PTHREAD_MUTEX_RECURSIVE - || 0 == --mx->recursive_count) - { - __ptw32_robust_mutex_remove(mutex, NULL); - - if ((LONG) __PTW32_INTERLOCKED_EXCHANGE_LONG ((__PTW32_INTERLOCKED_LONGPTR) &mx->lock_idx, - (__PTW32_INTERLOCKED_LONG) 0) < 0) - { - /* - * Someone may be waiting on that mutex. - */ - if (SetEvent (mx->event) == 0) - { - result = EINVAL; - } - } - } - } - } - else - { - result = EPERM; - } - } - } - else if (mx != PTHREAD_MUTEX_INITIALIZER) - { - /* - * If mx is PTHREAD_ERRORCHECK_MUTEX_INITIALIZER or PTHREAD_RECURSIVE_MUTEX_INITIALIZER - * we need to know we are doing something unexpected. For PTHREAD_MUTEX_INITIALIZER - * (normal) mutexes we can just silently ignore it. - */ - result = EINVAL; - } - - return (result); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_destroy.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_destroy.c deleted file mode 100644 index 09b6bcb..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_destroy.c +++ /dev/null @@ -1,85 +0,0 @@ -/* - * pthread_mutexattr_destroy.c - * - * Description: - * This translation unit implements mutual exclusion (mutex) primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_mutexattr_destroy (pthread_mutexattr_t * attr) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Destroys a mutex attributes object. The object can - * no longer be used. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_mutexattr_t - * - * - * DESCRIPTION - * Destroys a mutex attributes object. The object can - * no longer be used. - * - * NOTES: - * 1) Does not affect mutexes created using 'attr' - * - * RESULTS - * 0 successfully released attr, - * EINVAL 'attr' is invalid. - * - * ------------------------------------------------------ - */ -{ - int result = 0; - - if (attr == NULL || *attr == NULL) - { - result = EINVAL; - } - else - { - pthread_mutexattr_t ma = *attr; - - *attr = NULL; - free (ma); - } - - return (result); -} /* pthread_mutexattr_destroy */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_getkind_np.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_getkind_np.c deleted file mode 100644 index 2f0799f..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_getkind_np.c +++ /dev/null @@ -1,46 +0,0 @@ -/* - * pthread_mutexattr_getkind_np.c - * - * Description: - * This translation unit implements non-portable thread functions. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -int -pthread_mutexattr_getkind_np (pthread_mutexattr_t * attr, int *kind) -{ - return pthread_mutexattr_gettype (attr, kind); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_getpshared.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_getpshared.c deleted file mode 100644 index dd43a09..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_getpshared.c +++ /dev/null @@ -1,97 +0,0 @@ -/* - * pthread_mutexattr_getpshared.c - * - * Description: - * This translation unit implements mutual exclusion (mutex) primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_mutexattr_getpshared (const pthread_mutexattr_t * attr, int *pshared) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Determine whether mutexes created with 'attr' can be - * shared between processes. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_mutexattr_t - * - * pshared - * will be set to one of: - * - * PTHREAD_PROCESS_SHARED - * May be shared if in shared memory - * - * PTHREAD_PROCESS_PRIVATE - * Cannot be shared. - * - * - * DESCRIPTION - * Mutexes creatd with 'attr' can be shared between - * processes if pthread_mutex_t variable is allocated - * in memory shared by these processes. - * NOTES: - * 1) pshared mutexes MUST be allocated in shared - * memory. - * 2) The following macro is defined if shared mutexes - * are supported: - * _POSIX_THREAD_PROCESS_SHARED - * - * RESULTS - * 0 successfully retrieved attribute, - * EINVAL 'attr' is invalid, - * - * ------------------------------------------------------ - */ -{ - int result; - - if ((attr != NULL && *attr != NULL) && (pshared != NULL)) - { - *pshared = (*attr)->pshared; - result = 0; - } - else - { - result = EINVAL; - } - - return (result); - -} /* pthread_mutexattr_getpshared */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_getrobust.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_getrobust.c deleted file mode 100644 index 7ddd648..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_getrobust.c +++ /dev/null @@ -1,115 +0,0 @@ -/* - * pthread_mutexattr_getrobust.c - * - * Description: - * This translation unit implements mutual exclusion (mutex) primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_mutexattr_getrobust (const pthread_mutexattr_t * attr, int * robust) - /* - * ------------------------------------------------------ - * - * DOCPUBLIC - * The pthread_mutexattr_setrobust() and - * pthread_mutexattr_getrobust() functions respectively set and - * get the mutex robust attribute. This attribute is set in the - * robust parameter to these functions. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_mutexattr_t - * - * robust - * must be one of: - * - * PTHREAD_MUTEX_STALLED - * - * PTHREAD_MUTEX_ROBUST - * - * DESCRIPTION - * The pthread_mutexattr_setrobust() and - * pthread_mutexattr_getrobust() functions respectively set and - * get the mutex robust attribute. This attribute is set in the - * robust parameter to these functions. The default value of the - * robust attribute is PTHREAD_MUTEX_STALLED. - * - * The robustness of mutex is contained in the robustness attribute - * of the mutex attributes. Valid mutex robustness values are: - * - * PTHREAD_MUTEX_STALLED - * No special actions are taken if the owner of the mutex is - * terminated while holding the mutex lock. This can lead to - * deadlocks if no other thread can unlock the mutex. - * This is the default value. - * - * PTHREAD_MUTEX_ROBUST - * If the process containing the owning thread of a robust mutex - * terminates while holding the mutex lock, the next thread that - * acquires the mutex shall be notified about the termination by - * the return value [EOWNERDEAD] from the locking function. If the - * owning thread of a robust mutex terminates while holding the mutex - * lock, the next thread that acquires the mutex may be notified - * about the termination by the return value [EOWNERDEAD]. The - * notified thread can then attempt to mark the state protected by - * the mutex as consistent again by a call to - * pthread_mutex_consistent(). After a subsequent successful call to - * pthread_mutex_unlock(), the mutex lock shall be released and can - * be used normally by other threads. If the mutex is unlocked without - * a call to pthread_mutex_consistent(), it shall be in a permanently - * unusable state and all attempts to lock the mutex shall fail with - * the error [ENOTRECOVERABLE]. The only permissible operation on such - * a mutex is pthread_mutex_destroy(). - * - * RESULTS - * 0 successfully set attribute, - * EINVAL 'attr' or 'robust' is invalid, - * - * ------------------------------------------------------ - */ -{ - int result = EINVAL; - - if ((attr != NULL && *attr != NULL && robust != NULL)) - { - *robust = (*attr)->robustness; - result = 0; - } - - return (result); -} /* pthread_mutexattr_getrobust */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_gettype.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_gettype.c deleted file mode 100644 index aaff414..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_gettype.c +++ /dev/null @@ -1,58 +0,0 @@ -/* - * pthread_mutexattr_gettype.c - * - * Description: - * This translation unit implements mutual exclusion (mutex) primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_mutexattr_gettype (const pthread_mutexattr_t * attr, int *kind) -{ - int result = 0; - - if (attr != NULL && *attr != NULL && kind != NULL) - { - *kind = (*attr)->kind; - } - else - { - result = EINVAL; - } - - return (result); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_init.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_init.c deleted file mode 100644 index 88ac26a..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_init.c +++ /dev/null @@ -1,89 +0,0 @@ -/* - * pthread_mutexattr_init.c - * - * Description: - * This translation unit implements mutual exclusion (mutex) primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_mutexattr_init (pthread_mutexattr_t * attr) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Initializes a mutex attributes object with default - * attributes. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_mutexattr_t - * - * - * DESCRIPTION - * Initializes a mutex attributes object with default - * attributes. - * - * NOTES: - * 1) Used to define mutex types - * - * RESULTS - * 0 successfully initialized attr, - * ENOMEM insufficient memory for attr. - * - * ------------------------------------------------------ - */ -{ - int result = 0; - pthread_mutexattr_t ma; - - ma = (pthread_mutexattr_t) calloc (1, sizeof (*ma)); - - if (ma == NULL) - { - result = ENOMEM; - } - else - { - ma->pshared = PTHREAD_PROCESS_PRIVATE; - ma->kind = PTHREAD_MUTEX_DEFAULT; - ma->robustness = PTHREAD_MUTEX_STALLED; - } - - *attr = ma; - - return (result); -} /* pthread_mutexattr_init */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_setkind_np.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_setkind_np.c deleted file mode 100644 index fda1a91..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_setkind_np.c +++ /dev/null @@ -1,46 +0,0 @@ -/* - * pthread_mutexattr_setkind_np.c - * - * Description: - * This translation unit implements non-portable thread functions. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -int -pthread_mutexattr_setkind_np (pthread_mutexattr_t * attr, int kind) -{ - return pthread_mutexattr_settype (attr, kind); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_setpshared.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_setpshared.c deleted file mode 100644 index 6a5770e..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_setpshared.c +++ /dev/null @@ -1,121 +0,0 @@ -/* - * pthread_mutexattr_setpshared.c - * - * Description: - * This translation unit implements mutual exclusion (mutex) primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_mutexattr_setpshared (pthread_mutexattr_t * attr, int pshared) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Mutexes created with 'attr' can be shared between - * processes if pthread_mutex_t variable is allocated - * in memory shared by these processes. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_mutexattr_t - * - * pshared - * must be one of: - * - * PTHREAD_PROCESS_SHARED - * May be shared if in shared memory - * - * PTHREAD_PROCESS_PRIVATE - * Cannot be shared. - * - * DESCRIPTION - * Mutexes creatd with 'attr' can be shared between - * processes if pthread_mutex_t variable is allocated - * in memory shared by these processes. - * - * NOTES: - * 1) pshared mutexes MUST be allocated in shared - * memory. - * - * 2) The following macro is defined if shared mutexes - * are supported: - * _POSIX_THREAD_PROCESS_SHARED - * - * RESULTS - * 0 successfully set attribute, - * EINVAL 'attr' or pshared is invalid, - * ENOSYS PTHREAD_PROCESS_SHARED not supported, - * - * ------------------------------------------------------ - */ -{ - int result; - - if ((attr != NULL && *attr != NULL) && - ((pshared == PTHREAD_PROCESS_SHARED) || - (pshared == PTHREAD_PROCESS_PRIVATE))) - { - if (pshared == PTHREAD_PROCESS_SHARED) - { - -#if !defined( _POSIX_THREAD_PROCESS_SHARED ) - - result = ENOSYS; - pshared = PTHREAD_PROCESS_PRIVATE; - -#else - - result = 0; - -#endif /* _POSIX_THREAD_PROCESS_SHARED */ - - } - else - { - result = 0; - } - - (*attr)->pshared = pshared; - } - else - { - result = EINVAL; - } - - return (result); - -} /* pthread_mutexattr_setpshared */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_setrobust.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_setrobust.c deleted file mode 100644 index b5424a2..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_setrobust.c +++ /dev/null @@ -1,121 +0,0 @@ -/* - * pthread_mutexattr_setrobust.c - * - * Description: - * This translation unit implements mutual exclusion (mutex) primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_mutexattr_setrobust (pthread_mutexattr_t * attr, int robust) - /* - * ------------------------------------------------------ - * - * DOCPUBLIC - * The pthread_mutexattr_setrobust() and - * pthread_mutexattr_getrobust() functions respectively set and - * get the mutex robust attribute. This attribute is set in the - * robust parameter to these functions. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_mutexattr_t - * - * robust - * must be one of: - * - * PTHREAD_MUTEX_STALLED - * - * PTHREAD_MUTEX_ROBUST - * - * DESCRIPTION - * The pthread_mutexattr_setrobust() and - * pthread_mutexattr_getrobust() functions respectively set and - * get the mutex robust attribute. This attribute is set in the - * robust parameter to these functions. The default value of the - * robust attribute is PTHREAD_MUTEX_STALLED. - * - * The robustness of mutex is contained in the robustness attribute - * of the mutex attributes. Valid mutex robustness values are: - * - * PTHREAD_MUTEX_STALLED - * No special actions are taken if the owner of the mutex is - * terminated while holding the mutex lock. This can lead to - * deadlocks if no other thread can unlock the mutex. - * This is the default value. - * - * PTHREAD_MUTEX_ROBUST - * If the process containing the owning thread of a robust mutex - * terminates while holding the mutex lock, the next thread that - * acquires the mutex shall be notified about the termination by - * the return value [EOWNERDEAD] from the locking function. If the - * owning thread of a robust mutex terminates while holding the mutex - * lock, the next thread that acquires the mutex may be notified - * about the termination by the return value [EOWNERDEAD]. The - * notified thread can then attempt to mark the state protected by - * the mutex as consistent again by a call to - * pthread_mutex_consistent(). After a subsequent successful call to - * pthread_mutex_unlock(), the mutex lock shall be released and can - * be used normally by other threads. If the mutex is unlocked without - * a call to pthread_mutex_consistent(), it shall be in a permanently - * unusable state and all attempts to lock the mutex shall fail with - * the error [ENOTRECOVERABLE]. The only permissible operation on such - * a mutex is pthread_mutex_destroy(). - * - * RESULTS - * 0 successfully set attribute, - * EINVAL 'attr' or 'robust' is invalid, - * - * ------------------------------------------------------ - */ -{ - int result = EINVAL; - - if ((attr != NULL && *attr != NULL)) - { - switch (robust) - { - case PTHREAD_MUTEX_STALLED: - case PTHREAD_MUTEX_ROBUST: - (*attr)->robustness = robust; - result = 0; - break; - } - } - - return (result); -} /* pthread_mutexattr_setrobust */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_settype.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_settype.c deleted file mode 100644 index 698c566..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_mutexattr_settype.c +++ /dev/null @@ -1,145 +0,0 @@ -/* - * pthread_mutexattr_settype.c - * - * Description: - * This translation unit implements mutual exclusion (mutex) primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_mutexattr_settype (pthread_mutexattr_t * attr, int kind) - /* - * ------------------------------------------------------ - * - * DOCPUBLIC - * The pthread_mutexattr_settype() and - * pthread_mutexattr_gettype() functions respectively set and - * get the mutex type attribute. This attribute is set in the - * type parameter to these functions. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_mutexattr_t - * - * type - * must be one of: - * - * PTHREAD_MUTEX_DEFAULT - * - * PTHREAD_MUTEX_NORMAL - * - * PTHREAD_MUTEX_ERRORCHECK - * - * PTHREAD_MUTEX_RECURSIVE - * - * DESCRIPTION - * The pthread_mutexattr_settype() and - * pthread_mutexattr_gettype() functions respectively set and - * get the mutex type attribute. This attribute is set in the - * type parameter to these functions. The default value of the - * type attribute is PTHREAD_MUTEX_DEFAULT. - * - * The type of mutex is contained in the type attribute of the - * mutex attributes. Valid mutex types include: - * - * PTHREAD_MUTEX_NORMAL - * This type of mutex does not detect deadlock. A - * thread attempting to relock this mutex without - * first unlocking it will deadlock. Attempting to - * unlock a mutex locked by a different thread - * results in undefined behavior. Attempting to - * unlock an unlocked mutex results in undefined - * behavior. - * - * PTHREAD_MUTEX_ERRORCHECK - * This type of mutex provides error checking. A - * thread attempting to relock this mutex without - * first unlocking it will return with an error. A - * thread attempting to unlock a mutex which another - * thread has locked will return with an error. A - * thread attempting to unlock an unlocked mutex will - * return with an error. - * - * PTHREAD_MUTEX_DEFAULT - * Same as PTHREAD_MUTEX_NORMAL. - * - * PTHREAD_MUTEX_RECURSIVE - * A thread attempting to relock this mutex without - * first unlocking it will succeed in locking the - * mutex. The relocking deadlock which can occur with - * mutexes of type PTHREAD_MUTEX_NORMAL cannot occur - * with this type of mutex. Multiple locks of this - * mutex require the same number of unlocks to - * release the mutex before another thread can - * acquire the mutex. A thread attempting to unlock a - * mutex which another thread has locked will return - * with an error. A thread attempting to unlock an - * unlocked mutex will return with an error. This - * type of mutex is only supported for mutexes whose - * process shared attribute is - * PTHREAD_PROCESS_PRIVATE. - * - * RESULTS - * 0 successfully set attribute, - * EINVAL 'attr' or 'type' is invalid, - * - * ------------------------------------------------------ - */ -{ - int result = 0; - - if ((attr != NULL && *attr != NULL)) - { - switch (kind) - { - case PTHREAD_MUTEX_FAST_NP: - case PTHREAD_MUTEX_RECURSIVE_NP: - case PTHREAD_MUTEX_ERRORCHECK_NP: - (*attr)->kind = kind; - break; - default: - result = EINVAL; - break; - } - } - else - { - result = EINVAL; - } - - return (result); -} /* pthread_mutexattr_settype */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_num_processors_np.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_num_processors_np.c deleted file mode 100644 index 3549f16..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_num_processors_np.c +++ /dev/null @@ -1,58 +0,0 @@ -/* - * pthread_num_processors_np.c - * - * Description: - * This translation unit implements non-portable thread functions. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -/* - * pthread_num_processors_np() - * - * Get the number of CPUs available to the process. - */ -int -pthread_num_processors_np (void) -{ - int count; - - if (__ptw32_getprocessors (&count) != 0) - { - count = 1; - } - - return (count); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_once.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_once.c deleted file mode 100644 index a163625..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_once.c +++ /dev/null @@ -1,81 +0,0 @@ -/* - * pthread_once.c - * - * Description: - * This translation unit implements miscellaneous thread functions. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -int -pthread_once (pthread_once_t * once_control, void (__PTW32_CDECL *init_routine) (void)) -{ - if (once_control == NULL || init_routine == NULL) - { - return EINVAL; - } - - if ((__PTW32_INTERLOCKED_LONG)__PTW32_FALSE == - (__PTW32_INTERLOCKED_LONG)__PTW32_INTERLOCKED_EXCHANGE_ADD_LONG ((__PTW32_INTERLOCKED_LONGPTR)&once_control->done, - (__PTW32_INTERLOCKED_LONG)0)) /* MBR fence */ - { - __ptw32_mcs_local_node_t node; - - __ptw32_mcs_lock_acquire((__ptw32_mcs_lock_t *)&once_control->lock, &node); - - if (!once_control->done) - { - -#if defined (__PTW32_CONFIG_MSVC7) -#pragma inline_depth(0) -#endif - - pthread_cleanup_push(__ptw32_mcs_lock_release, &node); - (*init_routine)(); - pthread_cleanup_pop(0); - -#if defined (__PTW32_CONFIG_MSVC7) -#pragma inline_depth() -#endif - - once_control->done = __PTW32_TRUE; - } - - __ptw32_mcs_lock_release(&node); - } - - return 0; - -} /* pthread_once */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_destroy.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_destroy.c deleted file mode 100644 index 359ad36..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_destroy.c +++ /dev/null @@ -1,145 +0,0 @@ -/* - * pthread_rwlock_destroy.c - * - * Description: - * This translation unit implements read/write lock primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include - -#include "pthread.h" -#include "implement.h" - -int -pthread_rwlock_destroy (pthread_rwlock_t * rwlock) -{ - pthread_rwlock_t rwl; - int result = 0, result1 = 0, result2 = 0; - - if (rwlock == NULL || *rwlock == NULL) - { - return EINVAL; - } - - if (*rwlock != PTHREAD_RWLOCK_INITIALIZER) - { - rwl = *rwlock; - - if (rwl->nMagic != __PTW32_RWLOCK_MAGIC) - { - return EINVAL; - } - - if ((result = pthread_mutex_lock (&(rwl->mtxExclusiveAccess))) != 0) - { - return result; - } - - if ((result = - pthread_mutex_lock (&(rwl->mtxSharedAccessCompleted))) != 0) - { - (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); - return result; - } - - /* - * Check whether any threads own/wait for the lock (wait for ex.access); - * report "BUSY" if so. - */ - if (rwl->nExclusiveAccessCount > 0 - || rwl->nSharedAccessCount > rwl->nCompletedSharedAccessCount) - { - result = pthread_mutex_unlock (&(rwl->mtxSharedAccessCompleted)); - result1 = pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); - result2 = EBUSY; - } - else - { - rwl->nMagic = 0; - - if ((result = - pthread_mutex_unlock (&(rwl->mtxSharedAccessCompleted))) != 0) - { - pthread_mutex_unlock (&rwl->mtxExclusiveAccess); - return result; - } - - if ((result = - pthread_mutex_unlock (&(rwl->mtxExclusiveAccess))) != 0) - { - return result; - } - - *rwlock = NULL; /* Invalidate rwlock before anything else */ - result = pthread_cond_destroy (&(rwl->cndSharedAccessCompleted)); - result1 = pthread_mutex_destroy (&(rwl->mtxSharedAccessCompleted)); - result2 = pthread_mutex_destroy (&(rwl->mtxExclusiveAccess)); - (void) free (rwl); - } - } - else - { - __ptw32_mcs_local_node_t node; - /* - * See notes in __ptw32_rwlock_check_need_init() above also. - */ - __ptw32_mcs_lock_acquire(&__ptw32_rwlock_test_init_lock, &node); - - /* - * Check again. - */ - if (*rwlock == PTHREAD_RWLOCK_INITIALIZER) - { - /* - * This is all we need to do to destroy a statically - * initialised rwlock that has not yet been used (initialised). - * If we get to here, another thread - * waiting to initialise this rwlock will get an EINVAL. - */ - *rwlock = NULL; - } - else - { - /* - * The rwlock has been initialised while we were waiting - * so assume it's in use. - */ - result = EBUSY; - } - - __ptw32_mcs_lock_release(&node); - } - - return ((result != 0) ? result : ((result1 != 0) ? result1 : result2)); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_init.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_init.c deleted file mode 100644 index 4903dd0..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_init.c +++ /dev/null @@ -1,111 +0,0 @@ -/* - * pthread_rwlock_init.c - * - * Description: - * This translation unit implements read/write lock primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include - -#include "pthread.h" -#include "implement.h" - -int -pthread_rwlock_init (pthread_rwlock_t * rwlock, - const pthread_rwlockattr_t * attr) -{ - int result; - pthread_rwlock_t rwl = 0; - - if (rwlock == NULL) - { - return EINVAL; - } - - if (attr != NULL && *attr != NULL) - { - result = EINVAL; /* Not supported */ - goto DONE; - } - - rwl = (pthread_rwlock_t) calloc (1, sizeof (*rwl)); - - if (rwl == NULL) - { - result = ENOMEM; - goto DONE; - } - - rwl->nSharedAccessCount = 0; - rwl->nExclusiveAccessCount = 0; - rwl->nCompletedSharedAccessCount = 0; - - result = pthread_mutex_init (&rwl->mtxExclusiveAccess, NULL); - if (result != 0) - { - goto FAIL0; - } - - result = pthread_mutex_init (&rwl->mtxSharedAccessCompleted, NULL); - if (result != 0) - { - goto FAIL1; - } - - result = pthread_cond_init (&rwl->cndSharedAccessCompleted, NULL); - if (result != 0) - { - goto FAIL2; - } - - rwl->nMagic = __PTW32_RWLOCK_MAGIC; - - result = 0; - goto DONE; - -FAIL2: - (void) pthread_mutex_destroy (&(rwl->mtxSharedAccessCompleted)); - -FAIL1: - (void) pthread_mutex_destroy (&(rwl->mtxExclusiveAccess)); - -FAIL0: - (void) free (rwl); - rwl = NULL; - -DONE: - *rwlock = rwl; - - return result; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_rdlock.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_rdlock.c deleted file mode 100644 index 1d141c1..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_rdlock.c +++ /dev/null @@ -1,104 +0,0 @@ -/* - * pthread_rwlock_rdlock.c - * - * Description: - * This translation unit implements read/write lock primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include - -#include "pthread.h" -#include "implement.h" - -int -pthread_rwlock_rdlock (pthread_rwlock_t * rwlock) -{ - int result; - pthread_rwlock_t rwl; - - if (rwlock == NULL || *rwlock == NULL) - { - return EINVAL; - } - - /* - * We do a quick check to see if we need to do more work - * to initialise a static rwlock. We check - * again inside the guarded section of __ptw32_rwlock_check_need_init() - * to avoid race conditions. - */ - if (*rwlock == PTHREAD_RWLOCK_INITIALIZER) - { - result = __ptw32_rwlock_check_need_init (rwlock); - - if (result != 0 && result != EBUSY) - { - return result; - } - } - - rwl = *rwlock; - - if (rwl->nMagic != __PTW32_RWLOCK_MAGIC) - { - return EINVAL; - } - - if ((result = pthread_mutex_lock (&(rwl->mtxExclusiveAccess))) != 0) - { - return result; - } - - if (++rwl->nSharedAccessCount == INT_MAX) - { - if ((result = - pthread_mutex_lock (&(rwl->mtxSharedAccessCompleted))) != 0) - { - (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); - return result; - } - - rwl->nSharedAccessCount -= rwl->nCompletedSharedAccessCount; - rwl->nCompletedSharedAccessCount = 0; - - if ((result = - pthread_mutex_unlock (&(rwl->mtxSharedAccessCompleted))) != 0) - { - (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); - return result; - } - } - - return (pthread_mutex_unlock (&(rwl->mtxExclusiveAccess))); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_timedrdlock.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_timedrdlock.c deleted file mode 100644 index 3099ad9..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_timedrdlock.c +++ /dev/null @@ -1,111 +0,0 @@ -/* - * pthread_rwlock_timedrdlock.c - * - * Description: - * This translation unit implements read/write lock primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include - -#include "pthread.h" -#include "implement.h" - -int -pthread_rwlock_timedrdlock (pthread_rwlock_t * rwlock, - const struct timespec *abstime) -{ - int result; - pthread_rwlock_t rwl; - - if (rwlock == NULL || *rwlock == NULL) - { - return EINVAL; - } - - /* - * We do a quick check to see if we need to do more work - * to initialise a static rwlock. We check - * again inside the guarded section of __ptw32_rwlock_check_need_init() - * to avoid race conditions. - */ - if (*rwlock == PTHREAD_RWLOCK_INITIALIZER) - { - result = __ptw32_rwlock_check_need_init (rwlock); - - if (result != 0 && result != EBUSY) - { - return result; - } - } - - rwl = *rwlock; - - if (rwl->nMagic != __PTW32_RWLOCK_MAGIC) - { - return EINVAL; - } - - if ((result = - pthread_mutex_timedlock (&(rwl->mtxExclusiveAccess), abstime)) != 0) - { - return result; - } - - if (++rwl->nSharedAccessCount == INT_MAX) - { - if ((result = - pthread_mutex_timedlock (&(rwl->mtxSharedAccessCompleted), - abstime)) != 0) - { - if (result == ETIMEDOUT) - { - ++rwl->nCompletedSharedAccessCount; - } - (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); - return result; - } - - rwl->nSharedAccessCount -= rwl->nCompletedSharedAccessCount; - rwl->nCompletedSharedAccessCount = 0; - - if ((result = - pthread_mutex_unlock (&(rwl->mtxSharedAccessCompleted))) != 0) - { - (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); - return result; - } - } - - return (pthread_mutex_unlock (&(rwl->mtxExclusiveAccess))); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_timedwrlock.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_timedwrlock.c deleted file mode 100644 index 86f085f..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_timedwrlock.c +++ /dev/null @@ -1,141 +0,0 @@ -/* - * pthread_rwlock_timedwrlock.c - * - * Description: - * This translation unit implements read/write lock primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include - -#include "pthread.h" -#include "implement.h" - -int -pthread_rwlock_timedwrlock (pthread_rwlock_t * rwlock, - const struct timespec *abstime) -{ - int result; - pthread_rwlock_t rwl; - - if (rwlock == NULL || *rwlock == NULL) - { - return EINVAL; - } - - /* - * We do a quick check to see if we need to do more work - * to initialise a static rwlock. We check - * again inside the guarded section of __ptw32_rwlock_check_need_init() - * to avoid race conditions. - */ - if (*rwlock == PTHREAD_RWLOCK_INITIALIZER) - { - result = __ptw32_rwlock_check_need_init (rwlock); - - if (result != 0 && result != EBUSY) - { - return result; - } - } - - rwl = *rwlock; - - if (rwl->nMagic != __PTW32_RWLOCK_MAGIC) - { - return EINVAL; - } - - if ((result = - pthread_mutex_timedlock (&(rwl->mtxExclusiveAccess), abstime)) != 0) - { - return result; - } - - if ((result = - pthread_mutex_timedlock (&(rwl->mtxSharedAccessCompleted), - abstime)) != 0) - { - (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); - return result; - } - - if (rwl->nExclusiveAccessCount == 0) - { - if (rwl->nCompletedSharedAccessCount > 0) - { - rwl->nSharedAccessCount -= rwl->nCompletedSharedAccessCount; - rwl->nCompletedSharedAccessCount = 0; - } - - if (rwl->nSharedAccessCount > 0) - { - rwl->nCompletedSharedAccessCount = -rwl->nSharedAccessCount; - - /* - * This routine may be a cancellation point - * according to POSIX 1003.1j section 18.1.2. - */ -#if defined (__PTW32_CONFIG_MSVC7) -#pragma inline_depth(0) -#endif - pthread_cleanup_push (__ptw32_rwlock_cancelwrwait, (void *) rwl); - - do - { - result = - pthread_cond_timedwait (&(rwl->cndSharedAccessCompleted), - &(rwl->mtxSharedAccessCompleted), - abstime); - } - while (result == 0 && rwl->nCompletedSharedAccessCount < 0); - - pthread_cleanup_pop ((result != 0) ? 1 : 0); -#if defined (__PTW32_CONFIG_MSVC7) -#pragma inline_depth() -#endif - - if (result == 0) - { - rwl->nSharedAccessCount = 0; - } - } - } - - if (result == 0) - { - rwl->nExclusiveAccessCount++; - } - - return result; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_tryrdlock.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_tryrdlock.c deleted file mode 100644 index f95c412..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_tryrdlock.c +++ /dev/null @@ -1,104 +0,0 @@ -/* - * pthread_rwlock_tryrdlock.c - * - * Description: - * This translation unit implements read/write lock primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include - -#include "pthread.h" -#include "implement.h" - -int -pthread_rwlock_tryrdlock (pthread_rwlock_t * rwlock) -{ - int result; - pthread_rwlock_t rwl; - - if (rwlock == NULL || *rwlock == NULL) - { - return EINVAL; - } - - /* - * We do a quick check to see if we need to do more work - * to initialise a static rwlock. We check - * again inside the guarded section of __ptw32_rwlock_check_need_init() - * to avoid race conditions. - */ - if (*rwlock == PTHREAD_RWLOCK_INITIALIZER) - { - result = __ptw32_rwlock_check_need_init (rwlock); - - if (result != 0 && result != EBUSY) - { - return result; - } - } - - rwl = *rwlock; - - if (rwl->nMagic != __PTW32_RWLOCK_MAGIC) - { - return EINVAL; - } - - if ((result = pthread_mutex_trylock (&(rwl->mtxExclusiveAccess))) != 0) - { - return result; - } - - if (++rwl->nSharedAccessCount == INT_MAX) - { - if ((result = - pthread_mutex_lock (&(rwl->mtxSharedAccessCompleted))) != 0) - { - (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); - return result; - } - - rwl->nSharedAccessCount -= rwl->nCompletedSharedAccessCount; - rwl->nCompletedSharedAccessCount = 0; - - if ((result = - pthread_mutex_unlock (&(rwl->mtxSharedAccessCompleted))) != 0) - { - (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); - return result; - } - } - - return (pthread_mutex_unlock (&rwl->mtxExclusiveAccess)); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_trywrlock.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_trywrlock.c deleted file mode 100644 index 373d3a9..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_trywrlock.c +++ /dev/null @@ -1,124 +0,0 @@ -/* - * pthread_rwlock_trywrlock.c - * - * Description: - * This translation unit implements read/write lock primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include - -#include "pthread.h" -#include "implement.h" - -int -pthread_rwlock_trywrlock (pthread_rwlock_t * rwlock) -{ - int result, result1; - pthread_rwlock_t rwl; - - if (rwlock == NULL || *rwlock == NULL) - { - return EINVAL; - } - - /* - * We do a quick check to see if we need to do more work - * to initialise a static rwlock. We check - * again inside the guarded section of __ptw32_rwlock_check_need_init() - * to avoid race conditions. - */ - if (*rwlock == PTHREAD_RWLOCK_INITIALIZER) - { - result = __ptw32_rwlock_check_need_init (rwlock); - - if (result != 0 && result != EBUSY) - { - return result; - } - } - - rwl = *rwlock; - - if (rwl->nMagic != __PTW32_RWLOCK_MAGIC) - { - return EINVAL; - } - - if ((result = pthread_mutex_trylock (&(rwl->mtxExclusiveAccess))) != 0) - { - return result; - } - - if ((result = - pthread_mutex_trylock (&(rwl->mtxSharedAccessCompleted))) != 0) - { - result1 = pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); - return ((result1 != 0) ? result1 : result); - } - - if (rwl->nExclusiveAccessCount == 0) - { - if (rwl->nCompletedSharedAccessCount > 0) - { - rwl->nSharedAccessCount -= rwl->nCompletedSharedAccessCount; - rwl->nCompletedSharedAccessCount = 0; - } - - if (rwl->nSharedAccessCount > 0) - { - if ((result = - pthread_mutex_unlock (&(rwl->mtxSharedAccessCompleted))) != 0) - { - (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); - return result; - } - - if ((result = - pthread_mutex_unlock (&(rwl->mtxExclusiveAccess))) == 0) - { - result = EBUSY; - } - } - else - { - rwl->nExclusiveAccessCount = 1; - } - } - else - { - result = EBUSY; - } - - return result; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_unlock.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_unlock.c deleted file mode 100644 index a01e993..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_unlock.c +++ /dev/null @@ -1,95 +0,0 @@ -/* - * pthread_rwlock_unlock.c - * - * Description: - * This translation unit implements read/write lock primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include - -#include "pthread.h" -#include "implement.h" - -int -pthread_rwlock_unlock (pthread_rwlock_t * rwlock) -{ - int result, result1; - pthread_rwlock_t rwl; - - if (rwlock == NULL || *rwlock == NULL) - { - return (EINVAL); - } - - if (*rwlock == PTHREAD_RWLOCK_INITIALIZER) - { - /* - * Assume any race condition here is harmless. - */ - return 0; - } - - rwl = *rwlock; - - if (rwl->nMagic != __PTW32_RWLOCK_MAGIC) - { - return EINVAL; - } - - if (rwl->nExclusiveAccessCount == 0) - { - if ((result = - pthread_mutex_lock (&(rwl->mtxSharedAccessCompleted))) != 0) - { - return result; - } - - if (++rwl->nCompletedSharedAccessCount == 0) - { - result = pthread_cond_signal (&(rwl->cndSharedAccessCompleted)); - } - - result1 = pthread_mutex_unlock (&(rwl->mtxSharedAccessCompleted)); - } - else - { - rwl->nExclusiveAccessCount--; - - result = pthread_mutex_unlock (&(rwl->mtxSharedAccessCompleted)); - result1 = pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); - - } - - return ((result != 0) ? result : result1); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_wrlock.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_wrlock.c deleted file mode 100644 index 36037e0..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlock_wrlock.c +++ /dev/null @@ -1,135 +0,0 @@ -/* - * pthread_rwlock_wrlock.c - * - * Description: - * This translation unit implements read/write lock primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include - -#include "pthread.h" -#include "implement.h" - -int -pthread_rwlock_wrlock (pthread_rwlock_t * rwlock) -{ - int result; - pthread_rwlock_t rwl; - - if (rwlock == NULL || *rwlock == NULL) - { - return EINVAL; - } - - /* - * We do a quick check to see if we need to do more work - * to initialise a static rwlock. We check - * again inside the guarded section of __ptw32_rwlock_check_need_init() - * to avoid race conditions. - */ - if (*rwlock == PTHREAD_RWLOCK_INITIALIZER) - { - result = __ptw32_rwlock_check_need_init (rwlock); - - if (result != 0 && result != EBUSY) - { - return result; - } - } - - rwl = *rwlock; - - if (rwl->nMagic != __PTW32_RWLOCK_MAGIC) - { - return EINVAL; - } - - if ((result = pthread_mutex_lock (&(rwl->mtxExclusiveAccess))) != 0) - { - return result; - } - - if ((result = pthread_mutex_lock (&(rwl->mtxSharedAccessCompleted))) != 0) - { - (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); - return result; - } - - if (rwl->nExclusiveAccessCount == 0) - { - if (rwl->nCompletedSharedAccessCount > 0) - { - rwl->nSharedAccessCount -= rwl->nCompletedSharedAccessCount; - rwl->nCompletedSharedAccessCount = 0; - } - - if (rwl->nSharedAccessCount > 0) - { - rwl->nCompletedSharedAccessCount = -rwl->nSharedAccessCount; - - /* - * This routine may be a cancellation point - * according to POSIX 1003.1j section 18.1.2. - */ -#if defined (__PTW32_CONFIG_MSVC7) -#pragma inline_depth(0) -#endif - pthread_cleanup_push (__ptw32_rwlock_cancelwrwait, (void *) rwl); - - do - { - result = pthread_cond_wait (&(rwl->cndSharedAccessCompleted), - &(rwl->mtxSharedAccessCompleted)); - } - while (result == 0 && rwl->nCompletedSharedAccessCount < 0); - - pthread_cleanup_pop ((result != 0) ? 1 : 0); -#if defined (__PTW32_CONFIG_MSVC7) -#pragma inline_depth() -#endif - - if (result == 0) - { - rwl->nSharedAccessCount = 0; - } - } - } - - if (result == 0) - { - rwl->nExclusiveAccessCount++; - } - - return result; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlockattr_destroy.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlockattr_destroy.c deleted file mode 100644 index 18a7ea0..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlockattr_destroy.c +++ /dev/null @@ -1,86 +0,0 @@ -/* - * pthread_rwlockattr_destroy.c - * - * Description: - * This translation unit implements read/write lock primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include - -#include "pthread.h" -#include "implement.h" - -int -pthread_rwlockattr_destroy (pthread_rwlockattr_t * attr) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Destroys a rwlock attributes object. The object can - * no longer be used. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_rwlockattr_t - * - * - * DESCRIPTION - * Destroys a rwlock attributes object. The object can - * no longer be used. - * - * NOTES: - * 1) Does not affect rwlockss created using 'attr' - * - * RESULTS - * 0 successfully released attr, - * EINVAL 'attr' is invalid. - * - * ------------------------------------------------------ - */ -{ - int result = 0; - - if (attr == NULL || *attr == NULL) - { - result = EINVAL; - } - else - { - pthread_rwlockattr_t rwa = *attr; - - *attr = NULL; - free (rwa); - } - - return (result); -} /* pthread_rwlockattr_destroy */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlockattr_getpshared.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlockattr_getpshared.c deleted file mode 100644 index d7bb142..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlockattr_getpshared.c +++ /dev/null @@ -1,99 +0,0 @@ -/* - * pthread_rwlockattr_getpshared.c - * - * Description: - * This translation unit implements read/write lock primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include - -#include "pthread.h" -#include "implement.h" - -int -pthread_rwlockattr_getpshared (const pthread_rwlockattr_t * attr, - int *pshared) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Determine whether rwlocks created with 'attr' can be - * shared between processes. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_rwlockattr_t - * - * pshared - * will be set to one of: - * - * PTHREAD_PROCESS_SHARED - * May be shared if in shared memory - * - * PTHREAD_PROCESS_PRIVATE - * Cannot be shared. - * - * - * DESCRIPTION - * Rwlocks creatd with 'attr' can be shared between - * processes if pthread_rwlock_t variable is allocated - * in memory shared by these processes. - * NOTES: - * 1) pshared rwlocks MUST be allocated in shared - * memory. - * 2) The following macro is defined if shared rwlocks - * are supported: - * _POSIX_THREAD_PROCESS_SHARED - * - * RESULTS - * 0 successfully retrieved attribute, - * EINVAL 'attr' is invalid, - * - * ------------------------------------------------------ - */ -{ - int result; - - if ((attr != NULL && *attr != NULL) && (pshared != NULL)) - { - *pshared = (*attr)->pshared; - result = 0; - } - else - { - result = EINVAL; - } - - return (result); - -} /* pthread_rwlockattr_getpshared */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlockattr_init.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlockattr_init.c deleted file mode 100644 index c1ab554..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlockattr_init.c +++ /dev/null @@ -1,85 +0,0 @@ -/* - * pthread_rwlockattr_init.c - * - * Description: - * This translation unit implements read/write lock primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include - -#include "pthread.h" -#include "implement.h" - -int -pthread_rwlockattr_init (pthread_rwlockattr_t * attr) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Initializes a rwlock attributes object with default - * attributes. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_rwlockattr_t - * - * - * DESCRIPTION - * Initializes a rwlock attributes object with default - * attributes. - * - * RESULTS - * 0 successfully initialized attr, - * ENOMEM insufficient memory for attr. - * - * ------------------------------------------------------ - */ -{ - int result = 0; - pthread_rwlockattr_t rwa; - - rwa = (pthread_rwlockattr_t) calloc (1, sizeof (*rwa)); - - if (rwa == NULL) - { - result = ENOMEM; - } - else - { - rwa->pshared = PTHREAD_PROCESS_PRIVATE; - } - - *attr = rwa; - - return (result); -} /* pthread_rwlockattr_init */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlockattr_setpshared.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlockattr_setpshared.c deleted file mode 100644 index f509958..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_rwlockattr_setpshared.c +++ /dev/null @@ -1,122 +0,0 @@ -/* - * pthread_rwlockattr_setpshared.c - * - * Description: - * This translation unit implements read/write lock primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include - -#include "pthread.h" -#include "implement.h" - -int -pthread_rwlockattr_setpshared (pthread_rwlockattr_t * attr, int pshared) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Rwlocks created with 'attr' can be shared between - * processes if pthread_rwlock_t variable is allocated - * in memory shared by these processes. - * - * PARAMETERS - * attr - * pointer to an instance of pthread_rwlockattr_t - * - * pshared - * must be one of: - * - * PTHREAD_PROCESS_SHARED - * May be shared if in shared memory - * - * PTHREAD_PROCESS_PRIVATE - * Cannot be shared. - * - * DESCRIPTION - * Rwlocks creatd with 'attr' can be shared between - * processes if pthread_rwlock_t variable is allocated - * in memory shared by these processes. - * - * NOTES: - * 1) pshared rwlocks MUST be allocated in shared - * memory. - * - * 2) The following macro is defined if shared rwlocks - * are supported: - * _POSIX_THREAD_PROCESS_SHARED - * - * RESULTS - * 0 successfully set attribute, - * EINVAL 'attr' or pshared is invalid, - * ENOSYS PTHREAD_PROCESS_SHARED not supported, - * - * ------------------------------------------------------ - */ -{ - int result; - - if ((attr != NULL && *attr != NULL) && - ((pshared == PTHREAD_PROCESS_SHARED) || - (pshared == PTHREAD_PROCESS_PRIVATE))) - { - if (pshared == PTHREAD_PROCESS_SHARED) - { - -#if !defined( _POSIX_THREAD_PROCESS_SHARED ) - - result = ENOSYS; - pshared = PTHREAD_PROCESS_PRIVATE; - -#else - - result = 0; - -#endif /* _POSIX_THREAD_PROCESS_SHARED */ - - } - else - { - result = 0; - } - - (*attr)->pshared = pshared; - } - else - { - result = EINVAL; - } - - return (result); - -} /* pthread_rwlockattr_setpshared */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_self.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_self.c deleted file mode 100644 index 67d45f6..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_self.c +++ /dev/null @@ -1,183 +0,0 @@ -/* - * pthread_self.c - * - * Description: - * This translation unit implements miscellaneous thread functions. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -pthread_t -pthread_self (void) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function returns a reference to the current running - * thread. - * - * PARAMETERS - * N/A - * - * - * DESCRIPTION - * This function returns a reference to the current running - * thread. - * - * RESULTS - * pthread_t reference to the current thread - * - * ------------------------------------------------------ - */ -{ - pthread_t self; - pthread_t nil = {NULL, 0}; - __ptw32_thread_t * sp; - -#if defined(_UWIN) - if (!__ptw32_selfThreadKey) - return nil; -#endif - - sp = (__ptw32_thread_t *) pthread_getspecific (__ptw32_selfThreadKey); - - if (sp != NULL) - { - self = sp->ptHandle; - } - else - { - int fail = __PTW32_FALSE; - - /* - * Need to create an implicit 'self' for the currently - * executing thread. - */ - self = __ptw32_new (); - sp = (__ptw32_thread_t *) self.p; - - if (sp != NULL) - { - /* - * This is a non-POSIX thread which has chosen to call - * a POSIX threads function for some reason. We assume that - * it isn't joinable, but we do assume that it's - * (deferred) cancelable. - */ - sp->implicit = 1; - sp->detachState = PTHREAD_CREATE_DETACHED; - sp->thread = GetCurrentThreadId (); - -#if defined(NEED_DUPLICATEHANDLE) - /* - * DuplicateHandle does not exist on WinCE. - * - * NOTE: - * GetCurrentThread only returns a pseudo-handle - * which is only valid in the current thread context. - * Therefore, you should not pass the handle to - * other threads for whatever purpose. - */ - sp->threadH = GetCurrentThread (); -#else - if (!DuplicateHandle (GetCurrentProcess (), - GetCurrentThread (), - GetCurrentProcess (), - &sp->threadH, - 0, FALSE, DUPLICATE_SAME_ACCESS)) - { - fail = __PTW32_TRUE; - } -#endif - - if (!fail) - { - -#if defined(HAVE_CPU_AFFINITY) - - /* - * Get this threads CPU affinity by temporarily setting the threads - * affinity to that of the process to get the old thread affinity, - * then reset to the old affinity. - */ - DWORD_PTR vThreadMask, vProcessMask, vSystemMask; - if (GetProcessAffinityMask(GetCurrentProcess(), &vProcessMask, &vSystemMask)) - { - vThreadMask = SetThreadAffinityMask(sp->threadH, vProcessMask); - if (vThreadMask) - { - if (SetThreadAffinityMask(sp->threadH, vThreadMask)) - { - sp->cpuset = (size_t) vThreadMask; - } - else fail = __PTW32_TRUE; - } - else fail = __PTW32_TRUE; - } - else fail = __PTW32_TRUE; - -#endif - - sp->sched_priority = GetThreadPriority (sp->threadH); - pthread_setspecific (__ptw32_selfThreadKey, (void *) sp); - } - } - - if (fail) - { - /* - * Thread structs are never freed but are reused so if this - * continues to fail at least we don't leak memory. - */ - __ptw32_threadReusePush (self); - /* - * As this is a win32 thread calling us and we have failed, - * return a value that makes sense to win32. - */ - return nil; - } - else - { - /* - * This implicit POSIX thread is running (it called us). - * No other thread can reference us yet because all API calls - * passing a pthread_t should recognise an invalid thread id - * through the reuse counter inequality. - */ - sp->state = PThreadStateRunning; - } - } - - return (self); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_setaffinity.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_setaffinity.c deleted file mode 100644 index badf2e5..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_setaffinity.c +++ /dev/null @@ -1,240 +0,0 @@ -/* - * pthread_setaffinity.c - * - * Description: - * This translation unit implements thread cpu affinity setting. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -int -pthread_setaffinity_np (pthread_t thread, size_t cpusetsize, - const cpu_set_t *cpuset) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * The pthread_setaffinity_np() function sets the CPU affinity mask - * of the thread thread to the CPU set pointed to by cpuset. If the - * call is successful, and the thread is not currently running on one - * of the CPUs in cpuset, then it is migrated to one of those CPUs. - * - * PARAMETERS - * thread - * The target thread - * - * cpusetsize - * Ignored in pthreads4w. - * Usually set to sizeof(cpu_set_t) - * - * cpuset - * The new cpu set mask. - * - * The set of CPUs on which the thread will actually run - * is the intersection of the set specified in the cpuset - * argument and the set of CPUs actually present for - * the process. - * - * DESCRIPTION - * The pthread_setaffinity_np() function sets the CPU affinity mask - * of the thread thread to the CPU set pointed to by cpuset. If the - * call is successful, and the thread is not currently running on one - * of the CPUs in cpuset, then it is migrated to one of those CPUs. - * - * RESULTS - * 0 Success - * ESRCH Thread does not exist - * EFAULT pcuset is NULL - * EAGAIN The thread affinity could not be set - * ENOSYS The platform does not support this function - * - * ------------------------------------------------------ - */ -{ -#if ! defined(HAVE_CPU_AFFINITY) - - return ENOSYS; - -#else - - int result = 0; - __ptw32_thread_t * tp; - __ptw32_mcs_local_node_t node; - cpu_set_t processCpuset; - - __ptw32_mcs_lock_acquire (&__ptw32_thread_reuse_lock, &node); - - tp = (__ptw32_thread_t *) thread.p; - - if (NULL == tp || thread.x != tp->ptHandle.x || NULL == tp->threadH) - { - result = ESRCH; - } - else - { - if (cpuset) - { - if (sched_getaffinity(0, sizeof(cpu_set_t), &processCpuset)) - { - result = __PTW32_GET_ERRNO(); - } - else - { - /* - * Result is the intersection of available CPUs and the mask. - */ - cpu_set_t newMask; - - CPU_AND(&newMask, &processCpuset, cpuset); - - if (((_sched_cpu_set_vector_*)&newMask)->_cpuset) - { - if (SetThreadAffinityMask (tp->threadH, ((_sched_cpu_set_vector_*)&newMask)->_cpuset)) - { - /* - * We record the intersection of the process affinity - * and the thread affinity cpusets so that - * pthread_getaffinity_np() returns the actual thread - * CPU set. - */ - tp->cpuset = ((_sched_cpu_set_vector_*)&newMask)->_cpuset; - } - else - { - result = EAGAIN; - } - } - else - { - result = EINVAL; - } - } - } - else - { - result = EFAULT; - } - } - - __ptw32_mcs_lock_release (&node); - - return result; - -#endif -} - -int -pthread_getaffinity_np (pthread_t thread, size_t cpusetsize, cpu_set_t *cpuset) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * The pthread_getaffinity_np() function returns the CPU affinity mask - * of the thread thread in the CPU set pointed to by cpuset. - * - * PARAMETERS - * thread - * The target thread - * - * cpusetsize - * Ignored in pthreads4w. - * Usually set to sizeof(cpu_set_t) - * - * cpuset - * The location where the current cpu set - * will be returned. - * - * - * DESCRIPTION - * The pthread_getaffinity_np() function returns the CPU affinity mask - * of the thread thread in the CPU set pointed to by cpuset. - * - * RESULTS - * 0 Success - * ESRCH thread does not exist - * EFAULT cpuset is NULL - * ENOSYS The platform does not support this function - * - * ------------------------------------------------------ - */ -{ -#if ! defined(HAVE_CPU_AFFINITY) - - return ENOSYS; - -#else - - int result = 0; - __ptw32_thread_t * tp; - __ptw32_mcs_local_node_t node; - - __ptw32_mcs_lock_acquire(&__ptw32_thread_reuse_lock, &node); - - tp = (__ptw32_thread_t *) thread.p; - - if (NULL == tp || thread.x != tp->ptHandle.x || NULL == tp->threadH) - { - result = ESRCH; - } - else - { - if (cpuset) - { - if (tp->cpuset) - { - /* - * The application may have set thread affinity independently - * via SetThreadAffinityMask(). If so, we adjust our record of the threads - * affinity and try to do so in a reasonable way. - */ - DWORD_PTR vThreadMask = SetThreadAffinityMask(tp->threadH, tp->cpuset); - if (vThreadMask && vThreadMask != tp->cpuset) - { - (void) SetThreadAffinityMask(tp->threadH, vThreadMask); - tp->cpuset = vThreadMask; - } - } - ((_sched_cpu_set_vector_*)cpuset)->_cpuset = tp->cpuset; - } - else - { - result = EFAULT; - } - } - - __ptw32_mcs_lock_release(&node); - - return result; - -#endif -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_setcancelstate.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_setcancelstate.c deleted file mode 100644 index 8227253..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_setcancelstate.c +++ /dev/null @@ -1,127 +0,0 @@ -/* - * pthread_setcancelstate.c - * - * Description: - * POSIX thread functions related to thread cancellation. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_setcancelstate (int state, int *oldstate) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function atomically sets the calling thread's - * cancelability state to 'state' and returns the previous - * cancelability state at the location referenced by - * 'oldstate' - * - * PARAMETERS - * state, - * oldstate - * PTHREAD_CANCEL_ENABLE - * cancellation is enabled, - * - * PTHREAD_CANCEL_DISABLE - * cancellation is disabled - * - * - * DESCRIPTION - * This function atomically sets the calling thread's - * cancelability state to 'state' and returns the previous - * cancelability state at the location referenced by - * 'oldstate'. - * - * NOTES: - * 1) Use to disable cancellation around 'atomic' code that - * includes cancellation points - * - * COMPATIBILITY ADDITIONS - * If 'oldstate' is NULL then the previous state is not returned - * but the function still succeeds. (Solaris) - * - * RESULTS - * 0 successfully set cancelability type, - * EINVAL 'state' is invalid - * - * ------------------------------------------------------ - */ -{ - __ptw32_mcs_local_node_t stateLock; - int result = 0; - pthread_t self = pthread_self (); - __ptw32_thread_t * sp = (__ptw32_thread_t *) self.p; - - if (sp == NULL - || (state != PTHREAD_CANCEL_ENABLE && state != PTHREAD_CANCEL_DISABLE)) - { - return EINVAL; - } - - /* - * Lock for async-cancel safety. - */ - __ptw32_mcs_lock_acquire (&sp->stateLock, &stateLock); - - if (oldstate != NULL) - { - *oldstate = sp->cancelState; - } - - sp->cancelState = state; - - /* - * Check if there is a pending asynchronous cancel - */ - if (state == PTHREAD_CANCEL_ENABLE - && sp->cancelType == PTHREAD_CANCEL_ASYNCHRONOUS - && WaitForSingleObject (sp->cancelEvent, 0) == WAIT_OBJECT_0) - { - sp->state = PThreadStateCanceling; - sp->cancelState = PTHREAD_CANCEL_DISABLE; - ResetEvent (sp->cancelEvent); - __ptw32_mcs_lock_release (&stateLock); - __ptw32_throw (__PTW32_EPS_CANCEL); - - /* Never reached */ - } - - __ptw32_mcs_lock_release (&stateLock); - - return (result); - -} /* pthread_setcancelstate */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_setcanceltype.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_setcanceltype.c deleted file mode 100644 index 54d7cb6..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_setcanceltype.c +++ /dev/null @@ -1,128 +0,0 @@ -/* - * pthread_setcanceltype.c - * - * Description: - * POSIX thread functions related to thread cancellation. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_setcanceltype (int type, int *oldtype) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function atomically sets the calling thread's - * cancelability type to 'type' and returns the previous - * cancelability type at the location referenced by - * 'oldtype' - * - * PARAMETERS - * type, - * oldtype - * PTHREAD_CANCEL_DEFERRED - * only deferred cancellation is allowed, - * - * PTHREAD_CANCEL_ASYNCHRONOUS - * Asynchronous cancellation is allowed - * - * - * DESCRIPTION - * This function atomically sets the calling thread's - * cancelability type to 'type' and returns the previous - * cancelability type at the location referenced by - * 'oldtype' - * - * NOTES: - * 1) Use with caution; most code is not safe for use - * with asynchronous cancelability. - * - * COMPATIBILITY ADDITIONS - * If 'oldtype' is NULL then the previous type is not returned - * but the function still succeeds. (Solaris) - * - * RESULTS - * 0 successfully set cancelability type, - * EINVAL 'type' is invalid - * - * ------------------------------------------------------ - */ -{ - __ptw32_mcs_local_node_t stateLock; - int result = 0; - pthread_t self = pthread_self (); - __ptw32_thread_t * sp = (__ptw32_thread_t *) self.p; - - if (sp == NULL - || (type != PTHREAD_CANCEL_DEFERRED - && type != PTHREAD_CANCEL_ASYNCHRONOUS)) - { - return EINVAL; - } - - /* - * Lock for async-cancel safety. - */ - __ptw32_mcs_lock_acquire (&sp->stateLock, &stateLock); - - if (oldtype != NULL) - { - *oldtype = sp->cancelType; - } - - sp->cancelType = type; - - /* - * Check if there is a pending asynchronous cancel - */ - if (sp->cancelState == PTHREAD_CANCEL_ENABLE - && type == PTHREAD_CANCEL_ASYNCHRONOUS - && WaitForSingleObject (sp->cancelEvent, 0) == WAIT_OBJECT_0) - { - sp->state = PThreadStateCanceling; - sp->cancelState = PTHREAD_CANCEL_DISABLE; - ResetEvent (sp->cancelEvent); - __ptw32_mcs_lock_release (&stateLock); - __ptw32_throw (__PTW32_EPS_CANCEL); - - /* Never reached */ - } - - __ptw32_mcs_lock_release (&stateLock); - - return (result); - -} /* pthread_setcanceltype */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_setconcurrency.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_setconcurrency.c deleted file mode 100644 index 2ba301e..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_setconcurrency.c +++ /dev/null @@ -1,55 +0,0 @@ -/* - * pthread_setconcurrency.c - * - * Description: - * This translation unit implements miscellaneous thread functions. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_setconcurrency (int level) -{ - if (level < 0) - { - return EINVAL; - } - else - { - __ptw32_concurrency = level; - return 0; - } -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_setname_np.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_setname_np.c deleted file mode 100644 index 2cfb044..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_setname_np.c +++ /dev/null @@ -1,190 +0,0 @@ -/* - * pthread_setname_np.c - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include -#include -#include "pthread.h" -#include "implement.h" - -#if defined(_MSC_VER) -#define MS_VC_EXCEPTION 0x406D1388 - -#pragma pack(push,8) -typedef struct tagTHREADNAME_INFO -{ - DWORD dwType; // Must be 0x1000. - LPCSTR szName; // Pointer to name (in user addr space). - DWORD dwThreadID; // Thread ID (-1=caller thread). - DWORD dwFlags; // Reserved for future use, must be zero. -} THREADNAME_INFO; -#pragma pack(pop) - -void -SetThreadName( DWORD dwThreadID, char* threadName) -{ - THREADNAME_INFO info; - info.dwType = 0x1000; - info.szName = threadName; - info.dwThreadID = dwThreadID; - info.dwFlags = 0; - - __try - { - RaiseException( MS_VC_EXCEPTION, 0, sizeof(info)/sizeof(ULONG_PTR), (ULONG_PTR*)&info ); - } - __except(EXCEPTION_EXECUTE_HANDLER) - { - } -} -#endif - -#if defined (__PTW32_COMPATIBILITY_BSD) || defined (__PTW32_COMPATIBILITY_TRU64) -int -pthread_setname_np(pthread_t thr, const char *name, void *arg) -{ - __ptw32_mcs_local_node_t threadLock; - int len; - int result; - char tmpbuf[PTHREAD_MAX_NAMELEN_NP]; - char * newname; - char * oldname; - __ptw32_thread_t * tp; -#if defined(_MSC_VER) - DWORD Win32ThreadID; -#endif - - /* - * Validate the thread id. This method works for pthreads-win32 because - * pthread_kill and pthread_t are designed to accommodate it, but the - * method is not portable. - */ - result = pthread_kill (thr, 0); - if (0 != result) - { - return result; - } - - /* - * According to the MSDN description for snprintf() - * where count is the second parameter: - * If len < count, then len characters are stored in buffer, a null-terminator is appended, and len is returned. - * If len = count, then len characters are stored in buffer, no null-terminator is appended, and len is returned. - * If len > count, then count characters are stored in buffer, no null-terminator is appended, and a negative value is returned. - * - * This is different to the POSIX behaviour which returns the number of characters that would have been written in all cases. - */ - len = snprintf(tmpbuf, PTHREAD_MAX_NAMELEN_NP-1, name, arg); - tmpbuf[PTHREAD_MAX_NAMELEN_NP-1] = '\0'; - if (len < 0) - { - return EINVAL; - } - - newname = _strdup(tmpbuf); - -#if defined(_MSC_VER) - Win32ThreadID = pthread_getw32threadid_np (thr); - if (Win32ThreadID) - { - SetThreadName(Win32ThreadID, newname); - } -#endif - - tp = (__ptw32_thread_t *) thr.p; - - __ptw32_mcs_lock_acquire (&tp->threadLock, &threadLock); - - oldname = tp->name; - tp->name = newname; - if (oldname) - { - free(oldname); - } - - __ptw32_mcs_lock_release (&threadLock); - - return 0; -} -#else -int -pthread_setname_np(pthread_t thr, const char *name) -{ - __ptw32_mcs_local_node_t threadLock; - int result; - char * newname; - char * oldname; - __ptw32_thread_t * tp; -#if defined(_MSC_VER) - DWORD Win32ThreadID; -#endif - - /* - * Validate the thread id. This method works for pthreads-win32 because - * pthread_kill and pthread_t are designed to accommodate it, but the - * method is not portable. - */ - result = pthread_kill (thr, 0); - if (0 != result) - { - return result; - } - - newname = _strdup(name); - -#if defined(_MSC_VER) - Win32ThreadID = pthread_getw32threadid_np (thr); - - if (Win32ThreadID) - { - SetThreadName(Win32ThreadID, newname); - } -#endif - - tp = (__ptw32_thread_t *) thr.p; - - __ptw32_mcs_lock_acquire (&tp->threadLock, &threadLock); - - oldname = tp->name; - tp->name = newname; - if (oldname) - { - free(oldname); - } - - __ptw32_mcs_lock_release (&threadLock); - - return 0; -} -#endif diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_setschedparam.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_setschedparam.c deleted file mode 100644 index 8ed2a6b..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_setschedparam.c +++ /dev/null @@ -1,129 +0,0 @@ -/* - * sched_setschedparam.c - * - * Description: - * POSIX thread functions that deal with thread scheduling. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" -#include "sched.h" - -int -pthread_setschedparam (pthread_t thread, int policy, - const struct sched_param *param) -{ - int result; - - /* - * Validate the thread id. This method works for pthreads-win32 because - * pthread_kill and pthread_t are designed to accommodate it, but the - * method is not portable. - */ - result = pthread_kill (thread, 0); - if (0 != result) - { - return result; - } - - /* Validate the scheduling policy. */ - if (policy < SCHED_MIN || policy > SCHED_MAX) - { - return EINVAL; - } - - /* Ensure the policy is SCHED_OTHER. */ - if (policy != SCHED_OTHER) - { - return ENOTSUP; - } - - return (__ptw32_setthreadpriority (thread, policy, param->sched_priority)); -} - - -int -__ptw32_setthreadpriority (pthread_t thread, int policy, int priority) -{ - int prio; - __ptw32_mcs_local_node_t threadLock; - int result = 0; - __ptw32_thread_t * tp = (__ptw32_thread_t *) thread.p; - - prio = priority; - - /* Validate priority level. */ - if (prio < sched_get_priority_min (policy) || - prio > sched_get_priority_max (policy)) - { - return EINVAL; - } - -#if (THREAD_PRIORITY_LOWEST > THREAD_PRIORITY_NORMAL) -/* WinCE */ -#else -/* Everything else */ - - if (THREAD_PRIORITY_IDLE < prio && THREAD_PRIORITY_LOWEST > prio) - { - prio = THREAD_PRIORITY_LOWEST; - } - else if (THREAD_PRIORITY_TIME_CRITICAL > prio - && THREAD_PRIORITY_HIGHEST < prio) - { - prio = THREAD_PRIORITY_HIGHEST; - } - -#endif - - __ptw32_mcs_lock_acquire (&tp->threadLock, &threadLock); - - /* If this fails, the current priority is unchanged. */ - if (0 == SetThreadPriority (tp->threadH, prio)) - { - result = EINVAL; - } - else - { - /* - * Must record the thread's sched_priority as given, - * not as finally adjusted. - */ - tp->sched_priority = priority; - } - - __ptw32_mcs_lock_release (&threadLock); - - return result; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_setspecific.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_setspecific.c deleted file mode 100644 index f0d9747..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_setspecific.c +++ /dev/null @@ -1,169 +0,0 @@ -/* - * pthread_setspecific.c - * - * Description: - * POSIX thread functions which implement thread-specific data (TSD). - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_setspecific (pthread_key_t key, const void *value) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function sets the value of the thread specific - * key in the calling thread. - * - * PARAMETERS - * key - * an instance of pthread_key_t - * value - * the value to set key to - * - * - * DESCRIPTION - * This function sets the value of the thread specific - * key in the calling thread. - * - * RESULTS - * 0 successfully set value - * EAGAIN could not set value - * ENOENT SERIOUS!! - * - * ------------------------------------------------------ - */ -{ - pthread_t self; - int result = 0; - - if (key != __ptw32_selfThreadKey) - { - /* - * Using pthread_self will implicitly create - * an instance of pthread_t for the current - * thread if one wasn't explicitly created - */ - self = pthread_self (); - if (self.p == NULL) - { - return ENOENT; - } - } - else - { - /* - * Resolve catch-22 of registering thread with selfThread - * key - */ - __ptw32_thread_t * sp = (__ptw32_thread_t *) pthread_getspecific (__ptw32_selfThreadKey); - - if (sp == NULL) - { - if (value == NULL) - { - return ENOENT; - } - self = *((pthread_t *) value); - } - else - { - self = sp->ptHandle; - } - } - - result = 0; - - if (key != NULL) - { - if (self.p != NULL && key->destructor != NULL && value != NULL) - { - __ptw32_mcs_local_node_t keyLock; - __ptw32_mcs_local_node_t threadLock; - __ptw32_thread_t * sp = (__ptw32_thread_t *) self.p; - /* - * Only require associations if we have to - * call user destroy routine. - * Don't need to locate an existing association - * when setting data to NULL for WIN32 since the - * data is stored with the operating system; not - * on the association; setting assoc to NULL short - * circuits the search. - */ - ThreadKeyAssoc *assoc; - - __ptw32_mcs_lock_acquire(&(key->keyLock), &keyLock); - __ptw32_mcs_lock_acquire(&(sp->threadLock), &threadLock); - - assoc = (ThreadKeyAssoc *) sp->keys; - /* - * Locate existing association - */ - while (assoc != NULL) - { - if (assoc->key == key) - { - /* - * Association already exists - */ - break; - } - assoc = assoc->nextKey; - } - - /* - * create an association if not found - */ - if (assoc == NULL) - { - result = __ptw32_tkAssocCreate (sp, key); - } - - __ptw32_mcs_lock_release(&threadLock); - __ptw32_mcs_lock_release(&keyLock); - } - - if (result == 0) - { - if (!TlsSetValue (key->key, (LPVOID) value)) - { - result = EAGAIN; - } - } - } - - return (result); -} /* pthread_setspecific */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_spin_destroy.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_spin_destroy.c deleted file mode 100644 index c25873a..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_spin_destroy.c +++ /dev/null @@ -1,113 +0,0 @@ -/* - * pthread_spin_destroy.c - * - * Description: - * This translation unit implements spin lock primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_spin_destroy (pthread_spinlock_t * lock) -{ - register pthread_spinlock_t s; - int result = 0; - - if (lock == NULL || *lock == NULL) - { - return EINVAL; - } - - if ((s = *lock) != PTHREAD_SPINLOCK_INITIALIZER) - { - if (s->interlock == __PTW32_SPIN_USE_MUTEX) - { - result = pthread_mutex_destroy (&(s->u.mutex)); - } - else if ((__PTW32_INTERLOCKED_LONG) __PTW32_SPIN_UNLOCKED != - __PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG ((__PTW32_INTERLOCKED_LONGPTR) &s->interlock, - (__PTW32_INTERLOCKED_LONG) __PTW32_SPIN_INVALID, - (__PTW32_INTERLOCKED_LONG) __PTW32_SPIN_UNLOCKED)) - { - result = EINVAL; - } - - if (0 == result) - { - /* - * We are relying on the application to ensure that all other threads - * have finished with the spinlock before destroying it. - */ - *lock = NULL; - (void) free (s); - } - } - else - { - /* - * See notes in __ptw32_spinlock_check_need_init() above also. - */ - __ptw32_mcs_local_node_t node; - - __ptw32_mcs_lock_acquire(&__ptw32_spinlock_test_init_lock, &node); - - /* - * Check again. - */ - if (*lock == PTHREAD_SPINLOCK_INITIALIZER) - { - /* - * This is all we need to do to destroy a statically - * initialised spinlock that has not yet been used (initialised). - * If we get to here, another thread - * waiting to initialise this mutex will get an EINVAL. - */ - *lock = NULL; - } - else - { - /* - * The spinlock has been initialised while we were waiting - * so assume it's in use. - */ - result = EBUSY; - } - - __ptw32_mcs_lock_release(&node); - } - - return (result); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_spin_init.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_spin_init.c deleted file mode 100644 index ea76045..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_spin_init.c +++ /dev/null @@ -1,125 +0,0 @@ -/* - * pthread_spin_init.c - * - * Description: - * This translation unit implements spin lock primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_spin_init (pthread_spinlock_t * lock, int pshared) -{ - pthread_spinlock_t s; - int cpus = 0; - int result = 0; - - if (lock == NULL) - { - return EINVAL; - } - - if (0 != __ptw32_getprocessors (&cpus)) - { - cpus = 1; - } - - if (cpus > 1) - { - if (pshared == PTHREAD_PROCESS_SHARED) - { - /* - * Creating spinlock that can be shared between - * processes. - */ -#if _POSIX_THREAD_PROCESS_SHARED >= 0 - - /* - * Not implemented yet. - */ - -#error ERROR [__FILE__, line __LINE__]: Process shared spin locks are not supported yet. - -#else - - return ENOSYS; - -#endif /* _POSIX_THREAD_PROCESS_SHARED */ - - } - } - - s = (pthread_spinlock_t) calloc (1, sizeof (*s)); - - if (s == NULL) - { - return ENOMEM; - } - - if (cpus > 1) - { - s->u.cpus = cpus; - s->interlock = __PTW32_SPIN_UNLOCKED; - } - else - { - pthread_mutexattr_t ma; - result = pthread_mutexattr_init (&ma); - - if (0 == result) - { - ma->pshared = pshared; - result = pthread_mutex_init (&(s->u.mutex), &ma); - if (0 == result) - { - s->interlock = __PTW32_SPIN_USE_MUTEX; - } - } - (void) pthread_mutexattr_destroy (&ma); - } - - if (0 == result) - { - *lock = s; - } - else - { - (void) free (s); - *lock = NULL; - } - - return (result); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_spin_lock.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_spin_lock.c deleted file mode 100644 index 54e7281..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_spin_lock.c +++ /dev/null @@ -1,82 +0,0 @@ -/* - * pthread_spin_lock.c - * - * Description: - * This translation unit implements spin lock primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_spin_lock (pthread_spinlock_t * lock) -{ - register pthread_spinlock_t s; - - if (NULL == lock || NULL == *lock) - { - return (EINVAL); - } - - if (*lock == PTHREAD_SPINLOCK_INITIALIZER) - { - int result; - - if ((result = __ptw32_spinlock_check_need_init (lock)) != 0) - { - return (result); - } - } - - s = *lock; - - while ((__PTW32_INTERLOCKED_LONG) __PTW32_SPIN_LOCKED == - __PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG ((__PTW32_INTERLOCKED_LONGPTR) &s->interlock, - (__PTW32_INTERLOCKED_LONG) __PTW32_SPIN_LOCKED, - (__PTW32_INTERLOCKED_LONG) __PTW32_SPIN_UNLOCKED)) - { - } - - if (s->interlock == __PTW32_SPIN_LOCKED) - { - return 0; - } - else if (s->interlock == __PTW32_SPIN_USE_MUTEX) - { - return pthread_mutex_lock (&(s->u.mutex)); - } - - return EINVAL; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_spin_trylock.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_spin_trylock.c deleted file mode 100644 index b177f6a..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_spin_trylock.c +++ /dev/null @@ -1,79 +0,0 @@ -/* - * pthread_spin_trylock.c - * - * Description: - * This translation unit implements spin lock primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_spin_trylock (pthread_spinlock_t * lock) -{ - register pthread_spinlock_t s; - - if (NULL == lock || NULL == *lock) - { - return (EINVAL); - } - - if (*lock == PTHREAD_SPINLOCK_INITIALIZER) - { - int result; - - if ((result = __ptw32_spinlock_check_need_init (lock)) != 0) - { - return (result); - } - } - - s = *lock; - - switch ((long) - __PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG ((__PTW32_INTERLOCKED_LONGPTR) &s->interlock, - (__PTW32_INTERLOCKED_LONG) __PTW32_SPIN_LOCKED, - (__PTW32_INTERLOCKED_LONG) __PTW32_SPIN_UNLOCKED)) - { - case __PTW32_SPIN_UNLOCKED: - return 0; - case __PTW32_SPIN_LOCKED: - return EBUSY; - case __PTW32_SPIN_USE_MUTEX: - return pthread_mutex_trylock (&(s->u.mutex)); - } - - return EINVAL; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_spin_unlock.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_spin_unlock.c deleted file mode 100644 index 5c9d548..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_spin_unlock.c +++ /dev/null @@ -1,73 +0,0 @@ -/* - * pthread_spin_unlock.c - * - * Description: - * This translation unit implements spin lock primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -pthread_spin_unlock (pthread_spinlock_t * lock) -{ - register pthread_spinlock_t s; - - if (NULL == lock || NULL == *lock) - { - return (EINVAL); - } - - s = *lock; - - if (s == PTHREAD_SPINLOCK_INITIALIZER) - { - return EPERM; - } - - switch ((long) - __PTW32_INTERLOCKED_COMPARE_EXCHANGE_LONG ((__PTW32_INTERLOCKED_LONGPTR) &s->interlock, - (__PTW32_INTERLOCKED_LONG) __PTW32_SPIN_UNLOCKED, - (__PTW32_INTERLOCKED_LONG) __PTW32_SPIN_LOCKED)) - { - case __PTW32_SPIN_LOCKED: - case __PTW32_SPIN_UNLOCKED: - return 0; - case __PTW32_SPIN_USE_MUTEX: - return pthread_mutex_unlock (&(s->u.mutex)); - } - - return EINVAL; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_testcancel.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_testcancel.c deleted file mode 100644 index 999f0e8..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_testcancel.c +++ /dev/null @@ -1,105 +0,0 @@ -/* - * pthread_testcancel.c - * - * Description: - * POSIX thread functions related to thread cancellation. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -void -pthread_testcancel (void) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function creates a deferred cancellation point - * in the calling thread. The call has no effect if the - * current cancelability state is - * PTHREAD_CANCEL_DISABLE - * - * PARAMETERS - * N/A - * - * - * DESCRIPTION - * This function creates a deferred cancellation point - * in the calling thread. The call has no effect if the - * current cancelability state is - * PTHREAD_CANCEL_DISABLE - * - * NOTES: - * 1) Cancellation is asynchronous. Use pthread_join - * to wait for termination of thread if necessary - * - * RESULTS - * N/A - * - * ------------------------------------------------------ - */ -{ - __ptw32_mcs_local_node_t stateLock; - pthread_t self = pthread_self (); - __ptw32_thread_t * sp = (__ptw32_thread_t *) self.p; - - if (sp == NULL) - { - return; - } - - /* - * Pthread_cancel() will have set sp->state to PThreadStateCancelPending - * and set an event, so no need to enter kernel space if - * sp->state != PThreadStateCancelPending - that only slows us down. - */ - if (sp->state != PThreadStateCancelPending) - { - return; - } - - __ptw32_mcs_lock_acquire (&sp->stateLock, &stateLock); - - if (sp->cancelState != PTHREAD_CANCEL_DISABLE) - { - ResetEvent(sp->cancelEvent); - sp->state = PThreadStateCanceling; - sp->cancelState = PTHREAD_CANCEL_DISABLE; - __ptw32_mcs_lock_release (&stateLock); - __ptw32_throw (__PTW32_EPS_CANCEL); - /* Never returns here */ - } - - __ptw32_mcs_lock_release (&stateLock); -} /* pthread_testcancel */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_timechange_handler_np.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_timechange_handler_np.c deleted file mode 100644 index c1b92e2..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_timechange_handler_np.c +++ /dev/null @@ -1,110 +0,0 @@ -/* - * pthread_timechange_handler_np.c - * - * Description: - * This translation unit implements miscellaneous thread functions. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -/* - * Notes on handling system time adjustments (especially negative ones). - * --------------------------------------------------------------------- - * - * This solution was suggested by Alexander Terekhov, but any errors - * in the implementation are mine - [Ross Johnson] - * - * 1) The problem: threads doing a timedwait on a CV may expect to timeout - * at a specific absolute time according to a system timer. If the - * system clock is adjusted backwards then those threads sleep longer than - * expected. Also, pthreads-win32 converts absolute times to intervals in - * order to make use of the underlying Win32, and so waiting threads may - * awake before their proper abstimes. - * - * 2) We aren't able to distinquish between threads on timed or untimed waits, - * so we wake them all at the time of the adjustment so that they can - * re-evaluate their conditions and re-compute their timeouts. - * - * 3) We rely on correctly written applications for this to work. Specifically, - * they must be able to deal properly with spurious wakeups. That is, - * they must re-test their condition upon wakeup and wait again if - * the condition is not satisfied. - */ - -void * -pthread_timechange_handler_np (void *arg) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Broadcasts all CVs to force re-evaluation and - * new timeouts if required. - * - * PARAMETERS - * NONE - * - * - * DESCRIPTION - * Broadcasts all CVs to force re-evaluation and - * new timeouts if required. - * - * This routine may be passed directly to pthread_create() - * as a new thread in order to run asynchronously. - * - * - * RESULTS - * 0 successfully broadcast all CVs - * EAGAIN Not all CVs were broadcast - * - * ------------------------------------------------------ - */ -{ - int result = 0; - pthread_cond_t cv; - __ptw32_mcs_local_node_t node; - - __ptw32_mcs_lock_acquire(&__ptw32_cond_list_lock, &node); - - cv = __ptw32_cond_list_head; - - while (cv != NULL && 0 == result) - { - result = pthread_cond_broadcast (&cv); - cv = cv->next; - } - - __ptw32_mcs_lock_release(&node); - - return (void *) (size_t) (result != 0 ? EAGAIN : 0); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_timedjoin_np.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_timedjoin_np.c deleted file mode 100644 index ab2898a..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_timedjoin_np.c +++ /dev/null @@ -1,185 +0,0 @@ -/* - * pthread_timedjoin_np.c - * - * Description: - * This translation unit implements functions related to thread - * synchronisation. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -/* - * Not needed yet, but defining it should indicate clashes with build target - * environment that should be fixed. - */ -#if !defined(WINCE) -# include -#endif - - -int -pthread_timedjoin_np (pthread_t thread, void **value_ptr, const struct timespec *abstime) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function waits for 'thread' to terminate and - * returns the thread's exit value if 'value_ptr' is not - * NULL or until 'abstime' passes and returns an - * error. If 'abstime' is NULL then the function waits - * forever, i.e. reverts to pthread_join behaviour. - * This function detaches the thread on successful - * completion. - * - * PARAMETERS - * thread - * an instance of pthread_t - * - * value_ptr - * pointer to an instance of pointer to void - * - * abstime - * pointer to an instance of struct timespec - * representing an absolute time value - * - * - * DESCRIPTION - * This function waits for 'thread' to terminate and - * returns the thread's exit value if 'value_ptr' is not - * NULL or until 'abstime' passes and returns an - * error. If 'abstime' is NULL then the function waits - * forever, i.e. reverts to pthread_join behaviour. - * This function detaches the thread on successful - * completion. - * NOTE: Detached threads cannot be joined or canceled. - * In this implementation 'abstime' will be - * resolved to the nearest millisecond. - * - * RESULTS - * 0 'thread' has completed - * ETIMEDOUT abstime passed - * EINVAL thread is not a joinable thread, - * ESRCH no thread could be found with ID 'thread', - * ENOENT thread couldn't find it's own valid handle, - * EDEADLK attempt to join thread with self - * - * ------------------------------------------------------ - */ -{ - int result; - pthread_t self; - DWORD milliseconds; - __ptw32_thread_t * tp = (__ptw32_thread_t *) thread.p; - __ptw32_mcs_local_node_t node; - - if (abstime == NULL) - { - milliseconds = INFINITE; - } - else - { - /* - * Calculate timeout as milliseconds from current system time. - */ - milliseconds = __ptw32_relmillisecs (abstime); - } - - __ptw32_mcs_lock_acquire(&__ptw32_thread_reuse_lock, &node); - - if (NULL == tp - || thread.x != tp->ptHandle.x) - { - result = ESRCH; - } - else if (PTHREAD_CREATE_DETACHED == tp->detachState) - { - result = EINVAL; - } - else - { - result = 0; - } - - __ptw32_mcs_lock_release(&node); - - if (result == 0) - { - /* - * The target thread is joinable and can't be reused before we join it. - */ - self = pthread_self(); - - if (NULL == self.p) - { - result = ENOENT; - } - else if (pthread_equal (self, thread)) - { - result = EDEADLK; - } - else - { - /* - * Pthread_join is a cancellation point. - * If we are canceled then our target thread must not be - * detached (destroyed). This is guaranteed because - * pthreadCancelableTimedWait will not return if we - * are canceled. - */ - result = pthreadCancelableTimedWait (tp->threadH, milliseconds); - - if (0 == result) - { - if (value_ptr != NULL) - { - *value_ptr = tp->exitStatus; - } - - /* - * The result of making multiple simultaneous calls to - * pthread_join() or pthread_timedjoin_np() or pthread_detach() - * specifying the same target is undefined. - */ - result = pthread_detach (thread); - } - else if (ETIMEDOUT != result) - { - result = ESRCH; - } - } - } - - return (result); - -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_tryjoin_np.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_tryjoin_np.c deleted file mode 100644 index aa9861d..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_tryjoin_np.c +++ /dev/null @@ -1,170 +0,0 @@ -/* - * pthread_tryjoin_np.c - * - * Description: - * This translation unit implements functions related to thread - * synchronisation. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -/* - * Not needed yet, but defining it should indicate clashes with build target - * environment that should be fixed. - */ -#if !defined(WINCE) -# include -#endif - - -int -pthread_tryjoin_np (pthread_t thread, void **value_ptr) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function checks if 'thread' has terminated and - * returns the thread's exit value if 'value_ptr' is not - * NULL or until 'abstime' passes and returns an - * error. If the thread has not exited the function returns - * immediately. This function detaches the thread on successful - * completion. - * - * PARAMETERS - * thread - * an instance of pthread_t - * - * value_ptr - * pointer to an instance of pointer to void - * - * - * DESCRIPTION - * This function checks if 'thread' has terminated and - * returns the thread's exit value if 'value_ptr' is not - * NULL or until 'abstime' passes and returns an - * error. If the thread has not exited the function returns - * immediately. This function detaches the thread on successful - * completion. - * NOTE: Detached threads cannot be joined or canceled. - * In this implementation 'abstime' will be - * resolved to the nearest millisecond. - * - * RESULTS - * 0 'thread' has completed - * EBUSY 'thread' is still live - * EINVAL thread is not a joinable thread, - * ESRCH no thread could be found with ID 'thread', - * ENOENT thread couldn't find it's own valid handle, - * EDEADLK attempt to join thread with self - * - * ------------------------------------------------------ - */ -{ - int result; - pthread_t self; - __ptw32_thread_t * tp = (__ptw32_thread_t *) thread.p; - __ptw32_mcs_local_node_t node; - - __ptw32_mcs_lock_acquire(&__ptw32_thread_reuse_lock, &node); - - if (NULL == tp - || thread.x != tp->ptHandle.x) - { - result = ESRCH; - } - else if (PTHREAD_CREATE_DETACHED == tp->detachState) - { - result = EINVAL; - } - else - { - result = 0; - } - - __ptw32_mcs_lock_release(&node); - - if (result == 0) - { - /* - * The target thread is joinable and can't be reused before we join it. - */ - self = pthread_self(); - - if (NULL == self.p) - { - result = ENOENT; - } - else if (pthread_equal (self, thread)) - { - result = EDEADLK; - } - else - { - /* - * Pthread_join is a cancellation point. - * If we are canceled then our target thread must not be - * detached (destroyed). This is guaranteed because - * pthreadCancelableTimedWait will not return if we - * are canceled. - */ - result = pthreadCancelableTimedWait (tp->threadH, 0); - - if (0 == result) - { - if (value_ptr != NULL) - { - *value_ptr = tp->exitStatus; - } - - /* - * The result of making multiple simultaneous calls to - * pthread_join(), pthread_timedjoin_np(), pthread_tryjoin_np() - * or pthread_detach() specifying the same target is undefined. - */ - result = pthread_detach (thread); - } - else if (ETIMEDOUT == result) - { - result = EBUSY; - } - else - { - result = ESRCH; - } - } - } - - return (result); - -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_win32_attach_detach_np.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_win32_attach_detach_np.c deleted file mode 100644 index b7f16cb..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/pthread_win32_attach_detach_np.c +++ /dev/null @@ -1,269 +0,0 @@ -/* - * pthread_win32_attach_detach_np.c - * - * Description: - * This translation unit implements non-portable thread functions. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" -#include -#if ! (defined(__GNUC__) || defined (__PTW32_CONFIG_MSVC7) || defined(WINCE)) -# include -#endif - -/* - * Handle to quserex.dll - */ -static HINSTANCE __ptw32_h_quserex; - -BOOL -pthread_win32_process_attach_np () -{ - TCHAR QuserExDLLPathBuf[1024]; - BOOL result = TRUE; - - result = __ptw32_processInitialize (); - -#if defined(_UWIN) - pthread_count++; -#endif - -#if defined(__GNUC__) - __ptw32_features = 0; -#else - /* - * This is obsolete now. - */ - __ptw32_features = __PTW32_SYSTEM_INTERLOCKED_COMPARE_EXCHANGE; -#endif - - /* - * Load QUSEREX.DLL and try to get address of QueueUserAPCEx. - * Because QUSEREX.DLL requires a driver to be installed we will - * assume the DLL is in the system directory. - * - * This should take care of any security issues. - */ -#if defined(__GNUC__) || defined (__PTW32_CONFIG_MSVC7) - if(GetSystemDirectory(QuserExDLLPathBuf, sizeof(QuserExDLLPathBuf))) - { - (void) strncat(QuserExDLLPathBuf, - "\\QUSEREX.DLL", - sizeof(QuserExDLLPathBuf) - strlen(QuserExDLLPathBuf) - 1); - __ptw32_h_quserex = LoadLibrary(QuserExDLLPathBuf); - } -#else -# if ! defined(WINCE) - if(GetSystemDirectory(QuserExDLLPathBuf, sizeof(QuserExDLLPathBuf)/sizeof(TCHAR)) && - 0 == _tcsncat_s(QuserExDLLPathBuf, _countof(QuserExDLLPathBuf), TEXT("\\QUSEREX.DLL"), 12)) - { - __ptw32_h_quserex = LoadLibrary(QuserExDLLPathBuf); - } -# endif -#endif - - if (__ptw32_h_quserex != NULL) - { - __ptw32_register_cancellation = (DWORD (*)(PAPCFUNC, HANDLE, DWORD)) -#if defined(NEED_UNICODE_CONSTS) - GetProcAddress (__ptw32_h_quserex, - (const TCHAR *) TEXT ("QueueUserAPCEx")); -#else - GetProcAddress (__ptw32_h_quserex, (LPCSTR) "QueueUserAPCEx"); -#endif - } - - if (NULL == __ptw32_register_cancellation) - { - __ptw32_register_cancellation = __ptw32_Registercancellation; - - if (__ptw32_h_quserex != NULL) - { - (void) FreeLibrary (__ptw32_h_quserex); - } - __ptw32_h_quserex = 0; - } - else - { - /* Initialise QueueUserAPCEx */ - BOOL (*queue_user_apc_ex_init) (VOID); - - queue_user_apc_ex_init = (BOOL (*)(VOID)) -#if defined(NEED_UNICODE_CONSTS) - GetProcAddress (__ptw32_h_quserex, - (const TCHAR *) TEXT ("QueueUserAPCEx_Init")); -#else - GetProcAddress (__ptw32_h_quserex, (LPCSTR) "QueueUserAPCEx_Init"); -#endif - - if (queue_user_apc_ex_init == NULL || !queue_user_apc_ex_init ()) - { - __ptw32_register_cancellation = __ptw32_Registercancellation; - - (void) FreeLibrary (__ptw32_h_quserex); - __ptw32_h_quserex = 0; - } - } - - if (__ptw32_h_quserex) - { - __ptw32_features |= __PTW32_ALERTABLE_ASYNC_CANCEL; - } - - return result; -} - - -BOOL -pthread_win32_process_detach_np () -{ - if (__ptw32_processInitialized) - { - __ptw32_thread_t * sp = (__ptw32_thread_t *) pthread_getspecific (__ptw32_selfThreadKey); - - if (sp != NULL) - { - /* - * Detached threads have their resources automatically - * cleaned up upon exit (others must be 'joined'). - */ - if (sp->detachState == PTHREAD_CREATE_DETACHED) - { - __ptw32_threadDestroy (sp->ptHandle); - if (__ptw32_selfThreadKey) - { - TlsSetValue (__ptw32_selfThreadKey->key, NULL); - } - } - } - - /* - * The DLL is being unmapped from the process's address space - */ - __ptw32_processTerminate (); - - if (__ptw32_h_quserex) - { - /* Close QueueUserAPCEx */ - BOOL (*queue_user_apc_ex_fini) (VOID); - - queue_user_apc_ex_fini = (BOOL (*)(VOID)) -#if defined(NEED_UNICODE_CONSTS) - GetProcAddress (__ptw32_h_quserex, - (const TCHAR *) TEXT ("QueueUserAPCEx_Fini")); -#else - GetProcAddress (__ptw32_h_quserex, (LPCSTR) "QueueUserAPCEx_Fini"); -#endif - - if (queue_user_apc_ex_fini != NULL) - { - (void) queue_user_apc_ex_fini (); - } - (void) FreeLibrary (__ptw32_h_quserex); - } - } - - return TRUE; -} - -BOOL -pthread_win32_thread_attach_np () -{ - return TRUE; -} - -BOOL -pthread_win32_thread_detach_np () -{ - if (__ptw32_processInitialized) - { - /* - * Don't use pthread_self() - to avoid creating an implicit POSIX thread handle - * unnecessarily. - */ - __ptw32_thread_t * sp = (__ptw32_thread_t *) pthread_getspecific (__ptw32_selfThreadKey); - - if (sp != NULL) // otherwise Win32 thread with no implicit POSIX handle. - { - __ptw32_mcs_local_node_t stateLock; - __ptw32_callUserDestroyRoutines (sp->ptHandle); - - __ptw32_mcs_lock_acquire (&sp->stateLock, &stateLock); - sp->state = PThreadStateLast; - /* - * If the thread is joinable at this point then it MUST be joined - * or detached explicitly by the application. - */ - __ptw32_mcs_lock_release (&stateLock); - - /* - * Robust Mutexes - */ - while (sp->robustMxList != NULL) - { - pthread_mutex_t mx = sp->robustMxList->mx; - __ptw32_robust_mutex_remove(&mx, sp); - (void) __PTW32_INTERLOCKED_EXCHANGE_LONG( - (__PTW32_INTERLOCKED_LONGPTR)&mx->robustNode->stateInconsistent, - (__PTW32_INTERLOCKED_LONG)-1); - /* - * If there are no waiters then the next thread to block will - * sleep, wake up immediately and then go back to sleep. - * See pthread_mutex_lock.c. - */ - SetEvent(mx->event); - } - - - if (sp->detachState == PTHREAD_CREATE_DETACHED) - { - __ptw32_threadDestroy (sp->ptHandle); - - if (__ptw32_selfThreadKey) - { - TlsSetValue (__ptw32_selfThreadKey->key, NULL); - } - } - } - } - - return TRUE; -} - -BOOL -pthread_win32_test_features_np (int feature_mask) -{ - return ((__ptw32_features & feature_mask) == feature_mask); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_MCS_lock.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_MCS_lock.c deleted file mode 100644 index 2f12107..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_MCS_lock.c +++ /dev/null @@ -1,305 +0,0 @@ -/* - * ptw32_MCS_lock.c - * - * Description: - * This translation unit implements queue-based locks. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* - - * About MCS locks: - * - * MCS locks are queue-based locks, where the queue nodes are local to the - * thread. The 'lock' is nothing more than a global pointer that points to - * the last node in the queue, or is NULL if the queue is empty. - * - * Originally designed for use as spin locks requiring no kernel resources - * for synchronisation or blocking, the implementation below has adapted - * the MCS spin lock for use as a general mutex that will suspend threads - * when there is lock contention. - * - * Because the queue nodes are thread-local, most of the memory read/write - * operations required to add or remove nodes from the queue do not trigger - * cache-coherence updates. - * - * Like 'named' mutexes, MCS locks consume system resources transiently - - * they are able to acquire and free resources automatically - but MCS - * locks do not require any unique 'name' to identify the lock to all - * threads using it. - * - * Usage of MCS locks: - * - * - you need a global __ptw32_mcs_lock_t instance initialised to 0 or NULL. - * - you need a local thread-scope __ptw32_mcs_local_node_t instance, which - * may serve several different locks but you need at least one node for - * every lock held concurrently by a thread. - * - * E.g.: - * - * __ptw32_mcs_lock_t lock1 = 0; - * __ptw32_mcs_lock_t lock2 = 0; - * - * void *mythread(void *arg) - * { - * __ptw32_mcs_local_node_t node; - * - * __ptw32_mcs_acquire (&lock1, &node); - * __ptw32_mcs_lock_release (&node); - * - * __ptw32_mcs_lock_acquire (&lock2, &node); - * __ptw32_mcs_lock_release (&node); - * { - * __ptw32_mcs_local_node_t nodex; - * - * __ptw32_mcs_lock_acquire (&lock1, &node); - * __ptw32_mcs_lock_acquire (&lock2, &nodex); - * - * __ptw32_mcs_lock_release (&nodex); - * __ptw32_mcs_lock_release (&node); - * } - * return (void *)0; - * } - * - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "sched.h" -#include "implement.h" - -/* - * __ptw32_mcs_flag_set -- notify another thread about an event. - * - * Set event if an event handle has been stored in the flag, and - * set flag to -1 otherwise. Note that -1 cannot be a valid handle value. - */ -INLINE void -__ptw32_mcs_flag_set (HANDLE * flag) -{ - HANDLE e = (HANDLE) (__PTW32_INTERLOCKED_SIZE)__PTW32_INTERLOCKED_COMPARE_EXCHANGE_SIZE( - (__PTW32_INTERLOCKED_SIZEPTR)flag, - (__PTW32_INTERLOCKED_SIZE)-1, - (__PTW32_INTERLOCKED_SIZE)0); - /* - * NOTE: when e == -1 and the MSVC debugger is attached to - * the process, we get an exception that halts the - * program noting that the handle value is invalid; - * although innocuous this behavior is cumbersome when - * debugging. Therefore we avoid calling SetEvent() - * for 'known' invalid HANDLE values that can arise - * when the above interlocked-compare-and-exchange - * is executed. - */ - if (((HANDLE)0 != e) && ((HANDLE)-1 != e)) - { - /* another thread has already stored an event handle in the flag */ - SetEvent(e); - } -} - -/* - * __ptw32_mcs_flag_wait -- wait for notification from another. - * - * Store an event handle in the flag and wait on it if the flag has not been - * set, and proceed without creating an event otherwise. - */ -INLINE void -__ptw32_mcs_flag_wait (HANDLE * flag) -{ - if ((__PTW32_INTERLOCKED_SIZE)0 == - __PTW32_INTERLOCKED_EXCHANGE_ADD_SIZE ((__PTW32_INTERLOCKED_SIZEPTR)flag, - (__PTW32_INTERLOCKED_SIZE)0)) /* MBR fence */ - { - /* the flag is not set. create event. */ - - HANDLE e = CreateEvent(NULL, __PTW32_FALSE, __PTW32_FALSE, NULL); - - if ((__PTW32_INTERLOCKED_SIZE)0 == __PTW32_INTERLOCKED_COMPARE_EXCHANGE_SIZE( - (__PTW32_INTERLOCKED_SIZEPTR)flag, - (__PTW32_INTERLOCKED_SIZE)e, - (__PTW32_INTERLOCKED_SIZE)0)) - { - /* stored handle in the flag. wait on it now. */ - WaitForSingleObject(e, INFINITE); - } - - CloseHandle(e); - } -} - -/* - * __ptw32_mcs_lock_acquire -- acquire an MCS lock. - * - * See: - * J. M. Mellor-Crummey and M. L. Scott. - * Algorithms for Scalable Synchronization on Shared-Memory Multiprocessors. - * ACM Transactions on Computer Systems, 9(1):21-65, Feb. 1991. - */ -#if defined (__PTW32_BUILD_INLINED) -INLINE -#endif /* __PTW32_BUILD_INLINED */ -void -__ptw32_mcs_lock_acquire (__ptw32_mcs_lock_t * lock, __ptw32_mcs_local_node_t * node) -{ - __ptw32_mcs_local_node_t *pred; - - node->lock = lock; - node->nextFlag = 0; - node->readyFlag = 0; - node->next = 0; /* initially, no successor */ - - /* queue for the lock */ - pred = (__ptw32_mcs_local_node_t *)__PTW32_INTERLOCKED_EXCHANGE_PTR ((__PTW32_INTERLOCKED_PVOID_PTR)lock, - (__PTW32_INTERLOCKED_PVOID)node); - - if (0 != pred) - { - /* the lock was not free. link behind predecessor. */ - __PTW32_INTERLOCKED_EXCHANGE_PTR ((__PTW32_INTERLOCKED_PVOID_PTR)&pred->next, (__PTW32_INTERLOCKED_PVOID)node); - __ptw32_mcs_flag_set(&pred->nextFlag); - __ptw32_mcs_flag_wait(&node->readyFlag); - } -} - -/* - * __ptw32_mcs_lock_release -- release an MCS lock. - * - * See: - * J. M. Mellor-Crummey and M. L. Scott. - * Algorithms for Scalable Synchronization on Shared-Memory Multiprocessors. - * ACM Transactions on Computer Systems, 9(1):21-65, Feb. 1991. - */ -#if defined (__PTW32_BUILD_INLINED) -INLINE -#endif /* __PTW32_BUILD_INLINED */ -void -__ptw32_mcs_lock_release (__ptw32_mcs_local_node_t * node) -{ - __ptw32_mcs_lock_t *lock = node->lock; - __ptw32_mcs_local_node_t *next = - (__ptw32_mcs_local_node_t *) - __PTW32_INTERLOCKED_EXCHANGE_ADD_SIZE ((__PTW32_INTERLOCKED_SIZEPTR)&node->next, (__PTW32_INTERLOCKED_SIZE)0); /* MBR fence */ - - if (0 == next) - { - /* no known successor */ - - if (node == (__ptw32_mcs_local_node_t *) - __PTW32_INTERLOCKED_COMPARE_EXCHANGE_PTR ((__PTW32_INTERLOCKED_PVOID_PTR)lock, - (__PTW32_INTERLOCKED_PVOID)0, - (__PTW32_INTERLOCKED_PVOID)node)) - { - /* no successor, lock is free now */ - return; - } - - /* wait for successor */ - __ptw32_mcs_flag_wait(&node->nextFlag); - next = (__ptw32_mcs_local_node_t *) - __PTW32_INTERLOCKED_EXCHANGE_ADD_SIZE ((__PTW32_INTERLOCKED_SIZEPTR)&node->next, (__PTW32_INTERLOCKED_SIZE)0); /* MBR fence */ - } - else - { - /* Even if the next is non-0, the successor may still be trying to set the next flag on us, therefore we must wait. */ - __ptw32_mcs_flag_wait(&node->nextFlag); - } - - /* pass the lock */ - __ptw32_mcs_flag_set(&next->readyFlag); -} - -/* - * __ptw32_mcs_lock_try_acquire - */ -#if defined (__PTW32_BUILD_INLINED) -INLINE -#endif /* __PTW32_BUILD_INLINED */ -int -__ptw32_mcs_lock_try_acquire (__ptw32_mcs_lock_t * lock, __ptw32_mcs_local_node_t * node) -{ - node->lock = lock; - node->nextFlag = 0; - node->readyFlag = 0; - node->next = 0; /* initially, no successor */ - - return ((__PTW32_INTERLOCKED_PVOID)__PTW32_INTERLOCKED_COMPARE_EXCHANGE_PTR ((__PTW32_INTERLOCKED_PVOID_PTR)lock, - (__PTW32_INTERLOCKED_PVOID)node, - (__PTW32_INTERLOCKED_PVOID)0) - == (__PTW32_INTERLOCKED_PVOID)0) ? 0 : EBUSY; -} - -/* - * __ptw32_mcs_node_transfer -- move an MCS lock local node, usually from thread - * space to, for example, global space so that another thread can release - * the lock on behalf of the current lock owner. - * - * Example: used in pthread_barrier_wait where we want the last thread out of - * the barrier to release the lock owned by the last thread to enter the barrier - * (the one that releases all threads but not necessarily the last to leave). - * - * Should only be called by the thread that has the lock. - */ -#if defined (__PTW32_BUILD_INLINED) -INLINE -#endif /* __PTW32_BUILD_INLINED */ -void -__ptw32_mcs_node_transfer (__ptw32_mcs_local_node_t * new_node, __ptw32_mcs_local_node_t * old_node) -{ - new_node->lock = old_node->lock; - new_node->nextFlag = 0; /* Not needed - used only in initial Acquire */ - new_node->readyFlag = 0; /* Not needed - we were waiting on this */ - new_node->next = 0; - - if ((__ptw32_mcs_local_node_t *)__PTW32_INTERLOCKED_COMPARE_EXCHANGE_PTR ((__PTW32_INTERLOCKED_PVOID_PTR)new_node->lock, - (__PTW32_INTERLOCKED_PVOID)new_node, - (__PTW32_INTERLOCKED_PVOID)old_node) - != old_node) - { - /* - * A successor has queued after us, so wait for them to link to us - */ - while (0 == old_node->next) - { - sched_yield(); - } - - /* we must wait for the next Node to finish inserting itself. */ - __ptw32_mcs_flag_wait(&old_node->nextFlag); - /* - * Copy the nextFlag state also so we don't block on it when releasing - * this lock. - */ - new_node->next = old_node->next; - new_node->nextFlag = old_node->nextFlag; - } -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_callUserDestroyRoutines.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_callUserDestroyRoutines.c deleted file mode 100644 index 9d85e05..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_callUserDestroyRoutines.c +++ /dev/null @@ -1,234 +0,0 @@ -/* - * ptw32_callUserDestroyRoutines.c - * - * Description: - * This translation unit implements routines which are private to - * the implementation and may be used throughout it. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -#if defined(__PTW32_CLEANUP_CXX) -# if defined(_MSC_VER) -# include -# elif defined(__WATCOMC__) -# include -# include -# else -# if defined(__GNUC__) && __GNUC__ < 3 -# include -# else -# include - using - std::terminate; -# endif -# endif -#endif - -void -__ptw32_callUserDestroyRoutines (pthread_t thread) - /* - * ------------------------------------------------------------------- - * DOCPRIVATE - * - * This the routine runs through all thread keys and calls - * the destroy routines on the user's data for the current thread. - * It simulates the behaviour of POSIX Threads. - * - * PARAMETERS - * thread - * an instance of pthread_t - * - * RETURNS - * N/A - * ------------------------------------------------------------------- - */ -{ - ThreadKeyAssoc * assoc; - - if (thread.p != NULL) - { - __ptw32_mcs_local_node_t threadLock; - __ptw32_mcs_local_node_t keyLock; - int assocsRemaining; - int iterations = 0; - __ptw32_thread_t * sp = (__ptw32_thread_t *) thread.p; - - /* - * Run through all Thread<-->Key associations - * for the current thread. - * - * Do this process at most PTHREAD_DESTRUCTOR_ITERATIONS times. - */ - do - { - assocsRemaining = 0; - iterations++; - - __ptw32_mcs_lock_acquire(&(sp->threadLock), &threadLock); - /* - * The pointer to the next assoc is stored in the thread struct so that - * the assoc destructor in pthread_key_delete can adjust it - * if it deletes this assoc. This can happen if we fail to acquire - * both locks below, and are forced to release all of our locks, - * leaving open the opportunity for pthread_key_delete to get in - * before us. - */ - sp->nextAssoc = sp->keys; - __ptw32_mcs_lock_release(&threadLock); - - for (;;) - { - void * value; - pthread_key_t k; - void (*destructor) (void *); - - /* - * First we need to serialise with pthread_key_delete by locking - * both assoc guards, but in the reverse order to our convention, - * so we must be careful to avoid deadlock. - */ - __ptw32_mcs_lock_acquire(&(sp->threadLock), &threadLock); - - if ((assoc = (ThreadKeyAssoc *)sp->nextAssoc) == NULL) - { - /* Finished */ - __ptw32_mcs_lock_release(&threadLock); - break; - } - else - { - /* - * assoc->key must be valid because assoc can't change or be - * removed from our chain while we hold at least one lock. If - * the assoc was on our key chain then the key has not been - * deleted yet. - * - * Now try to acquire the second lock without deadlocking. - * If we fail, we need to relinquish the first lock and the - * processor and then try to acquire them all again. - */ - if (__ptw32_mcs_lock_try_acquire(&(assoc->key->keyLock), &keyLock) == EBUSY) - { - __ptw32_mcs_lock_release(&threadLock); - Sleep(0); - /* - * Go around again. - * If pthread_key_delete has removed this assoc in the meantime, - * sp->nextAssoc will point to a new assoc. - */ - continue; - } - } - - /* We now hold both locks */ - - sp->nextAssoc = assoc->nextKey; - - /* - * Key still active; pthread_key_delete - * will block on these same mutexes before - * it can release actual key; therefore, - * key is valid and we can call the destroy - * routine; - */ - k = assoc->key; - destructor = k->destructor; - value = TlsGetValue(k->key); - TlsSetValue (k->key, NULL); - - // Every assoc->key exists and has a destructor - if (value != NULL && iterations <= PTHREAD_DESTRUCTOR_ITERATIONS) - { - /* - * Unlock both locks before the destructor runs. - * POSIX says pthread_key_delete can be run from destructors, - * and that probably includes with this key as target. - * pthread_setspecific can also be run from destructors and - * also needs to be able to access the assocs. - */ - __ptw32_mcs_lock_release(&threadLock); - __ptw32_mcs_lock_release(&keyLock); - - assocsRemaining++; - -#if defined(__cplusplus) - - try - { - /* - * Run the caller's cleanup routine. - */ - destructor (value); - } - catch (...) - { - /* - * A system unexpected exception has occurred - * running the user's destructor. - * We get control back within this block in case - * the application has set up it's own terminate - * handler. Since we are leaving the thread we - * should not get any internal pthreads - * exceptions. - */ - terminate (); - } - -#else /* __cplusplus */ - - /* - * Run the caller's cleanup routine. - */ - destructor (value); - -#endif /* __cplusplus */ - - } - else - { - /* - * Remove association from both the key and thread chains - * and reclaim it's memory resources. - */ - __ptw32_tkAssocDestroy (assoc); - __ptw32_mcs_lock_release(&threadLock); - __ptw32_mcs_lock_release(&keyLock); - } - } - } - while (assocsRemaining); - } -} /* __ptw32_callUserDestroyRoutines */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_calloc.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_calloc.c deleted file mode 100644 index 926801c..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_calloc.c +++ /dev/null @@ -1,58 +0,0 @@ -/* - * ptw32_calloc.c - * - * Description: - * This translation unit implements miscellaneous thread functions. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -#if defined(NEED_CALLOC) -void * -__ptw32_calloc (size_t n, size_t s) -{ - unsigned int m = n * s; - void *p; - - p = malloc (m); - if (p == NULL) - return NULL; - - memset (p, 0, m); - - return p; -} -#endif diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_cond_check_need_init.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_cond_check_need_init.c deleted file mode 100644 index 1e849d0..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_cond_check_need_init.c +++ /dev/null @@ -1,80 +0,0 @@ -/* - * ptw32_cond_check_need_init.c - * - * Description: - * This translation unit implements condition variables and their primitives. - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -INLINE int -__ptw32_cond_check_need_init (pthread_cond_t * cond) -{ - int result = 0; - __ptw32_mcs_local_node_t node; - - /* - * The following guarded test is specifically for statically - * initialised condition variables (via PTHREAD_OBJECT_INITIALIZER). - */ - __ptw32_mcs_lock_acquire(&__ptw32_cond_test_init_lock, &node); - - /* - * We got here possibly under race - * conditions. Check again inside the critical section. - * If a static cv has been destroyed, the application can - * re-initialise it only by calling pthread_cond_init() - * explicitly. - */ - if (*cond == PTHREAD_COND_INITIALIZER) - { - result = pthread_cond_init (cond, NULL); - } - else if (*cond == NULL) - { - /* - * The cv has been destroyed while we were waiting to - * initialise it, so the operation that caused the - * auto-initialisation should fail. - */ - result = EINVAL; - } - - __ptw32_mcs_lock_release(&node); - - return result; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_getprocessors.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_getprocessors.c deleted file mode 100644 index 1f52415..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_getprocessors.c +++ /dev/null @@ -1,93 +0,0 @@ -/* - * ptw32_getprocessors.c - * - * Description: - * This translation unit implements routines which are private to - * the implementation and may be used throughout it. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -/* - * __ptw32_getprocessors() - * - * Get the number of CPUs available to the process. - * - * If the available number of CPUs is 1 then pthread_spin_lock() - * will block rather than spin if the lock is already owned. - * - * pthread_spin_init() calls this routine when initialising - * a spinlock. If the number of available processors changes - * (after a call to SetProcessAffinityMask()) then only - * newly initialised spinlocks will notice. - */ -int -__ptw32_getprocessors (int *count) -{ - DWORD_PTR vProcessCPUs; - DWORD_PTR vSystemCPUs; - int result = 0; - -#if defined(NEED_PROCESS_AFFINITY_MASK) - - *count = 1; - -#else - - if (GetProcessAffinityMask (GetCurrentProcess (), - &vProcessCPUs, &vSystemCPUs)) - { - DWORD_PTR bit; - int CPUs = 0; - - for (bit = 1; bit != 0; bit <<= 1) - { - if (vProcessCPUs & bit) - { - CPUs++; - } - } - *count = CPUs; - } - else - { - result = EAGAIN; - } - -#endif - - return (result); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_is_attr.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_is_attr.c deleted file mode 100644 index f8fe077..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_is_attr.c +++ /dev/null @@ -1,49 +0,0 @@ -/* - * ptw32_is_attr.c - * - * Description: - * This translation unit implements operations on thread attribute objects. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -int -__ptw32_is_attr (const pthread_attr_t * attr) -{ - /* Return 0 if the attr object is valid, non-zero otherwise. */ - - return (attr == NULL || - *attr == NULL || (*attr)->valid != __PTW32_ATTR_VALID); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_mutex_check_need_init.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_mutex_check_need_init.c deleted file mode 100644 index c7b1301..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_mutex_check_need_init.c +++ /dev/null @@ -1,94 +0,0 @@ -/* - * ptw32_mutex_check_need_init.c - * - * Description: - * This translation unit implements mutual exclusion (mutex) primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -static struct pthread_mutexattr_t_ __ptw32_recursive_mutexattr_s = - {PTHREAD_PROCESS_PRIVATE, PTHREAD_MUTEX_RECURSIVE, PTHREAD_MUTEX_STALLED}; -static struct pthread_mutexattr_t_ __ptw32_errorcheck_mutexattr_s = - {PTHREAD_PROCESS_PRIVATE, PTHREAD_MUTEX_ERRORCHECK, PTHREAD_MUTEX_STALLED}; -static pthread_mutexattr_t __ptw32_recursive_mutexattr = &__ptw32_recursive_mutexattr_s; -static pthread_mutexattr_t __ptw32_errorcheck_mutexattr = &__ptw32_errorcheck_mutexattr_s; - - -INLINE int -__ptw32_mutex_check_need_init (pthread_mutex_t * mutex) -{ - register int result = 0; - register pthread_mutex_t mtx; - __ptw32_mcs_local_node_t node; - - __ptw32_mcs_lock_acquire(&__ptw32_mutex_test_init_lock, &node); - - /* - * We got here possibly under race - * conditions. Check again inside the critical section - * and only initialise if the mutex is valid (not been destroyed). - * If a static mutex has been destroyed, the application can - * re-initialise it only by calling pthread_mutex_init() - * explicitly. - */ - mtx = *mutex; - - if (mtx == PTHREAD_MUTEX_INITIALIZER) - { - result = pthread_mutex_init (mutex, NULL); - } - else if (mtx == PTHREAD_RECURSIVE_MUTEX_INITIALIZER) - { - result = pthread_mutex_init (mutex, &__ptw32_recursive_mutexattr); - } - else if (mtx == PTHREAD_ERRORCHECK_MUTEX_INITIALIZER) - { - result = pthread_mutex_init (mutex, &__ptw32_errorcheck_mutexattr); - } - else if (mtx == NULL) - { - /* - * The mutex has been destroyed while we were waiting to - * initialise it, so the operation that caused the - * auto-initialisation should fail. - */ - result = EINVAL; - } - - __ptw32_mcs_lock_release(&node); - - return (result); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_new.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_new.c deleted file mode 100644 index 767fba6..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_new.c +++ /dev/null @@ -1,100 +0,0 @@ -/* - * ptw32_new.c - * - * Description: - * This translation unit implements miscellaneous thread functions. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -pthread_t -__ptw32_new (void) -{ - pthread_t t; - pthread_t nil = {NULL, 0}; - __ptw32_thread_t * tp; - - /* - * If there's a reusable pthread_t then use it. - */ - t = __ptw32_threadReusePop (); - - if (NULL != t.p) - { - tp = (__ptw32_thread_t *) t.p; - } - else - { - /* No reuse threads available */ - tp = (__ptw32_thread_t *) calloc (1, sizeof(__ptw32_thread_t)); - - if (tp == NULL) - { - return nil; - } - - /* ptHandle.p needs to point to it's parent __ptw32_thread_t. */ - t.p = tp->ptHandle.p = tp; - t.x = tp->ptHandle.x = 0; - } - - /* Set default state. */ - tp->seqNumber = ++__ptw32_threadSeqNumber; - tp->sched_priority = THREAD_PRIORITY_NORMAL; - tp->detachState = PTHREAD_CREATE_JOINABLE; - tp->cancelState = PTHREAD_CANCEL_ENABLE; - tp->cancelType = PTHREAD_CANCEL_DEFERRED; - tp->stateLock = 0; - tp->threadLock = 0; - tp->robustMxListLock = 0; - tp->robustMxList = NULL; - tp->name = NULL; -#if defined(HAVE_CPU_AFFINITY) - CPU_ZERO((cpu_set_t*)&tp->cpuset); -#endif - tp->cancelEvent = CreateEvent (0, (int) __PTW32_TRUE, /* manualReset */ - (int) __PTW32_FALSE, /* setSignaled */ - NULL); - - if (tp->cancelEvent == NULL) - { - __ptw32_threadReusePush (tp->ptHandle); - return nil; - } - - return t; - -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_processInitialize.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_processInitialize.c deleted file mode 100644 index d7b85f9..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_processInitialize.c +++ /dev/null @@ -1,156 +0,0 @@ -/* - * ptw32_processInitialize.c - * - * Description: - * This translation unit implements routines which are private to - * the implementation and may be used throughout it. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -__ptw32_processInitialize (void) - /* - * ------------------------------------------------------ - * DOCPRIVATE - * This function performs process wide initialization for - * the pthread library. - * - * PARAMETERS - * N/A - * - * DESCRIPTION - * This function performs process wide initialization for - * the pthread library. - * If successful, this routine sets the global variable - * __ptw32_processInitialized to TRUE. - * - * RESULTS - * TRUE if successful, - * FALSE otherwise - * - * ------------------------------------------------------ - */ -{ - if (__ptw32_processInitialized) - { - return __PTW32_TRUE; - } - - /* - * Explicitly initialise all variables from global.c - */ - __ptw32_threadReuseTop = __PTW32_THREAD_REUSE_EMPTY; - __ptw32_threadReuseBottom = __PTW32_THREAD_REUSE_EMPTY; - __ptw32_selfThreadKey = NULL; - __ptw32_cleanupKey = NULL; - __ptw32_cond_list_head = NULL; - __ptw32_cond_list_tail = NULL; - - __ptw32_concurrency = 0; - - /* What features have been auto-detected */ - __ptw32_features = 0; - - /* - * Global [process wide] thread sequence Number - */ - __ptw32_threadSeqNumber = 0; - - /* - * Function pointer to QueueUserAPCEx if it exists, otherwise - * it will be set at runtime to a substitute routine which cannot unblock - * blocked threads. - */ - __ptw32_register_cancellation = NULL; - - /* - * Global lock for managing pthread_t struct reuse. - */ - __ptw32_thread_reuse_lock = 0; - - /* - * Global lock for testing internal state of statically declared mutexes. - */ - __ptw32_mutex_test_init_lock = 0; - - /* - * Global lock for testing internal state of PTHREAD_COND_INITIALIZER - * created condition variables. - */ - __ptw32_cond_test_init_lock = 0; - - /* - * Global lock for testing internal state of PTHREAD_RWLOCK_INITIALIZER - * created read/write locks. - */ - __ptw32_rwlock_test_init_lock = 0; - - /* - * Global lock for testing internal state of PTHREAD_SPINLOCK_INITIALIZER - * created spin locks. - */ - __ptw32_spinlock_test_init_lock = 0; - - /* - * Global lock for condition variable linked list. The list exists - * to wake up CVs when a WM_TIMECHANGE message arrives. See - * w32_TimeChangeHandler.c. - */ - __ptw32_cond_list_lock = 0; - - #if defined(_UWIN) - /* - * Keep a count of the number of threads. - */ - pthread_count = 0; - #endif - - __ptw32_processInitialized = __PTW32_TRUE; - - /* - * Initialize Keys - */ - if ((pthread_key_create (&__ptw32_selfThreadKey, NULL) != 0) || - (pthread_key_create (&__ptw32_cleanupKey, NULL) != 0)) - { - - __ptw32_processTerminate (); - } - - return (__ptw32_processInitialized); - -} /* processInitialize */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_processTerminate.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_processTerminate.c deleted file mode 100644 index b8cf9f1..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_processTerminate.c +++ /dev/null @@ -1,107 +0,0 @@ -/* - * ptw32_processTerminate.c - * - * Description: - * This translation unit implements routines which are private to - * the implementation and may be used throughout it. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -void -__ptw32_processTerminate (void) - /* - * ------------------------------------------------------ - * DOCPRIVATE - * This function performs process wide termination for - * the pthread library. - * - * PARAMETERS - * N/A - * - * DESCRIPTION - * This function performs process wide termination for - * the pthread library. - * This routine sets the global variable - * __ptw32_processInitialized to FALSE - * - * RESULTS - * N/A - * - * ------------------------------------------------------ - */ -{ - if (__ptw32_processInitialized) - { - __ptw32_thread_t * tp, * tpNext; - __ptw32_mcs_local_node_t node; - - if (__ptw32_selfThreadKey != NULL) - { - /* - * Release __ptw32_selfThreadKey - */ - pthread_key_delete (__ptw32_selfThreadKey); - - __ptw32_selfThreadKey = NULL; - } - - if (__ptw32_cleanupKey != NULL) - { - /* - * Release __ptw32_cleanupKey - */ - pthread_key_delete (__ptw32_cleanupKey); - - __ptw32_cleanupKey = NULL; - } - - __ptw32_mcs_lock_acquire(&__ptw32_thread_reuse_lock, &node); - - tp = __ptw32_threadReuseTop; - while (tp != __PTW32_THREAD_REUSE_EMPTY) - { - tpNext = tp->prevReuse; - free (tp); - tp = tpNext; - } - - __ptw32_mcs_lock_release(&node); - - __ptw32_processInitialized = __PTW32_FALSE; - } - -} /* processTerminate */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_relmillisecs.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_relmillisecs.c deleted file mode 100644 index 34b2c4e..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_relmillisecs.c +++ /dev/null @@ -1,166 +0,0 @@ -/* - * ptw32_relmillisecs.c - * - * Description: - * This translation unit implements miscellaneous thread functions. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -static const int64_t NANOSEC_PER_SEC = 1000000000; -static const int64_t NANOSEC_PER_MILLISEC = 1000000; -static const int64_t MILLISEC_PER_SEC = 1000; - -#if defined (__PTW32_BUILD_INLINED) -INLINE -#endif /* __PTW32_BUILD_INLINED */ -DWORD -__ptw32_relmillisecs (const struct timespec * abstime) -{ - DWORD milliseconds; - int64_t tmpAbsNanoseconds; - int64_t tmpCurrNanoseconds; - - struct timespec currSysTime; - FILETIME ft; - -# if defined(WINCE) - SYSTEMTIME st; -#endif - - /* - * Calculate timeout as milliseconds from current system time. - */ - - /* - * subtract current system time from abstime in a way that checks - * that abstime is never in the past, or is never equivalent to the - * defined INFINITE value (0xFFFFFFFF). - * - * Assume all integers are unsigned, i.e. cannot test if less than 0. - */ - tmpAbsNanoseconds = (int64_t)abstime->tv_nsec + ((int64_t)abstime->tv_sec * NANOSEC_PER_SEC); - - /* get current system time */ - -# if defined(WINCE) - GetSystemTime(&st); - SystemTimeToFileTime(&st, &ft); -# else - GetSystemTimeAsFileTime(&ft); -# endif - - __ptw32_filetime_to_timespec(&ft, &currSysTime); - - tmpCurrNanoseconds = (int64_t)currSysTime.tv_nsec + ((int64_t)currSysTime.tv_sec * NANOSEC_PER_SEC); - - if (tmpAbsNanoseconds > tmpCurrNanoseconds) - { - int64_t deltaNanoseconds = tmpAbsNanoseconds - tmpCurrNanoseconds; - - if (deltaNanoseconds >= ((int64_t)INFINITE * NANOSEC_PER_MILLISEC)) - { - /* Timeouts must be finite */ - milliseconds = INFINITE - 1; - } - else - { - milliseconds = (DWORD)(deltaNanoseconds / NANOSEC_PER_MILLISEC); - } - } - else - { - /* The abstime given is in the past */ - milliseconds = 0; - } - - if (milliseconds == 0 && tmpAbsNanoseconds > tmpCurrNanoseconds) { - /* - * millisecond granularity was too small to represent the wait time. - * return the minimum time in milliseconds. - */ - milliseconds = 1; - } - - return milliseconds; -} - - -/* - * Return the first parameter "abstime" modified to represent the current system time. - * If "relative" is not NULL it represents an interval to add to "abstime". - */ - -struct timespec * -pthread_win32_getabstime_np (struct timespec * abstime, const struct timespec * relative) -{ - int64_t sec; - int64_t nsec; - - struct timespec currSysTime; - FILETIME ft; - - /* get current system time */ - -# if defined(WINCE) - - SYSTEMTIME st; - GetSystemTime(&st); - SystemTimeToFileTime(&st, &ft); -# else - GetSystemTimeAsFileTime(&ft); -# endif - - __ptw32_filetime_to_timespec(&ft, &currSysTime); - - sec = currSysTime.tv_sec; - nsec = currSysTime.tv_nsec; - - if (NULL != relative) - { - nsec += relative->tv_nsec; - if (nsec >= NANOSEC_PER_SEC) - { - sec++; - nsec -= NANOSEC_PER_SEC; - } - sec += relative->tv_sec; - } - - abstime->tv_sec = (time_t) sec; - abstime->tv_nsec = (long) nsec; - - return abstime; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_reuse.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_reuse.c deleted file mode 100644 index 822e4bb..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_reuse.c +++ /dev/null @@ -1,155 +0,0 @@ -/* - * ptw32_threadReuse.c - * - * Description: - * This translation unit implements miscellaneous thread functions. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -/* - * How it works: - * A pthread_t is a struct (2x32 bit scalar types on x86, 2x64 bit on x86_64) - * [FIXME: This is not true, x86_64 is 64 bit pointer and 32 bit counter. This - * should be fixed in version 3.0.0] - * which is normally passed/returned by value to/from pthreads routines. - * Applications are therefore storing a copy of the struct as it is at that - * time. - * - * The original pthread_t struct plus all copies of it contain the address of - * the thread state struct __ptw32_thread_t_ (p), plus a reuse counter (x). Each - * __ptw32_thread_t contains the original copy of it's pthread_t (ptHandle). - * Once malloced, a __ptw32_thread_t_ struct is not freed until the process exits. - * - * The thread reuse stack is a simple LILO stack managed through a singly - * linked list element in the __ptw32_thread_t. - * - * Each time a thread is destroyed, the __ptw32_thread_t address is pushed onto the - * reuse stack after it's ptHandle's reuse counter has been incremented. - * - * The following can now be said from this: - * - two pthread_t's refer to the same thread iff their __ptw32_thread_t reference - * pointers are equal and their reuse counters are equal. That is, - * - * equal = (a.p == b.p && a.x == b.x) - * - * - a pthread_t copy refers to a destroyed thread if the reuse counter in - * the copy is not equal to (i.e less than) the reuse counter in the original. - * - * threadDestroyed = (copy.x != ((__ptw32_thread_t *)copy.p)->ptHandle.x) - * - */ - -/* - * Pop a clean pthread_t struct off the reuse stack. - */ -pthread_t -__ptw32_threadReusePop (void) -{ - pthread_t t = {NULL, 0}; - __ptw32_mcs_local_node_t node; - - __ptw32_mcs_lock_acquire(&__ptw32_thread_reuse_lock, &node); - - if (__PTW32_THREAD_REUSE_EMPTY != __ptw32_threadReuseTop) - { - __ptw32_thread_t * tp; - - tp = __ptw32_threadReuseTop; - - __ptw32_threadReuseTop = tp->prevReuse; - - if (__PTW32_THREAD_REUSE_EMPTY == __ptw32_threadReuseTop) - { - __ptw32_threadReuseBottom = __PTW32_THREAD_REUSE_EMPTY; - } - - tp->prevReuse = NULL; - - t = tp->ptHandle; - } - - __ptw32_mcs_lock_release(&node); - - return t; - -} - -/* - * Push a clean pthread_t struct onto the reuse stack. - * Must be re-initialised when reused. - * All object elements (mutexes, events etc) must have been either - * destroyed before this, or never initialised. - */ -void -__ptw32_threadReusePush (pthread_t thread) -{ - __ptw32_thread_t * tp = (__ptw32_thread_t *) thread.p; - pthread_t t; - __ptw32_mcs_local_node_t node; - - __ptw32_mcs_lock_acquire(&__ptw32_thread_reuse_lock, &node); - - t = tp->ptHandle; - memset(tp, 0, sizeof(__ptw32_thread_t)); - - /* Must restore the original POSIX handle that we just wiped. */ - tp->ptHandle = t; - - /* Bump the reuse counter now */ -#if defined (__PTW32_THREAD_ID_REUSE_INCREMENT) - tp->ptHandle.x += __PTW32_THREAD_ID_REUSE_INCREMENT; -#else - tp->ptHandle.x++; -#endif - - tp->state = PThreadStateReuse; - - tp->prevReuse = __PTW32_THREAD_REUSE_EMPTY; - - if (__PTW32_THREAD_REUSE_EMPTY != __ptw32_threadReuseBottom) - { - __ptw32_threadReuseBottom->prevReuse = tp; - } - else - { - __ptw32_threadReuseTop = tp; - } - - __ptw32_threadReuseBottom = tp; - - __ptw32_mcs_lock_release(&node); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_rwlock_cancelwrwait.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_rwlock_cancelwrwait.c deleted file mode 100644 index 8f15996..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_rwlock_cancelwrwait.c +++ /dev/null @@ -1,52 +0,0 @@ -/* - * ptw32_rwlock_cancelwrwait.c - * - * Description: - * This translation unit implements read/write lock primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -void -__ptw32_rwlock_cancelwrwait (void *arg) -{ - pthread_rwlock_t rwl = (pthread_rwlock_t) arg; - - rwl->nSharedAccessCount = -rwl->nCompletedSharedAccessCount; - rwl->nCompletedSharedAccessCount = 0; - - (void) pthread_mutex_unlock (&(rwl->mtxSharedAccessCompleted)); - (void) pthread_mutex_unlock (&(rwl->mtxExclusiveAccess)); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_rwlock_check_need_init.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_rwlock_check_need_init.c deleted file mode 100644 index 014f8d1..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_rwlock_check_need_init.c +++ /dev/null @@ -1,79 +0,0 @@ -/* - * pthread_rwlock_check_need_init.c - * - * Description: - * This translation unit implements read/write lock primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -INLINE int -__ptw32_rwlock_check_need_init (pthread_rwlock_t * rwlock) -{ - int result = 0; - __ptw32_mcs_local_node_t node; - - /* - * The following guarded test is specifically for statically - * initialised rwlocks (via PTHREAD_RWLOCK_INITIALIZER). - */ - __ptw32_mcs_lock_acquire(&__ptw32_rwlock_test_init_lock, &node); - - /* - * We got here possibly under race - * conditions. Check again inside the critical section - * and only initialise if the rwlock is valid (not been destroyed). - * If a static rwlock has been destroyed, the application can - * re-initialise it only by calling pthread_rwlock_init() - * explicitly. - */ - if (*rwlock == PTHREAD_RWLOCK_INITIALIZER) - { - result = pthread_rwlock_init (rwlock, NULL); - } - else if (*rwlock == NULL) - { - /* - * The rwlock has been destroyed while we were waiting to - * initialise it, so the operation that caused the - * auto-initialisation should fail. - */ - result = EINVAL; - } - - __ptw32_mcs_lock_release(&node); - - return result; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_semwait.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_semwait.c deleted file mode 100644 index ae21181..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_semwait.c +++ /dev/null @@ -1,110 +0,0 @@ -/* - * ptw32_semwait.c - * - * Description: - * This translation unit implements mutual exclusion (mutex) primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#if !defined(_UWIN) -/*# include */ -#endif -#include "pthread.h" -#include "implement.h" - - -int -__ptw32_semwait (sem_t * sem) -/* - * ------------------------------------------------------ - * DESCRIPTION - * This function waits on a POSIX semaphore. If the - * semaphore value is greater than zero, it decreases - * its value by one. If the semaphore value is zero, then - * the calling thread (or process) is blocked until it can - * successfully decrease the value. - * - * Unlike sem_wait(), this routine is non-cancelable. - * - * RESULTS - * 0 successfully decreased semaphore, - * -1 failed, error in errno. - * ERRNO - * EINVAL 'sem' is not a valid semaphore, - * ENOSYS semaphores are not supported, - * EINTR the function was interrupted by a signal, - * EDEADLK a deadlock condition was detected. - * - * ------------------------------------------------------ - */ -{ - __ptw32_mcs_local_node_t node; - int v; - int result = 0; - sem_t s = *sem; - - __ptw32_mcs_lock_acquire(&s->lock, &node); - v = --s->value; - __ptw32_mcs_lock_release(&node); - - if (v < 0) - { - /* Must wait */ - if (WaitForSingleObject (s->sem, INFINITE) == WAIT_OBJECT_0) - { -#if defined(NEED_SEM) - __ptw32_mcs_lock_acquire(&s->lock, &node); - if (s->leftToUnblock > 0) - { - --s->leftToUnblock; - SetEvent(s->sem); - } - __ptw32_mcs_lock_release(&node); -#endif -return 0; - } - } - else - { - return 0; - } - - if (result != 0) - { - __PTW32_SET_ERRNO(result); - return -1; - } - - return 0; - -} /* __ptw32_semwait */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_spinlock_check_need_init.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_spinlock_check_need_init.c deleted file mode 100644 index 1ca7afa..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_spinlock_check_need_init.c +++ /dev/null @@ -1,80 +0,0 @@ -/* - * ptw32_spinlock_check_need_init.c - * - * Description: - * This translation unit implements spin lock primitives. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -INLINE int -__ptw32_spinlock_check_need_init (pthread_spinlock_t * lock) -{ - int result = 0; - __ptw32_mcs_local_node_t node; - - /* - * The following guarded test is specifically for statically - * initialised spinlocks (via PTHREAD_SPINLOCK_INITIALIZER). - */ - __ptw32_mcs_lock_acquire(&__ptw32_spinlock_test_init_lock, &node); - - /* - * We got here possibly under race - * conditions. Check again inside the critical section - * and only initialise if the spinlock is valid (not been destroyed). - * If a static spinlock has been destroyed, the application can - * re-initialise it only by calling pthread_spin_init() - * explicitly. - */ - if (*lock == PTHREAD_SPINLOCK_INITIALIZER) - { - result = pthread_spin_init (lock, PTHREAD_PROCESS_PRIVATE); - } - else if (*lock == NULL) - { - /* - * The spinlock has been destroyed while we were waiting to - * initialise it, so the operation that caused the - * auto-initialisation should fail. - */ - result = EINVAL; - } - - __ptw32_mcs_lock_release(&node); - - return (result); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_threadDestroy.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_threadDestroy.c deleted file mode 100644 index 5b13556..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_threadDestroy.c +++ /dev/null @@ -1,83 +0,0 @@ -/* - * ptw32_threadDestroy.c - * - * Description: - * This translation unit implements routines which are private to - * the implementation and may be used throughout it. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -void -__ptw32_threadDestroy (pthread_t thread) -{ - __ptw32_thread_t * tp = (__ptw32_thread_t *) thread.p; - - if (tp != NULL) - { - /* - * Copy thread state so that the thread can be atomically NULLed. - */ -#if ! defined(__MINGW32__) || defined (__MSVCRT__) || defined (__DMC__) - HANDLE threadH = tp->threadH; -#endif - HANDLE cancelEvent = tp->cancelEvent; - - /* - * Thread ID structs are never freed. They're NULLed and reused. - * This also sets the thread state to PThreadStateInitial before - * it is finally set to PThreadStateReuse. - */ - __ptw32_threadReusePush (thread); - - if (cancelEvent != NULL) - { - CloseHandle (cancelEvent); - } - -#if ! defined(__MINGW32__) || defined (__MSVCRT__) || defined (__DMC__) - /* - * See documentation for endthread vs endthreadex. - */ - if (threadH != 0) - { - CloseHandle (threadH); - } -#endif - - } -} /* __ptw32_threadDestroy */ - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_threadStart.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_threadStart.c deleted file mode 100644 index fc41ca2..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_threadStart.c +++ /dev/null @@ -1,325 +0,0 @@ -/* - * ptw32_threadStart.c - * - * Description: - * This translation unit implements routines which are private to - * the implementation and may be used throughout it. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" -#include - -#if defined(__PTW32_CLEANUP_C) -# include -#endif - -#if defined(__PTW32_CLEANUP_SEH) - -static DWORD -ExceptionFilter (EXCEPTION_POINTERS * ep, DWORD * ei) -{ - switch (ep->ExceptionRecord->ExceptionCode) - { - case EXCEPTION_PTW32_SERVICES: - { - DWORD param; - DWORD numParams = ep->ExceptionRecord->NumberParameters; - - numParams = (numParams > 3) ? 3 : numParams; - - for (param = 0; param < numParams; param++) - { - ei[param] = (DWORD) ep->ExceptionRecord->ExceptionInformation[param]; - } - - return EXCEPTION_EXECUTE_HANDLER; - break; - } - default: - { - /* - * A system unexpected exception has occurred running the user's - * routine. We need to cleanup before letting the exception - * out of thread scope. - */ - pthread_t self = pthread_self (); - - __ptw32_callUserDestroyRoutines (self); - - return EXCEPTION_CONTINUE_SEARCH; - break; - } - } -} - -#elif defined(__PTW32_CLEANUP_CXX) - -#if defined(_MSC_VER) -# include -#elif defined(__WATCOMC__) -# include -# include -#else -# if defined(__GNUC__) && __GNUC__ < 3 -# include -# else -# include -using - std::terminate; -using - std::set_terminate; -# endif -#endif - -#endif /* __PTW32_CLEANUP_CXX */ - -/* - * MSVC6 does not optimize __ptw32_threadStart() safely - * (i.e. tests/context1.c fails with "abnormal program - * termination" in some configurations), and there's no - * point to optimizing this routine anyway - */ -#ifdef _MSC_VER -# pragma optimize("g", off) -# pragma warning( disable : 4748 ) -#endif - -#if ! defined (__MINGW32__) || (defined (__MSVCRT__) && ! defined (__DMC__)) -unsigned - __stdcall -#else -void -#endif -__ptw32_threadStart (void *vthreadParms) -{ - ThreadParms * threadParms = (ThreadParms *) vthreadParms; - pthread_t self; - __ptw32_thread_t * sp; - void * (__PTW32_CDECL *start) (void *); - void * arg; - -#if defined(__PTW32_CLEANUP_SEH) - DWORD - ei[] = { 0, 0, 0 }; -#endif - -#if defined(__PTW32_CLEANUP_C) - int setjmp_rc; -#endif - - __ptw32_mcs_local_node_t stateLock; - void * status = (void *) 0; - - self = threadParms->tid; - sp = (__ptw32_thread_t *) self.p; - start = threadParms->start; - arg = threadParms->arg; - - free (threadParms); - -#if ! defined (__MINGW32__) || defined (__MSVCRT__) || defined (__DMC__) -#else - /* - * _beginthread does not return the thread id and is running - * before it returns us the thread handle, and so we do it here. - */ - sp->thread = GetCurrentThreadId (); -#endif - - pthread_setspecific (__ptw32_selfThreadKey, sp); - /* - * Here we're using stateLock as a general-purpose lock - * to make the new thread wait until the creating thread - * has the new handle. - */ - __ptw32_mcs_lock_acquire (&sp->stateLock, &stateLock); - sp->state = PThreadStateRunning; - __ptw32_mcs_lock_release (&stateLock); - -#if defined(__PTW32_CLEANUP_SEH) - - __try - { - /* - * Run the caller's routine; - */ - status = sp->exitStatus = (*start) (arg); - sp->state = PThreadStateExiting; - -#if defined(_UWIN) - if (--pthread_count <= 0) - exit (0); -#endif - - } - __except (ExceptionFilter (GetExceptionInformation (), ei)) - { - switch (ei[0]) - { - case __PTW32_EPS_CANCEL: - status = sp->exitStatus = PTHREAD_CANCELED; -#if defined(_UWIN) - if (--pthread_count <= 0) - exit (0); -#endif - break; - case __PTW32_EPS_EXIT: - status = sp->exitStatus; - break; - default: - status = sp->exitStatus = PTHREAD_CANCELED; - break; - } - } - -#else /* __PTW32_CLEANUP_SEH */ - -#if defined(__PTW32_CLEANUP_C) - - setjmp_rc = setjmp (sp->start_mark); - - if (0 == setjmp_rc) - { - /* - * Run the caller's routine; - */ - status = sp->exitStatus = (*start) (arg); - sp->state = PThreadStateExiting; - } - else - { - switch (setjmp_rc) - { - case __PTW32_EPS_CANCEL: - status = sp->exitStatus = PTHREAD_CANCELED; - break; - case __PTW32_EPS_EXIT: - status = sp->exitStatus; - break; - default: - status = sp->exitStatus = PTHREAD_CANCELED; - break; - } - } - -#else /* __PTW32_CLEANUP_C */ - -#if defined(__PTW32_CLEANUP_CXX) - - try - { - status = sp->exitStatus = (*start) (arg); - sp->state = PThreadStateExiting; - } - catch (__ptw32_exception_cancel &) - { - /* - * Thread was canceled. - */ - status = sp->exitStatus = PTHREAD_CANCELED; - } - catch (__ptw32_exception_exit &) - { - /* - * Thread was exited via pthread_exit(). - */ - status = sp->exitStatus; - } - catch (...) - { - /* - * Some other exception occurred. Clean up while we have - * the opportunity, and call the terminate handler. - */ - (void) pthread_win32_thread_detach_np (); - terminate (); - } - -#else - -#error ERROR [__FILE__, line __LINE__]: Cleanup type undefined. - -#endif /* __PTW32_CLEANUP_CXX */ -#endif /* __PTW32_CLEANUP_C */ -#endif /* __PTW32_CLEANUP_SEH */ - -#if defined (__PTW32_STATIC_LIB) - /* - * We need to cleanup the pthread now if we have - * been statically linked, in which case the cleanup - * in DllMain won't get done. Joinable threads will - * only be partially cleaned up and must be fully cleaned - * up by pthread_join() or pthread_detach(). - * - * Note: if this library has been statically linked, - * implicitly created pthreads (those created - * for Win32 threads which have called pthreads routines) - * must be cleaned up explicitly by the application - * by calling pthread_exit(). - * For the dll, DllMain will do the cleanup automatically. - */ - (void) pthread_win32_thread_detach_np (); -#endif - -#if ! defined (__MINGW32__) || defined (__MSVCRT__) || defined (__DMC__) - _endthreadex ((unsigned)(size_t) status); -#else - _endthread (); -#endif - - /* - * Never reached. - */ - -#if ! defined (__MINGW32__) || defined (__MSVCRT__) || defined (__DMC__) - return (unsigned)(size_t) status; -#endif - -} /* __ptw32_threadStart */ - -/* - * Reset optimization - */ -#ifdef _MSC_VER -# pragma optimize("", on) -#endif - -#if defined (__PTW32_USES_SEPARATE_CRT) && (defined(__PTW32_CLEANUP_CXX) || defined(__PTW32_CLEANUP_SEH)) -__ptw32_terminate_handler -pthread_win32_set_terminate_np(__ptw32_terminate_handler termFunction) -{ - return set_terminate(termFunction); -} -#endif diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_throw.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_throw.c deleted file mode 100644 index 45337d2..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_throw.c +++ /dev/null @@ -1,180 +0,0 @@ -/* - * ptw32_throw.c - * - * Description: - * This translation unit implements routines which are private to - * the implementation and may be used throughout it. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -#if defined(__PTW32_CLEANUP_C) -# include -#endif - -/* - * __ptw32_throw - * - * All cancelled and explicitly exited POSIX threads go through - * here. This routine knows how to exit both POSIX initiated threads and - * 'implicit' POSIX threads for each of the possible language modes (C, - * C++, and SEH). - */ -void -__ptw32_throw (DWORD exception) -{ - /* - * Don't use pthread_self() to avoid creating an implicit POSIX thread handle - * unnecessarily. - */ - __ptw32_thread_t * sp = (__ptw32_thread_t *) pthread_getspecific (__ptw32_selfThreadKey); - -#if defined(__PTW32_CLEANUP_SEH) - DWORD exceptionInformation[3]; -#endif - - sp->state = PThreadStateExiting; - - if (exception != __PTW32_EPS_CANCEL && exception != __PTW32_EPS_EXIT) - { - /* Should never enter here */ - exit (1); - } - - if (NULL == sp || sp->implicit) - { - /* - * We're inside a non-POSIX initialised Win32 thread - * so there is no point to jump or throw back to. Just do an - * explicit thread exit here after cleaning up POSIX - * residue (i.e. cleanup handlers, POSIX thread handle etc). - */ -#if ! defined (__MINGW32__) || defined (__MSVCRT__) || defined (__DMC__) - unsigned exitCode = 0; - - switch (exception) - { - case __PTW32_EPS_CANCEL: - exitCode = (unsigned)(size_t) PTHREAD_CANCELED; - break; - case __PTW32_EPS_EXIT: - if (NULL != sp) - { - exitCode = (unsigned)(size_t) sp->exitStatus; - } - break; - } -#endif - -#if defined (__PTW32_STATIC_LIB) - - pthread_win32_thread_detach_np (); - -#endif - -#if ! defined (__MINGW32__) || defined (__MSVCRT__) || defined (__DMC__) - _endthreadex (exitCode); -#else - _endthread (); -#endif - - } - -#if defined(__PTW32_CLEANUP_SEH) - - - exceptionInformation[0] = (DWORD) (exception); - exceptionInformation[1] = (DWORD) (0); - exceptionInformation[2] = (DWORD) (0); - - RaiseException (EXCEPTION_PTW32_SERVICES, 0, 3, (ULONG_PTR *) exceptionInformation); - -#else /* __PTW32_CLEANUP_SEH */ - -#if defined(__PTW32_CLEANUP_C) - - __ptw32_pop_cleanup_all (1); - longjmp (sp->start_mark, exception); - -#else /* __PTW32_CLEANUP_C */ - -#if defined(__PTW32_CLEANUP_CXX) - - switch (exception) - { - case __PTW32_EPS_CANCEL: - throw __ptw32_exception_cancel (); - break; - case __PTW32_EPS_EXIT: - throw __ptw32_exception_exit (); - break; - } - -#else - -#error ERROR [__FILE__, line __LINE__]: Cleanup type undefined. - -#endif /* __PTW32_CLEANUP_CXX */ - -#endif /* __PTW32_CLEANUP_C */ - -#endif /* __PTW32_CLEANUP_SEH */ - - /* Never reached */ -} - - -void -__ptw32_pop_cleanup_all (int execute) -{ - while (NULL != __ptw32_pop_cleanup (execute)) - { - } -} - - -DWORD -__ptw32_get_exception_services_code (void) -{ -#if defined(__PTW32_CLEANUP_SEH) - - return EXCEPTION_PTW32_SERVICES; - -#else - - return (DWORD)0; - -#endif -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_timespec.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_timespec.c deleted file mode 100644 index a57a6c5..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_timespec.c +++ /dev/null @@ -1,80 +0,0 @@ -/* - * ptw32_timespec.c - * - * Description: - * This translation unit implements routines which are private to - * the implementation and may be used throughout it. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -/* - * time between jan 1, 1601 and jan 1, 1970 in units of 100 nanoseconds - */ -#define __PTW32_TIMESPEC_TO_FILETIME_OFFSET \ - ( ((uint64_t) 27111902UL << 32) + (uint64_t) 3577643008UL ) - -INLINE void -__ptw32_timespec_to_filetime (const struct timespec *ts, FILETIME * ft) - /* - * ------------------------------------------------------------------- - * converts struct timespec - * where the time is expressed in seconds and nanoseconds from Jan 1, 1970. - * into FILETIME (as set by GetSystemTimeAsFileTime), where the time is - * expressed in 100 nanoseconds from Jan 1, 1601, - * ------------------------------------------------------------------- - */ -{ - *(uint64_t *) ft = ts->tv_sec * 10000000UL - + (ts->tv_nsec + 50) / 100 + __PTW32_TIMESPEC_TO_FILETIME_OFFSET; -} - -INLINE void -__ptw32_filetime_to_timespec (const FILETIME * ft, struct timespec *ts) - /* - * ------------------------------------------------------------------- - * converts FILETIME (as set by GetSystemTimeAsFileTime), where the time is - * expressed in 100 nanoseconds from Jan 1, 1601, - * into struct timespec - * where the time is expressed in seconds and nanoseconds from Jan 1, 1970. - * ------------------------------------------------------------------- - */ -{ - ts->tv_sec = - (int) ((*(uint64_t *) ft - __PTW32_TIMESPEC_TO_FILETIME_OFFSET) / 10000000UL); - ts->tv_nsec = - (int) ((*(uint64_t *) ft - __PTW32_TIMESPEC_TO_FILETIME_OFFSET - - ((uint64_t) ts->tv_sec * (uint64_t) 10000000UL)) * 100); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_tkAssocCreate.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_tkAssocCreate.c deleted file mode 100644 index d860a0a..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_tkAssocCreate.c +++ /dev/null @@ -1,120 +0,0 @@ -/* - * ptw32_tkAssocCreate.c - * - * Description: - * This translation unit implements routines which are private to - * the implementation and may be used throughout it. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -int -__ptw32_tkAssocCreate (__ptw32_thread_t * sp, pthread_key_t key) - /* - * ------------------------------------------------------------------- - * This routine creates an association that - * is unique for the given (thread,key) combination.The association - * is referenced by both the thread and the key. - * This association allows us to determine what keys the - * current thread references and what threads a given key - * references. - * See the detailed description - * at the beginning of this file for further details. - * - * Notes: - * 1) New associations are pushed to the beginning of the - * chain so that the internal __ptw32_selfThreadKey association - * is always last, thus allowing selfThreadExit to - * be implicitly called last by pthread_exit. - * 2) - * - * Parameters: - * thread - * current running thread. - * key - * key on which to create an association. - * Returns: - * 0 - if successful, - * ENOMEM - not enough memory to create assoc or other object - * EINVAL - an internal error occurred - * ENOSYS - an internal error occurred - * ------------------------------------------------------------------- - */ -{ - ThreadKeyAssoc *assoc; - - /* - * Have to create an association and add it - * to both the key and the thread. - * - * Both key->keyLock and thread->threadLock are locked before - * entry to this routine. - */ - assoc = (ThreadKeyAssoc *) calloc (1, sizeof (*assoc)); - - if (assoc == NULL) - { - return ENOMEM; - } - - assoc->thread = sp; - assoc->key = key; - - /* - * Register assoc with key - */ - assoc->prevThread = NULL; - assoc->nextThread = (ThreadKeyAssoc *) key->threads; - if (assoc->nextThread != NULL) - { - assoc->nextThread->prevThread = assoc; - } - key->threads = (void *) assoc; - - /* - * Register assoc with thread - */ - assoc->prevKey = NULL; - assoc->nextKey = (ThreadKeyAssoc *) sp->keys; - if (assoc->nextKey != NULL) - { - assoc->nextKey->prevKey = assoc; - } - sp->keys = (void *) assoc; - - return (0); - -} /* __ptw32_tkAssocCreate */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_tkAssocDestroy.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_tkAssocDestroy.c deleted file mode 100644 index 63839ea..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/ptw32_tkAssocDestroy.c +++ /dev/null @@ -1,116 +0,0 @@ -/* - * ptw32_tkAssocDestroy.c - * - * Description: - * This translation unit implements routines which are private to - * the implementation and may be used throughout it. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -void -__ptw32_tkAssocDestroy (ThreadKeyAssoc * assoc) - /* - * ------------------------------------------------------------------- - * This routine releases all resources for the given ThreadKeyAssoc - * once it is no longer being referenced - * ie) either the key or thread has stopped referencing it. - * - * Parameters: - * assoc - * an instance of ThreadKeyAssoc. - * Returns: - * N/A - * ------------------------------------------------------------------- - */ -{ - - /* - * Both key->keyLock and thread->threadLock are locked before - * entry to this routine. - */ - if (assoc != NULL) - { - ThreadKeyAssoc * prev, * next; - - /* Remove assoc from thread's keys chain */ - prev = assoc->prevKey; - next = assoc->nextKey; - if (prev != NULL) - { - prev->nextKey = next; - } - if (next != NULL) - { - next->prevKey = prev; - } - - if (assoc->thread->keys == assoc) - { - /* We're at the head of the thread's keys chain */ - assoc->thread->keys = next; - } - if (assoc->thread->nextAssoc == assoc) - { - /* - * Thread is exiting and we're deleting the assoc to be processed next. - * Hand thread the assoc after this one. - */ - assoc->thread->nextAssoc = next; - } - - /* Remove assoc from key's threads chain */ - prev = assoc->prevThread; - next = assoc->nextThread; - if (prev != NULL) - { - prev->nextThread = next; - } - if (next != NULL) - { - next->prevThread = prev; - } - - if (assoc->key->threads == assoc) - { - /* We're at the head of the key's threads chain */ - assoc->key->threads = next; - } - - free (assoc); - } - -} /* __ptw32_tkAssocDestroy */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sched.h b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sched.h deleted file mode 100644 index 81630d9..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sched.h +++ /dev/null @@ -1,235 +0,0 @@ -/* - * Module: sched.h - * - * Purpose: - * Provides an implementation of POSIX realtime extensions - * as defined in - * - * POSIX 1003.1b-1993 (POSIX.1b) - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -#if !defined(_SCHED_H) -#define _SCHED_H -#define __SCHED_H_SOURCED__ - -#include <_ptw32.h> - -/* We need a typedef for pid_t, (and POSIX requires to - * define it, as it is defined in , but it does NOT - * sanction exposure of everything from ); there is - * no pid_t in Windows anyway, (except that MinGW does define it - * in their ), so just provide a suitable typedef, - * but note that we must do so cautiously, to avoid a typedef - * conflict if MinGW's is also #included: - */ -#if ! defined __MINGW32__ || ! defined __have_typedef_pid_t - -# if defined __MINGW64__ - typedef __int64 pid_t; -# else - typedef int pid_t; -#endif - -#if __GNUC__ < 4 -/* GCC v4.0 and later, (as used by MinGW), allows us to repeat a - * typedef, provided every duplicate is consistent; only set this - * multiple definition guard when we cannot be certain that it is - * permissable to repeat typedefs. - */ -#define __have_typedef_pid_t 1 -#endif -#endif - -/* POSIX.1-1993 says that WILL expose all of - */ -#undef __SCHED_H_SOURCED__ -#if _POSIX_C_SOURCE >= 200112L -/* POSIX.1-2001 and later revises this to say only that it MAY do so; - * only struct timespec, and associated time_t are actually required, - * so prefer to be selective; (MinGW.org's offers an option - * for selective #inclusion, when __SCHED_H_SOURCED__ is defined): - */ -#define __SCHED_H_SOURCED__ -#define __need_struct_timespec -#define __need_time_t -#endif -#include - -#if defined __MINGW64__ || _MSC_VER >= 1900 -/* These are known to define struct timespec, when has been - * #included, but may not, (probably don't), follow the convention of - * defining __struct_timespec_defined, as adopted by MinGW.org; for - * these cases, we unconditionally assume that struct timespec has - * been defined, otherwise, if MinGW.org's criterion has not been - * satisfied... - */ -#elif ! defined __struct_timespec_defined -# ifndef _TIMESPEC_DEFINED -# define _TIMESPEC_DEFINED -struct timespec -{ /* ...we fall back on this explicit definition. - */ - time_t tv_sec; - int tv_nsec; -}; -# endif -#endif - -/* - * Microsoft VC++6.0 lacks these *_PTR types - */ -#if defined(_MSC_VER) && _MSC_VER < 1300 && !defined (__PTW32_HAVE_DWORD_PTR) -typedef unsigned long ULONG_PTR; -typedef ULONG_PTR DWORD_PTR; -#endif - -/* Thread scheduling policies */ - -enum -{ SCHED_OTHER = 0, - SCHED_FIFO, - SCHED_RR, - SCHED_MIN = SCHED_OTHER, - SCHED_MAX = SCHED_RR -}; - -struct sched_param -{ int sched_priority; -}; - -/* - * CPU affinity - * - * cpu_set_t: - * Considered opaque but cannot be an opaque pointer due to the need for - * compatibility with GNU systems and sched_setaffinity() et.al., which - * include the cpusetsize parameter "normally set to sizeof(cpu_set_t)". - * - * FIXME: These are GNU, and NOT specified by POSIX; maybe consider - * occluding them within a _GNU_SOURCE (or similar) feature test. - */ - -#define CPU_SETSIZE (sizeof(size_t)*8) - -#define CPU_COUNT(setptr) (_sched_affinitycpucount(setptr)) - -#define CPU_ZERO(setptr) (_sched_affinitycpuzero(setptr)) - -#define CPU_SET(cpu, setptr) (_sched_affinitycpuset((cpu),(setptr))) - -#define CPU_CLR(cpu, setptr) (_sched_affinitycpuclr((cpu),(setptr))) - -#define CPU_ISSET(cpu, setptr) (_sched_affinitycpuisset((cpu),(setptr))) - -#define CPU_AND(destsetptr, srcset1ptr, srcset2ptr) (_sched_affinitycpuand((destsetptr),(srcset1ptr),(srcset2ptr))) - -#define CPU_OR(destsetptr, srcset1ptr, srcset2ptr) (_sched_affinitycpuor((destsetptr),(srcset1ptr),(srcset2ptr))) - -#define CPU_XOR(destsetptr, srcset1ptr, srcset2ptr) \ - (_sched_affinitycpuxor((destsetptr),(srcset1ptr),(srcset2ptr))) - -#define CPU_EQUAL(set1ptr, set2ptr) (_sched_affinitycpuequal((set1ptr),(set2ptr))) - -typedef union -{ char cpuset[CPU_SETSIZE/8]; - size_t _align; -} cpu_set_t; - -__PTW32_BEGIN_C_DECLS - -__PTW32_DLLPORT int __PTW32_CDECL sched_yield (void); - -__PTW32_DLLPORT int __PTW32_CDECL sched_get_priority_min (int policy); - -__PTW32_DLLPORT int __PTW32_CDECL sched_get_priority_max (int policy); - -/* FIXME: this declaration of sched_setscheduler() is NOT as prescribed - * by POSIX; it lacks const struct sched_param * as third argument. - */ -__PTW32_DLLPORT int __PTW32_CDECL sched_setscheduler (pid_t pid, int policy); - -/* FIXME: In addition to the above five functions, POSIX also requires: - * - * int sched_getparam (pid_t, struct sched_param *); - * int sched_setparam (pid_t, const struct sched_param *); - * - * both of which are conspicuous by their absence here! - */ - -/* Compatibility with Linux - not standard in POSIX - * FIXME: consider occluding within a _GNU_SOURCE (or similar) feature test. - */ -__PTW32_DLLPORT int __PTW32_CDECL sched_setaffinity (pid_t pid, size_t cpusetsize, cpu_set_t *mask); - -__PTW32_DLLPORT int __PTW32_CDECL sched_getaffinity (pid_t pid, size_t cpusetsize, cpu_set_t *mask); - -/* - * Support routines and macros for cpu_set_t - */ -__PTW32_DLLPORT int __PTW32_CDECL _sched_affinitycpucount (const cpu_set_t *set); - -__PTW32_DLLPORT void __PTW32_CDECL _sched_affinitycpuzero (cpu_set_t *pset); - -__PTW32_DLLPORT void __PTW32_CDECL _sched_affinitycpuset (int cpu, cpu_set_t *pset); - -__PTW32_DLLPORT void __PTW32_CDECL _sched_affinitycpuclr (int cpu, cpu_set_t *pset); - -__PTW32_DLLPORT int __PTW32_CDECL _sched_affinitycpuisset (int cpu, const cpu_set_t *pset); - -__PTW32_DLLPORT void __PTW32_CDECL _sched_affinitycpuand(cpu_set_t *pdestset, const cpu_set_t *psrcset1, const cpu_set_t *psrcset2); - -__PTW32_DLLPORT void __PTW32_CDECL _sched_affinitycpuor(cpu_set_t *pdestset, const cpu_set_t *psrcset1, const cpu_set_t *psrcset2); - -__PTW32_DLLPORT void __PTW32_CDECL _sched_affinitycpuxor(cpu_set_t *pdestset, const cpu_set_t *psrcset1, const cpu_set_t *psrcset2); - -__PTW32_DLLPORT int __PTW32_CDECL _sched_affinitycpuequal (const cpu_set_t *pset1, const cpu_set_t *pset2); - -/* Note that this macro returns ENOTSUP rather than ENOSYS, as - * might be expected. However, returning ENOSYS should mean that - * sched_get_priority_{min,max} are not implemented as well as - * sched_rr_get_interval. This is not the case, since we just - * don't support round-robin scheduling. Therefore I have chosen - * to return the same value as sched_setscheduler when SCHED_RR - * is passed to it. - * - * FIXME: POSIX requires this to be defined as a function; this - * macro implementation is permitted IN ADDITION to the function, - * but the macro alone is not POSIX compliant! Worse still, it - * imposes a requirement on the caller, to ensure that both the - * declaration of errno, and the definition of ENOTSUP, are in - * scope at point of call, (which it may wish to do anyway, but - * POSIX imposes no such constraint)! - */ -#define sched_rr_get_interval(_pid, _interval) \ - ( errno = ENOTSUP, (int) -1 ) - -__PTW32_END_C_DECLS - -#undef __SCHED_H_SOURCED__ -#endif /* !_SCHED_H */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sched_get_priority_max.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sched_get_priority_max.c deleted file mode 100644 index 10c6b3b..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sched_get_priority_max.c +++ /dev/null @@ -1,136 +0,0 @@ -/* - * sched_get_priority_max.c - * - * Description: - * POSIX thread functions that deal with thread scheduling. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" -#include "sched.h" - -/* - * On Windows98, THREAD_PRIORITY_LOWEST is (-2) and - * THREAD_PRIORITY_HIGHEST is 2, and everything works just fine. - * - * On WinCE 3.0, it so happen that THREAD_PRIORITY_LOWEST is 5 - * and THREAD_PRIORITY_HIGHEST is 1 (yes, I know, it is funny: - * highest priority use smaller numbers) and the following happens: - * - * sched_get_priority_min() returns 5 - * sched_get_priority_max() returns 1 - * - * The following table shows the base priority levels for combinations - * of priority class and priority value in Win32. - * - * Process Priority Class Thread Priority Level - * ----------------------------------------------------------------- - * 1 IDLE_PRIORITY_CLASS THREAD_PRIORITY_IDLE - * 1 BELOW_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_IDLE - * 1 NORMAL_PRIORITY_CLASS THREAD_PRIORITY_IDLE - * 1 ABOVE_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_IDLE - * 1 HIGH_PRIORITY_CLASS THREAD_PRIORITY_IDLE - * 2 IDLE_PRIORITY_CLASS THREAD_PRIORITY_LOWEST - * 3 IDLE_PRIORITY_CLASS THREAD_PRIORITY_BELOW_NORMAL - * 4 IDLE_PRIORITY_CLASS THREAD_PRIORITY_NORMAL - * 4 BELOW_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_LOWEST - * 5 IDLE_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL - * 5 BELOW_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_BELOW_NORMAL - * 5 Background NORMAL_PRIORITY_CLASS THREAD_PRIORITY_LOWEST - * 6 IDLE_PRIORITY_CLASS THREAD_PRIORITY_HIGHEST - * 6 BELOW_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_NORMAL - * 6 Background NORMAL_PRIORITY_CLASS THREAD_PRIORITY_BELOW_NORMAL - * 7 BELOW_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL - * 7 Background NORMAL_PRIORITY_CLASS THREAD_PRIORITY_NORMAL - * 7 Foreground NORMAL_PRIORITY_CLASS THREAD_PRIORITY_LOWEST - * 8 BELOW_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_HIGHEST - * 8 NORMAL_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL - * 8 Foreground NORMAL_PRIORITY_CLASS THREAD_PRIORITY_BELOW_NORMAL - * 8 ABOVE_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_LOWEST - * 9 NORMAL_PRIORITY_CLASS THREAD_PRIORITY_HIGHEST - * 9 Foreground NORMAL_PRIORITY_CLASS THREAD_PRIORITY_NORMAL - * 9 ABOVE_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_BELOW_NORMAL - * 10 Foreground NORMAL_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL - * 10 ABOVE_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_NORMAL - * 11 Foreground NORMAL_PRIORITY_CLASS THREAD_PRIORITY_HIGHEST - * 11 ABOVE_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL - * 11 HIGH_PRIORITY_CLASS THREAD_PRIORITY_LOWEST - * 12 ABOVE_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_HIGHEST - * 12 HIGH_PRIORITY_CLASS THREAD_PRIORITY_BELOW_NORMAL - * 13 HIGH_PRIORITY_CLASS THREAD_PRIORITY_NORMAL - * 14 HIGH_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL - * 15 HIGH_PRIORITY_CLASS THREAD_PRIORITY_HIGHEST - * 15 HIGH_PRIORITY_CLASS THREAD_PRIORITY_TIME_CRITICAL - * 15 IDLE_PRIORITY_CLASS THREAD_PRIORITY_TIME_CRITICAL - * 15 BELOW_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_TIME_CRITICAL - * 15 NORMAL_PRIORITY_CLASS THREAD_PRIORITY_TIME_CRITICAL - * 15 ABOVE_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_TIME_CRITICAL - * 16 REALTIME_PRIORITY_CLASS THREAD_PRIORITY_IDLE - * 17 REALTIME_PRIORITY_CLASS -7 - * 18 REALTIME_PRIORITY_CLASS -6 - * 19 REALTIME_PRIORITY_CLASS -5 - * 20 REALTIME_PRIORITY_CLASS -4 - * 21 REALTIME_PRIORITY_CLASS -3 - * 22 REALTIME_PRIORITY_CLASS THREAD_PRIORITY_LOWEST - * 23 REALTIME_PRIORITY_CLASS THREAD_PRIORITY_BELOW_NORMAL - * 24 REALTIME_PRIORITY_CLASS THREAD_PRIORITY_NORMAL - * 25 REALTIME_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL - * 26 REALTIME_PRIORITY_CLASS THREAD_PRIORITY_HIGHEST - * 27 REALTIME_PRIORITY_CLASS 3 - * 28 REALTIME_PRIORITY_CLASS 4 - * 29 REALTIME_PRIORITY_CLASS 5 - * 30 REALTIME_PRIORITY_CLASS 6 - * 31 REALTIME_PRIORITY_CLASS THREAD_PRIORITY_TIME_CRITICAL - * - * Windows NT: Values -7, -6, -5, -4, -3, 3, 4, 5, and 6 are not supported. - */ - - -int -sched_get_priority_max (int policy) -{ - if (policy < SCHED_MIN || policy > SCHED_MAX) - { - __PTW32_SET_ERRNO(EINVAL); - return -1; - } - -#if (THREAD_PRIORITY_LOWEST > THREAD_PRIORITY_NORMAL) - /* WinCE? */ - return __PTW32_MAX (THREAD_PRIORITY_IDLE, THREAD_PRIORITY_TIME_CRITICAL); -#else - /* This is independent of scheduling policy in Win32. */ - return __PTW32_MAX (THREAD_PRIORITY_IDLE, THREAD_PRIORITY_TIME_CRITICAL); -#endif -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sched_get_priority_min.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sched_get_priority_min.c deleted file mode 100644 index 24eb5af..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sched_get_priority_min.c +++ /dev/null @@ -1,137 +0,0 @@ -/* - * sched_get_priority_min.c - * - * Description: - * POSIX thread functions that deal with thread scheduling. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" -#include "sched.h" - -/* - * On Windows98, THREAD_PRIORITY_LOWEST is (-2) and - * THREAD_PRIORITY_HIGHEST is 2, and everything works just fine. - * - * On WinCE 3.0, it so happen that THREAD_PRIORITY_LOWEST is 5 - * and THREAD_PRIORITY_HIGHEST is 1 (yes, I know, it is funny: - * highest priority use smaller numbers) and the following happens: - * - * sched_get_priority_min() returns 5 - * sched_get_priority_max() returns 1 - * - * The following table shows the base priority levels for combinations - * of priority class and priority value in Win32. - * - * Process Priority Class Thread Priority Level - * ----------------------------------------------------------------- - * 1 IDLE_PRIORITY_CLASS THREAD_PRIORITY_IDLE - * 1 BELOW_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_IDLE - * 1 NORMAL_PRIORITY_CLASS THREAD_PRIORITY_IDLE - * 1 ABOVE_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_IDLE - * 1 HIGH_PRIORITY_CLASS THREAD_PRIORITY_IDLE - * 2 IDLE_PRIORITY_CLASS THREAD_PRIORITY_LOWEST - * 3 IDLE_PRIORITY_CLASS THREAD_PRIORITY_BELOW_NORMAL - * 4 IDLE_PRIORITY_CLASS THREAD_PRIORITY_NORMAL - * 4 BELOW_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_LOWEST - * 5 IDLE_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL - * 5 BELOW_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_BELOW_NORMAL - * 5 Background NORMAL_PRIORITY_CLASS THREAD_PRIORITY_LOWEST - * 6 IDLE_PRIORITY_CLASS THREAD_PRIORITY_HIGHEST - * 6 BELOW_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_NORMAL - * 6 Background NORMAL_PRIORITY_CLASS THREAD_PRIORITY_BELOW_NORMAL - * 7 BELOW_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL - * 7 Background NORMAL_PRIORITY_CLASS THREAD_PRIORITY_NORMAL - * 7 Foreground NORMAL_PRIORITY_CLASS THREAD_PRIORITY_LOWEST - * 8 BELOW_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_HIGHEST - * 8 NORMAL_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL - * 8 Foreground NORMAL_PRIORITY_CLASS THREAD_PRIORITY_BELOW_NORMAL - * 8 ABOVE_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_LOWEST - * 9 NORMAL_PRIORITY_CLASS THREAD_PRIORITY_HIGHEST - * 9 Foreground NORMAL_PRIORITY_CLASS THREAD_PRIORITY_NORMAL - * 9 ABOVE_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_BELOW_NORMAL - * 10 Foreground NORMAL_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL - * 10 ABOVE_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_NORMAL - * 11 Foreground NORMAL_PRIORITY_CLASS THREAD_PRIORITY_HIGHEST - * 11 ABOVE_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL - * 11 HIGH_PRIORITY_CLASS THREAD_PRIORITY_LOWEST - * 12 ABOVE_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_HIGHEST - * 12 HIGH_PRIORITY_CLASS THREAD_PRIORITY_BELOW_NORMAL - * 13 HIGH_PRIORITY_CLASS THREAD_PRIORITY_NORMAL - * 14 HIGH_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL - * 15 HIGH_PRIORITY_CLASS THREAD_PRIORITY_HIGHEST - * 15 HIGH_PRIORITY_CLASS THREAD_PRIORITY_TIME_CRITICAL - * 15 IDLE_PRIORITY_CLASS THREAD_PRIORITY_TIME_CRITICAL - * 15 BELOW_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_TIME_CRITICAL - * 15 NORMAL_PRIORITY_CLASS THREAD_PRIORITY_TIME_CRITICAL - * 15 ABOVE_NORMAL_PRIORITY_CLASS THREAD_PRIORITY_TIME_CRITICAL - * 16 REALTIME_PRIORITY_CLASS THREAD_PRIORITY_IDLE - * 17 REALTIME_PRIORITY_CLASS -7 - * 18 REALTIME_PRIORITY_CLASS -6 - * 19 REALTIME_PRIORITY_CLASS -5 - * 20 REALTIME_PRIORITY_CLASS -4 - * 21 REALTIME_PRIORITY_CLASS -3 - * 22 REALTIME_PRIORITY_CLASS THREAD_PRIORITY_LOWEST - * 23 REALTIME_PRIORITY_CLASS THREAD_PRIORITY_BELOW_NORMAL - * 24 REALTIME_PRIORITY_CLASS THREAD_PRIORITY_NORMAL - * 25 REALTIME_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL - * 26 REALTIME_PRIORITY_CLASS THREAD_PRIORITY_HIGHEST - * 27 REALTIME_PRIORITY_CLASS 3 - * 28 REALTIME_PRIORITY_CLASS 4 - * 29 REALTIME_PRIORITY_CLASS 5 - * 30 REALTIME_PRIORITY_CLASS 6 - * 31 REALTIME_PRIORITY_CLASS THREAD_PRIORITY_TIME_CRITICAL - * - * Windows NT: Values -7, -6, -5, -4, -3, 3, 4, 5, and 6 are not supported. - * - */ - - -int -sched_get_priority_min (int policy) -{ - if (policy < SCHED_MIN || policy > SCHED_MAX) - { - __PTW32_SET_ERRNO(EINVAL); - return -1; - } - -#if (THREAD_PRIORITY_LOWEST > THREAD_PRIORITY_NORMAL) - /* WinCE? */ - return __PTW32_MIN (THREAD_PRIORITY_IDLE, THREAD_PRIORITY_TIME_CRITICAL); -#else - /* This is independent of scheduling policy in Win32. */ - return __PTW32_MIN (THREAD_PRIORITY_IDLE, THREAD_PRIORITY_TIME_CRITICAL); -#endif -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sched_getscheduler.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sched_getscheduler.c deleted file mode 100644 index 28995d9..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sched_getscheduler.c +++ /dev/null @@ -1,71 +0,0 @@ -/* - * sched_getscheduler.c - * - * Description: - * POSIX thread functions that deal with thread scheduling. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" -#include "sched.h" - -int -sched_getscheduler (pid_t pid) -{ - /* - * Win32 only has one policy which we call SCHED_OTHER. - * However, we try to provide other valid side-effects - * such as EPERM and ESRCH errors. - */ - if (0 != pid) - { - int selfPid = (int) GetCurrentProcessId (); - - if (pid != selfPid) - { - HANDLE h = - OpenProcess (PROCESS_QUERY_INFORMATION, __PTW32_FALSE, (DWORD) pid); - - if (NULL == h) - { - __PTW32_SET_ERRNO(((0xFF & ERROR_ACCESS_DENIED) == GetLastError()) ? EPERM : ESRCH); - return -1; - } - else - CloseHandle(h); - } - } - - return SCHED_OTHER; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sched_setaffinity.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sched_setaffinity.c deleted file mode 100644 index 39c4c0e..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sched_setaffinity.c +++ /dev/null @@ -1,349 +0,0 @@ -/* - * sched_setaffinity.c - * - * Description: - * POSIX scheduling functions that deal with CPU affinity. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" -#include "sched.h" - -int -sched_setaffinity (pid_t pid, size_t cpusetsize, cpu_set_t *set) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Sets the CPU affinity mask of the process whose ID is pid - * to the value specified by mask. If pid is zero, then the - * calling process is used. The argument cpusetsize is the - * length (in bytes) of the data pointed to by mask. Normally - * this argument would be specified as sizeof(cpu_set_t). - * - * If the process specified by pid is not currently running on - * one of the CPUs specified in mask, then that process is - * migrated to one of the CPUs specified in mask. - * - * PARAMETERS - * pid - * Process ID - * - * cpusetsize - * Currently ignored in pthreads4w. - * Usually set to sizeof(cpu_set_t) - * - * mask - * Pointer to the CPU mask to set (cpu_set_t). - * - * DESCRIPTION - * Sets the CPU affinity mask of the process whose ID is pid - * to the value specified by mask. If pid is zero, then the - * calling process is used. The argument cpusetsize is the - * length (in bytes) of the data pointed to by mask. Normally - * this argument would be specified as sizeof(cpu_set_t). - * - * If the process specified by pid is not currently running on - * one of the CPUs specified in mask, then that process is - * migrated to one of the CPUs specified in mask. - * - * RESULTS - * 0 successfully created semaphore, - * EFAULT 'mask' is a NULL pointer. - * EINVAL '*mask' contains no CPUs in the set - * of available CPUs. - * EAGAIN The system available CPUs could not - * be obtained. - * EPERM The process referred to by 'pid' is - * not modifiable by us. - * ESRCH The process referred to by 'pid' was - * not found. - * ENOSYS Function not supported. - * - * ------------------------------------------------------ - */ -{ -#if ! defined(NEED_PROCESS_AFFINITY_MASK) - - DWORD_PTR vProcessMask; - DWORD_PTR vSystemMask; - HANDLE h; - int targetPid = (int)(size_t) pid; - int result = 0; - - if (NULL == set) - { - result = EFAULT; - } - else - { - if (0 == targetPid) - { - targetPid = (int) GetCurrentProcessId (); - } - - h = OpenProcess (PROCESS_QUERY_INFORMATION|PROCESS_SET_INFORMATION, __PTW32_FALSE, (DWORD) targetPid); - - if (NULL == h) - { - result = (((0xFF & ERROR_ACCESS_DENIED) == GetLastError()) ? EPERM : ESRCH); - } - else - { - if (GetProcessAffinityMask (h, &vProcessMask, &vSystemMask)) - { - /* - * Result is the intersection of available CPUs and the mask. - */ - DWORD_PTR newMask = vSystemMask & ((_sched_cpu_set_vector_*)set)->_cpuset; - - if (newMask) - { - if (SetProcessAffinityMask(h, newMask) == 0) - { - switch (GetLastError()) - { - case (0xFF & ERROR_ACCESS_DENIED): - result = EPERM; - break; - case (0xFF & ERROR_INVALID_PARAMETER): - result = EINVAL; - break; - default: - result = EAGAIN; - break; - } - } - } - else - { - /* - * Mask does not contain any CPUs currently available on the system. - */ - result = EINVAL; - } - } - else - { - result = EAGAIN; - } - } - CloseHandle(h); - } - - if (result != 0) - { - __PTW32_SET_ERRNO(result); - return -1; - } - else - { - return 0; - } - -#else - - __PTW32_SET_ERRNO(ENOSYS); - return -1; - -#endif -} - - -int -sched_getaffinity (pid_t pid, size_t cpusetsize, cpu_set_t *set) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * Gets the CPU affinity mask of the process whose ID is pid - * to the value specified by mask. If pid is zero, then the - * calling process is used. The argument cpusetsize is the - * length (in bytes) of the data pointed to by mask. Normally - * this argument would be specified as sizeof(cpu_set_t). - * - * PARAMETERS - * pid - * Process ID - * - * cpusetsize - * Currently ignored in pthreads4w. - * Usually set to sizeof(cpu_set_t) - * - * mask - * Pointer to the CPU mask to set (cpu_set_t). - * - * DESCRIPTION - * Sets the CPU affinity mask of the process whose ID is pid - * to the value specified by mask. If pid is zero, then the - * calling process is used. The argument cpusetsize is the - * length (in bytes) of the data pointed to by mask. Normally - * this argument would be specified as sizeof(cpu_set_t). - * - * RESULTS - * 0 successfully created semaphore, - * EFAULT 'mask' is a NULL pointer. - * EAGAIN The system available CPUs could not - * be obtained. - * EPERM The process referred to by 'pid' is - * not modifiable by us. - * ESRCH The process referred to by 'pid' was - * not found. - * - * ------------------------------------------------------ - */ -{ - DWORD_PTR vProcessMask; - DWORD_PTR vSystemMask; - HANDLE h; - int targetPid = (int)(size_t) pid; - int result = 0; - - if (NULL == set) - { - result = EFAULT; - } - else - { - -#if ! defined(NEED_PROCESS_AFFINITY_MASK) - - if (0 == targetPid) - { - targetPid = (int) GetCurrentProcessId (); - } - - h = OpenProcess (PROCESS_QUERY_INFORMATION, __PTW32_FALSE, (DWORD) targetPid); - - if (NULL == h) - { - result = (((0xFF & ERROR_ACCESS_DENIED) == GetLastError()) ? EPERM : ESRCH); - } - else - { - if (GetProcessAffinityMask (h, &vProcessMask, &vSystemMask)) - { - ((_sched_cpu_set_vector_*)set)->_cpuset = vProcessMask; - } - else - { - result = EAGAIN; - } - } - CloseHandle(h); - -#else - ((_sched_cpu_set_vector_*)set)->_cpuset = (size_t)0x1; -#endif - - } - - if (result != 0) - { - __PTW32_SET_ERRNO(result); - return -1; - } - else - { - return 0; - } -} - -/* - * Support routines for cpu_set_t - */ -int _sched_affinitycpucount (const cpu_set_t *set) -{ - size_t tset; - int count; - - /* - * Relies on tset being unsigned, otherwise the right-shift will - * be arithmetic rather than logical and the 'for' will loop forever. - */ - for (count = 0, tset = ((_sched_cpu_set_vector_*)set)->_cpuset; tset; tset >>= 1) - { - if (tset & (size_t)1) - { - count++; - } - } - return count; -} - -void _sched_affinitycpuzero (cpu_set_t *pset) -{ - ((_sched_cpu_set_vector_*)pset)->_cpuset = (size_t)0; -} - -void _sched_affinitycpuset (int cpu, cpu_set_t *pset) -{ - ((_sched_cpu_set_vector_*)pset)->_cpuset |= ((size_t)1 << cpu); -} - -void _sched_affinitycpuclr (int cpu, cpu_set_t *pset) -{ - ((_sched_cpu_set_vector_*)pset)->_cpuset &= ~((size_t)1 << cpu); -} - -int _sched_affinitycpuisset (int cpu, const cpu_set_t *pset) -{ - return ((((_sched_cpu_set_vector_*)pset)->_cpuset & - ((size_t)1 << cpu)) != (size_t)0); -} - -void _sched_affinitycpuand(cpu_set_t *pdestset, const cpu_set_t *psrcset1, const cpu_set_t *psrcset2) -{ - ((_sched_cpu_set_vector_*)pdestset)->_cpuset = - (((_sched_cpu_set_vector_*)psrcset1)->_cpuset & - ((_sched_cpu_set_vector_*)psrcset2)->_cpuset); -} - -void _sched_affinitycpuor(cpu_set_t *pdestset, const cpu_set_t *psrcset1, const cpu_set_t *psrcset2) -{ - ((_sched_cpu_set_vector_*)pdestset)->_cpuset = - (((_sched_cpu_set_vector_*)psrcset1)->_cpuset | - ((_sched_cpu_set_vector_*)psrcset2)->_cpuset); -} - -void _sched_affinitycpuxor(cpu_set_t *pdestset, const cpu_set_t *psrcset1, const cpu_set_t *psrcset2) -{ - ((_sched_cpu_set_vector_*)pdestset)->_cpuset = - (((_sched_cpu_set_vector_*)psrcset1)->_cpuset ^ - ((_sched_cpu_set_vector_*)psrcset2)->_cpuset); -} - -int _sched_affinitycpuequal (const cpu_set_t *pset1, const cpu_set_t *pset2) -{ - return (((_sched_cpu_set_vector_*)pset1)->_cpuset == - ((_sched_cpu_set_vector_*)pset2)->_cpuset); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sched_setscheduler.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sched_setscheduler.c deleted file mode 100644 index 8d9cf72..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sched_setscheduler.c +++ /dev/null @@ -1,83 +0,0 @@ -/* - * sched_setscheduler.c - * - * Description: - * POSIX thread functions that deal with thread scheduling. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" -#include "sched.h" - -int -sched_setscheduler (pid_t pid, int policy) -{ - /* - * Win32 only has one policy which we call SCHED_OTHER. - * However, we try to provide other valid side-effects - * such as EPERM and ESRCH errors. Choosing to check - * for a valid policy last allows us to get the most value out - * of this function. - */ - if (0 != pid) - { - int selfPid = (int) GetCurrentProcessId (); - - if (pid != selfPid) - { - HANDLE h = - OpenProcess (PROCESS_SET_INFORMATION, __PTW32_FALSE, (DWORD) pid); - - if (NULL == h) - { - __PTW32_SET_ERRNO((GetLastError () == (0xFF & ERROR_ACCESS_DENIED)) ? EPERM : ESRCH); - return -1; - } - else - CloseHandle(h); - } - } - - if (SCHED_OTHER != policy) - { - __PTW32_SET_ERRNO(ENOSYS); - return -1; - } - - /* - * Don't set anything because there is nothing to set. - * Just return the current (the only possible) value. - */ - return SCHED_OTHER; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sched_yield.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sched_yield.c deleted file mode 100644 index dd42272..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sched_yield.c +++ /dev/null @@ -1,73 +0,0 @@ -/* - * sched_yield.c - * - * Description: - * POSIX thread functions that deal with thread scheduling. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" -#include "sched.h" - -int -sched_yield (void) - /* - * ------------------------------------------------------ - * DOCPUBLIC - * This function indicates that the calling thread is - * willing to give up some time slices to other threads. - * - * PARAMETERS - * N/A - * - * - * DESCRIPTION - * This function indicates that the calling thread is - * willing to give up some time slices to other threads. - * NOTE: Since this is part of POSIX 1003.1b - * (realtime extensions), it is defined as returning - * -1 if an error occurs and sets errno to the actual - * error. - * - * RESULTS - * 0 successfully created semaphore, - * ENOSYS sched_yield not supported, - * - * ------------------------------------------------------ - */ -{ - Sleep (0); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_close.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_close.c deleted file mode 100644 index eef4c67..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_close.c +++ /dev/null @@ -1,60 +0,0 @@ -/* - * ------------------------------------------------------------- - * - * Module: sem_close.c - * - * Purpose: - * Semaphores aren't actually part of the PThreads standard. - * They are defined by the POSIX Standard: - * - * POSIX 1003.1b-1993 (POSIX.1b) - * - * ------------------------------------------------------------- - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "semaphore.h" -#include "implement.h" - -/* ignore warning "unreferenced formal parameter" */ -#if defined(_MSC_VER) -#pragma warning( disable : 4100 ) -#endif - -int -sem_close (sem_t * sem) -{ - __PTW32_SET_ERRNO(ENOSYS); - return -1; -} /* sem_close */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_destroy.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_destroy.c deleted file mode 100644 index 471741b..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_destroy.c +++ /dev/null @@ -1,121 +0,0 @@ -/* - * ------------------------------------------------------------- - * - * Module: sem_destroy.c - * - * Purpose: - * Semaphores aren't actually part of the PThreads standard. - * They are defined by the POSIX Standard: - * - * POSIX 1003.1b-1993 (POSIX.1b) - * - * ------------------------------------------------------------- - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "semaphore.h" -#include "implement.h" - - -int -sem_destroy (sem_t * sem) -/* - * ------------------------------------------------------ - * DOCPUBLIC - * This function destroys an unnamed semaphore. - * - * PARAMETERS - * sem - * pointer to an instance of sem_t - * - * DESCRIPTION - * This function destroys an unnamed semaphore. - * - * RESULTS - * 0 successfully destroyed semaphore, - * -1 failed, error in errno - * ERRNO - * EINVAL 'sem' is not a valid semaphore, - * ENOSYS semaphores are not supported, - * EBUSY threads (or processes) are currently - * blocked on 'sem' - * - * ------------------------------------------------------ - */ -{ - int result = 0; - sem_t s = NULL; - - if (sem == NULL || *sem == NULL) - { - result = EINVAL; - } - else - { - __ptw32_mcs_local_node_t node; - s = *sem; - - if ((result = __ptw32_mcs_lock_try_acquire(&s->lock, &node)) == 0) - { - if (s->value < 0) - { - result = EBUSY; - } - else - { - /* - * There are no threads currently blocked on this semaphore - * however there could be threads about to wait behind us. - * It is up to the application to ensure this is not the case. - */ - if (!CloseHandle (s->sem)) - { - result = EINVAL; - } - } - __ptw32_mcs_lock_release(&node); - } - } - - if (result != 0) - { - __PTW32_SET_ERRNO(result); - return -1; - } - - free (s); - - return 0; - -} /* sem_destroy */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_getvalue.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_getvalue.c deleted file mode 100644 index 2e043db..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_getvalue.c +++ /dev/null @@ -1,98 +0,0 @@ -/* - * ------------------------------------------------------------- - * - * Module: sem_getvalue.c - * - * Purpose: - * Semaphores aren't actually part of PThreads. - * They are defined by the POSIX Standard: - * - * POSIX 1003.1-2001 - * - * ------------------------------------------------------------- - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "semaphore.h" -#include "implement.h" - - -int -sem_getvalue (sem_t * sem, int *sval) -/* - * ------------------------------------------------------ - * DOCPUBLIC - * This function stores the current count value of the - * semaphore. - * RESULTS - * - * Return value - * - * 0 sval has been set. - * -1 failed, error in errno - * - * in global errno - * - * EINVAL 'sem' is not a valid semaphore, - * ENOSYS this function is not supported, - * - * - * PARAMETERS - * - * sem pointer to an instance of sem_t - * - * sval pointer to int. - * - * DESCRIPTION - * This function stores the current count value of the semaphore - * pointed to by sem in the int pointed to by sval. - */ -{ - int result = 0; - - __ptw32_mcs_local_node_t node; - register sem_t s = *sem; - - __ptw32_mcs_lock_acquire(&s->lock, &node); - *sval = s->value; - __ptw32_mcs_lock_release(&node); - - if (result != 0) - { - __PTW32_SET_ERRNO(result); - return -1; - } - - return 0; -} /* sem_getvalue */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_init.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_init.c deleted file mode 100644 index bd9ec30..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_init.c +++ /dev/null @@ -1,161 +0,0 @@ -/* - * ------------------------------------------------------------- - * - * Module: sem_init.c - * - * Purpose: - * Semaphores aren't actually part of PThreads. - * They are defined by the POSIX Standard: - * - * POSIX 1003.1-2001 - * - * ------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "semaphore.h" -#include "implement.h" - -int -sem_init (sem_t * sem, int pshared, unsigned int value) -/* - * ------------------------------------------------------ - * DOCPUBLIC - * This function initializes a semaphore. The - * initial value of the semaphore is 'value' - * - * PARAMETERS - * sem - * pointer to an instance of sem_t - * - * pshared - * if zero, this semaphore may only be shared between - * threads in the same process. - * if nonzero, the semaphore can be shared between - * processes - * - * value - * initial value of the semaphore counter - * - * DESCRIPTION - * This function initializes a semaphore. The - * initial value of the semaphore is set to 'value'. - * - * RESULTS - * 0 successfully created semaphore, - * -1 failed, error in errno - * ERRNO - * EINVAL 'sem' is not a valid semaphore, or - * 'value' >= SEM_VALUE_MAX - * ENOMEM out of memory, - * ENOSPC a required resource has been exhausted, - * ENOSYS semaphores are not supported, - * EPERM the process lacks appropriate privilege - * - * ------------------------------------------------------ - */ -{ - int result = 0; - sem_t s = NULL; - - if (pshared != 0) - { - /* - * Creating a semaphore that can be shared between - * processes - */ - result = EPERM; - } - else if (value > (unsigned int)SEM_VALUE_MAX) - { - result = EINVAL; - } - else - { - s = (sem_t) calloc (1, sizeof (*s)); - - if (NULL == s) - { - result = ENOMEM; - } - else - { - - s->value = value; - s->lock = NULL; - -#if defined(NEED_SEM) - - s->sem = CreateEvent (NULL, - __PTW32_FALSE, /* auto (not manual) reset */ - __PTW32_FALSE, /* initial state is unset */ - NULL); - - if (0 == s->sem) - { - result = ENOSPC; - } - else - { - s->leftToUnblock = 0; - } - -#else /* NEED_SEM */ - - if ((s->sem = CreateSemaphore (NULL, /* Always NULL */ - (long) 0, /* Force threads to wait */ - (long) SEM_VALUE_MAX, /* Maximum value */ - NULL)) == 0) /* Name */ - { - result = ENOSPC; - } - -#endif /* NEED_SEM */ - - if (result != 0) - { - free(s); - } - } - } - - if (result != 0) - { - __PTW32_SET_ERRNO(result); - return -1; - } - - *sem = s; - - return 0; - -} /* sem_init */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_open.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_open.c deleted file mode 100644 index 68021eb..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_open.c +++ /dev/null @@ -1,65 +0,0 @@ -/* - * ------------------------------------------------------------- - * - * Module: sem_open.c - * - * Purpose: - * Semaphores aren't actually part of the PThreads standard. - * They are defined by the POSIX Standard: - * - * POSIX 1003.1b-1993 (POSIX.1b) - * - * ------------------------------------------------------------- - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "semaphore.h" -#include "implement.h" - -/* ignore warning "unreferenced formal parameter" */ -#if defined(_MSC_VER) -#pragma warning( disable : 4100 ) -#endif - -sem_t -*sem_open (const char *name, int oflag, ...) -{ - /* Note: this is a POSIX.1b-1993 conforming stub; POSIX.1-2001 removed - * the requirement to provide this stub, and also removed the validity - * of ENOSYS as a resultant errno state; nevertheless, it makes sense - * to retain the POSIX.1b-1993 conforming behaviour here. - */ - __PTW32_SET_ERRNO(ENOSYS); - return SEM_FAILED; -} /* sem_open */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_post.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_post.c deleted file mode 100644 index 786c5dd..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_post.c +++ /dev/null @@ -1,115 +0,0 @@ -/* - * ------------------------------------------------------------- - * - * Module: sem_post.c - * - * Purpose: - * Semaphores aren't actually part of the PThreads standard. - * They are defined by the POSIX Standard: - * - * POSIX 1003.1b-1993 (POSIX.1b) - * - * ------------------------------------------------------------- - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "semaphore.h" -#include "implement.h" - - -int -sem_post (sem_t * sem) -/* - * ------------------------------------------------------ - * DOCPUBLIC - * This function posts a wakeup to a semaphore. - * - * PARAMETERS - * sem - * pointer to an instance of sem_t - * - * DESCRIPTION - * This function posts a wakeup to a semaphore. If there - * are waiting threads (or processes), one is awakened; - * otherwise, the semaphore value is incremented by one. - * - * RESULTS - * 0 successfully posted semaphore, - * -1 failed, error in errno - * ERRNO - * EINVAL 'sem' is not a valid semaphore, - * ENOSYS semaphores are not supported, - * ERANGE semaphore count is too big - * - * ------------------------------------------------------ - */ -{ - int result = 0; - - __ptw32_mcs_local_node_t node; - sem_t s = *sem; - - __ptw32_mcs_lock_acquire(&s->lock, &node); - if (s->value < SEM_VALUE_MAX) - { -#if defined(NEED_SEM) - if (++s->value <= 0 - && !SetEvent(s->sem)) - { - s->value--; - result = EINVAL; - } -#else - if (++s->value <= 0 - && !ReleaseSemaphore (s->sem, 1, NULL)) - { - s->value--; - result = EINVAL; - } -#endif /* NEED_SEM */ - } - else - { - result = ERANGE; - } - __ptw32_mcs_lock_release(&node); - - if (result != 0) - { - __PTW32_SET_ERRNO(result); - return -1; - } - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_post_multiple.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_post_multiple.c deleted file mode 100644 index a7a78df..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_post_multiple.c +++ /dev/null @@ -1,130 +0,0 @@ -/* - * ------------------------------------------------------------- - * - * Module: sem_post_multiple.c - * - * Purpose: - * Semaphores aren't actually part of the PThreads standard. - * They are defined by the POSIX Standard: - * - * POSIX 1003.1b-1993 (POSIX.1b) - * - * ------------------------------------------------------------- - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "semaphore.h" -#include "implement.h" - - -int -sem_post_multiple (sem_t * sem, int count) -/* - * ------------------------------------------------------ - * DOCPUBLIC - * This function posts multiple wakeups to a semaphore. - * - * PARAMETERS - * sem - * pointer to an instance of sem_t - * - * count - * counter, must be greater than zero. - * - * DESCRIPTION - * This function posts multiple wakeups to a semaphore. If there - * are waiting threads (or processes), n <= count are awakened; - * the semaphore value is incremented by count - n. - * - * RESULTS - * 0 successfully posted semaphore, - * -1 failed, error in errno - * ERRNO - * EINVAL 'sem' is not a valid semaphore - * or count is less than or equal to zero. - * ERANGE semaphore count is too big - * - * ------------------------------------------------------ - */ -{ - __ptw32_mcs_local_node_t node; - int result = 0; - long waiters; - sem_t s = *sem; - - __ptw32_mcs_lock_acquire(&s->lock, &node); - - if (s->value <= (SEM_VALUE_MAX - count)) - { - waiters = -s->value; - s->value += count; - if (waiters > 0) - { -#if defined(NEED_SEM) - if (SetEvent(s->sem)) - { - waiters--; - s->leftToUnblock += count - 1; - if (s->leftToUnblock > waiters) - { - s->leftToUnblock = waiters; - } - } -#else - if (ReleaseSemaphore (s->sem, (waiters<=count)?waiters:count, 0)) - { - /* No action */ - } -#endif - else - { - s->value -= count; - result = EINVAL; - } - } - } - else - { - result = ERANGE; - } - __ptw32_mcs_lock_release(&node); - - if (result != 0) - { - __PTW32_SET_ERRNO(result); - return -1; - } - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_timedwait.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_timedwait.c deleted file mode 100644 index 5b22e86..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_timedwait.c +++ /dev/null @@ -1,213 +0,0 @@ -/* - * ------------------------------------------------------------- - * - * Module: sem_timedwait.c - * - * Purpose: - * Semaphores aren't actually part of the PThreads standard. - * They are defined by the POSIX Standard: - * - * POSIX 1003.1b-1993 (POSIX.1b) - * - * ------------------------------------------------------------- - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "semaphore.h" -#include "implement.h" - - -typedef struct { - sem_t sem; - int * resultPtr; -} sem_timedwait_cleanup_args_t; - - -static void __PTW32_CDECL -__ptw32_sem_timedwait_cleanup (void * args) -{ - __ptw32_mcs_local_node_t node; - sem_timedwait_cleanup_args_t * a = (sem_timedwait_cleanup_args_t *)args; - sem_t s = a->sem; - - __ptw32_mcs_lock_acquire(&s->lock, &node); - /* - * We either timed out or were cancelled. - * If someone has posted between then and now we try to take the semaphore. - * Otherwise the semaphore count may be wrong after we - * return. In the case of a cancellation, it is as if we - * were cancelled just before we return (after taking the semaphore) - * which is ok. - */ - if (WaitForSingleObject(s->sem, 0) == WAIT_OBJECT_0) - { - /* We got the semaphore on the second attempt */ - *(a->resultPtr) = 0; - } - else - { - /* Indicate we're no longer waiting */ - s->value++; -#if defined(NEED_SEM) - if (s->value > 0) - { - s->leftToUnblock = 0; - } -#else - /* - * Don't release the W32 sema, it doesn't need adjustment - * because it doesn't record the number of waiters. - */ -#endif - } - __ptw32_mcs_lock_release(&node); -} - - -int -sem_timedwait (sem_t * sem, const struct timespec *abstime) -/* - * ------------------------------------------------------ - * DOCPUBLIC - * This function waits on a semaphore possibly until - * 'abstime' time. - * - * PARAMETERS - * sem - * pointer to an instance of sem_t - * - * abstime - * pointer to an instance of struct timespec - * - * DESCRIPTION - * This function waits on a semaphore. If the - * semaphore value is greater than zero, it decreases - * its value by one. If the semaphore value is zero, then - * the calling thread (or process) is blocked until it can - * successfully decrease the value or until interrupted by - * a signal. - * - * If 'abstime' is a NULL pointer then this function will - * block until it can successfully decrease the value or - * until interrupted by a signal. - * - * RESULTS - * 0 successfully decreased semaphore, - * -1 failed, error in errno - * ERRNO - * EINVAL 'sem' is not a valid semaphore, - * ENOSYS semaphores are not supported, - * EINTR the function was interrupted by a signal, - * EDEADLK a deadlock condition was detected. - * ETIMEDOUT abstime elapsed before success. - * - * ------------------------------------------------------ - */ -{ - __ptw32_mcs_local_node_t node; - DWORD milliseconds; - int v; - int result = 0; - sem_t s = *sem; - - pthread_testcancel(); - - if (abstime == NULL) - { - milliseconds = INFINITE; - } - else - { - /* - * Calculate timeout as milliseconds from current system time. - */ - milliseconds = __ptw32_relmillisecs (abstime); - } - - __ptw32_mcs_lock_acquire(&s->lock, &node); - v = --s->value; - __ptw32_mcs_lock_release(&node); - - if (v < 0) - { -#if defined(NEED_SEM) - int timedout; -#endif - sem_timedwait_cleanup_args_t cleanup_args; - - cleanup_args.sem = s; - cleanup_args.resultPtr = &result; - -#if defined (__PTW32_CONFIG_MSVC7) -#pragma inline_depth(0) -#endif - /* Must wait */ - pthread_cleanup_push(__ptw32_sem_timedwait_cleanup, (void *) &cleanup_args); -#if defined(NEED_SEM) - timedout = -#endif - result = pthreadCancelableTimedWait (s->sem, milliseconds); - pthread_cleanup_pop(result); -#if defined (__PTW32_CONFIG_MSVC7) -#pragma inline_depth() -#endif - -#if defined(NEED_SEM) - - if (!timedout) - { - __ptw32_mcs_lock_acquire(&s->lock, &node); - if (s->leftToUnblock > 0) - { - --s->leftToUnblock; - SetEvent(s->sem); - } - __ptw32_mcs_lock_release(&node); - } - -#endif /* NEED_SEM */ - - } - - if (result != 0) - { - - __PTW32_SET_ERRNO(result); - return -1; - - } - - return 0; - -} /* sem_timedwait */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_trywait.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_trywait.c deleted file mode 100644 index a0e1cd1..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_trywait.c +++ /dev/null @@ -1,106 +0,0 @@ -/* - * ------------------------------------------------------------- - * - * Module: sem_trywait.c - * - * Purpose: - * Semaphores aren't actually part of the PThreads standard. - * They are defined by the POSIX Standard: - * - * POSIX 1003.1b-1993 (POSIX.1b) - * - * ------------------------------------------------------------- - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "semaphore.h" -#include "implement.h" - - -int -sem_trywait (sem_t * sem) -/* - * ------------------------------------------------------ - * DOCPUBLIC - * This function tries to wait on a semaphore. - * - * PARAMETERS - * sem - * pointer to an instance of sem_t - * - * DESCRIPTION - * This function tries to wait on a semaphore. If the - * semaphore value is greater than zero, it decreases - * its value by one. If the semaphore value is zero, then - * this function returns immediately with the error EAGAIN - * - * RESULTS - * 0 successfully decreased semaphore, - * -1 failed, error in errno - * ERRNO - * EAGAIN the semaphore was already locked, - * EINVAL 'sem' is not a valid semaphore, - * ENOTSUP sem_trywait is not supported, - * EINTR the function was interrupted by a signal, - * EDEADLK a deadlock condition was detected. - * - * ------------------------------------------------------ - */ -{ - int result = 0; - sem_t s = *sem; - __ptw32_mcs_local_node_t node; - - __ptw32_mcs_lock_acquire(&s->lock, &node); - - if (s->value > 0) - { - s->value--; - } - else - { - result = EAGAIN; - } - - __ptw32_mcs_lock_release(&node); - - if (result != 0) - { - __PTW32_SET_ERRNO(result); - return -1; - } - - return 0; - -} /* sem_trywait */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_unlink.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_unlink.c deleted file mode 100644 index f14fff1..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_unlink.c +++ /dev/null @@ -1,60 +0,0 @@ -/* - * ------------------------------------------------------------- - * - * Module: sem_unlink.c - * - * Purpose: - * Semaphores aren't actually part of the PThreads standard. - * They are defined by the POSIX Standard: - * - * POSIX 1003.1b-1993 (POSIX.1b) - * - * ------------------------------------------------------------- - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "semaphore.h" -#include "implement.h" - -/* ignore warning "unreferenced formal parameter" */ -#if defined(_MSC_VER) -#pragma warning( disable : 4100 ) -#endif - -int -sem_unlink (const char *name) -{ - __PTW32_SET_ERRNO(ENOSYS); - return -1; -} /* sem_unlink */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_wait.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_wait.c deleted file mode 100644 index bceea5a..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/sem_wait.c +++ /dev/null @@ -1,163 +0,0 @@ -/* - * ------------------------------------------------------------- - * - * Module: sem_wait.c - * - * Purpose: - * Semaphores aren't actually part of the PThreads standard. - * They are defined by the POSIX Standard: - * - * POSIX 1003.1b-1993 (POSIX.1b) - * - * ------------------------------------------------------------- - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "semaphore.h" -#include "implement.h" - - -static void __PTW32_CDECL -__ptw32_sem_wait_cleanup(void * sem) -{ - sem_t s = (sem_t) sem; - __ptw32_mcs_local_node_t node; - - __ptw32_mcs_lock_acquire(&s->lock, &node); - /* - * If sema is destroyed do nothing, otherwise:- - * If the sema is posted between us being canceled and us locking - * the sema again above then we need to consume that post but cancel - * anyway. If we don't get the semaphore we indicate that we're no - * longer waiting. - */ - if (*((sem_t *)sem) != NULL && !(WaitForSingleObject(s->sem, 0) == WAIT_OBJECT_0)) - { - ++s->value; -#if defined(NEED_SEM) - if (s->value > 0) - { - s->leftToUnblock = 0; - } -#else - /* - * Don't release the W32 sema, it doesn't need adjustment - * because it doesn't record the number of waiters. - */ -#endif /* NEED_SEM */ - } - __ptw32_mcs_lock_release(&node); -} - -int -sem_wait (sem_t * sem) -/* - * ------------------------------------------------------ - * DOCPUBLIC - * This function waits on a semaphore. - * - * PARAMETERS - * sem - * pointer to an instance of sem_t - * - * DESCRIPTION - * This function waits on a semaphore. If the - * semaphore value is greater than zero, it decreases - * its value by one. If the semaphore value is zero, then - * the calling thread (or process) is blocked until it can - * successfully decrease the value or until interrupted by - * a signal. - * - * RESULTS - * 0 successfully decreased semaphore, - * -1 failed, error in errno - * ERRNO - * EINVAL 'sem' is not a valid semaphore, - * ENOSYS semaphores are not supported, - * EINTR the function was interrupted by a signal, - * EDEADLK a deadlock condition was detected. - * - * ------------------------------------------------------ - */ -{ - __ptw32_mcs_local_node_t node; - int v; - int result = 0; - sem_t s = *sem; - - pthread_testcancel(); - - __ptw32_mcs_lock_acquire(&s->lock, &node); - v = --s->value; - __ptw32_mcs_lock_release(&node); - - if (v < 0) - { -#if defined (__PTW32_CONFIG_MSVC7) -#pragma inline_depth(0) -#endif - /* Must wait */ - pthread_cleanup_push(__ptw32_sem_wait_cleanup, (void *) s); - result = pthreadCancelableWait (s->sem); - /* Cleanup if we're canceled or on any other error */ - pthread_cleanup_pop(result); -#if defined (__PTW32_CONFIG_MSVC7) -#pragma inline_depth() -#endif - } -#if defined(NEED_SEM) - - if (!result) - { - __ptw32_mcs_lock_acquire(&s->lock, &node); - - if (s->leftToUnblock > 0) - { - --s->leftToUnblock; - SetEvent(s->sem); - } - __ptw32_mcs_lock_release(&node); - } - -#endif /* NEED_SEM */ - - if (result != 0) - { - __PTW32_SET_ERRNO(result); - return -1; - } - - return 0; - -} /* sem_wait */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/semaphore.h b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/semaphore.h deleted file mode 100644 index f3eaa18..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/semaphore.h +++ /dev/null @@ -1,116 +0,0 @@ -/* - * Module: semaphore.h - * - * Purpose: - * Semaphores aren't actually part of the PThreads standard. - * They are defined by the POSIX Standard: - * - * POSIX 1003.1b-1993 (POSIX.1b) - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -#if !defined( SEMAPHORE_H ) -#define SEMAPHORE_H - -/* FIXME: POSIX.1 says that _POSIX_SEMAPHORES should be defined - * in , not here; for later POSIX.1 versions, its value - * should match the corresponding _POSIX_VERSION number, but in - * the case of POSIX.1b-1993, the value is unspecified. - * - * Notwithstanding the above, since POSIX semaphores, (and indeed - * having any to #include), are not a standard feature - * on MS-Windows, it is convenient to retain this definition here; - * we may consider adding a hook, to make it selectively available - * for inclusion by , in those cases (e.g. MinGW) where - * is provided. - */ -#define _POSIX_SEMAPHORES - -/* Internal macros, common to the public interfaces for various - * pthreads-win32 components, are defined in <_ptw32.h>; we must - * include them here. - */ -#include <_ptw32.h> - -/* The sem_timedwait() function was added in POSIX.1-2001; it - * requires struct timespec to be defined, at least as a partial - * (a.k.a. incomplete) data type. Forward declare it as such, - * then include selectively, to acquire a complete - * definition, (if available). - */ -struct timespec; -#define __need_struct_timespec -#include - -/* The data type used to represent our semaphore implementation, - * as required by POSIX.1; FIXME: consider renaming the underlying - * structure tag, to avoid possible pollution of user namespace. - */ -typedef struct sem_t_ * sem_t; - -/* POSIX.1b (and later) mandates SEM_FAILED as the value to be - * returned on failure of sem_open(); (our implementation is a - * stub, which will always return this). - */ -#define SEM_FAILED (sem_t *)(-1) - -__PTW32_BEGIN_C_DECLS - -/* Function prototypes: some are implemented as stubs, which - * always fail; (FIXME: identify them). - */ -__PTW32_DLLPORT int __PTW32_CDECL sem_init (sem_t * sem, - int pshared, - unsigned int value); - -__PTW32_DLLPORT int __PTW32_CDECL sem_destroy (sem_t * sem); - -__PTW32_DLLPORT int __PTW32_CDECL sem_trywait (sem_t * sem); - -__PTW32_DLLPORT int __PTW32_CDECL sem_wait (sem_t * sem); - -__PTW32_DLLPORT int __PTW32_CDECL sem_timedwait (sem_t * sem, - const struct timespec * abstime); - -__PTW32_DLLPORT int __PTW32_CDECL sem_post (sem_t * sem); - -__PTW32_DLLPORT int __PTW32_CDECL sem_post_multiple (sem_t * sem, - int count); - -__PTW32_DLLPORT sem_t * __PTW32_CDECL sem_open (const char *, int, ...); - -__PTW32_DLLPORT int __PTW32_CDECL sem_close (sem_t * sem); - -__PTW32_DLLPORT int __PTW32_CDECL sem_unlink (const char * name); - -__PTW32_DLLPORT int __PTW32_CDECL sem_getvalue (sem_t * sem, - int * sval); - -__PTW32_END_C_DECLS - -#endif /* !SEMAPHORE_H */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/signal.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/signal.c deleted file mode 100644 index 86b6947..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/signal.c +++ /dev/null @@ -1,181 +0,0 @@ -/* - * signal.c - * - * Description: - * Thread-aware signal functions. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/* - * Possible future strategy for implementing pthread_kill() - * ======================================================== - * - * Win32 does not implement signals. - * Signals are simply software interrupts. - * pthread_kill() asks the system to deliver a specified - * signal (interrupt) to a specified thread in the same - * process. - * Signals are always asynchronous (no deferred signals). - * Pthread-win32 has an async cancellation mechanism. - * A similar system can be written to deliver signals - * within the same process (on ix86 processors at least). - * - * Each thread maintains information about which - * signals it will respond to. Handler routines - * are set on a per-process basis - not per-thread. - * When signalled, a thread will check it's sigmask - * and, if the signal is not being ignored, call the - * handler routine associated with the signal. The - * thread must then (except for some signals) return to - * the point where it was interrupted. - * - * Ideally the system itself would check the target thread's - * mask before possibly needlessly bothering the thread - * itself. This could be done by pthread_kill(), that is, - * in the signaling thread since it has access to - * all pthread_t structures. It could also retrieve - * the handler routine address to minimise the target - * threads response overhead. This may also simplify - * serialisation of the access to the per-thread signal - * structures. - * - * pthread_kill() eventually calls a routine similar to - * __ptw32_cancel_thread() which manipulates the target - * threads processor context to cause the thread to - * run the handler launcher routine. pthread_kill() must - * save the target threads current context so that the - * handler launcher routine can restore the context after - * the signal handler has returned. Some handlers will not - * return, eg. the default SIGKILL handler may simply - * call pthread_exit(). - * - * The current context is saved in the target threads - * pthread_t structure. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - -#if defined(HAVE_SIGSET_T) - -static void -__ptw32_signal_thread () -{ -} - -static void -__ptw32_signal_callhandler () -{ -} - -int -pthread_sigmask (int how, sigset_t const *set, sigset_t * oset) -{ - pthread_t thread = pthread_self (); - - if (thread.p == NULL) - { - return ENOENT; - } - - /* Validate the `how' argument. */ - if (set != NULL) - { - switch (how) - { - case SIG_BLOCK: - break; - case SIG_UNBLOCK: - break; - case SIG_SETMASK: - break; - default: - /* Invalid `how' argument. */ - return EINVAL; - } - } - - /* Copy the old mask before modifying it. */ - if (oset != NULL) - { - memcpy (oset, &(thread.p->sigmask), sizeof (sigset_t)); - } - - if (set != NULL) - { - unsigned int i; - - /* FIXME: this code assumes that sigmask is an even multiple of - the size of a long integer. */ - - unsigned long *src = (unsigned long const *) set; - unsigned long *dest = (unsigned long *) &(thread.p->sigmask); - - switch (how) - { - case SIG_BLOCK: - for (i = 0; i < (sizeof (sigset_t) / sizeof (unsigned long)); i++) - { - /* OR the bit field longword-wise. */ - *dest++ |= *src++; - } - break; - case SIG_UNBLOCK: - for (i = 0; i < (sizeof (sigset_t) / sizeof (unsigned long)); i++) - { - /* XOR the bitfield longword-wise. */ - *dest++ ^= *src++; - } - case SIG_SETMASK: - /* Replace the whole sigmask. */ - memcpy (&(thread.p->sigmask), set, sizeof (sigset_t)); - break; - } - } - - return 0; -} - -int -sigwait (const sigset_t * set, int *sig) -{ - /* This routine is a cancellation point */ - pthread_test_cancel(); -} - -int -sigaction (int signum, const struct sigaction *act, struct sigaction *oldact) -{ -} - -#endif /* HAVE_SIGSET_T */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/Bmakefile b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/Bmakefile deleted file mode 100644 index a386861..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/Bmakefile +++ /dev/null @@ -1,368 +0,0 @@ -# Makefile for the pthreads test suite. -# If all of the .pass files can be created, the test suite has passed. -# -# -------------------------------------------------------------------------- -# -# Pthreads-win32 - POSIX Threads Library for Win32 -# Copyright(C) 1998 John E. Bossom -# Copyright(C) 1999,2012 Pthreads-win32 contributors -# -# Contact Email: rpj@callisto.canberra.edu.au -# -# The current list of contributors is contained -# in the file CONTRIBUTORS included with the source -# code distribution. The list can also be seen at the -# following World Wide Web location: -# https://sourceforge.net/projects/pthreads4w/contributors.html -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library in the file COPYING.LIB; -# if not, write to the Free Software Foundation, Inc., -# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA -# - -PTW32_VER = 3 - -CP = copy -RM = erase -CAT = type -MKDIR = mkdir -TOUCH = echo Passed > -ECHO = @echo - -# The next path is relative to $BUILD_DIR -QAPC = # ..\QueueUserAPCEx\User\quserex.dll - -CPHDR = pthread.h semaphore.h sched.h - -OPTIM = -O2 - -XXLIBS = cw32mti.lib ws2_32.lib - -# C++ Exceptions -BCEFLAGS = -P -D__PtW32NoCatchWarn -D__PTW32_CLEANUP_CXX -BCELIB = pthreadBCE$(PTW32_VER).lib -BCEDLL = pthreadBCE$(PTW32_VER).dll -# C cleanup code -BCFLAGS = -D__PTW32_CLEANUP_C -BCLIB = pthreadBC$(PTW32_VER).lib -BCDLL = pthreadBC$(PTW32_VER).dll -# C++ Exceptions in application - using VC version of pthreads dll -BCXFLAGS = -D__PTW32_CLEANUP_C - -# Defaults -CPLIB = $(BCLIB) -CPDLL = $(BCDLL) - -CFLAGS= -q $(OPTIM) -w -tWC -tWM -4 -w-aus -w-asc -w-par -LFLAGS= -INCLUDES=-I. -BUILD_DIR=.. - -COPYFILES = $(CPHDR) $(CPLIB) $(CPDLL) $(QAPC) - -EHFLAGS = - -# If a test case returns a non-zero exit code to the shell, make will -# stop. - -PASSES= \ - errno1.pass \ - self1.pass mutex5.pass \ - mutex1.pass mutex1n.pass mutex1e.pass mutex1r.pass \ - semaphore1.pass semaphore2.pass semaphore3.pass \ - mutex2.pass mutex3.pass \ - mutex2r.pass mutex2e.pass mutex3r.pass mutex3e.pass \ - condvar1.pass condvar1_1.pass condvar1_2.pass condvar2.pass condvar2_1.pass \ - exit1.pass create1.pass create2.pass reuse1.pass reuse2.pass equal1.pass \ - sequence1.pass kill1.pass valid1.pass valid2.pass \ - exit2.pass exit3.pass exit4.pass exit5.pass \ - join0.pass join1.pass detach1.pass join2.pass join3.pass join4.pass \ - mutex4.pass mutex6.pass mutex6n.pass mutex6e.pass mutex6r.pass \ - mutex6s.pass mutex6es.pass mutex6rs.pass \ - mutex7.pass mutex7n.pass mutex7e.pass mutex7r.pass \ - mutex8.pass mutex8n.pass mutex8e.pass mutex8r.pass \ - robust1.pass robust2.pass robust3.pass robust4.pass robust5.pass \ - count1.pass \ - once1.pass once2.pass once3.pass once4.pass \ - self2.pass \ - cancel1.pass cancel2.pass \ - semaphore4.pass semaphore4t.pass semaphore5.pass \ - barrier1.pass barrier2.pass barrier3.pass barrier4.pass barrier5.pass barrier6.pass \ - tsd1.pass tsd2.pass delay1.pass delay2.pass eyal1.pass \ - condvar3.pass condvar3_1.pass condvar3_2.pass condvar3_3.pass \ - condvar4.pass condvar5.pass condvar6.pass \ - condvar7.pass condvar8.pass condvar9.pass \ - rwlock1.pass rwlock2.pass rwlock3.pass rwlock4.pass \ - rwlock5.pass rwlock6.pass rwlock7.pass rwlock8.pass \ - rwlock2_t.pass rwlock3_t.pass rwlock4_t.pass rwlock5_t.pass rwlock6_t.pass rwlock6_t2.pass \ - context1.pass \ - cancel3.pass cancel4.pass cancel5.pass cancel6a.pass cancel6d.pass \ - cancel7.pass cancel8.pass \ - cleanup0.pass cleanup1.pass cleanup2.pass cleanup3.pass \ - priority1.pass priority2.pass inherit1.pass \ - spin1.pass spin2.pass spin3.pass spin4.pass \ - exception1.pass exception2.pass exception3_0.pass exception3.pass \ - cancel9.pass \ - affinity1.pass affinity2.pass affinity3.pass affinity4.pass affinity5.pass \ - stress1.pass - -BENCHRESULTS = \ - benchtest1.bench benchtest2.bench benchtest3.bench benchtest4.bench benchtest5.bench - -help: - @ $(ECHO) Run one of the following command lines: - @ $(ECHO) make clean BC (to test using BC dll with VC (no EH) applications) - @ $(ECHO) make clean BCX (to test using BC dll with VC++ (EH) applications) - @ $(ECHO) make clean BCE (to test using the BCE dll with VC++ EH applications) - @ $(ECHO) make clean BC-bench (to benchtest using BC dll with C bench app) - @ $(ECHO) make clean BCX-bench (to benchtest using BC dll with C++ bench app) - @ $(ECHO) make clean BCE-bench (to benchtest using BCE dll with C++ bench app) - -all: - @ make clean BC - @ make clean BCX - @ make clean BCE - @ make clean BC-bench - -# This allows an individual test application to be made using the default lib. -# e.g. make clean test cancel3.exe -test: $(CPLIB) $(CPDLL) $(CPHDR) $(QAPC) - -tests: $(CPLIB) $(CPDLL) $(CPHDR) $(QAPC) sizes.pass $(PASSES) - @ $(ECHO) ALL TESTS PASSED! Congratulations! - -benchtests: $(CPLIB) $(CPDLL) $(CPHDR) $(BENCHRESULTS) - @ $(ECHO) ALL BENCH TESTS DONE. - -sizes.pass: sizes.exe - @ $(ECHO) ... Running $(TEST) test: $*.exe - @ .\$*.exe > SIZES.$(TEST) - @ $(CAT) SIZES.$(TEST) - @ $(ECHO) ...... Passed - @ $(TOUCH) $*.pass - -BCE: - @ make -f Bmakefile TEST="$@" CPLIB="$(BCELIB)" CPDLL="$(BCEDLL)" EHFLAGS="$(BCEFLAGS)" tests - -BC: - @ make -f Bmakefile TEST="$@" CPLIB="$(BCLIB)" CPDLL="$(BCDLL)" EHFLAGS="$(BCFLAGS)" tests - -BCX: - @ make -f Bmakefile TEST="$@" CPLIB="$(BCLIB)" CPDLL="$(BCDLL)" EHFLAGS="$(BCXFLAGS)" tests - -BCE-bench: - @ make -f Bmakefile TEST="$@" CPLIB="$(BCELIB)" CPDLL="$(BCEDLL)" EHFLAGS="$(BCEFLAGS)" XXLIBS="benchlib.o" benchtests - -BC-bench: - @ make -f Bmakefile TEST="$@" CPLIB="$(BCLIB)" CPDLL="$(BCDLL)" EHFLAGS="$(BCFLAGS)" XXLIBS="benchlib.o" benchtests - -BCX-bench: - @ make -f Bmakefile TEST="$@" CPLIB="$(BCLIB)" CPDLL="$(BCDLL)" EHFLAGS="$(BCXFLAGS)" XXLIBS="benchlib.o" benchtests - -.exe.pass: - @ $(ECHO) ... Running $(TEST) test: $< - @ .\$< - @ $(ECHO) ...... Passed - @ $(TOUCH) $@ - -.exe.bench: - @ $(ECHO) ... Running $(TEST) benchtest: $< - @ .\$< - @ $(ECHO) ...... Done - @ $(TOUCH) $@ - -.c.exe: - @ $(ECHO) $(CC) $(EHFLAGS) $(CFLAGS) $(INCLUDES) $< -e$@ $(LFLAGS) $(CPLIB) $(XXLIBS) - @ $(CC) $(EHFLAGS) $(CFLAGS) $(INCLUDES) $< -e$@ $(LFLAGS) $(CPLIB) $(XXLIBS) - -.c.o: - @ $(ECHO) $(CC) $(EHFLAGS) -c $(CFLAGS) $(INCLUDES) $< -o$@ - @ $(CC) $(EHFLAGS) $(CFLAGS) -c $(INCLUDES) $< -o$@ - - -.c.i: - @ $(CC) /P $(EHFLAGS) $(CFLAGS) $(INCLUDES) $< - -$(COPYFILES): - @ $(ECHO) Copying $(BUILD_DIR)\$@ - @ $(CP) $(BUILD_DIR)\$@ . - -pthread.dll: $(CPDLL) - @ $(CP) $(CPDLL) pthread.dll - @ $(CP) $(CPLIB) pthread.lib - -clean: - - $(RM) *.dll - - $(RM) *.lib - - $(RM) pthread.h - - $(RM) semaphore.h - - $(RM) sched.h - - $(RM) *.e - - $(RM) *.i - - $(RM) *.obj - - $(RM) *.tds - - $(RM) *.pdb - - $(RM) *.o - - $(RM) *.asm - - $(RM) *.exe - - $(RM) *.manifest - - $(RM) *.pass - - $(RM) *.bench - - $(RM) *.log - -benchtest1.bench: -benchtest2.bench: -benchtest3.bench: -benchtest4.bench: -benchtest5.bench: - -affinity1.pass: -affinity2.pass: affinity1.pass -affinity3.pass: affinity2.pass -affinity4.pass: affinity3.pass -affinity5.pass: affinity4.pass -barrier1.pass: semaphore4.pass -barrier2.pass: barrier1.pass -barrier3.pass: barrier2.pass -barrier4.pass: barrier3.pass -barrier5.pass: barrier4.pass -barrier6.pass: barrier5.pass -cancel1.pass: create1.pass -cancel2.pass: cancel1.pass -cancel3.pass: context1.pass -cancel4.pass: cancel3.pass -cancel5.pass: cancel3.pass -cancel6a.pass: cancel3.pass -cancel6d.pass: cancel3.pass -cancel7.pass: kill1.pass -cancel8.pass: cancel7.pass -cancel9.pass: cancel8.pass -cleanup0.pass: cancel5.pass -cleanup1.pass: cleanup0.pass -cleanup2.pass: cleanup1.pass -cleanup3.pass: cleanup2.pass -condvar1.pass: -condvar1_1.pass: condvar1.pass -condvar1_2.pass: join2.pass -condvar2.pass: condvar1.pass -condvar2_1.pass: condvar2.pass join2.pass -condvar3.pass: create1.pass condvar2.pass -condvar3_1.pass: condvar3.pass join2.pass -condvar3_2.pass: condvar3_1.pass -condvar3_3.pass: condvar3_2.pass -condvar4.pass: create1.pass -condvar5.pass: condvar4.pass -condvar6.pass: condvar5.pass -condvar7.pass: condvar6.pass cleanup1.pass -condvar8.pass: condvar7.pass -condvar9.pass: condvar8.pass -context1.pass: cancel1.pass -count1.pass: join1.pass -create1.pass: mutex2.pass -create2.pass: create1.pass -delay1.pass: -delay2.pass: delay1.pass -detach1.pass: join0.pass -equal1.pass: create1.pass -errno1.pass: mutex3.pass -exception1.pass: cancel4.pass -exception2.pass: exception1.pass -exception3_0.pass: exception2.pass -exception3.pass: exception3_0.pass -exit1.pass: -exit2.pass: create1.pass -exit3.pass: create1.pass -exit4.pass: -exit5.pass: kill1.pass -eyal1.pass: tsd1.pass -inherit1.pass: join1.pass priority1.pass -join0.pass: create1.pass -join1.pass: create1.pass -join2.pass: create1.pass -join3.pass: join2.pass -join4.pass: join3.pass -kill1.pass: -mutex1.pass: self1.pass -mutex1n.pass: mutex1.pass -mutex1e.pass: mutex1.pass -mutex1r.pass: mutex1.pass -mutex2.pass: mutex1.pass -mutex2r.pass: mutex2.pass -mutex2e.pass: mutex2.pass -mutex3.pass: create1.pass -mutex3r.pass: mutex3.pass -mutex3e.pass: mutex3.pass -mutex4.pass: mutex3.pass -mutex5.pass: -mutex6.pass: mutex4.pass -mutex6n.pass: mutex4.pass -mutex6e.pass: mutex4.pass -mutex6r.pass: mutex4.pass -mutex6s.pass: mutex6.pass -mutex6rs.pass: mutex6r.pass -mutex6es.pass: mutex6e.pass -mutex7.pass: mutex6.pass -mutex7n.pass: mutex6n.pass -mutex7e.pass: mutex6e.pass -mutex7r.pass: mutex6r.pass -mutex8.pass: mutex7.pass -mutex8n.pass: mutex7n.pass -mutex8e.pass: mutex7e.pass -mutex8r.pass: mutex7r.pass -once1.pass: create1.pass -once2.pass: once1.pass -once3.pass: once2.pass -once4.pass: once3.pass -priority1.pass: join1.pass -priority2.pass: priority1.pass barrier3.pass -reuse1.pass: create2.pass -reuse2.pass: reuse1.pass -robust1.pass: mutex8r.pass -robust2.pass: mutex8r.pass -robust3.pass: robust2.pass -robust4.pass: robust3.pass -robust5.pass: robust4.pass -rwlock1.pass: condvar6.pass -rwlock2.pass: rwlock1.pass -rwlock3.pass: rwlock2.pass join2.pass -rwlock4.pass: rwlock3.pass -rwlock5.pass: rwlock4.pass -rwlock6.pass: rwlock5.pass -rwlock7.pass: rwlock6.pass -rwlock8.pass: rwlock7.pass -rwlock2_t.pass: rwlock2.pass -rwlock3_t.pass: rwlock2_t.pass -rwlock4_t.pass: rwlock3_t.pass -rwlock5_t.pass: rwlock4_t.pass -rwlock6_t.pass: rwlock5_t.pass -rwlock6_t2.pass: rwlock6_t.pass -self1.pass: -self2.pass: create1.pass -semaphore1.pass: -semaphore2.pass: -semaphore3.pass: semaphore2.pass -semaphore4.pass: semaphore3.pass cancel1.pass -semaphore4t.pass: semaphore4.pass -semaphore5.pass: semaphore4.pass -sequence1.pass: reuse2.pass -sizes.pass: -spin1.pass: -spin2.pass: spin1.pass -spin3.pass: spin2.pass -spin4.pass: spin3.pass -stress1.pass: -tsd1.pass: barrier5.pass join1.pass -tsd2.pass: tsd1.pass -valid1.pass: join1.pass -valid2.pass: valid1.pass diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/ChangeLog b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/ChangeLog deleted file mode 100644 index c6c69cf..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/ChangeLog +++ /dev/null @@ -1,1348 +0,0 @@ -2018-08-07 Ross Johnson - - * GNUmakefile.in (DLL_VER): rename as PTW32_VER. - * Makefile (DLL_VER): Likewise. - * Bmakefile (DLL_VER): Likewise; does anyone use this anymore? - * Makefile: Variable renaming: e.g. VCLIB to VCIMP for DLL import - library pthreadVC2.lib and VCLIB now holds static library name - libpthreadVC2.lib, and similar for the other cleanup method versions. - -2018-07-22 Mark Pizzolato - - * Makefile: Change the various static test runs to actually - compile with /MT or /MTd, i.e. No mixed /MT and /MD. Static - builds no longer create a separate pthreads*.lib static library - because errno does not work across that linkage. - * sequence1.c: Use more reasonable number of threads to avoid - resource limits. - -2016-12-25 Ross Johnson - - * Change all license notices to the Apache License 2.0 - -2016-12-21 Ross Johnson - - * mutex6.c: fix random failures by using a polling loop to replace - a single Sleep(). - * mutex6n.c: Likewise. - * mutex6s.c: Likewise. - * mutex7.c: Likewise. - * mutex7n.c: Likewise. - * mutex8.c: Likewise - * mutex8n.c: Likewise. - * semaphore5.c: don't fail on expected sem_destroy EBUSY. - -2016-12-20 Ross Johnson - - * all (PTW32_*): rename to __PTW32_*. - (ptw32_*): rename to __ptw32_*. - (PtW32*): rename to __PtW32*. - * GNUmakefile: removed; must now configure from GNUmakefile.in. - -2016-12-18 Ross Johnson - - * test.c (__PTW32_TEST_SNEAK_PEEK): #define this to prevent some - tests from failing (specifically "make GCX-small-static") with - undefined __ptw32_autostatic_anchor. Checked in ../implement.h. - * GNUMakfile.in: Rename testsuite log to test-specific name and - do not remove. - * GNUMakfile.in: Add realclean target - -2016-04-30 Ross Johnson - - * semaphore4t.c: No longer need to include ptw32_timespec.c and the - defines that tried to make it work (but failed). There is now an - exported routine that this test uses that can also be used by - applications. It's a general routine that keeps all the platform - conditional stuff inside the library. - * Makefile: Remove _ptw32.h copied from parent directory. - -2016-03-31 Ross Johnson - - * Makefile (_ptw32.h): Copy header to tests directory required to - build tests, and apps. - -2016-03-31 Ross Johnson - - * test.h: source errno.h - -2016-03-31 Keith Marshall - - * test.h: Patch for MinGW32 autoconf. - * GNUmakefile.in: New for autoconf. - -2016-03-28 Ross Johnson - - * condvar2.c: Use platform-aware pthread_win32_getabstime_np. - * condvar2_1.c: Likewise. - * condvar3.c: Likewise. - * condvar3_1.c: Likewise. - * condvar3_2.c: Likewise. - * condvar3_3.c: Likewise. - * condvar4.c: Likewise. - * condvar5.c: Likewise. - * condvar6.c: Likewise. - * condvar7.c: Likewise. - * condvar8.c: Likewise. - * condvar9.c: Likewise. - * join4.c: Likewise. - * mutex8.c: Likewise. - * mutex8e.c: Likewise. - * mutex8n.c: Likewise. - * mutex8r.c: Likewise. - * reinit1.c: Likewise. - * rwlock2_t.c: Likewise. - * rwlock3_t.c: Likewise. - * rwlock4_t.c: Likewise. - * rwlock5_t.c: Likewise. - * rwlock6_t.c: Likewise. - * rwlock6_t2.c: Likewise. - * semaphore4t.c: Likewise. - * stress1.c: Likewise. - * reinit1.c: Remove unused variable declarations. - -2015-11-01 Mark Smith - - * semaphore4t.c: Enhanced and additional testing of sub-millisecond - timeouts. - -2014-07-22 Scott Libert - - * semaphore3.c: Wait for threads to complete before exiting main(). - This test would sometimes fail because, behaviourally, it was not - standard-compliant. - -2013-12-10 Ross Johnson - - * cancel9.c (bytes, dwEvent): Removed to eliminate warning "set but - not used". - -2013-11-13 Ross Johnson - - * reinit1.c: New test - reinitialising the library. - * common.mk: Add new test. - * reorder.mk: Likewise. - -2013-07-23 Ross Johnson - - * affinity*.c: Skipped under WINCE. - -2013-07-02 Ross Johnson - - * threestage.c: New test/example code; not written specifically as - a test; independently written and essentially unmodified pthreads - example. - -2013-06-19 Ross Johnson - - * exit6.c: New test (added some time ago but not committed). - * name_np1.c: New test for pthread_[sg]etname_np(). - * name_np2.c: New test for pthread_attr_[sg]etname_np(). - * common.mk: Add new tests. - * reorder.mk: Likewise. - -2013-06-06 Ross Johnson - - * affinity6.c: New test for pthread_attr_[gs]etaffinity_np() - * common.mk: Add new tests. - * reorder.mk: Likewise. - -2012-10-24 Ross Johnson - - * tsd3.c: New regression test for Stephane Clairet bug fix/report; - this test confirms that keys are deleted correctly prior to threads - exiting. - * tsd2.c: Modified comments and indentation. - * tsd1.c: Likewise. - * common.mk (tsd3): New test added. - * reorder.mk (tsd3): Likewise. - -2012-10-16 Ross Johnson - - * GNUmakefile (EXTRAVERSION): Naming option for libraries to be - consistent with MSVS Makefile; no longer automatically based on - ARCH setting. - -2012-10-10 Ross Johnson - - * cancel1.c: Fix comment typo. - * Makefile: Adding functionality to support rapid turnaround of - individual or small sets of tests; removed loadfree test. - * GNUmakefile: Likewise. - * Bmakefile: Removed loadfree test. - * Wmakefile: Likewise. - * common.mk: New makefile include file; split out common macros. - * runorder.mk: New makefile include file; split out run order rules - to allow selective inclusion. - * loadfree.c: Removed from suite; not required; unnecessarily - complicates the makefiles. - -2012-10-04 Ross Johnson - - * join4.c: Modified for pthread_tryjoin_np tests. - -2012-09-29 Ross Johnson - - * Makefile: Align target names with build makefile target names - following changes there; remove the separate static tests list. - * GNUmakefile: Likewise; consolidate rules. - -2012-09-25 Ross Johnson - - * context1.c (anotherEnding): Should exit the thread, not return. - -2012-09-23 Ross Johnson - - * Makefile: Add secondary target names to existing test targets so - we can output how the library was built, e.g. "Running VC-inlined test". - This is useful when making "all-tests" from the library build Makefile. - * GNUmakefile: Similarly. - -2012-09-22 Ross Johnson - - * GNUmakefile: Do what Makefile does and print the make target - when running each test. - -2012-09-22 Daniel Richard. G - - * Makefile: This reverts an earlier change of mine. In some - versions of nmake, $(MAKE) is a full path, which utterly futzes - up the "make help" output; regularized the test targets, so we - have e.g. VSE-static now; regularized the parentheticals; - removed a spurious use of $(DLL_VER); new test targets: VCX-debug - {VSE,VCX}-static{,-debug}; fixed the {VC,VCE}-static-debug targets. - * exception3.c: Narrowly exclude this test from the known-bad VS2005 - configuration (By the way: I downloaded and tested with what is - presumably the most up-to-date MSVCR80.DLL. Same deal.); use - pthread_win32_set_terminate_np() when appropriate, and verify that - it has an effect different from calling set_terminate(); no need for - that assert(); it's overly pedantic. - * exception3_0.c: Same VS2005 exclusion. - * once3.c: Put in a note so that users know what to do if the test - hangs or exits abnormally (I figured this is better than narrowly - disabling pthread_cancel() on MSVC6, since cancellation does seem to - work correctly with /EHa, and we don't have any way of telling at - compile time whether /EHs or /EHa is in use). - * once4.c: Likewise. - * semaphore1.c: s/PTW32_BROKEN_ERRNO/PTW32_USES_SEPARATE_CRT/ - -2012-09-22 Ross Johnson - - * pthread_win32_attach_detach_np.c (pthread_win32_detach_thread_np): - Check for NULL __ptw32_selfThreadKey before call to TlsSetKey(). Need - to find where this is being set to NULL before this point. Was - consistently failing tests/seamphore3.c in all GC static builds and - never seen in GC DLL builds. May also be responsible for - inconsistent VCE fails on that test, although the fail mode was - different - the latter hangs the test while the former segfaults. - -2012-09-22 Ross Johnson - - * GNUmakefile (GC-static-debug): New make target. - -2012-09-21 Ross Johnson - - * affinity1.c: New test for new process CPU affinity routines. - * affinity2.c: New test for new process CPU affinity routines. - * affinity3.c: New test for new process and thread CPU affinity routines. - * affinity4.c: New test for new process and thread CPU affinity routines. - * affinity5.c: New test for new process and thread CPU affinity routines. - * Makefile: Add new tests. - * GNUmakfile: Likewise. - * Bmakfile: Likewise. - * Wmakfile: Likewise. - -2012-09-09 Ross Johnson - - * exception3.c: Rewrite to fix strategy. - * exception3_0.c: New test. - * exception2.c: Reduce sleep time to speed up test. - * Makefile (exception3_0.*): Add new test. - * GNUmakefile (exception3_0.*): Add new test. - * Bmakefile (exception3_0.*): Add new test. - * Wmakefile (exception3_0.*): Add new test. - -2012-09-05 Daniel Richard. G - - * exception2.c: Fix result codes to avoid false negative failures. - * cancel9.c: cosmetic change. - * GNUmakefile (clean): delete manifest files. - * Bmakefile: Likewise. - * Wmakefile: Likewise. - * Makefile: Likewise. - -2012-09-04 Ross Johnson - - * Makefile (VCEFLAGS): Changed from /EHsc to /EHs which was causing - tests/once3.c to hang, suspect exceptions not being thrown from - extern C routines. - * cancel2.c: Rewrite to use a barrier for thread control; remove - asyncronous cancel type which was a massive bug in the test strategy - and cusing SEGFAULTs (access violations). - * eyal1.c: Remove unused variable 'i' to clear compiler warning. - * context1.c: Remove call to pthread_exit() in alternate ending to - quell error in GCE tests see when running x86 build on x64. - -2012-09-03 Ross Johnson - - * Makefile (VCE-static): Add VC++ static build target - (VCE-static-debug): Likewise. - -2012-08-29 Daniel Richard. G - - * mutex6.c: Removed pointless exit(0) and never-reached comment. - * mutex6r.c: Likewise. - * mutex6rs.c: Likewise. - * mutex6s.c: Likewise. - * mutex6e.c: Likewise. - * mutex6es.c: Likewise. - * mutex7.c: Likewise. - * mutex7e.c: Likewise. - * mutex7n.c: Likewise. - * mutex7r.c: Likewise. - * mutex6n.c: Likewise; ensure operator precedence. - * once2.c (sharedInt_t): replace static initialization of struct with memset. - * once3.c: Likewise. - * once4.c: Likewise. - * cleanup0.c: Likewise. - * cleanup1.c: Likewise. - * cleanup2.c: Likewise. - * cleanup3.c: Likewise. - * openmp1.c: Fix casts. - * exit1.c: Remove assert statement that is never reached and return 1. - * exception2.c: Prevent displaying modal error dialog. - -2012-08-19 Ross Johnson - - * join4.c: Test for new pthread_timedjoin_np routine - * Makefile (join4): Added. - * GNUmakefile (join4): Added. - * Bmakefile (join4): Added. - * Wmakefile (join4): Added. - * test.h (sys/timeb.h): Add #include. - * mutex8.c (sys/timeb.h): Remove #include. - * mutex8e.c (sys/timeb.h): Remove #include. - * mutex8n.c (sys/timeb.h): Remove #include. - * mutex8r.c (sys/timeb.h): Remove #include. - * benchtest1.c (sys/timeb.h): Remove #include. - * benchtest2.c (sys/timeb.h): Remove #include. - * benchtest3.c (sys/timeb.h): Remove #include. - * benchtest4.c (sys/timeb.h): Remove #include. - * benchtest5.c (sys/timeb.h): Remove #include. - -2012-08-11 Daniel Richard. G - - * Makefile: Various improvements. - * GNUmakefile: Likewise. - -2011-07-20 Ross Johnson - - * cancel2.c (PTHREAD_CANCELED): Fix cast warning when compiling with g++. - * cleanup0.c (PTHREAD_CANCELED): Likewise. - * cleanup1.c (PTHREAD_CANCELED): Likewise. - -2012-07-19 Daniel Richard. G - - * Makefile: Various fixes. - * GNUmakefile: Likewise. - -2011-07-03 Ross Johnson - - * create3.c: Removed; testing a condition that is not in the library's - scope and was more trouble than it was worth. - * cancel2.c: Ensure this test only runs for Structured or C++ EH. - * exit2.c: Shorten Sleep() time. - * exit3.c: Likewise. - * cancel1.c: Likewise. - * cancel3.c: Likewise. - * exception3.c: Likewise; make terminate routine consistent for all - build environments. - -2011-07-02 Ross Johnson - - * spin3.c: Unlock the unlocked spinlock now returns success. - * rwlock3.c: Join the thread to ensure it's completed. - * rwlock4.c: Likewise. - * rwlock5.c: Likewise. - * Makefile: Adjust prerequisites. - * GNUmakefile: Likewise. - * Bmakefile: Likewise. - * Wmakefile: Likewise. - -2011-07-02 Daniel Richard G. - - * *.[ch]: Cleanups around timeb struct, mainly centralising - macro definitions in test.h. - * Makefile: Fix annoying nmake warning. - -2011-06-30 Ross Johnson - - * sequence1.c: Fix loop overrun. - -2011-05-11 Ross Johnson - - * GNUmakefile (GCE-debug): New target; expects pthreadGCE2d.dll. - -2011-05-05 Ross Johnson - - * openmp1.c: Add missing test; used to comfirm that this - library works with libgomp; if this test produces a segfault - then try upgrading your version of libgomp/gcc; gcc version - 4.5.2 passes this test. - -2011-03-26 Ross Johnson - - * sequence1.c: New test for new pthread_getsequence_np(). - -2011-03-24 Ross Johnson - - * mutex*.c: Include tests for robust mutexes wherever - appropriate. - * benchtest*.c: Include comparisons for robust mutexes. - * robust1.c: New test for robust mutex handling. - * robust2.c: Likewise. - * robust3.c: Likewise. - * robust4.c: Likewise. - * robust5.c: Likewise. - * GNUmakefile: Include new tests. - * Makefile: Likewise. - * Bmakefile: Likewise (not tested). - * Wmakefile: Likewise (not tested). - -2011-03-06 Ross Johnson - - * several (MINGW64): Cast and call fixups for 64 bit compatibility; - clean build via x86_64-w64-mingw32 cross toolchain on Linux - i686 targeting x86_64 win64. - -2011-03-04 Ross Johnson - - * condvar3_2.c: abstime.tv_sec operation warning fixed. - * several: Use correct casting on pthread_join result arg - and associated declaration and usage; assumed that 64 bit - gcc gave some warnings for it. - -2011-02-28 Ross Johnson - - * test.h: Define FTIME to be _ftime64_s or _ftime64 or _ftime - in that order of preference where supported. - * several: Replace calls to _ftime with the FTIME macro. - -2010-06-19 Ross Johnson - - * Makefile (STATICRESULTS): Add all tests into suite for static - library. - * GNUmakefile (STATICTESTS): Likewise, except for openmp1.c which - has a DLL dependency. - -2010-02-04 Ross Johnson - - * openmp1.c: New; for libgomp compatibility (OpenMP). - * barrier5.c: Rewrite after changes to barriers. - * barrier6.c: New. - * benchtest6.c: New; timing barriers. - * GNUMakefile: Update for new tests. - * Makefile: Ditto. - * BMakefile: Ditto. - * once3.c: Improve cancellation testing. - * stress1.c: Fix comment. - -2007-01-04 Ross Johnson - - * context1.c: Include context.h from library sources and remove - x86 dependence in main(). - -2005-06-12 Ross Johnson - - * stress1.c (millisecondsFromNow): Remove limit 0 <= millisecs < 1000; - now works for -INT_MAX <= millisecs <= INT_MAX; not needed for - stress1.c but should be general anyway. - -2005-05-18 Ross Johnson - - * reuse2.c (main): Must use a read with memory barrier semantics - when polling 'done' to force the cache into coherence on MP systems. - -2005-05-15 Ross Johnson - - * detach1.c: New test. - * join1.c: Reduce sleep times. - * join0.c: Remove MSVCRT conditional compile - join should always - return the thread exit code. - * join1.c: Likewise. - * join2.c: Likewise. - * join3.c: Likewise. - -2005-04-18 Ross Johnson - - * condvar3.c: Remove locks from around signalling calls - should not - be required for normal operation and only serve to mask deficiencies; - ensure that CV destruction is not premature after removing guards. - * condvar3_1.c: Likewise. - * condvar3_2.c: Likewise. - * condvar3_3.c: Likewise. - * condvar4.c: Likewise. - * condvar5.c: Likewise. - * condvar6.c: Likewise. - * condvar7.c: Likewise. - * condvar8.c: Likewise. - * condvar9.c: Likewise. - -2005-04-11 Ross Johnson - - * once4.c: New test; tries to test priority adjustments - in pthread_once(); set priority class to realtime so that - any failures can be seen. - -2005-04-06 Ross Johnson - - * cleanup0.c: Fix unguarded global variable accesses. - * cleanup1.c: Likewise. - * cleanup2.c: Likewise. - * cleanup3.c: Likewise. - * once2.c: Likewise. - * once3.c: Likewise. - -2005-04-01 Ross Johnson - - * GNUmakefile: Add target to test linking static link library. - * Makefile: Likewise. - * self1.c: Run process attach/detach routines when static linked. - -2005-03-16 Ross Johnson - - * mutex5.c: Prevent optimiser from removing asserts. - -2005-03-12 Ross Johnson - - * once3.c: New test. - -2005-03-08 Ross Johnson - - * once2.c: New test. - -2004-11-19 Ross Johnson - - * Bmakefile: New makefile for Borland. - * Makefile (DLL_VER): Added. - * GNUmakefile (DLL_VER): Added. - * Wmakefile (DLL_VER): Added. - -2004-10-29 Ross Johnson - - * semaphore4.c: New test. - * semaphore4t.c: New test. - * Debug.dsp (et al): Created MSVC Workspace project to aid debugging. - * All: Many tests have been modified to work with the new pthread - ID type; some other corrections were made after some library - functions were semantically strengthened. For example, - pthread_cond_destroy() no longer destroys a busy CV, which - required minor redesigns of some tests, including some where - the mutex associated with the CV was not locked during - signaling and broadcasting. - -2004-10-23 Ross Johnson - - * condvar3.c: Fixed mutex operations that were incorrectly - placed in relation to their condition variable operations. - The error became evident after sem_destroy() was rewritten - and conditions for destroing the semaphore were tightened. - As a result, pthread_cond_destroy() was not able to - destroy the cv queueing sempahore. - * condvar3_1.c: Likewise. - * condvar3_2.c: Likewise. - * condvar4.c: Likewise. - * condvar5.c: Likewise. - * condvar6.c: Likewise. - * condvar7.c: Likewise. - * condvar8.c: Likewise. - * condvar9.c: Likewise. - -2004-10-19 Ross Johnson - - * semaphore3.c: New test. - -2004-10-14 Ross Johnson - - * rwlock7.c (main): Tidy up statistics reporting; randomise - update accesses. - * rwlock8.c: New test. - -2004-09-08 Alexandre Girao - - * cancel7.c (main): Win98 wants a valid (non-NULL) location - for the last arg of _beginthreadex(). - * cancel8.c (main): Likewise. - * exit4.c (main): Likewise. - * exit5.c (main): Likewise. - -2004-08-26 Ross Johnson - - * create3.c: New test. - -2004-06-21 Ross Johnson - - * mutex2r.c: New test. - * mutex2e.c: New test. - * mutex3r.c: New test. - * mutex3e.c: New test. - * mutex6s.c: New test. - * mutex6rs.c: New test. - * mutex6es.c: New test. - -2004-05-21 Ross Johnson - - * join3.c: New test. - -2004-05-16 Ross Johnson - - * condvar2.c (WIN32_WINNT): Define to avoid redefinition warning - from inclusion of implement.h. - * convar2_1.c: Likewise. - * condvar3_1.c: Likewise. - * condvar3_2.c: Likewise. - * context1.c: Likewise. - * sizes.c: Likewise. - * Makefile: Don't define _WIN32_WINNT on compiler command line. - * GNUmakefile: Likewise. - * priority1.c (main): Add column to output for actual win32 - priority. - -2004-05-16 Ross Johnson - - * cancel9.c: New test. - * cancel3.c: Remove inappropriate conditional compilation; - GNU C version of test suite no longer quietly skips this test. - * cancel5.c: Likewise. - * GNUmakefile: Can now build individual test app using default - C version of library using 'make clean testname.c'. - * Makefile: Likewise for VC using 'nmake clean test testname.c'. - -2003-10-14 Ross Johnson - - * Wmakefile: New makefile for Watcom testing. - -2003-09-18 Ross Johnson - - * benchtest.h: Move old mutex code into benchlib.c. - * benchlib.c: New statically linked module to ensure that - bench apps don't inline the code and therefore have an unfair - advantage over the pthreads lib routines. Made little or no - difference. - * benchtest1.c: Minor change to avoid compiler warnings. - * benchtest5.c: Likewise. - * benchtest2.c: Fix misinformation in output report. - * README.BENCH: Add comments on results. - -2003-09-14 Ross Johnson - - * priority1.c: Reworked to comply with modified priority - management and provide additional output. - * priority2.c: Likewise. - * inherit1.c: Likewise. - -2003-09-03 Ross Johnson - - * exit4.c: New test. - * exit5.c: New test. - * cancel7.c: New test. - * cancel8.c: New test. - -2003-08-13 Ross Johnson - - * reuse1.c: New test. - * reuse1.c: New test. - * valid1.c: New test. - * valid2.c: New test. - * kill1.c: New test. - * create2.c: Now included in test regime. - -2003-07-19 Ross Johnson - - * eyal1.c (waste_time): Make threads do more work to ensure that - all threads get to do some work. - * semaphore1.c: Make it clear that certain errors are expected. - * exception2.c (non_MSVC code sections): Change to include - C++ standard include file, i.e. change to . - * exception3.c (non_MSVC code sections): Likewise; qualify std:: - namespace entities where necessary. - * GNUmakefile: modified to work in the MsysDTK (newer MinGW) - environment; define CC as gcc or g++ as appropriate because - using gcc -x c++ doesn't link with required c++ libs by default, - but g++ does. - -2002-12-11 Ross Johnson - - * mutex7e.c: Assert EBUSY return instead of EDEADLK. - -2002-06-03 Ross Johnson - - * semaphore2.c: New test. - -2002-03-02 Ross Johnson - - * Makefile (CFLAGS): Changed /MT to /MD to link with - the correct library MSVCRT.LIB. Otherwise errno doesn't - work. - -2002-02-28 Ross Johnson - - * exception3.c: Correct recent change. - - * semaphore1.c: New test. - - * Makefile: Add rule to generate pre-processor output. - -2002-02-28 Ross Johnson - - * exception3.c (terminateFunction): For MSVC++, call - exit() rather than pthread_exit(). Add comments to explain - why. - * Notes from the MSVC++ manual: - * 1) A term_func() should call exit(), otherwise - * abort() will be called on return to the caller. - * abort() raises SIGABRT. The default signal handler - * for all signals terminates the calling program with - * exit code 3. - * 2) A term_func() must not throw an exception. Therefore - * term_func() should not call pthread_exit() if an - * an exception-using version of pthreads-win32 library - * is being used (i.e. either pthreadVCE or pthreadVSE). - - -2002-02-23 Ross Johnson - - * rwlock2_t.c: New test. - * rwlock3_t.c: New test. - * rwlock4_t.c: New test. - * rwlock5_t.c: New test. - * rwlock6_t.c: New test. - * rwlock6_t2.c: New test. - * rwlock6.c (main): Swap thread and result variables - to correspond to actual thread functions. - * rwlock1.c: Change test description comment to correspond - to the actual test. - - * condvar1_2.c: Loop over the test many times in the hope - of detecting any intermittent deadlocks. This is to - test a fixed problem in pthread_cond_destroy.c. - - * spin4.c: Remove unused variable. - -2002-02-17 Ross Johnson - - * condvar1_1.c: New test. - * condvar1_2.c: New test. - -2002-02-07 Ross Johnson - - * delay1.c: New test. - * delay2.c: New test. - * exit4.c: New test. - -2002-02-02 Ross Johnson - - * mutex8: New test. - * mutex8n: New test. - * mutex8e: New test. - * mutex8r: New test. - * cancel6a: New test. - * cancel6d: New test. - * cleanup0.c: Add pragmas for inline optimisation control. - * cleanup1.c: Add pragmas for inline optimisation control. - * cleanup2.c: Add pragmas for inline optimisation control. - * cleanup3.c: Add pragmas for inline optimisation control. - * condvar7.c: Add pragmas for inline optimisation control. - * condvar8.c: Add pragmas for inline optimisation control. - * condvar9.c: Add pragmas for inline optimisation control. - -2002-01-30 Ross Johnson - - * cleanup1.c (): Must be declared __cdecl when compiled - as C++ AND testing the standard C library version. - -2002-01-16 Ross Johnson - - * spin4.c (main): Fix renamed function call. - -2002-01-14 Ross Johnson - - * exception3.c (main): Shorten wait time. - -2002-01-09 Ross Johnson - - * mutex7.c: New test. - * mutex7n.c: New test. - * mutex7e.c: New test. - * mutex7r.c: New test. - * mutex6.c: Modified to avoid leaving the locked mutex - around on exit. - -2001-10-25 Ross Johnson - - * condvar2.c: Remove reference to cv->nWaitersUnblocked. - * condvar2_1.c: Likewise; lower NUMTHREADS from 60 to 30. - * condvar3_1.c: Likewise. - * condvar3_2.c: Likewise. - * count1.c: lower NUMTHREADS from 60 to 30. - * inherit1.c: Determine valid priority values and then - assert values returned by POSIX routines are the same. - * priority1.c: Likewise. - * priority2.c: Likewise. - -2001-07-12 Ross Johnson - - * barrier5.c: Assert that precisely one thread receives - PTHREAD_BARRIER_SERIAL_THREAD at each barrier. - -2001-07-09 Ross Johnson - - * barrier3.c: Fixed. - * barrier4.c: Fixed. - * barrier5.c: New; proves that all threads in the group - reaching the barrier wait and then resume together. Repeats the test - using groups of 1 to 16 threads. Each group of threads must negotiate - a large number of barriers (10000). - * spin4.c: Fixed. - * test.h (error_string): Modified the success (0) value. - -2001-07-07 Ross Johnson - - * spin3.c: Changed test and fixed. - * spin4.c: Fixed. - * barrier3.c: Fixed. - * barrier4.c: Fixed. - -2001-07-05 Ross Johnson - - * spin1.c: New; testing spinlocks. - * spin2.c: New; testing spinlocks. - * spin3.c: New; testing spinlocks. - * spin4.c: New; testing spinlocks. - * barrier1.c: New; testing barriers. - * barrier2.c: New; testing barriers. - * barrier3.c: New; testing barriers. - * barrier4.c: New; testing barriers. - * GNUmakefile: Add new tests. - * Makefile: Add new tests. - -2001-07-01 Ross Johnson - - * benchtest3.c: New; timing mutexes. - * benchtest4.c: New; time mutexes. - * condvar3_1.c: Fixed bug - Alexander Terekhov - * condvar3_3.c: New test. - -2001-06-25 Ross Johnson - - * priority1.c: New test. - * priority2.c: New test. - * inherit1.c: New test. - * benchtest1.c: New; timing mutexes. - * benchtest2.c: New; timing mutexes. - * mutex4.c: Modified to test all mutex types. - -2001-06-8 Ross Johnson - - * mutex5.c: Insert inert change to quell compiler warnings. - * condvar3_2.c: Remove unused variable. - -2001-06-3 Ross Johnson - - * condvar2_1.c: New test. - * condvar3_1.c: New test. - * condvar3_2.c: New test. - -2001-05-30 Ross Johnson - - * mutex1n.c: New test. - * mutex1e.c: New test. - * mutex1r.c: New test. - * mutex4.c: Now locks and unlocks a mutex. - * mutex5.c: New test. - * mutex6.c: New test. - * mutex6n.c: New test. - * mutex6e.c: New test. - * mutex6r.c: New test. - * Makefile: Added new tests; reorganised. - * GNUmakefile: Likewise. - * rwlock6.c: Fix to properly prove read-while-write locking - and single writer locking. - -2001-05-29 Ross Johnson - - * Makefile: Reorganisation. - * GNUmakefile: Likewise. - - Thomas Pfaff - - * exception1.c: Add stdio.h include to define fprintf and stderr - in non-exception C version of main(). - * exception2.c: Likewise. - * exception3.c: Likewise. - - * Makefile (rwlock7): Add new test. - * GNUmakefile (rwlock7): Add new test. - * rwlock7.c: New test. - * rwlock6.c: Changed to test that writer has priority. - - * eyal1.c (main): Unlock each mutex_start lock before destroying - it. - -2000-12-29 Ross Johnson - - * GNUmakefile: Add mutex4 test; ensure libpthreadw32.a is - removed for "clean" target. - * Makefile: Add mutex4 test. - - * exception3.c: Remove SEH code; automatically pass the test - under SEH (which is an N/A environment). - - * mutex4.c: New test. - - * eyal1.c (do_work_unit): Add a dummy "if" to force the - optimiser to retain code; reduce thread work loads. - - * condvar8.c (main): Add an additional "assert" for debugging; - increase pthread_cond_signal timeout. - -2000-12-28 Ross Johnson - - * eyal1.c: Increase thread work loads. - * exception2.c: New test. - * exception3.c: New test. - * Makefile: Add new tests exception2.c and exception3.c. - * GNUmakefile: Likewise. - -2000-12-11 Ross Johnson - - * cleanup3.c: Remove unused variable. - * cleanup2.c: Likewise. - * exception1.c: Throw an exception rather than use - a deliberate zero divide so that catch(...) will - handle it under Mingw32. Mingw32 now builds the - library correctly to pass all tests - see Thomas - Pfaff's detailed instructions re needed changes - to Mingw32 in the Pthreads-Win32 FAQ. - -2000-09-08 Ross Johnson - - * cancel5.c: New; tests calling pthread_cancel() - from the main thread without first creating a - POSIX thread struct for the non-POSIX main thread - - this forces pthread_cancel() to create one via - pthread_self(). - * Makefile (cancel5): Add new test. - * GNUmakefile (cancel5): Likewise. - -2000-08-17 Ross Johnson - - * create2.c: New; Test that pthread_t contains - the W32 HANDLE before it calls the thread routine - proper. - -2000-08-13 Ross Johnson - - * condvar3.c: Minor change to eliminate compiler - warning. - - * condvar4.c: ditto. - - * condvar5.c: ditto. - - * condvar6.c: ditto. - - * condvar7.c: ditto. - - * condvar8.c: ditto. - - * condvar9.c: ditto. - - * exit1.c: Function needed return statement. - - * cleanup1.c: Remove unnecessary printf arg. - - * cleanup2.c: Fix cast. - - * rwlock6.c: Fix casts. - - * exception1.c (__PtW32CatchAll): Had the wrong name; - fix casts. - - * cancel3.c: Remove unused waitLock variable. - - * GNUmakefile: Change library/dll naming; add new tests; - general minor changes. - - * Makefile: Change library/dll naming; add targets for - testing each of the two VC++ EH scheme versions; - default target now issues help message; compile warnings - now interpreted as errors to stop the make; add new - tests; restructure to remove prerequisites needed - otherwise. - - * README: Updated. - - -2000-08-10 Ross Johnson - - * eyal1.c (main): Change implicit cast to explicit - cast when passing "print_server" function pointer; - G++ no longer allows implicit func parameter casts. - - * cleanup1.c: Remove unused "waitLock". - (main): Fix implicit parameter cast. - - * cancel2.c (main): Fix implicit parameter cast. - - * cancel4.c (main): Fix implicit parameter cast. - - * cancel3.c (main): Fix implicit parameter cast. - - * GNUmakefile: Renamed from Makefile; Add missing - cancel1 and cancel2 test targets. - - * Makefile: Converted for use with MS nmake. - -2000-08-06 Ross Johnson - - * ccl.bat: Add /nologo to remove extraneous output. - - * exception1.c (exceptionedThread): Init 'dummy'; - put expression into if condition to prevent optimising away; - remove unused variable. - - * cancel4.c (mythread): Cast return value to avoid warnings. - - * cancel2.c (mythread): Missing #endif. - - * condvar9.c (mythread): Cast return value to avoid warnings. - - * condvar8.c (mythread): Cast return value to avoid warnings. - - * condvar7.c (mythread): Cast return value to avoid warnings. - - * cleanup3.c (mythread): Cast return value to avoid warnings. - - * cleanup2.c (mythread): Cast return value to avoid warnings. - - * cleanup1.c (mythread): Cast return value to avoid warnings. - - * condvar5.c (mythread): Cast return value to avoid warnings. - - * condvar3.c (mythread): Cast return value to avoid warnings. - - * condvar6.c (mythread): Cast return value to avoid warnings. - - * condvar4.c (mythread): Cast return value to avoid warnings. - -2000-08-05 Ross Johnson - - * cancel2.c: Use __PtW32CatchAll macro if defined. - - * exception1.c: Use __PtW32CatchAll macro if defined. - -2000-08-02 Ross Johnson - - * tsd1.c: Fix typecasts of &result [g++ is now very fussy]. - - * test.h (assert): Return 0's explicitly to allay - g++ errors. - - * join2.c: Add explicit typecasts. - - * join1.c: Add explicit typecasts. - - * join0.c: Add explicit typecasts. - - * eyal1.c: Add explicit typecasts. - - * count1.c (main): Add type cast to remove g++ parse warning - [gcc-2.95.2 seems to have tightened up on this]. - - * Makefile (GLANG): Use c++ explicitly. - Remove MSVC sections (was commented out). - Add target to generate cpp output. - -2000-07-25 Ross Johnson - - * runtest.bat: modified to work under W98. - - * runall.bat: Add new tests; modified to work under W98. - It was ok under NT. - - * Makefile: Add new tests. - - * exception1.c: New; Test passing exceptions back to the - application and retaining library internal exceptions. - - * join0.c: New; Test a single join. - -2000-01-06 Ross Johnson - - * cleanup1.c: New; Test cleanup handler executes (when thread is - canceled). - - * cleanup2.c: New; Test cleanup handler executes (when thread is - not canceled). - - * cleanup3.c: New; Test cleanup handler does not execute - (when thread is not canceled). - -2000-01-04 Ross Johnson - - * cancel4.c: New; Test cancellation does not occur in deferred - cancellation threads with no cancellation points. - - * cancel3.c: New; Test asynchronous cancellation. - - * context1.c: New; Test context switching method for async - cancellation. - -1999-11-23 Ross Johnson - - * test.h: Add header includes; include local header versions rather - than system versions; rearrange the assert macro defines. - -1999-11-07 Ross Johnson - - * loadfree.c: New. Test loading and freeing the library (DLL). - -1999-10-30 Ross Johnson - - * cancel1.c: New. Test pthread_setcancelstate and - pthread_setcanceltype functions. - * eyal1.c (waste_time): Change calculation to avoid FP exception - on Aplhas - - Rich Peters - -Oct 14 1999 Ross Johnson - - * condvar7.c: New. Test broadcast after waiting thread is canceled. - * condvar8.c: New. Test multiple broadcasts. - * condvar9.c: New. Test multiple broadcasts with thread - cancellation. - -Sep 16 1999 Ross Johnson - - * rwlock6.c: New test. - -Sep 15 1999 Ross Johnson - - * rwlock1.c: New test. - * rwlock2.c: New test. - * rwlock3.c: New test. - * rwlock4.c: New test. - * rwlock5.c: New test. - -Aug 22 1999 Ross Johnson - - * runall.bat (join2): Add test. - -Aug 19 1999 Ross Johnson - - * join2.c: New test. - -Wed Aug 12 1999 Ross Johnson - - * Makefile (LIBS): Add -L. - -Mon May 31 10:25:01 1999 Ross Johnson - - * Makefile (GLANG): Add GCC language option. - -Sat May 29 23:29:04 1999 Ross Johnson - - * runall.bat (condvar5): Add new test. - - * runall.bat (condvar6): Add new test. - - * Makefile (condvar5) : Add new test. - - * Makefile (condvar6) : Add new test. - - * condvar5.c: New test for pthread_cond_broadcast(). - - * condvar6.c: New test for pthread_cond_broadcast(). - -Sun Apr 4 12:04:28 1999 Ross Johnson - - * tsd1.c (mythread): Change Sleep(0) to sched_yield(). - (sched.h): Include. - - * condvar3.c (mythread): Remove redundant Sleep(). - - * runtest.bat: Re-organised to make more informative. - -Fri Mar 19 1999 Ross Johnson - - * *.bat: redirect unwanted output to nul: - - * runall.bat: new. - - * cancel1.c: new. Not part of suite yet. - -Mon Mar 15 00:17:55 1999 Ross Johnson - - * mutex1.c: only test mutex init and destroy; add assertions. - - * count1.c: raise number of spawned threads to 60 (appears to - be the limit under Win98). - -Sun Mar 14 21:31:02 1999 Ross Johnson - - * test.h (assert): add assertion trace option. - Use: - "#define ASSERT_TRACE 1" to turn it on, - "#define ASSERT_TRACE 0" to turn it off (default). - - * condvar3.c (main): add more assertions. - - * condvar4.c (main): add more assertions. - - * condvar1.c (main): add more assertions. - -Fri Mar 12 08:34:15 1999 Ross Johnson - - * condvar4.c (cvthing): switch the order of the INITIALIZERs. - - * eyal1.c (main): Fix trylock loop; was not waiting for thread to lock - the "started" mutex. - -Wed Mar 10 10:41:52 1999 Ross Johnson - - * tryentercs.c: Apply typo patch from bje. - - * tryentercs2.c: Ditto. - -Sun Mar 7 10:41:52 1999 Ross Johnson - - * Makefile (condvar3, condvar4): Add tests. - - * condvar4.c (General): Reduce to simple test case; prerequisite - is condvar3.c; add description. - - * condvar3.c (General): Reduce to simple test case; prerequisite - is condvar2.c; add description. - - * condvar2.c (General): Reduce to simple test case; prerequisite - is condvar1.c; add description. - - * condvar1.c (General): Reduce to simple test case; add - description. - - * Template.c (Comments): Add generic test detail. - -1999-02-23 Ross Johnson - - * Template.c: Revamp. - - * condvar1.c: Add. - - * condvar2.c: Add. - - * Makefile: Add condvar1 condvar2 tests. - - * exit1.c, exit2.c, exit3.c: Cosmetic changes. - -1999-02-23 Ross Johnson - - * Makefile: Some refinement. - - * *.c: More exhaustive checking through assertions; clean up; - add some more tests. - - * Makefile: Now actually runs the tests. - - * tests.h: Define our own assert macro. The Mingw32 - version pops up a dialog but we want to run non-interactively. - - * equal1.c: use assert a little more directly so that it - prints the actual call statement. - - * exit1.c: Modify to return 0 on success, 1 on failure. - -1999-02-22 Ross Johnson - - * self2.c: Bring up to date. - - * self3.c: Ditto. - -1999-02-21 Ben Elliston - - * README: Update. - - * Makefile: New file. Run all tests automatically. Primitive tests - are run first; more complex tests are run last. - - * count1.c: New test. Validate the thread count. - - * exit2.c: Perform a simpler test. - - * exit3.c: New test. Replaces exit2.c, since exit2.c needs to - perform simpler checking first. - - * create1.c: Update to use the new testsuite exiting convention. - - * equal1.c: Likewise. - - * mutex1.c: Likewise. - - * mutex2.c: Likewise. - - * once1.c: Likewise. - - * self2.c: Likewise. - - * self3.c: Likewise. - - * tsd1.c: Likewise. - -1999-02-20 Ross Johnson - - * mutex2.c: Test static mutex initialisation. - - * test.h: New. Declares a table mapping error numbers to - error names. - -1999-01-17 Ross Johnson - - * runtest: New script to build and run a test in the tests directory. - -Wed Dec 30 11:22:44 1998 Ross Johnson - - * tsd1.c: Re-written. See comments at start of file. - * Template.c: New. Contains skeleton code and comment template - intended to fully document the test. - -Fri Oct 16 17:59:49 1998 Ross Johnson - - * tsd1.c (destroy_key): Add function. Change diagnostics. - -Thu Oct 15 17:42:37 1998 Ross Johnson - - * tsd1.c (mythread): Fix some casts and add some message - output. Fix inverted conditional. - -Mon Oct 12 02:12:29 1998 Ross Johnson - - * tsd1.c: New. Test TSD using 1 key and 2 threads. - -1998-09-13 Ben Elliston - - * eyal1.c: New file; contributed by Eyal Lebedinsky - . - -1998-09-12 Ben Elliston - - * exit2.c (func): Return a value. - (main): Call the right thread entry function. - -1998-07-22 Ben Elliston - - * exit2.c (main): Fix size of pthread_t array. - -1998-07-10 Ben Elliston - - * exit2.c: New file; test pthread_exit() harder. - - * exit1.c: New file; test pthread_exit(). diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/Debug.dsp b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/Debug.dsp deleted file mode 100644 index 191b978..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/Debug.dsp +++ /dev/null @@ -1,93 +0,0 @@ -# Microsoft Developer Studio Project File - Name="Debug" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=Debug - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "Debug.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "Debug.mak" CFG="Debug - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "Debug - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "Debug - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "Debug - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD BASE RSC /l 0xc09 /d "NDEBUG" -# ADD RSC /l 0xc09 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 - -!ELSEIF "$(CFG)" == "Debug - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /WX /Gm /ZI /Od /I ".." /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D "CLEANUP_C" /FR /YX /FD /GZ /c -# ADD BASE RSC /l 0xc09 /d "_DEBUG" -# ADD RSC /l 0xc09 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib pthreadVC2d.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:".." - -!ENDIF - -# Begin Target - -# Name "Debug - Win32 Release" -# Name "Debug - Win32 Debug" -# Begin Source File - -SOURCE=.\Debug.txt -# End Source File -# Begin Source File - -SOURCE=.\semaphore1.c -# End Source File -# End Target -# End Project diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/Debug.dsw b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/Debug.dsw deleted file mode 100644 index 5fd6af3..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/Debug.dsw +++ /dev/null @@ -1,29 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "Debug"=.\Debug.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/Debug.plg b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/Debug.plg deleted file mode 100644 index 22ce672..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/Debug.plg +++ /dev/null @@ -1,32 +0,0 @@ - - -
-

Build Log

-

---------------------Configuration: Debug - Win32 Debug-------------------- -

-

Command Lines

-Creating temporary file "C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\RSP9.tmp" with contents -[ -/nologo /MDd /W3 /WX /Gm /ZI /Od /I ".." /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D "CLEANUP_C" /FR"Debug/" /Fp"Debug/Debug.pch" /YX /Fo"Debug/" /Fd"Debug/" /FD /GZ /c -"E:\PTHREADS\pthreads.2\tests\semaphore1.c" -] -Creating command line "cl.exe @C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\RSP9.tmp" -Creating temporary file "C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\RSPA.tmp" with contents -[ -kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib pthreadVC2d.lib /nologo /subsystem:console /incremental:yes /pdb:"Debug/Debug.pdb" /debug /machine:I386 /out:"Debug/Debug.exe" /pdbtype:sept /libpath:".." -.\Debug\semaphore1.obj -] -Creating command line "link.exe @C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\RSPA.tmp" -

Output Window

-Compiling... -semaphore1.c -Linking... - - - -

Results

-Debug.exe - 0 error(s), 0 warning(s) -
- - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/Debug.txt b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/Debug.txt deleted file mode 100644 index 5323874..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/Debug.txt +++ /dev/null @@ -1,6 +0,0 @@ -This project is used to debug individual test case programs. - -To build and debug a test case: -- add the .c file to this project; -- remove any .c files from other test cases from this project. -- build and debug as usual. \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/GNUmakefile.in b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/GNUmakefile.in deleted file mode 100644 index 7a4623d..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/GNUmakefile.in +++ /dev/null @@ -1,270 +0,0 @@ -# Makefile for the pthreads test suite. -# If all of the .pass files can be created, the test suite has passed. -# -# -------------------------------------------------------------------------- -# -# Pthreads4w - POSIX Threads for Windows -# Copyright 1998 John E. Bossom -# Copyright 1999-2018, Pthreads4w contributors -# -# Homepage: https://sourceforge.net/projects/pthreads4w/ -# -# The current list of contributors is contained -# in the file CONTRIBUTORS included with the source -# code distribution. The list can also be seen at the -# following World Wide Web location: -# -# https://sourceforge.net/p/pthreads4w/wiki/Contributors/ -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library in the file COPYING.LIB; -# if not, write to the Free Software Foundation, Inc., -# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA -# -srcdir = @srcdir@ -top_srcdir = @top_srcdir@ -VPATH = @srcdir@ - -LOGFILE = testsuite.log - -builddir = @builddir@ -top_builddir = @top_builddir@ - -PTW32_VER = 3$(EXTRAVERSION) - -CP = cp -f -MV = mv -f -RM = rm -f -CAT = cat -GREP = grep -WC = wc -TEE = tee -MKDIR = mkdir -ECHO = echo -TOUCH = $(ECHO) Passed > -TESTFILE = test -f -TESTDIR = test -d -AND = && - -# For cross compiling use e.g. -# # make CROSS=i386-mingw32msvc- clean GC -#CROSS = - -# For cross testing use e.g. -# # make RUN=wine CROSS=i386-mingw32msvc- clean GC -RUN = - -AR = $(CROSS)@AR@ -DLLTOOL = $(CROSS)@DLLTOOL@ -CC = $(CROSS)@CC@ -CXX = $(CROSS)@CXX@ -RANLIB = $(CROSS)@RANLIB@ - -# -# Mingw -# -XLIBS = -XXCFLAGS= -XXLIBS = -OPT = -O3 -DOPT = -g -O0 -CFLAGS = ${OPT} $(ARCH) -UNDEBUG -Wall -Wno-missing-braces $(XXCFLAGS) -LFLAGS = $(ARCH) $(XXLFLAGS) -# -# Uncomment this next to link the GCC/C++ runtime libraries statically -# (Be sure to read about these options and their associated caveats -# at http://gcc.gnu.org/onlinedocs/gcc/Link-Options.html) -# -# NOTE 1: Doing this appears to break GCE:pthread_cleanup_*(), which -# relies on C++ class destructors being called when leaving scope. -# -# NOTE 2: If you do this DO NOT distribute your pthreads DLLs with -# the official filenaming, i.e. pthreadVC2.dll, etc. Instead, change PTW32_VER -# above to "2slgcc" for example, to build "pthreadGC2slgcc.dll", etc. -# -#LFLAGS += -static-libgcc -static-libstdc++ - -BUILD_DIR = .. -INCLUDES = -I ${top_srcdir} - -TEST = GC - -# Default lib version -GCX = GC$(PTW32_VER) - -# Files we need to run the tests -# - paths are relative to pthreads build dir. -HDR = pthread.h semaphore.h sched.h -LIB = libpthread$(GCX).a -DLL = pthread$(GCX).dll -# The next path is relative to $BUILD_DIR -QAPC = # ../QueueUserAPCEx/User/quserex.dll - -include ${srcdir}/common.mk - -.INTERMEDIATE: $(ALL_KNOWN_TESTS:%=%.exe) $(BENCHTESTS:%=%.exe) -.SECONDARY: $(ALL_KNOWN_TESTS:%=%.exe) $(ALL_KNOWN_TESTS:%=%.pass) $(BENCHTESTS:%=%.exe) $(BENCHTESTS:%=%.bench) -.PRECIOUS: $(ALL_KNOWN_TESTS:%=%.exe) $(ALL_KNOWN_TESTS:%=%.pass) $(BENCHTESTS:%=%.exe) $(BENCHTESTS:%=%.bench) - -ASM = $(ALL_KNOWN_TESTS:%=%.s) -TESTS = $(ALL_KNOWN_TESTS) -BENCHRESULTS = $(BENCHTESTS:%=%.bench) - -# -# To build and run "foo.exe" and "bar.exe" only use, e.g.: -# make clean GC NO_DEPS=1 TESTS="foo bar" -# -# To build and run "foo.exe" and "bar.exe" and run all prerequisite tests -# use, e.g.: -# make clean GC TESTS="foo bar" -# -# Set TESTS to one or more tests. -# -ifndef NO_DEPS -include ${srcdir}/runorder.mk -endif - -help: - @ $(ECHO) "Run one of the following command lines:" - @ $(ECHO) "$(MAKE) clean GC (to test using GC dll with C (no EH) applications)" - @ $(ECHO) "$(MAKE) clean GCX (to test using GC dll with C++ (EH) applications)" - @ $(ECHO) "$(MAKE) clean GCE (to test using GCE dll with C++ (EH) applications)" - @ $(ECHO) "$(MAKE) clean GC-bench (to benchtest using GNU C dll with C cleanup code)" - @ $(ECHO) "$(MAKE) clean GC-debug (to test using GC dll with C (no EH) applications)" - @ $(ECHO) "$(MAKE) clean GC-static (to test using GC static lib with C (no EH) applications)" - @ $(ECHO) "$(MAKE) clean GC-static-debug (to test using GC static lib with C (no EH) applications)" - @ $(ECHO) "$(MAKE) clean GCE-static (to test using GC static lib with C (no EH) applications)" - @ $(ECHO) "$(MAKE) clean GCE-static-debug (to test using GC static lib with C (no EH) applications)" - @ $(ECHO) "$(MAKE) clean GCE-debug (to test using GCE dll with C++ (EH) applications)" - @ $(ECHO) "$(MAKE) clean GCX-static (to test using GC static lib with C++ applications)" - @ $(ECHO) "$(MAKE) clean GCX-static-debug (to test using GC static lib with C++ applications)" - @ $(ECHO) "$(MAKE) clean GCX-debug (to test using GCE dll with C++ (EH) applications)" - @ $(ECHO) "$(MAKE) clean GC TESTS="foo bar" (to build individual tests \"foo.c and bar.c\" with C and run using GC dll)" - -GC: - @ $(MAKE) --no-builtin-rules TEST=$@ GCX="GC$(PTW32_VER)" CC=$(CC) XXCFLAGS="-D__PTW32_CLEANUP_C" allpassed - -GC-asm: - @ $(MAKE) --no-builtin-rules TEST=$@ GCX="GC$(PTW32_VER)" CC=$(CC) XXCFLAGS="-D__PTW32_CLEANUP_C" all-asm - -GC-bench: - @ $(MAKE) --no-builtin-rules TEST=$@ GCX="GC$(PTW32_VER)" CC=$(CC) XXCFLAGS="-D__PTW32_CLEANUP_C" XXLIBS="benchlib.o" all-bench - -GC-bench-debug: - @ $(MAKE) --no-builtin-rules TEST=$@ GCX="GC$(PTW32_VER)d" CC=$(CC) XXCFLAGS="-D__PTW32_CLEANUP_C" XXLIBS="benchlib.o" OPT="${DOPT}" all-bench - -GC-debug: - @ $(MAKE) --no-builtin-rules TEST=$@ GCX="GC$(PTW32_VER)d" CC=$(CC) XXCFLAGS="-D__PTW32_CLEANUP_C" OPT="${DOPT}" allpassed - -GC-static GC-small-static: - @ $(MAKE) --no-builtin-rules TEST=$@ GCX="GC$(PTW32_VER)" CC=$(CC) XXCFLAGS="-D__PTW32_CLEANUP_C -D__PTW32_STATIC_LIB -Wl,-Bstatic" DLL="" allpassed - -GC-static-debug GC-small-static-debug: - @ $(MAKE) --no-builtin-rules TEST=$@ GCX="GC$(PTW32_VER)d" CC=$(CC) XXCFLAGS="-D__PTW32_CLEANUP_C -D__PTW32_STATIC_LIB -Wl,-Bstatic" OPT="$(DOPT)" DLL="" allpassed - -GCE: - @ $(MAKE) --no-builtin-rules TEST=$@ GCX="GCE$(PTW32_VER)" CC=$(CXX) XXCFLAGS="-mthreads -D__PTW32_CLEANUP_CXX" allpassed - -GCE-debug: - @ $(MAKE) --no-builtin-rules TEST=$@ GCX="GCE$(PTW32_VER)d" CC=$(CXX) XXCFLAGS="-D__PTW32_CLEANUP_CXX" OPT="${DOPT}" allpassed - -GCE-static GCE-small-static: - @ $(MAKE) --no-builtin-rules TEST=$@ GCX="GCE$(PTW32_VER)" CC=$(CXX) XXCFLAGS="-D__PTW32_CLEANUP_CXX -D__PTW32_STATIC_LIB -Wl,-Bstatic" DLL="" allpassed - -GCE-static-debug GCE-small-static-debug: - @ $(MAKE) --no-builtin-rules TEST=$@ GCX="GCE$(PTW32_VER)d" CC=$(CXX) XXCFLAGS="-D__PTW32_CLEANUP_CXX -D__PTW32_STATIC_LIB -Wl,-Bstatic" OPT="$(DOPT)" DLL="" allpassed - -GCX: - @ $(MAKE) --no-builtin-rules TEST=$@ GCX="GC$(PTW32_VER)" CC=$(CXX) XXCFLAGS="-mthreads -D__PTW32_CLEANUP_C" allpassed - -GCX-debug: - @ $(MAKE) --no-builtin-rules TEST=$@ GCX="GC$(PTW32_VER)d" CC=$(CXX) XXCFLAGS="-D__PTW32_CLEANUP_C" OPT="${DOPT}" allpassed - -GCX-static GCX-small-static: - @ $(MAKE) --no-builtin-rules TEST=$@ GCX="GC$(PTW32_VER)" CC=$(CXX) XXCFLAGS="-D__PTW32_CLEANUP_C -D__PTW32_STATIC_LIB -Wl,-Bstatic" DLL="" allpassed - -GCX-static-debug GCX-small-static-debug: - @ $(MAKE) --no-builtin-rules TEST=$@ GCX="GC$(PTW32_VER)d" CC=$(CXX) XXCFLAGS="-D__PTW32_CLEANUP_C -D__PTW32_STATIC_LIB -Wl,-Bstatic" OPT="$(DOPT)" DLL="" allpassed - -all-asm: $(ASM) - @ $(ECHO) "ALL TESTS COMPILED TO ASSEMBLER CODE" - -allpassed: $(HDR) $(LIB) $(DLL) $(QAPC) $(TESTS:%=%.pass) - @ $(ECHO) "ALL TESTS COMPLETED. Check the logfile: $(LOGFILE)" - @ $(ECHO) "FAILURES: $$( $(GREP) FAILED $(LOGFILE) | $(WC) -l ) " - @ - ! $(GREP) FAILED $(LOGFILE) - @ $(MV) $(LOGFILE) ../$(TEST)-$(LOGFILE) - -all-bench: $(HDR) $(LIB) $(DLL) $(QAPC) $(XXLIBS) $(BENCHRESULTS) - @ $(ECHO) "ALL BENCH TESTS COMPLETED. Check the logfile: $(LOGFILE)" - @ $(ECHO) "FAILURES: $$( $(GREP) FAILED $(LOGFILE) | $(WC) -l ) " - @ - ! $(GREP) FAILED $(LOGFILE) - @ $(MV) $(LOGFILE) ../$(TEST)-$(LOGFILE) - -cancel9.exe: XLIBS = -lws2_32 - -%.pass: %.exe - @ $(ECHO) Running $(TEST) test \"$*\" | tee -a $(LOGFILE) - @ (PATH=${top_builddir}:$$PATH $(RUN) ./$* \ - && { $(ECHO) Passed; $(TOUCH) $@; } || { $(ECHO) FAILED: $* ; $(ECHO) ; } ) \ - 2>&1 | tee -a $(LOGFILE) - -%.bench: %.exe - @ $(ECHO) Running $(TEST) test \"$*\" | tee -a $(LOGFILE) - @ (PATH=${top_builddir}:$$PATH $(RUN) ./$* \ - && { $(ECHO) Done; $(TOUCH) $@; } || { $(ECHO) FAILED ; $(ECHO) ; } ) \ - 2>&1 | tee -a $(LOGFILE) - -%.exe: %.c - $(CC) $(CFLAGS) $(INCLUDES) $(LFLAGS) -o $@ $< -L.. -lpthread$(GCX) $(XLIBS) $(XXLIBS) - -%.pre: %.c $(HDR) - $(CC) -E $(CFLAGS) -o $@ $< $(INCLUDES) - -%.s: %.c $(HDR) - @ $(ECHO) Compiling $@ - $(CC) -S $(CFLAGS) -o $@ $< $(INCLUDES) - -$(HDR) $(LIB) $(DLL) $(QAPC): $(LOGFILE) -# @ $(ECHO) Copying $(BUILD_DIR)/$@ -# @ $(TESTFILE) $(BUILD_DIR)/$@ $(AND) $(CP) $(BUILD_DIR)/$@ . - -.PHONY: $(LOGFILE) -$(LOGFILE):; > $@ - -benchlib.o: benchlib.c - @ $(ECHO) Compiling $@ - $(CC) -c $(CFLAGS) $< $(INCLUDES) - -clean: - - $(RM) *.dll - - $(RM) *.lib - - $(RM) _ptw32.h - - $(RM) pthread.h - - $(RM) semaphore.h - - $(RM) sched.h - - $(RM) *.a - - $(RM) *.e - - $(RM) *.i - - $(RM) *.o - - $(RM) *.s - - $(RM) *.so - - $(RM) *.obj - - $(RM) *.pdb - - $(RM) *.exe - - $(RM) *.manifest - - $(RM) *.pass - - $(RM) *.bench - -realclean: clean - - $(RM) *.log diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/README b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/README deleted file mode 100644 index 65d46cc..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/README +++ /dev/null @@ -1,47 +0,0 @@ -Running test cases in this directory ------------------------------------- - -These make scripts expect to be able to copy the dll, library -and header files from this directory's parent directory, -which should be the pthreads-win32 source directory. - -MS VC nmake -------------- - -Run the target corresponding to the DLL version being tested: - -nmake clean VC - -or: - -nmake clean VS - - -GNU GCC make ------------- - -Run "make clean" and then "make". See the "Known bugs" section -in ..\README. - - -Writing Test Cases ------------------- - -Tests written in this test suite should behave in the following manner: - - * If a test fails, leave main() with a result of 1. - - * If a test succeeds, leave main() with a result of 0. - - * No diagnostic output should appear when the test is succeeding - unless it is particularly useful to visualise test behaviour. - Diagnostic output should be emitted if something in the test - fails, to help determine the cause of the test failure. Use assert() - for all API calls if possible. - -Notes: ------- - -Many test cases use knowledge of implementation internals which are supposed -to be opaque to portable applications. These should not be used as examples -of methods that can be conformantly applied to application code. diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/README.BENCHTESTS b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/README.BENCHTESTS deleted file mode 100644 index 448570c..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/README.BENCHTESTS +++ /dev/null @@ -1,74 +0,0 @@ - ------------- -Benchmarking ------------- -There is a set a benchmarking programs in the -"tests" directory. These should be runnable using the -following command-lines corresponding to each of the possible -library builds: - -MSVC: -nmake clean VC-bench -nmake clean VCE-bench -nmake clean VSE-bench - -Mingw32: -make clean GC-bench -make clean GCE-bench - -UWIN: -The benchtests are run as part of the testsuite. - - -Mutex benchtests ----------------- - -benchtest1 - Lock plus unlock on an unlocked mutex. -benchtest2 - Lock plus unlock on a locked mutex. -benchtest3 - Trylock on a locked mutex. -benchtest4 - Trylock plus unlock on an unlocked mutex. - - -Each test times up to three alternate synchronisation -implementations as a reference, and then times each of -the four mutex types provided by the library. Each is -described below: - -Simple Critical Section -- uses a simple Win32 critical section. There is no -additional overhead for this case as there is in the -remaining cases. - -POSIX mutex implemented using a Critical Section -- The old implementation which uses runtime adaptation -depending on the Windows variant being run on. When -the pthreads DLL was run on WinNT or higher then -POSIX mutexes would use Win32 Critical Sections. - -POSIX mutex implemented using a Win32 Mutex -- The old implementation which uses runtime adaptation -depending on the Windows variant being run on. When -the pthreads DLL was run on Win9x then POSIX mutexes -would use Win32 Mutexes (because TryEnterCriticalSection -is not implemented on Win9x). - -PTHREAD_MUTEX_DEFAULT -PTHREAD_MUTEX_NORMAL -PTHREAD_MUTEX_ERRORCHECK -PTHREAD_MUTEX_RECURSIVE -- The current implementation supports these mutex types. -The underlying basis of POSIX mutexes is now the same -irrespective of the Windows variant, and should therefore -have consistent performance. - - -Semaphore benchtests --------------------- - -benchtest5 - Timing for various uncontended cases. - - -In all benchtests, the operation is repeated a large -number of times and an average is calculated. Loop -overhead is measured and subtracted from all test times. - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/Wmakefile b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/Wmakefile deleted file mode 100644 index 053880d..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/Wmakefile +++ /dev/null @@ -1,365 +0,0 @@ -# Watcom makefile for the pthreads test suite. -# If all of the .pass files can be created, the test suite has passed. -# -# -------------------------------------------------------------------------- -# -# Pthreads-win32 - POSIX Threads Library for Win32 -# Copyright(C) 1998 John E. Bossom -# Copyright(C) 1999,2012 Pthreads-win32 contributors -# -# Contact Email: rpj@callisto.canberra.edu.au -# -# The current list of contributors is contained -# in the file CONTRIBUTORS included with the source -# code distribution. The list can also be seen at the -# following World Wide Web location: -# https://sourceforge.net/projects/pthreads4w/contributors.html -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library in the file COPYING.LIB; -# if not, write to the Free Software Foundation, Inc., -# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA -# - - -DLL_VER = 2 - -.EXTENSIONS: - -.EXTENSIONS: .pass .exe .obj .i .c - -CP = copy -RM = erase -CAT = type -MKDIR = mkdir -TOUCH = echo Passed > -ECHO = @echo - -CPHDR = pthread.h semaphore.h sched.h - -OPTIM = -od - -XXLIBS = - -# C++ Exceptions -WCEFLAGS = -xs -d__PtW32NoCatchWarn -d__PTW32_CLEANUP_CXX -WCELIB = pthreadWCE$(DLL_VER).lib -WCEDLL = pthreadWCE$(DLL_VER).dll -# C cleanup code -WCFLAGS = -d__PTW32_CLEANUP_C -WCLIB = pthreadWC$(DLL_VER).lib -WCDLL = pthreadWC$(DLL_VER).dll -# C++ Exceptions in application - using WC version of pthreads dll -WCXFLAGS = -xs -d__PTW32_CLEANUP_C - -CFLAGS= -w4 -e25 -d_REENTRANT -zq -bm $(OPTIM) -5r -bt=nt -mf -d2 - -LFLAGS= -INCLUDES= -i=. -BUILD_DIR=.. - -# The next path is relative to $BUILD_DIR -QAPC = # ..\QueueUserAPCEx\User\quserex.dll - -COPYFILES = $(CPHDR) $(CPLIB) $(CPDLL) $(QAPC) - -TEST = -EHFLAGS = - -# If a test case returns a non-zero exit code to the shell, make will -# stop. - -PASSES = sizes.pass & - self1.pass mutex5.pass & - mutex1.pass mutex1n.pass mutex1e.pass mutex1r.pass & - semaphore1.pass semaphore2.pass semaphore3.pass & - mutex2.pass mutex3.pass & - mutex2r.pass mutex2e.pass mutex3r.pass mutex3e.pass & - condvar1.pass condvar1_1.pass condvar1_2.pass condvar2.pass condvar2_1.pass & - exit1.pass create1.pass create2.pass reuse1.pass reuse2.pass equal1.pass & - sequence1.pass kill1.pass valid1.pass valid2.pass & - exit2.pass exit3.pass exit4 exit5 & - join0.pass join1.pass detach1.pass join2.pass join3.pass join4.pass & - mutex4.pass mutex6.pass mutex6n.pass mutex6e.pass mutex6r.pass & - mutex6s.pass mutex6es.pass mutex6rs.pass & - mutex7.pass mutex7n.pass mutex7e.pass mutex7r.pass & - mutex8.pass mutex8n.pass mutex8e.pass mutex8r.pass & - robust1.pass robust2.pass robust3.pass robust4.pass robust5.pass & - count1.pass & - once1.pass once2.pass once3.pass once4.pass tsd1.pass & - self2.pass & - cancel1.pass cancel2.pass & - semaphore4.pass semaphore4t.pass semaphore5.pass & - delay1.pass delay2.pass eyal1.pass & - condvar3.pass condvar3_1.pass condvar3_2.pass condvar3_3.pass & - condvar4.pass condvar5.pass condvar6.pass & - condvar7.pass condvar8.pass condvar9.pass & - errno1.pass & - rwlock1.pass rwlock2.pass rwlock3.pass rwlock4.pass rwlock5.pass & - rwlock6.pass rwlock7.pass rwlock8.pass & - rwlock2_t.pass rwlock3_t.pass rwlock4_t.pass rwlock5_t.pass rwlock6_t.pass rwlock6_t2.pass & - context1.pass & - cancel3.pass cancel4.pass cancel5.pass cancel6a.pass cancel6d.pass & - cancel7 cancel8 & - cleanup0.pass cleanup1.pass cleanup2.pass cleanup3.pass & - priority1.pass priority2.pass inherit1.pass & - spin1.pass spin2.pass spin3.pass spin4.pass & - barrier1.pass barrier2.pass barrier3.pass barrier4.pass barrier5.pass & - exception1.pass exception2.pass exception3_0.pass exception3.pass & - cancel9.pass & - affinity1.pass affinity2.pass affinity3.pass affinity4.pass affinity5.pass & - stress1.pass - -BENCHRESULTS = & - benchtest1.bench benchtest2.bench benchtest3.bench benchtest4.bench benchtest5.bench - -help: .SYMBOLIC - @ $(ECHO) Run one of the following command lines: - @ $(ECHO) wmake /f Wmakefile clean WC (to test using WC dll with wcc386 (no EH) applications) - @ $(ECHO) wmake /f Wmakefile clean WCX (to test using WC dll with wpp386 (EH) applications) - @ $(ECHO) wmake /f Wmakefile clean WCE (to test using the WCE dll with wpp386 EH applications) - @ $(ECHO) wmake /f Wmakefile clean WC-bench (to benchtest using WC dll with C bench app) - @ $(ECHO) wmake /f Wmakefile clean WCX-bench (to benchtest using WC dll with C++ bench app) - @ $(ECHO) wmake /f Wmakefile clean WCE-bench (to benchtest using WCE dll with C++ bench app) - -all: .SYMBOLIC - @ wmake /f Wmakefile clean WC - @ wmake /f Wmakefile clean WCX - @ wmake /f Wmakefile clean WCE - @ wmake /f Wmakefile clean WSE - @ wmake /f Wmakefile clean WC-bench - -tests: $(CPLIB) $(CPDLL) $(CPHDR) $(PASSES) .SYMBOLIC - @ $(ECHO) ALL TESTS PASSED! Congratulations! - -benchtests: $(CPLIB) $(CPDLL) $(CPHDR) $(XXLIBS) $(BENCHRESULTS) .SYMBOLIC - @ $(ECHO) ALL BENCH TESTS DONE. - -$(BENCHRESULTS): ($[*).exe - @ $(ECHO) ... Running $(TEST) benchtest: ($[*).exe - @ .\($[*).exe - @ $(ECHO) ...... Done - @ $(TOUCH) ($[*).bench - -WCE: .SYMBOLIC - @ wmake /f Wmakefile CC=wpp386 TEST="$@" CPLIB="$(WCELIB)" CPDLL="$(WCEDLL)" EHFLAGS="$(WCEFLAGS)" tests - -WC: .SYMBOLIC - @ wmake /f Wmakefile CC=wcc386 TEST="$@" CPLIB="$(WCLIB)" CPDLL="$(WCDLL)" EHFLAGS="$(WCFLAGS)" tests - -WCX: .SYMBOLIC - @ wmake /f Wmakefile CC=wpp386 TEST="$@" CPLIB="$(WCLIB)" CPDLL="$(WCDLL)" EHFLAGS="$(WCXFLAGS)" tests - -WCE-bench: .SYMBOLIC - @ wmake /f Wmakefile CC=wpp386 TEST="$@" CPLIB="$(WCELIB)" CPDLL="$(WCEDLL)" EHFLAGS="$(WCEFLAGS)" XXLIBS="benchlib.o" benchtests - -WC-bench: .SYMBOLIC - @ wmake /f Wmakefile CC=wcc386 TEST="$@" CPLIB="$(WCLIB)" CPDLL="$(WCDLL)" EHFLAGS="$(WCFLAGS)" XXLIBS="benchlib.o" benchtests - -WCX-bench: .SYMBOLIC - @ wmake /f Wmakefile CC=wpp386 TEST="$@" CPLIB="$(WCLIB)" CPDLL="$(WCDLL)" EHFLAGS="$(WCXFLAGS)" XXLIBS="benchlib.o" benchtests - -sizes.pass: sizes.exe - @ $(ECHO) ... Running $(TEST) test: $^* - @ $[@ > SIZES.$(TEST) - @ $(CAT) SIZES.$(TEST) - @ $(ECHO) ...... Passed - @ $(TOUCH) $^@ - -.exe.pass: - @ $(ECHO) ... Running $(TEST) test: $^* - @ $[@ - @ $(ECHO) ...... Passed - @ $(TOUCH) $^@ - -.obj.exe: - @ $(ECHO) wlink NAME $^@ FILE $[@ LIBRARY $(CPLIB) OPTION quiet - @ wlink NAME $^@ FILE $[@ LIBRARY $(CPLIB) OPTION quiet - -.c.obj: - @ $(ECHO) $(CC) $^* $(EHFLAGS) $(CFLAGS) $(INCLUDES) - @ $(CC) $^* $(EHFLAGS) $(CFLAGS) $(INCLUDES) - -.c.i: - @ $(CC) /P $(EHFLAGS) $(CFLAGS) $(INCLUDES) $< - -$(COPYFILES): .SYMBOLIC - @ $(ECHO) Copying $(BUILD_DIR)\$@ - @ $(CP) $(BUILD_DIR)\$@ . - -pthread.dll: - @ $(CP) $(CPDLL) $*.dll - @ $(CP) $(CPLIB) $*.lib - -clean: .SYMBOLIC - @ if exist *.dll $(RM) *.dll - @ if exist *.lib $(RM) *.lib - @ if exist *.err $(RM) *.err - @ if exist pthread.h $(RM) pthread.h - @ if exist semaphore.h $(RM) semaphore.h - @ if exist sched.h $(RM) sched.h - @ if exist *.e $(RM) *.e - @ if exist *.i $(RM) *.i - @ if exist *.obj $(RM) *.obj - @ if exist *.pdb $(RM) *.pdb - @ if exist *.o $(RM) *.o - @ if exist *.asm $(RM) *.asm - @ if exist *.exe $(RM) *.exe - @ if exist *.manifest $(RM) *.manifest - @ if exist *.pass $(RM) *.pass - @ if exist *.bench $(RM) *.bench - @ if exist *.log $(RM) *.log - @ $(ECHO) Clean completed. - -benchtest1.bench: -benchtest2.bench: -benchtest3.bench: -benchtest4.bench: -benchtest5.bench: - -affinity1.pass: -affinity2.pass: affinity1.pass -affinity3.pass: affinity2.pass -affinity4.pass: affinity3.pass -affinity5.pass: affinity4.pass -barrier1.pass: semaphore4.pass -barrier2.pass: barrier1.pass -barrier3.pass: barrier2.pass -barrier4.pass: barrier3.pass -barrier5.pass: barrier4.pass -cancel1.pass: create1.pass -cancel2.pass: cancel1.pass -cancel3.pass: context1.pass -cancel4.pass: cancel3.pass -cancel5.pass: cancel3.pass -cancel6a.pass: cancel3.pass -cancel6d.pass: cancel3.pass -cancel7.pass: kill1.pass -cancel8.pass: cancel7.pass -cleanup0.pass: cancel5.pass -cleanup1.pass: cleanup0.pass -cleanup2.pass: cleanup1.pass -cleanup3.pass: cleanup2.pass -condvar1.pass: -condvar1_1.pass: condvar1.pass -condvar1_2.pass: join2.pass -condvar2.pass: condvar1.pass -condvar2_1.pass: condvar2.pass join2.pass -condvar3.pass: create1.pass condvar2.pass -condvar3_1.pass: condvar3.pass join2.pass -condvar3_2.pass: condvar3_1.pass -condvar3_3.pass: condvar3_2.pass -condvar4.pass: create1.pass -condvar5.pass: condvar4.pass -condvar6.pass: condvar5.pass -condvar7.pass: condvar6.pass cleanup1.pass -condvar8.pass: condvar7.pass -condvar9.pass: condvar8.pass -context1.pass: cancel1.pass -count1.pass: join1.pass -create1.pass: mutex2.pass -create2.pass: create1.pass -delay1.pass: -delay2.pass: delay1.pass -detach1.pass: join0.pass -equal1.pass: create1.pass -errno1.pass: mutex3.pass -exception1.pass: cancel4.pass -exception2.pass: exception1.pass -exception3_0.pass: exception2.pass -exception3.pass: exception3_0.pass -exit1.pass: -exit2.pass: create1.pass -exit3.pass: create1.pass -exit4.pass: -exit5.pass: kill1.pass -eyal1.pass: tsd1.pass -inherit1.pass: join1.pass priority1.pass -join0.pass: create1.pass -join1.pass: create1.pass -join2.pass: create1.pass -join3.pass: join2.pass -join4.pass: join3.pass -kill1.pass: -mutex1.pass: self1.pass -mutex1n.pass: mutex1.pass -mutex1e.pass: mutex1.pass -mutex1r.pass: mutex1.pass -mutex2.pass: mutex1.pass -mutex2r.pass: mutex2.pass -mutex2e.pass: mutex2.pass -mutex3.pass: create1.pass -mutex3r.pass: mutex3.pass -mutex3e.pass: mutex3.pass -mutex4.pass: mutex3.pass -mutex5.pass: -mutex6.pass: mutex4.pass -mutex6n.pass: mutex4.pass -mutex6e.pass: mutex4.pass -mutex6r.pass: mutex4.pass -mutex6s.pass: mutex6.pass -mutex6rs.pass: mutex6r.pass -mutex6es.pass: mutex6e.pass -mutex7.pass: mutex6.pass -mutex7n.pass: mutex6n.pass -mutex7e.pass: mutex6e.pass -mutex7r.pass: mutex6r.pass -mutex8.pass: mutex7.pass -mutex8n.pass: mutex7n.pass -mutex8e.pass: mutex7e.pass -mutex8r.pass: mutex7r.pass -once1.pass: create1.pass -once2.pass: once1.pass -once3.pass: once2.pass -once4.pass: once3.pass -priority1.pass: join1.pass -priority2.pass: priority1.pass barrier3.pass -reuse1.pass: create2.pass -reuse2.pass: reuse1.pass -robust1.pass: mutex8r.pass -robust2.pass: mutex8r.pass -robust3.pass: robust2.pass -robust4.pass: robust3.pass -robust5.pass: robust4.pass -rwlock1.pass: condvar6.pass -rwlock2.pass: rwlock1.pass -rwlock3.pass: rwlock2.pass join2.pass -rwlock4.pass: rwlock3.pass -rwlock5.pass: rwlock4.pass -rwlock6.pass: rwlock5.pass -rwlock7.pass: rwlock6.pass -rwlock2_t.pass: rwlock2.pass -rwlock3_t.pass: rwlock2_t.pass -rwlock4_t.pass: rwlock3_t.pass -rwlock5_t.pass: rwlock4_t.pass -rwlock6_t.pass: rwlock5_t.pass -rwlock6_t2.pass: rwlock6_t.pass -self1.pass: -self2.pass: create1.pass -semaphore1.pass: -semaphore2.pass: -semaphore3.pass: semaphore2.pass -semaphore4.pass: semaphore3.pass cancel1.pass -semaphore4t.pass: semaphore4.pass -semaphore5.pass: semaphore4.pass -sequence1.pass: reuse2.pass -sizes.pass: -spin1.pass: -spin2.pass: spin1.pass -spin3.pass: spin2.pass -spin4.pass: spin3.pass -stress1.pass: -tsd1.pass: join1.pass -valid1.pass: join1.pass -valid2.pass: valid1.pass -cancel9.pass: cancel8.pass diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/affinity1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/affinity1.c deleted file mode 100644 index 4c4577e..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/affinity1.c +++ /dev/null @@ -1,123 +0,0 @@ -/* - * affinity1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Basic test of CPU_*() support routines. - * - */ - -#if ! defined(WINCE) - -#include "test.h" - -int -main() -{ - unsigned int cpu; - cpu_set_t newmask; - cpu_set_t src1mask; - cpu_set_t src2mask; - cpu_set_t src3mask; - - CPU_ZERO(&newmask); - CPU_ZERO(&src1mask); - memset(&src2mask, 0, sizeof(cpu_set_t)); - assert(memcmp(&src1mask, &src2mask, sizeof(cpu_set_t)) == 0); - assert(CPU_EQUAL(&src1mask, &src2mask)); - assert(CPU_COUNT(&src1mask) == 0); - - CPU_ZERO(&src1mask); - CPU_ZERO(&src2mask); - CPU_ZERO(&src3mask); - - for (cpu = 0; cpu < sizeof(cpu_set_t)*8; cpu += 2) - { - CPU_SET(cpu, &src1mask); /* 0b01010101010101010101010101010101 */ - } - for (cpu = 0; cpu < sizeof(cpu_set_t)*4; cpu++) - { - CPU_SET(cpu, &src2mask); /* 0b00000000000000001111111111111111 */ - } - for (cpu = sizeof(cpu_set_t)*4; cpu < sizeof(cpu_set_t)*8; cpu += 2) - { - CPU_SET(cpu, &src2mask); /* 0b01010101010101011111111111111111 */ - } - for (cpu = 0; cpu < sizeof(cpu_set_t)*8; cpu += 2) - { - CPU_SET(cpu, &src3mask); /* 0b01010101010101010101010101010101 */ - } - - assert(CPU_COUNT(&src1mask) == (sizeof(cpu_set_t)*4)); - assert(CPU_COUNT(&src2mask) == ((sizeof(cpu_set_t)*4 + (sizeof(cpu_set_t)*2)))); - assert(CPU_COUNT(&src3mask) == (sizeof(cpu_set_t)*4)); - CPU_SET(0, &newmask); - CPU_SET(1, &newmask); - CPU_SET(3, &newmask); - assert(CPU_ISSET(1, &newmask)); - CPU_CLR(1, &newmask); - assert(!CPU_ISSET(1, &newmask)); - CPU_OR(&newmask, &src1mask, &src2mask); - assert(CPU_EQUAL(&newmask, &src2mask)); - CPU_AND(&newmask, &src1mask, &src2mask); - assert(CPU_EQUAL(&newmask, &src1mask)); - CPU_XOR(&newmask, &src1mask, &src3mask); - memset(&src2mask, 0, sizeof(cpu_set_t)); - assert(memcmp(&newmask, &src2mask, sizeof(cpu_set_t)) == 0); - - /* - * Need to confirm the bitwise logical right-shift in CpuCount(). - * i.e. zeros inserted into MSB on shift because cpu_set_t is - * unsigned. - */ - CPU_ZERO(&src1mask); - for (cpu = 1; cpu < sizeof(cpu_set_t)*8; cpu += 2) - { - CPU_SET(cpu, &src1mask); /* 0b10101010101010101010101010101010 */ - } - assert(CPU_ISSET(sizeof(cpu_set_t)*8-1, &src1mask)); - assert(CPU_COUNT(&src1mask) == (sizeof(cpu_set_t)*4)); - - return 0; -} - -#else - -#include - -int -main() -{ - fprintf(stderr, "Test N/A for this target environment.\n"); - return 0; -} - -#endif diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/affinity2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/affinity2.c deleted file mode 100644 index 73bfb4b..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/affinity2.c +++ /dev/null @@ -1,114 +0,0 @@ -/* - * affinity2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Have the process switch CPUs. - * - */ - -#if ! defined(WINCE) - -#include "test.h" - -int -main() -{ - unsigned int cpu; - int result; - cpu_set_t newmask; - cpu_set_t mask; - cpu_set_t switchmask; - cpu_set_t flipmask; - - CPU_ZERO(&mask); - CPU_ZERO(&switchmask); - CPU_ZERO(&flipmask); - - for (cpu = 0; cpu < sizeof(cpu_set_t)*8; cpu += 2) - { - CPU_SET(cpu, &switchmask); /* 0b01010101010101010101010101010101 */ - } - for (cpu = 0; cpu < sizeof(cpu_set_t)*8; cpu++) - { - CPU_SET(cpu, &flipmask); /* 0b11111111111111111111111111111111 */ - } - - assert(sched_getaffinity(0, sizeof(cpu_set_t), &newmask) == 0); - assert(!CPU_EQUAL(&newmask, &mask)); - - result = sched_setaffinity(0, sizeof(cpu_set_t), &newmask); - if (result != 0) - { - int err = -#if defined (__PTW32_USES_SEPARATE_CRT) - GetLastError(); -#else - errno; -#endif - - assert(err != ESRCH); - assert(err != EFAULT); - assert(err != EPERM); - assert(err != EINVAL); - assert(err != EAGAIN); - assert(err == ENOSYS); - assert(CPU_COUNT(&mask) == 1); - } - else - { - if (CPU_COUNT(&mask) > 1) - { - CPU_AND(&newmask, &mask, &switchmask); /* Remove every other CPU */ - assert(sched_setaffinity(0, sizeof(cpu_set_t), &newmask) == 0); - assert(sched_getaffinity(0, sizeof(cpu_set_t), &mask) == 0); - CPU_XOR(&newmask, &mask, &flipmask); /* Switch to all alternative CPUs */ - assert(sched_setaffinity(0, sizeof(cpu_set_t), &newmask) == 0); - assert(sched_getaffinity(0, sizeof(cpu_set_t), &mask) == 0); - assert(!CPU_EQUAL(&newmask, &mask)); - } - } - - return 0; -} - -#else - -#include - -int -main() -{ - fprintf(stderr, "Test N/A for this target environment.\n"); - return 0; -} - -#endif diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/affinity3.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/affinity3.c deleted file mode 100644 index be3d61c..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/affinity3.c +++ /dev/null @@ -1,117 +0,0 @@ -/* - * affinity3.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Have the thread switch CPUs. - * - */ - -#if ! defined(WINCE) - -#include "test.h" - -int -main() -{ - int result; - unsigned int cpu; - cpu_set_t newmask; - cpu_set_t processCpus; - cpu_set_t mask; - cpu_set_t switchmask; - cpu_set_t flipmask; - pthread_t self = pthread_self(); - - CPU_ZERO(&mask); - CPU_ZERO(&switchmask); - CPU_ZERO(&flipmask); - - if (pthread_getaffinity_np(self, sizeof(cpu_set_t), &processCpus) == ENOSYS) - { - printf("pthread_get/set_affinity_np API not supported for this platform: skipping test."); - return 0; - } - assert(pthread_getaffinity_np(self, sizeof(cpu_set_t), &processCpus) == 0); - printf("This thread has a starting affinity with %d CPUs\n", CPU_COUNT(&processCpus)); - assert(!CPU_EQUAL(&mask, &processCpus)); - - for (cpu = 0; cpu < sizeof(cpu_set_t)*8; cpu += 2) - { - CPU_SET(cpu, &switchmask); /* 0b01010101010101010101010101010101 */ - } - for (cpu = 0; cpu < sizeof(cpu_set_t)*8; cpu++) - { - CPU_SET(cpu, &flipmask); /* 0b11111111111111111111111111111111 */ - } - - result = pthread_setaffinity_np(self, sizeof(cpu_set_t), &processCpus); - if (result != 0) - { - assert(result != ESRCH); - assert(result != EFAULT); - assert(result != EPERM); - assert(result != EINVAL); - assert(result != EAGAIN); - assert(result == ENOSYS); - assert(CPU_COUNT(&mask) == 1); - } - else - { - if (CPU_COUNT(&mask) > 1) - { - CPU_AND(&newmask, &processCpus, &switchmask); /* Remove every other CPU */ - assert(pthread_setaffinity_np(self, sizeof(cpu_set_t), &newmask) == 0); - assert(pthread_getaffinity_np(self, sizeof(cpu_set_t), &mask) == 0); - assert(CPU_EQUAL(&mask, &newmask)); - CPU_XOR(&newmask, &mask, &flipmask); /* Switch to all alternative CPUs */ - assert(!CPU_EQUAL(&mask, &newmask)); - assert(pthread_setaffinity_np(self, sizeof(cpu_set_t), &newmask) == 0); - assert(pthread_getaffinity_np(self, sizeof(cpu_set_t), &mask) == 0); - assert(CPU_EQUAL(&mask, &newmask)); - } - } - - return 0; -} - -#else - -#include - -int -main() -{ - fprintf(stderr, "Test N/A for this target environment.\n"); - return 0; -} - -#endif diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/affinity4.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/affinity4.c deleted file mode 100644 index eabf92a..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/affinity4.c +++ /dev/null @@ -1,88 +0,0 @@ -/* - * affinity4.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test thread CPU affinity setting. - * - */ - -#if ! defined(WINCE) - -#include "test.h" - -int -main() -{ - unsigned int cpu; - cpu_set_t threadCpus; - DWORD_PTR vThreadMask; - cpu_set_t keepCpus; - pthread_t self = pthread_self(); - - if (pthread_getaffinity_np(self, sizeof(cpu_set_t), &threadCpus) == ENOSYS) - { - printf("pthread_get/set_affinity_np API not supported for this platform: skipping test."); - return 0; - } - - CPU_ZERO(&keepCpus); - for (cpu = 1; cpu < sizeof(cpu_set_t)*8; cpu += 2) - { - CPU_SET(cpu, &keepCpus); /* 0b10101010101010101010101010101010 */ - } - - assert(pthread_getaffinity_np(self, sizeof(cpu_set_t), &threadCpus) == 0); - if (CPU_COUNT(&threadCpus) > 1) - { - CPU_AND(&threadCpus, &threadCpus, &keepCpus); - vThreadMask = SetThreadAffinityMask(GetCurrentThread(), (*(PDWORD_PTR)&threadCpus) /* Violating Opacity */); - assert(pthread_setaffinity_np(self, sizeof(cpu_set_t), &threadCpus) == 0); - vThreadMask = SetThreadAffinityMask(GetCurrentThread(), vThreadMask); - assert(vThreadMask != 0); - assert(memcmp(&vThreadMask, &threadCpus, sizeof(DWORD_PTR)) == 0); - } - - return 0; -} - -#else - -#include - -int -main() -{ - fprintf(stderr, "Test N/A for this target environment.\n"); - return 0; -} - -#endif diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/affinity5.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/affinity5.c deleted file mode 100644 index 538ad9d..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/affinity5.c +++ /dev/null @@ -1,121 +0,0 @@ -/* - * affinity5.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test thread CPU affinity inheritance. - * - */ - -#if ! defined(WINCE) - -#include "test.h" - -typedef union -{ - /* Violates opacity */ - cpu_set_t cpuset; - unsigned long int bits; /* To stop GCC complaining about %lx args to printf */ -} cpuset_to_ulint; - -void * -mythread(void * arg) -{ - HANDLE threadH = GetCurrentThread(); - cpu_set_t *parentCpus = (cpu_set_t*) arg; - cpu_set_t threadCpus; - DWORD_PTR vThreadMask; - cpuset_to_ulint a, b; - - assert(pthread_getaffinity_np(pthread_self(), sizeof(cpu_set_t), &threadCpus) == 0); - assert(CPU_EQUAL(parentCpus, &threadCpus)); - vThreadMask = SetThreadAffinityMask(threadH, (*(PDWORD_PTR)&threadCpus) /* Violating Opacity */); - assert(vThreadMask != 0); - assert(memcmp(&vThreadMask, &threadCpus, sizeof(DWORD_PTR)) == 0); - a.cpuset = *parentCpus; - b.cpuset = threadCpus; - /* Violates opacity */ - printf("CPU affinity: Parent/Thread = 0x%lx/0x%lx\n", a.bits, b.bits); - - return (void*) 0; -} - -int -main() -{ - unsigned int cpu; - pthread_t tid; - cpu_set_t threadCpus; - DWORD_PTR vThreadMask; - cpu_set_t keepCpus; - pthread_t self = pthread_self(); - - if (pthread_getaffinity_np(self, sizeof(cpu_set_t), &threadCpus) == ENOSYS) - { - printf("pthread_get/set_affinity_np API not supported for this platform: skipping test."); - return 0; - } - - CPU_ZERO(&keepCpus); - for (cpu = 1; cpu < sizeof(cpu_set_t)*8; cpu += 2) - { - CPU_SET(cpu, &keepCpus); /* 0b10101010101010101010101010101010 */ - } - - assert(pthread_getaffinity_np(self, sizeof(cpu_set_t), &threadCpus) == 0); - if (CPU_COUNT(&threadCpus) > 1) - { - assert(pthread_create(&tid, NULL, mythread, (void*)&threadCpus) == 0); - assert(pthread_join(tid, NULL) == 0); - CPU_AND(&threadCpus, &threadCpus, &keepCpus); - assert(pthread_setaffinity_np(self, sizeof(cpu_set_t), &threadCpus) == 0); - vThreadMask = SetThreadAffinityMask(GetCurrentThread(), (*(PDWORD_PTR)&threadCpus) /* Violating Opacity */); - assert(vThreadMask != 0); - assert(memcmp(&vThreadMask, &threadCpus, sizeof(DWORD_PTR)) == 0); - assert(pthread_create(&tid, NULL, mythread, (void*)&threadCpus) == 0); - assert(pthread_join(tid, NULL) == 0); - } - - return 0; -} - -#else - -#include - -int -main() -{ - fprintf(stderr, "Test N/A for this target environment.\n"); - return 0; -} - -#endif diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/affinity6.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/affinity6.c deleted file mode 100644 index 4b9190c..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/affinity6.c +++ /dev/null @@ -1,116 +0,0 @@ -/* - * affinity6.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test thread CPU affinity from thread attributes. - * - */ - -#if ! defined(WINCE) - -#include "test.h" - -typedef union -{ - /* Violates opacity */ - cpu_set_t cpuset; - unsigned long int bits; /* To stop GCC complaining about %lx args to printf */ -} cpuset_to_ulint; - -void * -mythread(void * arg) -{ - pthread_attr_t *attrPtr = (pthread_attr_t *) arg; - cpu_set_t threadCpus, attrCpus; - - assert(pthread_getaffinity_np(pthread_self(), sizeof(cpu_set_t), &threadCpus) == 0); - assert(pthread_attr_getaffinity_np(attrPtr, sizeof(cpu_set_t), &attrCpus) == 0); - assert(CPU_EQUAL(&attrCpus, &threadCpus)); - - return (void*) 0; -} - -int -main() -{ - unsigned int cpu; - pthread_t tid; - pthread_attr_t attr1, attr2; - cpu_set_t threadCpus; - cpu_set_t keepCpus; - pthread_t self = pthread_self(); - - if (pthread_getaffinity_np(self, sizeof(cpu_set_t), &threadCpus) == ENOSYS) - { - printf("pthread_get/set_affinity_np API not supported for this platform: skipping test."); - return 0; - } - - assert(pthread_attr_init(&attr1) == 0); - assert(pthread_attr_init(&attr2) == 0); - - CPU_ZERO(&keepCpus); - for (cpu = 1; cpu < sizeof(cpu_set_t)*8; cpu += 2) - { - CPU_SET(cpu, &keepCpus); /* 0b10101010101010101010101010101010 */ - } - - assert(pthread_getaffinity_np(self, sizeof(cpu_set_t), &threadCpus) == 0); - - if (CPU_COUNT(&threadCpus) > 1) - { - assert(pthread_attr_setaffinity_np(&attr1, sizeof(cpu_set_t), &threadCpus) == 0); - CPU_AND(&threadCpus, &threadCpus, &keepCpus); - assert(pthread_attr_setaffinity_np(&attr2, sizeof(cpu_set_t), &threadCpus) == 0); - - assert(pthread_create(&tid, &attr1, mythread, (void *) &attr1) == 0); - assert(pthread_join(tid, NULL) == 0); - assert(pthread_create(&tid, &attr2, mythread, (void *) &attr2) == 0); - assert(pthread_join(tid, NULL) == 0); - } - assert(pthread_attr_destroy(&attr1) == 0); - assert(pthread_attr_destroy(&attr2) == 0); - return 0; -} - -#else - -#include - -int -main() -{ - fprintf(stderr, "Test N/A for this target environment.\n"); - return 0; -} - -#endif diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/barrier1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/barrier1.c deleted file mode 100644 index 677be2b..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/barrier1.c +++ /dev/null @@ -1,56 +0,0 @@ -/* - * barrier1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Create a barrier object and then destroy it. - * - */ - -#include "test.h" - -pthread_barrier_t barrier = NULL; - -int -main() -{ - assert(barrier == NULL); - - assert(pthread_barrier_init(&barrier, NULL, 1) == 0); - - assert(barrier != NULL); - - assert(pthread_barrier_destroy(&barrier) == 0); - - assert(barrier == NULL); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/barrier2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/barrier2.c deleted file mode 100644 index 6d40c05..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/barrier2.c +++ /dev/null @@ -1,53 +0,0 @@ -/* - * barrier2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Declare a single barrier object, wait on it, - * and then destroy it. - * - */ - -#include "test.h" - -pthread_barrier_t barrier = NULL; - -int -main() -{ - assert(pthread_barrier_init(&barrier, NULL, 1) == 0); - - assert(pthread_barrier_wait(&barrier) == PTHREAD_BARRIER_SERIAL_THREAD); - - assert(pthread_barrier_destroy(&barrier) == 0); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/barrier3.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/barrier3.c deleted file mode 100644 index 1775c79..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/barrier3.c +++ /dev/null @@ -1,69 +0,0 @@ -/* - * barrier3.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Declare a single barrier object with barrier attribute, wait on it, - * and then destroy it. - * - */ - -#include "test.h" - -pthread_barrier_t barrier = NULL; -static void* result = (void*)1; - -void * func(void * arg) -{ - return (void *) (size_t)pthread_barrier_wait(&barrier); -} - -int -main() -{ - pthread_t t; - pthread_barrierattr_t ba; - - assert(pthread_barrierattr_init(&ba) == 0); - assert(pthread_barrierattr_setpshared(&ba, PTHREAD_PROCESS_PRIVATE) == 0); - assert(pthread_barrier_init(&barrier, &ba, 1) == 0); - - assert(pthread_create(&t, NULL, func, NULL) == 0); - - assert(pthread_join(t, &result) == 0); - - assert((int)(size_t)result == PTHREAD_BARRIER_SERIAL_THREAD); - - assert(pthread_barrier_destroy(&barrier) == 0); - assert(pthread_barrierattr_destroy(&ba) == 0); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/barrier4.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/barrier4.c deleted file mode 100644 index 04756c1..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/barrier4.c +++ /dev/null @@ -1,108 +0,0 @@ -/* - * barrier4.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Declare a single barrier object, multiple wait on it, - * and then destroy it. - * - */ - -#include "test.h" - -enum { - NUMTHREADS = 16 -}; - -pthread_barrier_t barrier = NULL; -pthread_mutex_t mx = PTHREAD_MUTEX_INITIALIZER; -static int serialThreadCount = 0; -static int otherThreadCount = 0; - -void * -func(void * arg) -{ - int result = pthread_barrier_wait(&barrier); - - assert(pthread_mutex_lock(&mx) == 0); - - if (result == PTHREAD_BARRIER_SERIAL_THREAD) - { - serialThreadCount++; - } - else if (0 == result) - { - otherThreadCount++; - } - else - { - printf("Barrier wait failed: error = %s\n", error_string[result]); - fflush(stdout); - return NULL; - } - assert(pthread_mutex_unlock(&mx) == 0); - - return NULL; -} - -int -main() -{ - int i, j; - pthread_t t[NUMTHREADS + 1]; - - for (j = 1; j <= NUMTHREADS; j++) - { - printf("Barrier height = %d\n", j); - - serialThreadCount = 0; - - assert(pthread_barrier_init(&barrier, NULL, j) == 0); - - for (i = 1; i <= j; i++) - { - assert(pthread_create(&t[i], NULL, func, NULL) == 0); - } - - for (i = 1; i <= j; i++) - { - assert(pthread_join(t[i], NULL) == 0); - } - - assert(serialThreadCount == 1); - - assert(pthread_barrier_destroy(&barrier) == 0); - } - - assert(pthread_mutex_destroy(&mx) == 0); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/barrier5.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/barrier5.c deleted file mode 100644 index ed41cd8..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/barrier5.c +++ /dev/null @@ -1,116 +0,0 @@ -/* - * barrier5.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Set up a series of barriers at different heights and test various numbers - * of threads accessing, especially cases where there are more threads than the - * barrier height (count), i.e. test contention when the barrier is released. - */ - -#include "test.h" - -enum { - NUMTHREADS = 15, - HEIGHT = 10, - BARRIERMULTIPLE = 1000 -}; - -pthread_barrier_t barrier = NULL; -pthread_mutex_t mx = PTHREAD_MUTEX_INITIALIZER; -LONG totalThreadCrossings; - -void * -func(void * crossings) -{ - int result; - int serialThreads = 0; - - while ((LONG)(size_t)crossings >= (LONG)InterlockedIncrement((LPLONG)&totalThreadCrossings)) - { - result = pthread_barrier_wait(&barrier); - - if (result == PTHREAD_BARRIER_SERIAL_THREAD) - { - serialThreads++; - } - else if (result != 0) - { - printf("Barrier failed: result = %s\n", error_string[result]); - fflush(stdout); - return NULL; - } - } - - return (void*)(size_t)serialThreads; -} - -int -main() -{ - int i, j; - void* result; - int serialThreadsTotal; - LONG Crossings; - pthread_t t[NUMTHREADS + 1]; - - for (j = 1; j <= NUMTHREADS; j++) - { - int height = j -#include - -#ifdef __GNUC__ -#include -#endif - -#include "benchtest.h" - -int old_mutex_use = OLD_WIN32CS; - -BOOL (WINAPI *__ptw32_try_enter_critical_section)(LPCRITICAL_SECTION) = NULL; -HINSTANCE __ptw32_h_kernel32; - -void -dummy_call(int * a) -{ -} - -void -interlocked_inc_with_conditionals(int * a) -{ - if (a != NULL) - if (InterlockedIncrement((long *) a) == -1) - { - *a = 0; - } -} - -void -interlocked_dec_with_conditionals(int * a) -{ - if (a != NULL) - if (InterlockedDecrement((long *) a) == -1) - { - *a = 0; - } -} - -int -old_mutex_init(old_mutex_t *mutex, const old_mutexattr_t *attr) -{ - int result = 0; - old_mutex_t mx; - - if (mutex == NULL) - { - return EINVAL; - } - - mx = (old_mutex_t) calloc(1, sizeof(*mx)); - - if (mx == NULL) - { - result = ENOMEM; - goto FAIL0; - } - - mx->mutex = 0; - - if (attr != NULL - && *attr != NULL - && (*attr)->pshared == PTHREAD_PROCESS_SHARED - ) - { - result = ENOSYS; - } - else - { - CRITICAL_SECTION cs; - - /* - * Load KERNEL32 and try to get address of TryEnterCriticalSection - */ - __ptw32_h_kernel32 = LoadLibrary(TEXT("KERNEL32.DLL")); - __ptw32_try_enter_critical_section = (BOOL (WINAPI *)(LPCRITICAL_SECTION)) - -#if defined(NEED_UNICODE_CONSTS) - GetProcAddress(__ptw32_h_kernel32, - (const TCHAR *)TEXT("TryEnterCriticalSection")); -#else - GetProcAddress(__ptw32_h_kernel32, - (LPCSTR) "TryEnterCriticalSection"); -#endif - - if (__ptw32_try_enter_critical_section != NULL) - { - InitializeCriticalSection(&cs); - if ((*__ptw32_try_enter_critical_section)(&cs)) - { - LeaveCriticalSection(&cs); - } - else - { - /* - * Not really supported (Win98?). - */ - __ptw32_try_enter_critical_section = NULL; - } - DeleteCriticalSection(&cs); - } - - if (__ptw32_try_enter_critical_section == NULL) - { - (void) FreeLibrary(__ptw32_h_kernel32); - __ptw32_h_kernel32 = 0; - } - - if (old_mutex_use == OLD_WIN32CS) - { - InitializeCriticalSection(&mx->cs); - } - else if (old_mutex_use == OLD_WIN32MUTEX) - { - mx->mutex = CreateMutex (NULL, - FALSE, - NULL); - - if (mx->mutex == 0) - { - result = EAGAIN; - } - } - else - { - result = EINVAL; - } - } - - if (result != 0 && mx != NULL) - { - free(mx); - mx = NULL; - } - -FAIL0: - *mutex = mx; - - return(result); -} - - -int -old_mutex_lock(old_mutex_t *mutex) -{ - int result = 0; - old_mutex_t mx; - - if (mutex == NULL || *mutex == NULL) - { - return EINVAL; - } - - if (*mutex == (old_mutex_t) __PTW32_OBJECT_AUTO_INIT) - { - /* - * Don't use initialisers when benchtesting. - */ - result = EINVAL; - } - - mx = *mutex; - - if (result == 0) - { - if (mx->mutex == 0) - { - EnterCriticalSection(&mx->cs); - } - else - { - result = (WaitForSingleObject(mx->mutex, INFINITE) - == WAIT_OBJECT_0) - ? 0 - : EINVAL; - } - } - - return(result); -} - -int -old_mutex_unlock(old_mutex_t *mutex) -{ - int result = 0; - old_mutex_t mx; - - if (mutex == NULL || *mutex == NULL) - { - return EINVAL; - } - - mx = *mutex; - - if (mx != (old_mutex_t) __PTW32_OBJECT_AUTO_INIT) - { - if (mx->mutex == 0) - { - LeaveCriticalSection(&mx->cs); - } - else - { - result = (ReleaseMutex (mx->mutex) ? 0 : EINVAL); - } - } - else - { - result = EINVAL; - } - - return(result); -} - - -int -old_mutex_trylock(old_mutex_t *mutex) -{ - int result = 0; - old_mutex_t mx; - - if (mutex == NULL || *mutex == NULL) - { - return EINVAL; - } - - if (*mutex == (old_mutex_t) __PTW32_OBJECT_AUTO_INIT) - { - /* - * Don't use initialisers when benchtesting. - */ - result = EINVAL; - } - - mx = *mutex; - - if (result == 0) - { - if (mx->mutex == 0) - { - if (__ptw32_try_enter_critical_section == NULL) - { - result = 0; - } - else if ((*__ptw32_try_enter_critical_section)(&mx->cs) != TRUE) - { - result = EBUSY; - } - } - else - { - DWORD status; - - status = WaitForSingleObject (mx->mutex, 0); - - if (status != WAIT_OBJECT_0) - { - result = ((status == WAIT_TIMEOUT) - ? EBUSY - : EINVAL); - } - } - } - - return(result); -} - - -int -old_mutex_destroy(old_mutex_t *mutex) -{ - int result = 0; - old_mutex_t mx; - - if (mutex == NULL - || *mutex == NULL) - { - return EINVAL; - } - - if (*mutex != (old_mutex_t) __PTW32_OBJECT_AUTO_INIT) - { - mx = *mutex; - - if ((result = old_mutex_trylock(&mx)) == 0) - { - *mutex = NULL; - - (void) old_mutex_unlock(&mx); - - if (mx->mutex == 0) - { - DeleteCriticalSection(&mx->cs); - } - else - { - result = (CloseHandle (mx->mutex) ? 0 : EINVAL); - } - - if (result == 0) - { - mx->mutex = 0; - free(mx); - } - else - { - *mutex = mx; - } - } - } - else - { - result = EINVAL; - } - - if (__ptw32_try_enter_critical_section != NULL) - { - (void) FreeLibrary(__ptw32_h_kernel32); - __ptw32_h_kernel32 = 0; - } - - return(result); -} - -/****************************************************************************************/ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/benchtest.h b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/benchtest.h deleted file mode 100644 index 6a22b4b..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/benchtest.h +++ /dev/null @@ -1,68 +0,0 @@ -/* - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - */ - -#include "../config.h" - -enum { - OLD_WIN32CS, - OLD_WIN32MUTEX -}; - -extern int old_mutex_use; - -struct old_mutex_t_ { - HANDLE mutex; - CRITICAL_SECTION cs; -}; - -typedef struct old_mutex_t_ * old_mutex_t; - -struct old_mutexattr_t_ { - int pshared; -}; - -typedef struct old_mutexattr_t_ * old_mutexattr_t; - -extern BOOL (WINAPI *__ptw32_try_enter_critical_section)(LPCRITICAL_SECTION); -extern HINSTANCE __ptw32_h_kernel32; - -#define __PTW32_OBJECT_AUTO_INIT ((void *) -1) - -void dummy_call(int * a); -void interlocked_inc_with_conditionals(int *a); -void interlocked_dec_with_conditionals(int *a); -int old_mutex_init(old_mutex_t *mutex, const old_mutexattr_t *attr); -int old_mutex_lock(old_mutex_t *mutex); -int old_mutex_unlock(old_mutex_t *mutex); -int old_mutex_trylock(old_mutex_t *mutex); -int old_mutex_destroy(old_mutex_t *mutex); -/****************************************************************************************/ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/benchtest1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/benchtest1.c deleted file mode 100644 index 23e8d72..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/benchtest1.c +++ /dev/null @@ -1,263 +0,0 @@ -/* - * benchtest1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Measure time taken to complete an elementary operation. - * - * - Mutex - * Single thread iteration over lock/unlock for each mutex type. - */ - -#include "test.h" - -#ifdef __GNUC__ -#include -#endif - -#include "benchtest.h" - -#define __PTW32_MUTEX_TYPES -#define ITERATIONS 10000000L - -pthread_mutex_t mx; -pthread_mutexattr_t ma; -__PTW32_STRUCT_TIMEB currSysTimeStart; -__PTW32_STRUCT_TIMEB currSysTimeStop; -long durationMilliSecs; -long overHeadMilliSecs = 0; -int two = 2; -int one = 1; -int zero = 0; -int iter; - -#define GetDurationMilliSecs(_TStart, _TStop) ((long)((_TStop.time*1000+_TStop.millitm) \ - - (_TStart.time*1000+_TStart.millitm))) - -/* - * Dummy use of j, otherwise the loop may be removed by the optimiser - * when doing the overhead timing with an empty loop. - */ -#define TESTSTART \ - { int i, j = 0, k = 0; __PTW32_FTIME(&currSysTimeStart); for (i = 0; i < ITERATIONS; i++) { j++; - -#define TESTSTOP \ - }; __PTW32_FTIME(&currSysTimeStop); if (j + k == i) j++; } - - -void -runTest (char * testNameString, int mType) -{ -#ifdef __PTW32_MUTEX_TYPES - assert(pthread_mutexattr_settype(&ma, mType) == 0); -#endif - assert(pthread_mutex_init(&mx, &ma) == 0); - - TESTSTART - assert((pthread_mutex_lock(&mx),1) == one); - assert((pthread_mutex_unlock(&mx),2) == two); - TESTSTOP - - assert(pthread_mutex_destroy(&mx) == 0); - - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - - printf( "%-45s %15ld %15.3f\n", - testNameString, - durationMilliSecs, - (float) durationMilliSecs * 1E3 / ITERATIONS); -} - - -int -main (int argc, char *argv[]) -{ - int i = 0; - CRITICAL_SECTION cs; - old_mutex_t ox; - pthread_mutexattr_init(&ma); - - printf( "=============================================================================\n"); - printf( "\nLock plus unlock on an unlocked mutex.\n%ld iterations\n\n", - ITERATIONS); - printf( "%-45s %15s %15s\n", - "Test", - "Total(msec)", - "average(usec)"); - printf( "-----------------------------------------------------------------------------\n"); - - /* - * Time the loop overhead so we can subtract it from the actual test times. - */ - TESTSTART - assert(1 == one); - assert(2 == two); - TESTSTOP - - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - overHeadMilliSecs = durationMilliSecs; - - - TESTSTART - assert((dummy_call(&i), 1) == one); - assert((dummy_call(&i), 2) == two); - TESTSTOP - - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - - printf( "%-45s %15ld %15.3f\n", - "Dummy call x 2", - durationMilliSecs, - (float) (durationMilliSecs * 1E3 / ITERATIONS)); - - - TESTSTART - assert((interlocked_inc_with_conditionals(&i), 1) == one); - assert((interlocked_dec_with_conditionals(&i), 2) == two); - TESTSTOP - - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - - printf( "%-45s %15ld %15.3f\n", - "Dummy call -> Interlocked with cond x 2", - durationMilliSecs, - (float) durationMilliSecs * 1E3 / ITERATIONS); - - - TESTSTART - assert((InterlockedIncrement((LPLONG)&i), 1) == (LONG)one); - assert((InterlockedDecrement((LPLONG)&i), 2) == (LONG)two); - TESTSTOP - - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - - printf( "%-45s %15ld %15.3f\n", - "InterlockedOp x 2", - durationMilliSecs, - (float) durationMilliSecs * 1E3 / ITERATIONS); - - - InitializeCriticalSection(&cs); - - TESTSTART - assert((EnterCriticalSection(&cs), 1) == one); - assert((LeaveCriticalSection(&cs), 2) == two); - TESTSTOP - - DeleteCriticalSection(&cs); - - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - - printf( "%-45s %15ld %15.3f\n", - "Simple Critical Section", - durationMilliSecs, - (float) durationMilliSecs * 1E3 / ITERATIONS); - - - old_mutex_use = OLD_WIN32CS; - assert(old_mutex_init(&ox, NULL) == 0); - - TESTSTART - assert(old_mutex_lock(&ox) == zero); - assert(old_mutex_unlock(&ox) == zero); - TESTSTOP - - assert(old_mutex_destroy(&ox) == 0); - - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - - printf( "%-45s %15ld %15.3f\n", - "Old PT Mutex using a Critical Section (WNT)", - durationMilliSecs, - (float) durationMilliSecs * 1E3 / ITERATIONS); - - - old_mutex_use = OLD_WIN32MUTEX; - assert(old_mutex_init(&ox, NULL) == 0); - - TESTSTART - assert(old_mutex_lock(&ox) == zero); - assert(old_mutex_unlock(&ox) == zero); - TESTSTOP - - assert(old_mutex_destroy(&ox) == 0); - - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - - printf( "%-45s %15ld %15.3f\n", - "Old PT Mutex using a Win32 Mutex (W9x)", - durationMilliSecs, - (float) durationMilliSecs * 1E3 / ITERATIONS); - - printf( ".............................................................................\n"); - - /* - * Now we can start the actual tests - */ -#ifdef __PTW32_MUTEX_TYPES - runTest("PTHREAD_MUTEX_DEFAULT", PTHREAD_MUTEX_DEFAULT); - - runTest("PTHREAD_MUTEX_NORMAL", PTHREAD_MUTEX_NORMAL); - - runTest("PTHREAD_MUTEX_ERRORCHECK", PTHREAD_MUTEX_ERRORCHECK); - - runTest("PTHREAD_MUTEX_RECURSIVE", PTHREAD_MUTEX_RECURSIVE); -#else - runTest("Non-blocking lock", 0); -#endif - - printf( ".............................................................................\n"); - - pthread_mutexattr_setrobust(&ma, PTHREAD_MUTEX_ROBUST); - -#ifdef __PTW32_MUTEX_TYPES - runTest("PTHREAD_MUTEX_DEFAULT (Robust)", PTHREAD_MUTEX_DEFAULT); - - runTest("PTHREAD_MUTEX_NORMAL (Robust)", PTHREAD_MUTEX_NORMAL); - - runTest("PTHREAD_MUTEX_ERRORCHECK (Robust)", PTHREAD_MUTEX_ERRORCHECK); - - runTest("PTHREAD_MUTEX_RECURSIVE (Robust)", PTHREAD_MUTEX_RECURSIVE); -#else - runTest("Non-blocking lock", 0); -#endif - - printf( "=============================================================================\n"); - - /* - * End of tests. - */ - - pthread_mutexattr_destroy(&ma); - - one = i; /* Dummy assignment to avoid 'variable unused' warning */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/benchtest2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/benchtest2.c deleted file mode 100644 index e28c10e..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/benchtest2.c +++ /dev/null @@ -1,324 +0,0 @@ -/* - * benchtest1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Measure time taken to complete an elementary operation. - * - * - Mutex - * Two threads iterate over lock/unlock for each mutex type. - * The two threads are forced into lock-step using two mutexes, - * forcing the threads to block on each lock operation. The - * time measured is therefore the worst case senario. - */ - -#include "test.h" - -#ifdef __GNUC__ -#include -#endif - -#include "benchtest.h" - -#define __PTW32_MUTEX_TYPES -#define ITERATIONS 100000L - -pthread_mutex_t gate1, gate2; -old_mutex_t ox1, ox2; -CRITICAL_SECTION cs1, cs2; -pthread_mutexattr_t ma; -long durationMilliSecs; -long overHeadMilliSecs = 0; -__PTW32_STRUCT_TIMEB currSysTimeStart; -__PTW32_STRUCT_TIMEB currSysTimeStop; -pthread_t worker; -int running = 0; - -#define GetDurationMilliSecs(_TStart, _TStop) ((long)((_TStop.time*1000+_TStop.millitm) \ - - (_TStart.time*1000+_TStart.millitm))) - -/* - * Dummy use of j, otherwise the loop may be removed by the optimiser - * when doing the overhead timing with an empty loop. - */ -#define TESTSTART \ - { int i, j = 0, k = 0; __PTW32_FTIME(&currSysTimeStart); for (i = 0; i < ITERATIONS; i++) { j++; - -#define TESTSTOP \ - }; __PTW32_FTIME(&currSysTimeStop); if (j + k == i) j++; } - - -void * -overheadThread(void * arg) -{ - do - { - sched_yield(); - } - while (running); - - return NULL; -} - - -void * -oldThread(void * arg) -{ - do - { - (void) old_mutex_lock(&ox1); - (void) old_mutex_lock(&ox2); - (void) old_mutex_unlock(&ox1); - sched_yield(); - (void) old_mutex_unlock(&ox2); - } - while (running); - - return NULL; -} - -void * -workerThread(void * arg) -{ - do - { - (void) pthread_mutex_lock(&gate1); - (void) pthread_mutex_lock(&gate2); - (void) pthread_mutex_unlock(&gate1); - sched_yield(); - (void) pthread_mutex_unlock(&gate2); - } - while (running); - - return NULL; -} - -void * -CSThread(void * arg) -{ - do - { - EnterCriticalSection(&cs1); - EnterCriticalSection(&cs2); - LeaveCriticalSection(&cs1); - sched_yield(); - LeaveCriticalSection(&cs2); - } - while (running); - - return NULL; -} - -void -runTest (char * testNameString, int mType) -{ -#ifdef __PTW32_MUTEX_TYPES - assert(pthread_mutexattr_settype(&ma, mType) == 0); -#endif - assert(pthread_mutex_init(&gate1, &ma) == 0); - assert(pthread_mutex_init(&gate2, &ma) == 0); - assert(pthread_mutex_lock(&gate1) == 0); - assert(pthread_mutex_lock(&gate2) == 0); - running = 1; - assert(pthread_create(&worker, NULL, workerThread, NULL) == 0); - TESTSTART - (void) pthread_mutex_unlock(&gate1); - sched_yield(); - (void) pthread_mutex_unlock(&gate2); - (void) pthread_mutex_lock(&gate1); - (void) pthread_mutex_lock(&gate2); - TESTSTOP - running = 0; - assert(pthread_mutex_unlock(&gate2) == 0); - assert(pthread_mutex_unlock(&gate1) == 0); - assert(pthread_join(worker, NULL) == 0); - assert(pthread_mutex_destroy(&gate2) == 0); - assert(pthread_mutex_destroy(&gate1) == 0); - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - printf( "%-45s %15ld %15.3f\n", - testNameString, - durationMilliSecs, - (float) durationMilliSecs * 1E3 / ITERATIONS / 4 /* Four locks/unlocks per iteration */); -} - - -int -main (int argc, char *argv[]) -{ - assert(pthread_mutexattr_init(&ma) == 0); - - printf( "=============================================================================\n"); - printf( "\nLock plus unlock on a locked mutex.\n"); - printf("%ld iterations, four locks/unlocks per iteration.\n\n", ITERATIONS); - - printf( "%-45s %15s %15s\n", - "Test", - "Total(msec)", - "average(usec)"); - printf( "-----------------------------------------------------------------------------\n"); - - /* - * Time the loop overhead so we can subtract it from the actual test times. - */ - - running = 1; - assert(pthread_create(&worker, NULL, overheadThread, NULL) == 0); - TESTSTART - sched_yield(); - sched_yield(); - TESTSTOP - running = 0; - assert(pthread_join(worker, NULL) == 0); - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - overHeadMilliSecs = durationMilliSecs; - - - InitializeCriticalSection(&cs1); - InitializeCriticalSection(&cs2); - EnterCriticalSection(&cs1); - EnterCriticalSection(&cs2); - running = 1; - assert(pthread_create(&worker, NULL, CSThread, NULL) == 0); - TESTSTART - LeaveCriticalSection(&cs1); - sched_yield(); - LeaveCriticalSection(&cs2); - EnterCriticalSection(&cs1); - EnterCriticalSection(&cs2); - TESTSTOP - running = 0; - LeaveCriticalSection(&cs2); - LeaveCriticalSection(&cs1); - assert(pthread_join(worker, NULL) == 0); - DeleteCriticalSection(&cs2); - DeleteCriticalSection(&cs1); - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - printf( "%-45s %15ld %15.3f\n", - "Simple Critical Section", - durationMilliSecs, - (float) durationMilliSecs * 1E3 / ITERATIONS / 4 ); - - - old_mutex_use = OLD_WIN32CS; - assert(old_mutex_init(&ox1, NULL) == 0); - assert(old_mutex_init(&ox2, NULL) == 0); - assert(old_mutex_lock(&ox1) == 0); - assert(old_mutex_lock(&ox2) == 0); - running = 1; - assert(pthread_create(&worker, NULL, oldThread, NULL) == 0); - TESTSTART - (void) old_mutex_unlock(&ox1); - sched_yield(); - (void) old_mutex_unlock(&ox2); - (void) old_mutex_lock(&ox1); - (void) old_mutex_lock(&ox2); - TESTSTOP - running = 0; - assert(old_mutex_unlock(&ox1) == 0); - assert(old_mutex_unlock(&ox2) == 0); - assert(pthread_join(worker, NULL) == 0); - assert(old_mutex_destroy(&ox2) == 0); - assert(old_mutex_destroy(&ox1) == 0); - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - printf( "%-45s %15ld %15.3f\n", - "Old PT Mutex using a Critical Section (WNT)", - durationMilliSecs, - (float) durationMilliSecs * 1E3 / ITERATIONS / 4); - - - old_mutex_use = OLD_WIN32MUTEX; - assert(old_mutex_init(&ox1, NULL) == 0); - assert(old_mutex_init(&ox2, NULL) == 0); - assert(old_mutex_lock(&ox1) == 0); - assert(old_mutex_lock(&ox2) == 0); - running = 1; - assert(pthread_create(&worker, NULL, oldThread, NULL) == 0); - TESTSTART - (void) old_mutex_unlock(&ox1); - sched_yield(); - (void) old_mutex_unlock(&ox2); - (void) old_mutex_lock(&ox1); - (void) old_mutex_lock(&ox2); - TESTSTOP - running = 0; - assert(old_mutex_unlock(&ox1) == 0); - assert(old_mutex_unlock(&ox2) == 0); - assert(pthread_join(worker, NULL) == 0); - assert(old_mutex_destroy(&ox2) == 0); - assert(old_mutex_destroy(&ox1) == 0); - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - printf( "%-45s %15ld %15.3f\n", - "Old PT Mutex using a Win32 Mutex (W9x)", - durationMilliSecs, - (float) durationMilliSecs * 1E3 / ITERATIONS / 4); - - printf( ".............................................................................\n"); - - /* - * Now we can start the actual tests - */ -#ifdef __PTW32_MUTEX_TYPES - runTest("PTHREAD_MUTEX_DEFAULT", PTHREAD_MUTEX_DEFAULT); - - runTest("PTHREAD_MUTEX_NORMAL", PTHREAD_MUTEX_NORMAL); - - runTest("PTHREAD_MUTEX_ERRORCHECK", PTHREAD_MUTEX_ERRORCHECK); - - runTest("PTHREAD_MUTEX_RECURSIVE", PTHREAD_MUTEX_RECURSIVE); -#else - runTest("Non-blocking lock", 0); -#endif - - printf( ".............................................................................\n"); - - pthread_mutexattr_setrobust(&ma, PTHREAD_MUTEX_ROBUST); - -#ifdef __PTW32_MUTEX_TYPES - runTest("PTHREAD_MUTEX_DEFAULT (Robust)", PTHREAD_MUTEX_DEFAULT); - - runTest("PTHREAD_MUTEX_NORMAL (Robust)", PTHREAD_MUTEX_NORMAL); - - runTest("PTHREAD_MUTEX_ERRORCHECK (Robust)", PTHREAD_MUTEX_ERRORCHECK); - - runTest("PTHREAD_MUTEX_RECURSIVE (Robust)", PTHREAD_MUTEX_RECURSIVE); -#else - runTest("Non-blocking lock", 0); -#endif - - printf( "=============================================================================\n"); - /* - * End of tests. - */ - - pthread_mutexattr_destroy(&ma); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/benchtest3.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/benchtest3.c deleted file mode 100644 index 1bc5a04..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/benchtest3.c +++ /dev/null @@ -1,214 +0,0 @@ -/* - * benchtest3.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Measure time taken to complete an elementary operation. - * - * - Mutex - * Single thread iteration over a trylock on a locked mutex for each mutex type. - */ - -#include "test.h" - -#ifdef __GNUC__ -#include -#endif - -#include "benchtest.h" - -#define __PTW32_MUTEX_TYPES -#define ITERATIONS 10000000L - -pthread_mutex_t mx; -old_mutex_t ox; -pthread_mutexattr_t ma; -__PTW32_STRUCT_TIMEB currSysTimeStart; -__PTW32_STRUCT_TIMEB currSysTimeStop; -long durationMilliSecs; -long overHeadMilliSecs = 0; - -#define GetDurationMilliSecs(_TStart, _TStop) ((long)((_TStop.time*1000+_TStop.millitm) \ - - (_TStart.time*1000+_TStart.millitm))) - -/* - * Dummy use of j, otherwise the loop may be removed by the optimiser - * when doing the overhead timing with an empty loop. - */ -#define TESTSTART \ - { int i, j = 0, k = 0; __PTW32_FTIME(&currSysTimeStart); for (i = 0; i < ITERATIONS; i++) { j++; - -#define TESTSTOP \ - }; __PTW32_FTIME(&currSysTimeStop); if (j + k == i) j++; } - - -void * -trylockThread (void * arg) -{ - TESTSTART - (void) pthread_mutex_trylock(&mx); - TESTSTOP - - return NULL; -} - - -void * -oldTrylockThread (void * arg) -{ - TESTSTART - (void) old_mutex_trylock(&ox); - TESTSTOP - - return NULL; -} - - -void -runTest (char * testNameString, int mType) -{ - pthread_t t; - -#ifdef __PTW32_MUTEX_TYPES - (void) pthread_mutexattr_settype(&ma, mType); -#endif - assert(pthread_mutex_init(&mx, &ma) == 0); - assert(pthread_mutex_lock(&mx) == 0); - assert(pthread_create(&t, NULL, trylockThread, 0) == 0); - assert(pthread_join(t, NULL) == 0); - assert(pthread_mutex_unlock(&mx) == 0); - assert(pthread_mutex_destroy(&mx) == 0); - - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - - printf( "%-45s %15ld %15.3f\n", - testNameString, - durationMilliSecs, - (float) durationMilliSecs * 1E3 / ITERATIONS); -} - - -int -main (int argc, char *argv[]) -{ - pthread_t t; - - assert(pthread_mutexattr_init(&ma) == 0); - - printf( "=============================================================================\n"); - printf( "\nTrylock on a locked mutex.\n"); - printf( "%ld iterations.\n\n", ITERATIONS); - printf( "%-45s %15s %15s\n", - "Test", - "Total(msec)", - "average(usec)"); - printf( "-----------------------------------------------------------------------------\n"); - - /* - * Time the loop overhead so we can subtract it from the actual test times. - */ - - TESTSTART - TESTSTOP - - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - overHeadMilliSecs = durationMilliSecs; - - - old_mutex_use = OLD_WIN32CS; - assert(old_mutex_init(&ox, NULL) == 0); - assert(old_mutex_lock(&ox) == 0); - assert(pthread_create(&t, NULL, oldTrylockThread, 0) == 0); - assert(pthread_join(t, NULL) == 0); - assert(old_mutex_unlock(&ox) == 0); - assert(old_mutex_destroy(&ox) == 0); - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - printf( "%-45s %15ld %15.3f\n", - "Old PT Mutex using a Critical Section (WNT)", - durationMilliSecs, - (float) durationMilliSecs * 1E3 / ITERATIONS); - - old_mutex_use = OLD_WIN32MUTEX; - assert(old_mutex_init(&ox, NULL) == 0); - assert(old_mutex_lock(&ox) == 0); - assert(pthread_create(&t, NULL, oldTrylockThread, 0) == 0); - assert(pthread_join(t, NULL) == 0); - assert(old_mutex_unlock(&ox) == 0); - assert(old_mutex_destroy(&ox) == 0); - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - printf( "%-45s %15ld %15.3f\n", - "Old PT Mutex using a Win32 Mutex (W9x)", - durationMilliSecs, - (float) durationMilliSecs * 1E3 / ITERATIONS); - - printf( ".............................................................................\n"); - - /* - * Now we can start the actual tests - */ -#ifdef __PTW32_MUTEX_TYPES - runTest("PTHREAD_MUTEX_DEFAULT", PTHREAD_MUTEX_DEFAULT); - - runTest("PTHREAD_MUTEX_NORMAL", PTHREAD_MUTEX_NORMAL); - - runTest("PTHREAD_MUTEX_ERRORCHECK", PTHREAD_MUTEX_ERRORCHECK); - - runTest("PTHREAD_MUTEX_RECURSIVE", PTHREAD_MUTEX_RECURSIVE); -#else - runTest("Non-blocking lock", 0); -#endif - - printf( ".............................................................................\n"); - - pthread_mutexattr_setrobust(&ma, PTHREAD_MUTEX_ROBUST); - -#ifdef __PTW32_MUTEX_TYPES - runTest("PTHREAD_MUTEX_DEFAULT (Robust)", PTHREAD_MUTEX_DEFAULT); - - runTest("PTHREAD_MUTEX_NORMAL (Robust)", PTHREAD_MUTEX_NORMAL); - - runTest("PTHREAD_MUTEX_ERRORCHECK (Robust)", PTHREAD_MUTEX_ERRORCHECK); - - runTest("PTHREAD_MUTEX_RECURSIVE (Robust)", PTHREAD_MUTEX_RECURSIVE); -#else - runTest("Non-blocking lock", 0); -#endif - - printf( "=============================================================================\n"); - - /* - * End of tests. - */ - - pthread_mutexattr_destroy(&ma); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/benchtest4.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/benchtest4.c deleted file mode 100644 index 51cd256..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/benchtest4.c +++ /dev/null @@ -1,195 +0,0 @@ -/* - * benchtest4.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Measure time taken to complete an elementary operation. - * - * - Mutex - * Single thread iteration over trylock/unlock for each mutex type. - */ - -#include "test.h" - -#ifdef __GNUC__ -#include -#endif - -#include "benchtest.h" - -#define __PTW32_MUTEX_TYPES -#define ITERATIONS 10000000L - -pthread_mutex_t mx; -old_mutex_t ox; -pthread_mutexattr_t ma; -__PTW32_STRUCT_TIMEB currSysTimeStart; -__PTW32_STRUCT_TIMEB currSysTimeStop; -long durationMilliSecs; -long overHeadMilliSecs = 0; - -#define GetDurationMilliSecs(_TStart, _TStop) ((long)((_TStop.time*1000+_TStop.millitm) \ - - (_TStart.time*1000+_TStart.millitm))) - -/* - * Dummy use of j, otherwise the loop may be removed by the optimiser - * when doing the overhead timing with an empty loop. - */ -#define TESTSTART \ - { int i, j = 0, k = 0; __PTW32_FTIME(&currSysTimeStart); for (i = 0; i < ITERATIONS; i++) { j++; - -#define TESTSTOP \ - }; __PTW32_FTIME(&currSysTimeStop); if (j + k == i) j++; } - - -void -oldRunTest (char * testNameString, int mType) -{ -} - - -void -runTest (char * testNameString, int mType) -{ -#ifdef __PTW32_MUTEX_TYPES - pthread_mutexattr_settype(&ma, mType); -#endif - pthread_mutex_init(&mx, &ma); - - TESTSTART - (void) pthread_mutex_trylock(&mx); - (void) pthread_mutex_unlock(&mx); - TESTSTOP - - pthread_mutex_destroy(&mx); - - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - - printf( "%-45s %15ld %15.3f\n", - testNameString, - durationMilliSecs, - (float) durationMilliSecs * 1E3 / ITERATIONS); -} - - -int -main (int argc, char *argv[]) -{ - pthread_mutexattr_init(&ma); - - printf( "=============================================================================\n"); - printf( "Trylock plus unlock on an unlocked mutex.\n"); - printf( "%ld iterations.\n\n", ITERATIONS); - printf( "%-45s %15s %15s\n", - "Test", - "Total(msec)", - "average(usec)"); - printf( "-----------------------------------------------------------------------------\n"); - - /* - * Time the loop overhead so we can subtract it from the actual test times. - */ - - TESTSTART - TESTSTOP - - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - overHeadMilliSecs = durationMilliSecs; - - old_mutex_use = OLD_WIN32CS; - assert(old_mutex_init(&ox, NULL) == 0); - TESTSTART - (void) old_mutex_trylock(&ox); - (void) old_mutex_unlock(&ox); - TESTSTOP - assert(old_mutex_destroy(&ox) == 0); - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - printf( "%-45s %15ld %15.3f\n", - "Old PT Mutex using a Critical Section (WNT)", - durationMilliSecs, - (float) durationMilliSecs * 1E3 / ITERATIONS); - - old_mutex_use = OLD_WIN32MUTEX; - assert(old_mutex_init(&ox, NULL) == 0); - TESTSTART - (void) old_mutex_trylock(&ox); - (void) old_mutex_unlock(&ox); - TESTSTOP - assert(old_mutex_destroy(&ox) == 0); - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - printf( "%-45s %15ld %15.3f\n", - "Old PT Mutex using a Win32 Mutex (W9x)", - durationMilliSecs, - (float) durationMilliSecs * 1E3 / ITERATIONS); - - printf( ".............................................................................\n"); - - /* - * Now we can start the actual tests - */ -#ifdef __PTW32_MUTEX_TYPES - runTest("PTHREAD_MUTEX_DEFAULT", PTHREAD_MUTEX_DEFAULT); - - runTest("PTHREAD_MUTEX_NORMAL", PTHREAD_MUTEX_NORMAL); - - runTest("PTHREAD_MUTEX_ERRORCHECK", PTHREAD_MUTEX_ERRORCHECK); - - runTest("PTHREAD_MUTEX_RECURSIVE", PTHREAD_MUTEX_RECURSIVE); -#else - runTest("Non-blocking lock", 0); -#endif - - printf( ".............................................................................\n"); - - pthread_mutexattr_setrobust(&ma, PTHREAD_MUTEX_ROBUST); - -#ifdef __PTW32_MUTEX_TYPES - runTest("PTHREAD_MUTEX_DEFAULT (Robust)", PTHREAD_MUTEX_DEFAULT); - - runTest("PTHREAD_MUTEX_NORMAL (Robust)", PTHREAD_MUTEX_NORMAL); - - runTest("PTHREAD_MUTEX_ERRORCHECK (Robust)", PTHREAD_MUTEX_ERRORCHECK); - - runTest("PTHREAD_MUTEX_RECURSIVE (Robust)", PTHREAD_MUTEX_RECURSIVE); -#else - runTest("Non-blocking lock", 0); -#endif - - printf( "=============================================================================\n"); - - /* - * End of tests. - */ - - pthread_mutexattr_destroy(&ma); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/benchtest5.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/benchtest5.c deleted file mode 100644 index d4fd515..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/benchtest5.c +++ /dev/null @@ -1,156 +0,0 @@ -/* - * benchtest5.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Measure time taken to complete an elementary operation. - * - * - Semaphore - * Single thread iteration over post/wait for a semaphore. - */ - -#include "test.h" - -#ifdef __GNUC__ -#include -#endif - -#include "benchtest.h" - -#define ITERATIONS 1000000L - -sem_t sema; -HANDLE w32sema; - -__PTW32_STRUCT_TIMEB currSysTimeStart; -__PTW32_STRUCT_TIMEB currSysTimeStop; -long durationMilliSecs; -long overHeadMilliSecs = 0; -int one = 1; -int zero = 0; - -#define GetDurationMilliSecs(_TStart, _TStop) ((long)((_TStop.time*1000+_TStop.millitm) \ - - (_TStart.time*1000+_TStart.millitm))) - -/* - * Dummy use of j, otherwise the loop may be removed by the optimiser - * when doing the overhead timing with an empty loop. - */ -#define TESTSTART \ - { int i, j = 0, k = 0; __PTW32_FTIME(&currSysTimeStart); for (i = 0; i < ITERATIONS; i++) { j++; - -#define TESTSTOP \ - }; __PTW32_FTIME(&currSysTimeStop); if (j + k == i) j++; } - - -void -reportTest (char * testNameString) -{ - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - - printf( "%-45s %15ld %15.3f\n", - testNameString, - durationMilliSecs, - (float) durationMilliSecs * 1E3 / ITERATIONS); -} - - -int -main (int argc, char *argv[]) -{ - printf( "=============================================================================\n"); - printf( "\nOperations on a semaphore.\n%ld iterations\n\n", - ITERATIONS); - printf( "%-45s %15s %15s\n", - "Test", - "Total(msec)", - "average(usec)"); - printf( "-----------------------------------------------------------------------------\n"); - - /* - * Time the loop overhead so we can subtract it from the actual test times. - */ - - TESTSTART - assert(1 == one); - TESTSTOP - - durationMilliSecs = GetDurationMilliSecs(currSysTimeStart, currSysTimeStop) - overHeadMilliSecs; - overHeadMilliSecs = durationMilliSecs; - - - /* - * Now we can start the actual tests - */ - assert((w32sema = CreateSemaphore(NULL, (long) 0, (long) ITERATIONS, NULL)) != 0); - TESTSTART - assert((ReleaseSemaphore(w32sema, 1, NULL),1) == one); - TESTSTOP - assert(CloseHandle(w32sema) != 0); - - reportTest("W32 Post with no waiters"); - - - assert((w32sema = CreateSemaphore(NULL, (long) ITERATIONS, (long) ITERATIONS, NULL)) != 0); - TESTSTART - assert((WaitForSingleObject(w32sema, INFINITE),1) == one); - TESTSTOP - assert(CloseHandle(w32sema) != 0); - - reportTest("W32 Wait without blocking"); - - - assert(sem_init(&sema, 0, 0) == 0); - TESTSTART - assert((sem_post(&sema),1) == one); - TESTSTOP - assert(sem_destroy(&sema) == 0); - - reportTest("POSIX Post with no waiters"); - - - assert(sem_init(&sema, 0, ITERATIONS) == 0); - TESTSTART - assert((sem_wait(&sema),1) == one); - TESTSTOP - assert(sem_destroy(&sema) == 0); - - reportTest("POSIX Wait without blocking"); - - - printf( "=============================================================================\n"); - - /* - * End of tests. - */ - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel1.c deleted file mode 100644 index b672230..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel1.c +++ /dev/null @@ -1,177 +0,0 @@ -/* - * File: cancel1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test setting cancel state and cancel type. - * - - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - pthread_setcancelstate function - * - pthread_setcanceltype function - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - pthread_create, pthread_self work. - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 2 -}; - -typedef struct bag_t_ bag_t; -struct bag_t_ { - int threadnum; - int started; - /* Add more per-thread state variables here */ -}; - -static bag_t threadbag[NUMTHREADS + 1]; - -void * -mythread(void * arg) -{ - bag_t * bag = (bag_t *) arg; - - assert(bag == &threadbag[bag->threadnum]); - assert(bag->started == 0); - bag->started = 1; - - /* ... */ - { - int oldstate; - int oldtype; - - assert(pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &oldstate) == 0); - assert(oldstate == PTHREAD_CANCEL_ENABLE); /* Check default */ - assert(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL) == 0); - assert(pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL) == 0); - assert(pthread_setcancelstate(oldstate, &oldstate) == 0); - assert(oldstate == PTHREAD_CANCEL_DISABLE); /* Check setting */ - - assert(pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &oldtype) == 0); - assert(oldtype == PTHREAD_CANCEL_DEFERRED); /* Check default */ - assert(pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, NULL) == 0); - assert(pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL) == 0); - assert(pthread_setcanceltype(oldtype, &oldtype) == 0); - assert(oldtype == PTHREAD_CANCEL_ASYNCHRONOUS); /* Check setting */ - } - - return 0; -} - -int -main() -{ - int failed = 0; - int i; - pthread_t t[NUMTHREADS + 1]; - - assert((t[0] = pthread_self()).p != NULL); - - for (i = 1; i <= NUMTHREADS; i++) - { - threadbag[i].started = 0; - threadbag[i].threadnum = i; - assert(pthread_create(&t[i], NULL, mythread, (void *) &threadbag[i]) == 0); - } - - /* - * Code to control or manipulate child threads should probably go here. - */ - - /* - * Give threads time to run. - */ - Sleep(NUMTHREADS * 100); - - /* - * Standard check that all threads started. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - failed = !threadbag[i].started; - - if (failed) - { - fprintf(stderr, "Thread %d: started %d\n", i, threadbag[i].started); - } - } - - assert(!failed); - - /* - * Check any results here. Set "failed" and only print output on failure. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - /* ... */ - } - - assert(!failed); - - /* - * Success. - */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel2.c deleted file mode 100644 index a67fbd2..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel2.c +++ /dev/null @@ -1,236 +0,0 @@ -/* - * File: cancel2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test SEH or C++ cancel exception handling within - * application exception blocks. - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - have working pthread_create, pthread_self, pthread_mutex_lock/unlock - * pthread_testcancel, pthread_cancel, pthread_join - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -/* - * Don't know how to identify if we are using SEH so it's only C++ for now - */ -#if defined(__cplusplus) - -#include "test.h" - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 4 -}; - -typedef struct bag_t_ bag_t; -struct bag_t_ { - int threadnum; - int started; - /* Add more per-thread state variables here */ -}; - -static bag_t threadbag[NUMTHREADS + 1]; - -static pthread_barrier_t go = NULL; - -void * -mythread(void * arg) -{ - int result = 0; - bag_t * bag = (bag_t *) arg; - - assert(bag == &threadbag[bag->threadnum]); - assert(bag->started == 0); - bag->started = 1; - - /* Set to known state and type */ - - assert(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL) == 0); - assert(pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, NULL) == 0); - result = 1; - -#if !defined(__cplusplus) - __try -#else - try -#endif - { - /* Wait for go from main */ - pthread_barrier_wait(&go); - pthread_barrier_wait(&go); - - pthread_testcancel(); - } -#if !defined(__cplusplus) - __except(EXCEPTION_EXECUTE_HANDLER) -#else -#if defined(__PtW32CatchAll) - __PtW32CatchAll -#else - catch(...) -#endif -#endif - { - /* - * Should not get into here. - */ - result += 100; - } - - /* - * Should not get to here either. - */ - result += 1000; - - return (void *)(size_t)result; -} - -int -main() -{ - int failed = 0; - int i; - pthread_t t[NUMTHREADS + 1]; - - assert((t[0] = pthread_self()).p != NULL); - assert(pthread_barrier_init(&go, NULL, NUMTHREADS + 1) == 0); - - for (i = 1; i <= NUMTHREADS; i++) - { - threadbag[i].started = 0; - threadbag[i].threadnum = i; - assert(pthread_create(&t[i], NULL, mythread, (void *) &threadbag[i]) == 0); - } - - /* - * Code to control or manipulate child threads should probably go here. - */ - - pthread_barrier_wait(&go); - - for (i = 1; i <= NUMTHREADS; i++) - { - assert(pthread_cancel(t[i]) == 0); - } - - pthread_barrier_wait(&go); - - /* - * Standard check that all threads started. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - if (!threadbag[i].started) - { - failed |= !threadbag[i].started; - fprintf(stderr, "Thread %d: started %d\n", i, threadbag[i].started); - } - } - - assert(!failed); - - /* - * Check any results here. Set "failed" and only print output on failure. - */ - failed = 0; - for (i = 1; i <= NUMTHREADS; i++) - { - int fail = 0; - void* result = (void*)0; - - assert(pthread_join(t[i], &result) == 0); - fail = (result != PTHREAD_CANCELED); - if (fail) - { - fprintf(stderr, "Thread %d: started %d: location %d\n", - i, - threadbag[i].started, - (int)(size_t)result); - } - failed |= fail; - } - - assert(!failed); - assert(pthread_barrier_destroy(&go) == 0); - - /* - * Success. - */ - return 0; -} - -#else /* defined(__cplusplus) */ - -#include - -int -main() -{ - fprintf(stderr, "Test N/A for this compiler environment.\n"); - return 0; -} - -#endif /* defined(__cplusplus) */ - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel3.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel3.c deleted file mode 100644 index 88e203d..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel3.c +++ /dev/null @@ -1,202 +0,0 @@ -/* - * File: cancel3.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test asynchronous cancellation (alertable or non-alertable). - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - Async cancel if thread is not blocked (i.e. voluntarily resumes if blocked). - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - have working pthread_create, pthread_self, pthread_mutex_lock/unlock - * pthread_testcancel, pthread_cancel, pthread_join. - * - quserex.dll and alertdrv.sys are not available. - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum -{ - NUMTHREADS = 4 -}; - -typedef struct bag_t_ bag_t; -struct bag_t_ -{ - int threadnum; - int started; - /* Add more per-thread state variables here */ - int count; -}; - -static bag_t threadbag[NUMTHREADS + 1]; - -void * -mythread (void *arg) -{ - void* result = (void*)((int)(size_t)PTHREAD_CANCELED + 1); - bag_t *bag = (bag_t *) arg; - - assert (bag == &threadbag[bag->threadnum]); - assert (bag->started == 0); - bag->started = 1; - - /* Set to known state and type */ - - assert (pthread_setcancelstate (PTHREAD_CANCEL_ENABLE, NULL) == 0); - - assert (pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, NULL) == 0); - - /* - * We wait up to 10 seconds, waking every 0.1 seconds, - * for a cancellation to be applied to us. - */ - for (bag->count = 0; bag->count < 100; bag->count++) - Sleep (100); - - return result; -} - -int -main () -{ - int failed = 0; - int i; - pthread_t t[NUMTHREADS + 1]; - - DWORD dwMode = SetErrorMode(SEM_NOGPFAULTERRORBOX); - SetErrorMode(dwMode | SEM_NOGPFAULTERRORBOX); - - assert ((t[0] = pthread_self ()).p != NULL); - - for (i = 1; i <= NUMTHREADS; i++) - { - threadbag[i].started = 0; - threadbag[i].threadnum = i; - assert (pthread_create (&t[i], NULL, mythread, (void *) &threadbag[i]) - == 0); - } - - /* - * Code to control or manipulate child threads should probably go here. - */ - Sleep (NUMTHREADS * 100); - - for (i = 1; i <= NUMTHREADS; i++) - { - assert (pthread_cancel (t[i]) == 0); - } - - /* - * Give threads time to complete. - */ - Sleep (NUMTHREADS * 100); - - /* - * Standard check that all threads started. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - if (!threadbag[i].started) - { - failed |= !threadbag[i].started; - fprintf (stderr, "Thread %d: started %d\n", i, - threadbag[i].started); - } - } - - assert (!failed); - - /* - * Check any results here. Set "failed" and only print output on failure. - */ - failed = 0; - for (i = 1; i <= NUMTHREADS; i++) - { - int fail = 0; - void* result = (void*)0; - - /* - * The thread does not contain any cancellation points, so - * a return value of PTHREAD_CANCELED confirms that async - * cancellation succeeded. - */ - assert (pthread_join (t[i], &result) == 0); - - fail = (result != PTHREAD_CANCELED); - - if (fail) - { - fprintf (stderr, "Thread %d: started %d: count %d\n", - i, threadbag[i].started, threadbag[i].count); - } - failed = (failed || fail); - } - - assert (!failed); - - /* - * Success. - */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel4.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel4.c deleted file mode 100644 index 7f31d6b..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel4.c +++ /dev/null @@ -1,201 +0,0 @@ -/* - * File: cancel4.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test cancellation does not occur in deferred - * cancellation threads with no cancellation points. - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - pthread_create - * pthread_self - * pthread_cancel - * pthread_join - * pthread_setcancelstate - * pthread_setcanceltype - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 4 -}; - -typedef struct bag_t_ bag_t; -struct bag_t_ { - int threadnum; - int started; - /* Add more per-thread state variables here */ - int count; -}; - -static bag_t threadbag[NUMTHREADS + 1]; - -void * -mythread(void * arg) -{ - void* result = (void*)((int)(size_t)PTHREAD_CANCELED + 1); - bag_t * bag = (bag_t *) arg; - - assert(bag == &threadbag[bag->threadnum]); - assert(bag->started == 0); - bag->started = 1; - - /* Set to known state and type */ - - assert(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL) == 0); - - assert(pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, NULL) == 0); - - /* - * We wait up to 2 seconds, waking every 0.1 seconds, - * for a cancellation to be applied to us. - */ - for (bag->count = 0; bag->count < 20; bag->count++) - Sleep(100); - - return result; -} - -int -main() -{ - int failed = 0; - int i; - pthread_t t[NUMTHREADS + 1]; - - assert((t[0] = pthread_self()).p != NULL); - - for (i = 1; i <= NUMTHREADS; i++) - { - threadbag[i].started = 0; - threadbag[i].threadnum = i; - assert(pthread_create(&t[i], NULL, mythread, (void *) &threadbag[i]) == 0); - } - - /* - * Code to control or manipulate child threads should probably go here. - */ - Sleep(500); - - for (i = 1; i <= NUMTHREADS; i++) - { - assert(pthread_cancel(t[i]) == 0); - } - - /* - * Give threads time to run. - */ - Sleep(NUMTHREADS * 100); - - /* - * Standard check that all threads started. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - if (!threadbag[i].started) - { - failed |= !threadbag[i].started; - fprintf(stderr, "Thread %d: started %d\n", i, threadbag[i].started); - } - } - - assert(!failed); - - /* - * Check any results here. Set "failed" and only print output on failure. - */ - failed = 0; - for (i = 1; i <= NUMTHREADS; i++) - { - int fail = 0; - void* result = (void*)0; - - /* - * The thread does not contain any cancellation points, so - * a return value of PTHREAD_CANCELED indicates that async - * cancellation occurred. - */ - assert(pthread_join(t[i], &result) == 0); - - fail = (result == PTHREAD_CANCELED); - - if (fail) - { - fprintf(stderr, "Thread %d: started %d: count %d\n", - i, - threadbag[i].started, - threadbag[i].count); - } - failed = (failed || fail); - } - - assert(!failed); - - /* - * Success. - */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel5.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel5.c deleted file mode 100644 index 9bc770b..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel5.c +++ /dev/null @@ -1,200 +0,0 @@ -/* - * File: cancel5.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test calling pthread_cancel from the main thread - * without calling pthread_self() in main. - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - have working pthread_create, pthread_self, pthread_mutex_lock/unlock - * pthread_testcancel, pthread_cancel, pthread_join - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum -{ - NUMTHREADS = 4 -}; - -typedef struct bag_t_ bag_t; -struct bag_t_ -{ - int threadnum; - int started; - /* Add more per-thread state variables here */ - int count; -}; - -static bag_t threadbag[NUMTHREADS + 1]; - -void * -mythread (void *arg) -{ - void* result = (void*)((int)(size_t)PTHREAD_CANCELED + 1); - bag_t *bag = (bag_t *) arg; - - assert (bag == &threadbag[bag->threadnum]); - assert (bag->started == 0); - bag->started = 1; - - /* Set to known state and type */ - - assert (pthread_setcancelstate (PTHREAD_CANCEL_ENABLE, NULL) == 0); - - assert (pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, NULL) == 0); - - /* - * We wait up to 10 seconds, waking every 0.1 seconds, - * for a cancellation to be applied to us. - */ - for (bag->count = 0; bag->count < 100; bag->count++) - Sleep (100); - - return result; -} - -int -main () -{ - int failed = 0; - int i; - pthread_t t[NUMTHREADS + 1]; - - DWORD dwMode = SetErrorMode(SEM_NOGPFAULTERRORBOX); - SetErrorMode(dwMode | SEM_NOGPFAULTERRORBOX); - - for (i = 1; i <= NUMTHREADS; i++) - { - threadbag[i].started = 0; - threadbag[i].threadnum = i; - assert (pthread_create (&t[i], NULL, mythread, (void *) &threadbag[i]) - == 0); - } - - /* - * Code to control or manipulate child threads should probably go here. - */ - Sleep (500); - - for (i = 1; i <= NUMTHREADS; i++) - { - assert (pthread_cancel (t[i]) == 0); - } - - /* - * Give threads time to run. - */ - Sleep (NUMTHREADS * 100); - - /* - * Standard check that all threads started. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - if (!threadbag[i].started) - { - failed |= !threadbag[i].started; - fprintf (stderr, "Thread %d: started %d\n", i, - threadbag[i].started); - } - } - - assert (!failed); - - /* - * Check any results here. Set "failed" and only print output on failure. - */ - failed = 0; - for (i = 1; i <= NUMTHREADS; i++) - { - int fail = 0; - void* result = (void*)((int)(size_t)PTHREAD_CANCELED + 1); - - /* - * The thread does not contain any cancellation points, so - * a return value of PTHREAD_CANCELED confirms that async - * cancellation succeeded. - */ - assert (pthread_join (t[i], &result) == 0); - - fail = (result != PTHREAD_CANCELED); - - if (fail) - { - fprintf (stderr, "Thread %d: started %d: count %d\n", - i, threadbag[i].started, threadbag[i].count); - } - failed = (failed || fail); - } - - assert (!failed); - - /* - * Success. - */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel6a.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel6a.c deleted file mode 100644 index 7646458..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel6a.c +++ /dev/null @@ -1,199 +0,0 @@ -/* - * File: cancel6a.c - * - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test double cancellation - asynchronous. - * Second attempt should fail (ESRCH). - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - have working pthread_create, pthread_self, pthread_mutex_lock/unlock - * pthread_testcancel, pthread_cancel, pthread_join - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 4 -}; - -typedef struct bag_t_ bag_t; -struct bag_t_ { - int threadnum; - int started; - /* Add more per-thread state variables here */ - int count; -}; - -static bag_t threadbag[NUMTHREADS + 1]; - -void * -mythread(void * arg) -{ - void* result = (void*)((int)(size_t)PTHREAD_CANCELED + 1); - bag_t * bag = (bag_t *) arg; - - assert(bag == &threadbag[bag->threadnum]); - assert(bag->started == 0); - bag->started = 1; - - /* Set to known state and type */ - - assert(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL) == 0); - - assert(pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL) == 0); - - /* - * We wait up to 10 seconds, waking every 0.1 seconds, - * for a cancellation to be applied to us. - */ - for (bag->count = 0; bag->count < 100; bag->count++) - Sleep(100); - - return result; -} - -int -main() -{ - int failed = 0; - int i; - pthread_t t[NUMTHREADS + 1]; - - DWORD dwMode = SetErrorMode(SEM_NOGPFAULTERRORBOX); - SetErrorMode(dwMode | SEM_NOGPFAULTERRORBOX); - - assert((t[0] = pthread_self()).p != NULL); - - for (i = 1; i <= NUMTHREADS; i++) - { - threadbag[i].started = 0; - threadbag[i].threadnum = i; - assert(pthread_create(&t[i], NULL, mythread, (void *) &threadbag[i]) == 0); - } - - /* - * Code to control or manipulate child threads should probably go here. - */ - Sleep(500); - - for (i = 1; i <= NUMTHREADS; i++) - { - assert(pthread_cancel(t[i]) == 0); - assert(pthread_cancel(t[i]) == ESRCH); - } - - /* - * Give threads time to run. - */ - Sleep(NUMTHREADS * 100); - - /* - * Standard check that all threads started. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - if (!threadbag[i].started) - { - failed |= !threadbag[i].started; - fprintf(stderr, "Thread %d: started %d\n", i, threadbag[i].started); - } - } - - assert(!failed); - - /* - * Check any results here. Set "failed" and only print output on failure. - */ - failed = 0; - for (i = 1; i <= NUMTHREADS; i++) - { - int fail = 0; - void* result = (void*)0; - - /* - * The thread does not contain any cancellation points, so - * a return value of PTHREAD_CANCELED confirms that async - * cancellation succeeded. - */ - assert(pthread_join(t[i], &result) == 0); - - fail = (result != PTHREAD_CANCELED); - - if (fail) - { - fprintf(stderr, "Thread %d: started %d: count %d\n", - i, - threadbag[i].started, - threadbag[i].count); - } - failed = (failed || fail); - } - - assert(!failed); - - /* - * Success. - */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel6d.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel6d.c deleted file mode 100644 index 2ead7dc..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel6d.c +++ /dev/null @@ -1,198 +0,0 @@ -/* - * File: cancel6d.c - * - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test double cancellation - deferred. - * Second attempt should succeed (unless the canceled thread has started - * cancellation already - not tested here). - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - have working pthread_create, pthread_self, pthread_mutex_lock/unlock - * pthread_testcancel, pthread_cancel, pthread_join - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 4 -}; - -typedef struct bag_t_ bag_t; -struct bag_t_ { - int threadnum; - int started; - /* Add more per-thread state variables here */ - int count; -}; - -static bag_t threadbag[NUMTHREADS + 1]; - -void * -mythread(void * arg) -{ - void* result = (void*)((int)(size_t)PTHREAD_CANCELED + 1); - bag_t * bag = (bag_t *) arg; - - assert(bag == &threadbag[bag->threadnum]); - assert(bag->started == 0); - bag->started = 1; - - /* Set to known state and type */ - - assert(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL) == 0); - - assert(pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, NULL) == 0); - - /* - * We wait up to 10 seconds, waking every 0.1 seconds, - * for a cancellation to be applied to us. - */ - for (bag->count = 0; bag->count < 100; bag->count++) - { - Sleep(100); - pthread_testcancel(); - } - - return result; -} - -int -main() -{ - int failed = 0; - int i; - pthread_t t[NUMTHREADS + 1]; - - assert((t[0] = pthread_self()).p != NULL); - - for (i = 1; i <= NUMTHREADS; i++) - { - threadbag[i].started = 0; - threadbag[i].threadnum = i; - assert(pthread_create(&t[i], NULL, mythread, (void *)(size_t) &threadbag[i]) == 0); - } - - /* - * Code to control or manipulate child threads should probably go here. - */ - Sleep(500); - - for (i = 1; i <= NUMTHREADS; i++) - { - assert(pthread_cancel(t[i]) == 0); - if (pthread_cancel(t[i]) != 0) - { - printf("Second cancellation failed but this is expected sometimes.\n"); - } - } - - /* - * Give threads time to run. - */ - Sleep(NUMTHREADS * 100); - - /* - * Standard check that all threads started. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - if (!threadbag[i].started) - { - failed |= !threadbag[i].started; - fprintf(stderr, "Thread %d: started %d\n", i, threadbag[i].started); - } - } - - assert(!failed); - - /* - * Check any results here. Set "failed" and only print output on failure. - */ - failed = 0; - for (i = 1; i <= NUMTHREADS; i++) - { - int fail = 0; - void* result = (void*)0; - - assert(pthread_join(t[i], &result) == 0); - - fail = (result != PTHREAD_CANCELED); - - if (fail) - { - fprintf(stderr, "Thread %d: started %d: count %d\n", - i, - threadbag[i].started, - threadbag[i].count); - } - failed = (failed || fail); - } - - assert(!failed); - - /* - * Success. - */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel7.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel7.c deleted file mode 100644 index cd3a577..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel7.c +++ /dev/null @@ -1,216 +0,0 @@ -/* - * File: cancel7.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test canceling a Win32 thread having created an - * implicit POSIX handle for it. - * - * Test Method (Validation or Falsification): - * - Validate return value and that POSIX handle is created and destroyed. - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - have working pthread_create, pthread_self, pthread_mutex_lock/unlock - * pthread_testcancel, pthread_cancel - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" -#ifndef _UWIN -#include -#endif - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 4 -}; - -typedef struct bag_t_ bag_t; -struct bag_t_ { - int threadnum; - int started; - /* Add more per-thread state variables here */ - int count; - pthread_t self; -}; - -static bag_t threadbag[NUMTHREADS + 1]; - -#if ! defined (__MINGW32__) || defined (__MSVCRT__) -unsigned __stdcall -#else -void -#endif -Win32thread(void * arg) -{ - int i; - bag_t * bag = (bag_t *) arg; - - assert(bag == &threadbag[bag->threadnum]); - assert(bag->started == 0); - bag->started = 1; - - assert((bag->self = pthread_self()).p != NULL); - assert(pthread_kill(bag->self, 0) == 0); - - for (i = 0; i < 100; i++) - { - Sleep(100); - pthread_testcancel(); - } - -#if ! defined (__MINGW32__) || defined (__MSVCRT__) - return 0; -#endif -} - -int -main() -{ - int failed = 0; - int i; - HANDLE h[NUMTHREADS + 1]; - unsigned thrAddr; /* Dummy variable to pass a valid location to _beginthreadex (Win98). */ - - for (i = 1; i <= NUMTHREADS; i++) - { - threadbag[i].started = 0; - threadbag[i].threadnum = i; -#if ! defined (__MINGW32__) || defined (__MSVCRT__) - h[i] = (HANDLE) _beginthreadex(NULL, 0, Win32thread, (void *) &threadbag[i], 0, &thrAddr); -#else - h[i] = (HANDLE) _beginthread(Win32thread, 0, (void *) &threadbag[i]); -#endif - } - - /* - * Code to control or manipulate child threads should probably go here. - */ - Sleep(500); - - /* - * Cancel all threads. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - assert(pthread_kill(threadbag[i].self, 0) == 0); - assert(pthread_cancel(threadbag[i].self) == 0); - } - - /* - * Give threads time to run. - */ - Sleep(NUMTHREADS * 100); - - /* - * Standard check that all threads started. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - if (!threadbag[i].started) - { - failed |= !threadbag[i].started; - fprintf(stderr, "Thread %d: started %d\n", i, threadbag[i].started); - } - } - - assert(!failed); - - /* - * Check any results here. Set "failed" and only print output on failure. - */ - failed = 0; - for (i = 1; i <= NUMTHREADS; i++) - { - int fail = 0; - int result = 0; - -#if ! defined (__MINGW32__) || defined (__MSVCRT__) - assert(GetExitCodeThread(h[i], (LPDWORD) &result) == TRUE); -#else - /* - * Can't get a result code. - */ - result = (int)(size_t)PTHREAD_CANCELED; -#endif - - assert(threadbag[i].self.p != NULL); - assert(pthread_kill(threadbag[i].self, 0) == ESRCH); - - fail = (result != (int)(size_t)PTHREAD_CANCELED); - - if (fail) - { - fprintf(stderr, "Thread %d: started %d: count %d\n", - i, - threadbag[i].started, - threadbag[i].count); - } - failed = (failed || fail); - } - - assert(!failed); - - /* - * Success. - */ - return 0; -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel8.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel8.c deleted file mode 100644 index f2c20a2..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel8.c +++ /dev/null @@ -1,217 +0,0 @@ -/* - * File: cancel8.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test cancelling a blocked Win32 thread having created an - * implicit POSIX handle for it. - * - * Test Method (Validation or Falsification): - * - Validate return value and that POSIX handle is created and destroyed. - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - have working pthread_create, pthread_self, pthread_mutex_lock/unlock - * pthread_testcancel, pthread_cancel - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" -#ifndef _UWIN -#include -#endif - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 4 -}; - -typedef struct bag_t_ bag_t; -struct bag_t_ { - int threadnum; - int started; - /* Add more per-thread state variables here */ - int count; - pthread_t self; -}; - -static bag_t threadbag[NUMTHREADS + 1]; - -pthread_cond_t CV = PTHREAD_COND_INITIALIZER; -pthread_mutex_t CVLock = PTHREAD_MUTEX_INITIALIZER; - -#if ! defined (__MINGW32__) || defined (__MSVCRT__) -unsigned __stdcall -#else -void -#endif -Win32thread(void * arg) -{ - bag_t * bag = (bag_t *) arg; - - assert(bag == &threadbag[bag->threadnum]); - assert(bag->started == 0); - bag->started = 1; - - assert((bag->self = pthread_self()).p != NULL); - assert(pthread_kill(bag->self, 0) == 0); - - assert(pthread_mutex_lock(&CVLock) == 0); - pthread_cleanup_push(pthread_mutex_unlock, &CVLock); - pthread_cond_wait(&CV, &CVLock); - pthread_cleanup_pop(1); - -#if ! defined (__MINGW32__) || defined (__MSVCRT__) - return 0; -#endif -} - -int -main() -{ - int failed = 0; - int i; - HANDLE h[NUMTHREADS + 1]; - unsigned thrAddr; /* Dummy variable to pass a valid location to _beginthreadex (Win98). */ - - for (i = 1; i <= NUMTHREADS; i++) - { - threadbag[i].started = 0; - threadbag[i].threadnum = i; -#if ! defined (__MINGW32__) || defined (__MSVCRT__) - h[i] = (HANDLE) _beginthreadex(NULL, 0, Win32thread, (void *) &threadbag[i], 0, &thrAddr); -#else - h[i] = (HANDLE) _beginthread(Win32thread, 0, (void *) &threadbag[i]); -#endif - } - - /* - * Code to control or manipulate child threads should probably go here. - */ - Sleep(500); - - /* - * Cancel all threads. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - assert(pthread_kill(threadbag[i].self, 0) == 0); - assert(pthread_cancel(threadbag[i].self) == 0); - } - - /* - * Give threads time to run. - */ - Sleep(NUMTHREADS * 100); - - /* - * Standard check that all threads started. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - if (!threadbag[i].started) - { - failed |= !threadbag[i].started; - fprintf(stderr, "Thread %d: started %d\n", i, threadbag[i].started); - } - } - - assert(!failed); - - /* - * Check any results here. Set "failed" and only print output on failure. - */ - failed = 0; - for (i = 1; i <= NUMTHREADS; i++) - { - int fail = 0; - int result = 0; - -#if ! defined (__MINGW32__) || defined (__MSVCRT__) - assert(GetExitCodeThread(h[i], (LPDWORD) &result) == TRUE); -#else - /* - * Can't get a result code. - */ - result = (int)(size_t)PTHREAD_CANCELED; -#endif - - assert(threadbag[i].self.p != NULL); - assert(pthread_kill(threadbag[i].self, 0) == ESRCH); - - fail = (result != (int)(size_t)PTHREAD_CANCELED); - - if (fail) - { - fprintf(stderr, "Thread %d: started %d: count %d\n", - i, - threadbag[i].started, - threadbag[i].count); - } - failed = (failed || fail); - } - - assert(!failed); - - /* - * Success. - */ - return 0; -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel9.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel9.c deleted file mode 100644 index 52468ac..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cancel9.c +++ /dev/null @@ -1,198 +0,0 @@ -/* - * File: cancel9.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test true asynchronous cancellation with Alert driver. - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - Cancel threads, including those blocked on system recources - * such as network I/O. - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - have working pthread_create, pthread_self, pthread_mutex_lock/unlock - * pthread_testcancel, pthread_cancel, pthread_join - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" -#include - - -void * -test_udp (void *arg) -{ - struct sockaddr_in serverAddress; - struct sockaddr_in clientAddress; - SOCKET UDPSocket; - int addr_len; - int nbyte; - char buffer[4096]; - WORD wsaVersion = MAKEWORD (2, 2); - WSADATA wsaData; - - pthread_setcancelstate (PTHREAD_CANCEL_ENABLE, NULL); - pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, NULL); - - if (WSAStartup (wsaVersion, &wsaData) != 0) - { - return NULL; - } - - UDPSocket = socket (AF_INET, SOCK_DGRAM, 0); - if ((int)UDPSocket == -1) - { - printf ("Server: socket ERROR \n"); - exit (-1); - } - - serverAddress.sin_family = AF_INET; - serverAddress.sin_addr.s_addr = INADDR_ANY; - serverAddress.sin_port = htons (9003); - - if (bind - (UDPSocket, (struct sockaddr *) &serverAddress, - sizeof (struct sockaddr_in))) - { - printf ("Server: ERROR can't bind UDPSocket"); - exit (-1); - } - - addr_len = sizeof (struct sockaddr); - - nbyte = 512; - - (void) recvfrom (UDPSocket, (char *) buffer, nbyte, 0, - (struct sockaddr *) &clientAddress, &addr_len); - - closesocket (UDPSocket); - WSACleanup (); - - return NULL; -} - - -void * -test_sleep (void *arg) -{ - pthread_setcancelstate (PTHREAD_CANCEL_ENABLE, NULL); - pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, NULL); - - Sleep (1000); - return NULL; - -} - -void * -test_wait (void *arg) -{ - HANDLE hEvent; - - pthread_setcancelstate (PTHREAD_CANCEL_ENABLE, NULL); - pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, NULL); - - hEvent = CreateEvent (NULL, FALSE, FALSE, NULL); - - (void) WaitForSingleObject (hEvent, 1000); /* WAIT_IO_COMPLETION */ - - return NULL; -} - - -int -main () -{ - pthread_t t; - void *result; - - if (pthread_win32_test_features_np (__PTW32_ALERTABLE_ASYNC_CANCEL)) - { - printf ("Cancel sleeping thread.\n"); - assert (pthread_create (&t, NULL, test_sleep, NULL) == 0); - /* Sleep for a while; then cancel */ - Sleep (100); - assert (pthread_cancel (t) == 0); - assert (pthread_join (t, &result) == 0); - assert (result == PTHREAD_CANCELED && "test_sleep"); - - printf ("Cancel waiting thread.\n"); - assert (pthread_create (&t, NULL, test_wait, NULL) == 0); - /* Sleep for a while; then cancel. */ - Sleep (100); - assert (pthread_cancel (t) == 0); - assert (pthread_join (t, &result) == 0); - assert (result == PTHREAD_CANCELED && "test_wait"); - - printf ("Cancel blocked thread (blocked on network I/O).\n"); - assert (pthread_create (&t, NULL, test_udp, NULL) == 0); - /* Sleep for a while; then cancel. */ - Sleep (100); - assert (pthread_cancel (t) == 0); - assert (pthread_join (t, &result) == 0); - assert (result == PTHREAD_CANCELED && "test_udp"); - } - else - { - printf ("Alertable async cancel not available.\n"); - } - - /* - * Success. - */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cleanup0.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cleanup0.c deleted file mode 100644 index 742eaa7..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cleanup0.c +++ /dev/null @@ -1,229 +0,0 @@ -/* - * File: cleanup1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test cleanup handler executes (when thread is not canceled). - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - have working pthread_create, pthread_self, pthread_mutex_lock/unlock - * pthread_testcancel, pthread_cancel, pthread_join - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#if defined(_MSC_VER) || defined(__cplusplus) - -#include "test.h" - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 10 -}; - -typedef struct bag_t_ bag_t; -struct bag_t_ { - int threadnum; - int started; - /* Add more per-thread state variables here */ - int count; -}; - -static bag_t threadbag[NUMTHREADS + 1]; - -typedef struct { - int i; - CRITICAL_SECTION cs; -} sharedInt_t; - -static sharedInt_t pop_count; - -static void -increment_pop_count(void * arg) -{ - sharedInt_t * sI = (sharedInt_t *) arg; - - EnterCriticalSection(&sI->cs); - sI->i++; - LeaveCriticalSection(&sI->cs); -} - -void * -mythread(void * arg) -{ - int result = 0; - bag_t * bag = (bag_t *) arg; - - assert(bag == &threadbag[bag->threadnum]); - assert(bag->started == 0); - bag->started = 1; - - /* Set to known state and type */ - - assert(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL) == 0); - - assert(pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL) == 0); - -#ifdef _MSC_VER -#pragma inline_depth(0) -#endif - pthread_cleanup_push(increment_pop_count, (void *) &pop_count); - - Sleep(100); - - pthread_cleanup_pop(1); -#ifdef _MSC_VER -#pragma inline_depth() -#endif - - return (void *) (size_t)result; -} - -int -main() -{ - int failed = 0; - int i; - pthread_t t[NUMTHREADS + 1]; - - memset(&pop_count, 0, sizeof(sharedInt_t)); - - InitializeCriticalSection(&pop_count.cs); - - assert((t[0] = pthread_self()).p != NULL); - - for (i = 1; i <= NUMTHREADS; i++) - { - threadbag[i].started = 0; - threadbag[i].threadnum = i; - assert(pthread_create(&t[i], NULL, mythread, (void *) &threadbag[i]) == 0); - } - - /* - * Code to control or manipulate child threads should probably go here. - */ - Sleep(500); - - /* - * Give threads time to run. - */ - Sleep(NUMTHREADS * 100); - - /* - * Standard check that all threads started. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - if (!threadbag[i].started) - { - failed |= !threadbag[i].started; - fprintf(stderr, "Thread %d: started %d\n", i, threadbag[i].started); - } - } - - assert(!failed); - - /* - * Check any results here. Set "failed" and only print output on failure. - */ - failed = 0; - for (i = 1; i <= NUMTHREADS; i++) - { - int fail = 0; - void* result = (void*)0; - - assert(pthread_join(t[i], &result) == 0); - - fail = (result == PTHREAD_CANCELED); - - if (fail) - { - fprintf(stderr, "Thread %d: started %d: result %d\n", - i, - threadbag[i].started, - (int)(size_t)result); - fflush(stderr); - } - failed = (failed || fail); - } - - assert(!failed); - - assert(pop_count.i == NUMTHREADS); - - DeleteCriticalSection(&pop_count.cs); - - /* - * Success. - */ - return 0; -} - -#else /* defined(_MSC_VER) || defined(__cplusplus) */ - -int -main() -{ - return 0; -} - -#endif /* defined(_MSC_VER) || defined(__cplusplus) */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cleanup1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cleanup1.c deleted file mode 100644 index 85d0e0d..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cleanup1.c +++ /dev/null @@ -1,245 +0,0 @@ -/* - * File: cleanup1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test cleanup handler executes (when thread is canceled). - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - have working pthread_create, pthread_self, pthread_mutex_lock/unlock - * pthread_testcancel, pthread_cancel, pthread_join - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#if defined(_MSC_VER) || defined(__cplusplus) - -#include "test.h" - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 10 -}; - -typedef struct bag_t_ bag_t; -struct bag_t_ { - int threadnum; - int started; - /* Add more per-thread state variables here */ - int count; -}; - -static bag_t threadbag[NUMTHREADS + 1]; - -typedef struct { - int i; - CRITICAL_SECTION cs; -} sharedInt_t; - -static sharedInt_t pop_count; - -static void -#ifdef __PTW32_CLEANUP_C -__cdecl -#endif -increment_pop_count(void * arg) -{ - sharedInt_t * sI = (sharedInt_t *) arg; - - EnterCriticalSection(&sI->cs); - sI->i++; - LeaveCriticalSection(&sI->cs); -} - -void * -mythread(void * arg) -{ - int result = 0; - bag_t * bag = (bag_t *) arg; - - assert(bag == &threadbag[bag->threadnum]); - assert(bag->started == 0); - bag->started = 1; - - /* Set to known state and type */ - - assert(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL) == 0); - - assert(pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL) == 0); - -#ifdef _MSC_VER -#pragma inline_depth(0) -#endif - pthread_cleanup_push(increment_pop_count, (void *) &pop_count); - /* - * We don't have true async cancellation - it relies on the thread - * at least re-entering the run state at some point. - * We wait up to 10 seconds, waking every 0.1 seconds, - * for a cancellation to be applied to us. - */ - for (bag->count = 0; bag->count < 100; bag->count++) - Sleep(100); - - pthread_cleanup_pop(0); -#ifdef _MSC_VER -#pragma inline_depth() -#endif - - return (void *) (size_t)result; -} - -int -main() -{ - int failed = 0; - int i; - pthread_t t[NUMTHREADS + 1]; - - DWORD dwMode = SetErrorMode(SEM_NOGPFAULTERRORBOX); - SetErrorMode(dwMode | SEM_NOGPFAULTERRORBOX); - - memset(&pop_count, 0, sizeof(sharedInt_t)); - - InitializeCriticalSection(&pop_count.cs); - - assert((t[0] = pthread_self()).p != NULL); - - for (i = 1; i <= NUMTHREADS; i++) - { - threadbag[i].started = 0; - threadbag[i].threadnum = i; - assert(pthread_create(&t[i], NULL, mythread, (void *) &threadbag[i]) == 0); - } - - /* - * Code to control or manipulate child threads should probably go here. - */ - Sleep(500); - - for (i = 1; i <= NUMTHREADS; i++) - { - assert(pthread_cancel(t[i]) == 0); - } - - /* - * Give threads time to run. - */ - Sleep(NUMTHREADS * 100); - - /* - * Standard check that all threads started. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - if (!threadbag[i].started) - { - failed |= !threadbag[i].started; - fprintf(stderr, "Thread %d: started %d\n", i, threadbag[i].started); - } - } - - assert(!failed); - - /* - * Check any results here. Set "failed" and only print output on failure. - */ - failed = 0; - for (i = 1; i <= NUMTHREADS; i++) - { - int fail = 0; - void* result = (void*)0; - - assert(pthread_join(t[i], &result) == 0); - - fail = (result != PTHREAD_CANCELED); - - if (fail) - { - fprintf(stderr, "Thread %d: started %d: result %d\n", - i, - threadbag[i].started, - (int)(size_t)result); - } - failed = (failed || fail); - } - - assert(!failed); - - assert(pop_count.i == NUMTHREADS); - - DeleteCriticalSection(&pop_count.cs); - - /* - * Success. - */ - return 0; -} - -#else /* defined(_MSC_VER) || defined(__cplusplus) */ - -int -main() -{ - return 0; -} - -#endif /* defined(_MSC_VER) || defined(__cplusplus) */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cleanup2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cleanup2.c deleted file mode 100644 index 95e893d..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cleanup2.c +++ /dev/null @@ -1,217 +0,0 @@ -/* - * File: cleanup2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test cleanup handler executes (when thread is not canceled). - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - have working pthread_create, pthread_self, pthread_mutex_lock/unlock - * pthread_testcancel, pthread_cancel, pthread_join - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#if defined(_MSC_VER) || defined(__cplusplus) - -#include "test.h" - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 10 -}; - -typedef struct bag_t_ bag_t; -struct bag_t_ { - int threadnum; - int started; - /* Add more per-thread state variables here */ - int count; -}; - -static bag_t threadbag[NUMTHREADS + 1]; - -typedef struct { - int i; - CRITICAL_SECTION cs; -} sharedInt_t; - -static sharedInt_t pop_count; - -static void -increment_pop_count(void * arg) -{ - sharedInt_t * sI = (sharedInt_t *) arg; - - EnterCriticalSection(&sI->cs); - sI->i++; - LeaveCriticalSection(&sI->cs); -} - -void * -mythread(void * arg) -{ - int result = 0; - bag_t * bag = (bag_t *) arg; - - assert(bag == &threadbag[bag->threadnum]); - assert(bag->started == 0); - bag->started = 1; - -#ifdef _MSC_VER -#pragma inline_depth(0) -#endif - pthread_cleanup_push(increment_pop_count, (void *) &pop_count); - - sched_yield(); - - pthread_cleanup_pop(1); -#ifdef _MSC_VER -#pragma inline_depth() -#endif - - return (void *) (size_t)result; -} - -int -main() -{ - int failed = 0; - int i; - pthread_t t[NUMTHREADS + 1]; - - memset(&pop_count, 0, sizeof(sharedInt_t)); - - InitializeCriticalSection(&pop_count.cs); - - assert((t[0] = pthread_self()).p != NULL); - - for (i = 1; i <= NUMTHREADS; i++) - { - threadbag[i].started = 0; - threadbag[i].threadnum = i; - assert(pthread_create(&t[i], NULL, mythread, (void *) &threadbag[i]) == 0); - } - - /* - * Code to control or manipulate child threads should probably go here. - */ - Sleep(1000); - - /* - * Standard check that all threads started. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - if (!threadbag[i].started) - { - failed |= !threadbag[i].started; - fprintf(stderr, "Thread %d: started %d\n", i, threadbag[i].started); - } - } - - assert(!failed); - - /* - * Check any results here. Set "failed" and only print output on failure. - */ - failed = 0; - for (i = 1; i <= NUMTHREADS; i++) - { - int fail = 0; - void* result = (void*)0; - - assert(pthread_join(t[i], &result) == 0); - - fail = ((int)(size_t)result != 0); - - if (fail) - { - fprintf(stderr, "Thread %d: started %d: result: %d\n", - i, - threadbag[i].started, - (int)(size_t)result); - } - failed = (failed || fail); - } - - assert(!failed); - - assert(pop_count.i == NUMTHREADS); - - DeleteCriticalSection(&pop_count.cs); - - /* - * Success. - */ - return 0; -} - -#else /* defined(_MSC_VER) || defined(__cplusplus) */ - -int -main() -{ - return 0; -} - -#endif /* defined(_MSC_VER) || defined(__cplusplus) */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cleanup3.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cleanup3.c deleted file mode 100644 index 9f4f771..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/cleanup3.c +++ /dev/null @@ -1,222 +0,0 @@ -/* - * File: cleanup3.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test cleanup handler does not execute (when thread is - * not canceled). - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - have working pthread_create, pthread_self, pthread_mutex_lock/unlock - * pthread_testcancel, pthread_cancel, pthread_join - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#if defined(_MSC_VER) || defined(__cplusplus) - -#include "test.h" - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 10 -}; - -typedef struct bag_t_ bag_t; -struct bag_t_ { - int threadnum; - int started; - /* Add more per-thread state variables here */ - int count; -}; - -static bag_t threadbag[NUMTHREADS + 1]; - -typedef struct { - int i; - CRITICAL_SECTION cs; -} sharedInt_t; - -static sharedInt_t pop_count; - -static void -increment_pop_count(void * arg) -{ - sharedInt_t * sI = (sharedInt_t *) arg; - - EnterCriticalSection(&sI->cs); - sI->i++; - LeaveCriticalSection(&sI->cs); -} - -void * -mythread(void * arg) -{ - int result = 0; - bag_t * bag = (bag_t *) arg; - - assert(bag == &threadbag[bag->threadnum]); - assert(bag->started == 0); - bag->started = 1; - -#ifdef _MSC_VER -#pragma inline_depth(0) -#endif - pthread_cleanup_push(increment_pop_count, (void *) &pop_count); - - sched_yield(); - - EnterCriticalSection(&pop_count.cs); - pop_count.i--; - LeaveCriticalSection(&pop_count.cs); - - pthread_cleanup_pop(0); -#ifdef _MSC_VER -#pragma inline_depth() -#endif - - return (void *) (size_t)result; -} - -int -main() -{ - int failed = 0; - int i; - pthread_t t[NUMTHREADS + 1]; - - memset(&pop_count, 0, sizeof(sharedInt_t)); - - InitializeCriticalSection(&pop_count.cs); - - assert((t[0] = pthread_self()).p != NULL); - - for (i = 1; i <= NUMTHREADS; i++) - { - threadbag[i].started = 0; - threadbag[i].threadnum = i; - assert(pthread_create(&t[i], NULL, mythread, (void *) &threadbag[i]) == 0); - } - - /* - * Code to control or manipulate child threads should probably go here. - */ - Sleep(1000); - - /* - * Standard check that all threads started. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - if (!threadbag[i].started) - { - failed |= !threadbag[i].started; - fprintf(stderr, "Thread %d: started %d\n", i, threadbag[i].started); - } - } - - assert(!failed); - - /* - * Check any results here. Set "failed" and only print output on failure. - */ - failed = 0; - for (i = 1; i <= NUMTHREADS; i++) - { - int fail = 0; - void* result = (void*)0; - - assert(pthread_join(t[i], &result) == 0); - - fail = ((int)(size_t)result != 0); - - if (fail) - { - fprintf(stderr, "Thread %d: started %d: result: %d\n", - i, - threadbag[i].started, - (int)(size_t)result); - } - failed = (failed || fail); - } - - assert(!failed); - - assert(pop_count.i == -(NUMTHREADS)); - - DeleteCriticalSection(&pop_count.cs); - - /* - * Success. - */ - return 0; -} - -#else /* defined(_MSC_VER) || defined(__cplusplus) */ - -int -main() -{ - return 0; -} - -#endif /* defined(_MSC_VER) || defined(__cplusplus) */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/common.mk b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/common.mk deleted file mode 100644 index af4ed0c..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/common.mk +++ /dev/null @@ -1,119 +0,0 @@ -# -# Common elements to all makefiles -# - -ALL_KNOWN_TESTS = \ - affinity1 affinity2 affinity3 affinity4 affinity5 affinity6 \ - barrier1 barrier2 barrier3 barrier4 barrier5 barrier6 \ - cancel1 cancel2 cancel3 cancel4 cancel5 cancel6a cancel6d \ - cancel7 cancel8 cancel9 \ - cleanup0 cleanup1 cleanup2 cleanup3 \ - condvar1 condvar1_1 condvar1_2 condvar2 condvar2_1 \ - condvar3 condvar3_1 condvar3_2 condvar3_3 \ - condvar4 condvar5 condvar6 \ - condvar7 condvar8 condvar9 \ - timeouts \ - count1 \ - context1 \ - create1 create2 create3 \ - delay1 delay2 \ - detach1 \ - equal1 \ - errno1 \ - exception1 exception2 exception3_0 exception3 \ - exit1 exit2 exit3 exit4 exit5 exit6 \ - eyal1 \ - join0 join1 join2 join3 join4 \ - kill1 \ - mutex1 mutex1n mutex1e mutex1r \ - mutex2 mutex2r mutex2e mutex3 mutex3r mutex3e \ - mutex4 mutex5 mutex6 mutex6n mutex6e mutex6r \ - mutex6s mutex6es mutex6rs \ - mutex7 mutex7n mutex7e mutex7r \ - mutex8 mutex8n mutex8e mutex8r \ - name_np1 name_np2 \ - once1 once2 once3 once4 \ - priority1 priority2 inherit1 \ - reinit1 \ - reuse1 reuse2 \ - robust1 robust2 robust3 robust4 robust5 \ - rwlock1 rwlock2 rwlock3 rwlock4 \ - rwlock2_t rwlock3_t rwlock4_t rwlock5_t rwlock6_t rwlock6_t2 \ - rwlock5 rwlock6 rwlock7 rwlock7_1 rwlock8 rwlock8_1 \ - self1 self2 \ - semaphore1 semaphore2 semaphore3 \ - semaphore4 semaphore4t semaphore5 \ - sequence1 \ - sizes \ - spin1 spin2 spin3 spin4 \ - stress1 threestage \ - tsd1 tsd2 tsd3 \ - valid1 valid2 - -TESTS = $(ALL_KNOWN_TESTS) - -BENCHTESTS = \ - benchtest1 benchtest2 benchtest3 benchtest4 benchtest5 - -# Output useful info if no target given. I.e. the first target that "make" sees is used in this case. -default_target: help -# -# Common elements to all makefiles -# - -ALL_KNOWN_TESTS = \ - affinity1 affinity2 affinity3 affinity4 affinity5 affinity6 \ - barrier1 barrier2 barrier3 barrier4 barrier5 barrier6 \ - cancel1 cancel2 cancel3 cancel4 cancel5 cancel6a cancel6d \ - cancel7 cancel8 cancel9 \ - cleanup0 cleanup1 cleanup2 cleanup3 \ - condvar1 condvar1_1 condvar1_2 condvar2 condvar2_1 \ - condvar3 condvar3_1 condvar3_2 condvar3_3 \ - condvar4 condvar5 condvar6 \ - condvar7 condvar8 condvar9 \ - timeouts \ - count1 \ - context1 \ - create1 create2 create3 \ - delay1 delay2 \ - detach1 \ - equal1 \ - errno1 errno0 \ - exception1 exception2 exception3_0 exception3 \ - exit1 exit2 exit3 exit4 exit5 exit6 \ - eyal1 \ - join0 join1 join2 join3 join4 \ - kill1 \ - mutex1 mutex1n mutex1e mutex1r \ - mutex2 mutex2r mutex2e mutex3 mutex3r mutex3e \ - mutex4 mutex5 mutex6 mutex6n mutex6e mutex6r \ - mutex6s mutex6es mutex6rs \ - mutex7 mutex7n mutex7e mutex7r \ - mutex8 mutex8n mutex8e mutex8r \ - name_np1 name_np2 \ - once1 once2 once3 once4 \ - priority1 priority2 inherit1 \ - reinit1 \ - reuse1 reuse2 \ - robust1 robust2 robust3 robust4 robust5 \ - rwlock1 rwlock2 rwlock3 rwlock4 \ - rwlock2_t rwlock3_t rwlock4_t rwlock5_t rwlock6_t rwlock6_t2 \ - rwlock5 rwlock6 rwlock7 rwlock8 \ - self1 self2 \ - semaphore1 semaphore2 semaphore3 \ - semaphore4 semaphore4t semaphore5 \ - sequence1 \ - sizes \ - spin1 spin2 spin3 spin4 \ - stress1 threestage \ - tsd1 tsd2 tsd3 \ - valid1 valid2 - -TESTS = $(ALL_KNOWN_TESTS) - -BENCHTESTS = \ - benchtest1 benchtest2 benchtest3 benchtest4 benchtest5 - -# Output useful info if no target given. I.e. the first target that "make" sees is used in this case. -default_target: help - \ No newline at end of file diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar1.c deleted file mode 100644 index 12e1502..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar1.c +++ /dev/null @@ -1,95 +0,0 @@ -/* - * File: condvar1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test initialisation and destruction of a CV. - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - Creates and then imediately destroys a CV. Does not - * test the CV. - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - pthread_cond_init returns 0, and - * - pthread_cond_destroy returns 0. - * - Process returns zero exit status. - * - * Fail Criteria: - * - pthread_cond_init returns non-zero, or - * - pthread_cond_destroy returns non-zero. - * - Process returns non-zero exit status. - */ - -#include "test.h" - -static pthread_cond_t cv = NULL; - -int -main() -{ - assert(cv == NULL); - - assert(pthread_cond_init(&cv, NULL) == 0); - - assert(cv != NULL); - - assert(pthread_cond_destroy(&cv) == 0); - - assert(cv == NULL); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar1_1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar1_1.c deleted file mode 100644 index 3eb61ed..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar1_1.c +++ /dev/null @@ -1,113 +0,0 @@ -/* - * File: condvar1_1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test CV linked list management. - * - * Test Method (Validation or Falsification): - * - Validation: - * Initiate and destroy several CVs in random order. - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - Creates and then imediately destroys a CV. Does not - * test the CV. - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - All initialised CVs destroyed without segfault. - * - Successfully broadcasts all remaining CVs after - * each CV is removed. - * - * Fail Criteria: - */ - -#include -#include "test.h" - -enum { - NUM_CV = 100 -}; - -static pthread_cond_t cv[NUM_CV]; - -int -main() -{ - int i, j; - - for (i = 0; i < NUM_CV; i++) - { - /* Traverse the list before every init of a CV. */ - assert(pthread_timechange_handler_np(NULL) == (void *) 0); - assert(pthread_cond_init(&cv[i], NULL) == 0); - } - - j = NUM_CV; - (void) srand((unsigned)time(NULL)); - - do - { - i = (NUM_CV - 1) * rand() / RAND_MAX; - if (cv[i] != NULL) - { - j--; - assert(pthread_cond_destroy(&cv[i]) == 0); - /* Traverse the list every time we remove a CV. */ - assert(pthread_timechange_handler_np(NULL) == (void *) 0); - } - } - while (j > 0); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar1_2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar1_2.c deleted file mode 100644 index adb5b08..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar1_2.c +++ /dev/null @@ -1,122 +0,0 @@ -/* - * File: condvar1_2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test CV linked list management and serialisation. - * - * Test Method (Validation or Falsification): - * - Validation: - * Initiate and destroy several CVs in random order. - * Asynchronously traverse the CV list and broadcast. - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - Creates and then imediately destroys a CV. Does not - * test the CV. - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - All initialised CVs destroyed without segfault. - * - Successfully broadcasts all remaining CVs after - * each CV is removed. - * - * Fail Criteria: - */ - -#include -#include "test.h" - -enum { - NUM_CV = 5, - NUM_LOOPS = 5 -}; - -static pthread_cond_t cv[NUM_CV]; - -int -main() -{ - int i, j, k; - void* result = (void*)-1; - pthread_t t; - - for (k = 0; k < NUM_LOOPS; k++) - { - for (i = 0; i < NUM_CV; i++) - { - assert(pthread_cond_init(&cv[i], NULL) == 0); - } - - j = NUM_CV; - (void) srand((unsigned)time(NULL)); - - /* Traverse the list asynchronously. */ - assert(pthread_create(&t, NULL, pthread_timechange_handler_np, NULL) == 0); - - do - { - i = (NUM_CV - 1) * rand() / RAND_MAX; - if (cv[i] != NULL) - { - j--; - assert(pthread_cond_destroy(&cv[i]) == 0); - } - } - while (j > 0); - - assert(pthread_join(t, &result) == 0); - assert ((int)(size_t)result == 0); - } - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar2.c deleted file mode 100644 index 453573a..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar2.c +++ /dev/null @@ -1,117 +0,0 @@ -/* - * File: condvar2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test timed wait on a CV. - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - Because the CV is never signaled, we expect the wait to time out. - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - pthread_cond_timedwait returns ETIMEDOUT. - * - Process returns zero exit status. - * - * Fail Criteria: - * - pthread_cond_timedwait does not return ETIMEDOUT. - * - Process returns non-zero exit status. - */ - -#define _WIN32_WINNT 0x400 - -#include "test.h" -#include - -pthread_cond_t cv; -pthread_mutex_t mutex; - -/* Cheating here - sneaking a peek at library internals */ -#include "../config.h" -#include "../implement.h" - -int -main() -{ - struct timespec abstime = { 0, 0 }, reltime = { 1, 0 }; - - assert(pthread_cond_init(&cv, NULL) == 0); - - assert(pthread_mutex_init(&mutex, NULL) == 0); - - assert(pthread_mutex_lock(&mutex) == 0); - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - assert(pthread_cond_timedwait(&cv, &mutex, &abstime) == ETIMEDOUT); - - assert(pthread_mutex_unlock(&mutex) == 0); - - { - int result = pthread_cond_destroy(&cv); - if (result != 0) - { - fprintf(stderr, "Result = %s\n", error_string[result]); - fprintf(stderr, "\tWaitersBlocked = %ld\n", cv->nWaitersBlocked); - fprintf(stderr, "\tWaitersGone = %ld\n", cv->nWaitersGone); - fprintf(stderr, "\tWaitersToUnblock = %ld\n", cv->nWaitersToUnblock); - fflush(stderr); - } - assert(result == 0); - } - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar2_1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar2_1.c deleted file mode 100644 index 75e6a12..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar2_1.c +++ /dev/null @@ -1,145 +0,0 @@ -/* - * File: condvar2_1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test timeout of multiple waits on a CV with no signal/broadcast. - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - Because the CV is never signaled, we expect the waits to time out. - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - pthread_cond_timedwait returns ETIMEDOUT. - * - Process returns zero exit status. - * - * Fail Criteria: - * - pthread_cond_timedwait does not return ETIMEDOUT. - * - Process returns non-zero exit status. - */ - -#define _WIN32_WINNT 0x400 - -#include "test.h" -#include - -static pthread_cond_t cv; -static pthread_mutex_t mutex; -static struct timespec abstime = { 0, 0 }, reltime = { 5, 0 }; - -enum { - NUMTHREADS = 30 -}; - -void * -mythread(void * arg) -{ - assert(pthread_mutex_lock(&mutex) == 0); - - assert(pthread_cond_timedwait(&cv, &mutex, &abstime) == ETIMEDOUT); - - assert(pthread_mutex_unlock(&mutex) == 0); - - return arg; -} - -/* Cheating here - sneaking a peek at library internals */ -#include "../config.h" -#include "../implement.h" - -int -main() -{ - int i; - pthread_t t[NUMTHREADS + 1]; - void* result = (void*)0; - - assert(pthread_cond_init(&cv, NULL) == 0); - - assert(pthread_mutex_init(&mutex, NULL) == 0); - - pthread_win32_getabstime_np(&abstime, &reltime); - - assert(pthread_mutex_lock(&mutex) == 0); - - for (i = 1; i <= NUMTHREADS; i++) - { - assert(pthread_create(&t[i], NULL, mythread, (void *)(size_t)i) == 0); - } - - assert(pthread_mutex_unlock(&mutex) == 0); - - for (i = 1; i <= NUMTHREADS; i++) - { - assert(pthread_join(t[i], &result) == 0); - assert((int)(size_t)result == i); - } - - { - int result = pthread_cond_destroy(&cv); - if (result != 0) - { - fprintf(stderr, "Result = %s\n", error_string[result]); - fprintf(stderr, "\tWaitersBlocked = %ld\n", cv->nWaitersBlocked); - fprintf(stderr, "\tWaitersGone = %ld\n", cv->nWaitersGone); - fprintf(stderr, "\tWaitersToUnblock = %ld\n", cv->nWaitersToUnblock); - fflush(stderr); - } - assert(result == 0); - } - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar3.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar3.c deleted file mode 100644 index bd097e2..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar3.c +++ /dev/null @@ -1,138 +0,0 @@ -/* - * File: condvar3.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test basic function of a CV - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - The primary thread takes the lock before creating any threads. - * The secondary thread blocks on the lock allowing the primary - * thread to enter the cv wait state which releases the lock. - * The secondary thread then takes the lock and signals the waiting - * primary thread. - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - pthread_cond_timedwait returns 0. - * - Process returns zero exit status. - * - * Fail Criteria: - * - pthread_cond_timedwait returns ETIMEDOUT. - * - Process returns non-zero exit status. - */ - -#include "test.h" -#include - -static pthread_cond_t cv; -static pthread_mutex_t mutex; -static int shared = 0; - -enum { - NUMTHREADS = 2 /* Including the primary thread. */ -}; - -void * -mythread(void * arg) -{ - int result = 0; - - assert(pthread_mutex_lock(&mutex) == 0); - shared++; - assert(pthread_mutex_unlock(&mutex) == 0); - - if ((result = pthread_cond_signal(&cv)) != 0) - { - printf("Error = %s\n", error_string[result]); - } - assert(result == 0); - - - return (void *) 0; -} - -int -main() -{ - pthread_t t[NUMTHREADS]; - struct timespec abstime, reltime = { 5, 0 }; - - assert((t[0] = pthread_self()).p != NULL); - - assert(pthread_cond_init(&cv, NULL) == 0); - - assert(pthread_mutex_init(&mutex, NULL) == 0); - - assert(pthread_mutex_lock(&mutex) == 0); - - assert(pthread_create(&t[1], NULL, mythread, (void *) 1) == 0); - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - while (! (shared > 0)) - assert(pthread_cond_timedwait(&cv, &mutex, &abstime) == 0); - - assert(shared > 0); - - assert(pthread_mutex_unlock(&mutex) == 0); - - assert(pthread_join(t[1], NULL) == 0); - - assert(pthread_cond_destroy(&cv) == 0); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar3_1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar3_1.c deleted file mode 100644 index 2e5e81e..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar3_1.c +++ /dev/null @@ -1,193 +0,0 @@ -/* - * File: condvar3_1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test timeout of multiple waits on a CV with some signaled. - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - Because some CVs are never signaled, we expect their waits to time out. - * Some are signaled, the rest time out. Pthread_cond_destroy() will fail - * unless all are accounted for, either signaled or timedout. - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - pthread_cond_timedwait returns ETIMEDOUT. - * - Process returns zero exit status. - * - * Fail Criteria: - * - pthread_cond_timedwait does not return ETIMEDOUT. - * - Process returns non-zero exit status. - */ - -#define _WIN32_WINNT 0x400 - -#include "test.h" -#include - -static pthread_cond_t cv; -static pthread_cond_t cv1; -static pthread_mutex_t mutex; -static pthread_mutex_t mutex1; -static struct timespec abstime = { 0, 0 }, reltime = { 5, 0 }; -static int timedout = 0; -static int signaled = 0; -static int awoken = 0; -static int waiting = 0; - -enum { - NUMTHREADS = 30 -}; - -void * -mythread(void * arg) -{ - int result; - - assert(pthread_mutex_lock(&mutex1) == 0); - ++waiting; - assert(pthread_mutex_unlock(&mutex1) == 0); - assert(pthread_cond_signal(&cv1) == 0); - - assert(pthread_mutex_lock(&mutex) == 0); - result = pthread_cond_timedwait(&cv, &mutex, &abstime); - if (result == ETIMEDOUT) - { - timedout++; - } - else - { - awoken++; - } - assert(pthread_mutex_unlock(&mutex) == 0); - - return arg; -} - -/* Cheating here - sneaking a peek at library internals */ -#include "../config.h" -#include "../implement.h" - -int -main() -{ - int i; - pthread_t t[NUMTHREADS + 1]; - void* result = (void*)0; - - assert(pthread_cond_init(&cv, NULL) == 0); - assert(pthread_cond_init(&cv1, NULL) == 0); - - assert(pthread_mutex_init(&mutex, NULL) == 0); - assert(pthread_mutex_init(&mutex1, NULL) == 0); - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - assert(pthread_mutex_lock(&mutex1) == 0); - - for (i = 1; i <= NUMTHREADS; i++) - { - assert(pthread_create(&t[i], NULL, mythread, (void *)(size_t)i) == 0); - } - - do { - assert(pthread_cond_wait(&cv1,&mutex1) == 0); - } while ( NUMTHREADS > waiting ); - - assert(pthread_mutex_unlock(&mutex1) == 0); - - for (i = NUMTHREADS/3; i <= 2*NUMTHREADS/3; i++) - { -// assert(pthread_mutex_lock(&mutex) == 0); - assert(pthread_cond_signal(&cv) == 0); -// assert(pthread_mutex_unlock(&mutex) == 0); - - signaled++; - } - - for (i = 1; i <= NUMTHREADS; i++) - { - assert(pthread_join(t[i], &result) == 0); - assert((int)(size_t)result == i); - } - - fprintf(stderr, "awk = %d\n", awoken); - fprintf(stderr, "sig = %d\n", signaled); - fprintf(stderr, "tot = %d\n", timedout); - - assert(signaled == awoken); - assert(timedout == NUMTHREADS - signaled); - - assert(pthread_cond_destroy(&cv1) == 0); - - { - int result = pthread_cond_destroy(&cv); - if (result != 0) - { - fprintf(stderr, "Result = %s\n", error_string[result]); - fprintf(stderr, "\tWaitersBlocked = %ld\n", cv->nWaitersBlocked); - fprintf(stderr, "\tWaitersGone = %ld\n", cv->nWaitersGone); - fprintf(stderr, "\tWaitersToUnblock = %ld\n", cv->nWaitersToUnblock); - fflush(stderr); - } - assert(result == 0); - } - - assert(pthread_mutex_destroy(&mutex1) == 0); - assert(pthread_mutex_destroy(&mutex) == 0); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar3_2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar3_2.c deleted file mode 100644 index 43a01f1..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar3_2.c +++ /dev/null @@ -1,188 +0,0 @@ -/* - * File: condvar3_2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test timeout of multiple waits on a CV with remainder broadcast awoken. - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - Because some CVs are never signaled, we expect their waits to time out. - * Some time out, the rest are broadcast signaled. Pthread_cond_destroy() will fail - * unless all are accounted for, either signaled or timedout. - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - pthread_cond_timedwait returns ETIMEDOUT. - * - Process returns zero exit status. - * - * Fail Criteria: - * - pthread_cond_timedwait does not return ETIMEDOUT. - * - Process returns non-zero exit status. - */ - -#define _WIN32_WINNT 0x400 - -#include "test.h" -#include - -static pthread_cond_t cv; -static pthread_mutex_t mutex; -static struct timespec abstime, abstime2; -static struct timespec reltime = { 5, 0 }; -static int timedout = 0; -static int awoken = 0; - -enum { - NUMTHREADS = 30 -}; - -void * -mythread(void * arg) -{ - int result; - - assert(pthread_mutex_lock(&mutex) == 0); - - abstime2.tv_sec = abstime.tv_sec; - - if ((int) (size_t)arg % 3 == 0) - { - abstime2.tv_sec += 2; - } - - result = pthread_cond_timedwait(&cv, &mutex, &abstime2); - assert(pthread_mutex_unlock(&mutex) == 0); - if (result == ETIMEDOUT) - { - InterlockedIncrement((LPLONG)&timedout); - } - else - { - InterlockedIncrement((LPLONG)&awoken); - } - - return arg; -} - -/* Cheating here - sneaking a peek at library internals */ -#include "../config.h" -#include "../implement.h" - -int -main() -{ - int i; - pthread_t t[NUMTHREADS + 1]; - void* result = (void*)0; - - assert(pthread_cond_init(&cv, NULL) == 0); - - assert(pthread_mutex_init(&mutex, NULL) == 0); - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - abstime2.tv_sec = abstime.tv_sec; - abstime2.tv_nsec = abstime.tv_nsec; - - assert(pthread_mutex_lock(&mutex) == 0); - - for (i = 1; i <= NUMTHREADS; i++) - { - assert(pthread_create(&t[i], NULL, mythread, (void *)(size_t)i) == 0); - } - - assert(pthread_mutex_unlock(&mutex) == 0); - - for (i = 1; i <= NUMTHREADS; i++) - { - assert(pthread_join(t[i], &result) == 0); - assert((int)(size_t)result == i); - /* - * Approximately 2/3rds of the threads are expected to time out. - * Signal the remainder after some threads have woken up and exited - * and while some are still waking up after timeout. - * Also tests that redundant broadcasts don't return errors. - */ - -// assert(pthread_mutex_lock(&mutex) == 0); - - if (InterlockedExchangeAdd((LPLONG)&awoken, 0L) > NUMTHREADS/3) - { - assert(pthread_cond_broadcast(&cv) == 0); - } - -// assert(pthread_mutex_unlock(&mutex) == 0); - - } - - assert(awoken == NUMTHREADS - timedout); - - { - int result = pthread_cond_destroy(&cv); - if (result != 0) - { - fprintf(stderr, "Result = %s\n", error_string[result]); - fprintf(stderr, "\tWaitersBlocked = %ld\n", cv->nWaitersBlocked); - fprintf(stderr, "\tWaitersGone = %ld\n", cv->nWaitersGone); - fprintf(stderr, "\tWaitersToUnblock = %ld\n", cv->nWaitersToUnblock); - fflush(stderr); - } - assert(result == 0); - } - - assert(pthread_mutex_destroy(&mutex) == 0); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar3_3.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar3_3.c deleted file mode 100644 index 51222dd..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar3_3.c +++ /dev/null @@ -1,118 +0,0 @@ -/* - * File: condvar3_3.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test timeouts and lost signals on a CV. - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - pthread_cond_timedwait returns ETIMEDOUT. - * - Process returns zero exit status. - * - * Fail Criteria: - * - pthread_cond_timedwait does not return ETIMEDOUT. - * - Process returns non-zero exit status. - */ - -/* Timur Aydin (taydin@snet.net) */ - -#include "test.h" - -#include - -pthread_cond_t cnd; -pthread_mutex_t mtx; - -static const long NANOSEC_PER_SEC = 1000000000L; - -int main() -{ - int rc; - struct timespec abstime, reltime = { 0, NANOSEC_PER_SEC/2 }; - - assert(pthread_cond_init(&cnd, 0) == 0); - assert(pthread_mutex_init(&mtx, 0) == 0); - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - /* Here pthread_cond_timedwait should time out after one second. */ - - assert(pthread_mutex_lock(&mtx) == 0); - - assert((rc = pthread_cond_timedwait(&cnd, &mtx, &abstime)) == ETIMEDOUT); - - assert(pthread_mutex_unlock(&mtx) == 0); - - /* Here, the condition variable is signalled, but there are no - threads waiting on it. The signal should be lost and - the next pthread_cond_timedwait should time out too. */ - - assert((rc = pthread_cond_signal(&cnd)) == 0); - - assert(pthread_mutex_lock(&mtx) == 0); - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - assert((rc = pthread_cond_timedwait(&cnd, &mtx, &abstime)) == ETIMEDOUT); - - assert(pthread_mutex_unlock(&mtx) == 0); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar4.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar4.c deleted file mode 100644 index bf6516f..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar4.c +++ /dev/null @@ -1,154 +0,0 @@ -/* - * File: condvar4.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test PTHREAD_COND_INITIALIZER. - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - Test basic CV function but starting with a static initialised - * CV. - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - pthread_cond_timedwait returns 0. - * - Process returns zero exit status. - * - * Fail Criteria: - * - pthread_cond_timedwait returns ETIMEDOUT. - * - Process returns non-zero exit status. - */ - -#include "test.h" -#include - -typedef struct cvthing_t_ cvthing_t; - -struct cvthing_t_ { - pthread_cond_t notbusy; - pthread_mutex_t lock; - int shared; -}; - -static cvthing_t cvthing = { - PTHREAD_COND_INITIALIZER, - PTHREAD_MUTEX_INITIALIZER, - 0 -}; - -enum { - NUMTHREADS = 2 -}; - -void * -mythread(void * arg) -{ - assert(pthread_mutex_lock(&cvthing.lock) == 0); - cvthing.shared++; - assert(pthread_mutex_unlock(&cvthing.lock) == 0); - - assert(pthread_cond_signal(&cvthing.notbusy) == 0); - - return (void *) 0; -} - -int -main() -{ - pthread_t t[NUMTHREADS]; - struct timespec abstime, reltime = { 5, 0 }; - - cvthing.shared = 0; - - assert((t[0] = pthread_self()).p != NULL); - - assert(cvthing.notbusy == PTHREAD_COND_INITIALIZER); - - assert(cvthing.lock == PTHREAD_MUTEX_INITIALIZER); - - assert(pthread_mutex_lock(&cvthing.lock) == 0); - - assert(cvthing.lock != PTHREAD_MUTEX_INITIALIZER); - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - assert(pthread_cond_timedwait(&cvthing.notbusy, &cvthing.lock, &abstime) == ETIMEDOUT); - - assert(cvthing.notbusy != PTHREAD_COND_INITIALIZER); - - assert(pthread_create(&t[1], NULL, mythread, (void *) 1) == 0); - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - while (! (cvthing.shared > 0)) - assert(pthread_cond_timedwait(&cvthing.notbusy, &cvthing.lock, &abstime) == 0); - - assert(cvthing.shared > 0); - - assert(pthread_mutex_unlock(&cvthing.lock) == 0); - - assert(pthread_join(t[1], NULL) == 0); - - assert(pthread_mutex_destroy(&cvthing.lock) == 0); - - assert(cvthing.lock == NULL); - - assert(pthread_cond_destroy(&cvthing.notbusy) == 0); - - assert(cvthing.notbusy == NULL); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar5.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar5.c deleted file mode 100644 index 551ffa2..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar5.c +++ /dev/null @@ -1,153 +0,0 @@ -/* - * File: condvar5.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test pthread_cond_broadcast. - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - Test broadcast with one waiting CV. - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - pthread_cond_timedwait returns 0. - * - Process returns zero exit status. - * - * Fail Criteria: - * - pthread_cond_timedwait returns ETIMEDOUT. - * - Process returns non-zero exit status. - */ - -#include "test.h" -#include - -typedef struct cvthing_t_ cvthing_t; - -struct cvthing_t_ { - pthread_cond_t notbusy; - pthread_mutex_t lock; - int shared; -}; - -static cvthing_t cvthing = { - PTHREAD_COND_INITIALIZER, - PTHREAD_MUTEX_INITIALIZER, - 0 -}; - -enum { - NUMTHREADS = 2 -}; - -void * -mythread(void * arg) -{ - assert(pthread_mutex_lock(&cvthing.lock) == 0); - cvthing.shared++; - assert(pthread_mutex_unlock(&cvthing.lock) == 0); - - assert(pthread_cond_broadcast(&cvthing.notbusy) == 0); - - return (void *) 0; -} - -int -main() -{ - pthread_t t[NUMTHREADS]; - struct timespec abstime, reltime = { 5, 0 }; - - cvthing.shared = 0; - - assert((t[0] = pthread_self()).p != NULL); - - assert(cvthing.notbusy == PTHREAD_COND_INITIALIZER); - - assert(cvthing.lock == PTHREAD_MUTEX_INITIALIZER); - - assert(pthread_mutex_lock(&cvthing.lock) == 0); - - assert(cvthing.lock != PTHREAD_MUTEX_INITIALIZER); - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - assert(pthread_cond_timedwait(&cvthing.notbusy, &cvthing.lock, &abstime) == ETIMEDOUT); - - assert(cvthing.notbusy != PTHREAD_COND_INITIALIZER); - - assert(pthread_create(&t[1], NULL, mythread, (void *) 1) == 0); - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - while (! (cvthing.shared > 0)) - assert(pthread_cond_timedwait(&cvthing.notbusy, &cvthing.lock, &abstime) == 0); - - assert(cvthing.shared > 0); - - assert(pthread_mutex_unlock(&cvthing.lock) == 0); - - assert(pthread_join(t[1], NULL) == 0); - - assert(pthread_mutex_destroy(&cvthing.lock) == 0); - - assert(cvthing.lock == NULL); - - assert(pthread_cond_destroy(&cvthing.notbusy) == 0); - - assert(cvthing.notbusy == NULL); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar6.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar6.c deleted file mode 100644 index dc49548..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar6.c +++ /dev/null @@ -1,232 +0,0 @@ -/* - * File: condvar6.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test pthread_cond_broadcast. - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - Test broadcast with NUMTHREADS (=5) waiting CVs. - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" -#include - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 5 -}; - -typedef struct bag_t_ bag_t; -struct bag_t_ { - int threadnum; - int started; - /* Add more per-thread state variables here */ -}; - -static bag_t threadbag[NUMTHREADS + 1]; - -typedef struct cvthing_t_ cvthing_t; - -struct cvthing_t_ { - pthread_cond_t notbusy; - pthread_mutex_t lock; - int shared; -}; - -static cvthing_t cvthing = { - PTHREAD_COND_INITIALIZER, - PTHREAD_MUTEX_INITIALIZER, - 0 -}; - -static pthread_mutex_t start_flag = PTHREAD_MUTEX_INITIALIZER; - -static struct timespec abstime, reltime = { 5, 0 }; - -static int awoken; - -void * -mythread(void * arg) -{ - bag_t * bag = (bag_t *) arg; - - assert(bag == &threadbag[bag->threadnum]); - assert(bag->started == 0); - bag->started = 1; - - /* Wait for the start gun */ - assert(pthread_mutex_lock(&start_flag) == 0); - assert(pthread_mutex_unlock(&start_flag) == 0); - - assert(pthread_mutex_lock(&cvthing.lock) == 0); - - while (! (cvthing.shared > 0)) - assert(pthread_cond_timedwait(&cvthing.notbusy, &cvthing.lock, &abstime) == 0); - - assert(cvthing.shared > 0); - - awoken++; - - assert(pthread_mutex_unlock(&cvthing.lock) == 0); - - return (void *) 0; -} - -int -main() -{ - int failed = 0; - int i; - pthread_t t[NUMTHREADS + 1]; - - cvthing.shared = 0; - - assert((t[0] = pthread_self()).p != NULL); - - assert(cvthing.notbusy == PTHREAD_COND_INITIALIZER); - - assert(cvthing.lock == PTHREAD_MUTEX_INITIALIZER); - - assert(pthread_mutex_lock(&start_flag) == 0); - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - assert((t[0] = pthread_self()).p != NULL); - - awoken = 0; - - for (i = 1; i <= NUMTHREADS; i++) - { - threadbag[i].started = 0; - threadbag[i].threadnum = i; - assert(pthread_create(&t[i], NULL, mythread, (void *) &threadbag[i]) == 0); - } - - /* - * Code to control or manipulate child threads should probably go here. - */ - - assert(pthread_mutex_unlock(&start_flag) == 0); - - /* - * Give threads time to start. - */ - Sleep(1000); - - assert(pthread_mutex_lock(&cvthing.lock) == 0); - cvthing.shared++; - assert(pthread_mutex_unlock(&cvthing.lock) == 0); - - assert(pthread_cond_broadcast(&cvthing.notbusy) == 0); - - /* - * Give threads time to complete. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - assert(pthread_join(t[i], NULL) == 0); - } - - /* - * Cleanup the CV. - */ - - assert(pthread_mutex_destroy(&cvthing.lock) == 0); - - assert(cvthing.lock == NULL); - - assert(pthread_cond_destroy(&cvthing.notbusy) == 0); - - assert(cvthing.notbusy == NULL); - - /* - * Standard check that all threads started. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - failed = !threadbag[i].started; - - if (failed) - { - fprintf(stderr, "Thread %d: started %d\n", i, threadbag[i].started); - } - } - - assert(!failed); - - /* - * Check any results here. - */ - - assert(awoken == NUMTHREADS); - - /* - * Success. - */ - return 0; -} - - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar7.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar7.c deleted file mode 100644 index 00eca82..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar7.c +++ /dev/null @@ -1,247 +0,0 @@ -/* - * File: condvar7.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test pthread_cond_broadcast with thread cancellation. - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - Test broadcast with NUMTHREADS (=5) waiting CVs, one is canceled while waiting. - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" -#include - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 5 -}; - -typedef struct bag_t_ bag_t; -struct bag_t_ { - int threadnum; - int started; - /* Add more per-thread state variables here */ -}; - -static bag_t threadbag[NUMTHREADS + 1]; - -typedef struct cvthing_t_ cvthing_t; - -struct cvthing_t_ { - pthread_cond_t notbusy; - pthread_mutex_t lock; - int shared; -}; - -static cvthing_t cvthing = { - PTHREAD_COND_INITIALIZER, - PTHREAD_MUTEX_INITIALIZER, - 0 -}; - -static pthread_mutex_t start_flag = PTHREAD_MUTEX_INITIALIZER; - -static struct timespec abstime, reltime = { 10, 0 }; - -static int awoken; - -void * -mythread(void * arg) -{ - bag_t * bag = (bag_t *) arg; - - assert(bag == &threadbag[bag->threadnum]); - assert(bag->started == 0); - bag->started = 1; - - /* Wait for the start gun */ - assert(pthread_mutex_lock(&start_flag) == 0); - assert(pthread_mutex_unlock(&start_flag) == 0); - - assert(pthread_mutex_lock(&cvthing.lock) == 0); - -#ifdef _MSC_VER -#pragma inline_depth(0) -#endif - pthread_cleanup_push(pthread_mutex_unlock, (void *) &cvthing.lock); - - while (! (cvthing.shared > 0)) - assert(pthread_cond_timedwait(&cvthing.notbusy, &cvthing.lock, &abstime) == 0); - - pthread_cleanup_pop(0); -#ifdef _MSC_VER -#pragma inline_depth() -#endif - - assert(cvthing.shared > 0); - - awoken++; - - assert(pthread_mutex_unlock(&cvthing.lock) == 0); - - return (void *) 0; -} - -int -main() -{ - int failed = 0; - int i; - pthread_t t[NUMTHREADS + 1]; - - cvthing.shared = 0; - - assert((t[0] = pthread_self()).p != NULL); - - assert(cvthing.notbusy == PTHREAD_COND_INITIALIZER); - - assert(cvthing.lock == PTHREAD_MUTEX_INITIALIZER); - - assert(pthread_mutex_lock(&start_flag) == 0); - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - assert((t[0] = pthread_self()).p != NULL); - - awoken = 0; - - for (i = 1; i <= NUMTHREADS; i++) - { - threadbag[i].started = 0; - threadbag[i].threadnum = i; - assert(pthread_create(&t[i], NULL, mythread, (void *) &threadbag[i]) == 0); - } - - /* - * Code to control or manipulate child threads should probably go here. - */ - - assert(pthread_mutex_unlock(&start_flag) == 0); - - /* - * Give threads time to start. - */ - Sleep(1000); - - /* - * Cancel one of the threads. - */ - assert(pthread_cancel(t[1]) == 0); - assert(pthread_join(t[1], NULL) == 0); - - assert(pthread_mutex_lock(&cvthing.lock) == 0); - cvthing.shared++; - assert(pthread_mutex_unlock(&cvthing.lock) == 0); - - /* - * Signal all remaining waiting threads. - */ - assert(pthread_cond_broadcast(&cvthing.notbusy) == 0); - - /* - * Wait for all threads to complete. - */ - for (i = 2; i <= NUMTHREADS; i++) - assert(pthread_join(t[i], NULL) == 0); - - /* - * Cleanup the CV. - */ - - assert(pthread_mutex_destroy(&cvthing.lock) == 0); - - assert(cvthing.lock == NULL); - - assert(pthread_cond_destroy(&cvthing.notbusy) == 0); - - assert(cvthing.notbusy == NULL); - - /* - * Standard check that all threads started. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - failed = !threadbag[i].started; - - if (failed) - { - fprintf(stderr, "Thread %d: started %d\n", i, threadbag[i].started); - } - } - - assert(!failed); - - /* - * Check any results here. - */ - - assert(awoken == (NUMTHREADS - 1)); - - /* - * Success. - */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar8.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar8.c deleted file mode 100644 index 22f23a1..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar8.c +++ /dev/null @@ -1,248 +0,0 @@ -/* - * File: condvar8.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test multiple pthread_cond_broadcasts. - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - Make NUMTHREADS threads wait on CV, broadcast signal them, and then repeat. - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" -#include - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 5 -}; - -typedef struct bag_t_ bag_t; -struct bag_t_ { - int threadnum; - int started; - /* Add more per-thread state variables here */ -}; - -static bag_t threadbag[NUMTHREADS + 1]; - -typedef struct cvthing_t_ cvthing_t; - -struct cvthing_t_ { - pthread_cond_t notbusy; - pthread_mutex_t lock; - int shared; -}; - -static cvthing_t cvthing = { - PTHREAD_COND_INITIALIZER, - PTHREAD_MUTEX_INITIALIZER, - 0 -}; - -static pthread_mutex_t start_flag = PTHREAD_MUTEX_INITIALIZER; - -static struct timespec abstime, reltime = { 10, 0 }; - -static int awoken; - -static void * -mythread(void * arg) -{ - bag_t * bag = (bag_t *) arg; - - assert(bag == &threadbag[bag->threadnum]); - assert(bag->started == 0); - bag->started = 1; - - /* Wait for the start gun */ - assert(pthread_mutex_lock(&start_flag) == 0); - assert(pthread_mutex_unlock(&start_flag) == 0); - - assert(pthread_mutex_lock(&cvthing.lock) == 0); - -#ifdef _MSC_VER -#pragma inline_depth(0) -#endif - pthread_cleanup_push(pthread_mutex_unlock, (void *) &cvthing.lock); - - while (! (cvthing.shared > 0)) - assert(pthread_cond_timedwait(&cvthing.notbusy, &cvthing.lock, &abstime) == 0); - - pthread_cleanup_pop(0); -#ifdef _MSC_VER -#pragma inline_depth() -#endif - - assert(cvthing.shared > 0); - - awoken++; - - assert(pthread_mutex_unlock(&cvthing.lock) == 0); - - return (void *) 0; -} - -int -main() -{ - int failed = 0; - int i; - int first, last; - pthread_t t[NUMTHREADS + 1]; - - assert((t[0] = pthread_self()).p != NULL); - - assert(cvthing.notbusy == PTHREAD_COND_INITIALIZER); - - assert(cvthing.lock == PTHREAD_MUTEX_INITIALIZER); - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - assert((t[0] = pthread_self()).p != NULL); - - awoken = 0; - - for (first = 1, last = NUMTHREADS / 2; - first < NUMTHREADS; - first = last + 1, last = NUMTHREADS) - { - assert(pthread_mutex_lock(&start_flag) == 0); - - for (i = first; i <= last; i++) - { - threadbag[i].started = 0; - threadbag[i].threadnum = i; - assert(pthread_create(&t[i], NULL, mythread, (void *) &threadbag[i]) == 0); - } - - /* - * Code to control or manipulate child threads should probably go here. - */ - cvthing.shared = 0; - - assert(pthread_mutex_unlock(&start_flag) == 0); - - /* - * Give threads time to start. - */ - Sleep(100); - - assert(pthread_mutex_lock(&cvthing.lock) == 0); - cvthing.shared++; - assert(pthread_mutex_unlock(&cvthing.lock) == 0); - - assert(pthread_cond_broadcast(&cvthing.notbusy) == 0); - - /* - * Give threads time to complete. - */ - for (i = first; i <= last; i++) - { - assert(pthread_join(t[i], NULL) == 0); - } - - assert(awoken == (i - 1)); - } - - - /* - * Standard check that all threads started. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - failed = !threadbag[i].started; - - if (failed) - { - fprintf(stderr, "Thread %d: started %d\n", i, threadbag[i].started); - } - } - - /* - * Cleanup the CV. - */ - - assert(pthread_mutex_destroy(&cvthing.lock) == 0); - - assert(cvthing.lock == NULL); - - assert(pthread_cond_destroy(&cvthing.notbusy) == 0); - - assert(cvthing.notbusy == NULL); - - assert(!failed); - - /* - * Check any results here. - */ - - assert(awoken == NUMTHREADS); - - /* - * Success. - */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar9.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar9.c deleted file mode 100644 index 233f16f..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/condvar9.c +++ /dev/null @@ -1,257 +0,0 @@ -/* - * File: condvar9.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test multiple pthread_cond_broadcasts with thread cancellation. - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - Make NUMTHREADS threads wait on CV, cancel one, broadcast signal them, - * and then repeat. - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" -#include - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 9 -}; - -typedef struct bag_t_ bag_t; -struct bag_t_ { - int threadnum; - int started; - int finished; - /* Add more per-thread state variables here */ -}; - -static bag_t threadbag[NUMTHREADS + 1]; - -typedef struct cvthing_t_ cvthing_t; - -struct cvthing_t_ { - pthread_cond_t notbusy; - pthread_mutex_t lock; - int shared; -}; - -static cvthing_t cvthing = { - PTHREAD_COND_INITIALIZER, - PTHREAD_MUTEX_INITIALIZER, - 0 -}; - -static pthread_mutex_t start_flag = PTHREAD_MUTEX_INITIALIZER; - -static struct timespec abstime, reltime = { 5, 0 }; - -static int awoken; - -static void * -mythread(void * arg) -{ - bag_t * bag = (bag_t *) arg; - - assert(bag == &threadbag[bag->threadnum]); - assert(bag->started == 0); - bag->started = 1; - - /* Wait for the start gun */ - assert(pthread_mutex_lock(&start_flag) == 0); - assert(pthread_mutex_unlock(&start_flag) == 0); - - assert(pthread_mutex_lock(&cvthing.lock) == 0); - - /* - * pthread_cond_timedwait is a cancellation point and we're - * going to cancel some threads deliberately. - */ -#ifdef _MSC_VER -#pragma inline_depth(0) -#endif - pthread_cleanup_push(pthread_mutex_unlock, (void *) &cvthing.lock); - - while (! (cvthing.shared > 0)) - assert(pthread_cond_timedwait(&cvthing.notbusy, &cvthing.lock, &abstime) == 0); - - pthread_cleanup_pop(0); -#ifdef _MSC_VER -#pragma inline_depth() -#endif - - assert(cvthing.shared > 0); - - awoken++; - bag->finished = 1; - - assert(pthread_mutex_unlock(&cvthing.lock) == 0); - - return (void *) 0; -} - -int -main() -{ - int failed = 0; - int i; - int first, last; - int canceledThreads = 0; - pthread_t t[NUMTHREADS + 1]; - - assert((t[0] = pthread_self()).p != NULL); - - assert(cvthing.notbusy == PTHREAD_COND_INITIALIZER); - - assert(cvthing.lock == PTHREAD_MUTEX_INITIALIZER); - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - assert((t[0] = pthread_self()).p != NULL); - - awoken = 0; - - for (first = 1, last = NUMTHREADS / 2; - first < NUMTHREADS; - first = last + 1, last = NUMTHREADS) - { - int ct; - - assert(pthread_mutex_lock(&start_flag) == 0); - - for (i = first; i <= last; i++) - { - threadbag[i].started = threadbag[i].finished = 0; - threadbag[i].threadnum = i; - assert(pthread_create(&t[i], NULL, mythread, (void *) &threadbag[i]) == 0); - } - - /* - * Code to control or manipulate child threads should probably go here. - */ - cvthing.shared = 0; - - assert(pthread_mutex_unlock(&start_flag) == 0); - - /* - * Give threads time to start. - */ - Sleep(1000); - - ct = (first + last) / 2; - assert(pthread_cancel(t[ct]) == 0); - canceledThreads++; - assert(pthread_join(t[ct], NULL) == 0); - - assert(pthread_mutex_lock(&cvthing.lock) == 0); - cvthing.shared++; - assert(pthread_mutex_unlock(&cvthing.lock) == 0); - - assert(pthread_cond_broadcast(&cvthing.notbusy) == 0); - - /* - * Standard check that all threads started - and wait for them to finish. - */ - for (i = first; i <= last; i++) - { - failed = !threadbag[i].started; - - if (failed) - { - fprintf(stderr, "Thread %d: started %d\n", i, threadbag[i].started); - } - else - { - assert(pthread_join(t[i], NULL) == 0 || threadbag[i].finished == 0); -// fprintf(stderr, "Thread %d: finished %d\n", i, threadbag[i].finished); - } - } - } - - /* - * Cleanup the CV. - */ - - assert(pthread_mutex_destroy(&cvthing.lock) == 0); - - assert(cvthing.lock == NULL); - - assert_e(pthread_cond_destroy(&cvthing.notbusy), ==, 0); - - assert(cvthing.notbusy == NULL); - - assert(!failed); - - /* - * Check any results here. - */ - - assert(awoken == NUMTHREADS - canceledThreads); - - /* - * Success. - */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/context1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/context1.c deleted file mode 100644 index ee5d33d..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/context1.c +++ /dev/null @@ -1,144 +0,0 @@ -/* - * File: context1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test context switching method. - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - pthread_create - * pthread_exit - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#define _WIN32_WINNT 0x400 - -#include "test.h" -/* Cheating here - sneaking a peek at library internals */ -#include "../config.h" -#include "../implement.h" -#include "../context.h" - -static int washere = 0; - -static void * func(void * arg) -{ - washere = 1; - - Sleep(1000); - - return 0; -} - -static void -anotherEnding () -{ - /* - * Switched context - */ - washere++; - pthread_exit(0); -} - -int -main() -{ - pthread_t t; - HANDLE hThread; - - DWORD dwMode = SetErrorMode(SEM_NOGPFAULTERRORBOX); - SetErrorMode(dwMode | SEM_NOGPFAULTERRORBOX); - - assert(pthread_create(&t, NULL, func, NULL) == 0); - - hThread = ((__ptw32_thread_t *)t.p)->threadH; - - Sleep(500); - - SuspendThread(hThread); - - if (WaitForSingleObject(hThread, 0) == WAIT_TIMEOUT) - { - /* - * Ok, thread did not exit before we got to it. - */ - CONTEXT context; - - context.ContextFlags = CONTEXT_CONTROL; - - GetThreadContext(hThread, &context); - __PTW32_PROGCTR (context) = (DWORD_PTR) anotherEnding; - SetThreadContext(hThread, &context); - ResumeThread(hThread); - } - else - { - printf("Exited early\n"); - fflush(stdout); - } - - Sleep(1000); - - assert(washere == 2); - - return 0; -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/context2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/context2.c deleted file mode 100644 index 4a4d983..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/context2.c +++ /dev/null @@ -1,157 +0,0 @@ -/* - * File: context2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test context switching method. - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - pthread_create - * pthread_exit - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#define _WIN32_WINNT 0x400 - -#include "test.h" -/* Cheating here - sneaking a peek at library internals */ -#include "../config.h" -#include "../implement.h" -#include "../context.h" - -static int washere = 0; -static volatile size_t tree_counter = 0; - -#ifdef _MSC_VER -# pragma inline_depth(0) -# pragma optimize("g", off) -#endif - -static size_t tree(size_t depth) -{ - if (! depth--) - return tree_counter++; - - return tree(depth) + tree(depth); -} - -static void * func(void * arg) -{ - washere = 1; - - return (void *) tree(64); -} - -static void -anotherEnding () -{ - /* - * Switched context - */ - washere++; - pthread_exit(0); -} - -#ifdef _MSC_VER -# pragma inline_depth() -# pragma optimize("", on) -#endif - -int -main() -{ - pthread_t t; - HANDLE hThread; - - assert(pthread_create(&t, NULL, func, NULL) == 0); - - hThread = ((__ptw32_thread_t *)t.p)->threadH; - - Sleep(500); - - SuspendThread(hThread); - - if (WaitForSingleObject(hThread, 0) == WAIT_TIMEOUT) - { - /* - * Ok, thread did not exit before we got to it. - */ - CONTEXT context; - - context.ContextFlags = CONTEXT_CONTROL; - - GetThreadContext(hThread, &context); - __PTW32_PROGCTR (context) = (DWORD_PTR) anotherEnding; - SetThreadContext(hThread, &context); - ResumeThread(hThread); - } - else - { - printf("Exited early\n"); - fflush(stdout); - } - - Sleep(1000); - - assert(washere == 2); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/count1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/count1.c deleted file mode 100644 index e8e4ed3..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/count1.c +++ /dev/null @@ -1,88 +0,0 @@ -/* - * count1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Description: - * Test some basic assertions about the number of threads at runtime. - */ - -#include "test.h" - -#define NUMTHREADS (30) - -static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER; -static pthread_t threads[NUMTHREADS]; -static unsigned numThreads = 0; - -void * -myfunc(void *arg) -{ - pthread_mutex_lock(&lock); - numThreads++; - pthread_mutex_unlock(&lock); - - Sleep(1000); - return 0; -} -int -main() -{ - int i; - int maxThreads = sizeof(threads) / sizeof(pthread_t); - - /* - * Spawn NUMTHREADS threads. Each thread should increment the - * numThreads variable, sleep for one second. - */ - for (i = 0; i < maxThreads; i++) - { - assert(pthread_create(&threads[i], NULL, myfunc, 0) == 0); - } - - /* - * Wait for all the threads to exit. - */ - for (i = 0; i < maxThreads; i++) - { - assert(pthread_join(threads[i], NULL) == 0); - } - - /* - * Check the number of threads created. - */ - assert((int) numThreads == maxThreads); - - /* - * Success. - */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/create1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/create1.c deleted file mode 100644 index 3ae0d7f..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/create1.c +++ /dev/null @@ -1,64 +0,0 @@ -/* - * create1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Description: - * Create a thread and check that it ran. - * - * Depends on API functions: None. - */ - -#include "test.h" - -static int washere = 0; - -void * func(void * arg) -{ - washere = 1; - return 0; -} - -int -main() -{ - pthread_t t; - - assert(pthread_create(&t, NULL, func, NULL) == 0); - - /* A dirty hack, but we cannot rely on pthread_join in this - primitive test. */ - Sleep(2000); - - assert(washere == 1); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/create2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/create2.c deleted file mode 100644 index 1c2bb8d..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/create2.c +++ /dev/null @@ -1,107 +0,0 @@ -/* - * File: create2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test that threads have a Win32 handle when started. - * - * Test Method (Validation or Falsification): - * - Statistical, not absolute (depends on sample size). - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -enum { - NUMTHREADS = 10000 -}; - -static int washere = 0; - -void * func(void * arg) -{ - washere = 1; - return (void *) 0; -} - -int -main() -{ - pthread_t t; - pthread_attr_t attr; - void * result = NULL; - int i; - - pthread_attr_init(&attr); - pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE); - - for (i = 0; i < NUMTHREADS; i++) - { - washere = 0; - assert(pthread_create(&t, &attr, func, NULL) == 0); - assert(pthread_join(t, &result) == 0); - assert((int)(size_t)result == 0); - assert(washere == 1); - } - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/create3.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/create3.c deleted file mode 100644 index 3422bc2..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/create3.c +++ /dev/null @@ -1,107 +0,0 @@ -/* - * File: create3.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test passing arg to thread function. - * - * Test Method (Validation or Falsification): - * - Statistical, not absolute (depends on sample size). - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -enum { - NUMTHREADS = 10000 -}; - -static int washere = 0; - -void * func(void * arg) -{ - washere = (int)(size_t)arg; - return (void *) 0; -} - -int -main() -{ - pthread_t t; - pthread_attr_t attr; - void * result = NULL; - int i; - - pthread_attr_init(&attr); - pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE); - - for (i = 0; i < NUMTHREADS; i++) - { - washere = 0; - assert(pthread_create(&t, &attr, func, (void *)(size_t)1) == 0); - assert(pthread_join(t, &result) == 0); - assert((int)(size_t)result == 0); - assert(washere == 1); - } - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/delay1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/delay1.c deleted file mode 100644 index a607fe6..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/delay1.c +++ /dev/null @@ -1,49 +0,0 @@ -/* - * delay1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Depends on API functions: - * pthread_delay_np - */ - -#include "test.h" - -int -main(int argc, char * argv[]) -{ - struct timespec interval = {1L, 500000000L}; - - assert(pthread_delay_np(&interval) == 0); - - return 0; -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/delay2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/delay2.c deleted file mode 100644 index 7dc68ce..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/delay2.c +++ /dev/null @@ -1,80 +0,0 @@ -/* - * delay1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Depends on API functions: - * pthread_delay_np - */ - -#include "test.h" - -pthread_mutex_t mx = PTHREAD_MUTEX_INITIALIZER; - -void * -func(void * arg) -{ - struct timespec interval = {5, 500000000L}; - - assert(pthread_mutex_lock(&mx) == 0); - -#ifdef _MSC_VER -#pragma inline_depth(0) -#endif - pthread_cleanup_push(pthread_mutex_unlock, &mx); - assert(pthread_delay_np(&interval) == 0); - pthread_cleanup_pop(1); -#ifdef _MSC_VER -#pragma inline_depth() -#endif - - return (void *)(size_t)1; -} - -int -main(int argc, char * argv[]) -{ - pthread_t t; - void* result = (void*)0; - - assert(pthread_mutex_lock(&mx) == 0); - - assert(pthread_create(&t, NULL, func, NULL) == 0); - assert(pthread_cancel(t) == 0); - - assert(pthread_mutex_unlock(&mx) == 0); - - assert(pthread_join(t, &result) == 0); - assert(result == (void*)PTHREAD_CANCELED); - - return 0; -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/detach1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/detach1.c deleted file mode 100644 index d9ebe52..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/detach1.c +++ /dev/null @@ -1,91 +0,0 @@ -/* - * Test for pthread_detach(). - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Depends on API functions: pthread_create(), pthread_detach(), pthread_exit(). - */ - -#include "test.h" - - -enum { - NUMTHREADS = 100 -}; - -void * -func(void * arg) -{ - int i = (int)(size_t)arg; - - Sleep(i * 10); - - pthread_exit(arg); - - /* Never reached. */ - exit(1); -} - -int -main(int argc, char * argv[]) -{ - pthread_t id[NUMTHREADS]; - int i; - - /* Create a few threads and then exit. */ - for (i = 0; i < NUMTHREADS; i++) - { - assert(pthread_create(&id[i], NULL, func, (void *)(size_t)i) == 0); - } - - /* Some threads will finish before they are detached, some after. */ - Sleep(NUMTHREADS/2 * 10 + 50); - - for (i = 0; i < NUMTHREADS; i++) - { - assert(pthread_detach(id[i]) == 0); - } - - Sleep(NUMTHREADS * 10 + 100); - - /* - * Check that all threads are now invalid. - * This relies on unique thread IDs - e.g. works with - * pthreads-w32 or Solaris, but may not work for Linux, BSD etc. - */ - for (i = 0; i < NUMTHREADS; i++) - { - assert(pthread_kill(id[i], 0) == ESRCH); - } - - /* Success. */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/equal1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/equal1.c deleted file mode 100644 index 1b1e6dd..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/equal1.c +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Test for pthread_equal. - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Depends on functions: pthread_create(). - */ - -#include "test.h" - -void * func(void * arg) -{ - Sleep(2000); - return 0; -} - -int -main() -{ - pthread_t t1, t2; - - assert(pthread_create(&t1, NULL, func, (void *) 1) == 0); - - assert(pthread_create(&t2, NULL, func, (void *) 2) == 0); - - assert(pthread_equal(t1, t2) == 0); - - assert(pthread_equal(t1,t1) != 0); - - /* This is a hack. We don't want to rely on pthread_join - yet if we can help it. */ - Sleep(4000); - - /* Success. */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/errno0.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/errno0.c deleted file mode 100644 index 83790e2..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/errno0.c +++ /dev/null @@ -1,99 +0,0 @@ -/* - * File: errno0.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads Library for Win32 - * Copyright(C) 1998 John E. Bossom - * Copyright(C) 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * This file is part of Pthreads4w. - * - * Pthreads4w is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * Pthreads4w is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with Pthreads4w. If not, see . * - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test transmissibility of errno between library and exe - * - - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -int -main() -{ - int err = 0; - errno = 0; - - assert(errno == 0); - assert(0 != sem_destroy(NULL)); - - err = -#if defined(PTW32_USES_SEPARATE_CRT) - GetLastError(); -#else - errno; -#endif - - assert(err != 0); - assert(err == EINVAL); - - /* - * Success. - */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/errno1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/errno1.c deleted file mode 100644 index 29fabf2..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/errno1.c +++ /dev/null @@ -1,175 +0,0 @@ -/* - * File: errno1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test thread-safety of errno - * - - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 3 -}; - -typedef struct bag_t_ bag_t; -struct bag_t_ { - int threadnum; - int started; - /* Add more per-thread state variables here */ -}; - -static bag_t threadbag[NUMTHREADS + 1]; - -pthread_mutex_t stop_here = PTHREAD_MUTEX_INITIALIZER; - -void * -mythread(void * arg) -{ - bag_t * bag = (bag_t *) arg; - - assert(bag == &threadbag[bag->threadnum]); - assert(bag->started == 0); - bag->started = 1; - - errno = bag->threadnum; - - Sleep(1000); - - pthread_mutex_lock(&stop_here); - - assert(errno == bag->threadnum); - - pthread_mutex_unlock(&stop_here); - - Sleep(1000); - - return 0; -} - -int -main() -{ - int failed = 0; - int i; - pthread_t t[NUMTHREADS + 1]; - - pthread_mutex_lock(&stop_here); - errno = 0; - - assert((t[0] = pthread_self()).p != NULL); - - for (i = 1; i <= NUMTHREADS; i++) - { - threadbag[i].started = 0; - threadbag[i].threadnum = i; - assert(pthread_create(&t[i], NULL, mythread, (void *) &threadbag[i]) == 0); - } - - /* - * Code to control or manipulate child threads should probably go here. - */ - Sleep(2000); - pthread_mutex_unlock(&stop_here); - - /* - * Give threads time to run. - */ - Sleep(NUMTHREADS * 1000); - - /* - * Standard check that all threads started. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - failed = !threadbag[i].started; - - if (failed) - { - fprintf(stderr, "Thread %d: started %d\n", i, threadbag[i].started); - } - } - - assert(!failed); - - /* - * Check any results here. Set "failed" and only print ouput on failure. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - /* ... */ - } - - assert(!failed); - - /* - * Success. - */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exception1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exception1.c deleted file mode 100644 index 7ee37bd..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exception1.c +++ /dev/null @@ -1,264 +0,0 @@ -/* - * File: exception1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test passing of exceptions back to the application. - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - have working pthread_create, pthread_self, pthread_mutex_lock/unlock - * pthread_testcancel, pthread_cancel, pthread_join - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#if defined(_MSC_VER) || defined(__cplusplus) - -#include "test.h" - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 4 -}; - -void * -exceptionedThread(void * arg) -{ - int dummy = 0; - void* result = (void*)((int)(size_t)PTHREAD_CANCELED + 1); - /* Set to async cancelable */ - - assert(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL) == 0); - - assert(pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL) == 0); - - Sleep(100); - -#if defined(_MSC_VER) && !defined(__cplusplus) - __try - { - int zero = (int) (size_t)arg; /* Passed in from arg to avoid compiler error */ - int one = 1; - /* - * The deliberate exception condition (zero divide) is - * in an "if" to avoid being optimised out. - */ - if (dummy == one/zero) - Sleep(0); - } - __except (EXCEPTION_EXECUTE_HANDLER) - { - /* Should get into here. */ - result = (void*)((int)(size_t)PTHREAD_CANCELED + 2); - } -#elif defined(__cplusplus) - try - { - /* - * I had a zero divide exception here but it - * wasn't being caught by the catch(...) - * below under Mingw32. That could be a problem. - */ - throw dummy; - } -#if defined(__PtW32CatchAll) - __PtW32CatchAll -#else - catch (...) -#endif - { - /* Should get into here. */ - result = (void*)((int)(size_t)PTHREAD_CANCELED + 2); - } -#endif - - return (void *) (size_t)result; -} - -void * -canceledThread(void * arg) -{ - void* result = (void*)((int)(size_t)PTHREAD_CANCELED + 1); - int count; - - /* Set to async cancelable */ - - assert(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL) == 0); - - assert(pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL) == 0); - -#if defined(_MSC_VER) && !defined(__cplusplus) - __try - { - /* - * We wait up to 10 seconds, waking every 0.1 seconds, - * for a cancellation to be applied to us. - */ - for (count = 0; count < 100; count++) - Sleep(100); - } - __except (EXCEPTION_EXECUTE_HANDLER) - { - /* Should NOT get into here. */ - result = (void*)((int)(size_t)PTHREAD_CANCELED + 2); - } -#elif defined(__cplusplus) - try - { - /* - * We wait up to 10 seconds, waking every 0.1 seconds, - * for a cancellation to be applied to us. - */ - for (count = 0; count < 100; count++) - Sleep(100); - } -#if defined(__PtW32CatchAll) - __PtW32CatchAll -#else - catch (...) -#endif - { - /* Should NOT get into here. */ - result = (void*)((int)(size_t)PTHREAD_CANCELED + 2); - } -#endif - - return (void *) (size_t)result; -} - -int -main() -{ - int failed = 0; - int i; - pthread_t mt; - pthread_t et[NUMTHREADS]; - pthread_t ct[NUMTHREADS]; - - DWORD dwMode = SetErrorMode(SEM_NOGPFAULTERRORBOX); - SetErrorMode(dwMode | SEM_NOGPFAULTERRORBOX); - - assert((mt = pthread_self()).p != NULL); - - for (i = 0; i < NUMTHREADS; i++) - { - assert(pthread_create(&et[i], NULL, exceptionedThread, (void *) 0) == 0); - assert(pthread_create(&ct[i], NULL, canceledThread, NULL) == 0); - } - - /* - * Code to control or manipulate child threads should probably go here. - */ - Sleep(100); - - for (i = 0; i < NUMTHREADS; i++) - { - assert(pthread_cancel(ct[i]) == 0); - } - - /* - * Give threads time to run. - */ - Sleep(NUMTHREADS * 100); - - /* - * Check any results here. Set "failed" and only print output on failure. - */ - failed = 0; - for (i = 0; i < NUMTHREADS; i++) - { - int fail = 0; - void* result = (void*)0; - - /* Canceled thread */ - assert(pthread_join(ct[i], &result) == 0); - assert(!(fail = (result != PTHREAD_CANCELED))); - - failed = (failed || fail); - - /* Exceptioned thread */ - assert(pthread_join(et[i], &result) == 0); - assert(!(fail = (result != (void*)((int)(size_t)PTHREAD_CANCELED + 2)))); - - failed = (failed || fail); - } - - assert(!failed); - - /* - * Success. - */ - return 0; -} - -#else /* defined(_MSC_VER) || defined(__cplusplus) */ - -#include - -int -main() -{ - fprintf(stderr, "Test N/A for this compiler environment.\n"); - return 0; -} - -#endif /* defined(_MSC_VER) || defined(__cplusplus) */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exception2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exception2.c deleted file mode 100644 index ce61b05..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exception2.c +++ /dev/null @@ -1,170 +0,0 @@ -/* - * File: exception2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test passing of exceptions out of thread scope. - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - have working pthread_create, pthread_self, pthread_mutex_lock/unlock - * pthread_testcancel, pthread_cancel - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - - -#if defined(_MSC_VER) || defined(__cplusplus) - -#if defined(_MSC_VER) && defined(__cplusplus) -#include -#elif defined(__cplusplus) -#include -#endif - -#ifdef __GNUC__ -#include -#endif - -#include "test.h" - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 1 -}; - - -void * -exceptionedThread(void * arg) -{ - int dummy = 0x1; - -#if defined(_MSC_VER) && !defined(__cplusplus) - - RaiseException(dummy, 0, 0, NULL); - -#elif defined(__cplusplus) - - throw dummy; - -#endif - - return (void *) 100; -} - -int -main(int argc, char* argv[]) -{ - int i; - pthread_t mt; - pthread_t et[NUMTHREADS]; - - DWORD dwMode = SetErrorMode(SEM_NOGPFAULTERRORBOX); - SetErrorMode(dwMode | SEM_NOGPFAULTERRORBOX); - - if (argc <= 1) - { - int result; - - printf("You should see an \"abnormal termination\" message\n"); - fflush(stdout); - - result = system("exception2.exe die"); - - printf("\"exception2.exe die\" returned status %d\n", result); - - /* - * result should be 0, 1 or 3 depending on build settings - */ - exit((result == 0 || result == 1 || result == 3) ? 0 : 1); - } - -#if defined(NO_ERROR_DIALOGS) - SetErrorMode(SEM_NOGPFAULTERRORBOX); -#endif - - assert((mt = pthread_self()).p != NULL); - - for (i = 0; i < NUMTHREADS; i++) - { - assert(pthread_create(&et[i], NULL, exceptionedThread, NULL) == 0); - } - - Sleep(100); - - /* - * Success. - */ - return 0; -} - -#else /* defined(_MSC_VER) || defined(__cplusplus) */ - -#include - -int -main() -{ - fprintf(stderr, "Test N/A for this compiler environment.\n"); - return 0; -} - -#endif /* defined(_MSC_VER) || defined(__cplusplus) */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exception3.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exception3.c deleted file mode 100644 index f7ae311..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exception3.c +++ /dev/null @@ -1,209 +0,0 @@ -/* - * File: exception3.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test running of user supplied terminate() function. - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - have working pthread_create, pthread_self, pthread_mutex_lock/unlock - * pthread_testcancel, pthread_cancel - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -/* - * Note: Due to a buggy C++ runtime in Visual Studio 2005, when we are - * built with /MD and an unhandled exception occurs, the runtime does not - * properly call the terminate handler specified by set_terminate(). - */ -#if defined(__cplusplus) \ - && !(defined(_MSC_VER) && _MSC_VER == 1400 && defined(_DLL) && !defined(_DEBUG)) - -#if defined(_MSC_VER) -# include -#else -# if defined(__GNUC__) && __GNUC__ < 3 -# include -# else -# include - using std::set_terminate; -# endif -#endif - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 10 -}; - -int caught = 0; -pthread_mutex_t caughtLock; - -void -terminateFunction () -{ - assert(pthread_mutex_lock(&caughtLock) == 0); - caught++; -#if 0 - { - FILE * fp = fopen("pthread.log", "a"); - fprintf(fp, "Caught = %d\n", caught); - fclose(fp); - } -#endif - assert_e(pthread_mutex_unlock(&caughtLock), ==, 0); - - /* - * Notes from the MSVC++ manual: - * 1) A term_func() should call exit(), otherwise - * abort() will be called on return to the caller. - * abort() raises SIGABRT. The default signal handler - * for all signals terminates the calling program with - * exit code 3. - * 2) A term_func() must not throw an exception. Dev: Therefore - * term_func() should not call pthread_exit() if an - * exception-using version of pthreads-win32 library - * is being used (i.e. either pthreadVCE or pthreadVSE). - */ - /* - * Allow time for all threads to reach here before exit, otherwise - * threads will be terminated while holding the lock and cause - * the next unlock to return EPERM (we're using ERRORCHECK mutexes). - * Perhaps this would be a good test for robust mutexes. - */ - Sleep(20); - - exit(0); -} - -void -wrongTerminateFunction () -{ - fputs("This is not the termination routine that should have been called!\n", stderr); - exit(1); -} - -void * -exceptionedThread(void * arg) -{ - int dummy = 0x1; - -#if defined (__PTW32_USES_SEPARATE_CRT) && (defined(__PTW32_CLEANUP_CXX) || defined(__PTW32_CLEANUP_SEH)) - printf("PTW32_USES_SEPARATE_CRT is defined\n"); - pthread_win32_set_terminate_np(&terminateFunction); - set_terminate(&wrongTerminateFunction); -#else - set_terminate(&terminateFunction); -#endif - - throw dummy; - - return (void *) 0; -} - -int -main() -{ - int i; - pthread_t mt; - pthread_t et[NUMTHREADS]; - pthread_mutexattr_t ma; - - DWORD dwMode = SetErrorMode(SEM_NOGPFAULTERRORBOX); - SetErrorMode(dwMode | SEM_NOGPFAULTERRORBOX); - - assert((mt = pthread_self()).p != NULL); - - printf("See the notes inside of exception3.c re term_funcs.\n"); - - assert(pthread_mutexattr_init(&ma) == 0); - assert(pthread_mutexattr_settype(&ma, PTHREAD_MUTEX_ERRORCHECK) == 0); - assert(pthread_mutex_init(&caughtLock, &ma) == 0); - assert(pthread_mutexattr_destroy(&ma) == 0); - - for (i = 0; i < NUMTHREADS; i++) - { - assert(pthread_create(&et[i], NULL, exceptionedThread, NULL) == 0); - } - - while (true); - - /* - * Should never be reached. - */ - return 1; -} - -#else /* defined(__cplusplus) */ - -#include - -int -main() -{ - fprintf(stderr, "Test N/A for this compiler environment.\n"); - return 0; -} - -#endif /* defined(__cplusplus) */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exception3_0.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exception3_0.c deleted file mode 100644 index b331de7..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exception3_0.c +++ /dev/null @@ -1,187 +0,0 @@ -/* - * File: exception3.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test running of user supplied terminate() function. - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - have working pthread_create, pthread_self, pthread_mutex_lock/unlock - * pthread_testcancel, pthread_cancel - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -/* - * Note: Due to a buggy C++ runtime in Visual Studio 2005, when we are - * built with /MD and an unhandled exception occurs, the runtime does not - * properly call the terminate handler specified by set_terminate(). - */ -#if defined(__cplusplus) \ - && !(defined(_MSC_VER) && _MSC_VER == 1400 && defined(_DLL) && !defined(_DEBUG)) - -#if defined(_MSC_VER) -# include -#else -# if defined(__GNUC__) && __GNUC__ < 3 -# include -# else -# include - using std::set_terminate; -# endif -#endif - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 10 -}; - -int caught = 0; -CRITICAL_SECTION caughtLock; - -void -terminateFunction () -{ - EnterCriticalSection(&caughtLock); - caught++; -#if 0 - { - FILE * fp = fopen("pthread.log", "a"); - fprintf(fp, "Caught = %d\n", caught); - fclose(fp); - } -#endif - LeaveCriticalSection(&caughtLock); - - /* - * Notes from the MSVC++ manual: - * 1) A term_func() should call exit(), otherwise - * abort() will be called on return to the caller. - * abort() raises SIGABRT. The default signal handler - * for all signals terminates the calling program with - * exit code 3. - * 2) A term_func() must not throw an exception. Dev: Therefore - * term_func() should not call pthread_exit() if an - * exception-using version of pthreads-win32 library - * is being used (i.e. either pthreadVCE or pthreadVSE). - */ - exit(0); -} - -void * -exceptionedThread(void * arg) -{ - int dummy = 0x1; - - set_terminate(&terminateFunction); - assert(set_terminate(&terminateFunction) == &terminateFunction); - - throw dummy; - - return (void *) 2; -} - -int -main() -{ - int i; - DWORD et[NUMTHREADS]; - - DWORD dwMode = SetErrorMode(SEM_NOGPFAULTERRORBOX); - SetErrorMode(dwMode | SEM_NOGPFAULTERRORBOX); - - InitializeCriticalSection(&caughtLock); - - for (i = 0; i < NUMTHREADS; i++) - { - CreateThread(NULL, //Choose default security - 0, //Default stack size - (LPTHREAD_START_ROUTINE)&exceptionedThread, //Routine to execute - NULL, //Thread parameter - 0, //Immediately run the thread - &et[i] //Thread Id - ); - } - - Sleep(NUMTHREADS * 10); - - DeleteCriticalSection(&caughtLock); - /* - * Fail. Should never be reached. - */ - return 1; -} - -#else /* defined(__cplusplus) */ - -#include - -int -main() -{ - fprintf(stderr, "Test N/A for this compiler environment.\n"); - return 0; -} - -#endif /* defined(__cplusplus) */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exit1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exit1.c deleted file mode 100644 index 73d917c..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exit1.c +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Test for pthread_exit(). - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Depends on API functions: None. - */ - -#include "test.h" - -int -main(int argc, char * argv[]) -{ - /* A simple test first. */ - pthread_exit((void *) 0); - - /* Not reached */ - return 1; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exit2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exit2.c deleted file mode 100644 index af25ec0..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exit2.c +++ /dev/null @@ -1,67 +0,0 @@ -/* - * Test for pthread_exit(). - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Depends on API functions: - * pthread_create() - * pthread_exit() - */ - -#include "test.h" - -void * -func(void * arg) -{ - int failed = (int) arg; - - pthread_exit(arg); - - /* Never reached. */ - /* - * Trick gcc compiler into not issuing a warning here - */ - assert(failed - (int)arg); - - return NULL; -} - -int -main(int argc, char * argv[]) -{ - pthread_t t; - - assert(pthread_create(&t, NULL, func, (void *) NULL) == 0); - - Sleep(100); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exit3.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exit3.c deleted file mode 100644 index a4cb122..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exit3.c +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Test for pthread_exit(). - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Depends on API functions: pthread_create(). - */ - -#include "test.h" - -void * -func(void * arg) -{ - int failed = (int) arg; - - pthread_exit(arg); - - /* Never reached. */ - /* - * assert(0) in a way to prevent warning or optimising away. - */ - assert(failed - (int) arg); - - return NULL; -} - -int -main(int argc, char * argv[]) -{ - pthread_t id[4]; - int i; - - /* Create a few threads and then exit. */ - for (i = 0; i < 4; i++) - { - assert(pthread_create(&id[i], NULL, func, (void *)(size_t)i) == 0); - } - - Sleep(400); - - /* Success. */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exit4.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exit4.c deleted file mode 100644 index 746bfc8..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exit4.c +++ /dev/null @@ -1,197 +0,0 @@ -/* - * File: exit4.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test calling pthread_exit from a Win32 thread - * without having created an implicit POSIX handle for it. - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - have working pthread_create, pthread_self, pthread_mutex_lock/unlock - * pthread_testcancel, pthread_cancel - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" -#ifndef _UWIN -#include -#endif - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 4 -}; - -typedef struct bag_t_ bag_t; -struct bag_t_ { - int threadnum; - int started; - /* Add more per-thread state variables here */ - int count; -}; - -static bag_t threadbag[NUMTHREADS + 1]; - -#if ! defined (__MINGW32__) || defined (__MSVCRT__) -unsigned __stdcall -#else -void -#endif -Win32thread(void * arg) -{ - int result = 1; - bag_t * bag = (bag_t *) arg; - - assert(bag == &threadbag[bag->threadnum]); - assert(bag->started == 0); - bag->started = 1; - - /* - * Doesn't return and doesn't create an implicit POSIX handle. - */ - pthread_exit((void *)(size_t)result); - - return 0; -} - -int -main() -{ - int failed = 0; - int i; - HANDLE h[NUMTHREADS + 1]; - unsigned thrAddr; /* Dummy variable to pass a valid location to _beginthreadex (Win98). */ - - for (i = 1; i <= NUMTHREADS; i++) - { - threadbag[i].started = 0; - threadbag[i].threadnum = i; -#if ! defined (__MINGW32__) || defined (__MSVCRT__) - h[i] = (HANDLE) _beginthreadex(NULL, 0, Win32thread, (void *) &threadbag[i], 0, &thrAddr); -#else - h[i] = (HANDLE) _beginthread(Win32thread, 0, (void *) &threadbag[i]); -#endif - } - - /* - * Code to control or manipulate child threads should probably go here. - */ - Sleep(500); - - /* - * Give threads time to run. - */ - Sleep(NUMTHREADS * 100); - - /* - * Standard check that all threads started. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - if (!threadbag[i].started) - { - failed |= !threadbag[i].started; - fprintf(stderr, "Thread %d: started %d\n", i, threadbag[i].started); - } - } - - assert(!failed); - - /* - * Check any results here. Set "failed" and only print output on failure. - */ - failed = 0; - for (i = 1; i <= NUMTHREADS; i++) - { - int fail = 0; - int result = 0; - -#if ! defined (__MINGW32__) || defined (__MSVCRT__) - assert(GetExitCodeThread(h[i], (LPDWORD) &result) == TRUE); -#else - /* - * Can't get a result code. - */ - result = 1; -#endif - - fail = (result != 1); - - if (fail) - { - fprintf(stderr, "Thread %d: started %d: count %d\n", - i, - threadbag[i].started, - threadbag[i].count); - } - failed = (failed || fail); - } - - assert(!failed); - - /* - * Success. - */ - return 0; -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exit5.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exit5.c deleted file mode 100644 index c33e8a9..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exit5.c +++ /dev/null @@ -1,204 +0,0 @@ -/* - * File: exit5.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test calling pthread_exit from a Win32 thread - * having created an implicit POSIX handle for it. - * - * Test Method (Validation or Falsification): - * - Validate return value and that POSIX handle is created and destroyed. - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - have working pthread_create, pthread_self, pthread_mutex_lock/unlock - * pthread_testcancel, pthread_cancel - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" -#ifndef _UWIN -#include -#endif - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { - NUMTHREADS = 4 -}; - -typedef struct bag_t_ bag_t; -struct bag_t_ { - int threadnum; - int started; - /* Add more per-thread state variables here */ - int count; - pthread_t self; -}; - -static bag_t threadbag[NUMTHREADS + 1]; - -#if ! defined (__MINGW32__) || defined (__MSVCRT__) -unsigned __stdcall -#else -void -#endif -Win32thread(void * arg) -{ - int result = 1; - bag_t * bag = (bag_t *) arg; - - assert(bag == &threadbag[bag->threadnum]); - assert(bag->started == 0); - bag->started = 1; - - assert((bag->self = pthread_self()).p != NULL); - assert(pthread_kill(bag->self, 0) == 0); - - /* - * Doesn't return. - */ - pthread_exit((void *)(size_t)result); - - return 0; -} - -int -main() -{ - int failed = 0; - int i; - HANDLE h[NUMTHREADS + 1]; - unsigned thrAddr; /* Dummy variable to pass a valid location to _beginthreadex (Win98). */ - - for (i = 1; i <= NUMTHREADS; i++) - { - threadbag[i].started = 0; - threadbag[i].threadnum = i; -#if ! defined (__MINGW32__) || defined (__MSVCRT__) - h[i] = (HANDLE) _beginthreadex(NULL, 0, Win32thread, (void *) &threadbag[i], 0, &thrAddr); -#else - h[i] = (HANDLE) _beginthread(Win32thread, 0, (void *) &threadbag[i]); -#endif - } - - /* - * Code to control or manipulate child threads should probably go here. - */ - Sleep(500); - - /* - * Give threads time to run. - */ - Sleep(NUMTHREADS * 100); - - /* - * Standard check that all threads started. - */ - for (i = 1; i <= NUMTHREADS; i++) - { - if (!threadbag[i].started) - { - failed |= !threadbag[i].started; - fprintf(stderr, "Thread %d: started %d\n", i, threadbag[i].started); - } - } - - assert(!failed); - - /* - * Check any results here. Set "failed" and only print output on failure. - */ - failed = 0; - for (i = 1; i <= NUMTHREADS; i++) - { - int fail = 0; - int result = 0; - -#if ! defined (__MINGW32__) || defined (__MSVCRT__) - assert(GetExitCodeThread(h[i], (LPDWORD) &result) == TRUE); -#else - /* - * Can't get a result code. - */ - result = 1; -#endif - - assert(threadbag[i].self.p != NULL); - assert(pthread_kill(threadbag[i].self, 0) == ESRCH); - - fail = (result != 1); - - if (fail) - { - fprintf(stderr, "Thread %d: started %d: count %d\n", - i, - threadbag[i].started, - threadbag[i].count); - } - failed = (failed || fail); - } - - assert(!failed); - - /* - * Success. - */ - return 0; -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exit6.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exit6.c deleted file mode 100644 index 8a38463..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/exit6.c +++ /dev/null @@ -1,57 +0,0 @@ -/* - * exit6.c - * - * Created on: 14/05/2013 - * Author: ross - */ - -#include "test.h" -#ifndef _UWIN -#include -#endif - -#include -//#include - -static pthread_key_t key; -static int where; - -static unsigned __stdcall -start_routine(void * arg) -{ - int *val = (int *) malloc(4); - - where = 2; - //printf("start_routine: native thread\n"); - - *val = 48; - pthread_setspecific(key, val); - return 0; -} - -static void -key_dtor(void *arg) -{ - //printf("key_dtor: %d\n", *(int*)arg); - if (where == 2) - printf("Library has thread exit POSIX cleanup for native threads.\n"); - else - printf("Library has process exit POSIX cleanup for native threads.\n"); - free(arg); -} - -int main(int argc, char **argv) -{ - HANDLE hthread; - - where = 1; - pthread_key_create(&key, key_dtor); - hthread = (HANDLE)_beginthreadex(NULL, 0, start_routine, NULL, 0, NULL); - WaitForSingleObject(hthread, INFINITE); - CloseHandle(hthread); - where = 3; - pthread_key_delete(key); - - //printf("main: exiting\n"); - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/eyal1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/eyal1.c deleted file mode 100644 index e66fc57..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/eyal1.c +++ /dev/null @@ -1,362 +0,0 @@ -/* Simple POSIX threads program. - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Author: Eyal Lebedinsky eyal@eyal.emu.id.au - * Written: Sep 1998. - * Version Date: 12 Sep 1998 - * - * Do we need to lock stdout or is it thread safe? - * - * Used: - * pthread_t - * pthread_attr_t - * pthread_create() - * pthread_join() - * pthread_mutex_t - * PTHREAD_MUTEX_INITIALIZER - * pthread_mutex_init() [not used now] - * pthread_mutex_destroy() - * pthread_mutex_lock() - * pthread_mutex_trylock() - * pthread_mutex_unlock() - * - * What this program does is establish a work queue (implemented using - * four mutexes for each thread). It then schedules work (by storing - * a number in 'todo') and releases the threads. When the work is done - * the threads will block. The program then repeats the same thing once - * more (just to test the logic) and when the work is done it destroyes - * the threads. - * - * The 'work' we do is simply burning CPU cycles in a loop. - * The 'todo' work queue is trivial - each threads pops one element - * off it by incrementing it, the poped number is the 'work' to do. - * When 'todo' reaches the limit (nwork) the queue is considered - * empty. - * - * The number displayed at the end is the amount of work each thread - * did, so we can see if the load was properly distributed. - * - * The program was written to test a threading setup (not seen here) - * rather than to demonstrate correct usage of the pthread facilities. - * - * Note how each thread is given access to a thread control structure - * (TC) which is used for communicating to/from the main program (e.g. - * the threads knows its 'id' and also filles in the 'work' done). -*/ - -#include "test.h" - -#include -#include - -struct thread_control { - int id; - pthread_t thread; /* thread id */ - pthread_mutex_t mutex_start; - pthread_mutex_t mutex_started; - pthread_mutex_t mutex_end; - pthread_mutex_t mutex_ended; - long work; /* work done */ - int stat; /* pthread_init status */ -}; - -typedef struct thread_control TC; - -static TC *tcs = NULL; -static int nthreads = 10; -static int nwork = 100; -static int quiet = 0; - -static int todo = -1; - -static pthread_mutex_t mutex_todo = PTHREAD_MUTEX_INITIALIZER; -static pthread_mutex_t mutex_stdout = PTHREAD_MUTEX_INITIALIZER; - - -static void -die (int ret) -{ - if (NULL != tcs) - { - free (tcs); - tcs = NULL; - } - - if (ret) - exit (ret); -} - - -static double -waste_time (int n) -{ - int i; - double f, g, h, s; - - s = 0.0; - - /* - * Useless work. - */ - for (i = n*100; i > 0; --i) - { - f = rand (); - g = rand (); - h = rand (); - s += 2.0 * f * g / (h != 0.0 ? (h * h) : 1.0); - } - return s; -} - -static int -do_work_unit (int who, int n) -{ - static int nchars = 0; - double f = 0.0; - - if (!quiet) { - /* - * get lock on stdout - */ - assert(pthread_mutex_lock (&mutex_stdout) == 0); - - /* - * do our job - */ - (void) printf ("%c", "0123456789abcdefghijklmnopqrstuvwxyz"[who]); - - if (!(++nchars % 50)) - printf ("\n"); - - fflush (stdout); - - /* - * release lock on stdout - */ - assert(pthread_mutex_unlock (&mutex_stdout) == 0); - } - - n = rand () % 10000; /* ignore incoming 'n' */ - f = waste_time (n); - - /* This prevents the statement above from being optimised out */ - if (f > 0.0) - return(n); - - return (n); -} - -static int -print_server (void *ptr) -{ - int mywork; - int n; - TC *tc = (TC *)ptr; - - assert(pthread_mutex_lock (&tc->mutex_started) == 0); - - for (;;) - { - assert(pthread_mutex_lock (&tc->mutex_start) == 0); - assert(pthread_mutex_unlock (&tc->mutex_start) == 0); - assert(pthread_mutex_lock (&tc->mutex_ended) == 0); - assert(pthread_mutex_unlock (&tc->mutex_started) == 0); - - for (;;) - { - - /* - * get lock on todo list - */ - assert(pthread_mutex_lock (&mutex_todo) == 0); - - mywork = todo; - if (todo >= 0) - { - ++todo; - if (todo >= nwork) - todo = -1; - } - assert(pthread_mutex_unlock (&mutex_todo) == 0); - - if (mywork < 0) - break; - - assert((n = do_work_unit (tc->id, mywork)) >= 0); - tc->work += n; - } - - assert(pthread_mutex_lock (&tc->mutex_end) == 0); - assert(pthread_mutex_unlock (&tc->mutex_end) == 0); - assert(pthread_mutex_lock (&tc->mutex_started) == 0); - assert(pthread_mutex_unlock (&tc->mutex_ended) == 0); - - if (-2 == mywork) - break; - } - - assert(pthread_mutex_unlock (&tc->mutex_started) == 0); - - return (0); -} - -static void -dosync (void) -{ - int i; - - for (i = 0; i < nthreads; ++i) - { - assert(pthread_mutex_lock (&tcs[i].mutex_end) == 0); - assert(pthread_mutex_unlock (&tcs[i].mutex_start) == 0); - assert(pthread_mutex_lock (&tcs[i].mutex_started) == 0); - assert(pthread_mutex_unlock (&tcs[i].mutex_started) == 0); - } - - /* - * Now threads do their work - */ - for (i = 0; i < nthreads; ++i) - { - assert(pthread_mutex_lock (&tcs[i].mutex_start) == 0); - assert(pthread_mutex_unlock (&tcs[i].mutex_end) == 0); - assert(pthread_mutex_lock (&tcs[i].mutex_ended) == 0); - assert(pthread_mutex_unlock (&tcs[i].mutex_ended) == 0); - } -} - -static void -dowork (void) -{ - todo = 0; - dosync(); - - todo = 0; - dosync(); -} - -int -main (int argc, char *argv[]) -{ - int i; - - assert(NULL != (tcs = (TC *) calloc (nthreads, sizeof (*tcs)))); - - /* - * Launch threads - */ - for (i = 0; i < nthreads; ++i) - { - tcs[i].id = i; - - assert(pthread_mutex_init (&tcs[i].mutex_start, NULL) == 0); - assert(pthread_mutex_init (&tcs[i].mutex_started, NULL) == 0); - assert(pthread_mutex_init (&tcs[i].mutex_end, NULL) == 0); - assert(pthread_mutex_init (&tcs[i].mutex_ended, NULL) == 0); - - tcs[i].work = 0; - - assert(pthread_mutex_lock (&tcs[i].mutex_start) == 0); - assert((tcs[i].stat = - pthread_create (&tcs[i].thread, - NULL, - (void *(*)(void *))print_server, - (void *) &tcs[i]) - ) == 0); - - /* - * Wait for thread initialisation - */ - { - int trylock = 0; - - while (trylock == 0) - { - trylock = pthread_mutex_trylock(&tcs[i].mutex_started); - assert(trylock == 0 || trylock == EBUSY); - - if (trylock == 0) - { - assert(pthread_mutex_unlock (&tcs[i].mutex_started) == 0); - } - } - } - } - - dowork (); - - /* - * Terminate threads - */ - todo = -2; /* please terminate */ - dosync(); - - for (i = 0; i < nthreads; ++i) - { - if (0 == tcs[i].stat) - assert(pthread_join (tcs[i].thread, NULL) == 0); - } - - /* - * destroy locks - */ - assert(pthread_mutex_destroy (&mutex_stdout) == 0); - assert(pthread_mutex_destroy (&mutex_todo) == 0); - - /* - * Cleanup - */ - printf ("\n"); - - /* - * Show results - */ - for (i = 0; i < nthreads; ++i) - { - printf ("%2d ", i); - if (0 == tcs[i].stat) - printf ("%10ld\n", tcs[i].work); - else - printf ("failed %d\n", tcs[i].stat); - - assert(pthread_mutex_unlock(&tcs[i].mutex_start) == 0); - - assert(pthread_mutex_destroy (&tcs[i].mutex_start) == 0); - assert(pthread_mutex_destroy (&tcs[i].mutex_started) == 0); - assert(pthread_mutex_destroy (&tcs[i].mutex_end) == 0); - assert(pthread_mutex_destroy (&tcs[i].mutex_ended) == 0); - } - - die (0); - - return (0); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/inherit1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/inherit1.c deleted file mode 100644 index 8fc0776..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/inherit1.c +++ /dev/null @@ -1,175 +0,0 @@ -/* - * File: inherit1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test thread priority inheritance. - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -enum { - PTW32TEST_THREAD_INIT_PRIO = 0, - PTW32TEST_MAXPRIORITIES = 512 -}; - -int minPrio; -int maxPrio; -int validPriorities[PTW32TEST_MAXPRIORITIES]; - - -void * func(void * arg) -{ - int policy; - struct sched_param param; - - assert(pthread_getschedparam(pthread_self(), &policy, ¶m) == 0); - return (void *) (size_t)param.sched_priority; -} - - -void * -getValidPriorities(void * arg) -{ - int prioSet; - pthread_t thread = pthread_self(); - HANDLE threadH = pthread_getw32threadhandle_np(thread); - struct sched_param param; - - for (prioSet = minPrio; - prioSet <= maxPrio; - prioSet++) - { - /* - * If prioSet is invalid then the threads priority is unchanged - * from the previous value. Make the previous value a known - * one so that we can check later. - */ - param.sched_priority = prioSet; - assert(pthread_setschedparam(thread, SCHED_OTHER, ¶m) == 0); - validPriorities[prioSet+(PTW32TEST_MAXPRIORITIES/2)] = GetThreadPriority(threadH); - } - - return (void *) 0; -} - - -int -main() -{ - pthread_t t; - pthread_t mainThread = pthread_self(); - pthread_attr_t attr; - void * result = NULL; - struct sched_param param; - struct sched_param mainParam; - int prio; - int policy; - int inheritsched = -1; - pthread_t threadID = pthread_self(); - HANDLE threadH = pthread_getw32threadhandle_np(threadID); - - assert((maxPrio = sched_get_priority_max(SCHED_OTHER)) != -1); - assert((minPrio = sched_get_priority_min(SCHED_OTHER)) != -1); - - assert(pthread_create(&t, NULL, getValidPriorities, NULL) == 0); - assert(pthread_join(t, &result) == 0); - - assert(pthread_attr_init(&attr) == 0); - assert(pthread_attr_setinheritsched(&attr, PTHREAD_INHERIT_SCHED) == 0); - assert(pthread_attr_getinheritsched(&attr, &inheritsched) == 0); - assert(inheritsched == PTHREAD_INHERIT_SCHED); - - for (prio = minPrio; prio <= maxPrio; prio++) - { - mainParam.sched_priority = prio; - - /* Set the thread's priority to a known initial value. */ - SetThreadPriority(threadH, PTW32TEST_THREAD_INIT_PRIO); - - /* Change the main thread priority */ - assert(pthread_setschedparam(mainThread, SCHED_OTHER, &mainParam) == 0); - assert(pthread_getschedparam(mainThread, &policy, &mainParam) == 0); - assert(policy == SCHED_OTHER); - /* Priority returned below should be the level set by pthread_setschedparam(). */ - assert(mainParam.sched_priority == prio); - assert(GetThreadPriority(threadH) == - validPriorities[prio+(PTW32TEST_MAXPRIORITIES/2)]); - - for (param.sched_priority = prio; - param.sched_priority <= maxPrio; - param.sched_priority++) - { - /* The new thread create should ignore this new priority */ - assert(pthread_attr_setschedparam(&attr, ¶m) == 0); - assert(pthread_create(&t, &attr, func, NULL) == 0); - pthread_join(t, &result); - assert((int)(size_t) result == mainParam.sched_priority); - } - } - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/join0.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/join0.c deleted file mode 100644 index d7ec9d8..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/join0.c +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Test for pthread_join(). - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Depends on API functions: pthread_create(), pthread_exit(). - */ - -#include "test.h" - -void * -func(void * arg) -{ - Sleep(2000); - - pthread_exit(arg); - - /* Never reached. */ - exit(1); -} - -int -main(int argc, char * argv[]) -{ - pthread_t id; - void* result = (void*)0; - - /* Create a single thread and wait for it to exit. */ - assert(pthread_create(&id, NULL, func, (void *) 123) == 0); - - assert(pthread_join(id, &result) == 0); - - assert((int)(size_t)result == 123); - - /* Success. */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/join1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/join1.c deleted file mode 100644 index a797417..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/join1.c +++ /dev/null @@ -1,76 +0,0 @@ -/* - * Test for pthread_join(). - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Depends on API functions: pthread_create(), pthread_join(), pthread_exit(). - */ - -#include "test.h" - -void * -func(void * arg) -{ - int i = (int)(size_t)arg; - - Sleep(i * 100); - - pthread_exit(arg); - - /* Never reached. */ - exit(1); -} - -int -main(int argc, char * argv[]) -{ - pthread_t id[4]; - int i; - void* result = (void*)-1; - - /* Create a few threads and then exit. */ - for (i = 0; i < 4; i++) - { - assert(pthread_create(&id[i], NULL, func, (void *)(size_t)i) == 0); - } - - /* Some threads will finish before they are joined, some after. */ - Sleep(2 * 100 + 50); - - for (i = 0; i < 4; i++) - { - assert(pthread_join(id[i], &result) == 0); - assert((int)(size_t)result == i); - } - - /* Success. */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/join2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/join2.c deleted file mode 100644 index fe0b8ea..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/join2.c +++ /dev/null @@ -1,67 +0,0 @@ -/* - * Test for pthread_join() returning return value from threads. - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Depends on API functions: pthread_create(). - */ - -#include "test.h" - -void * -func(void * arg) -{ - Sleep(1000); - return arg; -} - -int -main(int argc, char * argv[]) -{ - pthread_t id[4]; - int i; - void* result = (void*)-1; - - /* Create a few threads and then exit. */ - for (i = 0; i < 4; i++) - { - assert(pthread_create(&id[i], NULL, func, (void *)(size_t)i) == 0); - } - - for (i = 0; i < 4; i++) - { - assert(pthread_join(id[i], &result) == 0); - assert((int)(size_t)result == i); - } - - /* Success. */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/join3.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/join3.c deleted file mode 100644 index 80dac31..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/join3.c +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Test for pthread_join() returning return value from threads. - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Depends on API functions: pthread_create(). - */ - -#include "test.h" - -void * -func(void * arg) -{ - sched_yield(); - return arg; -} - -int -main(int argc, char * argv[]) -{ - pthread_t id[4]; - int i; - void* result = (void*)-1; - - /* Create a few threads and then exit. */ - for (i = 0; i < 4; i++) - { - assert(pthread_create(&id[i], NULL, func, (void *)(size_t)i) == 0); - } - - /* - * Let threads exit before we join them. - * We should still retrieve the exit code for the threads. - */ - Sleep(1000); - - for (i = 0; i < 4; i++) - { - assert(pthread_join(id[i], &result) == 0); - assert((int)(size_t)result == i); - } - - /* Success. */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/join4.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/join4.c deleted file mode 100644 index 62ed56e..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/join4.c +++ /dev/null @@ -1,78 +0,0 @@ -/* - * Test for pthread_timedjoin_np() timing out. - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Depends on API functions: pthread_create(). - */ - -#include "test.h" - -void * -func(void * arg) -{ - Sleep(1200); - return arg; -} - -int -main(int argc, char * argv[]) -{ - pthread_t id; - struct timespec abstime, reltime = { 1, 0 }; - void* result = (void*)-1; - - assert(pthread_create(&id, NULL, func, (void *)(size_t)999) == 0); - - /* - * Let thread start before we attempt to join it. - */ - Sleep(100); - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - /* Test for pthread_timedjoin_np timeout */ - assert(pthread_timedjoin_np(id, &result, &abstime) == ETIMEDOUT); - assert((int)(size_t)result == -1); - - /* Test for pthread_tryjoin_np behaviour before thread has exited */ - assert(pthread_tryjoin_np(id, &result) == EBUSY); - assert((int)(size_t)result == -1); - - Sleep(500); - - /* Test for pthread_tryjoin_np behaviour after thread has exited */ - assert(pthread_tryjoin_np(id, &result) == 0); - assert((int)(size_t)result == 999); - - /* Success. */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/kill1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/kill1.c deleted file mode 100644 index 2cb3266..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/kill1.c +++ /dev/null @@ -1,81 +0,0 @@ -/* - * File: kill1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - pthread_kill() does not support non zero signals.. - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - - -int -main() -{ - assert(pthread_kill(pthread_self(), 1) == EINVAL); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex1.c deleted file mode 100644 index 4b28d6d..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex1.c +++ /dev/null @@ -1,66 +0,0 @@ -/* - * mutex1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Create a simple mutex object, lock it, and then unlock it again. - * This is the simplest test of the pthread mutex family that we can do. - * - * Depends on API functions: - * pthread_mutex_init() - * pthread_mutex_lock() - * pthread_mutex_unlock() - * pthread_mutex_destroy() - */ - -#include "test.h" - -pthread_mutex_t mutex = NULL; - -int -main() -{ - assert(mutex == NULL); - - assert(pthread_mutex_init(&mutex, NULL) == 0); - - assert(mutex != NULL); - - assert(pthread_mutex_lock(&mutex) == 0); - - assert(pthread_mutex_unlock(&mutex) == 0); - - assert(pthread_mutex_destroy(&mutex) == 0); - - assert(mutex == NULL); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex1e.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex1e.c deleted file mode 100644 index 4e7c30f..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex1e.c +++ /dev/null @@ -1,76 +0,0 @@ -/* - * mutex1e.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * As for mutex1.c but with type set to PTHREAD_MUTEX_ERRORCHECK. - * - * Create a simple mutex object, lock it, unlock it, then destroy it. - * This is the simplest test of the pthread mutex family that we can do. - * - * Depends on API functions: - * pthread_mutexattr_settype() - * pthread_mutex_init() - * pthread_mutex_destroy() - */ - -#include "test.h" - -pthread_mutex_t mutex = NULL; -pthread_mutexattr_t mxAttr; - -int -main() -{ - assert(pthread_mutexattr_init(&mxAttr) == 0); - - BEGIN_MUTEX_STALLED_ROBUST(mxAttr) - - assert(pthread_mutexattr_settype(&mxAttr, PTHREAD_MUTEX_ERRORCHECK) == 0); - - assert(mutex == NULL); - - assert(pthread_mutex_init(&mutex, &mxAttr) == 0); - - assert(mutex != NULL); - - assert(pthread_mutex_lock(&mutex) == 0); - - assert(pthread_mutex_unlock(&mutex) == 0); - - assert(pthread_mutex_destroy(&mutex) == 0); - - assert(mutex == NULL); - - END_MUTEX_STALLED_ROBUST(mxAttr) - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex1n.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex1n.c deleted file mode 100644 index 03caf1e..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex1n.c +++ /dev/null @@ -1,76 +0,0 @@ -/* - * mutex1n.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * As for mutex1.c but with type set to PTHREAD_MUTEX_NORMAL. - * - * Create a simple mutex object, lock it, unlock it, then destroy it. - * This is the simplest test of the pthread mutex family that we can do. - * - * Depends on API functions: - * pthread_mutexattr_settype() - * pthread_mutex_init() - * pthread_mutex_destroy() - */ - -#include "test.h" - -pthread_mutex_t mutex = NULL; -pthread_mutexattr_t mxAttr; - -int -main() -{ - assert(pthread_mutexattr_init(&mxAttr) == 0); - - BEGIN_MUTEX_STALLED_ROBUST(mxAttr) - - assert(pthread_mutexattr_settype(&mxAttr, PTHREAD_MUTEX_NORMAL) == 0); - - assert(mutex == NULL); - - assert(pthread_mutex_init(&mutex, &mxAttr) == 0); - - assert(mutex != NULL); - - assert(pthread_mutex_lock(&mutex) == 0); - - assert(pthread_mutex_unlock(&mutex) == 0); - - assert(pthread_mutex_destroy(&mutex) == 0); - - assert(mutex == NULL); - - END_MUTEX_STALLED_ROBUST(mxAttr) - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex1r.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex1r.c deleted file mode 100644 index 2241608..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex1r.c +++ /dev/null @@ -1,76 +0,0 @@ -/* - * mutex1r.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * As for mutex1.c but with type set to PTHREAD_MUTEX_RECURSIVE. - * - * Create a simple mutex object, lock it, unlock it, then destroy it. - * This is the simplest test of the pthread mutex family that we can do. - * - * Depends on API functions: - * pthread_mutexattr_settype() - * pthread_mutex_init() - * pthread_mutex_destroy() - */ - -#include "test.h" - -pthread_mutex_t mutex = NULL; -pthread_mutexattr_t mxAttr; - -int -main() -{ - assert(pthread_mutexattr_init(&mxAttr) == 0); - - BEGIN_MUTEX_STALLED_ROBUST(mxAttr) - - assert(pthread_mutexattr_settype(&mxAttr, PTHREAD_MUTEX_RECURSIVE) == 0); - - assert(mutex == NULL); - - assert(pthread_mutex_init(&mutex, &mxAttr) == 0); - - assert(mutex != NULL); - - assert(pthread_mutex_lock(&mutex) == 0); - - assert(pthread_mutex_unlock(&mutex) == 0); - - assert(pthread_mutex_destroy(&mutex) == 0); - - assert(mutex == NULL); - - END_MUTEX_STALLED_ROBUST(mxAttr) - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex2.c deleted file mode 100644 index 4a33243..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex2.c +++ /dev/null @@ -1,64 +0,0 @@ -/* - * mutex2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Declare a static mutex object, lock it, - * and then unlock it again. - * - * Depends on API functions: - * pthread_mutex_lock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; - -int -main() -{ - assert(mutex == PTHREAD_MUTEX_INITIALIZER); - - assert(pthread_mutex_lock(&mutex) == 0); - - assert(mutex != PTHREAD_MUTEX_INITIALIZER); - - assert(mutex != NULL); - - assert(pthread_mutex_unlock(&mutex) == 0); - - assert(pthread_mutex_destroy(&mutex) == 0); - - assert(mutex == NULL); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex2e.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex2e.c deleted file mode 100644 index 8748f49..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex2e.c +++ /dev/null @@ -1,64 +0,0 @@ -/* - * mutex2e.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Declare a static mutex object, lock it, - * and then unlock it again. - * - * Depends on API functions: - * pthread_mutex_lock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -pthread_mutex_t mutex = PTHREAD_ERRORCHECK_MUTEX_INITIALIZER; - -int -main() -{ - assert(mutex == PTHREAD_ERRORCHECK_MUTEX_INITIALIZER); - - assert(pthread_mutex_lock(&mutex) == 0); - - assert(mutex != PTHREAD_ERRORCHECK_MUTEX_INITIALIZER); - - assert(mutex != NULL); - - assert(pthread_mutex_unlock(&mutex) == 0); - - assert(pthread_mutex_destroy(&mutex) == 0); - - assert(mutex == NULL); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex2r.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex2r.c deleted file mode 100644 index 6363045..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex2r.c +++ /dev/null @@ -1,64 +0,0 @@ -/* - * mutex2r.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Declare a static mutex object, lock it, - * and then unlock it again. - * - * Depends on API functions: - * pthread_mutex_lock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -pthread_mutex_t mutex = PTHREAD_RECURSIVE_MUTEX_INITIALIZER; - -int -main() -{ - assert(mutex == PTHREAD_RECURSIVE_MUTEX_INITIALIZER); - - assert(pthread_mutex_lock(&mutex) == 0); - - assert(mutex != PTHREAD_RECURSIVE_MUTEX_INITIALIZER); - - assert(mutex != NULL); - - assert(pthread_mutex_unlock(&mutex) == 0); - - assert(pthread_mutex_destroy(&mutex) == 0); - - assert(mutex == NULL); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex3.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex3.c deleted file mode 100644 index 40ee266..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex3.c +++ /dev/null @@ -1,73 +0,0 @@ -/* - * mutex3.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Declare a static mutex object, lock it, trylock it, - * and then unlock it again. - * - * Depends on API functions: - * pthread_mutex_lock() - * pthread_mutex_trylock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -pthread_mutex_t mutex1 = PTHREAD_MUTEX_INITIALIZER; - -static int washere = 0; - -void * func(void * arg) -{ - assert(pthread_mutex_trylock(&mutex1) == EBUSY); - - washere = 1; - - return 0; -} - -int -main() -{ - pthread_t t; - - assert(pthread_mutex_lock(&mutex1) == 0); - - assert(pthread_create(&t, NULL, func, NULL) == 0); - assert(pthread_join(t, NULL) == 0); - - assert(pthread_mutex_unlock(&mutex1) == 0); - - assert(washere == 1); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex3e.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex3e.c deleted file mode 100644 index 27e9ab7..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex3e.c +++ /dev/null @@ -1,73 +0,0 @@ -/* - * mutex3e.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Declare a static mutex object, lock it, trylock it, - * and then unlock it again. - * - * Depends on API functions: - * pthread_mutex_lock() - * pthread_mutex_trylock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -pthread_mutex_t mutex1 = PTHREAD_ERRORCHECK_MUTEX_INITIALIZER; - -static int washere = 0; - -void * func(void * arg) -{ - assert(pthread_mutex_trylock(&mutex1) == EBUSY); - - washere = 1; - - return 0; -} - -int -main() -{ - pthread_t t; - - assert(pthread_mutex_lock(&mutex1) == 0); - - assert(pthread_create(&t, NULL, func, NULL) == 0); - assert(pthread_join(t, NULL) == 0); - - assert(pthread_mutex_unlock(&mutex1) == 0); - - assert(washere == 1); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex3r.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex3r.c deleted file mode 100644 index c2946f2..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex3r.c +++ /dev/null @@ -1,73 +0,0 @@ -/* - * mutex3r.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Declare a static mutex object, lock it, trylock it, - * and then unlock it again. - * - * Depends on API functions: - * pthread_mutex_lock() - * pthread_mutex_trylock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -pthread_mutex_t mutex1 = PTHREAD_RECURSIVE_MUTEX_INITIALIZER; - -static int washere = 0; - -void * func(void * arg) -{ - assert(pthread_mutex_trylock(&mutex1) == EBUSY); - - washere = 1; - - return 0; -} - -int -main() -{ - pthread_t t; - - assert(pthread_mutex_lock(&mutex1) == 0); - - assert(pthread_create(&t, NULL, func, NULL) == 0); - assert(pthread_join(t, NULL) == 0); - - assert(pthread_mutex_unlock(&mutex1) == 0); - - assert(washere == 1); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex4.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex4.c deleted file mode 100644 index b09969e..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex4.c +++ /dev/null @@ -1,107 +0,0 @@ -/* - * mutex4.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Thread A locks mutex - thread B tries to unlock. - * - * Depends on API functions: - * pthread_mutex_lock() - * pthread_mutex_trylock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -static int wasHere = 0; - -static pthread_mutex_t mutex1; - -void * unlocker(void * arg) -{ - int expectedResult = (int)(size_t)arg; - - wasHere++; - assert(pthread_mutex_unlock(&mutex1) == expectedResult); - wasHere++; - return NULL; -} - -int -main() -{ - pthread_t t; - pthread_mutexattr_t ma; - - assert(pthread_mutexattr_init(&ma) == 0); - - BEGIN_MUTEX_STALLED_ROBUST(ma) - - wasHere = 0; - assert(pthread_mutexattr_settype(&ma, PTHREAD_MUTEX_DEFAULT) == 0); - assert(pthread_mutex_init(&mutex1, &ma) == 0); - assert(pthread_mutex_lock(&mutex1) == 0); - assert(pthread_create(&t, NULL, unlocker, (void *)(size_t)(IS_ROBUST?EPERM:0)) == 0); - assert(pthread_join(t, NULL) == 0); - assert(pthread_mutex_unlock(&mutex1) == 0); - assert(wasHere == 2); - - wasHere = 0; - assert(pthread_mutexattr_settype(&ma, PTHREAD_MUTEX_NORMAL) == 0); - assert(pthread_mutex_init(&mutex1, &ma) == 0); - assert(pthread_mutex_lock(&mutex1) == 0); - assert(pthread_create(&t, NULL, unlocker, (void *)(size_t)(IS_ROBUST?EPERM:0)) == 0); - assert(pthread_join(t, NULL) == 0); - assert(pthread_mutex_unlock(&mutex1) == 0); - assert(wasHere == 2); - - wasHere = 0; - assert(pthread_mutexattr_settype(&ma, PTHREAD_MUTEX_ERRORCHECK) == 0); - assert(pthread_mutex_init(&mutex1, &ma) == 0); - assert(pthread_mutex_lock(&mutex1) == 0); - assert(pthread_create(&t, NULL, unlocker, (void *)(size_t) EPERM) == 0); - assert(pthread_join(t, NULL) == 0); - assert(pthread_mutex_unlock(&mutex1) == 0); - assert(wasHere == 2); - - wasHere = 0; - assert(pthread_mutexattr_settype(&ma, PTHREAD_MUTEX_RECURSIVE) == 0); - assert(pthread_mutex_init(&mutex1, &ma) == 0); - assert(pthread_mutex_lock(&mutex1) == 0); - assert(pthread_create(&t, NULL, unlocker, (void *)(size_t) EPERM) == 0); - assert(pthread_join(t, NULL) == 0); - assert(pthread_mutex_unlock(&mutex1) == 0); - assert(wasHere == 2); - - END_MUTEX_STALLED_ROBUST(ma) - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex5.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex5.c deleted file mode 100644 index 636adbf..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex5.c +++ /dev/null @@ -1,65 +0,0 @@ -/* - * mutex5.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Confirm the equality/inequality of the various mutex types, - * and the default not-set value. - */ - -#include "test.h" - -static pthread_mutexattr_t mxAttr; - -/* Prevent optimiser from removing dead or obvious asserts. */ -int _optimiseFoil; -#define FOIL(x) (_optimiseFoil = x) - -int -main() -{ - int mxType = -1; - - assert(FOIL(PTHREAD_MUTEX_DEFAULT) == PTHREAD_MUTEX_NORMAL); - assert(FOIL(PTHREAD_MUTEX_DEFAULT) != PTHREAD_MUTEX_ERRORCHECK); - assert(FOIL(PTHREAD_MUTEX_DEFAULT) != PTHREAD_MUTEX_RECURSIVE); - assert(FOIL(PTHREAD_MUTEX_RECURSIVE) != PTHREAD_MUTEX_ERRORCHECK); - - assert(FOIL(PTHREAD_MUTEX_NORMAL) == PTHREAD_MUTEX_FAST_NP); - assert(FOIL(PTHREAD_MUTEX_RECURSIVE) == PTHREAD_MUTEX_RECURSIVE_NP); - assert(FOIL(PTHREAD_MUTEX_ERRORCHECK) == PTHREAD_MUTEX_ERRORCHECK_NP); - - assert(pthread_mutexattr_init(&mxAttr) == 0); - assert(pthread_mutexattr_gettype(&mxAttr, &mxType) == 0); - assert(mxType == PTHREAD_MUTEX_NORMAL); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex6.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex6.c deleted file mode 100644 index b42ed7d..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex6.c +++ /dev/null @@ -1,94 +0,0 @@ -/* - * mutex6.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test the default (type not set) mutex type. - * Should be the same as PTHREAD_MUTEX_NORMAL. - * Thread locks mutex twice (recursive lock). - * Locking thread should deadlock on second attempt. - * - * Depends on API functions: - * pthread_mutex_lock() - * pthread_mutex_trylock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -static int lockCount = 0; - -static pthread_mutex_t mutex; - -void * locker(void * arg) -{ - assert(pthread_mutex_lock(&mutex) == 0); - lockCount++; - - /* Should wait here (deadlocked) */ - assert(pthread_mutex_lock(&mutex) == 0); - lockCount++; - assert(pthread_mutex_unlock(&mutex) == 0); - - return 0; -} - -int -main() -{ - pthread_t t; - - assert(pthread_mutex_init(&mutex, NULL) == 0); - - assert(pthread_create(&t, NULL, locker, NULL) == 0); - - while (lockCount < 1) - { - Sleep(1); - } - - assert(lockCount == 1); - - /* - * Should succeed even though we don't own the lock - * because FAST mutexes don't check ownership. - */ - assert(pthread_mutex_unlock(&mutex) == 0); - - while (lockCount < 2) - { - Sleep(1); - } - - assert(lockCount == 2); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex6e.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex6e.c deleted file mode 100644 index 7c2f5a7..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex6e.c +++ /dev/null @@ -1,104 +0,0 @@ -/* - * mutex6e.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Tests PTHREAD_MUTEX_ERRORCHECK mutex type. - * Thread locks mutex twice (recursive lock). - * This should fail with an EDEADLK error. - * The second unlock attempt should fail with an EPERM error. - * - * Depends on API functions: - * pthread_create() - * pthread_join() - * pthread_mutexattr_init() - * pthread_mutexattr_destroy() - * pthread_mutexattr_settype() - * pthread_mutexattr_gettype() - * pthread_mutex_init() - * pthread_mutex_destroy() - * pthread_mutex_lock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -static int lockCount; - -static pthread_mutex_t mutex; -static pthread_mutexattr_t mxAttr; - -void * locker(void * arg) -{ - assert(pthread_mutex_lock(&mutex) == 0); - lockCount++; - assert(pthread_mutex_lock(&mutex) == EDEADLK); - lockCount++; - assert(pthread_mutex_unlock(&mutex) == 0); - assert(pthread_mutex_unlock(&mutex) == EPERM); - - return (void *) 555; -} - -int -main() -{ - pthread_t t; - void* result = (void*)0; - int mxType = -1; - - assert(pthread_mutexattr_init(&mxAttr) == 0); - - BEGIN_MUTEX_STALLED_ROBUST(mxAttr) - - lockCount = 0; - assert(pthread_mutexattr_settype(&mxAttr, PTHREAD_MUTEX_ERRORCHECK) == 0); - assert(pthread_mutexattr_gettype(&mxAttr, &mxType) == 0); - assert(mxType == PTHREAD_MUTEX_ERRORCHECK); - - assert(pthread_mutex_init(&mutex, &mxAttr) == 0); - - assert(pthread_create(&t, NULL, locker, NULL) == 0); - - assert(pthread_join(t, &result) == 0); - assert((int)(size_t)result == 555); - - assert(lockCount == 2); - - assert(pthread_mutex_destroy(&mutex) == 0); - - END_MUTEX_STALLED_ROBUST(mxAttr) - - assert(pthread_mutexattr_destroy(&mxAttr) == 0); - - return 0; -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex6es.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex6es.c deleted file mode 100644 index e405938..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex6es.c +++ /dev/null @@ -1,89 +0,0 @@ -/* - * mutex6es.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Tests PTHREAD_MUTEX_ERRORCHECK static mutex type. - * Thread locks mutex twice (recursive lock). - * This should fail with an EDEADLK error. - * The second unlock attempt should fail with an EPERM error. - * - * Depends on API functions: - * pthread_create() - * pthread_join() - * pthread_mutexattr_init() - * pthread_mutexattr_destroy() - * pthread_mutexattr_settype() - * pthread_mutexattr_gettype() - * pthread_mutex_init() - * pthread_mutex_destroy() - * pthread_mutex_lock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -static int lockCount = 0; - -static pthread_mutex_t mutex = PTHREAD_ERRORCHECK_MUTEX_INITIALIZER; - -void * locker(void * arg) -{ - assert(pthread_mutex_lock(&mutex) == 0); - lockCount++; - assert(pthread_mutex_lock(&mutex) == EDEADLK); - lockCount++; - assert(pthread_mutex_unlock(&mutex) == 0); - assert(pthread_mutex_unlock(&mutex) == EPERM); - - return (void *) 555; -} - -int -main() -{ - pthread_t t; - void* result = (void*)0; - - assert(mutex == PTHREAD_ERRORCHECK_MUTEX_INITIALIZER); - - assert(pthread_create(&t, NULL, locker, NULL) == 0); - - assert(pthread_join(t, &result) == 0); - assert((int)(size_t)result == 555); - - assert(lockCount == 2); - - assert(pthread_mutex_destroy(&mutex) == 0); - - return 0; -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex6n.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex6n.c deleted file mode 100644 index 6d59989..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex6n.c +++ /dev/null @@ -1,108 +0,0 @@ -/* - * mutex6n.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Tests PTHREAD_MUTEX_NORMAL mutex type. - * Thread locks mutex twice (recursive lock). - * The thread should deadlock. - * - * Depends on API functions: - * pthread_create() - * pthread_mutexattr_init() - * pthread_mutexattr_settype() - * pthread_mutexattr_gettype() - * pthread_mutex_init() - * pthread_mutex_lock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -static int lockCount; - -static pthread_mutex_t mutex; -static pthread_mutexattr_t mxAttr; - -void * locker(void * arg) -{ - assert(pthread_mutex_lock(&mutex) == 0); - lockCount++; - - /* Should wait here (deadlocked) */ - assert(pthread_mutex_lock(&mutex) == 0); - - lockCount++; - assert(pthread_mutex_unlock(&mutex) == 0); - - return (void *) 555; -} - -int -main() -{ - pthread_t t; - int mxType = -1; - - assert(pthread_mutexattr_init(&mxAttr) == 0); - - BEGIN_MUTEX_STALLED_ROBUST(mxAttr) - - lockCount = 0; - assert(pthread_mutexattr_settype(&mxAttr, PTHREAD_MUTEX_NORMAL) == 0); - assert(pthread_mutexattr_gettype(&mxAttr, &mxType) == 0); - assert(mxType == PTHREAD_MUTEX_NORMAL); - - assert(pthread_mutex_init(&mutex, &mxAttr) == 0); - - assert(pthread_create(&t, NULL, locker, NULL) == 0); - - while (lockCount < 1) - { - Sleep(1); - } - - assert(lockCount == 1); - - assert(pthread_mutex_unlock(&mutex) == (IS_ROBUST?EPERM:0)); - - while (lockCount < (IS_ROBUST?1:2)) - { - Sleep(1); - } - - assert(lockCount == (IS_ROBUST?1:2)); - - END_MUTEX_STALLED_ROBUST(mxAttr) - - return 0; -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex6r.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex6r.c deleted file mode 100644 index 65827ff..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex6r.c +++ /dev/null @@ -1,102 +0,0 @@ -/* - * mutex6r.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Tests PTHREAD_MUTEX_RECURSIVE mutex type. - * Thread locks mutex twice (recursive lock). - * Both locks and unlocks should succeed. - * - * Depends on API functions: - * pthread_create() - * pthread_join() - * pthread_mutexattr_init() - * pthread_mutexattr_destroy() - * pthread_mutexattr_settype() - * pthread_mutexattr_gettype() - * pthread_mutex_init() - * pthread_mutex_destroy() - * pthread_mutex_lock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -static int lockCount; - -static pthread_mutex_t mutex; -static pthread_mutexattr_t mxAttr; - -void * locker(void * arg) -{ - assert(pthread_mutex_lock(&mutex) == 0); - lockCount++; - assert(pthread_mutex_lock(&mutex) == 0); - lockCount++; - assert(pthread_mutex_unlock(&mutex) == 0); - assert(pthread_mutex_unlock(&mutex) == 0); - - return (void *) 555; -} - -int -main() -{ - pthread_t t; - void* result = (void*)0; - int mxType = -1; - - assert(pthread_mutexattr_init(&mxAttr) == 0); - - BEGIN_MUTEX_STALLED_ROBUST(mxAttr) - - lockCount = 0; - assert(pthread_mutexattr_settype(&mxAttr, PTHREAD_MUTEX_RECURSIVE) == 0); - assert(pthread_mutexattr_gettype(&mxAttr, &mxType) == 0); - assert(mxType == PTHREAD_MUTEX_RECURSIVE); - - assert(pthread_mutex_init(&mutex, &mxAttr) == 0); - - assert(pthread_create(&t, NULL, locker, NULL) == 0); - - assert(pthread_join(t, &result) == 0); - assert((int)(size_t)result == 555); - - assert(lockCount == 2); - - assert(pthread_mutex_destroy(&mutex) == 0); - - END_MUTEX_STALLED_ROBUST(mxAttr) - - assert(pthread_mutexattr_destroy(&mxAttr) == 0); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex6rs.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex6rs.c deleted file mode 100644 index c38b009..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex6rs.c +++ /dev/null @@ -1,87 +0,0 @@ -/* - * mutex6rs.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Tests PTHREAD_MUTEX_RECURSIVE static mutex type. - * Thread locks mutex twice (recursive lock). - * Both locks and unlocks should succeed. - * - * Depends on API functions: - * pthread_create() - * pthread_join() - * pthread_mutexattr_init() - * pthread_mutexattr_destroy() - * pthread_mutexattr_settype() - * pthread_mutexattr_gettype() - * pthread_mutex_init() - * pthread_mutex_destroy() - * pthread_mutex_lock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -static int lockCount = 0; - -static pthread_mutex_t mutex = PTHREAD_RECURSIVE_MUTEX_INITIALIZER; - -void * locker(void * arg) -{ - assert(pthread_mutex_lock(&mutex) == 0); - lockCount++; - assert(pthread_mutex_lock(&mutex) == 0); - lockCount++; - assert(pthread_mutex_unlock(&mutex) == 0); - assert(pthread_mutex_unlock(&mutex) == 0); - - return (void *) 555; -} - -int -main() -{ - pthread_t t; - void* result = (void*)0; - - assert(mutex == PTHREAD_RECURSIVE_MUTEX_INITIALIZER); - - assert(pthread_create(&t, NULL, locker, NULL) == 0); - - assert(pthread_join(t, &result) == 0); - assert((int)(size_t)result == 555); - - assert(lockCount == 2); - - assert(pthread_mutex_destroy(&mutex) == 0); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex6s.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex6s.c deleted file mode 100644 index 44638f2..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex6s.c +++ /dev/null @@ -1,94 +0,0 @@ -/* - * mutex6s.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test the default (type not set) static mutex type. - * Should be the same as PTHREAD_MUTEX_NORMAL. - * Thread locks mutex twice (recursive lock). - * Locking thread should deadlock on second attempt. - * - * Depends on API functions: - * pthread_mutex_lock() - * pthread_mutex_trylock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -static int lockCount = 0; - -static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; - -void * locker(void * arg) -{ - assert(pthread_mutex_lock(&mutex) == 0); - lockCount++; - - /* Should wait here (deadlocked) */ - assert(pthread_mutex_lock(&mutex) == 0); - lockCount++; - assert(pthread_mutex_unlock(&mutex) == 0); - - return 0; -} - -int -main() -{ - pthread_t t; - - assert(mutex == PTHREAD_MUTEX_INITIALIZER); - - assert(pthread_create(&t, NULL, locker, NULL) == 0); - - while (lockCount < 1) - { - Sleep(1); - } - - assert(lockCount == 1); - - /* - * Should succeed even though we don't own the lock - * because FAST mutexes don't check ownership. - */ - assert(pthread_mutex_unlock(&mutex) == 0); - - while (lockCount < 2) - { - Sleep(1); - } - - assert(lockCount == 2); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex7.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex7.c deleted file mode 100644 index 2385e01..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex7.c +++ /dev/null @@ -1,80 +0,0 @@ -/* - * mutex7.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test the default (type not set) mutex type. - * Should be the same as PTHREAD_MUTEX_NORMAL. - * Thread locks then trylocks mutex (attempted recursive lock). - * The thread should lock first time and EBUSY second time. - * - * Depends on API functions: - * pthread_mutex_lock() - * pthread_mutex_trylock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -static int lockCount = 0; - -static pthread_mutex_t mutex; - -void * locker(void * arg) -{ - assert(pthread_mutex_lock(&mutex) == 0); - lockCount++; - assert(pthread_mutex_trylock(&mutex) == EBUSY); - lockCount++; - assert(pthread_mutex_unlock(&mutex) == 0); - assert(pthread_mutex_unlock(&mutex) == 0); - - return 0; -} - -int -main() -{ - pthread_t t; - - assert(pthread_mutex_init(&mutex, NULL) == 0); - - assert(pthread_create(&t, NULL, locker, NULL) == 0); - - while (lockCount < 2) - { - Sleep(1); - } - - assert(lockCount == 2); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex7e.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex7e.c deleted file mode 100644 index ea6279c..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex7e.c +++ /dev/null @@ -1,103 +0,0 @@ -/* - * mutex7e.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Tests PTHREAD_MUTEX_ERRORCHECK mutex type. - * Thread locks and then trylocks mutex (attempted recursive lock). - * Trylock should fail with an EBUSY error. - * The second unlock attempt should fail with an EPERM error. - * - * Depends on API functions: - * pthread_create() - * pthread_join() - * pthread_mutexattr_init() - * pthread_mutexattr_destroy() - * pthread_mutexattr_settype() - * pthread_mutexattr_gettype() - * pthread_mutex_init() - * pthread_mutex_destroy() - * pthread_mutex_lock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -static int lockCount; - -static pthread_mutex_t mutex; -static pthread_mutexattr_t mxAttr; - -void * locker(void * arg) -{ - assert(pthread_mutex_lock(&mutex) == 0); - lockCount++; - assert(pthread_mutex_trylock(&mutex) == EBUSY); - lockCount++; - assert(pthread_mutex_unlock(&mutex) == 0); - - return (void *) 555; -} - -int -main() -{ - pthread_t t; - void* result = (void*)0; - int mxType = -1; - - assert(pthread_mutexattr_init(&mxAttr) == 0); - - BEGIN_MUTEX_STALLED_ROBUST(mxAttr) - - lockCount = 0; - assert(pthread_mutexattr_settype(&mxAttr, PTHREAD_MUTEX_ERRORCHECK) == 0); - assert(pthread_mutexattr_gettype(&mxAttr, &mxType) == 0); - assert(mxType == PTHREAD_MUTEX_ERRORCHECK); - - assert(pthread_mutex_init(&mutex, &mxAttr) == 0); - - assert(pthread_create(&t, NULL, locker, NULL) == 0); - - assert(pthread_join(t, &result) == 0); - assert((int)(size_t)result == 555); - - assert(lockCount == 2); - - assert(pthread_mutex_destroy(&mutex) == 0); - - END_MUTEX_STALLED_ROBUST(mxAttr) - - assert(pthread_mutexattr_destroy(&mxAttr) == 0); - - return 0; -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex7n.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex7n.c deleted file mode 100644 index d8f339f..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex7n.c +++ /dev/null @@ -1,98 +0,0 @@ -/* - * mutex7n.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Tests PTHREAD_MUTEX_NORMAL mutex type. - * Thread locks then trylocks mutex (attempted recursive lock). - * The thread should lock first time and EBUSY second time. - * - * Depends on API functions: - * pthread_create() - * pthread_mutexattr_init() - * pthread_mutexattr_settype() - * pthread_mutexattr_gettype() - * pthread_mutex_init() - * pthread_mutex_lock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -static int lockCount; - -static pthread_mutex_t mutex; -static pthread_mutexattr_t mxAttr; - -void * locker(void * arg) -{ - assert(pthread_mutex_lock(&mutex) == 0); - lockCount++; - assert(pthread_mutex_trylock(&mutex) == EBUSY); - lockCount++; - assert(pthread_mutex_unlock(&mutex) == 0); - - return (void *) 555; -} - -int -main() -{ - pthread_t t; - int mxType = -1; - - assert(pthread_mutexattr_init(&mxAttr) == 0); - - BEGIN_MUTEX_STALLED_ROBUST(mxAttr) - - lockCount = 0; - assert(pthread_mutexattr_settype(&mxAttr, PTHREAD_MUTEX_NORMAL) == 0); - assert(pthread_mutexattr_gettype(&mxAttr, &mxType) == 0); - assert(mxType == PTHREAD_MUTEX_NORMAL); - - assert(pthread_mutex_init(&mutex, &mxAttr) == 0); - - assert(pthread_create(&t, NULL, locker, NULL) == 0); - - while (lockCount < 2) - { - Sleep(1); - } - - assert(lockCount == 2); - - END_MUTEX_STALLED_ROBUST(mxAttr) - - assert(pthread_mutexattr_destroy(&mxAttr) == 0); - - return 0; -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex7r.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex7r.c deleted file mode 100644 index 3f667ad..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex7r.c +++ /dev/null @@ -1,102 +0,0 @@ -/* - * mutex7r.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Tests PTHREAD_MUTEX_RECURSIVE mutex type. - * Thread locks mutex then trylocks mutex (recursive lock twice). - * Both locks and unlocks should succeed. - * - * Depends on API functions: - * pthread_create() - * pthread_join() - * pthread_mutexattr_init() - * pthread_mutexattr_destroy() - * pthread_mutexattr_settype() - * pthread_mutexattr_gettype() - * pthread_mutex_init() - * pthread_mutex_destroy() - * pthread_mutex_lock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -static int lockCount; - -static pthread_mutex_t mutex; -static pthread_mutexattr_t mxAttr; - -void * locker(void * arg) -{ - assert(pthread_mutex_lock(&mutex) == 0); - lockCount++; - assert(pthread_mutex_trylock(&mutex) == 0); - lockCount++; - assert(pthread_mutex_unlock(&mutex) == 0); - assert(pthread_mutex_unlock(&mutex) == 0); - - return (void *) 555; -} - -int -main() -{ - pthread_t t; - void* result = (void*)0; - int mxType = -1; - - assert(pthread_mutexattr_init(&mxAttr) == 0); - - BEGIN_MUTEX_STALLED_ROBUST(mxAttr) - - lockCount = 0; - assert(pthread_mutexattr_settype(&mxAttr, PTHREAD_MUTEX_RECURSIVE) == 0); - assert(pthread_mutexattr_gettype(&mxAttr, &mxType) == 0); - assert(mxType == PTHREAD_MUTEX_RECURSIVE); - - assert(pthread_mutex_init(&mutex, &mxAttr) == 0); - - assert(pthread_create(&t, NULL, locker, NULL) == 0); - - assert(pthread_join(t, &result) == 0); - assert((int)(size_t)result == 555); - - assert(lockCount == 2); - - assert(pthread_mutex_destroy(&mutex) == 0); - - END_MUTEX_STALLED_ROBUST(mxAttr) - - assert(pthread_mutexattr_destroy(&mxAttr) == 0); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex8.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex8.c deleted file mode 100644 index 055196e..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex8.c +++ /dev/null @@ -1,82 +0,0 @@ -/* - * mutex8.c - * - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test the default (type not set) mutex type exercising timedlock. - * Thread locks mutex, another thread timedlocks the mutex. - * Timed thread should timeout. - * - * Depends on API functions: - * pthread_mutex_lock() - * pthread_mutex_timedlock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -static int lockCount = 0; - -static pthread_mutex_t mutex; - -void * locker(void * arg) -{ - struct timespec abstime, reltime = { 1, 0 }; - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - assert(pthread_mutex_timedlock(&mutex, &abstime) == ETIMEDOUT); - - lockCount++; - - return 0; -} - -int -main() -{ - pthread_t t; - - assert(pthread_mutex_init(&mutex, NULL) == 0); - - assert(pthread_mutex_lock(&mutex) == 0); - - assert(pthread_create(&t, NULL, locker, NULL) == 0); - - while (lockCount < 1) - { - Sleep(1); - } - - assert(lockCount == 1); - - assert(pthread_mutex_unlock(&mutex) == 0); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex8e.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex8e.c deleted file mode 100644 index 8f59d5a..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex8e.c +++ /dev/null @@ -1,100 +0,0 @@ -/* - * mutex8e.c - * - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Tests PTHREAD_MUTEX_ERRORCHECK mutex type exercising timedlock. - * Thread locks mutex, another thread timedlocks the mutex. - * Timed thread should timeout. - * - * Depends on API functions: - * pthread_create() - * pthread_mutexattr_init() - * pthread_mutexattr_destroy() - * pthread_mutexattr_settype() - * pthread_mutexattr_gettype() - * pthread_mutex_init() - * pthread_mutex_destroy() - * pthread_mutex_lock() - * pthread_mutex_timedlock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -static int lockCount; - -static pthread_mutex_t mutex; -static pthread_mutexattr_t mxAttr; - -void * locker(void * arg) -{ - struct timespec abstime, reltime = { 1, 0 }; - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - assert(pthread_mutex_timedlock(&mutex, &abstime) == ETIMEDOUT); - - lockCount++; - - return 0; -} - -int -main() -{ - pthread_t t; - int mxType = -1; - - assert(pthread_mutexattr_init(&mxAttr) == 0); - - BEGIN_MUTEX_STALLED_ROBUST(mxAttr) - - lockCount = 0; - assert(pthread_mutexattr_settype(&mxAttr, PTHREAD_MUTEX_ERRORCHECK) == 0); - assert(pthread_mutexattr_gettype(&mxAttr, &mxType) == 0); - assert(mxType == PTHREAD_MUTEX_ERRORCHECK); - - assert(pthread_mutex_init(&mutex, &mxAttr) == 0); - - assert(pthread_mutex_lock(&mutex) == 0); - - assert(pthread_create(&t, NULL, locker, NULL) == 0); - - Sleep(2000); - - assert(lockCount == 1); - - assert(pthread_mutex_unlock(&mutex) == 0); - - END_MUTEX_STALLED_ROBUST(mxAttr) - - return 0; -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex8n.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex8n.c deleted file mode 100644 index 96ea2e9..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex8n.c +++ /dev/null @@ -1,103 +0,0 @@ -/* - * mutex8n.c - * - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Tests PTHREAD_MUTEX_NORMAL mutex type exercising timedlock. - * Thread locks mutex, another thread timedlocks the mutex. - * Timed thread should timeout. - * - * Depends on API functions: - * pthread_create() - * pthread_mutexattr_init() - * pthread_mutexattr_destroy() - * pthread_mutexattr_settype() - * pthread_mutexattr_gettype() - * pthread_mutex_init() - * pthread_mutex_destroy() - * pthread_mutex_lock() - * pthread_mutex_timedlock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -static int lockCount; - -static pthread_mutex_t mutex; -static pthread_mutexattr_t mxAttr; - -void * locker(void * arg) -{ - struct timespec abstime, reltime = { 1, 0 }; - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - assert(pthread_mutex_timedlock(&mutex, &abstime) == ETIMEDOUT); - - lockCount++; - - return 0; -} - -int -main() -{ - pthread_t t; - int mxType = -1; - - assert(pthread_mutexattr_init(&mxAttr) == 0); - - BEGIN_MUTEX_STALLED_ROBUST(mxAttr) - - lockCount = 0; - assert(pthread_mutexattr_settype(&mxAttr, PTHREAD_MUTEX_NORMAL) == 0); - assert(pthread_mutexattr_gettype(&mxAttr, &mxType) == 0); - assert(mxType == PTHREAD_MUTEX_NORMAL); - - assert(pthread_mutex_init(&mutex, &mxAttr) == 0); - - assert(pthread_mutex_lock(&mutex) == 0); - - assert(pthread_create(&t, NULL, locker, NULL) == 0); - - while (lockCount < 1) - { - Sleep(1); - } - - assert(lockCount == 1); - - assert(pthread_mutex_unlock(&mutex) == 0); - - END_MUTEX_STALLED_ROBUST(mxAttr) - - return 0; -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex8r.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex8r.c deleted file mode 100644 index e811cd8..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/mutex8r.c +++ /dev/null @@ -1,100 +0,0 @@ -/* - * mutex8r.c - * - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Tests PTHREAD_MUTEX_RECURSIVE mutex type exercising timedlock. - * Thread locks mutex, another thread timedlocks the mutex. - * Timed thread should timeout. - * - * Depends on API functions: - * pthread_create() - * pthread_mutexattr_init() - * pthread_mutexattr_destroy() - * pthread_mutexattr_settype() - * pthread_mutexattr_gettype() - * pthread_mutex_init() - * pthread_mutex_destroy() - * pthread_mutex_lock() - * pthread_mutex_timedlock() - * pthread_mutex_unlock() - */ - -#include "test.h" - -static int lockCount; - -static pthread_mutex_t mutex; -static pthread_mutexattr_t mxAttr; - -void * locker(void * arg) -{ - struct timespec abstime, reltime = { 1, 0 }; - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - assert(pthread_mutex_timedlock(&mutex, &abstime) == ETIMEDOUT); - - lockCount++; - - return 0; -} - -int -main() -{ - pthread_t t; - int mxType = -1; - - assert(pthread_mutexattr_init(&mxAttr) == 0); - - BEGIN_MUTEX_STALLED_ROBUST(mxAttr) - - lockCount = 0; - assert(pthread_mutexattr_settype(&mxAttr, PTHREAD_MUTEX_RECURSIVE) == 0); - assert(pthread_mutexattr_gettype(&mxAttr, &mxType) == 0); - assert(mxType == PTHREAD_MUTEX_RECURSIVE); - - assert(pthread_mutex_init(&mutex, &mxAttr) == 0); - - assert(pthread_mutex_lock(&mutex) == 0); - - assert(pthread_create(&t, NULL, locker, NULL) == 0); - - Sleep(2000); - - assert(lockCount == 1); - - assert(pthread_mutex_unlock(&mutex) == 0); - - END_MUTEX_STALLED_ROBUST(mxAttr) - - return 0; -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/name_np1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/name_np1.c deleted file mode 100644 index 61bbdef..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/name_np1.c +++ /dev/null @@ -1,102 +0,0 @@ -/* - * name_np1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Description: - * Create a thread and give it a name. - * - * The MSVC version should display the thread name in the MSVS debugger. - * Confirmed for MSVS10 Express: - * - * VCExpress name_np1.exe /debugexe - * - * did indeed display the thread name in the trace output. - * - * Depends on API functions: - * pthread_create - * pthread_join - * pthread_self - * pthread_getname_np - * pthread_setname_np - * pthread_barrier_init - * pthread_barrier_wait - */ - -#include "test.h" - -static int washere = 0; -static pthread_barrier_t sync; -#if defined (__PTW32_COMPATIBILITY_BSD) -static int seqno = 0; -#endif - -void * func(void * arg) -{ - char buf[32]; - pthread_t self = pthread_self(); - - washere = 1; - pthread_barrier_wait(&sync); - assert(pthread_getname_np(self, buf, 32) == 0); - printf("Thread name: %s\n", buf); - pthread_barrier_wait(&sync); - - return 0; -} - -int -main() -{ - pthread_t t; - - assert(pthread_barrier_init(&sync, NULL, 2) == 0); - - assert(pthread_create(&t, NULL, func, NULL) == 0); -#if defined (__PTW32_COMPATIBILITY_BSD) - seqno++; - assert(pthread_setname_np(t, "MyThread%d", (void *)&seqno) == 0); -#elif defined (__PTW32_COMPATIBILITY_TRU64) - assert(pthread_setname_np(t, "MyThread1", NULL) == 0); -#else - assert(pthread_setname_np(t, "MyThread1") == 0); -#endif - pthread_barrier_wait(&sync); - pthread_barrier_wait(&sync); - - assert(pthread_join(t, NULL) == 0); - - assert(pthread_barrier_destroy(&sync) == 0); - - assert(washere == 1); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/name_np2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/name_np2.c deleted file mode 100644 index 4c098ec..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/name_np2.c +++ /dev/null @@ -1,107 +0,0 @@ -/* - * name_np2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Description: - * Create a thread and give it a name. - * - * The MSVC version should display the thread name in the MSVS debugger. - * Confirmed for MSVS10 Express: - * - * VCExpress name_np1.exe /debugexe - * - * did indeed display the thread name in the trace output. - * - * Depends on API functions: - * pthread_create - * pthread_join - * pthread_self - * pthread_attr_init - * pthread_getname_np - * pthread_attr_setname_np - * pthread_barrier_init - * pthread_barrier_wait - */ - -#include "test.h" - -static int washere = 0; -static pthread_attr_t attr; -static pthread_barrier_t sync; -#if defined (__PTW32_COMPATIBILITY_BSD) -static int seqno = 0; -#endif - -void * func(void * arg) -{ - char buf[32]; - pthread_t self = pthread_self(); - - washere = 1; - pthread_barrier_wait(&sync); - assert(pthread_getname_np(self, buf, 32) == 0); - printf("Thread name: %s\n", buf); - pthread_barrier_wait(&sync); - - return 0; -} - -int -main() -{ - pthread_t t; - - assert(pthread_attr_init(&attr) == 0); -#if defined (__PTW32_COMPATIBILITY_BSD) - seqno++; - assert(pthread_attr_setname_np(&attr, "MyThread%d", (void *)&seqno) == 0); -#elif defined (__PTW32_COMPATIBILITY_TRU64) - assert(pthread_attr_setname_np(&attr, "MyThread1", NULL) == 0); -#else - assert(pthread_attr_setname_np(&attr, "MyThread1") == 0); -#endif - - assert(pthread_barrier_init(&sync, NULL, 2) == 0); - - assert(pthread_create(&t, &attr, func, NULL) == 0); - pthread_barrier_wait(&sync); - pthread_barrier_wait(&sync); - - assert(pthread_join(t, NULL) == 0); - - assert(pthread_barrier_destroy(&sync) == 0); - assert(pthread_attr_destroy(&attr) == 0); - - assert(washere == 1); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/once1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/once1.c deleted file mode 100644 index 8a9ab55..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/once1.c +++ /dev/null @@ -1,75 +0,0 @@ -/* - * once1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Create a static pthread_once and test that it calls myfunc once. - * - * Depends on API functions: - * pthread_once() - * pthread_create() - */ - -#include "test.h" - -pthread_once_t once = PTHREAD_ONCE_INIT; - -static int washere = 0; - -void -myfunc(void) -{ - washere++; -} - -void * -mythread(void * arg) -{ - assert(pthread_once(&once, myfunc) == 0); - - return 0; -} - -int -main() -{ - pthread_t t1, t2; - - assert(pthread_create(&t1, NULL, mythread, NULL) == 0); - - assert(pthread_create(&t2, NULL, mythread, NULL) == 0); - - Sleep(2000); - - assert(washere == 1); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/once2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/once2.c deleted file mode 100644 index f8243af..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/once2.c +++ /dev/null @@ -1,114 +0,0 @@ -/* - * once2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Create several static pthread_once objects and channel several threads - * through each. - * - * Depends on API functions: - * pthread_once() - * pthread_create() - */ - -#include "test.h" - -#define NUM_THREADS 100 /* Targeting each once control */ -#define NUM_ONCE 10 - -pthread_once_t o = PTHREAD_ONCE_INIT; -pthread_once_t once[NUM_ONCE]; - -typedef struct { - int i; - CRITICAL_SECTION cs; -} sharedInt_t; - -static sharedInt_t numOnce; -static sharedInt_t numThreads; - -void -myfunc(void) -{ - EnterCriticalSection(&numOnce.cs); - numOnce.i++; - LeaveCriticalSection(&numOnce.cs); - /* Simulate slow once routine so that following threads pile up behind it */ - Sleep(100); -} - -void * -mythread(void * arg) -{ - assert(pthread_once(&once[(int)(size_t)arg], myfunc) == 0); - EnterCriticalSection(&numThreads.cs); - numThreads.i++; - LeaveCriticalSection(&numThreads.cs); - return (void*)(size_t)0; -} - -int -main() -{ - pthread_t t[NUM_THREADS][NUM_ONCE]; - int i, j; - - memset(&numOnce, 0, sizeof(sharedInt_t)); - memset(&numThreads, 0, sizeof(sharedInt_t)); - - InitializeCriticalSection(&numThreads.cs); - InitializeCriticalSection(&numOnce.cs); - - for (j = 0; j < NUM_ONCE; j++) - { - once[j] = o; - - for (i = 0; i < NUM_THREADS; i++) - { - /* GCC build: create was failing with EAGAIN after 790 threads */ - while (0 != pthread_create(&t[i][j], NULL, mythread, (void *)(size_t)j)) - sched_yield(); - } - } - - for (j = 0; j < NUM_ONCE; j++) - for (i = 0; i < NUM_THREADS; i++) - if (pthread_join(t[i][j], NULL) != 0) - printf("Join failed for [thread,once] = [%d,%d]\n", i, j); - - assert(numOnce.i == NUM_ONCE); - assert(numThreads.i == NUM_THREADS * NUM_ONCE); - - DeleteCriticalSection(&numOnce.cs); - DeleteCriticalSection(&numThreads.cs); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/once3.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/once3.c deleted file mode 100644 index 54073ec..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/once3.c +++ /dev/null @@ -1,147 +0,0 @@ -/* - * once3.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Create several pthread_once objects and channel several threads - * through each. Make the init_routine cancelable and cancel them with - * waiters waiting. - * - * Depends on API functions: - * pthread_once() - * pthread_create() - * pthread_testcancel() - * pthread_cancel() - * pthread_once() - */ - -/* #define ASSERT_TRACE */ - -#include "test.h" - -#define NUM_THREADS 100 /* Targeting each once control */ -#define NUM_ONCE 10 - -static pthread_once_t o = PTHREAD_ONCE_INIT; -static pthread_once_t once[NUM_ONCE]; - -typedef struct { - int i; - CRITICAL_SECTION cs; -} sharedInt_t; - -static sharedInt_t numOnce; -static sharedInt_t numThreads; - -void -myfunc(void) -{ - EnterCriticalSection(&numOnce.cs); - numOnce.i++; - assert(numOnce.i > 0); - LeaveCriticalSection(&numOnce.cs); - /* Simulate slow once routine so that following threads pile up behind it */ - Sleep(10); - /* Test for cancellation late so we're sure to have waiters. */ - pthread_testcancel(); -} - -void * -mythread(void * arg) -{ - /* - * Cancel every thread. These threads are deferred cancelable only, so - * this thread will see it only when it performs the once routine (my_func). - * The result will be that every thread eventually cancels only when it - * becomes the new 'once' thread. - */ - assert(pthread_cancel(pthread_self()) == 0); - /* - * Now we block on the 'once' control. - */ - assert(pthread_once(&once[(int)(size_t)arg], myfunc) == 0); - /* - * We should never get to here. - */ - EnterCriticalSection(&numThreads.cs); - numThreads.i++; - LeaveCriticalSection(&numThreads.cs); - return (void*)(size_t)0; -} - -int -main() -{ - pthread_t t[NUM_THREADS][NUM_ONCE]; - int i, j; - -#if defined (__PTW32_CONFIG_MSVC6) && defined(__PTW32_CLEANUP_CXX) - puts("If this test fails or hangs, rebuild the library with /EHa instead of /EHs."); - puts("(This is a known issue with Microsoft VC++6.0.)"); - fflush(stdout); -#endif - - memset(&numOnce, 0, sizeof(sharedInt_t)); - memset(&numThreads, 0, sizeof(sharedInt_t)); - - InitializeCriticalSection(&numThreads.cs); - InitializeCriticalSection(&numOnce.cs); - - for (j = 0; j < NUM_ONCE; j++) - { - once[j] = o; - - for (i = 0; i < NUM_THREADS; i++) - { - /* GCC build: create was failing with EAGAIN after 790 threads */ - while (0 != pthread_create(&t[i][j], NULL, mythread, (void *)(size_t)j)) - sched_yield(); - } - } - - for (j = 0; j < NUM_ONCE; j++) - for (i = 0; i < NUM_THREADS; i++) - if (pthread_join(t[i][j], NULL) != 0) - printf("Join failed for [thread,once] = [%d,%d]\n", i, j); - - /* - * All threads will cancel, none will return normally from - * pthread_once and so numThreads should never be incremented. However, - * numOnce should be incremented by every thread (NUM_THREADS*NUM_ONCE). - */ - assert(numOnce.i == NUM_ONCE * NUM_THREADS); - assert(numThreads.i == 0); - - DeleteCriticalSection(&numOnce.cs); - DeleteCriticalSection(&numThreads.cs); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/once4.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/once4.c deleted file mode 100644 index af8d22c..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/once4.c +++ /dev/null @@ -1,200 +0,0 @@ -/* - * once4.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Create several pthread_once objects and channel several threads - * through each. Make the init_routine cancelable and cancel them - * waiters waiting. Vary the priorities. - * - * Depends on API functions: - * pthread_once() - * pthread_create() - * pthread_testcancel() - * pthread_cancel() - * pthread_once() - */ - -#include "test.h" - -#define NUM_THREADS 100 /* Targeting each once control */ -#define NUM_ONCE 10 - -pthread_once_t o = PTHREAD_ONCE_INIT; -pthread_once_t once[NUM_ONCE]; - -typedef struct { - int i; - CRITICAL_SECTION cs; -} sharedInt_t; - -static sharedInt_t numOnce; -static sharedInt_t numThreads; - -typedef struct { - int threadnum; - int oncenum; - int myPrio; - HANDLE w32Thread; -} bag_t; - -static bag_t threadbag[NUM_THREADS][NUM_ONCE]; - -CRITICAL_SECTION print_lock; - -void -mycleanupfunc(void * arg) -{ - bag_t * bag = (bag_t *) arg; - EnterCriticalSection(&print_lock); - /* once thrd prio error */ - printf("%4d %4d %4d %4d\n", - bag->oncenum, - bag->threadnum, - bag->myPrio, - bag->myPrio - GetThreadPriority(bag->w32Thread)); - LeaveCriticalSection(&print_lock); -} - -void -myinitfunc(void) -{ - EnterCriticalSection(&numOnce.cs); - numOnce.i++; - LeaveCriticalSection(&numOnce.cs); - /* Simulate slow once routine so that following threads pile up behind it */ - Sleep(10); - /* test for cancellation late so we're sure to have waiters. */ - pthread_testcancel(); -} - -void * -mythread(void * arg) -{ - bag_t * bag = (bag_t *) arg; - struct sched_param param; - - /* - * Cancel every thread. These threads are deferred cancelable only, so - * only the thread performing the init_routine will see it (there are - * no other cancellation points here). The result will be that every thread - * eventually cancels only when it becomes the new initter. - */ - pthread_t self = pthread_self(); - bag->w32Thread = pthread_getw32threadhandle_np(self); - /* - * Set priority between -2 and 2 inclusive. - */ - bag->myPrio = (bag->threadnum % 5) - 2; - param.sched_priority = bag->myPrio; - pthread_setschedparam(self, SCHED_OTHER, ¶m); - - /* Trigger a cancellation at the next cancellation point in this thread */ - pthread_cancel(self); -#if 0 - pthread_cleanup_push(mycleanupfunc, arg); - assert(pthread_once(&once[bag->oncenum], myinitfunc) == 0); - pthread_cleanup_pop(1); -#else - assert(pthread_once(&once[bag->oncenum], myinitfunc) == 0); -#endif - EnterCriticalSection(&numThreads.cs); - numThreads.i++; - LeaveCriticalSection(&numThreads.cs); - return 0; -} - -int -main() -{ - pthread_t t[NUM_THREADS][NUM_ONCE]; - int i, j; - -#if defined (__PTW32_CONFIG_MSVC6) && defined(__PTW32_CLEANUP_CXX) - puts("If this test fails or hangs, rebuild the library with /EHa instead of /EHs."); - puts("(This is a known issue with Microsoft VC++6.0.)"); - fflush(stdout); -#endif - - memset(&numOnce, 0, sizeof(sharedInt_t)); - memset(&numThreads, 0, sizeof(sharedInt_t)); - - InitializeCriticalSection(&print_lock); - InitializeCriticalSection(&numThreads.cs); - InitializeCriticalSection(&numOnce.cs); - -#if 0 - /* once thrd prio change */ - printf("once thrd prio error\n"); -#endif - - /* - * Set the priority class to realtime - otherwise normal - * Windows random priority boosting will obscure any problems. - */ - SetPriorityClass(GetCurrentProcess(), REALTIME_PRIORITY_CLASS); - /* Set main thread to lower prio than threads */ - SetThreadPriority(GetCurrentThread(), -2); - - for (j = 0; j < NUM_ONCE; j++) - { - once[j] = o; - - for (i = 0; i < NUM_THREADS; i++) - { - bag_t * bag = &threadbag[i][j]; - bag->threadnum = i; - bag->oncenum = j; - /* GCC build: create was failing with EAGAIN after 790 threads */ - while (0 != pthread_create(&t[i][j], NULL, mythread, (void *)bag)) - sched_yield(); - } - } - - for (j = 0; j < NUM_ONCE; j++) - for (i = 0; i < NUM_THREADS; i++) - if (pthread_join(t[i][j], NULL) != 0) - printf("Join failed for [thread,once] = [%d,%d]\n", i, j); - - /* - * All threads will cancel, none will return normally from - * pthread_once and so numThreads should never be incremented. However, - * numOnce should be incremented by every thread (NUM_THREADS*NUM_ONCE). - */ - assert(numOnce.i == NUM_ONCE * NUM_THREADS); - assert(numThreads.i == 0); - - DeleteCriticalSection(&numOnce.cs); - DeleteCriticalSection(&numThreads.cs); - DeleteCriticalSection(&print_lock); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/openmp1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/openmp1.c deleted file mode 100644 index b5791e2..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/openmp1.c +++ /dev/null @@ -1,140 +0,0 @@ -#include -#include -#ifdef _OPENMP -# include -#endif -#include - -enum { - Size = 10000 -}; - -const int ShouldSum = (Size-1)*Size/2; - -short Verbose = 1; - -short ThreadOK[3] = {0,0,0}; // Main, Thread1, Thread2 - -// Thread -void *_thread(void* Id) { - int i; - int x[Size]; - -#ifdef _OPENMP -# pragma omp parallel for -#endif - for ( i = 0; i < Size; i++ ) { -#ifdef _OPENMP - if (Verbose && i%1000==0) { - int tid = omp_get_thread_num(); -# pragma omp critical - printf("thread %d : tid %d handles %d\n",(int)(size_t)Id,tid,i); - } -#endif - - x[i] = i; - } - - int Sum=0; - for ( i = 0; i < Size; i++ ) { - Sum += x[i]; - } - if (Verbose) { -#ifdef _OPENMP -# pragma omp critical -#endif - printf("Id %d : %s : %d(should be %d)\n",(int)(size_t)Id, __FUNCTION__, Sum,ShouldSum); - } - if (Sum == ShouldSum) ThreadOK[(int)(size_t)Id] = 1; - return NULL; -} - -// MainThread -void MainThread() { - int i; - -#ifdef _OPENMP -# pragma omp parallel for -#endif - for ( i = 0; i < 4; i++ ) { -#ifdef _OPENMP - int tid = omp_get_thread_num(); -# pragma omp critical - printf("Main : tid %d\n",tid); - _thread((void *)(size_t)tid); -#endif - } - return; -} - -// Comment in/out for checking the effect of multiple threads. -#define SPAWN_THREADS - -// main -int main(int argc, char *argv[]) { - - if (argc>1) Verbose = 1; - -#ifdef _OPENMP - omp_set_nested(-1); - printf("%s%s%s\n", "Nested parallel blocks are ", omp_get_nested()?" ":"NOT ", "supported."); -#endif - - MainThread(); - -#ifdef SPAWN_THREADS - { - pthread_t a_thr; - pthread_t b_thr; - int status; - - printf("%s:%d - %s - a_thr:%p - b_thr:%p\n", - __FILE__,__LINE__,__FUNCTION__,a_thr.p,b_thr.p); - - status = pthread_create(&a_thr, NULL, _thread, (void*) 1 ); - if ( status != 0 ) { - printf("Failed to create thread 1\n"); - return (-1); - } - - status = pthread_create(&b_thr, NULL, _thread, (void*) 2 ); - if ( status != 0 ) { - printf("Failed to create thread 2\n"); - return (-1); - } - - status = pthread_join(a_thr, NULL); - if ( status != 0 ) { - printf("Failed to join thread 1\n"); - return (-1); - } - printf("Joined thread1\n"); - - status = pthread_join(b_thr, NULL); - if ( status != 0 ) { - printf("Failed to join thread 2\n"); - return (-1); - } - printf("Joined thread2\n"); - } -#endif // SPAWN_THREADS - - short OK = 0; - // Check that we have OpenMP before declaring things OK formally. -#ifdef _OPENMP - OK = 1; - { - short i; - for (i=0;i<3;i++) OK &= ThreadOK[i]; - } - if (OK) printf("OMP : All looks good\n"); - else printf("OMP : Error\n"); -#else - printf("OpenMP seems not enabled ...\n"); -#endif - - return OK?0:1; -} - -//g++ -fopenmp omp_test.c -o omp_test -lpthread - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/priority1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/priority1.c deleted file mode 100644 index 7f29a46..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/priority1.c +++ /dev/null @@ -1,170 +0,0 @@ -/* - * File: priority1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test thread priority explicit setting using thread attribute. - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -enum { - PTW32TEST_THREAD_INIT_PRIO = 0, - PTW32TEST_MAXPRIORITIES = 512 -}; - -int minPrio; -int maxPrio; -int validPriorities[PTW32TEST_MAXPRIORITIES]; - -void * -func(void * arg) -{ - int policy; - struct sched_param param; - pthread_t threadID = pthread_self(); - - assert(pthread_getschedparam(threadID, &policy, ¶m) == 0); - assert(policy == SCHED_OTHER); - return (void *) (size_t)(param.sched_priority); -} - -void * -getValidPriorities(void * arg) -{ - int prioSet; - pthread_t threadID = pthread_self(); - HANDLE threadH = pthread_getw32threadhandle_np(threadID); - - printf("Using GetThreadPriority\n"); - printf("%10s %10s\n", "Set value", "Get value"); - - for (prioSet = minPrio; - prioSet <= maxPrio; - prioSet++) - { - /* - * If prioSet is invalid then the threads priority is unchanged - * from the previous value. Make the previous value a known - * one so that we can check later. - */ - if (prioSet < 0) - SetThreadPriority(threadH, THREAD_PRIORITY_LOWEST); - else - SetThreadPriority(threadH, THREAD_PRIORITY_HIGHEST); - SetThreadPriority(threadH, prioSet); - validPriorities[prioSet+(PTW32TEST_MAXPRIORITIES/2)] = GetThreadPriority(threadH); - printf("%10d %10d\n", prioSet, validPriorities[prioSet+(PTW32TEST_MAXPRIORITIES/2)]); - } - - return (void *) 0; -} - - -int -main() -{ - pthread_t t; - pthread_attr_t attr; - void * result = NULL; - struct sched_param param; - - assert((maxPrio = sched_get_priority_max(SCHED_OTHER)) != -1); - assert((minPrio = sched_get_priority_min(SCHED_OTHER)) != -1); - - assert(pthread_create(&t, NULL, getValidPriorities, NULL) == 0); - assert(pthread_join(t, &result) == 0); - - assert(pthread_attr_init(&attr) == 0); - assert(pthread_attr_setinheritsched(&attr, PTHREAD_EXPLICIT_SCHED) == 0); - - /* Set the thread's priority to a known initial value. */ - SetThreadPriority(pthread_getw32threadhandle_np(pthread_self()), - PTW32TEST_THREAD_INIT_PRIO); - - printf("Using pthread_getschedparam\n"); - printf("%10s %10s %10s\n", "Set value", "Get value", "Win priority"); - - for (param.sched_priority = minPrio; - param.sched_priority <= maxPrio; - param.sched_priority++) - { - int prio; - - assert(pthread_attr_setschedparam(&attr, ¶m) == 0); - assert(pthread_create(&t, &attr, func, (void *) &attr) == 0); - - assert((prio = GetThreadPriority(pthread_getw32threadhandle_np(t))) - == validPriorities[param.sched_priority+(PTW32TEST_MAXPRIORITIES/2)]); - - assert(pthread_join(t, &result) == 0); - - assert(param.sched_priority == (int)(size_t) result); - printf("%10d %10d %10d\n", param.sched_priority, (int)(size_t) result, prio); - } - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/priority2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/priority2.c deleted file mode 100644 index 0396314..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/priority2.c +++ /dev/null @@ -1,167 +0,0 @@ -/* - * File: priority2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test thread priority setting after creation. - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -enum { - PTW32TEST_THREAD_INIT_PRIO = 0, - PTW32TEST_MAXPRIORITIES = 512 -}; - -int minPrio; -int maxPrio; -int validPriorities[PTW32TEST_MAXPRIORITIES]; -pthread_barrier_t startBarrier, endBarrier; - -void * func(void * arg) -{ - int policy; - int result; - struct sched_param param; - - result = pthread_barrier_wait(&startBarrier); - assert(result == 0 || result == PTHREAD_BARRIER_SERIAL_THREAD); - assert(pthread_getschedparam(pthread_self(), &policy, ¶m) == 0); - assert(policy == SCHED_OTHER); - result = pthread_barrier_wait(&endBarrier); - assert(result == 0 || result == PTHREAD_BARRIER_SERIAL_THREAD); - return (void *) (size_t)param.sched_priority; -} - - -void * -getValidPriorities(void * arg) -{ - int prioSet; - pthread_t thread = pthread_self(); - HANDLE threadH = pthread_getw32threadhandle_np(thread); - struct sched_param param; - - for (prioSet = minPrio; - prioSet <= maxPrio; - prioSet++) - { - /* - * If prioSet is invalid then the threads priority is unchanged - * from the previous value. Make the previous value a known - * one so that we can check later. - */ - param.sched_priority = prioSet; - assert(pthread_setschedparam(thread, SCHED_OTHER, ¶m) == 0); - validPriorities[prioSet+(PTW32TEST_MAXPRIORITIES/2)] = GetThreadPriority(threadH); - } - - return (void *) 0; -} - - -int -main() -{ - pthread_t t; - void * result = NULL; - int result2; - struct sched_param param; - - assert((maxPrio = sched_get_priority_max(SCHED_OTHER)) != -1); - assert((minPrio = sched_get_priority_min(SCHED_OTHER)) != -1); - - assert(pthread_create(&t, NULL, getValidPriorities, NULL) == 0); - assert(pthread_join(t, &result) == 0); - - assert(pthread_barrier_init(&startBarrier, NULL, 2) == 0); - assert(pthread_barrier_init(&endBarrier, NULL, 2) == 0); - - /* Set the thread's priority to a known initial value. - * If the new priority is invalid then the threads priority - * is unchanged from the previous value. - */ - SetThreadPriority(pthread_getw32threadhandle_np(pthread_self()), - PTW32TEST_THREAD_INIT_PRIO); - - for (param.sched_priority = minPrio; - param.sched_priority <= maxPrio; - param.sched_priority++) - { - assert(pthread_create(&t, NULL, func, NULL) == 0); - assert(pthread_setschedparam(t, SCHED_OTHER, ¶m) == 0); - result2 = pthread_barrier_wait(&startBarrier); - assert(result2 == 0 || result2 == PTHREAD_BARRIER_SERIAL_THREAD); - result2 = pthread_barrier_wait(&endBarrier); - assert(result2 == 0 || result2 == PTHREAD_BARRIER_SERIAL_THREAD); - assert(GetThreadPriority(pthread_getw32threadhandle_np(t)) == - validPriorities[param.sched_priority+(PTW32TEST_MAXPRIORITIES/2)]); - pthread_join(t, &result); - assert(param.sched_priority == (int)(size_t)result); - } - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/reinit1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/reinit1.c deleted file mode 100644 index 81fc4ff..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/reinit1.c +++ /dev/null @@ -1,154 +0,0 @@ -/* - * reinit1.c - * - * Same test as rwlock7.c but loop two or more times reinitialising the library - * each time, to test reinitialisation. We use a rwlock test because rw locks - * use CVs, mutexes and semaphores internally. - * - * rwlock7.c description: - * Hammer on a bunch of rwlocks to test robustness and fairness. - * Printed stats should be roughly even for each thread. - */ - -#include "test.h" -#include - -#ifdef __GNUC__ -#include -#endif - -#define THREADS 5 -#define DATASIZE 7 -#define ITERATIONS 1000000 -#define LOOPS 3 - -/* - * Keep statistics for each thread. - */ -typedef struct thread_tag { - int thread_num; - pthread_t thread_id; - int updates; - int reads; - int changed; - int seed; -} thread_t; - -/* - * Read-write lock and shared data - */ -typedef struct data_tag { - pthread_rwlock_t lock; - int data; - int updates; -} data_t; - -static thread_t threads[THREADS]; -static data_t data[DATASIZE]; - -/* - * Thread start routine that uses read-write locks - */ -void *thread_routine (void *arg) -{ - thread_t *self = (thread_t*)arg; - int iteration; - int element = 0; - int seed = self->seed; - int interval = 1 + rand_r (&seed) % 71; - - self->changed = 0; - - assert(pthread_getunique_np(self->thread_id) == (unsigned __int64)(self->thread_num + 2)); - - for (iteration = 0; iteration < ITERATIONS; iteration++) - { - /* - * Each "self->interval" iterations, perform an - * update operation (write lock instead of read - * lock). - */ - if ((iteration % interval) == 0) - { - assert(pthread_rwlock_wrlock (&data[element].lock) == 0); - data[element].data = self->thread_num; - data[element].updates++; - self->updates++; - interval = 1 + rand_r (&seed) % 71; - assert(pthread_rwlock_unlock (&data[element].lock) == 0); - } else { - /* - * Look at the current data element to see whether - * the current thread last updated it. Count the - * times, to report later. - */ - assert(pthread_rwlock_rdlock (&data[element].lock) == 0); - - self->reads++; - - if (data[element].data != self->thread_num) - { - self->changed++; - interval = 1 + self->changed % 71; - } - - assert(pthread_rwlock_unlock (&data[element].lock) == 0); - } - - element = (element + 1) % DATASIZE; - - } - - return NULL; -} - -int -main (int argc, char *argv[]) -{ - int count; - int data_count; - int reinit_count; - int seed = 1; - - for (reinit_count = 0; reinit_count < LOOPS; reinit_count++) - { - /* - * Initialize the shared data. - */ - for (data_count = 0; data_count < DATASIZE; data_count++) - { - data[data_count].data = 0; - data[data_count].updates = 0; - - assert(pthread_rwlock_init (&data[data_count].lock, NULL) == 0); - } - - /* - * Create THREADS threads to access shared data. - */ - for (count = 0; count < THREADS; count++) - { - threads[count].thread_num = count; - threads[count].updates = 0; - threads[count].reads = 0; - threads[count].seed = 1 + rand_r (&seed) % 71; - - assert(pthread_create (&threads[count].thread_id, - NULL, thread_routine, (void*)(size_t)&threads[count]) == 0); - } - - /* - * Wait for all threads to complete, and collect - * statistics. - */ - for (count = 0; count < THREADS; count++) - { - assert(pthread_join (threads[count].thread_id, NULL) == 0); - } - - pthread_win32_process_detach_np(); - pthread_win32_process_attach_np(); - } - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/reuse1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/reuse1.c deleted file mode 100644 index ac6158d..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/reuse1.c +++ /dev/null @@ -1,122 +0,0 @@ -/* - * File: reuse1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Confirm that thread reuse works for joined threads. - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -enum { - NUMTHREADS = 100 -}; - -static int washere = 0; - -void * func(void * arg) -{ - washere = 1; - return arg; -} - -int -main() -{ - pthread_t t, - last_t; - pthread_attr_t attr; - void * result = NULL; - int i; - - assert(pthread_attr_init(&attr) == 0);; - assert(pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE) == 0); - - washere = 0; - assert(pthread_create(&t, &attr, func, NULL) == 0); - assert(pthread_join(t, &result) == 0);; - assert((int)(size_t)result == 0); - assert(washere == 1); - last_t = t; - - for (i = 1; i < NUMTHREADS; i++) - { - washere = 0; - assert(pthread_create(&t, &attr, func, (void *)(size_t)i) == 0); - pthread_join(t, &result); - assert((int)(size_t) result == i); - assert(washere == 1); - /* thread IDs should be unique */ - assert(!pthread_equal(t, last_t)); - /* thread struct pointers should be the same */ - assert(t.p == last_t.p); - /* thread handle reuse counter should be different by one */ - assert(t.x == last_t.x+1); - last_t = t; - } - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/reuse2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/reuse2.c deleted file mode 100644 index 33a8fcb..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/reuse2.c +++ /dev/null @@ -1,166 +0,0 @@ -/* - * File: reuse2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test that thread reuse works for detached threads. - * - Analyse thread struct reuse. - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - This test is implementation specific - * because it uses knowledge of internals that should be - * opaque to an application. - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -/* - */ - -enum { - NUMTHREADS = 10000 -}; - - -static long done = 0; - -void * func(void * arg) -{ - sched_yield(); - - InterlockedIncrement(&done); - - return (void *) 0; -} - -int -main() -{ - pthread_t t[NUMTHREADS]; - pthread_attr_t attr; - int i; - unsigned int notUnique = 0, - totalHandles = 0, - reuseMax = 0, - reuseMin = NUMTHREADS; - - assert(pthread_attr_init(&attr) == 0); - assert(pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED) == 0); - - for (i = 0; i < NUMTHREADS; i++) - { - while(pthread_create(&t[i], &attr, func, NULL) != 0) - Sleep(1); - } - - while (NUMTHREADS > InterlockedExchangeAdd((LPLONG)&done, 0L)) - Sleep(100); - - Sleep(100); - - /* - * Analyse reuse by computing min and max number of times pthread_create() - * returned the same pthread_t value. - */ - for (i = 0; i < NUMTHREADS; i++) - { - if (t[i].p != NULL) - { - unsigned int j, thisMax; - - thisMax = t[i].x; - - for (j = i+1; j < NUMTHREADS; j++) - if (t[i].p == t[j].p) - { - if (t[i].x == t[j].x) - notUnique++; - if (thisMax < t[j].x) - thisMax = t[j].x; - t[j].p = NULL; - } - - if (reuseMin > thisMax) - reuseMin = thisMax; - - if (reuseMax < thisMax) - reuseMax = thisMax; - } - } - - for (i = 0; i < NUMTHREADS; i++) - if (t[i].p != NULL) - totalHandles++; - - /* - * pthread_t reuse counts start at 0, so we need to add 1 - * to the max and min values derived above. - */ - printf("For %d total threads:\n", NUMTHREADS); - printf("Non-unique IDs = %d\n", notUnique); - printf("Reuse maximum = %d\n", reuseMax + 1); - printf("Reuse minimum = %d\n", reuseMin + 1); - printf("Total handles = %d\n", totalHandles); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/robust1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/robust1.c deleted file mode 100644 index db597c8..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/robust1.c +++ /dev/null @@ -1,139 +0,0 @@ -/* - * robust1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * For all robust mutex types. - * Thread A locks mutex - * Thread A terminates with no threads waiting on robust mutex - * Thread B acquires (inherits) mutex and unlocks - * Main attempts to lock mutex with unrecovered state. - * - * Depends on API functions: - * pthread_create() - * pthread_join() - * pthread_mutex_init() - * pthread_mutex_lock() - * pthread_mutex_unlock() - * pthread_mutex_destroy() - * pthread_mutexattr_init() - * pthread_mutexattr_setrobust() - * pthread_mutexattr_settype() - * pthread_mutexattr_destroy() - */ - -#include "test.h" - -static int lockCount; - -static pthread_mutex_t mutex; - -void * owner(void * arg) -{ - assert(pthread_mutex_lock(&mutex) == 0); - lockCount++; - - return 0; -} - -void * inheritor(void * arg) -{ - assert(pthread_mutex_lock(&mutex) == EOWNERDEAD); - lockCount++; - assert(pthread_mutex_unlock(&mutex) == 0); - - return 0; -} - -int -main() -{ - pthread_t to, ti; - pthread_mutexattr_t ma; - - assert(pthread_mutexattr_init(&ma) == 0); - assert(pthread_mutexattr_setrobust(&ma, PTHREAD_MUTEX_ROBUST) == 0); - - /* Default (NORMAL) type */ - lockCount = 0; - assert(pthread_mutex_init(&mutex, &ma) == 0); - assert(pthread_create(&to, NULL, owner, NULL) == 0); - assert(pthread_join(to, NULL) == 0); - assert(pthread_create(&ti, NULL, inheritor, NULL) == 0); - assert(pthread_join(ti, NULL) == 0); - assert(lockCount == 2); - assert(pthread_mutex_lock(&mutex) == ENOTRECOVERABLE); - assert(pthread_mutex_unlock(&mutex) == EPERM); - assert(pthread_mutex_destroy(&mutex) == 0); - - /* NORMAL type */ - lockCount = 0; - assert(pthread_mutexattr_settype(&ma, PTHREAD_MUTEX_NORMAL) == 0); - assert(pthread_mutex_init(&mutex, &ma) == 0); - assert(pthread_create(&to, NULL, owner, NULL) == 0); - assert(pthread_join(to, NULL) == 0); - assert(pthread_create(&ti, NULL, inheritor, NULL) == 0); - assert(pthread_join(ti, NULL) == 0); - assert(lockCount == 2); - assert(pthread_mutex_lock(&mutex) == ENOTRECOVERABLE); - assert(pthread_mutex_unlock(&mutex) == EPERM); - assert(pthread_mutex_destroy(&mutex) == 0); - - /* ERRORCHECK type */ - lockCount = 0; - assert(pthread_mutexattr_settype(&ma, PTHREAD_MUTEX_ERRORCHECK) == 0); - assert(pthread_mutex_init(&mutex, &ma) == 0); - assert(pthread_create(&to, NULL, owner, NULL) == 0); - assert(pthread_join(to, NULL) == 0); - assert(pthread_create(&ti, NULL, inheritor, NULL) == 0); - assert(pthread_join(ti, NULL) == 0); - assert(lockCount == 2); - assert(pthread_mutex_lock(&mutex) == ENOTRECOVERABLE); - assert(pthread_mutex_unlock(&mutex) == EPERM); - assert(pthread_mutex_destroy(&mutex) == 0); - - /* RECURSIVE type */ - lockCount = 0; - assert(pthread_mutexattr_settype(&ma, PTHREAD_MUTEX_RECURSIVE) == 0); - assert(pthread_mutex_init(&mutex, &ma) == 0); - assert(pthread_create(&to, NULL, owner, NULL) == 0); - assert(pthread_join(to, NULL) == 0); - assert(pthread_create(&ti, NULL, inheritor, NULL) == 0); - assert(pthread_join(ti, NULL) == 0); - assert(lockCount == 2); - assert(pthread_mutex_lock(&mutex) == ENOTRECOVERABLE); - assert(pthread_mutex_unlock(&mutex) == EPERM); - assert(pthread_mutex_destroy(&mutex) == 0); - - assert(pthread_mutexattr_destroy(&ma) == 0); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/robust2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/robust2.c deleted file mode 100644 index afdd9b9..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/robust2.c +++ /dev/null @@ -1,141 +0,0 @@ -/* - * robust2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * For all robust mutex types. - * Thread A locks mutex - * Thread B blocks on mutex - * Thread A terminates with threads waiting on robust mutex - * Thread B awakes and inherits mutex and unlocks - * Main attempts to lock mutex with unrecovered state. - * - * Depends on API functions: - * pthread_create() - * pthread_join() - * pthread_mutex_init() - * pthread_mutex_lock() - * pthread_mutex_unlock() - * pthread_mutex_destroy() - * pthread_mutexattr_init() - * pthread_mutexattr_setrobust() - * pthread_mutexattr_settype() - * pthread_mutexattr_destroy() - */ - -#include "test.h" - -static int lockCount; - -static pthread_mutex_t mutex; - -void * owner(void * arg) -{ - assert(pthread_mutex_lock(&mutex) == 0); - lockCount++; - Sleep(200); - - return 0; -} - -void * inheritor(void * arg) -{ - assert(pthread_mutex_lock(&mutex) == EOWNERDEAD); - lockCount++; - assert(pthread_mutex_unlock(&mutex) == 0); - - return 0; -} - -int -main() -{ - pthread_t to, ti; - pthread_mutexattr_t ma; - - assert(pthread_mutexattr_init(&ma) == 0); - assert(pthread_mutexattr_setrobust(&ma, PTHREAD_MUTEX_ROBUST) == 0); - - /* Default (NORMAL) type */ - lockCount = 0; - assert(pthread_mutex_init(&mutex, &ma) == 0); - assert(pthread_create(&to, NULL, owner, NULL) == 0); - Sleep(100); - assert(pthread_create(&ti, NULL, inheritor, NULL) == 0); - assert(pthread_join(to, NULL) == 0); - assert(pthread_join(ti, NULL) == 0); - assert(lockCount == 2); - assert(pthread_mutex_lock(&mutex) == ENOTRECOVERABLE); - assert(pthread_mutex_destroy(&mutex) == 0); - - /* NORMAL type */ - lockCount = 0; - assert(pthread_mutexattr_settype(&ma, PTHREAD_MUTEX_NORMAL) == 0); - assert(pthread_mutex_init(&mutex, &ma) == 0); - assert(pthread_create(&to, NULL, owner, NULL) == 0); - Sleep(100); - assert(pthread_create(&ti, NULL, inheritor, NULL) == 0); - assert(pthread_join(to, NULL) == 0); - assert(pthread_join(ti, NULL) == 0); - assert(lockCount == 2); - assert(pthread_mutex_lock(&mutex) == ENOTRECOVERABLE); - assert(pthread_mutex_destroy(&mutex) == 0); - - /* ERRORCHECK type */ - lockCount = 0; - assert(pthread_mutexattr_settype(&ma, PTHREAD_MUTEX_ERRORCHECK) == 0); - assert(pthread_mutex_init(&mutex, &ma) == 0); - assert(pthread_create(&to, NULL, owner, NULL) == 0); - Sleep(100); - assert(pthread_create(&ti, NULL, inheritor, NULL) == 0); - assert(pthread_join(to, NULL) == 0); - assert(pthread_join(ti, NULL) == 0); - assert(lockCount == 2); - assert(pthread_mutex_lock(&mutex) == ENOTRECOVERABLE); - assert(pthread_mutex_destroy(&mutex) == 0); - - /* RECURSIVE type */ - lockCount = 0; - assert(pthread_mutexattr_settype(&ma, PTHREAD_MUTEX_RECURSIVE) == 0); - assert(pthread_mutex_init(&mutex, &ma) == 0); - assert(pthread_create(&to, NULL, owner, NULL) == 0); - Sleep(100); - assert(pthread_create(&ti, NULL, inheritor, NULL) == 0); - assert(pthread_join(to, NULL) == 0); - assert(pthread_join(ti, NULL) == 0); - assert(lockCount == 2); - assert(pthread_mutex_lock(&mutex) == ENOTRECOVERABLE); - assert(pthread_mutex_destroy(&mutex) == 0); - - assert(pthread_mutexattr_destroy(&ma) == 0); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/robust3.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/robust3.c deleted file mode 100644 index ee96eef..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/robust3.c +++ /dev/null @@ -1,147 +0,0 @@ -/* - * robust3.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * For all robust mutex types. - * Thread A locks mutex - * Thread B blocks on mutex - * Thread A terminates with threads waiting on robust mutex - * Thread B awakes and inherits mutex, sets consistent and unlocks - * Main acquires mutex with recovered state. - * - * Depends on API functions: - * pthread_create() - * pthread_join() - * pthread_mutex_init() - * pthread_mutex_lock() - * pthread_mutex_unlock() - * pthread_mutex_consistent() - * pthread_mutex_destroy() - * pthread_mutexattr_init() - * pthread_mutexattr_setrobust() - * pthread_mutexattr_settype() - * pthread_mutexattr_destroy() - */ - -#include "test.h" - -static int lockCount; - -static pthread_mutex_t mutex; - -void * owner(void * arg) -{ - assert(pthread_mutex_lock(&mutex) == 0); - lockCount++; - Sleep(200); - - return 0; -} - -void * inheritor(void * arg) -{ - assert(pthread_mutex_lock(&mutex) == EOWNERDEAD); - lockCount++; - assert(pthread_mutex_consistent(&mutex) == 0); - assert(pthread_mutex_unlock(&mutex) == 0); - - return 0; -} - -int -main() -{ - pthread_t to, ti; - pthread_mutexattr_t ma; - - assert(pthread_mutexattr_init(&ma) == 0); - assert(pthread_mutexattr_setrobust(&ma, PTHREAD_MUTEX_ROBUST) == 0); - - /* Default (NORMAL) type */ - lockCount = 0; - assert(pthread_mutex_init(&mutex, &ma) == 0); - assert(pthread_create(&to, NULL, owner, NULL) == 0); - Sleep(100); - assert(pthread_create(&ti, NULL, inheritor, NULL) == 0); - assert(pthread_join(to, NULL) == 0); - assert(pthread_join(ti, NULL) == 0); - assert(lockCount == 2); - assert(pthread_mutex_lock(&mutex) == 0); - assert(pthread_mutex_unlock(&mutex) == 0); - assert(pthread_mutex_destroy(&mutex) == 0); - - /* NORMAL type */ - lockCount = 0; - assert(pthread_mutexattr_settype(&ma, PTHREAD_MUTEX_NORMAL) == 0); - assert(pthread_mutex_init(&mutex, &ma) == 0); - assert(pthread_create(&to, NULL, owner, NULL) == 0); - Sleep(100); - assert(pthread_create(&ti, NULL, inheritor, NULL) == 0); - assert(pthread_join(to, NULL) == 0); - assert(pthread_join(ti, NULL) == 0); - assert(lockCount == 2); - assert(pthread_mutex_lock(&mutex) == 0); - assert(pthread_mutex_unlock(&mutex) == 0); - assert(pthread_mutex_destroy(&mutex) == 0); - - /* ERRORCHECK type */ - lockCount = 0; - assert(pthread_mutexattr_settype(&ma, PTHREAD_MUTEX_ERRORCHECK) == 0); - assert(pthread_mutex_init(&mutex, &ma) == 0); - assert(pthread_create(&to, NULL, owner, NULL) == 0); - Sleep(100); - assert(pthread_create(&ti, NULL, inheritor, NULL) == 0); - assert(pthread_join(to, NULL) == 0); - assert(pthread_join(ti, NULL) == 0); - assert(lockCount == 2); - assert(pthread_mutex_lock(&mutex) == 0); - assert(pthread_mutex_unlock(&mutex) == 0); - assert(pthread_mutex_destroy(&mutex) == 0); - - /* RECURSIVE type */ - lockCount = 0; - assert(pthread_mutexattr_settype(&ma, PTHREAD_MUTEX_RECURSIVE) == 0); - assert(pthread_mutex_init(&mutex, &ma) == 0); - assert(pthread_create(&to, NULL, owner, NULL) == 0); - Sleep(100); - assert(pthread_create(&ti, NULL, inheritor, NULL) == 0); - assert(pthread_join(to, NULL) == 0); - assert(pthread_join(ti, NULL) == 0); - assert(lockCount == 2); - assert(pthread_mutex_lock(&mutex) == 0); - assert(pthread_mutex_unlock(&mutex) == 0); - assert(pthread_mutex_destroy(&mutex) == 0); - - assert(pthread_mutexattr_destroy(&ma) == 0); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/robust4.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/robust4.c deleted file mode 100644 index 9e38b01..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/robust4.c +++ /dev/null @@ -1,197 +0,0 @@ -/* - * robust4.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Thread A locks multiple robust mutexes - * Thread B blocks on same mutexes in different orderings - * Thread A terminates with thread waiting on mutexes - * Thread B awakes and inherits each mutex in turn, sets consistent and unlocks - * Main acquires mutexes with recovered state. - * - * Depends on API functions: - * pthread_create() - * pthread_join() - * pthread_mutex_init() - * pthread_mutex_lock() - * pthread_mutex_unlock() - * pthread_mutex_destroy() - * pthread_mutexattr_init() - * pthread_mutexattr_setrobust() - * pthread_mutexattr_settype() - * pthread_mutexattr_destroy() - */ - -#include "test.h" - -static int lockCount; - -static pthread_mutex_t mutex[3]; - -void * owner(void * arg) -{ - assert(pthread_mutex_lock(&mutex[0]) == 0); - lockCount++; - assert(pthread_mutex_lock(&mutex[1]) == 0); - lockCount++; - assert(pthread_mutex_lock(&mutex[2]) == 0); - lockCount++; - Sleep(200); - - return 0; -} - -void * inheritor(void * arg) -{ - int* o = (int*)arg; - - assert(pthread_mutex_lock(&mutex[o[0]]) == EOWNERDEAD); - lockCount++; - assert(pthread_mutex_lock(&mutex[o[1]]) == EOWNERDEAD); - lockCount++; - assert(pthread_mutex_lock(&mutex[o[2]]) == EOWNERDEAD); - lockCount++; - assert(pthread_mutex_consistent(&mutex[o[2]]) == 0); - assert(pthread_mutex_consistent(&mutex[o[1]]) == 0); - assert(pthread_mutex_consistent(&mutex[o[0]]) == 0); - assert(pthread_mutex_unlock(&mutex[o[2]]) == 0); - assert(pthread_mutex_unlock(&mutex[o[1]]) == 0); - assert(pthread_mutex_unlock(&mutex[o[0]]) == 0); - - return 0; -} - -int -main() -{ - pthread_t to, ti; - pthread_mutexattr_t ma; - int order[3]; - - assert(pthread_mutexattr_init(&ma) == 0); - assert(pthread_mutexattr_setrobust(&ma, PTHREAD_MUTEX_ROBUST) == 0); - - order[0]=0; - order[1]=1; - order[2]=2; - lockCount = 0; - assert(pthread_mutex_init(&mutex[0], &ma) == 0); - assert(pthread_mutex_init(&mutex[1], &ma) == 0); - assert(pthread_mutex_init(&mutex[2], &ma) == 0); - assert(pthread_create(&to, NULL, owner, NULL) == 0); - Sleep(100); - assert(pthread_create(&ti, NULL, inheritor, (void *)order) == 0); - assert(pthread_join(to, NULL) == 0); - assert(pthread_join(ti, NULL) == 0); - assert(lockCount == 6); - assert(pthread_mutex_lock(&mutex[0]) == 0); - assert(pthread_mutex_unlock(&mutex[0]) == 0); - assert(pthread_mutex_destroy(&mutex[0]) == 0); - assert(pthread_mutex_lock(&mutex[1]) == 0); - assert(pthread_mutex_unlock(&mutex[1]) == 0); - assert(pthread_mutex_destroy(&mutex[1]) == 0); - assert(pthread_mutex_lock(&mutex[2]) == 0); - assert(pthread_mutex_unlock(&mutex[2]) == 0); - assert(pthread_mutex_destroy(&mutex[2]) == 0); - - order[0]=1; - order[1]=0; - order[2]=2; - lockCount = 0; - assert(pthread_mutex_init(&mutex[0], &ma) == 0); - assert(pthread_mutex_init(&mutex[1], &ma) == 0); - assert(pthread_mutex_init(&mutex[2], &ma) == 0); - assert(pthread_create(&to, NULL, owner, NULL) == 0); - Sleep(100); - assert(pthread_create(&ti, NULL, inheritor, (void *)order) == 0); - assert(pthread_join(to, NULL) == 0); - assert(pthread_join(ti, NULL) == 0); - assert(lockCount == 6); - assert(pthread_mutex_lock(&mutex[0]) == 0); - assert(pthread_mutex_unlock(&mutex[0]) == 0); - assert(pthread_mutex_destroy(&mutex[0]) == 0); - assert(pthread_mutex_lock(&mutex[1]) == 0); - assert(pthread_mutex_unlock(&mutex[1]) == 0); - assert(pthread_mutex_destroy(&mutex[1]) == 0); - assert(pthread_mutex_lock(&mutex[2]) == 0); - assert(pthread_mutex_unlock(&mutex[2]) == 0); - assert(pthread_mutex_destroy(&mutex[2]) == 0); - - order[0]=0; - order[1]=2; - order[2]=1; - lockCount = 0; - assert(pthread_mutex_init(&mutex[0], &ma) == 0); - assert(pthread_mutex_init(&mutex[1], &ma) == 0); - assert(pthread_mutex_init(&mutex[2], &ma) == 0); - assert(pthread_create(&to, NULL, owner, NULL) == 0); - Sleep(100); - assert(pthread_create(&ti, NULL, inheritor, (void *)order) == 0); - assert(pthread_join(to, NULL) == 0); - assert(pthread_join(ti, NULL) == 0); - assert(lockCount == 6); - assert(pthread_mutex_lock(&mutex[0]) == 0); - assert(pthread_mutex_unlock(&mutex[0]) == 0); - assert(pthread_mutex_destroy(&mutex[0]) == 0); - assert(pthread_mutex_lock(&mutex[1]) == 0); - assert(pthread_mutex_unlock(&mutex[1]) == 0); - assert(pthread_mutex_destroy(&mutex[1]) == 0); - assert(pthread_mutex_lock(&mutex[2]) == 0); - assert(pthread_mutex_unlock(&mutex[2]) == 0); - assert(pthread_mutex_destroy(&mutex[2]) == 0); - - order[0]=2; - order[1]=1; - order[2]=0; - lockCount = 0; - assert(pthread_mutex_init(&mutex[0], &ma) == 0); - assert(pthread_mutex_init(&mutex[1], &ma) == 0); - assert(pthread_mutex_init(&mutex[2], &ma) == 0); - assert(pthread_create(&to, NULL, owner, NULL) == 0); - Sleep(100); - assert(pthread_create(&ti, NULL, inheritor, (void *)order) == 0); - assert(pthread_join(to, NULL) == 0); - assert(pthread_join(ti, NULL) == 0); - assert(lockCount == 6); - assert(pthread_mutex_lock(&mutex[0]) == 0); - assert(pthread_mutex_unlock(&mutex[0]) == 0); - assert(pthread_mutex_destroy(&mutex[0]) == 0); - assert(pthread_mutex_lock(&mutex[1]) == 0); - assert(pthread_mutex_unlock(&mutex[1]) == 0); - assert(pthread_mutex_destroy(&mutex[1]) == 0); - assert(pthread_mutex_lock(&mutex[2]) == 0); - assert(pthread_mutex_unlock(&mutex[2]) == 0); - assert(pthread_mutex_destroy(&mutex[2]) == 0); - - assert(pthread_mutexattr_destroy(&ma) == 0); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/robust5.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/robust5.c deleted file mode 100644 index b12b343..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/robust5.c +++ /dev/null @@ -1,118 +0,0 @@ -/* - * robust5.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Thread A locks multiple robust mutexes - * Thread B blocks on same mutexes - * Thread A terminates with thread waiting on mutexes - * Thread B awakes and inherits each mutex in turn - * Thread B terminates leaving orphaned mutexes - * Main inherits mutexes, sets consistent and unlocks. - * - * Depends on API functions: - * pthread_create() - * pthread_join() - * pthread_mutex_init() - * pthread_mutex_lock() - * pthread_mutex_unlock() - * pthread_mutex_destroy() - * pthread_mutexattr_init() - * pthread_mutexattr_setrobust() - * pthread_mutexattr_settype() - * pthread_mutexattr_destroy() - */ - -#include "test.h" - -static int lockCount; - -static pthread_mutex_t mutex[3]; - -void * owner(void * arg) -{ - assert(pthread_mutex_lock(&mutex[0]) == 0); - lockCount++; - assert(pthread_mutex_lock(&mutex[1]) == 0); - lockCount++; - assert(pthread_mutex_lock(&mutex[2]) == 0); - lockCount++; - - return 0; -} - -void * inheritor(void * arg) -{ - assert(pthread_mutex_lock(&mutex[0]) == EOWNERDEAD); - lockCount++; - assert(pthread_mutex_lock(&mutex[1]) == EOWNERDEAD); - lockCount++; - assert(pthread_mutex_lock(&mutex[2]) == EOWNERDEAD); - lockCount++; - - return 0; -} - -int -main() -{ - pthread_t to, ti; - pthread_mutexattr_t ma; - - assert(pthread_mutexattr_init(&ma) == 0); - assert(pthread_mutexattr_setrobust(&ma, PTHREAD_MUTEX_ROBUST) == 0); - - lockCount = 0; - assert(pthread_mutex_init(&mutex[0], &ma) == 0); - assert(pthread_mutex_init(&mutex[1], &ma) == 0); - assert(pthread_mutex_init(&mutex[2], &ma) == 0); - assert(pthread_create(&to, NULL, owner, NULL) == 0); - assert(pthread_join(to, NULL) == 0); - assert(pthread_create(&ti, NULL, inheritor, NULL) == 0); - assert(pthread_join(ti, NULL) == 0); - assert(lockCount == 6); - assert(pthread_mutex_lock(&mutex[0]) == EOWNERDEAD); - assert(pthread_mutex_consistent(&mutex[0]) == 0); - assert(pthread_mutex_unlock(&mutex[0]) == 0); - assert(pthread_mutex_destroy(&mutex[0]) == 0); - assert(pthread_mutex_lock(&mutex[1]) == EOWNERDEAD); - assert(pthread_mutex_consistent(&mutex[1]) == 0); - assert(pthread_mutex_unlock(&mutex[1]) == 0); - assert(pthread_mutex_destroy(&mutex[1]) == 0); - assert(pthread_mutex_lock(&mutex[2]) == EOWNERDEAD); - assert(pthread_mutex_consistent(&mutex[2]) == 0); - assert(pthread_mutex_unlock(&mutex[2]) == 0); - assert(pthread_mutex_destroy(&mutex[2]) == 0); - - assert(pthread_mutexattr_destroy(&ma) == 0); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/runorder.mk b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/runorder.mk deleted file mode 100644 index 2af2c68..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/runorder.mk +++ /dev/null @@ -1,158 +0,0 @@ -# -# Common rules that define the run order of tests -# -benchtest1.bench: -benchtest2.bench: -benchtest3.bench: -benchtest4.bench: -benchtest5.bench: - -affinity1.pass: errno0.pass -affinity2.pass: affinity1.pass -affinity3.pass: affinity2.pass self1.pass create3.pass -affinity4.pass: affinity3.pass -affinity5.pass: affinity4.pass -affinity6.pass: affinity5.pass -barrier1.pass: semaphore4.pass -barrier2.pass: barrier1.pass semaphore4.pass -barrier3.pass: barrier2.pass semaphore4.pass self1.pass create3.pass join4.pass -barrier4.pass: barrier3.pass semaphore4.pass self1.pass create3.pass join4.pass mutex8.pass -barrier5.pass: barrier4.pass semaphore4.pass self1.pass create3.pass join4.pass mutex8.pass -barrier6.pass: barrier5.pass semaphore4.pass self1.pass create3.pass join4.pass mutex8.pass -cancel1.pass: self1.pass create3.pass -cancel2.pass: self1.pass create3.pass join4.pass barrier6.pass -cancel3.pass: self1.pass create3.pass join4.pass context1.pass -cancel4.pass: cancel3.pass self1.pass create3.pass join4.pass -cancel5.pass: cancel3.pass self1.pass create3.pass join4.pass -cancel6a.pass: cancel3.pass self1.pass create3.pass join4.pass -cancel6d.pass: cancel3.pass self1.pass create3.pass join4.pass -cancel7.pass: self1.pass create3.pass join4.pass kill1.pass -cancel8.pass: cancel7.pass self1.pass mutex8.pass kill1.pass -cancel9.pass: cancel8.pass self1.pass create3.pass join4.pass mutex8.pass kill1.pass -cleanup0.pass: self1.pass create3.pass join4.pass mutex8.pass cancel5.pass -cleanup1.pass: cleanup0.pass -cleanup2.pass: cleanup1.pass -cleanup3.pass: cleanup2.pass -condvar1.pass: self1.pass create3.pass semaphore1.pass mutex8.pass -condvar1_1.pass: condvar1.pass -condvar1_2.pass: join2.pass -condvar2.pass: condvar1.pass -condvar2_1.pass: condvar2.pass join2.pass -condvar3.pass: create1.pass condvar2.pass -condvar3_1.pass: condvar3.pass join2.pass -condvar3_2.pass: condvar3_1.pass -condvar3_3.pass: condvar3_2.pass -condvar4.pass: create1.pass -condvar5.pass: condvar4.pass -condvar6.pass: condvar5.pass -condvar7.pass: condvar6.pass cleanup1.pass -condvar8.pass: condvar7.pass -condvar9.pass: condvar8.pass -context1.pass: cancel1.pass -count1.pass: join1.pass -create1.pass: mutex2.pass -create2.pass: create1.pass -create3.pass: create2.pass -delay1.pass: self1.pass create3.pass -delay2.pass: delay1.pass -detach1.pass: join0.pass -equal1.pass: self1.pass create1.pass -errno0.pass: sizes.pass -errno1.pass: mutex3.pass -exception1.pass: cancel4.pass -exception2.pass: exception1.pass -exception3_0.pass: exception2.pass -exception3.pass: exception3_0.pass -exit1.pass: self1.pass create3.pass -exit2.pass: create1.pass -exit3.pass: create1.pass -exit4.pass: self1.pass create3.pass -exit5.pass: exit4.pass kill1.pass -exit6.pass: exit5.pass -eyal1.pass: self1.pass create3.pass mutex8.pass tsd1.pass -inherit1.pass: join1.pass priority1.pass -join0.pass: create1.pass -join1.pass: create1.pass -join2.pass: create1.pass -join3.pass: join2.pass -join4.pass: join3.pass -kill1.pass: self1.pass -mutex1.pass: mutex5.pass -mutex1n.pass: mutex1.pass -mutex1e.pass: mutex1.pass -mutex1r.pass: mutex1.pass -mutex2.pass: mutex1.pass -mutex2r.pass: mutex2.pass -mutex2e.pass: mutex2.pass -mutex3.pass: create1.pass -mutex3r.pass: mutex3.pass -mutex3e.pass: mutex3.pass -mutex4.pass: mutex3.pass -mutex5.pass: sizes.pass -mutex6.pass: mutex4.pass -mutex6n.pass: mutex4.pass -mutex6e.pass: mutex4.pass -mutex6r.pass: mutex4.pass -mutex6s.pass: mutex6.pass -mutex6rs.pass: mutex6r.pass -mutex6es.pass: mutex6e.pass -mutex7.pass: mutex6.pass -mutex7n.pass: mutex6n.pass -mutex7e.pass: mutex6e.pass -mutex7r.pass: mutex6r.pass -mutex8.pass: mutex7.pass -mutex8n.pass: mutex7n.pass -mutex8e.pass: mutex7e.pass -mutex8r.pass: mutex7r.pass -name_np1.pass: join4.pass barrier6.pass -name_np2.pass: name_np1.pass -once1.pass: create1.pass -once2.pass: once1.pass -once3.pass: once2.pass -once4.pass: once3.pass -priority1.pass: join1.pass -priority2.pass: priority1.pass barrier3.pass -reinit1.pass: rwlock7.pass -reuse1.pass: create3.pass -reuse2.pass: reuse1.pass -robust1.pass: mutex8r.pass -robust2.pass: mutex8r.pass -robust3.pass: robust2.pass -robust4.pass: robust3.pass -robust5.pass: robust4.pass -rwlock1.pass: condvar6.pass -rwlock2.pass: rwlock1.pass -rwlock3.pass: rwlock2.pass join2.pass -rwlock4.pass: rwlock3.pass -rwlock5.pass: rwlock4.pass -rwlock6.pass: rwlock5.pass -rwlock7.pass: rwlock6.pass -rwlock8.pass: rwlock7.pass -rwlock2_t.pass: rwlock2.pass -rwlock3_t.pass: rwlock2_t.pass -rwlock4_t.pass: rwlock3_t.pass -rwlock5_t.pass: rwlock4_t.pass -rwlock6_t.pass: rwlock5_t.pass -rwlock6_t2.pass: rwlock6_t.pass -self1.pass: sizes.pass -self2.pass: self1.pass equal1.pass create1.pass -semaphore1.pass: sizes.pass -semaphore2.pass: semaphore1.pass -semaphore3.pass: semaphore2.pass -semaphore4.pass: semaphore3.pass cancel1.pass -semaphore4t.pass: semaphore4.pass -semaphore5.pass: semaphore4.pass -sequence1.pass: reuse2.pass -sizes.pass: -spin1.pass: self1.pass create3.pass mutex8.pass -spin2.pass: spin1.pass -spin3.pass: spin2.pass -spin4.pass: spin3.pass -stress1.pass: create3.pass mutex8.pass barrier6.pass -threestage.pass: stress1.pass -timeouts.pass: condvar9.pass -tsd1.pass: barrier5.pass join1.pass -tsd2.pass: tsd1.pass -tsd3.pass: tsd2.pass -valid1.pass: join1.pass -valid2.pass: valid1.pass diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock1.c deleted file mode 100644 index 1ce05b9..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock1.c +++ /dev/null @@ -1,59 +0,0 @@ -/* - * rwlock1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Create a simple rwlock object and then destroy it. - * - * Depends on API functions: - * pthread_rwlock_init() - * pthread_rwlock_destroy() - */ - -#include "test.h" - -pthread_rwlock_t rwlock = NULL; - -int -main() -{ - assert(rwlock == NULL); - - assert(pthread_rwlock_init(&rwlock, NULL) == 0); - - assert(rwlock != NULL); - - assert(pthread_rwlock_destroy(&rwlock) == 0); - - assert(rwlock == NULL); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock2.c deleted file mode 100644 index 4b2251b..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock2.c +++ /dev/null @@ -1,64 +0,0 @@ -/* - * rwlock2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Declare a static rwlock object, lock it, - * and then unlock it again. - * - * Depends on API functions: - * pthread_rwlock_rdlock() - * pthread_rwlock_unlock() - */ - -#include "test.h" - -pthread_rwlock_t rwlock = PTHREAD_RWLOCK_INITIALIZER; - -int -main() -{ - assert(rwlock == PTHREAD_RWLOCK_INITIALIZER); - - assert(pthread_rwlock_rdlock(&rwlock) == 0); - - assert(rwlock != PTHREAD_RWLOCK_INITIALIZER); - - assert(rwlock != NULL); - - assert(pthread_rwlock_unlock(&rwlock) == 0); - - assert(pthread_rwlock_destroy(&rwlock) == 0); - - assert(rwlock == NULL); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock2_t.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock2_t.c deleted file mode 100644 index e879793..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock2_t.c +++ /dev/null @@ -1,69 +0,0 @@ -/* - * rwlock2_t.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Declare a static rwlock object, timed-lock it, - * and then unlock it again. - * - * Depends on API functions: - * pthread_rwlock_timedrdlock() - * pthread_rwlock_unlock() - */ - -#include "test.h" -#include - -pthread_rwlock_t rwlock = PTHREAD_RWLOCK_INITIALIZER; - -int -main() -{ - struct timespec abstime, reltime = { 1, 0 }; - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - assert(rwlock == PTHREAD_RWLOCK_INITIALIZER); - - assert(pthread_rwlock_timedrdlock(&rwlock, &abstime) == 0); - - assert(rwlock != PTHREAD_RWLOCK_INITIALIZER); - - assert(rwlock != NULL); - - assert(pthread_rwlock_unlock(&rwlock) == 0); - - assert(pthread_rwlock_destroy(&rwlock) == 0); - - assert(rwlock == NULL); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock3.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock3.c deleted file mode 100644 index dd46ea4..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock3.c +++ /dev/null @@ -1,76 +0,0 @@ -/* - * rwlock3.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Declare a static rwlock object, wrlock it, trywrlock it, - * and then unlock it again. - * - * Depends on API functions: - * pthread_create() - * pthread_join() - * pthread_rwlock_wrlock() - * pthread_rwlock_trywrlock() - * pthread_rwlock_unlock() - */ - -#include "test.h" - -pthread_rwlock_t rwlock1 = PTHREAD_RWLOCK_INITIALIZER; - -static int washere = 0; - -void * func(void * arg) -{ - assert(pthread_rwlock_trywrlock(&rwlock1) == EBUSY); - - washere = 1; - - return 0; -} - -int -main() -{ - pthread_t t; - - assert(pthread_rwlock_wrlock(&rwlock1) == 0); - - assert(pthread_create(&t, NULL, func, NULL) == 0); - - assert(pthread_join(t, NULL) == 0); - - assert(pthread_rwlock_unlock(&rwlock1) == 0); - - assert(washere == 1); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock3_t.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock3_t.c deleted file mode 100644 index 318e515..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock3_t.c +++ /dev/null @@ -1,78 +0,0 @@ -/* - * rwlock3_t.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Declare a static rwlock object, timed-wrlock it, trywrlock it, - * and then unlock it again. - * - * Depends on API functions: - * pthread_rwlock_timedwrlock() - * pthread_rwlock_trywrlock() - * pthread_rwlock_unlock() - */ - -#include "test.h" -#include - -pthread_rwlock_t rwlock1 = PTHREAD_RWLOCK_INITIALIZER; - -static int washere = 0; - -void * func(void * arg) -{ - assert(pthread_rwlock_trywrlock(&rwlock1) == EBUSY); - - washere = 1; - - return 0; -} - -int -main() -{ - pthread_t t; - struct timespec abstime, reltime = { 1, 0 }; - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - assert(pthread_rwlock_timedwrlock(&rwlock1, &abstime) == 0); - - assert(pthread_create(&t, NULL, func, NULL) == 0); - - Sleep(2000); - - assert(pthread_rwlock_unlock(&rwlock1) == 0); - - assert(washere == 1); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock4.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock4.c deleted file mode 100644 index 3b71b17..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock4.c +++ /dev/null @@ -1,76 +0,0 @@ -/* - * rwlock4.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Declare a static rwlock object, rdlock it, trywrlock it, - * and then unlock it again. - * - * Depends on API functions: - * pthread_create() - * pthread_join() - * pthread_rwlock_rdlock() - * pthread_rwlock_trywrlock() - * pthread_rwlock_unlock() - */ - -#include "test.h" - -pthread_rwlock_t rwlock1 = PTHREAD_RWLOCK_INITIALIZER; - -static int washere = 0; - -void * func(void * arg) -{ - assert(pthread_rwlock_trywrlock(&rwlock1) == EBUSY); - - washere = 1; - - return 0; -} - -int -main() -{ - pthread_t t; - - assert(pthread_rwlock_rdlock(&rwlock1) == 0); - - assert(pthread_create(&t, NULL, func, NULL) == 0); - - assert(pthread_join(t, NULL) == 0); - - assert(pthread_rwlock_unlock(&rwlock1) == 0); - - assert(washere == 1); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock4_t.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock4_t.c deleted file mode 100644 index 5dd206d..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock4_t.c +++ /dev/null @@ -1,77 +0,0 @@ -/* - * rwlock4_t.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Declare a static rwlock object, timed-rdlock it, trywrlock it, - * and then unlock it again. - * - * Depends on API functions: - * pthread_rwlock_timedrdlock() - * pthread_rwlock_trywrlock() - * pthread_rwlock_unlock() - */ - -#include "test.h" -#include - -pthread_rwlock_t rwlock1 = PTHREAD_RWLOCK_INITIALIZER; - -static int washere = 0; - -void * func(void * arg) -{ - assert(pthread_rwlock_trywrlock(&rwlock1) == EBUSY); - - washere = 1; - - return 0; -} - -int -main() -{ - pthread_t t; - struct timespec abstime = { 0, 0 }; - struct timespec reltime = { 1, 0 }; - - assert(pthread_rwlock_timedrdlock(&rwlock1, pthread_win32_getabstime_np(&abstime, &reltime)) == 0); - - assert(pthread_create(&t, NULL, func, NULL) == 0); - - Sleep(2000); - - assert(pthread_rwlock_unlock(&rwlock1) == 0); - - assert(washere == 1); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock5.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock5.c deleted file mode 100644 index 988e690..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock5.c +++ /dev/null @@ -1,78 +0,0 @@ -/* - * rwlock5.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Declare a static rwlock object, rdlock it, tryrdlock it, - * and then unlock it again. - * - * Depends on API functions: - * pthread_create() - * pthread_join() - * pthread_rwlock_rdlock() - * pthread_rwlock_tryrdlock() - * pthread_rwlock_unlock() - */ - -#include "test.h" - -pthread_rwlock_t rwlock1 = PTHREAD_RWLOCK_INITIALIZER; - -static int washere = 0; - -void * func(void * arg) -{ - assert(pthread_rwlock_tryrdlock(&rwlock1) == 0); - - assert(pthread_rwlock_unlock(&rwlock1) == 0); - - washere = 1; - - return 0; -} - -int -main() -{ - pthread_t t; - - assert(pthread_rwlock_rdlock(&rwlock1) == 0); - - assert(pthread_create(&t, NULL, func, NULL) == 0); - - assert(pthread_join(t, NULL) == 0); - - assert(pthread_rwlock_unlock(&rwlock1) == 0); - - assert(washere == 1); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock5_t.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock5_t.c deleted file mode 100644 index 8cf55c4..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock5_t.c +++ /dev/null @@ -1,80 +0,0 @@ -/* - * rwlock5_t.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Declare a static rwlock object, timed-rdlock it, tryrdlock it, - * and then unlock it again. - * - * Depends on API functions: - * pthread_rwlock_timedrdlock() - * pthread_rwlock_tryrdlock() - * pthread_rwlock_unlock() - */ - -#include "test.h" -#include - -pthread_rwlock_t rwlock1 = PTHREAD_RWLOCK_INITIALIZER; - -static int washere = 0; - -void * func(void * arg) -{ - assert(pthread_rwlock_tryrdlock(&rwlock1) == 0); - - assert(pthread_rwlock_unlock(&rwlock1) == 0); - - washere = 1; - - return 0; -} - -int -main() -{ - pthread_t t; - struct timespec abstime, reltime = { 1, 0 }; - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - assert(pthread_rwlock_timedrdlock(&rwlock1, &abstime) == 0); - - assert(pthread_create(&t, NULL, func, NULL) == 0); - - Sleep(2000); - - assert(pthread_rwlock_unlock(&rwlock1) == 0); - - assert(washere == 1); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock6.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock6.c deleted file mode 100644 index 50b96ec..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock6.c +++ /dev/null @@ -1,99 +0,0 @@ -/* - * rwlock6.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Check writer and reader locking - * - * Depends on API functions: - * pthread_rwlock_rdlock() - * pthread_rwlock_wrlock() - * pthread_rwlock_unlock() - */ - -#include "test.h" - -static pthread_rwlock_t rwlock1 = PTHREAD_RWLOCK_INITIALIZER; - -static int bankAccount = 0; - -void * wrfunc(void * arg) -{ - int ba; - - assert(pthread_rwlock_wrlock(&rwlock1) == 0); - Sleep(200); - bankAccount += 10; - ba = bankAccount; - assert(pthread_rwlock_unlock(&rwlock1) == 0); - - return ((void *)(size_t)ba); -} - -void * rdfunc(void * arg) -{ - int ba; - - assert(pthread_rwlock_rdlock(&rwlock1) == 0); - ba = bankAccount; - assert(pthread_rwlock_unlock(&rwlock1) == 0); - - return ((void *)(size_t)ba); -} - -int -main() -{ - pthread_t wrt1; - pthread_t wrt2; - pthread_t rdt; - void* wr1Result = (void*)0; - void* wr2Result = (void*)0; - void* rdResult = (void*)0; - - bankAccount = 0; - - assert(pthread_create(&wrt1, NULL, wrfunc, NULL) == 0); - Sleep(50); - assert(pthread_create(&rdt, NULL, rdfunc, NULL) == 0); - Sleep(50); - assert(pthread_create(&wrt2, NULL, wrfunc, NULL) == 0); - - assert(pthread_join(wrt1, &wr1Result) == 0); - assert(pthread_join(rdt, &rdResult) == 0); - assert(pthread_join(wrt2, &wr2Result) == 0); - - assert((int)(size_t)wr1Result == 10); - assert((int)(size_t)rdResult == 10); - assert((int)(size_t)wr2Result == 20); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock6_t.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock6_t.c deleted file mode 100644 index a590922..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock6_t.c +++ /dev/null @@ -1,116 +0,0 @@ -/* - * rwlock6_t.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Check writer and reader locking with reader timeouts - * - * Depends on API functions: - * pthread_rwlock_timedrdlock() - * pthread_rwlock_wrlock() - * pthread_rwlock_unlock() - */ - -#include "test.h" -#include - -static pthread_rwlock_t rwlock1 = PTHREAD_RWLOCK_INITIALIZER; - -static int bankAccount = 0; - -void * wrfunc(void * arg) -{ - assert(pthread_rwlock_wrlock(&rwlock1) == 0); - Sleep(2000); - bankAccount += 10; - assert(pthread_rwlock_unlock(&rwlock1) == 0); - - return ((void *)(size_t)bankAccount); -} - -void * rdfunc(void * arg) -{ - int ba = -1; - struct timespec abstime; - - (void) pthread_win32_getabstime_np(&abstime, NULL); - - if ((int) (size_t)arg == 1) - { - abstime.tv_sec += 1; - assert(pthread_rwlock_timedrdlock(&rwlock1, &abstime) == ETIMEDOUT); - ba = 0; - } - else if ((int) (size_t)arg == 2) - { - abstime.tv_sec += 3; - assert(pthread_rwlock_timedrdlock(&rwlock1, &abstime) == 0); - ba = bankAccount; - assert(pthread_rwlock_unlock(&rwlock1) == 0); - } - - return ((void *)(size_t)ba); -} - -int -main() -{ - pthread_t wrt1; - pthread_t wrt2; - pthread_t rdt1; - pthread_t rdt2; - void* wr1Result = (void*)0; - void* wr2Result = (void*)0; - void* rd1Result = (void*)0; - void* rd2Result = (void*)0; - - bankAccount = 0; - - assert(pthread_create(&wrt1, NULL, wrfunc, NULL) == 0); - Sleep(500); - assert(pthread_create(&rdt1, NULL, rdfunc, (void *)(size_t)1) == 0); - Sleep(500); - assert(pthread_create(&wrt2, NULL, wrfunc, NULL) == 0); - Sleep(500); - assert(pthread_create(&rdt2, NULL, rdfunc, (void *)(size_t)2) == 0); - - assert(pthread_join(wrt1, &wr1Result) == 0); - assert(pthread_join(rdt1, &rd1Result) == 0); - assert(pthread_join(wrt2, &wr2Result) == 0); - assert(pthread_join(rdt2, &rd2Result) == 0); - - assert((int)(size_t)wr1Result == 10); - assert((int)(size_t)rd1Result == 0); - assert((int)(size_t)wr2Result == 20); - assert((int)(size_t)rd2Result == 20); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock6_t2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock6_t2.c deleted file mode 100644 index 71e957f..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock6_t2.c +++ /dev/null @@ -1,110 +0,0 @@ -/* - * rwlock6_t2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Check writer and reader timeouts. - * - * Depends on API functions: - * pthread_rwlock_timedrdlock() - * pthread_rwlock_timedwrlock() - * pthread_rwlock_unlock() - */ - -#include "test.h" -#include - -static pthread_rwlock_t rwlock1 = PTHREAD_RWLOCK_INITIALIZER; - -static int bankAccount = 0; -struct timespec abstime, reltime = { 1, 0 }; - -void * wrfunc(void * arg) -{ - int result; - - result = pthread_rwlock_timedwrlock(&rwlock1, &abstime); - if ((int) (size_t)arg == 1) - { - assert(result == 0); - Sleep(2000); - bankAccount += 10; - assert(pthread_rwlock_unlock(&rwlock1) == 0); - return ((void *)(size_t)bankAccount); - } - else if ((int) (size_t)arg == 2) - { - assert(result == ETIMEDOUT); - return ((void *) 100); - } - - return ((void *)(size_t)-1); -} - -void * rdfunc(void * arg) -{ - int ba = 0; - - assert(pthread_rwlock_timedrdlock(&rwlock1, &abstime) == ETIMEDOUT); - - return ((void *)(size_t)ba); -} - -int -main() -{ - pthread_t wrt1; - pthread_t wrt2; - pthread_t rdt; - void* wr1Result = (void*)0; - void* wr2Result = (void*)0; - void* rdResult = (void*)0; - - (void) pthread_win32_getabstime_np(&abstime, &reltime); - - bankAccount = 0; - - assert(pthread_create(&wrt1, NULL, wrfunc, (void *)(size_t)1) == 0); - Sleep(100); - assert(pthread_create(&rdt, NULL, rdfunc, NULL) == 0); - Sleep(100); - assert(pthread_create(&wrt2, NULL, wrfunc, (void *)(size_t)2) == 0); - - assert(pthread_join(wrt1, &wr1Result) == 0); - assert(pthread_join(rdt, &rdResult) == 0); - assert(pthread_join(wrt2, &wr2Result) == 0); - - assert((int)(size_t)wr1Result == 10); - assert((int)(size_t)rdResult == 0); - assert((int)(size_t)wr2Result == 100); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock7.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock7.c deleted file mode 100644 index 9d58f6e..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock7.c +++ /dev/null @@ -1,199 +0,0 @@ -/* - * rwlock7.c - * - * Hammer on a bunch of rwlocks to test robustness and fairness. - * Printed stats should be roughly even for each thread. - */ - -#include "test.h" -#include - -#ifdef __GNUC__ -#include -#endif - -#define THREADS 5 -#define DATASIZE 7 -#define ITERATIONS 1000000 - -/* - * Keep statistics for each thread. - */ -typedef struct thread_tag { - int thread_num; - pthread_t thread_id; - int updates; - int reads; - int changed; - int seed; -} thread_t; - -/* - * Read-write lock and shared data - */ -typedef struct data_tag { - pthread_rwlock_t lock; - int data; - int updates; -} data_t; - -static thread_t threads[THREADS]; -static data_t data[DATASIZE]; - -/* - * Thread start routine that uses read-write locks - */ -void *thread_routine (void *arg) -{ - thread_t *self = (thread_t*)arg; - int iteration; - int element = 0; - int seed = self->seed; - int interval = 1 + rand_r (&seed) % 71; - - self->changed = 0; - - for (iteration = 0; iteration < ITERATIONS; iteration++) - { - if (iteration % (ITERATIONS / 10) == 0) - { - putchar('.'); - fflush(stdout); - } - /* - * Each "self->interval" iterations, perform an - * update operation (write lock instead of read - * lock). - */ - if ((iteration % interval) == 0) - { - assert(pthread_rwlock_wrlock (&data[element].lock) == 0); - data[element].data = self->thread_num; - data[element].updates++; - self->updates++; - interval = 1 + rand_r (&seed) % 71; - assert(pthread_rwlock_unlock (&data[element].lock) == 0); - } else { - /* - * Look at the current data element to see whether - * the current thread last updated it. Count the - * times, to report later. - */ - assert(pthread_rwlock_rdlock (&data[element].lock) == 0); - - self->reads++; - - if (data[element].data != self->thread_num) - { - self->changed++; - interval = 1 + self->changed % 71; - } - - assert(pthread_rwlock_unlock (&data[element].lock) == 0); - } - - element = (element + 1) % DATASIZE; - - } - - return NULL; -} - -int -main (int argc, char *argv[]) -{ - int count; - int data_count; - int thread_updates = 0; - int data_updates = 0; - int seed = 1; - - __PTW32_STRUCT_TIMEB currSysTime1; - __PTW32_STRUCT_TIMEB currSysTime2; - - /* - * Initialize the shared data. - */ - for (data_count = 0; data_count < DATASIZE; data_count++) - { - data[data_count].data = 0; - data[data_count].updates = 0; - - assert(pthread_rwlock_init (&data[data_count].lock, NULL) == 0); - } - - __PTW32_FTIME(&currSysTime1); - - /* - * Create THREADS threads to access shared data. - */ - for (count = 0; count < THREADS; count++) - { - threads[count].thread_num = count; - threads[count].updates = 0; - threads[count].reads = 0; - threads[count].seed = 1 + rand_r (&seed) % 71; - - assert(pthread_create (&threads[count].thread_id, - NULL, thread_routine, (void*)(size_t)&threads[count]) == 0); - } - - /* - * Wait for all threads to complete, and collect - * statistics. - */ - for (count = 0; count < THREADS; count++) - { - assert(pthread_join (threads[count].thread_id, NULL) == 0); - } - - putchar('\n'); - fflush(stdout); - - for (count = 0; count < THREADS; count++) - { - if (threads[count].changed > 0) - { - printf ("Thread %d found changed elements %d times\n", - count, threads[count].changed); - } - } - - putchar('\n'); - fflush(stdout); - - for (count = 0; count < THREADS; count++) - { - thread_updates += threads[count].updates; - printf ("%02d: seed %d, updates %d, reads %d\n", - count, threads[count].seed, - threads[count].updates, threads[count].reads); - } - - putchar('\n'); - fflush(stdout); - - /* - * Collect statistics for the data. - */ - for (data_count = 0; data_count < DATASIZE; data_count++) - { - data_updates += data[data_count].updates; - printf ("data %02d: value %d, %d updates\n", - data_count, data[data_count].data, data[data_count].updates); - assert(pthread_rwlock_destroy (&data[data_count].lock) == 0); - } - - printf ("%d thread updates, %d data updates\n", - thread_updates, data_updates); - - __PTW32_FTIME(&currSysTime2); - - printf( "\nstart: %ld/%d, stop: %ld/%d, duration:%ld\n", - (long)currSysTime1.time,currSysTime1.millitm, - (long)currSysTime2.time,currSysTime2.millitm, - ((long)((currSysTime2.time*1000+currSysTime2.millitm) - - (currSysTime1.time*1000+currSysTime1.millitm)))); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock7_1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock7_1.c deleted file mode 100644 index 4e2ea49..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock7_1.c +++ /dev/null @@ -1,222 +0,0 @@ -/* - * rwlock7_1.c - * - * Hammer on a bunch of rwlocks to test robustness and fairness. - * Printed stats should be roughly even for each thread. - * - * Use CPU affinity to compare against non-affinity rwlock7.c - */ - -#include "test.h" -#include - -#ifdef __GNUC__ -#include -#endif - -#define THREADS 5 -#define DATASIZE 7 -#define ITERATIONS 1000000 - -/* - * Keep statistics for each thread. - */ -typedef struct thread_tag { - int thread_num; - pthread_t thread_id; - cpu_set_t threadCpus; - int updates; - int reads; - int changed; - int seed; -} thread_t; - -/* - * Read-write lock and shared data - */ -typedef struct data_tag { - pthread_rwlock_t lock; - int data; - int updates; -} data_t; - -static thread_t threads[THREADS]; -static data_t data[DATASIZE]; -static cpu_set_t processCpus; -static int cpu_count; - -/* - * Thread start routine that uses read-write locks - */ -void *thread_routine (void *arg) -{ - thread_t *self = (thread_t*)arg; - int iteration; - int element = 0; - int seed = self->seed; - int interval = 1 + rand_r (&seed) % 71; - - /* - * Set each thread to a fixed (different if possible) cpu. - */ - CPU_ZERO(&self->threadCpus); - CPU_SET(self->thread_num%cpu_count, &self->threadCpus); - assert(pthread_setaffinity_np(pthread_self(), sizeof(cpu_set_t), &self->threadCpus) == 0); - - self->changed = 0; - - for (iteration = 0; iteration < ITERATIONS; iteration++) - { - if (iteration % (ITERATIONS / 10) == 0) - { - putchar('.'); - fflush(stdout); - } - /* - * Each "self->interval" iterations, perform an - * update operation (write lock instead of read - * lock). - */ - if ((iteration % interval) == 0) - { - assert(pthread_rwlock_wrlock (&data[element].lock) == 0); - data[element].data = self->thread_num; - data[element].updates++; - self->updates++; - interval = 1 + rand_r (&seed) % 71; - assert(pthread_rwlock_unlock (&data[element].lock) == 0); - } else { - /* - * Look at the current data element to see whether - * the current thread last updated it. Count the - * times, to report later. - */ - assert(pthread_rwlock_rdlock (&data[element].lock) == 0); - - self->reads++; - - if (data[element].data != self->thread_num) - { - self->changed++; - interval = 1 + self->changed % 71; - } - - assert(pthread_rwlock_unlock (&data[element].lock) == 0); - } - - element = (element + 1) % DATASIZE; - - } - - return NULL; -} - -int -main (int argc, char *argv[]) -{ - int count; - int data_count; - int thread_updates = 0; - int data_updates = 0; - int seed = 1; - pthread_t self = pthread_self(); - __PTW32_STRUCT_TIMEB currSysTime1; - __PTW32_STRUCT_TIMEB currSysTime2; - - if (pthread_getaffinity_np(self, sizeof(cpu_set_t), &processCpus) == ENOSYS) - { - printf("pthread_get/set_affinity_np API not supported for this platform: skipping test."); - return 0; - } - - assert(pthread_getaffinity_np(self, sizeof(cpu_set_t), &processCpus) == 0); - assert((cpu_count = CPU_COUNT(&processCpus)) > 0); - printf("CPUs: %d\n", cpu_count); - - /* - * Initialize the shared data. - */ - for (data_count = 0; data_count < DATASIZE; data_count++) - { - data[data_count].data = 0; - data[data_count].updates = 0; - - assert(pthread_rwlock_init (&data[data_count].lock, NULL) == 0); - } - - __PTW32_FTIME(&currSysTime1); - - /* - * Create THREADS threads to access shared data. - */ - for (count = 0; count < THREADS; count++) - { - threads[count].thread_num = count; - threads[count].updates = 0; - threads[count].reads = 0; - threads[count].seed = 1 + rand_r (&seed) % 71; - - assert(pthread_create (&threads[count].thread_id, - NULL, thread_routine, (void*)(size_t)&threads[count]) == 0); - } - - /* - * Wait for all threads to complete, and collect - * statistics. - */ - for (count = 0; count < THREADS; count++) - { - assert(pthread_join (threads[count].thread_id, NULL) == 0); - } - - putchar('\n'); - fflush(stdout); - - for (count = 0; count < THREADS; count++) - { - if (threads[count].changed > 0) - { - printf ("Thread %d found changed elements %d times\n", - count, threads[count].changed); - } - } - - putchar('\n'); - fflush(stdout); - - for (count = 0; count < THREADS; count++) - { - thread_updates += threads[count].updates; - printf ("%02d: seed %d, updates %d, reads %d, cpu %d\n", - count, threads[count].seed, - threads[count].updates, threads[count].reads, - threads[count].thread_num%cpu_count); - } - - putchar('\n'); - fflush(stdout); - - /* - * Collect statistics for the data. - */ - for (data_count = 0; data_count < DATASIZE; data_count++) - { - data_updates += data[data_count].updates; - printf ("data %02d: value %d, %d updates\n", - data_count, data[data_count].data, data[data_count].updates); - assert(pthread_rwlock_destroy (&data[data_count].lock) == 0); - } - - printf ("%d thread updates, %d data updates\n", - thread_updates, data_updates); - - __PTW32_FTIME(&currSysTime2); - - printf( "\nstart: %ld/%d, stop: %ld/%d, duration:%ld\n", - (long)currSysTime1.time,currSysTime1.millitm, - (long)currSysTime2.time,currSysTime2.millitm, - ((long)((currSysTime2.time*1000+currSysTime2.millitm) - - (currSysTime1.time*1000+currSysTime1.millitm)))); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock8.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock8.c deleted file mode 100644 index 301e1ec..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock8.c +++ /dev/null @@ -1,205 +0,0 @@ -/* - * rwlock8.c - * - * Hammer on a bunch of rwlocks to test robustness and fairness. - * Printed stats should be roughly even for each thread. - * - * Yield during each access to exercise lock contention code paths - * more than rwlock7.c does (particularly on uni-processor systems). - */ - -#include "test.h" -#include - -#ifdef __GNUC__ -#include -#endif - -#define THREADS 5 -#define DATASIZE 7 -#define ITERATIONS 100000 - -/* - * Keep statistics for each thread. - */ -typedef struct thread_tag { - int thread_num; - pthread_t thread_id; - int updates; - int reads; - int changed; - int seed; -} thread_t; - -/* - * Read-write lock and shared data - */ -typedef struct data_tag { - pthread_rwlock_t lock; - int data; - int updates; -} data_t; - -static thread_t threads[THREADS]; -static data_t data[DATASIZE]; - -/* - * Thread start routine that uses read-write locks - */ -void *thread_routine (void *arg) -{ - thread_t *self = (thread_t*)arg; - int iteration; - int element = 0; - int seed = self->seed; - int interval = 1 + rand_r (&seed) % 71; - - self->changed = 0; - - for (iteration = 0; iteration < ITERATIONS; iteration++) - { - if (iteration % (ITERATIONS / 10) == 0) - { - putchar('.'); - fflush(stdout); - } - /* - * Each "self->interval" iterations, perform an - * update operation (write lock instead of read - * lock). - */ - if ((iteration % interval) == 0) - { - assert(pthread_rwlock_wrlock (&data[element].lock) == 0); - data[element].data = self->thread_num; - data[element].updates++; - self->updates++; - interval = 1 + rand_r (&seed) % 71; - sched_yield(); - assert(pthread_rwlock_unlock (&data[element].lock) == 0); - } else { - /* - * Look at the current data element to see whether - * the current thread last updated it. Count the - * times, to report later. - */ - assert(pthread_rwlock_rdlock (&data[element].lock) == 0); - - self->reads++; - - if (data[element].data != self->thread_num) - { - self->changed++; - interval = 1 + self->changed % 71; - } - - sched_yield(); - - assert(pthread_rwlock_unlock (&data[element].lock) == 0); - } - - element = (element + 1) % DATASIZE; - - } - - return NULL; -} - -int -main (int argc, char *argv[]) -{ - int count; - int data_count; - int thread_updates = 0; - int data_updates = 0; - int seed = 1; - - __PTW32_STRUCT_TIMEB currSysTime1; - __PTW32_STRUCT_TIMEB currSysTime2; - - /* - * Initialize the shared data. - */ - for (data_count = 0; data_count < DATASIZE; data_count++) - { - data[data_count].data = 0; - data[data_count].updates = 0; - - assert(pthread_rwlock_init (&data[data_count].lock, NULL) == 0); - } - - __PTW32_FTIME(&currSysTime1); - - /* - * Create THREADS threads to access shared data. - */ - for (count = 0; count < THREADS; count++) - { - threads[count].thread_num = count; - threads[count].updates = 0; - threads[count].reads = 0; - threads[count].seed = 1 + rand_r (&seed) % 71; - - assert(pthread_create (&threads[count].thread_id, - NULL, thread_routine, (void*)(size_t)&threads[count]) == 0); - } - - /* - * Wait for all threads to complete, and collect - * statistics. - */ - for (count = 0; count < THREADS; count++) - { - assert(pthread_join (threads[count].thread_id, NULL) == 0); - } - - putchar('\n'); - fflush(stdout); - - for (count = 0; count < THREADS; count++) - { - if (threads[count].changed > 0) - { - printf ("Thread %d found changed elements %d times\n", - count, threads[count].changed); - } - } - - putchar('\n'); - fflush(stdout); - - for (count = 0; count < THREADS; count++) - { - thread_updates += threads[count].updates; - printf ("%02d: seed %d, updates %d, reads %d\n", - count, threads[count].seed, - threads[count].updates, threads[count].reads); - } - - putchar('\n'); - fflush(stdout); - - /* - * Collect statistics for the data. - */ - for (data_count = 0; data_count < DATASIZE; data_count++) - { - data_updates += data[data_count].updates; - printf ("data %02d: value %d, %d updates\n", - data_count, data[data_count].data, data[data_count].updates); - assert(pthread_rwlock_destroy (&data[data_count].lock) == 0); - } - - printf ("%d thread updates, %d data updates\n", - thread_updates, data_updates); - - __PTW32_FTIME(&currSysTime2); - - printf( "\nstart: %ld/%d, stop: %ld/%d, duration:%ld\n", - (long)currSysTime1.time,currSysTime1.millitm, - (long)currSysTime2.time,currSysTime2.millitm, - ((long)((currSysTime2.time*1000+currSysTime2.millitm) - - (currSysTime1.time*1000+currSysTime1.millitm)))); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock8_1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock8_1.c deleted file mode 100644 index a85f37f..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/rwlock8_1.c +++ /dev/null @@ -1,228 +0,0 @@ -/* - * rwlock8.c - * - * Hammer on a bunch of rwlocks to test robustness and fairness. - * Printed stats should be roughly even for each thread. - * - * Yield during each access to exercise lock contention code paths - * more than rwlock7.c does (particularly on uni-processor systems). - * - * Use CPU affinity to compare against non-affinity rwlock8.c - */ - -#include "test.h" -#include - -#ifdef __GNUC__ -#include -#endif - -#define THREADS 5 -#define DATASIZE 7 -#define ITERATIONS 100000 - -/* - * Keep statistics for each thread. - */ -typedef struct thread_tag { - int thread_num; - pthread_t thread_id; - cpu_set_t threadCpus; - int updates; - int reads; - int changed; - int seed; -} thread_t; - -/* - * Read-write lock and shared data - */ -typedef struct data_tag { - pthread_rwlock_t lock; - int data; - int updates; -} data_t; - -static thread_t threads[THREADS]; -static data_t data[DATASIZE]; -static cpu_set_t processCpus; -static int cpu_count; - -/* - * Thread start routine that uses read-write locks - */ -void *thread_routine (void *arg) -{ - thread_t *self = (thread_t*)arg; - int iteration; - int element = 0; - int seed = self->seed; - int interval = 1 + rand_r (&seed) % 71; - - /* - * Set each thread to a fixed (different if possible) cpu. - */ - CPU_ZERO(&self->threadCpus); - CPU_SET(self->thread_num%cpu_count, &self->threadCpus); - assert(pthread_setaffinity_np(pthread_self(), sizeof(cpu_set_t), &self->threadCpus) == 0); - - self->changed = 0; - - for (iteration = 0; iteration < ITERATIONS; iteration++) - { - if (iteration % (ITERATIONS / 10) == 0) - { - putchar('.'); - fflush(stdout); - } - /* - * Each "self->interval" iterations, perform an - * update operation (write lock instead of read - * lock). - */ - if ((iteration % interval) == 0) - { - assert(pthread_rwlock_wrlock (&data[element].lock) == 0); - data[element].data = self->thread_num; - data[element].updates++; - self->updates++; - interval = 1 + rand_r (&seed) % 71; - sched_yield(); - assert(pthread_rwlock_unlock (&data[element].lock) == 0); - } else { - /* - * Look at the current data element to see whether - * the current thread last updated it. Count the - * times, to report later. - */ - assert(pthread_rwlock_rdlock (&data[element].lock) == 0); - - self->reads++; - - if (data[element].data != self->thread_num) - { - self->changed++; - interval = 1 + self->changed % 71; - } - - sched_yield(); - - assert(pthread_rwlock_unlock (&data[element].lock) == 0); - } - - element = (element + 1) % DATASIZE; - - } - - return NULL; -} - -int -main (int argc, char *argv[]) -{ - int count; - int data_count; - int thread_updates = 0; - int data_updates = 0; - int seed = 1; - pthread_t self = pthread_self(); - __PTW32_STRUCT_TIMEB currSysTime1; - __PTW32_STRUCT_TIMEB currSysTime2; - - if (pthread_getaffinity_np(self, sizeof(cpu_set_t), &processCpus) == ENOSYS) - { - printf("pthread_get/set_affinity_np API not supported for this platform: skipping test."); - return 0; - } - - assert(pthread_getaffinity_np(self, sizeof(cpu_set_t), &processCpus) == 0); - assert((cpu_count = CPU_COUNT(&processCpus)) > 0); - printf("CPUs: %d\n", cpu_count); - - /* - * Initialize the shared data. - */ - for (data_count = 0; data_count < DATASIZE; data_count++) - { - data[data_count].data = 0; - data[data_count].updates = 0; - - assert(pthread_rwlock_init (&data[data_count].lock, NULL) == 0); - } - - __PTW32_FTIME(&currSysTime1); - - /* - * Create THREADS threads to access shared data. - */ - for (count = 0; count < THREADS; count++) - { - threads[count].thread_num = count; - threads[count].updates = 0; - threads[count].reads = 0; - threads[count].seed = 1 + rand_r (&seed) % 71; - - assert(pthread_create (&threads[count].thread_id, - NULL, thread_routine, (void*)(size_t)&threads[count]) == 0); - } - - /* - * Wait for all threads to complete, and collect - * statistics. - */ - for (count = 0; count < THREADS; count++) - { - assert(pthread_join (threads[count].thread_id, NULL) == 0); - } - - putchar('\n'); - fflush(stdout); - - for (count = 0; count < THREADS; count++) - { - if (threads[count].changed > 0) - { - printf ("Thread %d found changed elements %d times\n", - count, threads[count].changed); - } - } - - putchar('\n'); - fflush(stdout); - - for (count = 0; count < THREADS; count++) - { - thread_updates += threads[count].updates; - printf ("%02d: seed %d, updates %d, reads %d, cpu %d\n", - count, threads[count].seed, - threads[count].updates, threads[count].reads, - threads[count].thread_num%cpu_count); - } - - putchar('\n'); - fflush(stdout); - - /* - * Collect statistics for the data. - */ - for (data_count = 0; data_count < DATASIZE; data_count++) - { - data_updates += data[data_count].updates; - printf ("data %02d: value %d, %d updates\n", - data_count, data[data_count].data, data[data_count].updates); - assert(pthread_rwlock_destroy (&data[data_count].lock) == 0); - } - - printf ("%d thread updates, %d data updates\n", - thread_updates, data_updates); - - __PTW32_FTIME(&currSysTime2); - - printf( "\nstart: %ld/%d, stop: %ld/%d, duration:%ld\n", - (long)currSysTime1.time,currSysTime1.millitm, - (long)currSysTime2.time,currSysTime2.millitm, - ((long)((currSysTime2.time*1000+currSysTime2.millitm) - - (currSysTime1.time*1000+currSysTime1.millitm)))); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/self1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/self1.c deleted file mode 100644 index ef3a777..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/self1.c +++ /dev/null @@ -1,67 +0,0 @@ -/* - * self1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test for pthread_self(). - * - * Depends on API functions: - * pthread_self() - * - * Implicitly depends on: - * pthread_getspecific() - * pthread_setspecific() - */ - -#include "test.h" - -int -main(int argc, char * argv[]) -{ - /* - * This should always succeed unless the system has no - * resources (memory) left. - */ - pthread_t self; - -#if defined (__PTW32_STATIC_LIB) && !(defined(_MSC_VER) || defined(__MINGW32__)) - pthread_win32_process_attach_np(); -#endif - - self = pthread_self(); - - assert(self.p != NULL); - -#if defined (__PTW32_STATIC_LIB) && !(defined(_MSC_VER) || defined(__MINGW32__)) - pthread_win32_process_detach_np(); -#endif - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/self2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/self2.c deleted file mode 100644 index ee067ba..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/self2.c +++ /dev/null @@ -1,71 +0,0 @@ -/* - * self2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test for pthread_self(). - * - * Depends on API functions: - * pthread_create() - * pthread_self() - * - * Implicitly depends on: - * pthread_getspecific() - * pthread_setspecific() - */ - -#include "test.h" -#include - -static pthread_t me; - -void * -entry(void * arg) -{ - me = pthread_self(); - - return arg; -} - -int -main() -{ - pthread_t t; - - assert(pthread_create(&t, NULL, entry, NULL) == 0); - - Sleep(100); - - assert(pthread_equal(t, me) != 0); - - /* Success. */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/semaphore1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/semaphore1.c deleted file mode 100644 index ca5051b..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/semaphore1.c +++ /dev/null @@ -1,158 +0,0 @@ -/* - * File: semaphore1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Verify trywait() returns -1 and sets EAGAIN. - * - - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -void * -thr(void * arg) -{ - sem_t s; - int result; - - assert(sem_init(&s, PTHREAD_PROCESS_PRIVATE, 0) == 0); - - assert((result = sem_trywait(&s)) == -1); - - if ( result == -1 ) - { - int err = -#if defined (__PTW32_USES_SEPARATE_CRT) - GetLastError(); -#else - errno; -#endif - if (err != EAGAIN) - { - printf("thread: sem_trywait 1: expecting error %s: got %s\n", - error_string[EAGAIN], error_string[err]); fflush(stdout); - } - assert(err == EAGAIN); - } - else - { - printf("thread: ok 1\n"); - } - - assert((result = sem_post(&s)) == 0); - - assert((result = sem_trywait(&s)) == 0); - - assert(sem_post(&s) == 0); - - return NULL; -} - - -int -main() -{ - pthread_t t; - sem_t s; - void* result1 = (void*)-1; - int result2; - - assert(pthread_create(&t, NULL, thr, NULL) == 0); - assert(pthread_join(t, &result1) == 0); - assert((int)(size_t)result1 == 0); - - assert(sem_init(&s, PTHREAD_PROCESS_PRIVATE, 0) == 0); - - assert((result2 = sem_trywait(&s)) == -1); - - if (result2 == -1) - { - int err = -#if defined (__PTW32_USES_SEPARATE_CRT) - GetLastError(); -#else - errno; -#endif - if (err != EAGAIN) - { - printf("main: sem_trywait 1: expecting error %s: got %s\n", - error_string[EAGAIN], error_string[err]); fflush(stdout); - } - assert(err == EAGAIN); - } - else - { - printf("main: ok 1\n"); - } - - assert((result2 = sem_post(&s)) == 0); - - assert((result2 = sem_trywait(&s)) == 0); - - assert(sem_post(&s) == 0); - - return 0; -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/semaphore2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/semaphore2.c deleted file mode 100644 index 2ad3207..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/semaphore2.c +++ /dev/null @@ -1,106 +0,0 @@ -/* - * File: semaphore2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Verify sem_getvalue returns the correct value. - * - - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -#define MAX_COUNT 100 - -int -main() -{ - sem_t s; - int value = 0; - int i; - - assert(sem_init(&s, PTHREAD_PROCESS_PRIVATE, MAX_COUNT) == 0); - assert(sem_getvalue(&s, &value) == 0); - assert(value == MAX_COUNT); -// printf("Value = %ld\n", value); - - for (i = MAX_COUNT - 1; i >= 0; i--) - { - assert(sem_wait(&s) == 0); - assert(sem_getvalue(&s, &value) == 0); -// printf("Value = %ld\n", value); - assert(value == i); - } - - for (i = 1; i <= MAX_COUNT; i++) - { - assert(sem_post(&s) == 0); - assert(sem_getvalue(&s, &value) == 0); -// printf("Value = %ld\n", value); - assert(value == i); - } - - return 0; -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/semaphore3.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/semaphore3.c deleted file mode 100644 index 881131f..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/semaphore3.c +++ /dev/null @@ -1,123 +0,0 @@ -/* - * File: semaphore3.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Verify sem_getvalue returns the correct number of waiters. - * - - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -#define MAX_COUNT 100 - -sem_t s; - -void * -thr (void * arg) -{ - assert(sem_wait(&s) == 0); - return NULL; -} - -int -main() -{ - int value = 0; - int i; - pthread_t t[MAX_COUNT+1]; - - assert(sem_init(&s, PTHREAD_PROCESS_PRIVATE, 0) == 0); - assert(sem_getvalue(&s, &value) == 0); - //printf("Value = %d\n", value); fflush(stdout); - assert(value == 0); - - for (i = 1; i <= MAX_COUNT; i++) - { - assert(pthread_create(&t[i], NULL, thr, NULL) == 0); - do - { - sched_yield(); - assert(sem_getvalue(&s, &value) == 0); - } - while (-value != i); - //printf("1:Value = %d\n", value); fflush(stdout); - assert(-value == i); - } - - for (i = MAX_COUNT - 1; i >= 0; i--) - { - assert(sem_post(&s) == 0); - assert(sem_getvalue(&s, &value) == 0); - //printf("2:Value = %d\n", value); fflush(stdout); - assert(-value == i); - } - - for (i = MAX_COUNT; i > 0; i--) - { - pthread_join(t[i], NULL); - } - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/semaphore4.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/semaphore4.c deleted file mode 100644 index 06bd1d4..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/semaphore4.c +++ /dev/null @@ -1,130 +0,0 @@ -/* - * File: semaphore4.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Verify sem_getvalue returns the correct number of waiters - * after threads are cancelled. - * - - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -#define MAX_COUNT 100 - -sem_t s; - -void * -thr (void * arg) -{ - assert(sem_wait(&s) == 0); - return NULL; -} - -int -main() -{ - int value = 0; - int i; - pthread_t t[MAX_COUNT+1]; - - assert(sem_init(&s, PTHREAD_PROCESS_PRIVATE, 0) == 0); - assert(sem_getvalue(&s, &value) == 0); - assert(value == 0); - - for (i = 1; i <= MAX_COUNT; i++) - { - assert(pthread_create(&t[i], NULL, thr, NULL) == 0); - do { - sched_yield(); - assert(sem_getvalue(&s, &value) == 0); - } while (value != -i); - assert(-value == i); - } - - assert(sem_getvalue(&s, &value) == 0); - assert(-value == MAX_COUNT); - assert(pthread_cancel(t[50]) == 0); - { - void* result; - assert(pthread_join(t[50], &result) == 0); - } - assert(sem_getvalue(&s, &value) == 0); - assert(-value == (MAX_COUNT - 1)); - - for (i = MAX_COUNT - 2; i >= 0; i--) - { - assert(sem_post(&s) == 0); - assert(sem_getvalue(&s, &value) == 0); - assert(-value == i); - } - - for (i = 1; i <= MAX_COUNT; i++) - if (i != 50) - assert(pthread_join(t[i], NULL) == 0); - - return 0; -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/semaphore4t.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/semaphore4t.c deleted file mode 100644 index 9ab75a8..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/semaphore4t.c +++ /dev/null @@ -1,192 +0,0 @@ -/* - * File: semaphore4t.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Verify sem_getvalue returns the correct number of waiters - * after threads are cancelled. - * - - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - sem_timedwait cancellation. - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -#define MAX_COUNT 100 - -const long NANOSEC_PER_SEC = 1000000000L; - -sem_t s; - -void * -thr (void * arg) -{ - assert(sem_timedwait(&s, NULL) == 0); - return NULL; -} - -int -timeoutwithnanos(sem_t sem, int nanoseconds) -{ - struct timespec ts, rel; - FILETIME ft_before, ft_after; - int rc; - - rel.tv_sec = 0; - rel.tv_nsec = nanoseconds; - - GetSystemTimeAsFileTime(&ft_before); - rc = sem_timedwait(&sem, pthread_win32_getabstime_np(&ts, &rel)); - - /* This should have timed out */ - assert(rc != 0); - assert(errno == ETIMEDOUT); - GetSystemTimeAsFileTime(&ft_after); - // We specified a non-zero wait. Time must advance. - if (ft_before.dwLowDateTime == ft_after.dwLowDateTime && ft_before.dwHighDateTime == ft_after.dwHighDateTime) - { - printf("nanoseconds: %d, rc: %d, errno: %d. before filetime: %d, %d; after filetime: %d, %d\n", - nanoseconds, rc, errno, - (int)ft_before.dwLowDateTime, (int)ft_before.dwHighDateTime, - (int)ft_after.dwLowDateTime, (int)ft_after.dwHighDateTime); - printf("time must advance during sem_timedwait."); - return 1; - } - return 0; -} - -int -testtimeout() -{ - int rc = 0; - sem_t s2; - int value = 0; - assert(sem_init(&s2, PTHREAD_PROCESS_PRIVATE, 0) == 0); - assert(sem_getvalue(&s2, &value) == 0); - assert(value == 0); - - rc += timeoutwithnanos(s2, 1000); // 1 microsecond - rc += timeoutwithnanos(s2, 10 * 1000); // 10 microseconds - rc += timeoutwithnanos(s2, 100 * 1000); // 100 microseconds - rc += timeoutwithnanos(s2, 1000 * 1000); // 1 millisecond - - return rc; -} - -int -testmainstuff() -{ - int value = 0; - int i; - pthread_t t[MAX_COUNT+1]; - - assert(sem_init(&s, PTHREAD_PROCESS_PRIVATE, 0) == 0); - assert(sem_getvalue(&s, &value) == 0); - assert(value == 0); - - for (i = 1; i <= MAX_COUNT; i++) - { - assert(pthread_create(&t[i], NULL, thr, NULL) == 0); - do { - sched_yield(); - assert(sem_getvalue(&s, &value) == 0); - } while (value != -i); - assert(-value == i); - } - - assert(sem_getvalue(&s, &value) == 0); - assert(-value == MAX_COUNT); - assert(pthread_cancel(t[50]) == 0); - assert(pthread_join(t[50], NULL) == 0); - assert(sem_getvalue(&s, &value) == 0); - assert(-value == MAX_COUNT - 1); - - for (i = MAX_COUNT - 2; i >= 0; i--) - { - assert(sem_post(&s) == 0); - assert(sem_getvalue(&s, &value) == 0); - assert(-value == i); - } - - for (i = 1; i <= MAX_COUNT; i++) - { - if (i != 50) - { - assert(pthread_join(t[i], NULL) == 0); - } - } - - return 0; -} - -int -main() -{ - int rc = 0; - - rc += testmainstuff(); - rc += testtimeout(); - - return rc; -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/semaphore5.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/semaphore5.c deleted file mode 100644 index 15ee340..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/semaphore5.c +++ /dev/null @@ -1,105 +0,0 @@ -/* - * File: semaphore5.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Verify sem_destroy EBUSY race avoidance - * - - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -// #define ASSERT_TRACE - -#include "test.h" - -void * -thr(void * arg) -{ - assert(sem_post((sem_t *)arg) == 0); - - return 0; -} - - -int -main() -{ - pthread_t t; - sem_t s; - - assert(sem_init(&s, PTHREAD_PROCESS_PRIVATE, 0) == 0); - assert(pthread_create(&t, NULL, thr, (void *)&s) == 0); - - assert(sem_wait(&s) == 0); - /* - * Normally we would retry this next, but we're only - * interested in unexpected results in this test. - */ - assert(sem_destroy(&s) == 0 || errno == EBUSY); - - assert(pthread_join(t, NULL) == 0); - - return 0; -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/sequence1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/sequence1.c deleted file mode 100644 index 48e1006..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/sequence1.c +++ /dev/null @@ -1,139 +0,0 @@ -/* - * File: sequence1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - that unique thread sequence numbers are generated. - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - This test is implementation specific - * because it uses knowledge of internals that should be - * opaque to an application. - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - analysis output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - unique sequence numbers are generated for every new thread. - * - * Fail Criteria: - * - - */ - -#include "test.h" - -/* - */ - -enum { - NUMTHREADS = PTHREAD_THREADS_MAX -}; - - -static long done = 0; -/* - * seqmap should have 1 in every element except [0] - * Thread sequence numbers start at 1 and we will also - * include this main thread so we need NUMTHREADS+2 - * elements. - */ -static UINT64 seqmap[NUMTHREADS+2]; - -void * func(void * arg) -{ - sched_yield(); - seqmap[(int)pthread_getunique_np(pthread_self())] = 1; - InterlockedIncrement(&done); - - return (void *) 0; -} - -int -main() -{ - pthread_t t[NUMTHREADS]; - pthread_attr_t attr; - int i; - - assert(pthread_attr_init(&attr) == 0); - assert(pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED) == 0); - - for (i = 0; i < NUMTHREADS+2; i++) - { - seqmap[i] = 0; - } - - for (i = 0; i < NUMTHREADS; i++) - { - if (NUMTHREADS/2 == i) - { - /* Include this main thread, which will be an implicit pthread_t */ - seqmap[(int)pthread_getunique_np(pthread_self())] = 1; - } - assert(pthread_create(&t[i], &attr, func, NULL) == 0); - } - - while (NUMTHREADS > InterlockedExchangeAdd((LPLONG)&done, 0L)) - Sleep(100); - - Sleep(100); - - assert(seqmap[0] == 0); - for (i = 1; i < NUMTHREADS+2; i++) - { - assert(seqmap[i] == 1); - } - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/spin1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/spin1.c deleted file mode 100644 index 8aa4820..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/spin1.c +++ /dev/null @@ -1,57 +0,0 @@ -/* - * spin1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Create a simple spinlock object, lock it, and then unlock it again. - * This is the simplest test of the pthread mutex family that we can do. - * - */ - -#include "test.h" - -pthread_spinlock_t lock; - -int -main() -{ - assert(pthread_spin_init(&lock, PTHREAD_PROCESS_PRIVATE) == 0); - - assert(pthread_spin_lock(&lock) == 0); - - assert(pthread_spin_unlock(&lock) == 0); - - assert(pthread_spin_destroy(&lock) == 0); - - assert(pthread_spin_lock(&lock) == EINVAL); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/spin2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/spin2.c deleted file mode 100644 index 50e1775..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/spin2.c +++ /dev/null @@ -1,73 +0,0 @@ -/* - * spin2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Declare a spinlock object, lock it, trylock it, - * and then unlock it again. - * - */ - -#include "test.h" - -pthread_spinlock_t lock = NULL; - -static int washere = 0; - -void * func(void * arg) -{ - assert(pthread_spin_trylock(&lock) == EBUSY); - - washere = 1; - - return 0; -} - -int -main() -{ - pthread_t t; - - assert(pthread_spin_init(&lock, PTHREAD_PROCESS_PRIVATE) == 0); - - assert(pthread_spin_lock(&lock) == 0); - - assert(pthread_create(&t, NULL, func, NULL) == 0); - assert(pthread_join(t, NULL) == 0); - - assert(pthread_spin_unlock(&lock) == 0); - - assert(pthread_spin_destroy(&lock) == 0); - - assert(washere == 1); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/spin3.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/spin3.c deleted file mode 100644 index a666226..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/spin3.c +++ /dev/null @@ -1,74 +0,0 @@ -/* - * spin3.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Thread A locks spin - thread B tries to unlock. - * This should succeed, but it's undefined behaviour. - * - */ - -#include "test.h" - -static int wasHere = 0; - -static pthread_spinlock_t spin; - -void * unlocker(void * arg) -{ - int expectedResult = (int)(size_t)arg; - - wasHere++; - assert(pthread_spin_unlock(&spin) == expectedResult); - wasHere++; - return NULL; -} - -int -main() -{ - pthread_t t; - - wasHere = 0; - assert(pthread_spin_init(&spin, PTHREAD_PROCESS_PRIVATE) == 0); - assert(pthread_spin_lock(&spin) == 0); - assert(pthread_create(&t, NULL, unlocker, (void*)0) == 0); - assert(pthread_join(t, NULL) == 0); - /* - * Our spinlocks don't record the owner thread so any thread can unlock the spinlock, - * but nor is it an error for any thread to unlock a spinlock that is not locked. - */ - assert(pthread_spin_unlock(&spin) == 0); - assert(pthread_spin_destroy(&spin) == 0); - assert(wasHere == 2); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/spin4.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/spin4.c deleted file mode 100644 index 0aea33f..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/spin4.c +++ /dev/null @@ -1,101 +0,0 @@ -/* - * spin4.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Declare a static spinlock object, lock it, spin on it, - * and then unlock it again. - */ - -#include "test.h" -#include - -pthread_spinlock_t lock = PTHREAD_SPINLOCK_INITIALIZER; -__PTW32_STRUCT_TIMEB currSysTimeStart; -__PTW32_STRUCT_TIMEB currSysTimeStop; - -#define GetDurationMilliSecs(_TStart, _TStop) ((_TStop.time*1000+_TStop.millitm) \ - - (_TStart.time*1000+_TStart.millitm)) - -static int washere = 0; - -void * func(void * arg) -{ - __PTW32_FTIME(&currSysTimeStart); - washere = 1; - assert(pthread_spin_lock(&lock) == 0); - assert(pthread_spin_unlock(&lock) == 0); - __PTW32_FTIME(&currSysTimeStop); - - return (void *)(size_t)GetDurationMilliSecs(currSysTimeStart, currSysTimeStop); -} - -int -main() -{ - void* result = (void*)0; - pthread_t t; - int CPUs; - __PTW32_STRUCT_TIMEB sysTime; - - if ((CPUs = pthread_num_processors_np()) == 1) - { - printf("Test not run - it requires multiple CPUs.\n"); - exit(0); - } - - assert(pthread_spin_lock(&lock) == 0); - - assert(pthread_create(&t, NULL, func, NULL) == 0); - - while (washere == 0) - { - sched_yield(); - } - - do - { - sched_yield(); - __PTW32_FTIME(&sysTime); - } - while (GetDurationMilliSecs(currSysTimeStart, sysTime) <= 1000); - - assert(pthread_spin_unlock(&lock) == 0); - - assert(pthread_join(t, &result) == 0); - assert((int)(size_t)result > 1000); - - assert(pthread_spin_destroy(&lock) == 0); - - assert(washere == 1); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/stress1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/stress1.c deleted file mode 100644 index d632107..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/stress1.c +++ /dev/null @@ -1,246 +0,0 @@ -/* - * stress1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Stress test condition variables, mutexes, semaphores. - * - * Test Method (Validation or Falsification): - * - Validation - * - * Requirements Tested: - * - Correct accounting of semaphore and condition variable waiters. - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * Attempting to expose race conditions in cond vars, semaphores etc. - * - Master attempts to signal slave close to when timeout is due. - * - Master and slave do battle continuously until main tells them to stop. - * - Afterwards, the CV must be successfully destroyed (will return an - * error if there are waiters (including any internal semaphore waiters, - * which, if there are, cannot be real waiters). - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - CV is successfully destroyed. - * - * Fail Criteria: - * - CV destroy fails. - */ - -#include "test.h" -#include -#include - - -const unsigned int ITERATIONS = 1000; - -static pthread_t master, slave; -typedef struct { - int value; - pthread_cond_t cv; - pthread_mutex_t mx; -} mysig_t; - -static int allExit; -static mysig_t control = {0, PTHREAD_COND_INITIALIZER, PTHREAD_MUTEX_INITIALIZER}; -static pthread_barrier_t startBarrier, readyBarrier, holdBarrier; -static int timeoutCount = 0; -static int signalsTakenCount = 0; -static int signalsSent = 0; -static int bias = 0; -static int timeout = 10; // Must be > 0 -static const long NANOSEC_PER_MILLISEC = 1000000; - -enum { - CTL_STOP = -1 -}; - -void * -masterThread (void * arg) -{ - int dither = (int)(size_t)arg; - - timeout = (int)(size_t)arg; - - pthread_barrier_wait(&startBarrier); - - do - { - int sleepTime; - - assert(pthread_mutex_lock(&control.mx) == 0); - control.value = timeout; - assert(pthread_mutex_unlock(&control.mx) == 0); - - /* - * We are attempting to send the signal close to when the slave - * is due to timeout. We feel around by adding some [non-random] dither. - * - * dither is in the range 2*timeout peak-to-peak - * sleep time is the average of timeout plus dither. - * e.g. - * if timeout = 10 then dither = 20 and - * sleep millisecs is: 5 <= ms <= 15 - * - * The bias value attempts to apply some negative feedback to keep - * the ratio of timeouts to signals taken close to 1:1. - * bias changes more slowly than dither so as to average more. - * - * Finally, if abs(bias) exceeds timeout then timeout is incremented. - */ - if (signalsSent % timeout == 0) - { - if (timeoutCount > signalsTakenCount) - { - bias++; - } - else if (timeoutCount < signalsTakenCount) - { - bias--; - } - if (bias < -timeout || bias > timeout) - { - timeout++; - } - } - dither = (dither + 1 ) % (timeout * 2); - sleepTime = (timeout - bias + dither) / 2; - Sleep(sleepTime); - assert(pthread_cond_signal(&control.cv) == 0); - signalsSent++; - - pthread_barrier_wait(&holdBarrier); - pthread_barrier_wait(&readyBarrier); - } - while (!allExit); - - return NULL; -} - -void * -slaveThread (void * arg) -{ - struct timespec abstime, reltime; - - pthread_barrier_wait(&startBarrier); - - do - { - assert(pthread_mutex_lock(&control.mx) == 0); - - reltime.tv_sec = (control.value / 1000); - reltime.tv_nsec = (control.value % 1000) * NANOSEC_PER_MILLISEC; - - if (pthread_cond_timedwait(&control.cv, - &control.mx, - pthread_win32_getabstime_np(&abstime, &reltime)) == ETIMEDOUT) - { - timeoutCount++; - } - else - { - signalsTakenCount++; - } - assert(pthread_mutex_unlock(&control.mx) == 0); - - pthread_barrier_wait(&holdBarrier); - pthread_barrier_wait(&readyBarrier); - } - while (!allExit); - - return NULL; -} - -int -main () -{ - unsigned int i; - - assert(pthread_barrier_init(&startBarrier, NULL, 3) == 0); - assert(pthread_barrier_init(&readyBarrier, NULL, 3) == 0); - assert(pthread_barrier_init(&holdBarrier, NULL, 3) == 0); - - assert(pthread_create(&master, NULL, masterThread, (void *)(size_t)timeout) == 0); - assert(pthread_create(&slave, NULL, slaveThread, NULL) == 0); - - allExit = FALSE; - - pthread_barrier_wait(&startBarrier); - - for (i = 1; !allExit; i++) - { - pthread_barrier_wait(&holdBarrier); - if (i >= ITERATIONS) - { - allExit = TRUE; - } - pthread_barrier_wait(&readyBarrier); - } - - assert(pthread_join(slave, NULL) == 0); - assert(pthread_join(master, NULL) == 0); - - printf("Signals sent = %d\nWait timeouts = %d\nSignals taken = %d\nBias = %d\nTimeout = %d\n", - signalsSent, - timeoutCount, - signalsTakenCount, - (int) bias, - timeout); - - /* Cleanup */ - assert(pthread_barrier_destroy(&holdBarrier) == 0); - assert(pthread_barrier_destroy(&readyBarrier) == 0); - assert(pthread_barrier_destroy(&startBarrier) == 0); - assert(pthread_cond_destroy(&control.cv) == 0); - assert(pthread_mutex_destroy(&control.mx) == 0); - - /* Success. */ - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/test.h b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/test.h deleted file mode 100644 index db72214..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/test.h +++ /dev/null @@ -1,201 +0,0 @@ -/* - * test.h - * - * Useful definitions and declarations for tests. - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - */ - -#ifndef _PTHREAD_TEST_H_ -#define _PTHREAD_TEST_H_ - -/* - * Some tests sneak a peek at ../implement.h - * This is used inside ../implement.h to control - * what these test apps see and don't see. - */ -#define __PTW32_TEST_SNEAK_PEEK - -#include "pthread.h" -#include "sched.h" -#include "semaphore.h" - -#include -#include -#include -/* - * FIXME: May not be available on all platforms. - */ -#include - -#define __PTW32_THREAD_NULL_ID {NULL,0} - -/* - * Some non-thread POSIX API substitutes - */ -#if !defined(__MINGW64_VERSION_MAJOR) -# define rand_r( _seed ) \ - ( _seed == _seed? rand() : rand() ) -#endif - -#if defined(__MINGW32__) -# include -#elif defined(__BORLANDC__) -# define int64_t ULONGLONG -#else -# define int64_t _int64 -#endif - -#if defined(_MSC_VER) && _MSC_VER >= 1400 -# define __PTW32_FTIME(x) _ftime64_s(x) -# define __PTW32_STRUCT_TIMEB struct __timeb64 -#elif ( defined(_MSC_VER) && _MSC_VER >= 1300 ) || \ - ( defined(__MINGW32__) && __MSVCRT_VERSION__ >= 0x0601 ) -# define __PTW32_FTIME(x) _ftime64(x) -# define __PTW32_STRUCT_TIMEB struct __timeb64 -#else -# define __PTW32_FTIME(x) _ftime(x) -# define __PTW32_STRUCT_TIMEB struct _timeb -#endif - - -const char * error_string[] = { - "ZERO_or_EOK", - "EPERM", - "ENOFILE_or_ENOENT", - "ESRCH", - "EINTR", - "EIO", - "ENXIO", - "E2BIG", - "ENOEXEC", - "EBADF", - "ECHILD", - "EAGAIN", - "ENOMEM", - "EACCES", - "EFAULT", - "UNKNOWN_15", - "EBUSY", - "EEXIST", - "EXDEV", - "ENODEV", - "ENOTDIR", - "EISDIR", - "EINVAL", - "ENFILE", - "EMFILE", - "ENOTTY", - "UNKNOWN_26", - "EFBIG", - "ENOSPC", - "ESPIPE", - "EROFS", - "EMLINK", - "EPIPE", - "EDOM", - "ERANGE", - "UNKNOWN_35", - "EDEADLOCK_or_EDEADLK", - "UNKNOWN_37", - "ENAMETOOLONG", - "ENOLCK", - "ENOSYS", - "ENOTEMPTY", -#if __PTW32_VERSION_MAJOR > 2 - "EILSEQ", -#else - "EILSEQ_or_EOWNERDEAD", - "ENOTRECOVERABLE" -#endif -}; - -/* - * The Mingw32 assert macro calls the CRTDLL _assert function - * which pops up a dialog. We want to run in batch mode so - * we define our own assert macro. - */ -#ifdef assert -# undef assert -#endif - -#ifndef ASSERT_TRACE -# define ASSERT_TRACE 0 -#else -# undef ASSERT_TRACE -# define ASSERT_TRACE 1 -#endif - -# define assert(e) \ - ((e) ? ((ASSERT_TRACE) ? fprintf(stderr, \ - "Assertion succeeded: (%s), file %s, line %d\n", \ - #e, __FILE__, (int) __LINE__), \ - fflush(stderr) : \ - 0) : \ - (fprintf(stderr, "Assertion failed: (%s), file %s, line %d\n", \ - #e, __FILE__, (int) __LINE__), exit(1), 0)) - -int assertE; -# define assert_e(e, o, r) \ - (((assertE = e) o (r)) ? ((ASSERT_TRACE) ? fprintf(stderr, \ - "Assertion succeeded: (%s), file %s, line %d\n", \ - #e, __FILE__, (int) __LINE__), \ - fflush(stderr) : \ - 0) : \ - (assertE <= (int) (sizeof(error_string)/sizeof(error_string[0]))) ? \ - (fprintf(stderr, "Assertion failed: (%s %s %s), file %s, line %d, error %s\n", \ - #e,#o,#r, __FILE__, (int) __LINE__, error_string[assertE]), exit(1), 0) :\ - (fprintf(stderr, \ - "Assertion failed: (%s %s %s), file %s, line %d, error %d\n", \ - #e,#o,#r, __FILE__, (int) __LINE__, assertE), exit(1), 0)) - -#endif - -# define BEGIN_MUTEX_STALLED_ROBUST(mxAttr) \ - for(;;) \ - { \ - static int _i=0; \ - static int _robust; \ - pthread_mutexattr_getrobust(&(mxAttr), &_robust); - -# define END_MUTEX_STALLED_ROBUST(mxAttr) \ - printf("Pass %s\n", _robust==PTHREAD_MUTEX_ROBUST?"Robust":"Non-robust"); \ - if (++_i > 1) \ - break; \ - else \ - { \ - pthread_mutexattr_t *pma, *pmaEnd; \ - for(pma = &(mxAttr), pmaEnd = pma + sizeof(mxAttr)/sizeof(pthread_mutexattr_t); \ - pma < pmaEnd; \ - pthread_mutexattr_setrobust(pma++, PTHREAD_MUTEX_ROBUST)); \ - } \ - } - -# define IS_ROBUST (_robust==PTHREAD_MUTEX_ROBUST) diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/threestage.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/threestage.c deleted file mode 100644 index cd607f0..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/threestage.c +++ /dev/null @@ -1,583 +0,0 @@ -/* - This source code is taken directly from examples in the book - Windows System Programming, Edition 4 by Johnson (John) Hart - - Session 6, Chapter 10. ThreeStage.c - - Several required additional header and source files from the - book examples have been included inline to simplify building. - The only modification to the code has been to provide default - values when run without arguments. - - Three-stage Producer Consumer system - Other files required in this project, either directly or - in the form of libraries (DLLs are preferable) - QueueObj.c (inlined here) - Messages.c (inlined here) - - Usage: ThreeStage npc goal [display] - start up "npc" paired producer and consumer threads. - Display messages if "display" is non-zero - Each producer must produce a total of - "goal" messages, where each message is tagged - with the consumer that should receive it - Messages are sent to a "transmitter thread" which performs - additional processing before sending message groups to the - "receiver thread." Finally, the receiver thread sends - the messages to the consumer threads. - - Transmitter: Receive messages one at a time from producers, - create a transmission message of up to "TBLOCK_SIZE" messages - to be sent to the Receiver. (this could be a network xfer - Receiver: Take message blocks sent by the Transmitter - and send the individual messages to the designated consumer - */ - -/* Suppress warning re use of ctime() */ -#define _CRT_SECURE_NO_WARNINGS 1 - -#include "test.h" -#define sleep(i) Sleep(i*1000) -#ifndef max -#define max(a,b) ((a) > (b) ? (a) : (b)) -#endif - -#define DATA_SIZE 256 -typedef struct msg_block_tag { /* Message block */ - pthread_mutex_t mguard; /* Mutex for the message block */ - pthread_cond_t mconsumed; /* Event: Message consumed; */ - /* Produce a new one or stop */ - pthread_cond_t mready; /* Event: Message ready */ - /* - * Note: the mutex and events are not used by some programs, such - * as Program 10-3, 4, 5 (the multi-stage pipeline) as the messages - * are part of a protected queue - */ - volatile unsigned int source; /* Creating producer identity */ - volatile unsigned int destination;/* Identity of receiving thread*/ - - volatile unsigned int f_consumed; - volatile unsigned int f_ready; - volatile unsigned int f_stop; - /* Consumed & ready state flags, stop flag */ - volatile unsigned int sequence; /* Message block sequence number */ - time_t timestamp; - unsigned int checksum; /* Message contents checksum */ - unsigned int data[DATA_SIZE]; /* Message Contents */ -} msg_block_t; - -void message_fill (msg_block_t *, unsigned int, unsigned int, unsigned int); -void message_display (msg_block_t *); - -#define CV_TIMEOUT 5 /* tunable parameter for the CV model */ - - -/* - Definitions of a synchronized, general bounded queue structure. - Queues are implemented as arrays with indices to youngest - and oldest messages, with wrap around. - Each queue also contains a guard mutex and - "not empty" and "not full" condition variables. - Finally, there is a pointer to an array of messages of - arbitrary type - */ - -typedef struct queue_tag { /* General purpose queue */ - pthread_mutex_t q_guard;/* Guard the message block */ - pthread_cond_t q_ne; /* Event: Queue is not empty */ - pthread_cond_t q_nf; /* Event: Queue is not full */ - /* These two events are manual-reset for the broadcast model - * and auto-reset for the signal model */ - volatile unsigned int q_size; /* Queue max size size */ - volatile unsigned int q_first; /* Index of oldest message */ - volatile unsigned int q_last; /* Index of youngest msg */ - volatile unsigned int q_destroyed;/* Q receiver has terminated */ - void * msg_array; /* array of q_size messages */ -} queue_t; - -/* Queue management functions */ -unsigned int q_initialize (queue_t *, unsigned int, unsigned int); -unsigned int q_destroy (queue_t *); -unsigned int q_destroyed (queue_t *); -unsigned int q_empty (queue_t *); -unsigned int q_full (queue_t *); -unsigned int q_get (queue_t *, void *, unsigned int, unsigned int); -unsigned int q_put (queue_t *, void *, unsigned int, unsigned int); -unsigned int q_remove (queue_t *, void *, unsigned int); -unsigned int q_insert (queue_t *, void *, unsigned int); - -#include -#include -#include - -#define DELAY_COUNT 1000 -#define MAX_THREADS 1024 - -/* Queue lengths and blocking factors. These numbers are arbitrary and */ -/* can be adjusted for performance tuning. The current values are */ -/* not well balanced. */ - -#define TBLOCK_SIZE 5 /* Transmitter combines this many messages at at time */ -#define Q_TIMEOUT 2000 /* Transmiter and receiver timeout (ms) waiting for messages */ -//#define Q_TIMEOUT INFINITE -#define MAX_RETRY 5 /* Number of q_get retries before quitting */ -#define P2T_QLEN 10 /* Producer to Transmitter queue length */ -#define T2R_QLEN 4 /* Transmitter to Receiver queue length */ -#define R2C_QLEN 4 /* Receiver to Consumer queue length - there is one - * such queue for each consumer */ - -void * producer (void *); -void * consumer (void *); -void * transmitter (void *); -void * receiver (void *); - - -typedef struct _THARG { - volatile unsigned int thread_number; - volatile unsigned int work_goal; /* used by producers */ - volatile unsigned int work_done; /* Used by producers and consumers */ -} THARG; - - -/* Grouped messages sent by the transmitter to receiver */ -typedef struct T2R_MSG_TYPEag { - volatile unsigned int num_msgs; /* Number of messages contained */ - msg_block_t messages [TBLOCK_SIZE]; -} T2R_MSG_TYPE; - -queue_t p2tq, t2rq, *r2cq_array; - -/* ShutDown, AllProduced are global flags to shut down the system & transmitter */ -static volatile unsigned int ShutDown = 0; -static volatile unsigned int AllProduced = 0; -static unsigned int DisplayMessages = 0; - -int main (int argc, char * argv[]) -{ - unsigned int tstatus = 0, nthread, ithread, goal, thid; - pthread_t *producer_th, *consumer_th, transmitter_th, receiver_th; - THARG *producer_arg, *consumer_arg; - - if (argc < 3) { - nthread = 32; - goal = 1000; - } else { - nthread = atoi(argv[1]); - goal = atoi(argv[2]); - if (argc >= 4) - DisplayMessages = atoi(argv[3]); - } - - srand ((int)time(NULL)); /* Seed the RN generator */ - - if (nthread > MAX_THREADS) { - printf ("Maximum number of producers or consumers is %d.\n", MAX_THREADS); - return 2; - } - producer_th = (pthread_t *) malloc (nthread * sizeof(pthread_t)); - producer_arg = (THARG *) calloc (nthread, sizeof (THARG)); - consumer_th = (pthread_t *) malloc (nthread * sizeof(pthread_t)); - consumer_arg = (THARG *) calloc (nthread, sizeof (THARG)); - - if (producer_th == NULL || producer_arg == NULL - || consumer_th == NULL || consumer_arg == NULL) - perror ("Cannot allocate working memory for threads."); - - q_initialize (&p2tq, sizeof(msg_block_t), P2T_QLEN); - q_initialize (&t2rq, sizeof(T2R_MSG_TYPE), T2R_QLEN); - /* Allocate and initialize Receiver to Consumer queue for each consumer */ - r2cq_array = (queue_t *) calloc (nthread, sizeof(queue_t)); - if (r2cq_array == NULL) perror ("Cannot allocate memory for r2c queues"); - - for (ithread = 0; ithread < nthread; ithread++) { - /* Initialize r2c queue for this consumer thread */ - q_initialize (&r2cq_array[ithread], sizeof(msg_block_t), R2C_QLEN); - /* Fill in the thread arg */ - consumer_arg[ithread].thread_number = ithread; - consumer_arg[ithread].work_goal = goal; - consumer_arg[ithread].work_done = 0; - - tstatus = pthread_create (&consumer_th[ithread], NULL, - consumer, (void *)&consumer_arg[ithread]); - if (tstatus != 0) - perror ("Cannot create consumer thread"); - - producer_arg[ithread].thread_number = ithread; - producer_arg[ithread].work_goal = goal; - producer_arg[ithread].work_done = 0; - tstatus = pthread_create (&producer_th[ithread], NULL, - producer, (void *)&producer_arg[ithread]); - if (tstatus != 0) - perror ("Cannot create producer thread"); - } - - tstatus = pthread_create (&transmitter_th, NULL, transmitter, &thid); - if (tstatus != 0) - perror ("Cannot create tranmitter thread"); - tstatus = pthread_create (&receiver_th, NULL, receiver, &thid); - if (tstatus != 0) - perror ("Cannot create receiver thread"); - - - printf ("BOSS: All threads are running\n"); - /* Wait for the producers to complete */ - /* The implementation allows too many threads for WaitForMultipleObjects */ - /* although you could call WFMO in a loop */ - for (ithread = 0; ithread < nthread; ithread++) { - tstatus = pthread_join (producer_th[ithread], NULL); - if (tstatus != 0) - perror ("Cannot wait for producer thread"); - printf ("BOSS: Producer %d produced %d work units\n", - ithread, producer_arg[ithread].work_done); - } - /* Producers have completed their work. */ - printf ("BOSS: All producers have completed their work.\n"); - AllProduced = 1; - - /* Wait for the consumers to complete */ - for (ithread = 0; ithread < nthread; ithread++) { - tstatus = pthread_join (consumer_th[ithread], NULL); - if (tstatus != 0) - perror ("Cannot wait for consumer thread"); - printf ("BOSS: consumer %d consumed %d work units\n", - ithread, consumer_arg[ithread].work_done); - } - printf ("BOSS: All consumers have completed their work.\n"); - - ShutDown = 1; /* Set a shutdown flag - All messages have been consumed */ - - /* Wait for the transmitter and receiver */ - - tstatus = pthread_join (transmitter_th, NULL); - if (tstatus != 0) - perror ("Failed waiting for transmitter"); - tstatus = pthread_join (receiver_th, NULL); - if (tstatus != 0) - perror ("Failed waiting for receiver"); - - q_destroy (&p2tq); - q_destroy (&t2rq); - for (ithread = 0; ithread < nthread; ithread++) - q_destroy (&r2cq_array[ithread]); - free (r2cq_array); - free (producer_th); - free (consumer_th); - free (producer_arg); - free(consumer_arg); - printf ("System has finished. Shutting down\n"); - return 0; -} - -void * producer (void * arg) -{ - THARG * parg; - unsigned int ithread, tstatus = 0; - msg_block_t msg; - - parg = (THARG *)arg; - ithread = parg->thread_number; - - while (parg->work_done < parg->work_goal && !ShutDown) { - /* Periodically produce work units until the goal is satisfied */ - /* messages receive a source and destination address which are */ - /* the same in this case but could, in general, be different. */ - sleep (rand()/100000000); - message_fill (&msg, ithread, ithread, parg->work_done); - - /* put the message in the queue - Use an infinite timeout to assure - * that the message is inserted, even if consumers are delayed */ - tstatus = q_put (&p2tq, &msg, sizeof(msg), INFINITE); - if (0 == tstatus) { - parg->work_done++; - } - } - - return 0; -} - -void * consumer (void * arg) -{ - THARG * carg; - unsigned int tstatus = 0, ithread, Retries = 0; - msg_block_t msg; - queue_t *pr2cq; - - carg = (THARG *) arg; - ithread = carg->thread_number; - - carg = (THARG *)arg; - pr2cq = &r2cq_array[ithread]; - - while (carg->work_done < carg->work_goal && Retries < MAX_RETRY && !ShutDown) { - /* Receive and display/process messages */ - /* Try to receive the requested number of messages, - * but allow for early system shutdown */ - - tstatus = q_get (pr2cq, &msg, sizeof(msg), Q_TIMEOUT); - if (0 == tstatus) { - if (DisplayMessages > 0) message_display (&msg); - carg->work_done++; - Retries = 0; - } else { - Retries++; - } - } - - return NULL; -} - -void * transmitter (void * arg) -{ - - /* Obtain multiple producer messages, combining into a single */ - /* compound message for the receiver */ - - unsigned int tstatus = 0, im, Retries = 0; - T2R_MSG_TYPE t2r_msg = {0}; - msg_block_t p2t_msg; - - while (!ShutDown && !AllProduced) { - t2r_msg.num_msgs = 0; - /* pack the messages for transmission to the receiver */ - im = 0; - while (im < TBLOCK_SIZE && !ShutDown && Retries < MAX_RETRY && !AllProduced) { - tstatus = q_get (&p2tq, &p2t_msg, sizeof(p2t_msg), Q_TIMEOUT); - if (0 == tstatus) { - memcpy (&t2r_msg.messages[im], &p2t_msg, sizeof(p2t_msg)); - t2r_msg.num_msgs++; - im++; - Retries = 0; - } else { /* Timed out. */ - Retries++; - } - } - tstatus = q_put (&t2rq, &t2r_msg, sizeof(t2r_msg), INFINITE); - if (tstatus != 0) return NULL; - } - return NULL; -} - - -void * receiver (void * arg) -{ - /* Obtain compound messages from the transmitter and unblock them */ - /* and transmit to the designated consumer. */ - - unsigned int tstatus = 0, im, ic, Retries = 0; - T2R_MSG_TYPE t2r_msg; - msg_block_t r2c_msg; - - while (!ShutDown && Retries < MAX_RETRY) { - tstatus = q_get (&t2rq, &t2r_msg, sizeof(t2r_msg), Q_TIMEOUT); - if (tstatus != 0) { /* Timeout - Have the producers shut down? */ - Retries++; - continue; - } - Retries = 0; - /* Distribute the packaged messages to the proper consumer */ - im = 0; - while (im < t2r_msg.num_msgs) { - memcpy (&r2c_msg, &t2r_msg.messages[im], sizeof(r2c_msg)); - ic = r2c_msg.destination; /* Destination consumer */ - tstatus = q_put (&r2cq_array[ic], &r2c_msg, sizeof(r2c_msg), INFINITE); - if (0 == tstatus) im++; - } - } - return NULL; -} - -#if (!defined INFINITE) -#define INFINITE 0xFFFFFFFF -#endif - -/* - Finite bounded queue management functions - q_get, q_put timeouts (max_wait) are in ms - convert to sec, rounding up - */ -unsigned int q_get (queue_t *q, void * msg, unsigned int msize, unsigned int MaxWait) -{ - int tstatus = 0, got_msg = 0, time_inc = (MaxWait + 999) /1000; - struct timespec timeout; - timeout.tv_nsec = 0; - - if (q_destroyed(q)) return 1; - pthread_mutex_lock (&q->q_guard); - while (q_empty (q) && 0 == tstatus) { - if (MaxWait != INFINITE) { - timeout.tv_sec = time(NULL) + time_inc; - tstatus = pthread_cond_timedwait (&q->q_ne, &q->q_guard, &timeout); - } else { - tstatus = pthread_cond_wait (&q->q_ne, &q->q_guard); - } - } - /* remove the message, if any, from the queue */ - if (0 == tstatus && !q_empty (q)) { - q_remove (q, msg, msize); - got_msg = 1; - /* Signal that the queue is not full as we've removed a message */ - pthread_cond_broadcast (&q->q_nf); - } - pthread_mutex_unlock (&q->q_guard); - return (0 == tstatus && got_msg == 1 ? 0 : max(1, tstatus)); /* 0 indicates success */ -} - -unsigned int q_put (queue_t *q, void * msg, unsigned int msize, unsigned int MaxWait) -{ - int tstatus = 0, put_msg = 0, time_inc = (MaxWait + 999) /1000; - struct timespec timeout; - timeout.tv_nsec = 0; - - if (q_destroyed(q)) return 1; - pthread_mutex_lock (&q->q_guard); - while (q_full (q) && 0 == tstatus) { - if (MaxWait != INFINITE) { - timeout.tv_sec = time(NULL) + time_inc; - tstatus = pthread_cond_timedwait (&q->q_nf, &q->q_guard, &timeout); - } else { - tstatus = pthread_cond_wait (&q->q_nf, &q->q_guard); - } - } - /* Insert the message into the queue if there's room */ - if (0 == tstatus && !q_full (q)) { - q_insert (q, msg, msize); - put_msg = 1; - /* Signal that the queue is not empty as we've inserted a message */ - pthread_cond_broadcast (&q->q_ne); - } - pthread_mutex_unlock (&q->q_guard); - return (0 == tstatus && put_msg == 1 ? 0 : max(1, tstatus)); /* 0 indictates success */ -} - -unsigned int q_initialize (queue_t *q, unsigned int msize, unsigned int nmsgs) -{ - /* Initialize queue, including its mutex and events */ - /* Allocate storage for all messages. */ - - q->q_first = q->q_last = 0; - q->q_size = nmsgs; - q->q_destroyed = 0; - - pthread_mutex_init (&q->q_guard, NULL); - pthread_cond_init (&q->q_ne, NULL); - pthread_cond_init (&q->q_nf, NULL); - - if ((q->msg_array = calloc (nmsgs, msize)) == NULL) return 1; - return 0; /* No error */ -} - -unsigned int q_destroy (queue_t *q) -{ - if (q_destroyed(q)) return 1; - /* Free all the resources created by q_initialize */ - pthread_mutex_lock (&q->q_guard); - q->q_destroyed = 1; - free (q->msg_array); - pthread_cond_destroy (&q->q_ne); - pthread_cond_destroy (&q->q_nf); - pthread_mutex_unlock (&q->q_guard); - pthread_mutex_destroy (&q->q_guard); - - return 0; -} - -unsigned int q_destroyed (queue_t *q) -{ - return (q->q_destroyed); -} - -unsigned int q_empty (queue_t *q) -{ - return (q->q_first == q->q_last); -} - -unsigned int q_full (queue_t *q) -{ - return ((q->q_first - q->q_last) == 1 || - (q->q_last == q->q_size-1 && q->q_first == 0)); -} - - -unsigned int q_remove (queue_t *q, void * msg, unsigned int msize) -{ - char *pm; - - pm = (char *)q->msg_array; - /* Remove oldest ("first") message */ - memcpy (msg, pm + (q->q_first * msize), msize); - // Invalidate the message - q->q_first = ((q->q_first + 1) % q->q_size); - return 0; /* no error */ -} - -unsigned int q_insert (queue_t *q, void * msg, unsigned int msize) -{ - char *pm; - - pm = (char *)q->msg_array; - /* Add a new youngest ("last") message */ - if (q_full(q)) return 1; /* Error - Q is full */ - memcpy (pm + (q->q_last * msize), msg, msize); - q->q_last = ((q->q_last + 1) % q->q_size); - - return 0; -} - -unsigned int compute_checksum (void * msg, unsigned int length) -{ - /* Computer an xor checksum on the entire message of "length" - * integers */ - unsigned int i, cs = 0, *pint; - - pint = (unsigned int *) msg; - for (i = 0; i < length; i++) { - cs = (cs ^ *pint); - pint++; - } - return cs; -} - -void message_fill (msg_block_t *mblock, unsigned int src, unsigned int dest, unsigned int seqno) -{ - /* Fill the message buffer, and include checksum and timestamp */ - /* This function is called from the producer thread while it */ - /* owns the message block mutex */ - - unsigned int i; - - mblock->checksum = 0; - for (i = 0; i < DATA_SIZE; i++) { - mblock->data[i] = rand(); - } - mblock->source = src; - mblock->destination = dest; - mblock->sequence = seqno; - mblock->timestamp = time(NULL); - mblock->checksum = compute_checksum (mblock, sizeof(msg_block_t)/sizeof(unsigned int)); - /* printf ("Generated message: %d %d %d %d %x %x\n", - src, dest, seqno, mblock->timestamp, - mblock->data[0], mblock->data[DATA_SIZE-1]); */ - return; -} - -void message_display (msg_block_t *mblock) -{ - /* Display message buffer and timestamp, validate checksum */ - /* This function is called from the consumer thread while it */ - /* owns the message block mutex */ - unsigned int tcheck = 0; - - tcheck = compute_checksum (mblock, sizeof(msg_block_t)/sizeof(unsigned int)); - printf ("\nMessage number %d generated at: %s", - mblock->sequence, ctime (&(mblock->timestamp))); - printf ("Source and destination: %d %d\n", - mblock->source, mblock->destination); - printf ("First and last entries: %x %x\n", - mblock->data[0], mblock->data[DATA_SIZE-1]); - if (tcheck == 0 /*mblock->checksum was 0 when CS first computed */) - printf ("GOOD ->Checksum was validated.\n"); - else - printf ("BAD ->Checksum failed. message was corrupted\n"); - - return; - -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/timeouts.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/timeouts.c deleted file mode 100644 index 99d8a0c..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/timeouts.c +++ /dev/null @@ -1,251 +0,0 @@ -/* - * File: timeouts.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - confirm accuracy of abstime calculations and timeouts - * - * Test Method (Validation or Falsification): - * - time actual CV wait timeout using a sequence of increasing sub 1 second timeouts. - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - Printed measured elapsed time should closely match specified timeout. - * - Return code should always be ETIMEDOUT (usually 138 but possibly 10060) - * - * Assumptions: - * - - * - * Pass Criteria: - * - Relies on observation. - * - * Fail Criteria: - * - - */ - -#include "test.h" - -/* - */ - -#include -#include -#include -#include -#include -#include - -#include "pthread.h" - -#define DEFAULT_MINTIME_INIT 999999999 -#define CYG_ONEBILLION 1000000000LL -#define CYG_ONEMILLION 1000000LL -#define CYG_ONEKAPPA 1000LL - -#if defined(_MSC_VER) && (_MSC_VER > 1200) -typedef long long cyg_tim_t; //msvc > 6.0 -#else -typedef int64_t cyg_tim_t; //msvc 6.0 -#endif - -LARGE_INTEGER frequency; -LARGE_INTEGER global_start; - -cyg_tim_t CYG_DIFFT(cyg_tim_t t1, cyg_tim_t t2) -{ - return (cyg_tim_t)((t2 - t1) * CYG_ONEBILLION / frequency.QuadPart); //nsec -} - -void CYG_InitTimers() -{ - QueryPerformanceFrequency(&frequency); - global_start.QuadPart = 0; -} - -void CYG_MARK1(cyg_tim_t *T) -{ - LARGE_INTEGER curTime; - QueryPerformanceCounter (&curTime); - *T = (curTime.QuadPart);// + global_start.QuadPart); -} - -///////////////////GetTimestampTS///////////////// - -#if 1 - -int GetTimestampTS(struct timespec *tv) -{ - struct _timeb timebuffer; - -#if !(_MSC_VER <= 1200) - _ftime64_s( &timebuffer ); //msvc > 6.0 -#else - _ftime( &timebuffer ); //msvc = 6.0 -#endif - - tv->tv_sec = timebuffer.time; - tv->tv_nsec = 1000000L * timebuffer.millitm; - return 0; -} - -#else - -int GetTimestampTS(struct timespec *tv) -{ - static LONGLONG epoch = 0; - SYSTEMTIME local; - FILETIME abs; - LONGLONG now; - - if(!epoch) { - memset(&local,0,sizeof(SYSTEMTIME)); - local.wYear = 1970; - local.wMonth = 1; - local.wDay = 1; - local.wHour = 0; - local.wMinute = 0; - local.wSecond = 0; - SystemTimeToFileTime(&local, &abs); - epoch = *(LONGLONG *)&abs; - } - GetSystemTime(&local); - SystemTimeToFileTime(&local, &abs); - now = *(LONGLONG *)&abs; - now = now - epoch; - tv->tv_sec = (long)(now / 10000000); - tv->tv_nsec = (long)((now * 100) % 1000000000); - - return 0; -} - -#endif - -///////////////////GetTimestampTS///////////////// - - -#define MSEC_F 1000000L -#define USEC_F 1000L -#define NSEC_F 1L - -pthread_mutexattr_t mattr_; -pthread_mutex_t mutex_; -pthread_condattr_t cattr_; -pthread_cond_t cv_; - -int Init(void) -{ - assert(0 == pthread_mutexattr_init(&mattr_)); - assert(0 == pthread_mutex_init(&mutex_, &mattr_)); - assert(0 == pthread_condattr_init(&cattr_)); - assert(0 == pthread_cond_init(&cv_, &cattr_)); - return 0; -} - -int Destroy(void) -{ - assert(0 == pthread_cond_destroy(&cv_)); - assert(0 == pthread_mutex_destroy(&mutex_)); - assert(0 == pthread_mutexattr_destroy(&mattr_)); - assert(0 == pthread_condattr_destroy(&cattr_)); - return 0; -} - -int Wait(time_t sec, long nsec) -{ - struct timespec abstime; - long sc; - int result = 0; - GetTimestampTS(&abstime); - abstime.tv_sec += sec; - abstime.tv_nsec += nsec; - if((sc = (abstime.tv_nsec / 1000000000L))){ - abstime.tv_sec += sc; - abstime.tv_nsec %= 1000000000L; - } - assert(0 == pthread_mutex_lock(&mutex_)); - /* - * We don't need to check the CV. - */ - result = pthread_cond_timedwait(&cv_, &mutex_, &abstime); - assert(result != 0); - assert(errno == ETIMEDOUT); - pthread_mutex_unlock(&mutex_); - return result; -} - -char tbuf[128]; -void printtim(cyg_tim_t rt, cyg_tim_t dt, int wres) -{ - printf("wait result [%d]: timeout(ms) [expected/actual]: %ld/%ld\n", wres, (long)(rt/CYG_ONEMILLION), (long)(dt/CYG_ONEMILLION)); -} - - -int main(int argc, char* argv[]) -{ - int i = 0; - int wres = 0; - cyg_tim_t t1, t2, dt, rt; - - CYG_InitTimers(); - - Init(); - - while(i++ < 10){ - rt = 90*i*MSEC_F; - CYG_MARK1(&t1); - wres = Wait(0, (long)(size_t)rt); - CYG_MARK1(&t2); - dt = CYG_DIFFT(t1, t2); - printtim(rt, dt, wres); - } - - Destroy(); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/tryentercs.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/tryentercs.c deleted file mode 100644 index 51154e6..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/tryentercs.c +++ /dev/null @@ -1,101 +0,0 @@ -/* - * tryentercs.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * See if we have the TryEnterCriticalSection function. - * Does not use any part of pthreads. - */ - -#include -#include -#include - -/* - * Function pointer to TryEnterCriticalSection if it exists - * - otherwise NULL - */ -BOOL (WINAPI *_try_enter_critical_section)(LPCRITICAL_SECTION) = -NULL; - -/* - * Handle to kernel32.dll - */ -static HINSTANCE _h_kernel32; - - -int -main() -{ - CRITICAL_SECTION cs; - - SetLastError(0); - - printf("Last Error [main enter] %ld\n", (long) GetLastError()); - - /* - * Load KERNEL32 and try to get address of TryEnterCriticalSection - */ - _h_kernel32 = LoadLibrary(TEXT("KERNEL32.DLL")); - _try_enter_critical_section = - (BOOL (PT_STDCALL *)(LPCRITICAL_SECTION)) - GetProcAddress(_h_kernel32, - (LPCSTR) "TryEnterCriticalSection"); - - if (_try_enter_critical_section != NULL) - { - InitializeCriticalSection(&cs); - - SetLastError(0); - - if ((*_try_enter_critical_section)(&cs) != 0) - { - LeaveCriticalSection(&cs); - } - else - { - printf("Last Error [try enter] %ld\n", (long) GetLastError()); - - _try_enter_critical_section = NULL; - } - DeleteCriticalSection(&cs); - } - - (void) FreeLibrary(_h_kernel32); - - printf("This system %s TryEnterCriticalSection.\n", - (_try_enter_critical_section == NULL) ? "DOES NOT SUPPORT" : "SUPPORTS"); - printf("POSIX Mutexes will be based on Win32 %s.\n", - (_try_enter_critical_section == NULL) ? "Mutexes" : "Critical Sections"); - - return(0); -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/tryentercs2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/tryentercs2.c deleted file mode 100644 index a747b0f..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/tryentercs2.c +++ /dev/null @@ -1,90 +0,0 @@ -/* - * tryentercs.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * See if we have the TryEnterCriticalSection function. - * Does not use any part of pthreads. - */ - -#include -#include -#include - -/* - * Function pointer to TryEnterCriticalSection if it exists - * - otherwise NULL - */ -BOOL (WINAPI *_try_enter_critical_section)(LPCRITICAL_SECTION) = NULL; - -/* - * Handle to kernel32.dll - */ -static HINSTANCE _h_kernel32; - - -int -main() -{ - LPCRITICAL_SECTION lpcs = NULL; - - SetLastError(0); - - printf("Last Error [main enter] %ld\n", (long) GetLastError()); - - /* - * Load KERNEL32 and try to get address of TryEnterCriticalSection - */ - _h_kernel32 = LoadLibrary(TEXT("KERNEL32.DLL")); - _try_enter_critical_section = - (BOOL (PT_STDCALL *)(LPCRITICAL_SECTION)) - GetProcAddress(_h_kernel32, - (LPCSTR) "TryEnterCriticalSection"); - - if (_try_enter_critical_section != NULL) - { - SetLastError(0); - - (*_try_enter_critical_section)(lpcs); - - printf("Last Error [try enter] %ld\n", (long) GetLastError()); - } - - (void) FreeLibrary(_h_kernel32); - - printf("This system %s TryEnterCriticalSection.\n", - (_try_enter_critical_section == NULL) ? "DOES NOT SUPPORT" : "SUPPORTS"); - printf("POSIX Mutexes will be based on Win32 %s.\n", - (_try_enter_critical_section == NULL) ? "Mutexes" : "Critical Sections"); - - return(0); -} - diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/tsd1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/tsd1.c deleted file mode 100644 index ecae5a5..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/tsd1.c +++ /dev/null @@ -1,204 +0,0 @@ -/* - * tsd1.c - * - * Test Thread Specific Data (TSD) key creation and destruction. - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * - * -------------------------------------------------------------------------- - * - * Description: - * - - * - * Test Method (validation or falsification): - * - validation - * - * Requirements Tested: - * - keys are created for each existing thread including the main thread - * - keys are created for newly created threads - * - keys are thread specific - * - destroy routine is called on each thread exit including the main thread - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Environment: - * - - * - * Input: - * - none - * - * Output: - * - text to stdout - * - * Assumptions: - * - already validated: pthread_create() - * pthread_once() - * - main thread also has a POSIX thread identity - * - * Pass Criteria: - * - * Fail Criteria: - */ - -#include -#include "test.h" - -enum { - NUM_THREADS = 100 -}; - -static pthread_key_t key = NULL; -static int accesscount[NUM_THREADS]; -static int thread_set[NUM_THREADS]; -static int thread_destroyed[NUM_THREADS]; -static pthread_barrier_t startBarrier; - -static void -destroy_key(void * arg) -{ - int * j = (int *) arg; - - (*j)++; - - assert(*j == 2); - - thread_destroyed[j - accesscount] = 1; -} - -static void -setkey(void * arg) -{ - int * j = (int *) arg; - - thread_set[j - accesscount] = 1; - - assert(*j == 0); - - assert(pthread_getspecific(key) == NULL); - - assert(pthread_setspecific(key, arg) == 0); - assert(pthread_setspecific(key, arg) == 0); - assert(pthread_setspecific(key, arg) == 0); - - assert(pthread_getspecific(key) == arg); - - (*j)++; - - assert(*j == 1); -} - -static void * -mythread(void * arg) -{ - (void) pthread_barrier_wait(&startBarrier); - - setkey(arg); - - return 0; - - /* Exiting the thread will call the key destructor. */ -} - -int -main() -{ - int i; - int fail = 0; - pthread_t thread[NUM_THREADS]; - - assert(pthread_barrier_init(&startBarrier, NULL, NUM_THREADS/2) == 0); - - for (i = 1; i < NUM_THREADS/2; i++) - { - accesscount[i] = thread_set[i] = thread_destroyed[i] = 0; - assert(pthread_create(&thread[i], NULL, mythread, (void *)&accesscount[i]) == 0); - } - - /* - * Here we test that existing threads will get a key created - * for them. - */ - assert(pthread_key_create(&key, destroy_key) == 0); - - (void) pthread_barrier_wait(&startBarrier); - - /* - * Test main thread key. - */ - accesscount[0] = 0; - setkey((void *) &accesscount[0]); - - /* - * Here we test that new threads will get a key created - * for them. - */ - for (i = NUM_THREADS/2; i < NUM_THREADS; i++) - { - accesscount[i] = thread_set[i] = thread_destroyed[i] = 0; - assert(pthread_create(&thread[i], NULL, mythread, (void *)&accesscount[i]) == 0); - } - - /* - * Wait for all threads to complete. - */ - for (i = 1; i < NUM_THREADS; i++) - { - assert(pthread_join(thread[i], NULL) == 0); - } - - assert(pthread_key_delete(key) == 0); - - assert(pthread_barrier_destroy(&startBarrier) == 0); - - for (i = 1; i < NUM_THREADS; i++) - { - /* - * The counter is incremented once when the key is set to - * a value, and again when the key is destroyed. If the key - * doesn't get set for some reason then it will still be - * NULL and the destroy function will not be called, and - * hence accesscount will not equal 2. - */ - if (accesscount[i] != 2) - { - fail++; - fprintf(stderr, "Thread %d key, set = %d, destroyed = %d\n", - i, thread_set[i], thread_destroyed[i]); - } - } - - fflush(stderr); - - return (fail); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/tsd2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/tsd2.c deleted file mode 100644 index 38c8db6..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/tsd2.c +++ /dev/null @@ -1,214 +0,0 @@ -/* - * tsd2.c - * - * Test Thread Specific Data (TSD) key creation and destruction. - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * - * -------------------------------------------------------------------------- - * - * Description: - * - - * - * Test Method (validation or falsification): - * - validation - * - * Requirements Tested: - * - keys are created for each existing thread including the main thread - * - keys are created for newly created threads - * - keys are thread specific - * - destroy routine is called on each thread exit including the main thread - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Environment: - * - - * - * Input: - * - none - * - * Output: - * - text to stdout - * - * Assumptions: - * - already validated: pthread_create() - * pthread_once() - * - main thread also has a POSIX thread identity - * - * Pass Criteria: - * - * Fail Criteria: - */ - -#include -#include "test.h" - -enum { - NUM_THREADS = 100 -}; - -static pthread_key_t key = NULL; -static int accesscount[NUM_THREADS]; -static int thread_set[NUM_THREADS]; -static int thread_destroyed[NUM_THREADS]; -static pthread_barrier_t startBarrier; - -static void -destroy_key(void * arg) -{ - int * j = (int *) arg; - - (*j)++; - - /* - * Set TSD key from the destructor to test destructor iteration. - * The key value will have been set to NULL by the library before - * calling the destructor (with the value that the key had). We - * reset the key value here which should cause the destructor to be - * called a second time. - */ - if (*j == 2) - assert(pthread_setspecific(key, arg) == 0); - else - assert(*j == 3); - - thread_destroyed[j - accesscount] = 1; -} - -static void -setkey(void * arg) -{ - int * j = (int *) arg; - - thread_set[j - accesscount] = 1; - - assert(*j == 0); - - assert(pthread_getspecific(key) == NULL); - - assert(pthread_setspecific(key, arg) == 0); - assert(pthread_setspecific(key, arg) == 0); - assert(pthread_setspecific(key, arg) == 0); - - assert(pthread_getspecific(key) == arg); - - (*j)++; - - assert(*j == 1); -} - -static void * -mythread(void * arg) -{ - (void) pthread_barrier_wait(&startBarrier); - - setkey(arg); - - return 0; - - /* Exiting the thread will call the key destructor. */ -} - -int -main() -{ - int i; - int fail = 0; - pthread_t thread[NUM_THREADS]; - - assert(pthread_barrier_init(&startBarrier, NULL, NUM_THREADS/2) == 0); - - for (i = 1; i < NUM_THREADS/2; i++) - { - accesscount[i] = thread_set[i] = thread_destroyed[i] = 0; - assert(pthread_create(&thread[i], NULL, mythread, (void *)&accesscount[i]) == 0); - } - - /* - * Here we test that existing threads will get a key created - * for them. - */ - assert(pthread_key_create(&key, destroy_key) == 0); - - (void) pthread_barrier_wait(&startBarrier); - - /* - * Test main thread key. - */ - accesscount[0] = 0; - setkey((void *) &accesscount[0]); - - /* - * Here we test that new threads will get a key created - * for them. - */ - for (i = NUM_THREADS/2; i < NUM_THREADS; i++) - { - accesscount[i] = thread_set[i] = thread_destroyed[i] = 0; - assert(pthread_create(&thread[i], NULL, mythread, (void *)&accesscount[i]) == 0); - } - - /* - * Wait for all threads to complete. - */ - for (i = 1; i < NUM_THREADS; i++) - { - assert(pthread_join(thread[i], NULL) == 0); - } - - assert(pthread_key_delete(key) == 0); - - assert(pthread_barrier_destroy(&startBarrier) == 0); - - for (i = 1; i < NUM_THREADS; i++) - { - /* - * The counter is incremented once when the key is set to - * a value, and again when the key is destroyed. If the key - * doesn't get set for some reason then it will still be - * NULL and the destroy function will not be called, and - * hence accesscount will not equal 2. - */ - if (accesscount[i] != 3) - { - fail++; - fprintf(stderr, "Thread %d key, set = %d, destroyed = %d\n", - i, thread_set[i], thread_destroyed[i]); - } - } - - fflush(stderr); - - return (fail); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/tsd3.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/tsd3.c deleted file mode 100644 index 63ecf55..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/tsd3.c +++ /dev/null @@ -1,209 +0,0 @@ -/* - * tsd3.c - * - * Test Thread Specific Data (TSD) key creation and destruction. - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * - * -------------------------------------------------------------------------- - * - * Description: - * - - * - * Test Method (validation or falsification): - * - validation - * - * Requirements Tested: - * - keys are created for each existing thread including the main thread - * - keys are created for newly created threads - * - keys are thread specific - * - key is deleted before threads exit - * - key destructor function is not called - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Environment: - * - - * - * Input: - * - none - * - * Output: - * - text to stdout - * - * Assumptions: - * - already validated: pthread_create() - * pthread_once() - * - main thread also has a POSIX thread identity - * - * Pass Criteria: - * - * Fail Criteria: - */ - -#include -#include "test.h" - -enum { - NUM_THREADS = 100 -}; - -static pthread_key_t key = NULL; -static int accesscount[NUM_THREADS]; -static int thread_set[NUM_THREADS]; -static int thread_destroyed[NUM_THREADS]; -static pthread_barrier_t startBarrier; -static pthread_barrier_t progressSyncBarrier; - -static void -destroy_key(void * arg) -{ - /* - * The destructor function should not be called if the key - * is deleted before the thread exits. - */ - fprintf(stderr, "The key destructor was called but should not have been.\n"); - exit (1); -} - -static void -setkey(void * arg) -{ - int * j = (int *) arg; - - thread_set[j - accesscount] = 1; - - assert(*j == 0); - - assert(pthread_getspecific(key) == NULL); - - assert(pthread_setspecific(key, arg) == 0); - assert(pthread_setspecific(key, arg) == 0); - assert(pthread_setspecific(key, arg) == 0); - - assert(pthread_getspecific(key) == arg); - - (*j)++; - - assert(*j == 1); -} - -static void * -mythread(void * arg) -{ - (void) pthread_barrier_wait(&startBarrier); - - setkey(arg); - (void) pthread_barrier_wait(&progressSyncBarrier); - (void) pthread_barrier_wait(&progressSyncBarrier); - - return 0; -} - -int -main() -{ - int i; - int fail = 0; - pthread_t thread[NUM_THREADS]; - - assert(pthread_barrier_init(&startBarrier, NULL, NUM_THREADS/2) == 0); - assert(pthread_barrier_init(&progressSyncBarrier, NULL, NUM_THREADS) == 0); - - for (i = 1; i < NUM_THREADS/2; i++) - { - accesscount[i] = thread_set[i] = thread_destroyed[i] = 0; - assert(pthread_create(&thread[i], NULL, mythread, (void *)&accesscount[i]) == 0); - } - - /* - * Here we test that existing threads will get a key created - * for them. - */ - assert(pthread_key_create(&key, destroy_key) == 0); - - (void) pthread_barrier_wait(&startBarrier); - - /* - * Test main thread key. - */ - accesscount[0] = 0; - setkey((void *) &accesscount[0]); - - /* - * Here we test that new threads will get a key created - * for them. - */ - for (i = NUM_THREADS/2; i < NUM_THREADS; i++) - { - accesscount[i] = thread_set[i] = thread_destroyed[i] = 0; - assert(pthread_create(&thread[i], NULL, mythread, (void *)&accesscount[i]) == 0); - } - - (void) pthread_barrier_wait(&progressSyncBarrier); - /* - * Deleting the key should not call the key destructor. - */ - assert(pthread_key_delete(key) == 0); - (void) pthread_barrier_wait(&progressSyncBarrier); - - /* - * Wait for all threads to complete. - */ - for (i = 1; i < NUM_THREADS; i++) - { - assert(pthread_join(thread[i], NULL) == 0); - } - - assert(pthread_barrier_destroy(&startBarrier) == 0); - assert(pthread_barrier_destroy(&progressSyncBarrier) == 0); - - for (i = 1; i < NUM_THREADS; i++) - { - /* - * The counter is incremented once when the key is set to - * a value. - */ - if (accesscount[i] != 1) - { - fail++; - fprintf(stderr, "Thread %d key, set = %d, destroyed = %d\n", - i, thread_set[i], thread_destroyed[i]); - } - } - - fflush(stderr); - - return (fail); -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/valid1.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/valid1.c deleted file mode 100644 index 7bf8f65..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/valid1.c +++ /dev/null @@ -1,101 +0,0 @@ -/* - * File: valid1.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Test that thread validation works. - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -enum { - NUMTHREADS = 1 -}; - -static int washere = 0; - -void * func(void * arg) -{ - washere = 1; - return (void *) 0; -} - -int -main() -{ - pthread_t t; - void * result = NULL; - - washere = 0; - assert(pthread_create(&t, NULL, func, NULL) == 0); - assert(pthread_join(t, &result) == 0); - assert((int)(size_t)result == 0); - assert(washere == 1); - sched_yield(); - assert(pthread_kill(t, 0) == ESRCH); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/valid2.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/valid2.c deleted file mode 100644 index c389c0d..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/tests/valid2.c +++ /dev/null @@ -1,82 +0,0 @@ -/* - * File: valid2.c - * - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: - * - Confirm that thread validation fails for garbage thread ID. - * - * Test Method (Validation or Falsification): - * - - * - * Requirements Tested: - * - - * - * Features Tested: - * - - * - * Cases Tested: - * - - * - * Description: - * - - * - * Environment: - * - - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * - - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - -#include "test.h" - -int -main() -{ - pthread_t NullThread = __PTW32_THREAD_NULL_ID; - - assert(pthread_kill(NullThread, 0) == ESRCH); - - return 0; -} diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/version.rc b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/version.rc deleted file mode 100644 index aa0596c..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/version.rc +++ /dev/null @@ -1,407 +0,0 @@ -/* This is an implementation of the threads API of POSIX 1003.1-2001. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include -#include "pthread.h" - -/* - * Note: the correct __PTW32_CLEANUP_* macro must be defined corresponding to - * the definition used for the object file builds. This is done in the - * relevent makefiles for the command line builds, but users should ensure - * that their resource compiler knows what it is too. - * If using the default (no __PTW32_CLEANUP_* defined), pthread.h will define it - * as __PTW32_CLEANUP_C. - */ - -#if defined (__PTW32_RC_MSC) -# if defined (__PTW32_ARCHx64) || defined (__PTW32_ARCHX64) || defined (__PTW32_ARCHAMD64) -# if defined(__PTW32_CLEANUP_C) -# define __PTW32_VERSIONINFO_NAME "pthreadVC2.DLL\0" -# define __PTW32_VERSIONINFO_DESCRIPTION "MS C x64\0" -# elif defined(__PTW32_CLEANUP_CXX) -# define __PTW32_VERSIONINFO_NAME "pthreadVCE2.DLL\0" -# define __PTW32_VERSIONINFO_DESCRIPTION "MS C++ x64\0" -# elif defined(__PTW32_CLEANUP_SEH) -# define __PTW32_VERSIONINFO_NAME "pthreadVSE2.DLL\0" -# define __PTW32_VERSIONINFO_DESCRIPTION "MS C SEH x64\0" -# endif -# elif defined (__PTW32_ARCHx86) || defined (__PTW32_ARCHX86) -# if defined(__PTW32_CLEANUP_C) -# define __PTW32_VERSIONINFO_NAME "pthreadVC2.DLL\0" -# define __PTW32_VERSIONINFO_DESCRIPTION "MS C x86\0" -# elif defined(__PTW32_CLEANUP_CXX) -# define __PTW32_VERSIONINFO_NAME "pthreadVCE2.DLL\0" -# define __PTW32_VERSIONINFO_DESCRIPTION "MS C++ x86\0" -# elif defined(__PTW32_CLEANUP_SEH) -# define __PTW32_VERSIONINFO_NAME "pthreadVSE2.DLL\0" -# define __PTW32_VERSIONINFO_DESCRIPTION "MS C SEH x86\0" -# endif -# endif -#elif defined(__GNUC__) -# if defined(_M_X64) -# define __PTW32_ARCH "x64 (mingw64)" -# else -# define __PTW32_ARCH "x86 (mingw32)" -# endif -# if defined(__PTW32_CLEANUP_C) -# define __PTW32_VERSIONINFO_NAME "pthreadGC2.DLL\0" -# define __PTW32_VERSIONINFO_DESCRIPTION "GNU C " __PTW32_ARCH "\0" -# elif defined(__PTW32_CLEANUP_CXX) -# define __PTW32_VERSIONINFO_NAME "pthreadGCE2.DLL\0" -# define __PTW32_VERSIONINFO_DESCRIPTION "GNU C++ " __PTW32_ARCH "\0" -# else -# error Resource compiler doesn't know which cleanup style you're using - see version.rc -# endif -#elif defined(__BORLANDC__) -# if defined(_M_X64) -# define __PTW32_ARCH "x64 (Borland)" -# else -# define __PTW32_ARCH "x86 (Borland)" -# endif -# if defined(__PTW32_CLEANUP_C) -# define __PTW32_VERSIONINFO_NAME "pthreadBC2.DLL\0" -# define __PTW32_VERSIONINFO_DESCRIPTION "BORLAND C " __PTW32_ARCH "\0" -# elif defined(__PTW32_CLEANUP_CXX) -# define __PTW32_VERSIONINFO_NAME "pthreadBCE2.DLL\0" -# define __PTW32_VERSIONINFO_DESCRIPTION "BORLAND C++ " __PTW32_ARCH "\0" -# else -# error Resource compiler doesn't know which cleanup style you're using - see version.rc -# endif -#elif defined(__WATCOMC__) -# if defined(_M_X64) -# define __PTW32_ARCH "x64 (Watcom)" -# else -# define __PTW32_ARCH "x86 (Watcom)" -# endif -# if defined(__PTW32_CLEANUP_C) -# define __PTW32_VERSIONINFO_NAME "pthreadWC2.DLL\0" -# define __PTW32_VERSIONINFO_DESCRIPTION "WATCOM C " __PTW32_ARCH "\0" -# elif defined(__PTW32_CLEANUP_CXX) -# define __PTW32_VERSIONINFO_NAME "pthreadWCE2.DLL\0" -# define __PTW32_VERSIONINFO_DESCRIPTION "WATCOM C++ " __PTW32_ARCH "\0" -# else -# error Resource compiler doesn't know which cleanup style you're using - see version.rc -# endif -#else -# error Resource compiler doesn't know which compiler you're using - see version.rc -#endif - - -VS_VERSION_INFO VERSIONINFO - FILEVERSION __PTW32_VERSION - PRODUCTVERSION __PTW32_VERSION - FILEFLAGSMASK VS_FFI_FILEFLAGSMASK - FILEFLAGS 0 - FILEOS VOS__WINDOWS32 - FILETYPE VFT_DLL -BEGIN - BLOCK "StringFileInfo" - BEGIN - BLOCK "040904b0" - BEGIN - VALUE "ProductName", "POSIX Threads for Windows\0" - VALUE "ProductVersion", __PTW32_VERSION_STRING - VALUE "FileVersion", __PTW32_VERSION_STRING - VALUE "FileDescription", __PTW32_VERSIONINFO_DESCRIPTION - VALUE "InternalName", __PTW32_VERSIONINFO_NAME - VALUE "OriginalFilename", __PTW32_VERSIONINFO_NAME - VALUE "CompanyName", "Open Source Software community\0" - VALUE "LegalCopyright", "Copyright - Project contributors 1999-2016\0" - VALUE "Comments", "https://sourceforge.net/p/pthreads4w/wiki/Contributors/\0" - END - END - BLOCK "VarFileInfo" - BEGIN - VALUE "Translation", 0x409, 1200 - END -END - -/* -VERSIONINFO Resource - -The VERSIONINFO resource-definition statement creates a version-information -resource. The resource contains such information about the file as its -version number, its intended operating system, and its original filename. -The resource is intended to be used with the Version Information functions. - -versionID VERSIONINFO fixed-info { block-statement...} - -versionID - Version-information resource identifier. This value must be 1. - -fixed-info - Version information, such as the file version and the intended operating - system. This parameter consists of the following statements. - - - Statement Description - -------------------------------------------------------------------------- - FILEVERSION - version Binary version number for the file. The version - consists of two 32-bit integers, defined by four - 16-bit integers. For example, "FILEVERSION 3,10,0,61" - is translated into two doublewords: 0x0003000a and - 0x0000003d, in that order. Therefore, if version is - defined by the DWORD values dw1 and dw2, they need - to appear in the FILEVERSION statement as follows: - HIWORD(dw1), LOWORD(dw1), HIWORD(dw2), LOWORD(dw2). - PRODUCTVERSION - version Binary version number for the product with which the - file is distributed. The version parameter is two - 32-bit integers, defined by four 16-bit integers. - For more information about version, see the - FILEVERSION description. - FILEFLAGSMASK - fileflagsmask Bits in the FILEFLAGS statement are valid. If a bit - is set, the corresponding bit in FILEFLAGS is valid. - FILEFLAGSfileflags Attributes of the file. The fileflags parameter must - be the combination of all the file flags that are - valid at compile time. For 16-bit Windows, this - value is 0x3f. - FILEOSfileos Operating system for which this file was designed. - The fileos parameter can be one of the operating - system values given in the Remarks section. - FILETYPEfiletype General type of file. The filetype parameter can be - one of the file type values listed in the Remarks - section. - FILESUBTYPE - subtype Function of the file. The subtype parameter is zero - unless the type parameter in the FILETYPE statement - is VFT_DRV, VFT_FONT, or VFT_VXD. For a list of file - subtype values, see the Remarks section. - -block-statement - Specifies one or more version-information blocks. A block can contain - string information or variable information. For more information, see - StringFileInfo Block or VarFileInfo Block. - -Remarks - -To use the constants specified with the VERSIONINFO statement, you must -include the Winver.h or Windows.h header file in the resource-definition file. - -The following list describes the parameters used in the VERSIONINFO statement: - -fileflags - A combination of the following values. - - Value Description - - VS_FF_DEBUG File contains debugging information or is compiled - with debugging features enabled. - VS_FF_PATCHED File has been modified and is not identical to the - original shipping file of the same version number. - VS_FF_PRERELEASE File is a development version, not a commercially - released product. - VS_FF_PRIVATEBUILD File was not built using standard release procedures. - If this value is given, the StringFileInfo block must - contain a PrivateBuild string. - VS_FF_SPECIALBUILD File was built by the original company using standard - release procedures but is a variation of the standard - file of the same version number. If this value is - given, the StringFileInfo block must contain a - SpecialBuild string. - -fileos - One of the following values. - - Value Description - - VOS_UNKNOWN The operating system for which the file was designed - is unknown. - VOS_DOS File was designed for MS-DOS. - VOS_NT File was designed for Windows Server 2003 family, - Windows XP, Windows 2000, or Windows NT. - VOS__WINDOWS16 File was designed for 16-bit Windows. - VOS__WINDOWS32 File was designed for 32-bit Windows. - VOS_DOS_WINDOWS16 File was designed for 16-bit Windows running with - MS-DOS. - VOS_DOS_WINDOWS32 File was designed for 32-bit Windows running with - MS-DOS. - VOS_NT_WINDOWS32 File was designed for Windows Server 2003 family, - Windows XP, Windows 2000, or Windows NT. - - The values 0x00002L, 0x00003L, 0x20000L and 0x30000L are reserved. - -filetype - One of the following values. - - Value Description - - VFT_UNKNOWN File type is unknown. - VFT_APP File contains an application. - VFT_DLL File contains a dynamic-link library (DLL). - VFT_DRV File contains a device driver. If filetype is - VFT_DRV, subtype contains a more specific - description of the driver. - VFT_FONT File contains a font. If filetype is VFT_FONT, - subtype contains a more specific description of the - font. - VFT_VXD File contains a virtual device. - VFT_STATIC_LIB File contains a static-link library. - - All other values are reserved for use by Microsoft. - -subtype - Additional information about the file type. - - If filetype specifies VFT_DRV, this parameter can be one of the - following values. - - Value Description - - VFT2_UNKNOWN Driver type is unknown. - VFT2_DRV_COMM File contains a communications driver. - VFT2_DRV_PRINTER File contains a printer driver. - VFT2_DRV_KEYBOARD File contains a keyboard driver. - VFT2_DRV_LANGUAGE File contains a language driver. - VFT2_DRV_DISPLAY File contains a display driver. - VFT2_DRV_MOUSE File contains a mouse driver. - VFT2_DRV_NETWORK File contains a network driver. - VFT2_DRV_SYSTEM File contains a system driver. - VFT2_DRV_INSTALLABLE File contains an installable driver. - VFT2_DRV_SOUND File contains a sound driver. - VFT2_DRV_VERSIONED_PRINTER File contains a versioned printer driver. - - If filetype specifies VFT_FONT, this parameter can be one of the - following values. - - Value Description - - VFT2_UNKNOWN Font type is unknown. - VFT2_FONT_RASTER File contains a raster font. - VFT2_FONT_VECTOR File contains a vector font. - VFT2_FONT_TRUETYPE File contains a TrueType font. - - If filetype specifies VFT_VXD, this parameter must be the virtual-device - identifier included in the virtual-device control block. - - All subtype values not listed here are reserved for use by Microsoft. - -langID - One of the following language codes. - - Code Language Code Language - - 0x0401 Arabic 0x0415 Polish - 0x0402 Bulgarian 0x0416 Portuguese (Brazil) - 0x0403 Catalan 0x0417 Rhaeto-Romanic - 0x0404 Traditional Chinese 0x0418 Romanian - 0x0405 Czech 0x0419 Russian - 0x0406 Danish 0x041A Croato-Serbian (Latin) - 0x0407 German 0x041B Slovak - 0x0408 Greek 0x041C Albanian - 0x0409 U.S. English 0x041D Swedish - 0x040A Castilian Spanish 0x041E Thai - 0x040B Finnish 0x041F Turkish - 0x040C French 0x0420 Urdu - 0x040D Hebrew 0x0421 Bahasa - 0x040E Hungarian 0x0804 Simplified Chinese - 0x040F Icelandic 0x0807 Swiss German - 0x0410 Italian 0x0809 U.K. English - 0x0411 Japanese 0x080A Mexican Spanish - 0x0412 Korean 0x080C Belgian French - 0x0413 Dutch 0x0C0C Canadian French - 0x0414 Norwegian – Bokmal 0x100C Swiss French - 0x0810 Swiss Italian 0x0816 Portuguese (Portugal) - 0x0813 Belgian Dutch 0x081A Serbo-Croatian (Cyrillic) - 0x0814 Norwegian – Nynorsk - -charsetID - One of the following character-set identifiers. - - Identifier Character Set - - 0 7-bit ASCII - 932 Japan (Shift %G–%@ JIS X-0208) - 949 Korea (Shift %G–%@ KSC 5601) - 950 Taiwan (Big5) - 1200 Unicode - 1250 Latin-2 (Eastern European) - 1251 Cyrillic - 1252 Multilingual - 1253 Greek - 1254 Turkish - 1255 Hebrew - 1256 Arabic - -string-name - One of the following predefined names. - - Name Description - - Comments Additional information that should be displayed for - diagnostic purposes. - CompanyName Company that produced the file%G—%@for example, - "Microsoft Corporation" or "Standard Microsystems - Corporation, Inc." This string is required. - FileDescription File description to be presented to users. This - string may be displayed in a list box when the user - is choosing files to install%G—%@for example, - "Keyboard Driver for AT-Style Keyboards". This - string is required. - FileVersion Version number of the file%G—%@for example, - "3.10" or "5.00.RC2". This string is required. - InternalName Internal name of the file, if one exists — for - example, a module name if the file is a dynamic-link - library. If the file has no internal name, this - string should be the original filename, without - extension. This string is required. - LegalCopyright Copyright notices that apply to the file. This - should include the full text of all notices, legal - symbols, copyright dates, and so on — for example, - "Copyright (C) Microsoft Corporation 1990–1999". - This string is optional. - LegalTrademarks Trademarks and registered trademarks that apply to - the file. This should include the full text of all - notices, legal symbols, trademark numbers, and so on. - This string is optional. - OriginalFilename Original name of the file, not including a path. - This information enables an application to determine - whether a file has been renamed by a user. The - format of the name depends on the file system for - which the file was created. This string is required. - PrivateBuild Information about a private version of the file — for - example, "Built by TESTER1 on \TESTBED". This string - should be present only if VS_FF_PRIVATEBUILD is - specified in the fileflags parameter of the root - block. - ProductName Name of the product with which the file is - distributed. This string is required. - ProductVersion Version of the product with which the file is - distributed — for example, "3.10" or "5.00.RC2". - This string is required. - SpecialBuild Text that indicates how this version of the file - differs from the standard version — for example, - "Private build for TESTER1 solving mouse problems - on M250 and M250E computers". This string should be - present only if VS_FF_SPECIALBUILD is specified in - the fileflags parameter of the root block. - */ diff --git a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/w32_CancelableWait.c b/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/w32_CancelableWait.c deleted file mode 100644 index 72a0f18..0000000 --- a/c/Snake/pthreads4w-code-07053a521b0a9deb6db2a649cde1f828f2eb1f4f/w32_CancelableWait.c +++ /dev/null @@ -1,163 +0,0 @@ -/* - * w32_CancelableWait.c - * - * Description: - * This translation unit implements miscellaneous thread functions. - * - * -------------------------------------------------------------------------- - * - * Pthreads4w - POSIX Threads for Windows - * Copyright 1998 John E. Bossom - * Copyright 1999-2018, Pthreads4w contributors - * - * Homepage: https://sourceforge.net/projects/pthreads4w/ - * - * The current list of contributors is contained - * in the file CONTRIBUTORS included with the source - * code distribution. The list can also be seen at the - * following World Wide Web location: - * - * https://sourceforge.net/p/pthreads4w/wiki/Contributors/ - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifdef HAVE_CONFIG_H -# include -#endif - -#include "pthread.h" -#include "implement.h" - - -static INLINE int -__ptw32_cancelable_wait (HANDLE waitHandle, DWORD timeout) - /* - * ------------------------------------------------------------------- - * This provides an extra hook into the pthread_cancel - * mechanism that will allow you to wait on a Windows handle and make it a - * cancellation point. This function blocks until the given WIN32 handle is - * signalled or pthread_cancel has been called. It is implemented using - * WaitForMultipleObjects on 'waitHandle' and a manually reset WIN32 - * event used to implement pthread_cancel. - * - * Given this hook it would be possible to implement more of the cancellation - * points. - * ------------------------------------------------------------------- - */ -{ - int result; - pthread_t self; - __ptw32_thread_t * sp; - HANDLE handles[2]; - DWORD nHandles = 1; - DWORD status; - - handles[0] = waitHandle; - - self = pthread_self(); - sp = (__ptw32_thread_t *) self.p; - - if (sp != NULL) - { - /* - * Get cancelEvent handle - */ - if (sp->cancelState == PTHREAD_CANCEL_ENABLE) - { - - if ((handles[1] = sp->cancelEvent) != NULL) - { - nHandles++; - } - } - } - else - { - handles[1] = NULL; - } - - status = WaitForMultipleObjects (nHandles, handles, __PTW32_FALSE, timeout); - - switch (status - WAIT_OBJECT_0) - { - case 0: - /* - * Got the handle. - * In the event that both handles are signalled, the smallest index - * value (us) is returned. As it has been arranged, this ensures that - * we don't drop a signal that we should act on (i.e. semaphore, - * mutex, or condition variable etc). - */ - result = 0; - break; - - case 1: - /* - * Got cancel request. - * In the event that both handles are signalled, the cancel will - * be ignored (see case 0 comment). - */ - ResetEvent (handles[1]); - - if (sp != NULL) - { - __ptw32_mcs_local_node_t stateLock; - /* - * Should handle POSIX and implicit POSIX threads. - * Make sure we haven't been async-cancelled in the meantime. - */ - __ptw32_mcs_lock_acquire (&sp->stateLock, &stateLock); - if (sp->state < PThreadStateCanceling) - { - sp->state = PThreadStateCanceling; - sp->cancelState = PTHREAD_CANCEL_DISABLE; - __ptw32_mcs_lock_release (&stateLock); - __ptw32_throw (__PTW32_EPS_CANCEL); - - /* Never reached */ - } - __ptw32_mcs_lock_release (&stateLock); - } - - /* Should never get to here. */ - result = EINVAL; - break; - - default: - if (status == WAIT_TIMEOUT) - { - result = ETIMEDOUT; - } - else - { - result = EINVAL; - } - break; - } - - return (result); - -} /* CancelableWait */ - -int -pthreadCancelableWait (HANDLE waitHandle) -{ - return (__ptw32_cancelable_wait (waitHandle, INFINITE)); -} - -int -pthreadCancelableTimedWait (HANDLE waitHandle, DWORD timeout) -{ - return (__ptw32_cancelable_wait (waitHandle, timeout)); -} diff --git a/c/Snake/snake.c b/c/Snake/snake.c deleted file mode 100644 index 8290c8d..0000000 --- a/c/Snake/snake.c +++ /dev/null @@ -1,320 +0,0 @@ -// https://zxbcw.cn/post/218247/ - -#if defined(_WIN16) || defined(_WIN32) || defined(_WIN64) -#include "pthread.h" -#include -#include - -#elif defined(__linux__) || defined(__gnu_linux__) -#include -#include -#elif defined(__APPLE__) -#endif - -#include -#include -#include - -#define WIDTH 40 -#define HEIGHT 20 - -// char HEAD = '@'; // The shape of snake head -// char BODY = 'O'; // The shape of snake body -#define HEAD '@' // The shape of snake head -#define BODY 'O' // The shape of snake body -char a[HEIGHT][WIDTH] = {{BODY, BODY, BODY, HEAD}}; // The initial char is 0 -char *p[HEIGHT * WIDTH] = {&a[0][3], &a[0][2], &a[0][1], - &a[0][0]}; // p[0] stand for snake head - -int n = 3; // The length of snake body (without head) -int i, j; -int direction = 1; // 1.right;2.up;3.left;4.down;-1.exit -int delay = 200; // delay 0.2s(200ms) -_Bool isPause = 0; -#define moveBody() \ - { \ - *p[n] = 0; \ - for (i = n; i > 0; i--) { \ - p[i] = p[i - 1]; /* per part goes to the address of the next part \ - ofbody*/ \ - } \ - *p[0] = BODY; /* The First part of snake body come to snake head*/ \ - } -void moveRight() { - moveBody(); - p[0] = p[0] + 1; // Move snake head - *p[0] = HEAD; // change the char of new head(new address)'s shape to HEAD -} -void moveLeft() { - moveBody(); - p[0] = p[0] - 1; - *p[0] = HEAD; -} -void moveDown() { - moveBody(); - p[0] = p[0] + WIDTH; - *p[0] = HEAD; -} -void moveUp() { - moveBody(); - p[0] = p[0] - WIDTH; - *p[0] = HEAD; -} - -void show() { - system("clear"); - printf("Your Score is:%d\n", n - 3); - for (i = 0; i < WIDTH * 2; i++) - printf("_"); - printf("\n"); - for (i = 0; i < HEIGHT; i++) { - for (j = 0; j < WIDTH; j++) { - if (a[i][j] == 0) - printf("_|"); - else - printf("%c|", a[i][j]); - } - printf("\n"); - } - printf("\nw,s,a,d->Up Down Left Right;\nj,k->Speed Up/Down;\nESC: Exit\n"); -} - -void randomApple() // Random -{ - srand(time(NULL)); - do { - i = rand() % HEIGHT; - j = rand() % WIDTH; - // if random location is 0 ->*;else find again and again - } while (a[i][j] != 0); - a[i][j] = '*'; -} - -void canEat() { - switch (direction) { - // Right - case 1: { - if (*(p[0] + 1) == '*') { - n++; // length++ - p[n] = p[n - 1]; - randomApple(); - } - break; - } - // Up - case 2: { - if (*(p[0] - WIDTH) == '*') { - n++; // length++ - p[n] = p[n - 1]; - randomApple(); - } - break; - } - // Left - case 3: { - if (*(p[0] - 1) == '*') { - n++; // length++ - p[n] = p[n - 1]; - randomApple(); - } - break; - } - // Down - case 4: { - if (*(p[0] + WIDTH) == '*') { - n++; // length++ - p[n] = p[n - 1]; - randomApple(); - } - break; - } - } -} - -void isFail() { - if (p[0] - WIDTH < &a[0][0] && direction == 2 || - p[0] + WIDTH > &a[HEIGHT - 1][WIDTH - 1] && direction == -2 || - direction == 1 && (p[0] - a[0]) % WIDTH == WIDTH - 1 || - direction == -1 && - (p[0] - a[0]) % WIDTH == 0) // snake is not in the matrix - { - printf("fail!\n"); - direction = -1; - } else { - switch (direction) { - // Right - case 1: { - for (i = n; i > 0; i--) { - if ((p[0] + 1) == p[i]) // Right of the head is body - { - printf("fail!\n"); - direction = -1; - } - } - break; - } - // Up - case 2: { - for (i = n; i > 0; i--) { - if ((p[0] - WIDTH) == p[i]) // Up of the head is body - { - printf("fail!\n"); - direction = -1; - } - } - break; - } - // Left - case 3: { - for (i = n; i > 0; i--) { - if ((p[0] - 1) == p[i]) // Left of the head is body - { - printf("fail!\n"); - direction = -1; - } - } - break; - } - // Down - case 4: { - for (i = n; i > 0; i--) { - if ((p[0] + WIDTH) == p[i]) // Down of the head is body - { - printf("fail!\n"); - direction = -1; - } - } - break; - } - } - } -} - -void *KeyMonitor(void *arg) // Direction Control:w,s,a,d-->Up Down Left Right -{ - char k; - while (1) { -#if defined(_WIN16) || defined(_WIN32) || defined(_WIN64) - k = _getch(); -#elif defined(__linux__) || defined(__gnu_linux__) - k = getchar(); -#elif defined(__APPLE__) -#endif - switch (k) { - case 'w': // Up - { - if (direction != 4) - direction = 2; - break; - } - case 's': // Down - { - if (direction != 2) - direction = 4; - break; - } - case 'a': // Left - { - if (direction != 1) - direction = 3; - break; - } - case 'd': // Right - { - if (direction != 3) - direction = 1; - break; - } - case 'j': // SpeedUp - { - delay = delay * 4 / 5; - break; - } - case 'k': // SpeedDown - { - delay = delay * 5 / 4; - break; - } - case 27: // ESC - { - printf("Exit!\n"); - isPause = 0; - direction = -1; - return NULL; - break; - } - case ' ': // Space - { - if (isPause) { - printf("Continue!\n"); - } else { - printf("Pause!\n"); - } - isPause = !isPause; - break; - } - } - } -} - -int main() { -#if defined(_WIN16) || defined(_WIN32) || defined(_WIN64) -#elif defined(__linux__) || defined(__gnu_linux__) - // close lined buffer of input for no enter to capture input - system("stty -icanon"); -#elif defined(__APPLE__) -#endif - pthread_attr_t attr; - pthread_attr_init(&attr); - pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); - // set pthread_attr to detached - pthread_t tid; - pthread_create(&tid, &attr, KeyMonitor, - NULL); // Create pthread to capture input - randomApple(); - while (1) { - show(); - do { -#if defined(_WIN16) || defined(_WIN32) || defined(_WIN64) - Sleep(delay); -#elif defined(__linux__) || defined(__gnu_linux__) - usleep(delay * 1000); -#elif defined(__APPLE__) -#endif - } while (isPause); - - isFail(); // Judge if will eat self - canEat(); // Judge if will eat * - switch (direction) // choose which direction to move - { - case 1: // Right - { - moveRight(); - break; - } - case 2: // Up - { - moveUp(); - break; - } - case 3: // Left - { - moveLeft(); - break; - } - case 4: // Down - { - moveDown(); - break; - } - case -1: // Exit - { - printf("Your Final Score is:%d\n", n - 3); - return -1; - break; - } - } - } - - return 0; -} diff --git a/c/Snake/snake_linux.c b/c/Snake/snake_linux.c deleted file mode 100644 index d61abe5..0000000 --- a/c/Snake/snake_linux.c +++ /dev/null @@ -1,304 +0,0 @@ -// https://zxbcw.cn/post/218247/ - -#include -#include - -#include -#include -#include - -#define WIDTH 40 -#define HEIGHT 20 - -// char HEAD = '@'; // The shape of snake head -// char BODY = 'O'; // The shape of snake body -#define HEAD '@' // The shape of snake head -#define BODY 'O' // The shape of snake body -char map[HEIGHT][WIDTH] = {{BODY, BODY, BODY, HEAD}}; // The initial char is 0 -char *snake[HEIGHT * WIDTH] = {&map[0][3], &map[0][2], &map[0][1], - &map[0][0]}; // p[0] stand for snake head - -int n = 3; // The length of snake body (without head) -int i, j; -int direction = 1; // 1.right;2.up;3.left;4.down;-1.exit -int delay = 200 * 1000; // delay 0.2s(200ms) -_Bool isPause = 0; -#define moveBody() \ - { \ - *snake[n] = 0; \ - for (i = n; i > 0; i--) { \ - snake[i] = snake[i - 1]; \ - /* per part goes to the address of the next part of body*/ \ - } \ - *snake[0] = BODY; \ - /* The First part of snake body come to snake head*/ \ - } -#define gotoxy(y, x) printf("%c[%d;%df", 0x1B, ((y) + 1), ((x) + 1)) - -void moveRight() { - moveBody(); - snake[0] = snake[0] + 1; // Move snake head - *snake[0] = HEAD; // change the char of new head(new address)'s shape to HEAD -} -void moveLeft() { - moveBody(); - snake[0] = snake[0] - 1; - *snake[0] = HEAD; -} -void moveDown() { - moveBody(); - snake[0] = snake[0] + WIDTH; - *snake[0] = HEAD; -} -void moveUp() { - moveBody(); - snake[0] = snake[0] - WIDTH; - *snake[0] = HEAD; -} - -void show() { - system("clear"); - printf("Your Score is:%d\n", n - 3); - for (i = 0; i < WIDTH * 2; i++) - printf("_"); - printf("\n"); - for (i = 0; i < HEIGHT; i++) { - for (j = 0; j < WIDTH; j++) { - if (map[i][j] == 0) - printf("_|"); // □■ - else - printf("%c|", map[i][j]); - } - printf("\n"); - } - printf("\nw,s,a,d->Up Down Left Right;\nj,k->Speed Up/Down;\nESC: Exit\n"); -} - -void randomApple() // Random -{ - srand(time(NULL)); - do { - i = rand() % HEIGHT; - j = rand() % WIDTH; - // if random location is 0 ->*;else find again and again - } while (map[i][j] != 0); - map[i][j] = '*'; -} - -void canEat() { - switch (direction) { - // Right - case 1: { - if (*(snake[0] + 1) == '*') { - n++; // length++ - snake[n] = snake[n - 1]; - randomApple(); - } - break; - } - // Up - case 2: { - if (*(snake[0] - WIDTH) == '*') { - n++; // length++ - snake[n] = snake[n - 1]; - randomApple(); - } - break; - } - // Left - case 3: { - if (*(snake[0] - 1) == '*') { - n++; // length++ - snake[n] = snake[n - 1]; - randomApple(); - } - break; - } - // Down - case 4: { - if (*(snake[0] + WIDTH) == '*') { - n++; // length++ - snake[n] = snake[n - 1]; - randomApple(); - } - break; - } - } -} - -void isFail() { - if (snake[0] - WIDTH < &map[0][0] && direction == 2 || - snake[0] + WIDTH > &map[HEIGHT - 1][WIDTH - 1] && direction == -2 || - direction == 1 && (snake[0] - map[0]) % WIDTH == WIDTH - 1 || - direction == -1 && - (snake[0] - map[0]) % WIDTH == 0) // snake is not in the matrix - { - direction = -1; - } else { - switch (direction) { - // Right - case 1: { - for (i = n; i > 0; i--) { - if ((snake[0] + 1) == snake[i]) // Right of the head is body - { - printf("fail!\n"); - direction = -1; - } - } - break; - } - // Up - case 2: { - for (i = n; i > 0; i--) { - if ((snake[0] - WIDTH) == snake[i]) // Up of the head is body - { - printf("fail!\n"); - direction = -1; - } - } - break; - } - // Left - case 3: { - for (i = n; i > 0; i--) { - if ((snake[0] - 1) == snake[i]) // Left of the head is body - { - printf("fail!\n"); - direction = -1; - } - } - break; - } - // Down - case 4: { - for (i = n; i > 0; i--) { - if ((snake[0] + WIDTH) == snake[i]) // Down of the head is body - { - printf("fail!\n"); - direction = -1; - } - } - break; - } - } - } -} - -void *KeyMonitor(void *arg) // Direction Control:w,s,a,d-->Up Down Left Right -{ - if (direction == -1) { - pthread_exit(NULL); - } else { - char k; - while (1) { - - k = getchar(); - switch (k) { - case 'w': // Up - { - if (direction != 4) - direction = 2; - break; - } - case 's': // Down - { - if (direction != 2) - direction = 4; - break; - } - case 'a': // Left - { - if (direction != 1) - direction = 3; - break; - } - case 'd': // Right - { - if (direction != 3) - direction = 1; - break; - } - case 'j': // SpeedUp - { - delay = delay * 4 / 5; - break; - } - case 'k': // SpeedDown - { - delay = delay * 5 / 4; - break; - } - case 27: // ESC - { - printf("Exit!\n"); - isPause = 0; - direction = -1; - pthread_exit(NULL); - break; - } - case ' ': // Space - { - if (isPause) { - printf("Continue!\n"); - } else { - printf("Pause!\n"); - } - isPause = !isPause; - break; - } - } - } - } -} - -int main() { - system("stty -icanon"); - pthread_attr_t attr; - pthread_attr_init(&attr); - pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); - // set pthread_attr to detached - pthread_t tid; - pthread_create(&tid, &attr, KeyMonitor, - NULL); // Create pthread to capture input - randomApple(); - while (1) { - show(); - do { - usleep(delay); - - } while (isPause); - isFail(); // Judge if will eat self - canEat(); // Judge if will eat * - switch (direction) // choose which direction to move - { - case 1: // Right - { - moveRight(); - break; - } - case 2: // Up - { - moveUp(); - break; - } - case 3: // Left - { - moveLeft(); - break; - } - case 4: // Down - { - moveDown(); - break; - } - case -1: // Exit - { - printf("Your Final Score is:%d", n - 3); - return -1; - break; - } - } - } - - return 0; -} \ No newline at end of file diff --git a/c/Snake/snake_windows.c b/c/Snake/snake_windows.c deleted file mode 100644 index 8543a46..0000000 --- a/c/Snake/snake_windows.c +++ /dev/null @@ -1,306 +0,0 @@ -// https://zxbcw.cn/post/218247/ - -#include -#include -#include -#include - -#include -#include -#include - -#define WIDTH 40 -#define HEIGHT 20 - -// char HEAD = '@'; // The shape of snake head -// char BODY = 'O'; // The shape of snake body -#define HEAD '@' // The shape of snake head -#define BODY 'O' // The shape of snake body -char a[HEIGHT][WIDTH] = {{BODY, BODY, BODY, HEAD}}; // The initial char is 0 -char *p[HEIGHT * WIDTH] = {&a[0][3], &a[0][2], &a[0][1], - &a[0][0]}; // p[0] stand for snake head - -int n = 3; // The length of snake body (without head) -int i, j; -int direction = 1; // 1.right;2.up;3.left;4.down;-1.exit -int delay = 200; // delay 0.2s(200ms) -_Bool isPause = 0; -#define moveBody() \ - { \ - *p[n] = 0; \ - for (i = n; i > 0; i--) { \ - p[i] = p[i - 1]; \ - /* per part goes to the address of the next part of body*/ \ - } \ - *p[0] = BODY; \ - /* The First part of snake body come to snake head*/ \ - } - -// https://cloud.tencent.com/developer/article/1790043?from=15425 -// https://cloud.tencent.com/developer/article/2132941?from=15425 -#define gotoxy(y, x) \ - { \ - COORD coord = {(x), (y)}; /* coord */ \ - SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), \ - coord); /* Move Cursor to coord */ \ - } - -void moveRight() { - moveBody(); - p[0] = p[0] + 1; // Move snake head - *p[0] = HEAD; // change the char of new head(new address)'s shape to HEAD -} -void moveLeft() { - moveBody(); - p[0] = p[0] - 1; - *p[0] = HEAD; -} -void moveDown() { - moveBody(); - p[0] = p[0] + WIDTH; - *p[0] = HEAD; -} -void moveUp() { - moveBody(); - p[0] = p[0] - WIDTH; - *p[0] = HEAD; -} - -void show() { - system("clear"); - printf("Your Score is:%d\n", n - 3); - for (i = 0; i < WIDTH * 2; i++) - printf("_"); - printf("\n"); - for (i = 0; i < HEIGHT; i++) { - for (j = 0; j < WIDTH; j++) { - if (a[i][j] == 0) - printf("_|"); - else - printf("%c|", a[i][j]); - } - printf("\n"); - } - printf("\nw,s,a,d->Up Down Left Right;\nj,k->Speed Up/Down;\nESC: Exit\n"); -} - -void randomApple() // Random -{ - srand(time(NULL)); - do { - i = rand() % HEIGHT; - j = rand() % WIDTH; - // if random location is 0 ->*;else find again and again - } while (a[i][j] != 0); - a[i][j] = '*'; -} - -void canEat() { - switch (direction) { - // Right - case 1: { - if (*(p[0] + 1) == '*') { - n++; // length++ - p[n] = p[n - 1]; - randomApple(); - } - break; - } - // Up - case 2: { - if (*(p[0] - WIDTH) == '*') { - n++; // length++ - p[n] = p[n - 1]; - randomApple(); - } - break; - } - // Left - case 3: { - if (*(p[0] - 1) == '*') { - n++; // length++ - p[n] = p[n - 1]; - randomApple(); - } - break; - } - // Down - case 4: { - if (*(p[0] + WIDTH) == '*') { - n++; // length++ - p[n] = p[n - 1]; - randomApple(); - } - break; - } - } -} - -void isFail() { - if (p[0] - WIDTH < &a[0][0] && direction == 2 || - p[0] + WIDTH > &a[HEIGHT - 1][WIDTH - 1] && direction == -2 || - direction == 1 && (p[0] - a[0]) % WIDTH == WIDTH - 1 || - direction == -1 && - (p[0] - a[0]) % WIDTH == 0) // snake is not in the matrix - { - printf("fail!\n"); - direction = -1; - } else { - switch (direction) { - // Right - case 1: { - for (i = n; i > 0; i--) { - if ((p[0] + 1) == p[i]) // Right of the head is body - { - printf("fail!\n"); - direction = -1; - } - } - break; - } - // Up - case 2: { - for (i = n; i > 0; i--) { - if ((p[0] - WIDTH) == p[i]) // Up of the head is body - { - printf("fail!\n"); - direction = -1; - } - } - break; - } - // Left - case 3: { - for (i = n; i > 0; i--) { - if ((p[0] - 1) == p[i]) // Left of the head is body - { - printf("fail!\n"); - direction = -1; - } - } - break; - } - // Down - case 4: { - for (i = n; i > 0; i--) { - if ((p[0] + WIDTH) == p[i]) // Down of the head is body - { - printf("fail!\n"); - direction = -1; - } - } - break; - } - } - } -} - -DWORD WINAPI -KeyMonitor(LPVOID lpParam) // Direction Control:w,s,a,d-->Up Down Left Right -{ - char k; - while (1) { - k = _getch(); - - switch (k) { - case 'w': // Up - { - if (direction != 4) - direction = 2; - break; - } - case 's': // Down - { - if (direction != 2) - direction = 4; - break; - } - case 'a': // Left - { - if (direction != 1) - direction = 3; - break; - } - case 'd': // Right - { - if (direction != 3) - direction = 1; - break; - } - case 'j': // SpeedUp - { - delay = delay * 4 / 5; - break; - } - case 'k': // SpeedDown - { - delay = delay * 5 / 4; - break; - } - case 27: // ESC - { - printf("Exit!\n"); - isPause = 0; - direction = -1; - return 0; - break; - } - case ' ': // Space - { - if (isPause) { - printf("Continue!\n"); - } else { - printf("Pause!\n"); - } - isPause = !isPause; - break; - } - } - } -} - -int main() { - - randomApple(); - HANDLE hThread1 = CreateThread(NULL, 0, KeyMonitor, NULL, 0, NULL); - while (1) { - show(); - do { - Sleep(delay); - } while (isPause); - isFail(); // Judge if will eat self - canEat(); // Judge if will eat * - switch (direction) // choose which direction to move - { - case 1: // Right - { - moveRight(); - break; - } - case 2: // Up - { - moveUp(); - break; - } - case 3: // Left - { - moveLeft(); - break; - } - case 4: // Down - { - moveDown(); - break; - } - case -1: // Exit - { - printf("Your Final Score is:%d\n", n - 3); - CloseHandle(hThread1); - return -1; - break; - } - } - } - - return 0; -} diff --git a/c/Snake/snake_windows_opt.c b/c/Snake/snake_windows_opt.c deleted file mode 100644 index a3e2878..0000000 --- a/c/Snake/snake_windows_opt.c +++ /dev/null @@ -1,386 +0,0 @@ -// https://zxbcw.cn/post/218247/ - -#include -#include -#include -#include - -#include -#include -#include - -#define WIDTH 40 -#define HEIGHT 20 - -// char HEAD = '@'; // The shape of snake head -// char BODY = 'O'; // The shape of snake body -#define HEAD '@' // The shape of snake head -#define BODY 'O' // The shape of snake body -char a[HEIGHT][WIDTH] = {{BODY, BODY, BODY, HEAD}}; // The initial char is 0 -char *p[HEIGHT * WIDTH] = {&a[0][3], &a[0][2], &a[0][1], - &a[0][0]}; // p[0] stand for snake head - -int n = 3; // The length of snake body (without head) -int i, j; -int direction = 1; // 1.right;2.up;3.left;4.down;-1.exit -int delay = 200; // delay 0.2s(200ms) -_Bool isPause = 0; -// https://cloud.tencent.com/developer/article/1790043?from=15425 -// https://cloud.tencent.com/developer/article/2132941?from=15425 -#define gotoxy(y, x) \ - { \ - COORD coord = {(x), (y)}; /* coord */ \ - SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), \ - coord); /* Move Cursor to coord */ \ - } - -#define moveBody() \ - { \ - gotoxy(((p[0] - a[0]) / WIDTH) + 2, 2 * ((p[0] - a[0]) % WIDTH)); \ - printf("%c", BODY); \ - /* change p[0] to body*/ \ - *p[n] = 0; \ - gotoxy(((p[n] - a[0]) / WIDTH) + 2, 2 * ((p[n] - a[0]) % WIDTH)); \ - printf("%c", '_'); \ - for (i = n; i > 0; i--) { \ - p[i] = p[i - 1]; \ - /* per part goes to the address of the next part of body*/ \ - } \ - *p[0] = BODY; \ - /* The First part of snake body come to snake head*/ \ - } - -void moveRight() { - moveBody(); - p[0] = p[0] + 1; - /* Move snake head */ - *p[0] = HEAD; - /* change the char of new head(new address)'s shape to HEAD */ - gotoxy(((p[0] - a[0]) / WIDTH) + 2, 2 * ((p[0] - a[0]) % WIDTH)); - printf("%c", HEAD); - gotoxy(0, 10000); -} -void moveLeft() { - moveBody(); - p[0] = p[0] - 1; - *p[0] = HEAD; - gotoxy(((p[0] - a[0]) / WIDTH) + 2, 2 * ((p[0] - a[0]) % WIDTH)); - printf("%c", HEAD); - gotoxy(0, 10000); -} -void moveDown() { - moveBody(); - p[0] = p[0] + WIDTH; - *p[0] = HEAD; - gotoxy(((p[0] - a[0]) / WIDTH) + 2, 2 * ((p[0] - a[0]) % WIDTH)); - printf("%c", HEAD); - gotoxy(0, 10000); -} -void moveUp() { - moveBody(); - p[0] = p[0] - WIDTH; - *p[0] = HEAD; - gotoxy(((p[0] - a[0]) / WIDTH) + 2, 2 * ((p[0] - a[0]) % WIDTH)); - printf("%c", HEAD); - gotoxy(0, 10000); -} - -void show() { - system("clear"); - printf("Your Score is:%d\n", n - 3); - for (i = 0; i < WIDTH * 2; i++) - printf("_"); - printf("\n"); - for (i = 0; i < HEIGHT; i++) { - for (j = 0; j < WIDTH; j++) { - if (a[i][j] == 0) - printf("_|"); - else - printf("%c|", a[i][j]); - } - printf("\n"); - } - printf("\nw,s,a,d->Up Down Left Right;\nj,k->Speed Up/Down;\nESC: Exit\n"); -} - -_Bool randomApple() // Random -{ - srand(time(NULL)); - do { - i = rand() % HEIGHT; - j = rand() % WIDTH; - // if random location is 0 ->*;else find again and again - } while (a[i][j] != 0); - a[i][j] = '*'; - gotoxy(i + 2, 2 * j); - printf("*"); - gotoxy(0, 62); - printf("Food is at (%02d,%02d)", i, j); -} - -// exec when(before) moving -_Bool canEat() { - switch (direction) { - // Right - case 1: { - if (*(p[0] + 1) == '*') { - n++; // length++ - p[n] = p[n - 1]; - return 1; - } - break; - } - // Up - case 2: { - if (*(p[0] - WIDTH) == '*') { - n++; // length++ - p[n] = p[n - 1]; - return 1; - } - break; - } - // Left - case 3: { - if (*(p[0] - 1) == '*') { - n++; // length++ - p[n] = p[n - 1]; - return 1; - } - break; - } - // Down - case 4: { - if (*(p[0] + WIDTH) == '*') { - n++; // length++ - p[n] = p[n - 1]; - return 1; - } - break; - } - } - return 0; -} - -// exec when(before) moving -_Bool isFail() { - if (p[0] - WIDTH < &a[0][0] && direction == 2 || - p[0] + WIDTH > &a[HEIGHT - 1][WIDTH - 1] && direction == -2 || - direction == 1 && (p[0] - a[0]) % WIDTH == WIDTH - 1 || - direction == -1 && - (p[0] - a[0]) % WIDTH == 0) // snake is not in the matrix - { - gotoxy(27, 0); - printf("fail!\nDon't hit the wall!\n"); - direction = -1; - return 1; - } else { - switch (direction) { - // Right - case 1: { - { - for (i = n; i > 0; i--) { - if ((p[0] + 1) == p[i]) // Right of the head is body - { - gotoxy(27, 0); - printf("Fail!\nDon't eat your body!\n"); - direction = -1; - return 1; - } - } - break; - } - } - // Up - case 2: { - { - for (i = n; i > 0; i--) { - if ((p[0] - WIDTH) == p[i]) // Up of the head is body - { - gotoxy(27, 0); - printf("fail!\nDon't hit the wall!\n"); - direction = -1; - return 1; - } - } - break; - } - } - // Left - case 3: { - { - for (i = n; i > 0; i--) { - if ((p[0] - 1) == p[i]) // Left of the head is body - { - gotoxy(27, 0); - printf("fail!\nDon't hit the wall!\n"); - direction = -1; - return 1; - } - } - break; - } - } - // Down - case 4: { - { - for (i = n; i > 0; i--) { - if ((p[0] + WIDTH) == p[i]) // Down of the head is body - { - gotoxy(27, 0); - printf("fail!\nDon't hit the wall!\n"); - direction = -1; - return 1; - } - } - break; - } - } - } - } - return 0; -} - -DWORD WINAPI -KeyMonitor(LPVOID lpParam) // Direction Control:w,s,a,d-->Up Down Left Right -{ - char k; - while (1) { - k = _getch(); - - switch (k) { - case 'w': // Up - { - if (direction != 4) - direction = 2; - break; - } - case 's': // Down - { - if (direction != 2) - direction = 4; - break; - } - case 'a': // Left - { - if (direction != 1) - direction = 3; - break; - } - case 'd': // Right - { - if (direction != 3) - direction = 1; - break; - } - case 'j': // SpeedUp - { - delay = delay * 4 / 5; - break; - } - case 'k': // SpeedDown - { - delay = delay * 5 / 4; - break; - } - case 27: // ESC - { - gotoxy(27, 0); - printf("Exit!\n"); - isPause = 0; - direction = -1; - return 0; - break; - } - case ' ': // Space - { - if (isPause) { - gotoxy(27, 0); - printf("Continue!\n"); - } else { - gotoxy(27, 0); - printf("Pause!\n"); - } - isPause = !isPause; - break; - } - } - } -} - -int main() { - - HANDLE hThread1 = CreateThread(NULL, 0, KeyMonitor, NULL, 0, NULL); - show(); - randomApple(); - while (1) { - do { - Sleep(delay); - } while (isPause); - isFail(); // Judge if will eat self - switch (direction) // choose which direction to move - { - case 1: // Right - { - if (canEat()) { - moveRight(); - randomApple(); - } else { - moveRight(); - gotoxy(0, 14); - printf("%d", n - 3); - gotoxy(0, 62); - } - break; - } - case 2: // Up - { - if (canEat()) { - moveUp(); - randomApple(); - } else { - moveUp(); - gotoxy(0, 14); - printf("%d", n - 3); - gotoxy(0, 62); - } - break; - } - case 3: // Left - { - if (canEat()) { - moveLeft(); - randomApple(); - } else { - moveLeft(); - gotoxy(0, 14); - printf("%d", n - 3); - gotoxy(0, 62); - } - break; - } - case 4: // Down - { - if (canEat()) { - moveDown(); - randomApple(); - } else { - moveDown(); - gotoxy(0, 14); - printf("%d", n - 3); - gotoxy(0, 62); - } - break; - } - case -1: // Exit - { - gotoxy(27, 0); - printf("Your Final Score is:%d\n", n - 3); - CloseHandle(hThread1); - return -1; - break; - } - } - } - - return 0; -} diff --git a/c/Snake/test copy.cpp b/c/Snake/test copy.cpp deleted file mode 100644 index 75d477f..0000000 --- a/c/Snake/test copy.cpp +++ /dev/null @@ -1,15 +0,0 @@ -#include -#include - -using namespace std; - -int main() -{ - while (!kbhit()) //当没有键按下 - { - cout << "无键按下" << endl; - } - cout << "有键按下" << endl; - system("pause"); - return 0; -} \ No newline at end of file diff --git a/c/Snake/test.c b/c/Snake/test.c deleted file mode 100644 index 86520e2..0000000 --- a/c/Snake/test.c +++ /dev/null @@ -1,21 +0,0 @@ -#include -#include -#include -#define PRINT(format, ...) printf(format, ##__VA_ARGS__); -inline void HELLO() -{ - PRINT("HELLO WORLD%s", " c"); -} -void HELLO(); -enum Example : unsigned char -{ - A, - B, - C -}; -enum Example test = A; -int main() -{ - HELLO(); - return 0; -} diff --git a/c/SnakeNew/canonical_mode.h b/c/SnakeNew/canonical_mode.h deleted file mode 100644 index cc66036..0000000 --- a/c/SnakeNew/canonical_mode.h +++ /dev/null @@ -1,90 +0,0 @@ -#ifndef _CANONICAL_MODE_H -#define _CANONICAL_MODE_H - - -int disable_canonical_mode(); -int restore_terminal_settings(); - -#include -#if defined(__linux__) || defined(__gnu_linux__) - -#include -#include -struct termios old_termios; // 全局变量存储旧的终端设置 - -int disable_canonical_mode() { - struct termios new_termios; - - tcgetattr(STDIN_FILENO, &old_termios); - new_termios = old_termios; - new_termios.c_lflag &= ~(ICANON); - - tcsetattr(STDIN_FILENO, TCSANOW, &new_termios); - return 0; -} - -int restore_terminal_settings() { - tcsetattr(STDIN_FILENO, TCSANOW, &old_termios); - return 0; -} -#elif defined(__APPLE__) -int disable_canonical_mode() { - struct termios new_termios; - - tcgetattr(STDIN_FILENO, &old_termios); - new_termios = old_termios; - new_termios.c_lflag &= ~(ICANON); - - tcsetattr(STDIN_FILENO, TCSANOW, &new_termios); -} - -int restore_terminal_settings() { - tcsetattr(STDIN_FILENO, TCSANOW, &old_termios); -} -#elif defined(_WIN16) || defined(_WIN32) || defined(_WIN64) -#include -DWORD originalMode; -int disable_canonical_mode() { - HANDLE hInput; - - hInput = GetStdHandle(STD_INPUT_HANDLE); - - if (hInput == INVALID_HANDLE_VALUE) { - fprintf(stderr, "Error getting input handle\n"); - return 1; - } - - // 获取当前控制台模式 - if (!GetConsoleMode(hInput, &originalMode)) { - fprintf(stderr, "Error getting console mode\n"); - return 1; - } - - // 禁用规范模式 - DWORD newMode = originalMode & ~(ENABLE_LINE_INPUT | ENABLE_ECHO_INPUT); - if (!SetConsoleMode(hInput, newMode)) { - fprintf(stderr, "Error setting console mode\n"); - return 1; - } - - return 0; -} - -int restore_terminal_settings() { - HANDLE hInput = GetStdHandle(STD_INPUT_HANDLE); - - if (hInput == INVALID_HANDLE_VALUE) { - fprintf(stderr, "Error getting input handle\n"); - return 1; - } - - // 恢复原始控制台模式 - if (!SetConsoleMode(hInput, originalMode)) { - fprintf(stderr, "Error restoring console mode\n"); - return 1; - } - - return 0; -} -#endif -#endif /* _CANONICAL_MODE_H */ diff --git a/c/SnakeNew/clear.h b/c/SnakeNew/clear.h deleted file mode 100644 index 7673fb2..0000000 --- a/c/SnakeNew/clear.h +++ /dev/null @@ -1,12 +0,0 @@ -#ifndef _CLEAR_H -#define _CLEAR_H - -#if defined(__linux__) || defined(__gnu_linux__) -#define clear_screen() printf("\033c"); -#elif defined(__APPLE__) -#define clear_screen() printf("\033c"); -#elif defined(_WIN16) || defined(_WIN32) || defined(_WIN64) -#define clear_screen() printf("\033c"); -#endif - -#endif /* _CLEAR_H */ diff --git a/c/SnakeNew/global_var.h b/c/SnakeNew/global_var.h deleted file mode 100644 index e56d840..0000000 --- a/c/SnakeNew/global_var.h +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef _GLOBAL_VAR_H -#define _GLOBAL_VAR_H - -#include -#define WIDTH 40 -#define HEIGHT 20 - -#define HEAD '@' // The shape of snake head -#define HEAD_STRING "@" -#define BODY 'O' // The shape of snake body -#define BODY_STRING "O" -#define MAP_UNIT_STRING "[ ]" -#define FOOD_STRING "[*]" -char map[HEIGHT][WIDTH] = {{BODY, BODY, BODY, HEAD}}; // The initial char is 0 -char *snake[HEIGHT * WIDTH] = {&map[0][3], &map[0][2], &map[0][1], - &map[0][0]}; // p[0] stand for snake head - -int length = 3; // The length of snake body (without head) -int i, j; -signed char direction = 1; // 1.Right;2.Up;-1.Left;-2.Down;0.Exit -signed char directiontemp = 1; // 1.Right;2.Up;-1.Left;-2.Down;0.Exit -int delay = 200; // delay 0.2s(200ms) -bool isPause = 0; - -#endif /* _GLOBAL_VAR_H */ diff --git a/c/SnakeNew/key_monitor.h b/c/SnakeNew/key_monitor.h deleted file mode 100644 index 6de7a29..0000000 --- a/c/SnakeNew/key_monitor.h +++ /dev/null @@ -1,74 +0,0 @@ -#ifndef _KEYMONITOR_H -#define _KEYMONITOR_H - -#include "canonical_mode.h" -#include "global_var.h" -#include -#include - -int KeyMonitor(void *arg) // Direction Control:w,s,a,d-->Up Down Left Right -{ - - char k; - while (1) { - if (direction == 0) { - thrd_exit(0); - } - k = getchar(); - switch (k) { - case 'w': // Up - { - directiontemp = 2; - break; - } - case 's': // Down - { - directiontemp = -2; - break; - } - case 'a': // Left - { - directiontemp = -1; - break; - } - case 'd': // Right - { - directiontemp = 1; - break; - } - case 'j': // SpeedUp - { - delay = delay * 4 / 5; - if (delay == 0) - delay = 1; - break; - } - case 'k': // SpeedDown - { - delay = delay * 5 / 4; - break; - } - case 27: // ESC - { - printf("\nExit!\n"); - direction = 0; - directiontemp = 0; - thrd_exit(0); - // exit(0); - break; - } - case ' ': // Space - { - if (isPause) { - printf("\nContinue!\n"); - } else { - printf("\nPause!\n"); - } - isPause = !isPause; - break; - } - } - } -} - -#endif /* _KEYMONITOR_H */ diff --git a/c/SnakeNew/move.h b/c/SnakeNew/move.h deleted file mode 100644 index 38f37dd..0000000 --- a/c/SnakeNew/move.h +++ /dev/null @@ -1,41 +0,0 @@ -#ifndef _MOVE_H -#define _MOVE_H - -#include "global_var.h" -inline void moveBody() { - *snake[length] = 0; - for (i = length; i > 0; i--) { - snake[i] = - snake[i - 1]; /* per part goes to the address of the next part of body*/ - } - *snake[0] = BODY; /* The First part of snake body come to snake head*/ -} - -inline void moveRight() { - moveBody(); - snake[0] = snake[0] + 1; /* Move snake head */ - *snake[0] = - HEAD; /* change the char of new head(new address)'s shape to HEAD */ -} -inline void moveLeft() { - moveBody(); - snake[0] = snake[0] - 1; - *snake[0] = HEAD; -} -inline void moveDown() { - moveBody(); - snake[0] = snake[0] + WIDTH; - *snake[0] = HEAD; -} -inline void moveUp() { - moveBody(); - snake[0] = snake[0] - WIDTH; - *snake[0] = HEAD; -} -void moveBody(); -void moveRight(); -void moveLeft(); -void moveDown(); -void moveUp(); - -#endif /* _MOVE_H */ diff --git a/c/SnakeNew/show_map.h b/c/SnakeNew/show_map.h deleted file mode 100644 index 0b71865..0000000 --- a/c/SnakeNew/show_map.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef _SHWOMAP_H -#define _SHWOMAP_H - -#include "clear.h" -#include "global_var.h" -#include -inline void PaintMap() { - clear_screen(); - printf("\nYour Score is:%d\n", length - 3); - for (i = 0; i < (WIDTH)*2; i++) - printf("_"); - printf("\n"); - for (i = 0; i < (HEIGHT); i++) { - for (j = 0; j < (WIDTH); j++) { - if (map[i][j] == 0) - printf("_|"); - else - printf("%c|", map[i][j]); - } - printf("\n"); - } - printf("\n" - "w,s,a,d->Up Down Left Right;\n" - "j,k->Speed Up/Down;\n" - "ESC: Exit\n"); -} -void PaintMap(); - -#endif /* _SHWOMAP_H */ diff --git a/c/SnakeNew/sleep.h b/c/SnakeNew/sleep.h deleted file mode 100644 index ed616fa..0000000 --- a/c/SnakeNew/sleep.h +++ /dev/null @@ -1,55 +0,0 @@ -#ifndef _SLEEP_H -#define _SLEEP_H - -#if defined(__linux__) -// Linux -#include -#elif defined(__APPLE__) -// MacOS -#include -#elif defined(_WIN32) -// Windows -#include -#endif - -void s_sleep(int time) { -#if defined(__linux__) - // Linux - sleep(time); -#elif defined(__APPLE__) - // MacOS - sleep(time); -#elif defined(_WIN32) - // Windows - Sleep((time * 1000)); -#endif -} - -void ms_sleep(int time) { -#if defined(__linux__) - // Linux - usleep(time * 1000); -#elif defined(__APPLE__) - // MacOS - usleep(time * 1000); -#elif defined(_WIN32) - // Windows - Sleep(time); -#endif -} - -void us_sleep(int time) { -#if defined(__linux__) - // Linux - usleep(time); -#elif defined(__APPLE__) - // MacOS - usleep(time); -#elif defined(_WIN32) - // Windows - // Sleep(time/1000); - // _Static_assert(0, "unimplemented"); -#endif -} - -#endif /* _SLEEP_H */ diff --git a/c/SnakeNew/snake.c b/c/SnakeNew/snake.c deleted file mode 100644 index 9acffaf..0000000 --- a/c/SnakeNew/snake.c +++ /dev/null @@ -1,69 +0,0 @@ -#include "snake.h" -#include "canonical_mode.h" -#include "key_monitor.h" -#include -int main() { - disable_canonical_mode(); - thrd_t thr; - int thr_ret; - thr_ret = thrd_create(&thr, KeyMonitor, NULL); - if (thr_ret != thrd_success) { - printf("error!!!\n"); - getchar(); - exit(-1); - } - PaintMap(); - RandomApple(); - while (1) { - PaintMap(); - do { - ms_sleep(delay); - } while (isPause); - CheckInput(); - switch (isFail()) { - case 0: - break; - case 1: - printf("Fail!Don't hit the wall!\nYour Final Score is:%d\n", length - 3); - return -1; - break; - case 2: - printf("Fail!Don't eat your body!\nYour Final Score is:%d\n", length - 3); - return -1; - break; - } - - if (canEat()) { - length++; // length++ - snake[length] = snake[length - 1]; - RandomApple(); - } - - switch (direction) // choose which direction to move - { - case 1: // Right - { - moveRight(); - break; - } - case 2: // Up - { - moveUp(); - break; - } - case -1: // Left - { - moveLeft(); - break; - } - case -2: // Down - { - moveDown(); - break; - } - } - if (direction == 0) { - break; - } - } -} diff --git a/c/SnakeNew/snake.h b/c/SnakeNew/snake.h deleted file mode 100644 index 8a20979..0000000 --- a/c/SnakeNew/snake.h +++ /dev/null @@ -1,140 +0,0 @@ -#ifndef _SNAKE_H -#define _SNAKE_H -#include "clear.h" -#include "global_var.h" -#include "key_monitor.h" -#include "move.h" -#include "show_map.h" -#include "sleep.h" -#include -#include -#include - -/* Print String At (x,y) and make Cursor go to another place */ - -/* Random Food */ -void RandomApple() { - srand(time(NULL)); - do { - i = rand() % HEIGHT; - j = rand() % - WIDTH; /* if random location is 0 ->*;else find again and again*/ - } while (map[i][j] != 0); - map[i][j] = '*'; - // printf("Food is at (%02d,%02d)\n", i, j); -} - -// exec when(before) moving -int canEat() { - switch (direction) { - // Right - case 1: { - if (*(snake[0] + 1) == '*') { - return 1; - } - break; - } - // Up - case 2: { - if (*(snake[0] - WIDTH) == '*') { - return 1; - } - break; - } - // Left - case -1: { - if (*(snake[0] - 1) == '*') { - return 1; - } - break; - } - // Down - case -2: { - if (*(snake[0] + WIDTH) == '*') { - return 1; - } - break; - } - } - return 0; -} - -// exec when(before) moving -int isFail() { - if (snake[0] - WIDTH < &map[0][0] && direction == 2 || - snake[0] + WIDTH > &map[HEIGHT - 1][WIDTH - 1] && direction == -2 || - direction == 1 && (snake[0] - map[0]) % WIDTH == WIDTH - 1 || - direction == -1 && - (snake[0] - map[0]) % WIDTH == 0) // snake is not in the matrix - { - direction = 0; - return 1; - } else { - switch (direction) { - // Right - case 1: { - { - for (i = length; i > 0; i--) { - if ((snake[0] + 1) == snake[i]) // Right of the head is body - { - direction = 0; - return 2; - } - } - break; - } - } - // Up - case 2: { - { - for (i = length; i > 0; i--) { - if ((snake[0] - WIDTH) == snake[i]) // Up of the head is body - { - direction = 0; - return 2; - } - } - break; - } - } - // Left - case -1: { - { - for (i = length; i > 0; i--) { - if ((snake[0] - 1) == snake[i]) // Left of the head is body - { - direction = 0; - return 2; - } - } - break; - } - } - // Down - case -2: { - { - for (i = length; i > 0; i--) { - if ((snake[0] + WIDTH) == snake[i]) // Down of the head is body - { - direction = 0; - return 2; - } - } - break; - } - } - } - } - return 0; -} -void CheckInput() { - if (direction == 0) - return; - if (direction != -directiontemp) - direction = directiontemp; -} - -void RandomApple(); -void CheckInput(); - -#endif /* _SNAKE_H */ diff --git a/c/Socket_old/linux/client.c b/c/Socket_old/linux/client.c deleted file mode 100644 index 7a9afec..0000000 --- a/c/Socket_old/linux/client.c +++ /dev/null @@ -1,35 +0,0 @@ -#include -#include -#include -#include -#include -#include - -#define PORT 3339 -int main() { - int sockfd; - int len; - struct sockaddr_in addr; - int newsockfd; - char *buf = "come on"; - int len2; - char rebuf[40]; - sockfd = socket(AF_INET, SOCK_STREAM, 0); - addr.sin_family = AF_INET; - addr.sin_addr.s_addr = htonl(INADDR_ANY); - addr.sin_port = PORT; - len = sizeof(addr); - newsockfd = connect(sockfd, (struct sockaddr *)&addr, len); - if (newsockfd == -1) { - perror("connect failed"); - return 1; - } - len2 = sizeof(rebuf); - send(sockfd, buf, sizeof(buf), 0); - sleep(10); - recv(sockfd, rebuf, len2, 0); - rebuf[sizeof(rebuf) + 1] = '\0'; - printf("receive message: %s\n", rebuf); - close(sockfd); - return 0; -} diff --git a/c/Socket_old/linux/server.c b/c/Socket_old/linux/server.c deleted file mode 100644 index 7a8fa88..0000000 --- a/c/Socket_old/linux/server.c +++ /dev/null @@ -1,34 +0,0 @@ -#include -#include -#include -#include -#include -#include -#define PORT 3339 -int main() -{ - char *sendbuf = "thanks"; - char buf[256]; - int s_fd, c_fd; - int s_len, c_len; - struct sockaddr_in s_addr; - struct sockaddr_in c_addr; - s_fd = socket(AF_INET, SOCK_STREAM, 0); - s_addr.sin_family = AF_INET; - s_addr.sin_addr.s_addr = htonl(INADDR_ANY); - s_addr.sin_port = PORT; - s_len = sizeof(s_addr); - bind(s_fd, (struct sockaddr *)&s_addr, s_len); - listen(s_fd, 10); - while (1) - { - printf("please wait a moment\n"); - c_len = sizeof(c_addr); - c_fd = accept(s_fd, (struct sockaddr *)&c_addr, &c_len); - recv(c_fd, buf, sizeof(buf), 0); - printf("receive message: %s\n", buf); - send(c_fd, sendbuf, sizeof(sendbuf), 0); - close(c_fd); - } - return 0; -} \ No newline at end of file diff --git a/c/Socket_old/server_socket.py b/c/Socket_old/server_socket.py deleted file mode 100644 index f261a50..0000000 --- a/c/Socket_old/server_socket.py +++ /dev/null @@ -1,29 +0,0 @@ -from socket import * -import ujson as json - - -res = "HTTP/1.1 200 OK\r\n\r\n" + json.dumps({'code': 200}) - -def main(): - tcp_server_socket = socket(AF_INET, SOCK_STREAM) - tcp_server_socket.setsockopt(SOL_SOCKET, SO_REUSEADDR, 1) - - tcp_server_socket.bind(("0.0.0.0", 5702)) - tcp_server_socket.listen(128) - - while True: - - new_client, client_addr = tcp_server_socket.accept() - print(client_addr) - - recv_data = new_client.recv(1024) - print(recv_data.decode()) - - new_client.send(res.encode()) - - new_client.close() - tcp_server_socket.close() - - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/c/Socket_old/test.cpp b/c/Socket_old/test.cpp deleted file mode 100644 index e69de29..0000000 diff --git a/c/Socket_old/test/socket_client.c b/c/Socket_old/test/socket_client.c deleted file mode 100644 index 35bba55..0000000 --- a/c/Socket_old/test/socket_client.c +++ /dev/null @@ -1,36 +0,0 @@ -#include -#include -#include -#include -#include -#include -#include -#include -#define MAX_BUFFER 1024 -#define CONNECT_ADDR INADDR_ANY -#define CONNECT_PORT 3339 -int main() { - int socket_fd; // socket file descriptor - struct sockaddr_in addr; - char *message = "Hello"; - char respond[MAX_BUFFER]; - socket_fd = socket(AF_INET, SOCK_STREAM, 0); - if (socket_fd == -1) { - perror("socket"); - return -1; - } - addr.sin_family = AF_INET; // IPv4 - addr.sin_addr.s_addr = htonl(CONNECT_ADDR); // the IP address of the server - addr.sin_port = htons(CONNECT_PORT); // the port number of the server - if (connect(socket_fd, (struct sockaddr *)&addr, sizeof(addr)) < 0) { - perror("connect"); - return 1; - } - puts("[INFO]connected!\n"); - printf("[SEND]try to send message:%s\n", message); - send(socket_fd, message, strlen(message), 0); - size_t respond_len = recv(socket_fd, respond, sizeof(respond) - 1, 0); - printf("[RECV]receive message:%s\n", respond); - respond[respond_len] = '\0'; - close(socket_fd); -} \ No newline at end of file diff --git a/c/Socket_old/test/socket_server.c b/c/Socket_old/test/socket_server.c deleted file mode 100644 index b69cc10..0000000 --- a/c/Socket_old/test/socket_server.c +++ /dev/null @@ -1,63 +0,0 @@ -#include -#include -#include -#include -#include -#include -#include -#include -#define MAX_BUFFER 1024 -#define CONNECT_PORT 3339 - -int main() { - int socket_fd, client_socket, valread; - struct sockaddr_in address; - char buffer[MAX_BUFFER] = {0}; - char *message = "Hello, client!"; - - // 创建套接字 - socket_fd = socket(AF_INET, SOCK_STREAM, 0); - if (socket_fd == -1) { - perror("socket"); - return -1; - } - - // 准备地址结构 - address.sin_family = AF_INET; - address.sin_addr.s_addr = INADDR_ANY; - address.sin_port = htons(CONNECT_PORT); - - // 将套接字绑定到指定端口 - if (bind(socket_fd, (struct sockaddr *)&address, sizeof(address)) < 0) { - perror("bind"); - return -1; - } - - // 监听连接 - if (listen(socket_fd, 1) < 0) { - perror("listen"); - return -1; - } - - puts("[INFO]Waiting for connections..."); - - // 等待客户端连接 - client_socket = accept(socket_fd, NULL, NULL); - if (client_socket < 0) { - perror("accept"); - return -1; - } - - // 从客户端接收消息 - valread = read(client_socket, buffer, sizeof(buffer)); - printf("[RECV]Received message from client: %s\n", buffer); - - // 发送回应消息给客户端 - send(client_socket, message, strlen(message), 0); - printf("[SEND]Sent message to client: %s\n", message); - - close(client_socket); - close(socket_fd); - - return 0; -} diff --git a/c/Socket_old/windows/client.c b/c/Socket_old/windows/client.c deleted file mode 100644 index 07117a4..0000000 --- a/c/Socket_old/windows/client.c +++ /dev/null @@ -1,124 +0,0 @@ -#include -#include -#include -// #pragma comment(lib, "ws2_32.lib") //load ws2_32.dll - -#define FORMAT_MSG "GET %s HTTP/1.1\r\nHost: %s\r\nUser-Agent: curl/7.79.1\r\nAccept: */*\r\n\r\n" - -typedef void Fun(char *); - -#define MAXLINE 100 -#define MAXRECV 0xfff - -// Get admin from url(String Slicing) -void get_admin(const char *url, char *admin) -{ - int start = 7; - if (strstr(url, "https")) - start++; - // String Slicing - char *ret = strchr(url + start, '/'); - // String Slicing - int admin_len = ret ? ret - url - start : strlen(url) - start; - // String Slicing - strncpy(admin, url + start, admin_len); -} - -void get_admin_ip(const char *url, char *ip) -{ - char admin[30]; - get_admin(url, admin); - - struct hostent *phst = gethostbyname(admin); - struct in_addr *iddr = (struct in_addr *)phst->h_addr; - inet_ntoa(*iddr); - - // Convert the network address to the string format across the "." - strcpy(ip, inet_ntoa(*iddr)); -} - -// If url contians https, return 443, else return 80 -int get_url_port(const char *url) -{ - char *ret = strstr(url, "https"); - - return ret ? 443 : 80; -} - -void request(const char *sUrl, Fun fun) -{ - struct sockaddr_in servaddr; - char buf[MAXRECV + 1]; - // char format_msg[] = ( - // "GET %s HTTP/1.1\r\n" - // "Host: %s\r\n" - // "User-Agent: curl/7.79.1\r\n" - // "Accept: */*\r\n\r\n" - //); - char send_msg[strlen(FORMAT_MSG) + strlen(sUrl) * 2]; - char admin[30]; - char ip[20]; - int port; - int r; - SOCKET sockfd; - - WSADATA wsaData; - WSAStartup(MAKEWORD(2, 2), &wsaData); - - port = get_url_port(sUrl); - get_admin_ip(sUrl, ip); - get_admin(sUrl, admin); - sprintf(send_msg, FORMAT_MSG, sUrl, admin); - // puts(send_msg); - - sockfd = socket(AF_INET, SOCK_STREAM, 0); - - memset(&servaddr, 0, sizeof(servaddr)); - - servaddr.sin_family = AF_INET; - servaddr.sin_addr.s_addr = inet_addr(ip); - servaddr.sin_port = htons(port); - - connect(sockfd, (struct sockaddr *)&servaddr, sizeof(servaddr)); - send(sockfd, send_msg, strlen(send_msg), 0); - - //Segmentation receiving treatment - do - { - r = recv(sockfd, buf, MAXRECV, 0); - if (r < 255) - buf[r] = '\0'; - fun(buf); - } while (r == 255); - - closesocket(sockfd); - WSACleanup(); - - return; -} - -// Example callback function -void print_msg(char *str) -{ - printf("%s", str); -} - -int main(int argc, char *argv[]) -{ - char str[MAXLINE] = {0}; - - if (argc < 2) - { - printf("usage: ./client message\n"); - exit(0); - } - - system("chcp 65001"); - request(argv[1], print_msg); - - // FILE *fp = fopen("test.txt", "w"); - // fputs(str, fp); - // fclose(fp); - - return 0; -} \ No newline at end of file diff --git a/c/Socket_old/windows/request.c b/c/Socket_old/windows/request.c deleted file mode 100644 index 1e7a947..0000000 --- a/c/Socket_old/windows/request.c +++ /dev/null @@ -1,283 +0,0 @@ -#include -#include -#include -#include -// #pragma comment(lib, "ws2_32.lib") //load ws2_32.dll - -typedef void Fun(char *, int); - -#define MAXLINE 100 -#define MAXRECV 0xfff -#define PROXY_IP "127.0.0.1" -#define PROXY_PORT 7890 -#define PROXY_FLAG 1 - -FILE *fp = NULL; -_Bool dowm_flag = 0; - -const char *format_headers = ("GET %s HTTP/1.1\r\n" - "Host: %s\r\n" - "Connection: keep-alive\r\n" - "Accept: */*\r\n" - "%s" - "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36 Edg/101.0.1210.47\r\n\r\n"); - -// Get admin from url(String Slicing) -void get_admin(const char *url, char *admin) -{ - int start = 7; - if (strstr(url, "https")) - start++; - char *r1 = strchr(url + start, ':'); - char *r2 = strchr(url + start, '/'); - int admin_len = r1 ? r1 - url - start : r2 ? r2 - url - start - : strlen(url) - start; - - strncpy(admin, url + start, admin_len); -} - -void get_admin_ip(const char *url, char *ip) -{ - char admin[30] = {0}; - get_admin(url, admin); - - struct hostent *phst = gethostbyname(admin); - struct in_addr *iddr = (struct in_addr *)phst->h_addr; - inet_ntoa(*iddr); - strcpy(ip, inet_ntoa(*iddr)); -} - -// If url contians https, return 443, else return 80 -int get_url_port(const char *url) -{ - int port; - char *p; - - if (p = strchr(url + 7, ':')) - { - sscanf(p + 1, "%d", &port); - return port; - } - - char *ret = strstr(url, "https"); - return ret ? 443 : 80; -} - -_Bool get_file_name(char *header, char *filename) -{ - char str[200]; - char *p; - p = strstr(header, "Content-Disposition"); - if (p == NULL) - return 0; - sscanf(p, "%*s %[^\n]", str); - p = strchr(str, '\''); - if (p == NULL) - return 0; - p += 2; - strncpy(filename, p, strlen(p) - 1); - filename[strlen(p) - 1] = '\0'; - - return 1; -} - -void check_type(const char *url, char *type, char *filename, int nameflag) -{ - char type_list[][15] = {"json", "text", "html", "x-javascript"}; - - if (type == NULL) - return; - - for (int i = 0; i < 4; i++) - { - if (strstr(type, type_list[i])) - return; - } - - if (!nameflag) - { - char *p = strrchr(url, '/') + 1; - char *q = strrchr(p, '?'); - if (q) - { - strncpy(filename, p, q - p); - filename[q - p] = '\0'; - } - else - { - strncpy(filename, p, strlen(p)); - filename[strlen(p)] = '\0'; - } - if (strchr(p, '.') == NULL) - { - char ext[10] = {0}; - ext[0] = '.'; - - sscanf(type, "%*[^/]/%[a-zA-Z]", ext + 1); - strcat(filename, ext); - } - } - fp = fopen(filename, "wb"); - dowm_flag = 1; -} - -int request(const char *sUrl, Fun *fun) -{ - struct sockaddr_in servaddr; - clock_t start, end; - SOCKET sockfd; - - char buf[MAXRECV + 1] = {0}; - char send_msg[strlen(format_headers) + strlen(sUrl) * 2]; - char data_type[10] = "text/plain"; - char header[2500] = {0}; - char admin[30] = {0}; - char filename[100]; - char ip[20] = {0}; - _Bool chunked = 1; - int header_len = 0; - int cont_len = 0; - int data_len = 0; - int status = 0; - int r_len; - int port; - char *p; - char *q; - - WSADATA wsaData; - WSAStartup(MAKEWORD(2, 2), &wsaData); - - port = get_url_port(sUrl); - get_admin(sUrl, admin); - get_admin_ip(sUrl, ip); - sprintf(send_msg, format_headers, sUrl, admin, - strstr(admin, "i.pximg.net") ? "referer: http://www.pixiv.net/\r\n" : ""); - - sockfd = socket(AF_INET, SOCK_STREAM, 0); - - memset(&servaddr, 0, sizeof(servaddr)); - - servaddr.sin_family = AF_INET; - servaddr.sin_addr.s_addr = inet_addr(PROXY_FLAG ? PROXY_IP : ip); - servaddr.sin_port = htons(PROXY_FLAG ? PROXY_PORT : port); - - connect(sockfd, (struct sockaddr *)&servaddr, sizeof(servaddr)); - send(sockfd, send_msg, strlen(send_msg), 0); - - start = clock(); - - while (1) - { - memset(buf, 0, sizeof(buf)); - r_len = recv(sockfd, buf, MAXBYTE, 0); - memmove(header + header_len, buf, r_len); - header_len += r_len; - p = strstr(header, "\r\n\r\n"); - if (p) - { - p[0] = '\0'; - p += 4; - data_len = header_len - (p - header); - break; - } - } - - sscanf(header, "%*s %d", &status); - if (q = strstr(header, "Content-Type")) - sscanf(q, "%*s %s", data_type); - check_type(sUrl, data_type, filename, get_file_name(header, filename)); - - // print response - if (status != 200) - printf("\n%s\n\n", header); - fun(p, data_len); - - if (strstr(header, "Transfer-Encoding: chunked") == NULL) - { - chunked = 0; - p = strstr(header, "Content-Length"); - sscanf(p, "%*s %d", &cont_len); - } - - while (1) - { - if (!chunked) - { - if (data_len >= cont_len) - break; - } - else - { - if (strstr(buf, "\r\n0\r\n\r\n")) - break; - } - r_len = recv(sockfd, buf, MAXRECV, 0); - buf[r_len] = '\0'; - data_len += r_len; - fun(buf, r_len); - if (dowm_flag) - { - end = clock(); - printf("\r"); - printf("downloading %d/%d bytes %.0f%% - %.1fs", - data_len, cont_len, (data_len / (float)cont_len) * 100, (end - start) / 1000.0); - } - } - - fclose(fp); - closesocket(sockfd); - WSACleanup(); - - return status; -} - -// Example callback function -void process_data(char *str, int len) -{ - if (!dowm_flag) - { - printf("%s", str); - } - else - { - fwrite(str, sizeof(char), len, fp); - } -} - -// Simply replace https with http -void https_to_http(char **url) -{ - if (url[1][4] == 's') - { - memmove(url[1] + 1, "http", 4); - url[1]++; - } -} - -int main(int argc, char *argv[]) -{ - clock_t start, end; - // char *url = "http://tva1.sinaimg.cn/large/ec43126fgy1h1753rj0z3j20k00zk7b7.jpg"; - // char *url = "http://api.lolicon.app/setu/v2"; - - if (argc < 2) - { - printf("usage: ./request url\n"); - exit(0); - } - - if (argc < 3 || !strstr(argv[2], "-b")) - system("chcp 65001"); - - https_to_http(argv); - printf("\n"); - start = clock(); - // while (request(argv[1], process_data)!=200); - request(argv[1], process_data); - // request(url, process_data); - end = clock(); - - printf("\n\nexecution time %f seconds\n", (end - start) / 1000.0); - - return 0; -} \ No newline at end of file diff --git a/c/Socket_old/windows/server.c b/c/Socket_old/windows/server.c deleted file mode 100644 index e69de29..0000000 diff --git a/c/Sort/README.md b/c/Sort/README.md deleted file mode 100644 index 782038e..0000000 --- a/c/Sort/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# c-sort-algorithm - -[c-sort-algorithm](https://www.runoob.com/cprogramming/c-sort-algorithm.html) diff --git a/c/Sort/bubble_sort.c b/c/Sort/bubble_sort.c deleted file mode 100644 index 6cfb373..0000000 --- a/c/Sort/bubble_sort.c +++ /dev/null @@ -1,10 +0,0 @@ -void bubble_sort(int arr[], int len) { - int i, j, temp; - for (i = 0; i < len - 1; i++) - for (j = 0; j < len - 1 - i; j++) - if (arr[j] > arr[j + 1]) { - temp = arr[j]; - arr[j] = arr[j + 1]; - arr[j + 1] = temp; - } -} \ No newline at end of file diff --git a/c/Sort/insertion_sort.c b/c/Sort/insertion_sort.c deleted file mode 100644 index e2d57ad..0000000 --- a/c/Sort/insertion_sort.c +++ /dev/null @@ -1,9 +0,0 @@ -void insertion_sort(int arr[], int len) { - int i, j, temp; - for (i = 1; i < len; i++) { - temp = arr[i]; - for (j = i; j > 0 && arr[j - 1] > temp; j--) - arr[j] = arr[j - 1]; - arr[j] = temp; - } -} \ No newline at end of file diff --git a/c/Sort/merge_sort.c b/c/Sort/merge_sort.c deleted file mode 100644 index 0f49709..0000000 --- a/c/Sort/merge_sort.c +++ /dev/null @@ -1,31 +0,0 @@ -int min(int x, int y) { return x < y ? x : y; } -void merge_sort(int arr[], int len) { - int *a = arr; - int *b = (int *)malloc(len * sizeof(int)); - int seg, start; - for (seg = 1; seg < len; seg += seg) { - for (start = 0; start < len; start += seg + seg) { - int low = start, mid = min(start + seg, len), - high = min(start + seg + seg, len); - int k = low; - int start1 = low, end1 = mid; - int start2 = mid, end2 = high; - while (start1 < end1 && start2 < end2) - b[k++] = a[start1] < a[start2] ? a[start1++] : a[start2++]; - while (start1 < end1) - b[k++] = a[start1++]; - while (start2 < end2) - b[k++] = a[start2++]; - } - int *temp = a; - a = b; - b = temp; - } - if (a != arr) { - int i; - for (i = 0; i < len; i++) - b[i] = a[i]; - b = a; - } - free(b); -} \ No newline at end of file diff --git a/c/Sort/merge_sort_recursive.c b/c/Sort/merge_sort_recursive.c deleted file mode 100644 index aada125..0000000 --- a/c/Sort/merge_sort_recursive.c +++ /dev/null @@ -1,22 +0,0 @@ -void merge_sort_recursive(int arr[], int reg[], int start, int end) { - if (start >= end) - return; - int len = end - start, mid = (len >> 1) + start; - int start1 = start, end1 = mid; - int start2 = mid + 1, end2 = end; - merge_sort_recursive(arr, reg, start1, end1); - merge_sort_recursive(arr, reg, start2, end2); - int k = start; - while (start1 <= end1 && start2 <= end2) - reg[k++] = arr[start1] < arr[start2] ? arr[start1++] : arr[start2++]; - while (start1 <= end1) - reg[k++] = arr[start1++]; - while (start2 <= end2) - reg[k++] = arr[start2++]; - for (k = start; k <= end; k++) - arr[k] = reg[k]; -} -void merge_sort(int arr[], const int len) { - int reg[len]; - merge_sort_recursive(arr, reg, 0, len - 1); -} \ No newline at end of file diff --git a/c/Sort/quick_sort.c b/c/Sort/quick_sort.c deleted file mode 100644 index ac8cd3c..0000000 --- a/c/Sort/quick_sort.c +++ /dev/null @@ -1,46 +0,0 @@ -typedef struct _Range { - int start, end; -} Range; -Range new_Range(int s, int e) { - Range r; - r.start = s; - r.end = e; - return r; -} -void swap(int *x, int *y) { - int t = *x; - *x = *y; - *y = t; -} -void quick_sort(int arr[], const int len) { - if (len <= 0) - return; // 避免len等於負值時引發段錯誤(Segment Fault) - // r[]模擬列表,p為數量,r[p++]為push,r[--p]為pop且取得元素 - Range r[len]; - int p = 0; - r[p++] = new_Range(0, len - 1); - while (p) { - Range range = r[--p]; - if (range.start >= range.end) - continue; - int mid = arr[(range.start + range.end) / 2]; // 選取中間點為基準點 - int left = range.start, right = range.end; - do { - while (arr[left] < mid) - ++left; // 檢測基準點左側是否符合要求 - while (arr[right] > mid) - --right; //檢測基準點右側是否符合要求 - - if (left <= right) { - swap(&arr[left], &arr[right]); - left++; - right--; // 移動指針以繼續 - } - } while (left <= right); - - if (range.start < right) - r[p++] = new_Range(range.start, right); - if (range.end > left) - r[p++] = new_Range(left, range.end); - } -} \ No newline at end of file diff --git a/c/Sort/quick_sort_recursive.c b/c/Sort/quick_sort_recursive.c deleted file mode 100644 index c98d10c..0000000 --- a/c/Sort/quick_sort_recursive.c +++ /dev/null @@ -1,26 +0,0 @@ -void swap(int *x, int *y) { - int t = *x; - *x = *y; - *y = t; -} -void quick_sort_recursive(int arr[], int start, int end) { - if (start >= end) - return; - int mid = arr[end]; - int left = start, right = end - 1; - while (left < right) { - while (arr[left] < mid && left < right) - left++; - while (arr[right] >= mid && left < right) - right--; - swap(&arr[left], &arr[right]); - } - if (arr[left] >= arr[end]) - swap(&arr[left], &arr[end]); - else - left++; - if (left) - quick_sort_recursive(arr, start, left - 1); - quick_sort_recursive(arr, left + 1, end); -} -void quick_sort(int arr[], int len) { quick_sort_recursive(arr, 0, len - 1); } \ No newline at end of file diff --git a/c/Sort/selection_sort.c b/c/Sort/selection_sort.c deleted file mode 100644 index 7e2dbb9..0000000 --- a/c/Sort/selection_sort.c +++ /dev/null @@ -1,29 +0,0 @@ -void selection_sort(int a[], int len) { - int i, j, temp; - - for (i = 0; i < len - 1; i++) { - int min = i; // 记录最小值,第一个元素默认最小 - for (j = i + 1; j < len; j++) // 访问未排序的元素 - { - if (a[j] < a[min]) // 找到目前最小值 - { - min = j; // 记录最小值 - } - } - if (min != i) { - temp = a[min]; // 交换两个变量 - a[min] = a[i]; - a[i] = temp; - } - /* swap(&a[min], &a[i]); */ // 使用自定义函数交換 - } -} - -/* -void swap(int *a,int *b) // 交换两个变量 -{ - int temp = *a; - *a = *b; - *b = temp; -} -*/ \ No newline at end of file diff --git a/c/Sort/shell_sort.c b/c/Sort/shell_sort.c deleted file mode 100644 index 143c7f3..0000000 --- a/c/Sort/shell_sort.c +++ /dev/null @@ -1,11 +0,0 @@ -void shell_sort(int arr[], int len) { - int gap, i, j; - int temp; - for (gap = len >> 1; gap > 0; gap = gap >> 1) - for (i = gap; i < len; i++) { - temp = arr[i]; - for (j = i - gap; j >= 0 && arr[j] > temp; j -= gap) - arr[j + gap] = arr[j]; - arr[j + gap] = temp; - } -} \ No newline at end of file diff --git a/c/Sort/test.c b/c/Sort/test.c deleted file mode 100644 index 1888027..0000000 --- a/c/Sort/test.c +++ /dev/null @@ -1,11 +0,0 @@ -#include "Sort.h" -#include -int main() { - int arr[] = {22, 34, 3, 32, 82, 55, 89, 50, 37, 5, 64, 35, 9, 70}; - int len = (int)sizeof(arr) / sizeof(*arr); - bubble_sort(arr, len); - int i; - for (i = 0; i < len; i++) - printf("%d ", arr[i]); - return 0; -} \ No newline at end of file diff --git a/c/Sqlite/src/main.c b/c/Sqlite/src/main.c deleted file mode 100644 index 3792128..0000000 --- a/c/Sqlite/src/main.c +++ /dev/null @@ -1,21 +0,0 @@ -#include -#include -#include -int main(int argc, char *argv[]) -{ - sqlite3 *db; - char *zErrMsg = 0; - int rc; - rc = sqlite3_open("test.db", &db); - if (rc) - { - fprintf(stderr, "Open database failed:%s\n", sqlite3_errmsg(db)); - exit(0); - } - else - { - fprintf(stderr, "Open database successfully\n"); - } - sqlite3_close(db); - return 0; -} diff --git a/c/Sqrt/include/sqrt.h b/c/Sqrt/include/sqrt.h deleted file mode 100644 index 283c54c..0000000 --- a/c/Sqrt/include/sqrt.h +++ /dev/null @@ -1,7 +0,0 @@ -#ifndef _sqrt_h -#define _sqrt_h -#include - -double get_sqrt(double var1); - -#endif diff --git a/c/Sqrt/src/main.c b/c/Sqrt/src/main.c deleted file mode 100644 index 86a79f9..0000000 --- a/c/Sqrt/src/main.c +++ /dev/null @@ -1,11 +0,0 @@ -#include -#include "../include/sqrt.h" -int main() -{ - double b = 25.0; - double a = 0.0; - a = get_sqrt(b); - - printf("a is %lf, b is %lf\n", a, b); - return 0; -} diff --git a/c/String/README.md b/c/String/README.md deleted file mode 100644 index a43f666..0000000 --- a/c/String/README.md +++ /dev/null @@ -1,39 +0,0 @@ -# A custom library to simulate string operation func in golang - -- [x] func EqualFold(s, t string) bool -- [x] func Index(s, substr string) int -- [ ] func IndexAny(s []byte, chars string) int -- [x] func IndexByte(b []byte, c byte) int -- [ ] func IndexFunc(s string, f func(rune) bool) int -- [ ] func IndexRune(s string, r rune) int -- [ ] func LastIndex(s, substr string) int -- [ ] func LastIndexAny(s, chars string) int -- [ ] func LastIndexByte(s string, c byte) int -- [ ] func LastIndexFunc(s string, f func(rune) bool) int - -- [ ] func TrimSpace(str string) string -- [x] func HasPrefix(s string, prefix string) bool -- [x] func HasSuffix(s string, suffix string) bool -- [ ] func Replace(str string, old string, new string, n int) -- [ ] func Title(s string) string -- [ ] func ToTitle(s string) string -- [x] func ToLower(str string) string -- [x] func ToUpper(str string) string -- [x] func Contains(s, substr string) bool -- [ ] func ContainsAny(s,chars string)bool -- [x] func Count(s, sep string) int -- [ ] func Repeat(str string, count int)string -- [ ] func Trim(str string, cut string) -- [ ] func TrimLeft(str string, cut string) -- [ ] func TrimRight(str string, cut string) -- [ ] func TrimPrefix(S string, prefix string) string -- [ ] func TrimSpace(s string) string -- [ ] func Fields(str string) []string -- [ ] func FieldsFunc(s []byte, f func(rune) bool) [][]byte -- [ ] func ContainsRune(s string, r rune) bool -- [ ] func Split(str string, split string) []string -- [ ] func Join(s1 []string, sep string) string -- [ ] func SplitN(s, sep string, n int) []string -- [ ] func SplitAfter(S String, sep string) []string -- [ ] func SplitAfterN(string s, sep string, n int) []string -- [ ] func Cut(s, sep string) (before, after string, found bool) diff --git a/c/String/gostring.c b/c/String/gostring.c deleted file mode 100644 index b63526b..0000000 --- a/c/String/gostring.c +++ /dev/null @@ -1,228 +0,0 @@ -#include -#include -#include - -// Only ASCII supported; bugs still exist on UTF-8 -_Bool EqualFold(const char *s1, const char *s2) -{ - int i = strlen(s1); - if (i != strlen(s2)) - { - return 0; - } - else - { - while (i + 1) - { - if (s1[i] != s2[i]) - { - if ((s1[i] >= 'A' && s1[i] <= 'Z' && s2[i] >= 'a' && - s2[i] <= 'z' && s1[i] - s2[i] == 'A' - 'a')) - { - i--; - } - else if ((s2[i] >= 'A' && s2[i] <= 'Z' && s1[i] >= 'a' && - s1[i] <= 'z' && s2[i] - s1[i] == 'A' - 'a')) - { - i--; - } - else - { - return 0; - } - } - else - { - i--; - } - } - } - return 1; -} -void testEqualFold() -{ - printf("%s", EqualFold("AbcDefGhIjKl", "aBcdEfGhiJkl") ? "True" : "False"); -} - -int IndexByte(const char *s, char c) -{ - int i = 0; - while (s[i] != c) - { - if (s[i] == '\0') - { - return -1; - } - else - { - i++; - } - } - return i; -} -void testIndexByte() -{ - printf("%d\n", IndexByte("chicken", 'k')); - printf("%d\n", IndexByte("chicken", 'd')); - printf("%d\n", IndexByte("你好", '\xA0')); -} - -int Index(const char *s, const char *sep) -{ - char *i = strstr(s, sep); - if (i == NULL) - { - return -1; - } - else - { - return i - s; - } -} -void testIndex() -{ - printf("%d\n", Index("RUNOOB", "NOOB")); - printf("%d\n", Index("你好", "\xA0")); -} - -// Only ASCII supported; bugs still exist on UTF-8 -#define HasPrefix(s, prefix) \ - ((_Bool)(strncmp((s), (prefix), strlen((prefix))) == 0)) -void testHasPrefix() -{ - printf("%s\n", HasPrefix("abcdefg", "abc") ? "True" : "False"); - printf("%s\n", HasPrefix("abcdefg", "ac") ? "True" : "False"); - printf("%s\n", HasPrefix("你好", "\xE4") ? "True" : "False"); -} - -// Only ASCII supported; bugs still exist on UTF-8 -#define HasSuffix(s, prefix) \ - ((_Bool)(strcmp((s) + strlen((s)) - strlen((prefix)), (prefix)) == 0)) -void testHasSuffix() -{ - printf("%s\n", HasSuffix("abcdefg", "efg") ? "True" : "False"); - printf("%s\n", HasSuffix("abcdefg", "eg") ? "True" : "False"); - printf("%s\n", HasSuffix("你好", "\xBD") ? "True" : "False"); -} - -char *ToUpper(const char *str) -{ - char *ret = (char *)malloc(sizeof(char) * (strlen(str) + 1)); - int i; - if (ret == NULL) - { - return NULL; - } - else - { - for (i = 0; str[i] != '\0'; i++) - { - if (str[i] >= 'a' && str[i] <= 'z') - { - ret[i] = str[i] - 'a' + 'A'; - } - else - { - ret[i] = str[i]; - } - } - ret[i] = '\0'; - return ret; - } -} -void testToUpper() -{ - char array[] = "你好Go!\nHello,GO!"; - char *tmp = ToUpper(array); - printf("ToUpper(%s)\n%s", array, tmp); - free(tmp); -} - -char *ToLower(const char *str) -{ - char *ret = (char *)malloc(sizeof(char) * (strlen(str) + 1)); - int i; - if (ret == NULL) - { - return NULL; - } - else - { - for (i = 0; str[i] != '\0'; i++) - { - if (str[i] >= 'A' && str[i] <= 'Z') - { - ret[i] = str[i] - 'A' + 'a'; - } - else - { - ret[i] = str[i]; - } - } - ret[i] = '\0'; - return ret; - } -} -void testToLower() -{ - char array[] = "你好Go!\nHello,GO!"; - char *tmp = ToLower(array); - printf("ToLower(%s)\n%s", array, tmp); - free(tmp); -} - -int Count(const char *s, const char *sep) -{ - if (sep[0] == '\0') - { - return strlen(s) + 1; - } - int count = 0; - while ((s = (strstr(s, sep))) != NULL) - { - s++; - count++; - } - return count; -} -void testCount() -{ - char *s1 = "1145141919810"; - char *s2 = "2"; - char *s3 = ""; - printf("Count(\"%s\",\"%s\")=%d\n", s1, s2, Count(s1, s2)); - printf("Count(\"%s\",\"%s\")=%d\n", s1, s3, Count(s1, s3)); -} - -#define Contains(str, substr) ((_Bool)strstr((str), (substr))) -void testContains() -{ - char s1[] = "I love Java Programming!"; - char s2[] = "Programming"; - char s3[] = "网络上学习Java"; - char s4[] = "I love Java Programming!"; - char s5[] = "I love Java programming!"; - char s6[] = "Java"; - char s7[] = "Java programming!"; - printf("Contains(\"%s\",\"%s\")=%d\n", s1, s2, Contains(s1, s2)); - printf("Contains(\"%s\",\"%s\")=%d\n", s1, s3, Contains(s1, s3)); - printf("Contains(\"%s\",\"%s\")=%d\n", s1, s4, Contains(s1, s4)); - printf("Contains(\"%s\",\"%s\")=%d\n", s1, s5, Contains(s1, s5)); - printf("Contains(\"%s\",\"%s\")=%d\n", s1, s6, Contains(s1, s6)); - printf("Contains(\"%s\",\"%s\")=%d\n", s1, s7, Contains(s1, s7)); - printf("Contains(\"%s\",\"%s\")=%d\n", "", "", Contains("", "")); - printf("Contains(\"%s\",\"%s\")=%d\n", "1", "", Contains("1", "")); -} - -int main() -{ - // testEqualFold(); - // testIndexByte(); - // testIndex(); - // testHasPrefix(); - // testHasSuffix(); - // testToUpper(); - // testToLower(); - // testCount(); - // testContains(); -} \ No newline at end of file diff --git a/c/String/slice.c b/c/String/slice.c deleted file mode 100644 index da06403..0000000 --- a/c/String/slice.c +++ /dev/null @@ -1,7 +0,0 @@ -typedef struct _slice -{ - char **element; - int len; - -} slice; -slice initializeSlice(slice *Slice); \ No newline at end of file diff --git a/c/StringOperation/string1.c b/c/StringOperation/string1.c deleted file mode 100644 index 3aea4c1..0000000 --- a/c/StringOperation/string1.c +++ /dev/null @@ -1,21 +0,0 @@ -#include -#include -#include -int main(int argc, char *argv[]) -{ - // printf("%s\n",str(1)); - if (argc != 3) - { - printf("Plz input 2 str,and I will do a strcat\n"); - return 0; - } - printf("argv[1]=%s\nargv[2]=%s\n", argv[1], argv[2]); - printf("strcat(argv[1],argv[2])=%s\n\n", strcat(argv[1], argv[2])); - printf("strlen(argv[1])=%d\n", strlen(argv[1])); - printf("strlen(argv[2])=%d\n", strlen(argv[2])); - char str[strlen(argv[1]) + 1]; - printf("str[i]\ni=%d\n\n", sizeof(str) / sizeof(str[0])); - sprintf(str, "%s%s", argv[1], argv[2]); - printf("sprintf(str,\"%s%s\",argv[1],argv[2])\nstr=%s\n", "%s", "%s", str); - return 0; -} diff --git a/c/StringOperation/string2.c b/c/StringOperation/string2.c deleted file mode 100644 index 4702235..0000000 --- a/c/StringOperation/string2.c +++ /dev/null @@ -1,19 +0,0 @@ -#include -#include -#include -int main() -{ - char a[4] = "111", b[6] = "222"; - char c[3] = {'3', '3'}; - printf("a=%s\n", a); - printf("b=%s\n", b); - printf("c=%s\n", c); - // char c[] = strcat(a,b); - strcat(c, a); - c[4] = '4'; - printf("strcat(a,b)=%s\n", strcat(a, b)); - printf("a'=%s\n", a); - printf("la=%lu\n", sizeof(a) / sizeof(a[0])); - printf("c'=%s\n", c); - return 0; -} diff --git a/c/TODO.md b/c/TODO.md deleted file mode 100644 index fe184a0..0000000 --- a/c/TODO.md +++ /dev/null @@ -1,5 +0,0 @@ -# TODOLIST - -- [ ] 2048 game -- [ ] Gobang game -- [ ] use macro/enum instead of direction number diff --git a/c/Transposition/transposition.c b/c/Transposition/transposition.c deleted file mode 100644 index f1a8a88..0000000 --- a/c/Transposition/transposition.c +++ /dev/null @@ -1,72 +0,0 @@ -#include -void PrintArrayMatrix(int **array, int row, int column); -int **ArrayTransposition(int **array, int row, int column); -int main() -{ - int m, n; - printf("please input m n:\n"); - scanf("%d%d", &m, &n); - int a[m][n]; - for (int k = 1, i = 0; i < m; i++) - { - for (int j = 0; j < n; j++) - { - a[i][j] = k++; - } - } - printf("The Origin Array is:\n"); - for (int i = 0; i < m; i++) - { - for (int j = 0; j < n; j++) - { - printf("%-5d ", a[i][j]); - } - printf("\n"); - } - // PrintArrayMatrix((int **)a, m, n); - // ArrayTransposition(a,m,n); - {int temp; - for (int i = 1; i < m; i++) - { - for (int j = 0; j < i; j++) - { - temp = a[i][j]; - a[i][j] = a[j][i]; - a[j][i] = temp; - } - } - } - printf("Now The Array is:\n"); - for (int i = 0; i < m; i++) - { - for (int j = 0; j < n; j++) - { - printf("%-5d ", a[i][j]); - } - printf("\n"); - } -} -void PrintArrayMatrix(int **array, int row, int column) -{ - for (int i = 0; i < row; i++) - { - for (int j = 0; j < column; j++) - { - printf("%-5d\n", array[i][j]); - } - } -} - -int **ArrayTransposition(int **array, int row, int column) -{ - int temp; - for (int i = 1; i < row; i++) - { - for (int j = 0; j < i; j++) - { - temp = array[i][j]; - array[i][j] = array[j][i]; - array[j][i] = temp; - } - } -} \ No newline at end of file diff --git a/c/Unicode2zh/include/utf8.h b/c/Unicode2zh/include/utf8.h deleted file mode 100644 index 356d7b4..0000000 --- a/c/Unicode2zh/include/utf8.h +++ /dev/null @@ -1,1682 +0,0 @@ -/* The latest version of this library is available on GitHub; - * https://github.com/sheredom/utf8.h */ - -/* This is free and unencumbered software released into the public domain. - * - * Anyone is free to copy, modify, publish, use, compile, sell, or - * distribute this software, either in source code form or as a compiled - * binary, for any purpose, commercial or non-commercial, and by any - * means. - * - * In jurisdictions that recognize copyright laws, the author or authors - * of this software dedicate any and all copyright interest in the - * software to the public domain. We make this dedication for the benefit - * of the public at large and to the detriment of our heirs and - * successors. We intend this dedication to be an overt act of - * relinquishment in perpetuity of all present and future rights to this - * software under copyright law. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR - * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, - * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR - * OTHER DEALINGS IN THE SOFTWARE. - * - * For more information, please refer to */ - -#ifndef SHEREDOM_UTF8_H_INCLUDED -#define SHEREDOM_UTF8_H_INCLUDED - -#if defined(_MSC_VER) -#pragma warning(push) - -/* disable warning: no function prototype given: converting '()' to '(void)' */ -#pragma warning(disable : 4255) - -/* disable warning: '__cplusplus' is not defined as a preprocessor macro, - * replacing with '0' for '#if/#elif' */ -#pragma warning(disable : 4668) - -/* disable warning: bytes padding added after construct */ -#pragma warning(disable : 4820) -#endif - -#include -#include - -#if defined(_MSC_VER) -#pragma warning(pop) -#endif - -#if defined(_MSC_VER) && (_MSC_VER < 1920) -typedef __int32 utf8_int32_t; -#else -#include -typedef int32_t utf8_int32_t; -#endif - -#if defined(__clang__) -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wold-style-cast" -#pragma clang diagnostic ignored "-Wcast-qual" -#endif - -#ifdef __cplusplus -extern "C" { -#endif - -#if defined(_MSC_VER) -#define utf8_nonnull -#define utf8_pure -#define utf8_restrict __restrict -#define utf8_weak __inline -#elif defined(__clang__) || defined(__GNUC__) -#define utf8_nonnull __attribute__((nonnull)) -#define utf8_pure __attribute__((pure)) -#define utf8_restrict __restrict__ -#define utf8_weak __attribute__((weak)) -#else -#error Non clang, non gcc, non MSVC compiler found! -#endif - -#ifdef __cplusplus -#define utf8_null NULL -#else -#define utf8_null 0 -#endif - -#if (defined(__cplusplus) && __cplusplus >= 201402L) -#define utf8_constexpr14 constexpr -#define utf8_constexpr14_impl constexpr -#else -/* constexpr and weak are incompatible. so only enable one of them */ -#define utf8_constexpr14 utf8_weak -#define utf8_constexpr14_impl -#endif - -#if defined(__cplusplus) && __cplusplus >= 202002L -using utf8_int8_t = char8_t; /* Introduced in C++20 */ -#else -typedef char utf8_int8_t; -#endif - -/* Return less than 0, 0, greater than 0 if src1 < src2, src1 == src2, src1 > - * src2 respectively, case insensitive. */ -utf8_constexpr14 utf8_nonnull utf8_pure int -utf8casecmp(const utf8_int8_t *src1, const utf8_int8_t *src2); - -/* Append the utf8 string src onto the utf8 string dst. */ -utf8_nonnull utf8_weak utf8_int8_t * -utf8cat(utf8_int8_t *utf8_restrict dst, const utf8_int8_t *utf8_restrict src); - -/* Find the first match of the utf8 codepoint chr in the utf8 string src. */ -utf8_constexpr14 utf8_nonnull utf8_pure utf8_int8_t * -utf8chr(const utf8_int8_t *src, utf8_int32_t chr); - -/* Return less than 0, 0, greater than 0 if src1 < src2, - * src1 == src2, src1 > src2 respectively. */ -utf8_constexpr14 utf8_nonnull utf8_pure int utf8cmp(const utf8_int8_t *src1, - const utf8_int8_t *src2); - -/* Copy the utf8 string src onto the memory allocated in dst. */ -utf8_nonnull utf8_weak utf8_int8_t * -utf8cpy(utf8_int8_t *utf8_restrict dst, const utf8_int8_t *utf8_restrict src); - -/* Number of utf8 codepoints in the utf8 string src that consists entirely - * of utf8 codepoints not from the utf8 string reject. */ -utf8_constexpr14 utf8_nonnull utf8_pure size_t -utf8cspn(const utf8_int8_t *src, const utf8_int8_t *reject); - -/* Duplicate the utf8 string src by getting its size, malloc'ing a new buffer - * copying over the data, and returning that. Or 0 if malloc failed. */ -utf8_weak utf8_int8_t *utf8dup(const utf8_int8_t *src); - -/* Number of utf8 codepoints in the utf8 string str, - * excluding the null terminating byte. */ -utf8_constexpr14 utf8_nonnull utf8_pure size_t utf8len(const utf8_int8_t *str); - -/* Similar to utf8len, except that only at most n bytes of src are looked. */ -utf8_constexpr14 utf8_nonnull utf8_pure size_t utf8nlen(const utf8_int8_t *str, - size_t n); - -/* Return less than 0, 0, greater than 0 if src1 < src2, src1 == src2, src1 > - * src2 respectively, case insensitive. Checking at most n bytes of each utf8 - * string. */ -utf8_constexpr14 utf8_nonnull utf8_pure int -utf8ncasecmp(const utf8_int8_t *src1, const utf8_int8_t *src2, size_t n); - -/* Append the utf8 string src onto the utf8 string dst, - * writing at most n+1 bytes. Can produce an invalid utf8 - * string if n falls partway through a utf8 codepoint. */ -utf8_nonnull utf8_weak utf8_int8_t * -utf8ncat(utf8_int8_t *utf8_restrict dst, const utf8_int8_t *utf8_restrict src, - size_t n); - -/* Return less than 0, 0, greater than 0 if src1 < src2, - * src1 == src2, src1 > src2 respectively. Checking at most n - * bytes of each utf8 string. */ -utf8_constexpr14 utf8_nonnull utf8_pure int -utf8ncmp(const utf8_int8_t *src1, const utf8_int8_t *src2, size_t n); - -/* Copy the utf8 string src onto the memory allocated in dst. - * Copies at most n bytes. If n falls partway through a utf8 - * codepoint, or if dst doesn't have enough room for a null - * terminator, the final string will be cut short to preserve - * utf8 validity. */ - -utf8_nonnull utf8_weak utf8_int8_t * -utf8ncpy(utf8_int8_t *utf8_restrict dst, const utf8_int8_t *utf8_restrict src, - size_t n); - -/* Similar to utf8dup, except that at most n bytes of src are copied. If src is - * longer than n, only n bytes are copied and a null byte is added. - * - * Returns a new string if successful, 0 otherwise */ -utf8_weak utf8_int8_t *utf8ndup(const utf8_int8_t *src, size_t n); - -/* Locates the first occurrence in the utf8 string str of any byte in the - * utf8 string accept, or 0 if no match was found. */ -utf8_constexpr14 utf8_nonnull utf8_pure utf8_int8_t * -utf8pbrk(const utf8_int8_t *str, const utf8_int8_t *accept); - -/* Find the last match of the utf8 codepoint chr in the utf8 string src. */ -utf8_constexpr14 utf8_nonnull utf8_pure utf8_int8_t * -utf8rchr(const utf8_int8_t *src, int chr); - -/* Number of bytes in the utf8 string str, - * including the null terminating byte. */ -utf8_constexpr14 utf8_nonnull utf8_pure size_t utf8size(const utf8_int8_t *str); - -/* Similar to utf8size, except that the null terminating byte is excluded. */ -utf8_constexpr14 utf8_nonnull utf8_pure size_t -utf8size_lazy(const utf8_int8_t *str); - -/* Similar to utf8size, except that only at most n bytes of src are looked and - * the null terminating byte is excluded. */ -utf8_constexpr14 utf8_nonnull utf8_pure size_t -utf8nsize_lazy(const utf8_int8_t *str, size_t n); - -/* Number of utf8 codepoints in the utf8 string src that consists entirely - * of utf8 codepoints from the utf8 string accept. */ -utf8_constexpr14 utf8_nonnull utf8_pure size_t -utf8spn(const utf8_int8_t *src, const utf8_int8_t *accept); - -/* The position of the utf8 string needle in the utf8 string haystack. */ -utf8_constexpr14 utf8_nonnull utf8_pure utf8_int8_t * -utf8str(const utf8_int8_t *haystack, const utf8_int8_t *needle); - -/* The position of the utf8 string needle in the utf8 string haystack, case - * insensitive. */ -utf8_constexpr14 utf8_nonnull utf8_pure utf8_int8_t * -utf8casestr(const utf8_int8_t *haystack, const utf8_int8_t *needle); - -/* Return 0 on success, or the position of the invalid - * utf8 codepoint on failure. */ -utf8_constexpr14 utf8_nonnull utf8_pure utf8_int8_t * -utf8valid(const utf8_int8_t *str); - -/* Similar to utf8valid, except that only at most n bytes of src are looked. */ -utf8_constexpr14 utf8_nonnull utf8_pure utf8_int8_t * -utf8nvalid(const utf8_int8_t *str, size_t n); - -/* Given a null-terminated string, makes the string valid by replacing invalid - * codepoints with a 1-byte replacement. Returns 0 on success. */ -utf8_nonnull utf8_weak int utf8makevalid(utf8_int8_t *str, - const utf8_int32_t replacement); - -/* Sets out_codepoint to the current utf8 codepoint in str, and returns the - * address of the next utf8 codepoint after the current one in str. */ -utf8_constexpr14 utf8_nonnull utf8_int8_t * -utf8codepoint(const utf8_int8_t *utf8_restrict str, - utf8_int32_t *utf8_restrict out_codepoint); - -/* Calculates the size of the next utf8 codepoint in str. */ -utf8_constexpr14 utf8_nonnull size_t -utf8codepointcalcsize(const utf8_int8_t *str); - -/* Returns the size of the given codepoint in bytes. */ -utf8_constexpr14 size_t utf8codepointsize(utf8_int32_t chr); - -/* Write a codepoint to the given string, and return the address to the next - * place after the written codepoint. Pass how many bytes left in the buffer to - * n. If there is not enough space for the codepoint, this function returns - * null. */ -utf8_nonnull utf8_weak utf8_int8_t * -utf8catcodepoint(utf8_int8_t *str, utf8_int32_t chr, size_t n); - -/* Returns 1 if the given character is lowercase, or 0 if it is not. */ -utf8_constexpr14 int utf8islower(utf8_int32_t chr); - -/* Returns 1 if the given character is uppercase, or 0 if it is not. */ -utf8_constexpr14 int utf8isupper(utf8_int32_t chr); - -/* Transform the given string into all lowercase codepoints. */ -utf8_nonnull utf8_weak void utf8lwr(utf8_int8_t *utf8_restrict str); - -/* Transform the given string into all uppercase codepoints. */ -utf8_nonnull utf8_weak void utf8upr(utf8_int8_t *utf8_restrict str); - -/* Make a codepoint lower case if possible. */ -utf8_constexpr14 utf8_int32_t utf8lwrcodepoint(utf8_int32_t cp); - -/* Make a codepoint upper case if possible. */ -utf8_constexpr14 utf8_int32_t utf8uprcodepoint(utf8_int32_t cp); - -/* Sets out_codepoint to the current utf8 codepoint in str, and returns the - * address of the previous utf8 codepoint before the current one in str. */ -utf8_constexpr14 utf8_nonnull utf8_int8_t * -utf8rcodepoint(const utf8_int8_t *utf8_restrict str, - utf8_int32_t *utf8_restrict out_codepoint); - -/* Duplicate the utf8 string src by getting its size, calling alloc_func_ptr to - * copy over data to a new buffer, and returning that. Or 0 if alloc_func_ptr - * returned null. */ -utf8_weak utf8_int8_t *utf8dup_ex(const utf8_int8_t *src, - utf8_int8_t *(*alloc_func_ptr)(utf8_int8_t *, - size_t), - utf8_int8_t *user_data); - -/* Similar to utf8dup, except that at most n bytes of src are copied. If src is - * longer than n, only n bytes are copied and a null byte is added. - * - * Returns a new string if successful, 0 otherwise. */ -utf8_weak utf8_int8_t *utf8ndup_ex(const utf8_int8_t *src, size_t n, - utf8_int8_t *(*alloc_func_ptr)(utf8_int8_t *, - size_t), - utf8_int8_t *user_data); - -#undef utf8_weak -#undef utf8_pure -#undef utf8_nonnull - -utf8_constexpr14_impl int utf8casecmp(const utf8_int8_t *src1, - const utf8_int8_t *src2) { - utf8_int32_t src1_lwr_cp = 0, src2_lwr_cp = 0, src1_upr_cp = 0, - src2_upr_cp = 0, src1_orig_cp = 0, src2_orig_cp = 0; - - for (;;) { - src1 = utf8codepoint(src1, &src1_orig_cp); - src2 = utf8codepoint(src2, &src2_orig_cp); - - /* lower the srcs if required */ - src1_lwr_cp = utf8lwrcodepoint(src1_orig_cp); - src2_lwr_cp = utf8lwrcodepoint(src2_orig_cp); - - /* lower the srcs if required */ - src1_upr_cp = utf8uprcodepoint(src1_orig_cp); - src2_upr_cp = utf8uprcodepoint(src2_orig_cp); - - /* check if the lowered codepoints match */ - if ((0 == src1_orig_cp) && (0 == src2_orig_cp)) { - return 0; - } else if ((src1_lwr_cp == src2_lwr_cp) || (src1_upr_cp == src2_upr_cp)) { - continue; - } - - /* if they don't match, then we return the difference between the characters - */ - return src1_lwr_cp - src2_lwr_cp; - } -} - -utf8_int8_t *utf8cat(utf8_int8_t *utf8_restrict dst, - const utf8_int8_t *utf8_restrict src) { - utf8_int8_t *d = dst; - /* find the null terminating byte in dst */ - while ('\0' != *d) { - d++; - } - - /* overwriting the null terminating byte in dst, append src byte-by-byte */ - while ('\0' != *src) { - *d++ = *src++; - } - - /* write out a new null terminating byte into dst */ - *d = '\0'; - - return dst; -} - -utf8_constexpr14_impl utf8_int8_t *utf8chr(const utf8_int8_t *src, - utf8_int32_t chr) { - utf8_int8_t c[5] = {'\0', '\0', '\0', '\0', '\0'}; - - if (0 == chr) { - /* being asked to return position of null terminating byte, so - * just run s to the end, and return! */ - while ('\0' != *src) { - src++; - } - return (utf8_int8_t *)src; - } else if (0 == ((utf8_int32_t)0xffffff80 & chr)) { - /* 1-byte/7-bit ascii - * (0b0xxxxxxx) */ - c[0] = (utf8_int8_t)chr; - } else if (0 == ((utf8_int32_t)0xfffff800 & chr)) { - /* 2-byte/11-bit utf8 code point - * (0b110xxxxx 0b10xxxxxx) */ - c[0] = (utf8_int8_t)(0xc0 | (utf8_int8_t)(chr >> 6)); - c[1] = (utf8_int8_t)(0x80 | (utf8_int8_t)(chr & 0x3f)); - } else if (0 == ((utf8_int32_t)0xffff0000 & chr)) { - /* 3-byte/16-bit utf8 code point - * (0b1110xxxx 0b10xxxxxx 0b10xxxxxx) */ - c[0] = (utf8_int8_t)(0xe0 | (utf8_int8_t)(chr >> 12)); - c[1] = (utf8_int8_t)(0x80 | (utf8_int8_t)((chr >> 6) & 0x3f)); - c[2] = (utf8_int8_t)(0x80 | (utf8_int8_t)(chr & 0x3f)); - } else { /* if (0 == ((int)0xffe00000 & chr)) { */ - /* 4-byte/21-bit utf8 code point - * (0b11110xxx 0b10xxxxxx 0b10xxxxxx 0b10xxxxxx) */ - c[0] = (utf8_int8_t)(0xf0 | (utf8_int8_t)(chr >> 18)); - c[1] = (utf8_int8_t)(0x80 | (utf8_int8_t)((chr >> 12) & 0x3f)); - c[2] = (utf8_int8_t)(0x80 | (utf8_int8_t)((chr >> 6) & 0x3f)); - c[3] = (utf8_int8_t)(0x80 | (utf8_int8_t)(chr & 0x3f)); - } - - /* we've made c into a 2 utf8 codepoint string, one for the chr we are - * seeking, another for the null terminating byte. Now use utf8str to - * search */ - return utf8str(src, c); -} - -utf8_constexpr14_impl int utf8cmp(const utf8_int8_t *src1, - const utf8_int8_t *src2) { - while (('\0' != *src1) || ('\0' != *src2)) { - if (*src1 < *src2) { - return -1; - } else if (*src1 > *src2) { - return 1; - } - - src1++; - src2++; - } - - /* both utf8 strings matched */ - return 0; -} - -utf8_constexpr14_impl int utf8coll(const utf8_int8_t *src1, - const utf8_int8_t *src2); - -utf8_int8_t *utf8cpy(utf8_int8_t *utf8_restrict dst, - const utf8_int8_t *utf8_restrict src) { - utf8_int8_t *d = dst; - - /* overwriting anything previously in dst, write byte-by-byte - * from src */ - while ('\0' != *src) { - *d++ = *src++; - } - - /* append null terminating byte */ - *d = '\0'; - - return dst; -} - -utf8_constexpr14_impl size_t utf8cspn(const utf8_int8_t *src, - const utf8_int8_t *reject) { - size_t chars = 0; - - while ('\0' != *src) { - const utf8_int8_t *r = reject; - size_t offset = 0; - - while ('\0' != *r) { - /* checking that if *r is the start of a utf8 codepoint - * (it is not 0b10xxxxxx) and we have successfully matched - * a previous character (0 < offset) - we found a match */ - if ((0x80 != (0xc0 & *r)) && (0 < offset)) { - return chars; - } else { - if (*r == src[offset]) { - /* part of a utf8 codepoint matched, so move our checking - * onwards to the next byte */ - offset++; - r++; - } else { - /* r could be in the middle of an unmatching utf8 code point, - * so we need to march it on to the next character beginning, */ - - do { - r++; - } while (0x80 == (0xc0 & *r)); - - /* reset offset too as we found a mismatch */ - offset = 0; - } - } - } - - /* found a match at the end of *r, so didn't get a chance to test it */ - if (0 < offset) { - return chars; - } - - /* the current utf8 codepoint in src did not match reject, but src - * could have been partway through a utf8 codepoint, so we need to - * march it onto the next utf8 codepoint starting byte */ - do { - src++; - } while ((0x80 == (0xc0 & *src))); - chars++; - } - - return chars; -} - -utf8_int8_t *utf8dup(const utf8_int8_t *src) { - return utf8dup_ex(src, utf8_null, utf8_null); -} - -utf8_int8_t *utf8dup_ex(const utf8_int8_t *src, - utf8_int8_t *(*alloc_func_ptr)(utf8_int8_t *, size_t), - utf8_int8_t *user_data) { - utf8_int8_t *n = utf8_null; - - /* figure out how many bytes (including the terminator) we need to copy first - */ - size_t bytes = utf8size(src); - - if (alloc_func_ptr) { - n = alloc_func_ptr(user_data, bytes); - } else { - n = (utf8_int8_t *)malloc(bytes); - } - - if (utf8_null == n) { - /* out of memory so we bail */ - return utf8_null; - } else { - bytes = 0; - - /* copy src byte-by-byte into our new utf8 string */ - while ('\0' != src[bytes]) { - n[bytes] = src[bytes]; - bytes++; - } - - /* append null terminating byte */ - n[bytes] = '\0'; - return n; - } -} - -utf8_constexpr14_impl utf8_int8_t *utf8fry(const utf8_int8_t *str); - -utf8_constexpr14_impl size_t utf8len(const utf8_int8_t *str) { - return utf8nlen(str, SIZE_MAX); -} - -utf8_constexpr14_impl size_t utf8nlen(const utf8_int8_t *str, size_t n) { - const utf8_int8_t *t = str; - size_t length = 0; - - while ((size_t)(str - t) < n && '\0' != *str) { - if (0xf0 == (0xf8 & *str)) { - /* 4-byte utf8 code point (began with 0b11110xxx) */ - str += 4; - } else if (0xe0 == (0xf0 & *str)) { - /* 3-byte utf8 code point (began with 0b1110xxxx) */ - str += 3; - } else if (0xc0 == (0xe0 & *str)) { - /* 2-byte utf8 code point (began with 0b110xxxxx) */ - str += 2; - } else { /* if (0x00 == (0x80 & *s)) { */ - /* 1-byte ascii (began with 0b0xxxxxxx) */ - str += 1; - } - - /* no matter the bytes we marched s forward by, it was - * only 1 utf8 codepoint */ - length++; - } - - if ((size_t)(str - t) > n) { - length--; - } - return length; -} - -utf8_constexpr14_impl int utf8ncasecmp(const utf8_int8_t *src1, - const utf8_int8_t *src2, size_t n) { - utf8_int32_t src1_lwr_cp = 0, src2_lwr_cp = 0, src1_upr_cp = 0, - src2_upr_cp = 0, src1_orig_cp = 0, src2_orig_cp = 0; - - do { - const utf8_int8_t *const s1 = src1; - const utf8_int8_t *const s2 = src2; - - /* first check that we have enough bytes left in n to contain an entire - * codepoint */ - if (0 == n) { - return 0; - } - - if ((1 == n) && ((0xc0 == (0xe0 & *s1)) || (0xc0 == (0xe0 & *s2)))) { - const utf8_int32_t c1 = (0xe0 & *s1); - const utf8_int32_t c2 = (0xe0 & *s2); - - if (c1 < c2) { - return c1 - c2; - } else { - return 0; - } - } - - if ((2 >= n) && ((0xe0 == (0xf0 & *s1)) || (0xe0 == (0xf0 & *s2)))) { - const utf8_int32_t c1 = (0xf0 & *s1); - const utf8_int32_t c2 = (0xf0 & *s2); - - if (c1 < c2) { - return c1 - c2; - } else { - return 0; - } - } - - if ((3 >= n) && ((0xf0 == (0xf8 & *s1)) || (0xf0 == (0xf8 & *s2)))) { - const utf8_int32_t c1 = (0xf8 & *s1); - const utf8_int32_t c2 = (0xf8 & *s2); - - if (c1 < c2) { - return c1 - c2; - } else { - return 0; - } - } - - src1 = utf8codepoint(src1, &src1_orig_cp); - src2 = utf8codepoint(src2, &src2_orig_cp); - n -= utf8codepointsize(src1_orig_cp); - - src1_lwr_cp = utf8lwrcodepoint(src1_orig_cp); - src2_lwr_cp = utf8lwrcodepoint(src2_orig_cp); - - src1_upr_cp = utf8uprcodepoint(src1_orig_cp); - src2_upr_cp = utf8uprcodepoint(src2_orig_cp); - - /* check if the lowered codepoints match */ - if ((0 == src1_orig_cp) && (0 == src2_orig_cp)) { - return 0; - } else if ((src1_lwr_cp == src2_lwr_cp) || (src1_upr_cp == src2_upr_cp)) { - continue; - } - - /* if they don't match, then we return the difference between the characters - */ - return src1_lwr_cp - src2_lwr_cp; - } while (0 < n); - - /* both utf8 strings matched */ - return 0; -} - -utf8_int8_t *utf8ncat(utf8_int8_t *utf8_restrict dst, - const utf8_int8_t *utf8_restrict src, size_t n) { - utf8_int8_t *d = dst; - - /* find the null terminating byte in dst */ - while ('\0' != *d) { - d++; - } - - /* overwriting the null terminating byte in dst, append src byte-by-byte - * stopping if we run out of space */ - while (('\0' != *src) && (0 != n--)) { - *d++ = *src++; - } - - /* write out a new null terminating byte into dst */ - *d = '\0'; - - return dst; -} - -utf8_constexpr14_impl int utf8ncmp(const utf8_int8_t *src1, - const utf8_int8_t *src2, size_t n) { - while ((0 != n--) && (('\0' != *src1) || ('\0' != *src2))) { - if (*src1 < *src2) { - return -1; - } else if (*src1 > *src2) { - return 1; - } - - src1++; - src2++; - } - - /* both utf8 strings matched */ - return 0; -} - -utf8_int8_t *utf8ncpy(utf8_int8_t *utf8_restrict dst, - const utf8_int8_t *utf8_restrict src, size_t n) { - utf8_int8_t *d = dst; - size_t index = 0, check_index = 0; - - if (n == 0) { - return dst; - } - - /* overwriting anything previously in dst, write byte-by-byte - * from src */ - for (index = 0; index < n; index++) { - d[index] = src[index]; - if ('\0' == src[index]) { - break; - } - } - - for (check_index = index - 1; - check_index > 0 && 0x80 == (0xc0 & d[check_index]); check_index--) { - /* just moving the index */ - } - - if (check_index < index && - (index - check_index) < utf8codepointsize(d[check_index])) { - index = check_index; - } - - /* append null terminating byte */ - for (; index < n; index++) { - d[index] = 0; - } - - return dst; -} - -utf8_int8_t *utf8ndup(const utf8_int8_t *src, size_t n) { - return utf8ndup_ex(src, n, utf8_null, utf8_null); -} - -utf8_int8_t *utf8ndup_ex(const utf8_int8_t *src, size_t n, - utf8_int8_t *(*alloc_func_ptr)(utf8_int8_t *, size_t), - utf8_int8_t *user_data) { - utf8_int8_t *c = utf8_null; - size_t bytes = 0; - - /* Find the end of the string or stop when n is reached */ - while ('\0' != src[bytes] && bytes < n) { - bytes++; - } - - /* In case bytes is actually less than n, we need to set it - * to be used later in the copy byte by byte. */ - n = bytes; - - if (alloc_func_ptr) { - c = alloc_func_ptr(user_data, bytes + 1); - } else { - c = (utf8_int8_t *)malloc(bytes + 1); - } - - if (utf8_null == c) { - /* out of memory so we bail */ - return utf8_null; - } - - bytes = 0; - - /* copy src byte-by-byte into our new utf8 string */ - while ('\0' != src[bytes] && bytes < n) { - c[bytes] = src[bytes]; - bytes++; - } - - /* append null terminating byte */ - c[bytes] = '\0'; - return c; -} - -utf8_constexpr14_impl utf8_int8_t *utf8rchr(const utf8_int8_t *src, int chr) { - - utf8_int8_t *match = utf8_null; - utf8_int8_t c[5] = {'\0', '\0', '\0', '\0', '\0'}; - - if (0 == chr) { - /* being asked to return position of null terminating byte, so - * just run s to the end, and return! */ - while ('\0' != *src) { - src++; - } - return (utf8_int8_t *)src; - } else if (0 == ((int)0xffffff80 & chr)) { - /* 1-byte/7-bit ascii - * (0b0xxxxxxx) */ - c[0] = (utf8_int8_t)chr; - } else if (0 == ((int)0xfffff800 & chr)) { - /* 2-byte/11-bit utf8 code point - * (0b110xxxxx 0b10xxxxxx) */ - c[0] = (utf8_int8_t)(0xc0 | (utf8_int8_t)(chr >> 6)); - c[1] = (utf8_int8_t)(0x80 | (utf8_int8_t)(chr & 0x3f)); - } else if (0 == ((int)0xffff0000 & chr)) { - /* 3-byte/16-bit utf8 code point - * (0b1110xxxx 0b10xxxxxx 0b10xxxxxx) */ - c[0] = (utf8_int8_t)(0xe0 | (utf8_int8_t)(chr >> 12)); - c[1] = (utf8_int8_t)(0x80 | (utf8_int8_t)((chr >> 6) & 0x3f)); - c[2] = (utf8_int8_t)(0x80 | (utf8_int8_t)(chr & 0x3f)); - } else { /* if (0 == ((int)0xffe00000 & chr)) { */ - /* 4-byte/21-bit utf8 code point - * (0b11110xxx 0b10xxxxxx 0b10xxxxxx 0b10xxxxxx) */ - c[0] = (utf8_int8_t)(0xf0 | (utf8_int8_t)(chr >> 18)); - c[1] = (utf8_int8_t)(0x80 | (utf8_int8_t)((chr >> 12) & 0x3f)); - c[2] = (utf8_int8_t)(0x80 | (utf8_int8_t)((chr >> 6) & 0x3f)); - c[3] = (utf8_int8_t)(0x80 | (utf8_int8_t)(chr & 0x3f)); - } - - /* we've created a 2 utf8 codepoint string in c that is - * the utf8 character asked for by chr, and a null - * terminating byte */ - - while ('\0' != *src) { - size_t offset = 0; - - while (src[offset] == c[offset]) { - offset++; - } - - if ('\0' == c[offset]) { - /* we found a matching utf8 code point */ - match = (utf8_int8_t *)src; - src += offset; - } else { - src += offset; - - /* need to march s along to next utf8 codepoint start - * (the next byte that doesn't match 0b10xxxxxx) */ - if ('\0' != *src) { - do { - src++; - } while (0x80 == (0xc0 & *src)); - } - } - } - - /* return the last match we found (or 0 if no match was found) */ - return match; -} - -utf8_constexpr14_impl utf8_int8_t *utf8pbrk(const utf8_int8_t *str, - const utf8_int8_t *accept) { - while ('\0' != *str) { - const utf8_int8_t *a = accept; - size_t offset = 0; - - while ('\0' != *a) { - /* checking that if *a is the start of a utf8 codepoint - * (it is not 0b10xxxxxx) and we have successfully matched - * a previous character (0 < offset) - we found a match */ - if ((0x80 != (0xc0 & *a)) && (0 < offset)) { - return (utf8_int8_t *)str; - } else { - if (*a == str[offset]) { - /* part of a utf8 codepoint matched, so move our checking - * onwards to the next byte */ - offset++; - a++; - } else { - /* r could be in the middle of an unmatching utf8 code point, - * so we need to march it on to the next character beginning, */ - - do { - a++; - } while (0x80 == (0xc0 & *a)); - - /* reset offset too as we found a mismatch */ - offset = 0; - } - } - } - - /* we found a match on the last utf8 codepoint */ - if (0 < offset) { - return (utf8_int8_t *)str; - } - - /* the current utf8 codepoint in src did not match accept, but src - * could have been partway through a utf8 codepoint, so we need to - * march it onto the next utf8 codepoint starting byte */ - do { - str++; - } while ((0x80 == (0xc0 & *str))); - } - - return utf8_null; -} - -utf8_constexpr14_impl size_t utf8size(const utf8_int8_t *str) { - return utf8size_lazy(str) + 1; -} - -utf8_constexpr14_impl size_t utf8size_lazy(const utf8_int8_t *str) { - return utf8nsize_lazy(str, SIZE_MAX); -} - -utf8_constexpr14_impl size_t utf8nsize_lazy(const utf8_int8_t *str, size_t n) { - size_t size = 0; - while (size < n && '\0' != str[size]) { - size++; - } - return size; -} - -utf8_constexpr14_impl size_t utf8spn(const utf8_int8_t *src, - const utf8_int8_t *accept) { - size_t chars = 0; - - while ('\0' != *src) { - const utf8_int8_t *a = accept; - size_t offset = 0; - - while ('\0' != *a) { - /* checking that if *r is the start of a utf8 codepoint - * (it is not 0b10xxxxxx) and we have successfully matched - * a previous character (0 < offset) - we found a match */ - if ((0x80 != (0xc0 & *a)) && (0 < offset)) { - /* found a match, so increment the number of utf8 codepoints - * that have matched and stop checking whether any other utf8 - * codepoints in a match */ - chars++; - src += offset; - offset = 0; - break; - } else { - if (*a == src[offset]) { - offset++; - a++; - } else { - /* a could be in the middle of an unmatching utf8 codepoint, - * so we need to march it on to the next character beginning, */ - do { - a++; - } while (0x80 == (0xc0 & *a)); - - /* reset offset too as we found a mismatch */ - offset = 0; - } - } - } - - /* found a match at the end of *a, so didn't get a chance to test it */ - if (0 < offset) { - chars++; - src += offset; - continue; - } - - /* if a got to its terminating null byte, then we didn't find a match. - * Return the current number of matched utf8 codepoints */ - if ('\0' == *a) { - return chars; - } - } - - return chars; -} - -utf8_constexpr14_impl utf8_int8_t *utf8str(const utf8_int8_t *haystack, - const utf8_int8_t *needle) { - utf8_int32_t throwaway_codepoint = 0; - - /* if needle has no utf8 codepoints before the null terminating - * byte then return haystack */ - if ('\0' == *needle) { - return (utf8_int8_t *)haystack; - } - - while ('\0' != *haystack) { - const utf8_int8_t *maybeMatch = haystack; - const utf8_int8_t *n = needle; - - while (*haystack == *n && (*haystack != '\0' && *n != '\0')) { - n++; - haystack++; - } - - if ('\0' == *n) { - /* we found the whole utf8 string for needle in haystack at - * maybeMatch, so return it */ - return (utf8_int8_t *)maybeMatch; - } else { - /* h could be in the middle of an unmatching utf8 codepoint, - * so we need to march it on to the next character beginning - * starting from the current character */ - haystack = utf8codepoint(maybeMatch, &throwaway_codepoint); - } - } - - /* no match */ - return utf8_null; -} - -utf8_constexpr14_impl utf8_int8_t *utf8casestr(const utf8_int8_t *haystack, - const utf8_int8_t *needle) { - /* if needle has no utf8 codepoints before the null terminating - * byte then return haystack */ - if ('\0' == *needle) { - return (utf8_int8_t *)haystack; - } - - for (;;) { - const utf8_int8_t *maybeMatch = haystack; - const utf8_int8_t *n = needle; - utf8_int32_t h_cp = 0, n_cp = 0; - - /* Get the next code point and track it */ - const utf8_int8_t *nextH = haystack = utf8codepoint(haystack, &h_cp); - n = utf8codepoint(n, &n_cp); - - while ((0 != h_cp) && (0 != n_cp)) { - h_cp = utf8lwrcodepoint(h_cp); - n_cp = utf8lwrcodepoint(n_cp); - - /* if we find a mismatch, bail out! */ - if (h_cp != n_cp) { - break; - } - - haystack = utf8codepoint(haystack, &h_cp); - n = utf8codepoint(n, &n_cp); - } - - if (0 == n_cp) { - /* we found the whole utf8 string for needle in haystack at - * maybeMatch, so return it */ - return (utf8_int8_t *)maybeMatch; - } - - if (0 == h_cp) { - /* no match */ - return utf8_null; - } - - /* Roll back to the next code point in the haystack to test */ - haystack = nextH; - } -} - -utf8_constexpr14_impl utf8_int8_t *utf8valid(const utf8_int8_t *str) { - return utf8nvalid(str, SIZE_MAX); -} - -utf8_constexpr14_impl utf8_int8_t *utf8nvalid(const utf8_int8_t *str, - size_t n) { - const utf8_int8_t *t = str; - size_t consumed = 0, remained = 0; - - while ((void)(consumed = (size_t)(str - t)), consumed < n && '\0' != *str) { - remained = n - consumed; - - if (0xf0 == (0xf8 & *str)) { - /* ensure that there's 4 bytes or more remained */ - if (remained < 4) { - return (utf8_int8_t *)str; - } - - /* ensure each of the 3 following bytes in this 4-byte - * utf8 codepoint began with 0b10xxxxxx */ - if ((0x80 != (0xc0 & str[1])) || (0x80 != (0xc0 & str[2])) || - (0x80 != (0xc0 & str[3]))) { - return (utf8_int8_t *)str; - } - - /* ensure that our utf8 codepoint ended after 4 bytes */ - if (0x80 == (0xc0 & str[4])) { - return (utf8_int8_t *)str; - } - - /* ensure that the top 5 bits of this 4-byte utf8 - * codepoint were not 0, as then we could have used - * one of the smaller encodings */ - if ((0 == (0x07 & str[0])) && (0 == (0x30 & str[1]))) { - return (utf8_int8_t *)str; - } - - /* 4-byte utf8 code point (began with 0b11110xxx) */ - str += 4; - } else if (0xe0 == (0xf0 & *str)) { - /* ensure that there's 3 bytes or more remained */ - if (remained < 3) { - return (utf8_int8_t *)str; - } - - /* ensure each of the 2 following bytes in this 3-byte - * utf8 codepoint began with 0b10xxxxxx */ - if ((0x80 != (0xc0 & str[1])) || (0x80 != (0xc0 & str[2]))) { - return (utf8_int8_t *)str; - } - - /* ensure that our utf8 codepoint ended after 3 bytes */ - if (0x80 == (0xc0 & str[3])) { - return (utf8_int8_t *)str; - } - - /* ensure that the top 5 bits of this 3-byte utf8 - * codepoint were not 0, as then we could have used - * one of the smaller encodings */ - if ((0 == (0x0f & str[0])) && (0 == (0x20 & str[1]))) { - return (utf8_int8_t *)str; - } - - /* 3-byte utf8 code point (began with 0b1110xxxx) */ - str += 3; - } else if (0xc0 == (0xe0 & *str)) { - /* ensure that there's 2 bytes or more remained */ - if (remained < 2) { - return (utf8_int8_t *)str; - } - - /* ensure the 1 following byte in this 2-byte - * utf8 codepoint began with 0b10xxxxxx */ - if (0x80 != (0xc0 & str[1])) { - return (utf8_int8_t *)str; - } - - /* ensure that our utf8 codepoint ended after 2 bytes */ - if (0x80 == (0xc0 & str[2])) { - return (utf8_int8_t *)str; - } - - /* ensure that the top 4 bits of this 2-byte utf8 - * codepoint were not 0, as then we could have used - * one of the smaller encodings */ - if (0 == (0x1e & str[0])) { - return (utf8_int8_t *)str; - } - - /* 2-byte utf8 code point (began with 0b110xxxxx) */ - str += 2; - } else if (0x00 == (0x80 & *str)) { - /* 1-byte ascii (began with 0b0xxxxxxx) */ - str += 1; - } else { - /* we have an invalid 0b1xxxxxxx utf8 code point entry */ - return (utf8_int8_t *)str; - } - } - - return utf8_null; -} - -int utf8makevalid(utf8_int8_t *str, const utf8_int32_t replacement) { - utf8_int8_t *read = str; - utf8_int8_t *write = read; - const utf8_int8_t r = (utf8_int8_t)replacement; - utf8_int32_t codepoint = 0; - - if (replacement > 0x7f) { - return -1; - } - - while ('\0' != *read) { - if (0xf0 == (0xf8 & *read)) { - /* ensure each of the 3 following bytes in this 4-byte - * utf8 codepoint began with 0b10xxxxxx */ - if ((0x80 != (0xc0 & read[1])) || (0x80 != (0xc0 & read[2])) || - (0x80 != (0xc0 & read[3]))) { - *write++ = r; - read++; - continue; - } - - /* 4-byte utf8 code point (began with 0b11110xxx) */ - read = utf8codepoint(read, &codepoint); - write = utf8catcodepoint(write, codepoint, 4); - } else if (0xe0 == (0xf0 & *read)) { - /* ensure each of the 2 following bytes in this 3-byte - * utf8 codepoint began with 0b10xxxxxx */ - if ((0x80 != (0xc0 & read[1])) || (0x80 != (0xc0 & read[2]))) { - *write++ = r; - read++; - continue; - } - - /* 3-byte utf8 code point (began with 0b1110xxxx) */ - read = utf8codepoint(read, &codepoint); - write = utf8catcodepoint(write, codepoint, 3); - } else if (0xc0 == (0xe0 & *read)) { - /* ensure the 1 following byte in this 2-byte - * utf8 codepoint began with 0b10xxxxxx */ - if (0x80 != (0xc0 & read[1])) { - *write++ = r; - read++; - continue; - } - - /* 2-byte utf8 code point (began with 0b110xxxxx) */ - read = utf8codepoint(read, &codepoint); - write = utf8catcodepoint(write, codepoint, 2); - } else if (0x00 == (0x80 & *read)) { - /* 1-byte ascii (began with 0b0xxxxxxx) */ - read = utf8codepoint(read, &codepoint); - write = utf8catcodepoint(write, codepoint, 1); - } else { - /* if we got here then we've got a dangling continuation (0b10xxxxxx) */ - *write++ = r; - read++; - continue; - } - } - - *write = '\0'; - - return 0; -} - -utf8_constexpr14_impl utf8_int8_t * -utf8codepoint(const utf8_int8_t *utf8_restrict str, - utf8_int32_t *utf8_restrict out_codepoint) { - if (0xf0 == (0xf8 & str[0])) { - /* 4 byte utf8 codepoint */ - *out_codepoint = ((0x07 & str[0]) << 18) | ((0x3f & str[1]) << 12) | - ((0x3f & str[2]) << 6) | (0x3f & str[3]); - str += 4; - } else if (0xe0 == (0xf0 & str[0])) { - /* 3 byte utf8 codepoint */ - *out_codepoint = - ((0x0f & str[0]) << 12) | ((0x3f & str[1]) << 6) | (0x3f & str[2]); - str += 3; - } else if (0xc0 == (0xe0 & str[0])) { - /* 2 byte utf8 codepoint */ - *out_codepoint = ((0x1f & str[0]) << 6) | (0x3f & str[1]); - str += 2; - } else { - /* 1 byte utf8 codepoint otherwise */ - *out_codepoint = str[0]; - str += 1; - } - - return (utf8_int8_t *)str; -} - -utf8_constexpr14_impl size_t utf8codepointcalcsize(const utf8_int8_t *str) { - if (0xf0 == (0xf8 & str[0])) { - /* 4 byte utf8 codepoint */ - return 4; - } else if (0xe0 == (0xf0 & str[0])) { - /* 3 byte utf8 codepoint */ - return 3; - } else if (0xc0 == (0xe0 & str[0])) { - /* 2 byte utf8 codepoint */ - return 2; - } - - /* 1 byte utf8 codepoint otherwise */ - return 1; -} - -utf8_constexpr14_impl size_t utf8codepointsize(utf8_int32_t chr) { - if (0 == ((utf8_int32_t)0xffffff80 & chr)) { - return 1; - } else if (0 == ((utf8_int32_t)0xfffff800 & chr)) { - return 2; - } else if (0 == ((utf8_int32_t)0xffff0000 & chr)) { - return 3; - } else { /* if (0 == ((int)0xffe00000 & chr)) { */ - return 4; - } -} - -utf8_int8_t *utf8catcodepoint(utf8_int8_t *str, utf8_int32_t chr, size_t n) { - if (0 == ((utf8_int32_t)0xffffff80 & chr)) { - /* 1-byte/7-bit ascii - * (0b0xxxxxxx) */ - if (n < 1) { - return utf8_null; - } - str[0] = (utf8_int8_t)chr; - str += 1; - } else if (0 == ((utf8_int32_t)0xfffff800 & chr)) { - /* 2-byte/11-bit utf8 code point - * (0b110xxxxx 0b10xxxxxx) */ - if (n < 2) { - return utf8_null; - } - str[0] = (utf8_int8_t)(0xc0 | (utf8_int8_t)((chr >> 6) & 0x1f)); - str[1] = (utf8_int8_t)(0x80 | (utf8_int8_t)(chr & 0x3f)); - str += 2; - } else if (0 == ((utf8_int32_t)0xffff0000 & chr)) { - /* 3-byte/16-bit utf8 code point - * (0b1110xxxx 0b10xxxxxx 0b10xxxxxx) */ - if (n < 3) { - return utf8_null; - } - str[0] = (utf8_int8_t)(0xe0 | (utf8_int8_t)((chr >> 12) & 0x0f)); - str[1] = (utf8_int8_t)(0x80 | (utf8_int8_t)((chr >> 6) & 0x3f)); - str[2] = (utf8_int8_t)(0x80 | (utf8_int8_t)(chr & 0x3f)); - str += 3; - } else { /* if (0 == ((int)0xffe00000 & chr)) { */ - /* 4-byte/21-bit utf8 code point - * (0b11110xxx 0b10xxxxxx 0b10xxxxxx 0b10xxxxxx) */ - if (n < 4) { - return utf8_null; - } - str[0] = (utf8_int8_t)(0xf0 | (utf8_int8_t)((chr >> 18) & 0x07)); - str[1] = (utf8_int8_t)(0x80 | (utf8_int8_t)((chr >> 12) & 0x3f)); - str[2] = (utf8_int8_t)(0x80 | (utf8_int8_t)((chr >> 6) & 0x3f)); - str[3] = (utf8_int8_t)(0x80 | (utf8_int8_t)(chr & 0x3f)); - str += 4; - } - - return str; -} - -utf8_constexpr14_impl int utf8islower(utf8_int32_t chr) { - return chr != utf8uprcodepoint(chr); -} - -utf8_constexpr14_impl int utf8isupper(utf8_int32_t chr) { - return chr != utf8lwrcodepoint(chr); -} - -void utf8lwr(utf8_int8_t *utf8_restrict str) { - utf8_int32_t cp = 0; - utf8_int8_t *pn = utf8codepoint(str, &cp); - - while (cp != 0) { - const utf8_int32_t lwr_cp = utf8lwrcodepoint(cp); - const size_t size = utf8codepointsize(lwr_cp); - - if (lwr_cp != cp) { - utf8catcodepoint(str, lwr_cp, size); - } - - str = pn; - pn = utf8codepoint(str, &cp); - } -} - -void utf8upr(utf8_int8_t *utf8_restrict str) { - utf8_int32_t cp = 0; - utf8_int8_t *pn = utf8codepoint(str, &cp); - - while (cp != 0) { - const utf8_int32_t lwr_cp = utf8uprcodepoint(cp); - const size_t size = utf8codepointsize(lwr_cp); - - if (lwr_cp != cp) { - utf8catcodepoint(str, lwr_cp, size); - } - - str = pn; - pn = utf8codepoint(str, &cp); - } -} - -utf8_constexpr14_impl utf8_int32_t utf8lwrcodepoint(utf8_int32_t cp) { - if (((0x0041 <= cp) && (0x005a >= cp)) || - ((0x00c0 <= cp) && (0x00d6 >= cp)) || - ((0x00d8 <= cp) && (0x00de >= cp)) || - ((0x0391 <= cp) && (0x03a1 >= cp)) || - ((0x03a3 <= cp) && (0x03ab >= cp)) || - ((0x0410 <= cp) && (0x042f >= cp))) { - cp += 32; - } else if ((0x0400 <= cp) && (0x040f >= cp)) { - cp += 80; - } else if (((0x0100 <= cp) && (0x012f >= cp)) || - ((0x0132 <= cp) && (0x0137 >= cp)) || - ((0x014a <= cp) && (0x0177 >= cp)) || - ((0x0182 <= cp) && (0x0185 >= cp)) || - ((0x01a0 <= cp) && (0x01a5 >= cp)) || - ((0x01de <= cp) && (0x01ef >= cp)) || - ((0x01f8 <= cp) && (0x021f >= cp)) || - ((0x0222 <= cp) && (0x0233 >= cp)) || - ((0x0246 <= cp) && (0x024f >= cp)) || - ((0x03d8 <= cp) && (0x03ef >= cp)) || - ((0x0460 <= cp) && (0x0481 >= cp)) || - ((0x048a <= cp) && (0x04ff >= cp))) { - cp |= 0x1; - } else if (((0x0139 <= cp) && (0x0148 >= cp)) || - ((0x0179 <= cp) && (0x017e >= cp)) || - ((0x01af <= cp) && (0x01b0 >= cp)) || - ((0x01b3 <= cp) && (0x01b6 >= cp)) || - ((0x01cd <= cp) && (0x01dc >= cp))) { - cp += 1; - cp &= ~0x1; - } else { - switch (cp) { - default: - break; - case 0x0178: - cp = 0x00ff; - break; - case 0x0243: - cp = 0x0180; - break; - case 0x018e: - cp = 0x01dd; - break; - case 0x023d: - cp = 0x019a; - break; - case 0x0220: - cp = 0x019e; - break; - case 0x01b7: - cp = 0x0292; - break; - case 0x01c4: - cp = 0x01c6; - break; - case 0x01c7: - cp = 0x01c9; - break; - case 0x01ca: - cp = 0x01cc; - break; - case 0x01f1: - cp = 0x01f3; - break; - case 0x01f7: - cp = 0x01bf; - break; - case 0x0187: - cp = 0x0188; - break; - case 0x018b: - cp = 0x018c; - break; - case 0x0191: - cp = 0x0192; - break; - case 0x0198: - cp = 0x0199; - break; - case 0x01a7: - cp = 0x01a8; - break; - case 0x01ac: - cp = 0x01ad; - break; - case 0x01af: - cp = 0x01b0; - break; - case 0x01b8: - cp = 0x01b9; - break; - case 0x01bc: - cp = 0x01bd; - break; - case 0x01f4: - cp = 0x01f5; - break; - case 0x023b: - cp = 0x023c; - break; - case 0x0241: - cp = 0x0242; - break; - case 0x03fd: - cp = 0x037b; - break; - case 0x03fe: - cp = 0x037c; - break; - case 0x03ff: - cp = 0x037d; - break; - case 0x037f: - cp = 0x03f3; - break; - case 0x0386: - cp = 0x03ac; - break; - case 0x0388: - cp = 0x03ad; - break; - case 0x0389: - cp = 0x03ae; - break; - case 0x038a: - cp = 0x03af; - break; - case 0x038c: - cp = 0x03cc; - break; - case 0x038e: - cp = 0x03cd; - break; - case 0x038f: - cp = 0x03ce; - break; - case 0x0370: - cp = 0x0371; - break; - case 0x0372: - cp = 0x0373; - break; - case 0x0376: - cp = 0x0377; - break; - case 0x03f4: - cp = 0x03b8; - break; - case 0x03cf: - cp = 0x03d7; - break; - case 0x03f9: - cp = 0x03f2; - break; - case 0x03f7: - cp = 0x03f8; - break; - case 0x03fa: - cp = 0x03fb; - break; - } - } - - return cp; -} - -utf8_constexpr14_impl utf8_int32_t utf8uprcodepoint(utf8_int32_t cp) { - if (((0x0061 <= cp) && (0x007a >= cp)) || - ((0x00e0 <= cp) && (0x00f6 >= cp)) || - ((0x00f8 <= cp) && (0x00fe >= cp)) || - ((0x03b1 <= cp) && (0x03c1 >= cp)) || - ((0x03c3 <= cp) && (0x03cb >= cp)) || - ((0x0430 <= cp) && (0x044f >= cp))) { - cp -= 32; - } else if ((0x0450 <= cp) && (0x045f >= cp)) { - cp -= 80; - } else if (((0x0100 <= cp) && (0x012f >= cp)) || - ((0x0132 <= cp) && (0x0137 >= cp)) || - ((0x014a <= cp) && (0x0177 >= cp)) || - ((0x0182 <= cp) && (0x0185 >= cp)) || - ((0x01a0 <= cp) && (0x01a5 >= cp)) || - ((0x01de <= cp) && (0x01ef >= cp)) || - ((0x01f8 <= cp) && (0x021f >= cp)) || - ((0x0222 <= cp) && (0x0233 >= cp)) || - ((0x0246 <= cp) && (0x024f >= cp)) || - ((0x03d8 <= cp) && (0x03ef >= cp)) || - ((0x0460 <= cp) && (0x0481 >= cp)) || - ((0x048a <= cp) && (0x04ff >= cp))) { - cp &= ~0x1; - } else if (((0x0139 <= cp) && (0x0148 >= cp)) || - ((0x0179 <= cp) && (0x017e >= cp)) || - ((0x01af <= cp) && (0x01b0 >= cp)) || - ((0x01b3 <= cp) && (0x01b6 >= cp)) || - ((0x01cd <= cp) && (0x01dc >= cp))) { - cp -= 1; - cp |= 0x1; - } else { - switch (cp) { - default: - break; - case 0x00ff: - cp = 0x0178; - break; - case 0x0180: - cp = 0x0243; - break; - case 0x01dd: - cp = 0x018e; - break; - case 0x019a: - cp = 0x023d; - break; - case 0x019e: - cp = 0x0220; - break; - case 0x0292: - cp = 0x01b7; - break; - case 0x01c6: - cp = 0x01c4; - break; - case 0x01c9: - cp = 0x01c7; - break; - case 0x01cc: - cp = 0x01ca; - break; - case 0x01f3: - cp = 0x01f1; - break; - case 0x01bf: - cp = 0x01f7; - break; - case 0x0188: - cp = 0x0187; - break; - case 0x018c: - cp = 0x018b; - break; - case 0x0192: - cp = 0x0191; - break; - case 0x0199: - cp = 0x0198; - break; - case 0x01a8: - cp = 0x01a7; - break; - case 0x01ad: - cp = 0x01ac; - break; - case 0x01b0: - cp = 0x01af; - break; - case 0x01b9: - cp = 0x01b8; - break; - case 0x01bd: - cp = 0x01bc; - break; - case 0x01f5: - cp = 0x01f4; - break; - case 0x023c: - cp = 0x023b; - break; - case 0x0242: - cp = 0x0241; - break; - case 0x037b: - cp = 0x03fd; - break; - case 0x037c: - cp = 0x03fe; - break; - case 0x037d: - cp = 0x03ff; - break; - case 0x03f3: - cp = 0x037f; - break; - case 0x03ac: - cp = 0x0386; - break; - case 0x03ad: - cp = 0x0388; - break; - case 0x03ae: - cp = 0x0389; - break; - case 0x03af: - cp = 0x038a; - break; - case 0x03cc: - cp = 0x038c; - break; - case 0x03cd: - cp = 0x038e; - break; - case 0x03ce: - cp = 0x038f; - break; - case 0x0371: - cp = 0x0370; - break; - case 0x0373: - cp = 0x0372; - break; - case 0x0377: - cp = 0x0376; - break; - case 0x03d1: - cp = 0x0398; - break; - case 0x03d7: - cp = 0x03cf; - break; - case 0x03f2: - cp = 0x03f9; - break; - case 0x03f8: - cp = 0x03f7; - break; - case 0x03fb: - cp = 0x03fa; - break; - } - } - - return cp; -} - -utf8_constexpr14_impl utf8_int8_t * -utf8rcodepoint(const utf8_int8_t *utf8_restrict str, - utf8_int32_t *utf8_restrict out_codepoint) { - const utf8_int8_t *s = (const utf8_int8_t *)str; - - if (0xf0 == (0xf8 & s[0])) { - /* 4 byte utf8 codepoint */ - *out_codepoint = ((0x07 & s[0]) << 18) | ((0x3f & s[1]) << 12) | - ((0x3f & s[2]) << 6) | (0x3f & s[3]); - } else if (0xe0 == (0xf0 & s[0])) { - /* 3 byte utf8 codepoint */ - *out_codepoint = - ((0x0f & s[0]) << 12) | ((0x3f & s[1]) << 6) | (0x3f & s[2]); - } else if (0xc0 == (0xe0 & s[0])) { - /* 2 byte utf8 codepoint */ - *out_codepoint = ((0x1f & s[0]) << 6) | (0x3f & s[1]); - } else { - /* 1 byte utf8 codepoint otherwise */ - *out_codepoint = s[0]; - } - - do { - s--; - } while ((0 != (0x80 & s[0])) && (0x80 == (0xc0 & s[0]))); - - return (utf8_int8_t *)s; -} - -#undef utf8_restrict -#undef utf8_constexpr14 -#undef utf8_null - -#ifdef __cplusplus -} /* extern "C" */ -#endif - -#if defined(__clang__) -#pragma clang diagnostic pop -#endif - -#endif /* SHEREDOM_UTF8_H_INCLUDED */ \ No newline at end of file diff --git a/c/Unicode2zh/src/CN2utf8.c b/c/Unicode2zh/src/CN2utf8.c deleted file mode 100644 index e69de29..0000000 diff --git a/c/Unicode2zh/src/main.c b/c/Unicode2zh/src/main.c deleted file mode 100644 index 26ca793..0000000 --- a/c/Unicode2zh/src/main.c +++ /dev/null @@ -1,12 +0,0 @@ -#include -#include -#include -int main(void) -{ - char str[12]; - wchar_t wstr[] = {0x52B3, 0x788C, 0}; - setlocale(LC_ALL, ""); - wcstombs(str, wstr, sizeof(str) / sizeof(char)); - printf("%s", str); - return 0; -} diff --git a/c/UnionBit/main.c b/c/UnionBit/main.c deleted file mode 100644 index a822152..0000000 --- a/c/UnionBit/main.c +++ /dev/null @@ -1,13 +0,0 @@ -#include -int main() -{ - union test - { - unsigned int a : 1; - unsigned int b : 2; - unsigned int c : 1; - }; - union test test2; - test2.a = 1; - printf("%d\n", test2.a); -} diff --git a/c/YanghuiTriangle/yanghuitriangle.c b/c/YanghuiTriangle/yanghuitriangle.c deleted file mode 100644 index 0e7deff..0000000 --- a/c/YanghuiTriangle/yanghuitriangle.c +++ /dev/null @@ -1,42 +0,0 @@ -#include -int main() -{ - int n; - printf("please input a num:\n"); - scanf("%d", &n); - int a[n][n]; - for (int i = 0; i < n; i++) - { - a[i][i] = 1; - a[i][0] = 1; - } - for (int i = 2; i < n; i++) - { - for (int j = 1; j <= i - 1; j++) - { - a[i][j] = a[i - 1][j - 1] + a[i - 1][j]; - } - } - printf("array is :\n"); - for (int i = 0; i < n; i++) - { - for (int j = 0; j <= i; j++) - { - printf("%d ", a[i][j]); - } - printf("\n"); - } - // PrintArray(a, n, n); - return 0; -} - -void PrintArray(int **n, int row, int column) -{ - for (int i = 0; i < row; i++) - { - for (int j = 0; j < column; j++) - { - printf("%d", n[i][j]); - } - } -} \ No newline at end of file diff --git a/c/bit/1 b/c/bit/1 new file mode 100755 index 0000000..cf69456 Binary files /dev/null and b/c/bit/1 differ diff --git a/c/bit/1.c b/c/bit/1.c new file mode 100644 index 0000000..f973e27 --- /dev/null +++ b/c/bit/1.c @@ -0,0 +1,16 @@ +#include +#include +#include +const char *u2word(int u); +int main(){ + int a = 0x52B3; + printf("%s\n",u2word(a)); +} +const char *u2word(int u){ + char *temp=(char *)malloc(sizeof(int)); + sprintf(temp,"%X",u); + printf("\\u%s\n",temp); + temp[0]='\\'; + temp[1]='u'; + return temp; +} diff --git a/c/bit/limit/main.c b/c/bit/limit/main.c new file mode 100644 index 0000000..01e25e5 --- /dev/null +++ b/c/bit/limit/main.c @@ -0,0 +1,27 @@ +#include +#include + +int main(){ + printf("One Byte is %d bit\n",CHAR_BIT); + + printf("The min of signed char is %d\n",SCHAR_MIN); + printf("The max of signed char is %d\n",SCHAR_MAX); + printf("The max of unsigned char is %u\n",UCHAR_MAX); + + printf("The min of signed short is %d\n",SHRT_MIN); + printf("The max of signed short is %d\n",SHRT_MAX); + printf("The max of unsigned short is %u\n",USHRT_MAX); + + printf("The min of signed int is %d\n",INT_MIN); + printf("The max of signed int is %d\n",INT_MAX); + printf("The max of unsigned int is %u\n",UINT_MAX); + + printf("The min of signed long is %ld\n",LONG_MIN); + printf("The max of signed long is %ld\n",LONG_MAX); + printf("The max of unsigned long is %lu\n",ULONG_MAX); + + printf("The min of signed long long is %lld\n",LLONG_MIN); + printf("The max of signed long long is %lld\n",LLONG_MAX); + printf("The max of unsigned long long is %llu\n",ULLONG_MAX); + +} diff --git a/c/bubblesort/.vscode/launch.json b/c/bubblesort/.vscode/launch.json new file mode 100644 index 0000000..e72133c --- /dev/null +++ b/c/bubblesort/.vscode/launch.json @@ -0,0 +1,34 @@ +{ + // 使用 IntelliSense 了解相关属性。 + // 悬停以查看现有属性的描述。 + // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "(gdb) 启动", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/build/bubblesort.exe", + "args": [], + "stopAtEntry": false, + "cwd": "${fileDirname}", + "environment": [], + "externalConsole": false, + "MIMode": "gdb", + "miDebuggerPath": "C:/Users/beaut/scoop/shims/gdb.exe", + "setupCommands": [ + { + "description": "为 gdb 启用整齐打印", + "text": "-enable-pretty-printing", + "ignoreFailures": true + }, + { + "description": "将反汇编风格设置为 Intel", + "text": "-gdb-set disassembly-flavor intel", + "ignoreFailures": true + } + ] + } + + ] +} \ No newline at end of file diff --git a/c/bubblesort/.vscode/tasks.json b/c/bubblesort/.vscode/tasks.json new file mode 100644 index 0000000..6a19a6f --- /dev/null +++ b/c/bubblesort/.vscode/tasks.json @@ -0,0 +1,28 @@ +{ + "tasks": [ + { + "type": "cppbuild", + "label": "C/C++: gcc.exe 生成活动文件", + "command": "C:\\Users\\beaut\\scoop\\apps\\gcc\\current\\bin\\gcc.exe", + "args": [ + "-fdiagnostics-color=always", + "-g", + "${file}", + "-o", + "${fileDirname}\\..\\build\\${fileBasenameNoExtension}.exe" + ], + "options": { + "cwd": "${fileDirname}" + }, + "problemMatcher": [ + "$gcc" + ], + "group": { + "kind": "build", + "isDefault": true + }, + "detail": "调试器生成的任务。" + } + ], + "version": "2.0.0" +} \ No newline at end of file diff --git a/c/Bubblesort/CMakeLists.txt b/c/bubblesort/CMakeLists.txt similarity index 100% rename from c/Bubblesort/CMakeLists.txt rename to c/bubblesort/CMakeLists.txt diff --git a/c/Bubblesort/include/BubbleSort.h b/c/bubblesort/include/bubblesort.h similarity index 100% rename from c/Bubblesort/include/BubbleSort.h rename to c/bubblesort/include/bubblesort.h diff --git a/c/Bubblesort/src/bubble.c b/c/bubblesort/src/bubble.c similarity index 64% rename from c/Bubblesort/src/bubble.c rename to c/bubblesort/src/bubble.c index bc57f6c..a904add 100644 --- a/c/Bubblesort/src/bubble.c +++ b/c/bubblesort/src/bubble.c @@ -1,15 +1,15 @@ -#include "../include/BubbleSort.h" +#include "../include/bubblesort.h" int main() { int a[] = {5, 10, 3, 7, 9, 6, 8, 1, 4, 2}; int i; - int size = sizeof(a) / sizeof(a[0]); + int size = sizeof(a)/sizeof(a[0]); printf("Before sorting:\n"); for (i = 0; i < size; i++) { printf("%d\n", a[i]); } - BubbleSort(a, size); + bubblesort(a,size); printf("After sorting:\n"); for (i = 0; i < size; i++) { @@ -17,8 +17,7 @@ int main() } return 0; } -// sort array[] and save to array[] -void BubbleSort(int *array, int size) +void bubblesort(int array[],int size) { int i, j, temp; for (i = 0; i < size; i++) @@ -34,8 +33,3 @@ void BubbleSort(int *array, int size) } } } -void PrintIntArray(int *array, int length, char *interval) { - for (int i = 0; i <= length - 1; i++) { - printf("%d%s", *(array + i), interval); - } -} \ No newline at end of file diff --git a/c/bubblesort/src/bubblesort.code-workspace b/c/bubblesort/src/bubblesort.code-workspace new file mode 100644 index 0000000..dd7b99c --- /dev/null +++ b/c/bubblesort/src/bubblesort.code-workspace @@ -0,0 +1,10 @@ +{ + "folders": [ + { + "path": ".." + } + ], + "settings": { + "cmake.generator": "MinGW Makefiles", + } +} \ No newline at end of file diff --git a/c/cmkls.txt b/c/cmkls.txt deleted file mode 100644 index 217bfaf..0000000 --- a/c/cmkls.txt +++ /dev/null @@ -1,48 +0,0 @@ -#cmake最小版本需求 -cmake_minimum_required(VERSION xxx) - -#设置此项目的名称 -project(xxx) - -#生成可执行文件target ,后面填写的是生成此可执行文件所依赖的源文件列表。 -add_executable(target target_source_codes) - -# 设置一个名字var_name 的变量,同时给此变量赋值为var_value -SET(var_name var_value) - -# 指定编译器 -# CMAKE_C_FLAGS_DEBUG ---- C 编译器 -# CMAKE_CXX_FLAGS_DEBUG ---- C++ 编译器 -# -std=c++11 使用 C++11 -# -g:只是编译器,在编译的时候,产生调试信息。 -# -Wall:生成所有警告信息。一下是具体的选项,可以单独使用 -set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -g -wall ") - -#指定编译类型,debug 或者为 release -# debug 会生成相关调试信息,可以使用 GDB 进行 -# release 不会生成调试信息。当无法进行调试时查看此处是否设置为 debug. -set(CMAKE_BUILD_TYPE Debug) - -# 打印消息 -MESSAGE("MSG") - -#给变量var_name赋值为var_value,comment是此变量的注释,和SET 有类似的功效,用于给某变量设置默认值 -option(var_name "comment" var_value) - -# 添加include路径,也就是头文件路径 -include_directories(xxx) - -# 调用xxx子目录的CMakeLists.txt执行 -add_subdirectory(xxx) - -# 给编译器添加xxx参数 -add_compile_options(xxx) - -# 给编译器添加库目录, -link_directories(xxx) - -# 生成库文件,SHARED代表动态库,STATIC代表静态库, 最后一个参数代表此库的源文件列表 -add_library(lib_name SHARED or STATIC lib_source_code) - -# 给目标添加依赖库 -target_link_libraries(target_name lib_name ...) diff --git a/c/Composition/build.sh b/c/composition/build.sh similarity index 100% rename from c/Composition/build.sh rename to c/composition/build.sh diff --git a/c/composition/composition.c b/c/composition/composition.c new file mode 100644 index 0000000..fe22774 --- /dev/null +++ b/c/composition/composition.c @@ -0,0 +1,35 @@ +#include +#include +#include +void write(); +int main(int argc,char *argv[]){ + //char str1[20]="114514"; + ////char *str2 ="1919810"; + //char str3[]= *str2; + //printf("%s\n%s\n",&str1,str2); + ////strcpy(str1,str3); + ////printf("strcpy(str1,str3):%s\n",str3) + // {'b','a','k','a','\0'}; + if ( argc == 1 ) + { + printf("please input name\n"); + //char name[] = "baka"; + return 0; + } + /* else + { + char *name = argv[1]; + } + */ + char composition[99]; + //write(composition,name); + write(composition,argv[1]); + printf(composition); + return 0; +} + +void write(char saying1[],const char *name){ + sprintf(saying1,"%s,my %s,I do love u so much. ",name,name); + char saying2[]="Pls take me away"; + strcat(saying1,saying2); +} diff --git a/c/csqlite/main.c b/c/csqlite/main.c new file mode 100644 index 0000000..2161192 --- /dev/null +++ b/c/csqlite/main.c @@ -0,0 +1,18 @@ +#include +#include +#include +int main(int argc ,char* argv[]){ + sqlite3 *db; + char zErrMsg = 0; + int rc; + rc = sqlite3_open("test.db",&db); + + if (rc){ + fprintf(stderr, "Can't open database:%s\n",sqlite3_errmsg(db)); + exit(0); + }else{ + fprintf(stderr, "Opened database successfully\n"); + } + sqlite3_close(db); + return 0; +} diff --git a/c/CSqlite/test.db b/c/csqlite/test.db similarity index 100% rename from c/CSqlite/test.db rename to c/csqlite/test.db diff --git a/c/FilePointer/CMakeLists.txt b/c/fd/CMakeLists.txt similarity index 100% rename from c/FilePointer/CMakeLists.txt rename to c/fd/CMakeLists.txt diff --git a/c/FilePointer/build.sh b/c/fd/build.sh similarity index 100% rename from c/FilePointer/build.sh rename to c/fd/build.sh diff --git a/c/FilePointer/include/fd.h b/c/fd/include/head.h similarity index 75% rename from c/FilePointer/include/fd.h rename to c/fd/include/head.h index d5487d2..aea50a4 100644 --- a/c/FilePointer/include/fd.h +++ b/c/fd/include/head.h @@ -1,8 +1,6 @@ -#ifndef _fd_h -#define _fd_h #include #include #include #include #include -#endif \ No newline at end of file + diff --git a/c/FilePointer/src/main.c b/c/fd/src/main.c similarity index 60% rename from c/FilePointer/src/main.c rename to c/fd/src/main.c index 5f0fccc..ccf3d77 100644 --- a/c/FilePointer/src/main.c +++ b/c/fd/src/main.c @@ -1,12 +1,10 @@ -#include "../include/fd.h" -int main() -{ - char *path = "file.txt"; +#include "../include/head.h" +int main(){ + char *path="file.txt"; int fd; - char buf[40], buf2[] = "hello world"; - int n, i; - if ((fd = open(path, O_RDWR)) < 0) - { + char buf[40],buf2[]="hello world"; + int n,i; + if ((fd=open(path,O_RDWR))<0){ perror("open file failed"); return 1; } @@ -15,25 +13,22 @@ int main() printf("open file successfully\n"); } - if ((n = read(fd, buf, 20)) < 0) - { - perror("read failed"); - return 1; + if ((n=read(fd,buf,20))<0){ + perror("read failed"); + return 1; } else { printf("output read data:\n"); - printf("%s\n", buf); + printf("%s\n",buf); } - if ((i = lseek(fd, 11, SEEK_SET)) < 0) - { + if ((i=lseek(fd,11,SEEK_SET))<0){ perror("lseek error"); return 1; } else { - if (write(fd, buf2, 11) < 0) - { + if (write(fd,buf2,11)<0){ perror("write error"); return 1; } @@ -44,14 +39,13 @@ int main() } close(fd); - if ((fd = open(path, O_RDWR)) < 0) - { + if ((fd=open(path,O_RDWR))<0){ perror("open file failed"); return 1; } else { - if ((n = read(fd, buf, 40) < 0)) + if ((n=read(fd,buf,40)<0)) { perror("open file 2 failed"); return 1; @@ -59,10 +53,9 @@ int main() else { printf("read the changed data:\n"); - printf("%s\n", buf); + printf("%s\n",buf); } - if (close(fd) < 0) - { + if (close(fd)<0){ perror("close file failed"); return 1; } diff --git a/c/Fileio/CMakeLists.txt b/c/fileio/CMakeLists.txt similarity index 100% rename from c/Fileio/CMakeLists.txt rename to c/fileio/CMakeLists.txt diff --git a/c/Fileio/build.sh b/c/fileio/build.sh similarity index 100% rename from c/Fileio/build.sh rename to c/fileio/build.sh diff --git a/c/Fileio/include/fileio.h b/c/fileio/include/head.h similarity index 57% rename from c/Fileio/include/fileio.h rename to c/fileio/include/head.h index f4bcaac..6eef59c 100644 --- a/c/Fileio/include/fileio.h +++ b/c/fileio/include/head.h @@ -1,7 +1,5 @@ -#ifndef _fileio_h -#define _fileio_h #include #include int r(); int w(); -#endif \ No newline at end of file + diff --git a/c/Fileio/main.c b/c/fileio/main.c similarity index 100% rename from c/Fileio/main.c rename to c/fileio/main.c diff --git a/c/Fileio/src/file.txt b/c/fileio/src/file.txt similarity index 100% rename from c/Fileio/src/file.txt rename to c/fileio/src/file.txt diff --git a/c/fileio/src/main.c b/c/fileio/src/main.c new file mode 100644 index 0000000..953528a --- /dev/null +++ b/c/fileio/src/main.c @@ -0,0 +1,6 @@ +#include "../include/head.h" +int main(){ + w("file.txt","this_is_an_apple"); + r("file.txt"); + return 0; +} diff --git a/c/fileio/src/r.c b/c/fileio/src/r.c new file mode 100644 index 0000000..402b88b --- /dev/null +++ b/c/fileio/src/r.c @@ -0,0 +1,15 @@ +#include "../include/head.h" +int r(const char* filename){ + FILE *fp = fopen("file.txt","r"); + int i; + long location=-2; + while(ftell(fp)!=-1 && ftell(fp)!=location){ + //location=ftell(fp); + //printf("location:%ld ",location); + char a[100]; + fscanf(fp,"%s",a); + printf("%s \n\n",a); + } + fclose(fp); + return 0; +} diff --git a/c/fileio/src/w.c b/c/fileio/src/w.c new file mode 100644 index 0000000..a905151 --- /dev/null +++ b/c/fileio/src/w.c @@ -0,0 +1,8 @@ +#include "../include/head.h" +int w(const char* filename,const char* string){ + FILE *fp; + fp = fopen(filename,"w"); + fprintf(fp,"%s",string); + fclose(fp); + return 0; +} diff --git a/c/fp/1 b/c/fp/1 new file mode 100755 index 0000000..142a5d0 Binary files /dev/null and b/c/fp/1 differ diff --git a/c/fp/main.c b/c/fp/main.c new file mode 100644 index 0000000..2f237e2 --- /dev/null +++ b/c/fp/main.c @@ -0,0 +1,26 @@ +#include +#include +int min(int a,int b){ + return a-b; +} +int mul(int a,int b){ + return a*b; +} +int div(int a,int b){ + return a/b; +} +int add(const char *a,const char *b){ + return sprintf(a,"%s%s",a,b); +} +int add(int a,int b){ + return a+b; +} + +int calc(int (*fp)(int a,int b),int a , int b){ + return (*fp)(a,b); +} + +int main(int argc,char *argv[]){ + int a=1,b=2; + printf("%d %d=%d\n",a,b,calc(add,a,b)); +} diff --git a/c/fp/main.cpp b/c/fp/main.cpp new file mode 100644 index 0000000..60122df --- /dev/null +++ b/c/fp/main.cpp @@ -0,0 +1,28 @@ +#include +#include +int min(int a,int b){ + return a-b; +} +int mul(int a,int b){ + return a*b; +} +int div(int a,int b){ + return a/b; +} +int add(const char *a,const char *b){ + char c[100]; + sprintf(c,"%s%s",a,b); + return (int)(*c); +} +int add(int a,int b){ + return a+b; +} + +int calc(int (*fp)(int a,int b),int a , int b){ + return (*fp)(a,b); +} + +int main(int argc,char *argv[]){ + int a=1,b=2; + printf("%d %d=%d\n",a,b,calc(add,a,b)); +} diff --git a/c/getch/CMakeLists.txt b/c/getch/CMakeLists.txt deleted file mode 100644 index 6da754f..0000000 --- a/c/getch/CMakeLists.txt +++ /dev/null @@ -1,5 +0,0 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 2.9) -PROJECT(GETCH) -INCLUDE_DIRECTORIES(./include) -AUX_SOURCE_DIRECTORY(./src DIR_SRCS) -ADD_EXECUTABLE(getch ${DIR_SRCS}) diff --git a/c/getch/include/getch.h b/c/getch/include/getch.h deleted file mode 100644 index 38db467..0000000 --- a/c/getch/include/getch.h +++ /dev/null @@ -1,50 +0,0 @@ -#ifndef _GETCH_H -#define _GETCH_H - -#include -// https://sourceforge.net/p/predef/wiki/OperatingSystems/ -#if defined(_WIN16) || defined(_WIN32) || defined(_WIN64) - -#include -#define sh_getch _getch - -#elif defined(__linux__) || defined(__gnu_linux__) - -// ncurses maybe work better -// https://www.cnblogs.com/life2refuel/p/5720043.html -#include - -/* - * get only one char without Line buffering - * : return the char gotten - */ -inline int sh_getch(void) { - int cr; - struct termios nts, ots; - - if (tcgetattr(0, &ots) < 0) - // get the setting of current terminal (0 stand for stdin) - return EOF; - - nts = ots; - cfmakeraw(&nts); - // set theterminal to raw mode , in this mode all stdin data will be procrssed - // in byte - if (tcsetattr(0, TCSANOW, &nts) < 0) // use the modified setting - return EOF; - - cr = getchar(); - if (tcsetattr(0, TCSANOW, &ots) < 0) // restore the setting to preview mode - return EOF; - - return cr; -} - -#elif defined(__APPLE__) -#else - -#error "error : Not supported!" - -#endif /* OS */ - -#endif /* _GETCH_H */ \ No newline at end of file diff --git a/c/getch/include/keyboard.h b/c/getch/include/keyboard.h deleted file mode 100644 index 5057fdc..0000000 --- a/c/getch/include/keyboard.h +++ /dev/null @@ -1,15 +0,0 @@ -#ifndef _KEYBOARD_H -#define _KEYBOARD_H - -#ifdef KEY_AS_STRING -#define ESC "\033" -#define UP "\033[A" -#define DOWN "\033[B" -#define LEFT "\033[D" -#define RIGHT "\033[C" -#else /* KEY_AS_STRING*/ - -#define ESC 0x1B -#endif /* KEY_AS_STRING*/ - -#endif /* _KEYBOARD_H */ \ No newline at end of file diff --git a/c/getch/test/CMakeLists.txt b/c/getch/test/CMakeLists.txt deleted file mode 100644 index efd6a3f..0000000 --- a/c/getch/test/CMakeLists.txt +++ /dev/null @@ -1,5 +0,0 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 2.9) -PROJECT(TEST) -INCLUDE_DIRECTORIES(../include) -AUX_SOURCE_DIRECTORY(./ DIR_SRCS) -ADD_EXECUTABLE(test ${DIR_SRCS}) diff --git a/c/getch/test/test.c b/c/getch/test/test.c deleted file mode 100644 index 85552a8..0000000 --- a/c/getch/test/test.c +++ /dev/null @@ -1,19 +0,0 @@ -// test -#include "getch.h" -#include "keyboard.h" -#include -int sh_getch(void); -int main() { - char ch; - do { - ch = sh_getch(); - if (ch > 31 && ch < 127) { - printf("You press \'%c\' \nAscii: 0x%x\n\n", ch, ch); - - } else { - printf("Ascii: 0x%x", ch); - printf("\n\n"); - } - } while (ch != 'q'); - printf("ch:\'%c'\nExiting......", ch); -} \ No newline at end of file diff --git a/c/getch/tools/getkeyvalue/CMakeLists.txt b/c/getch/tools/getkeyvalue/CMakeLists.txt deleted file mode 100644 index 2bfef5a..0000000 --- a/c/getch/tools/getkeyvalue/CMakeLists.txt +++ /dev/null @@ -1,5 +0,0 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 2.9) -PROJECT(GETKEYVALUE) -INCLUDE_DIRECTORIES(../../include) -AUX_SOURCE_DIRECTORY(./ DIR_SRCS) -ADD_EXECUTABLE(getkey ${DIR_SRCS}) diff --git a/c/getch/tools/getkeyvalue/getkeyvalue.c b/c/getch/tools/getkeyvalue/getkeyvalue.c deleted file mode 100644 index c73a72d..0000000 --- a/c/getch/tools/getkeyvalue/getkeyvalue.c +++ /dev/null @@ -1,10 +0,0 @@ -#include "getch.h" -#include -int sh_getch(void); -int main() { - char ch; - while ((ch = sh_getch()) != 'q') /* q to quit */ - { - printf("%d \n", ch); - } -} \ No newline at end of file diff --git a/c/HelloWorld/CMakeLists.txt b/c/helloworld/CMakeLists.txt similarity index 100% rename from c/HelloWorld/CMakeLists.txt rename to c/helloworld/CMakeLists.txt diff --git a/c/HelloWorld/build.sh b/c/helloworld/build.sh similarity index 100% rename from c/HelloWorld/build.sh rename to c/helloworld/build.sh diff --git a/c/HelloWorld/cmkls.txt b/c/helloworld/cmkls.txt similarity index 100% rename from c/HelloWorld/cmkls.txt rename to c/helloworld/cmkls.txt diff --git a/c/HelloWorld/src/main.c b/c/helloworld/src/main.c similarity index 100% rename from c/HelloWorld/src/main.c rename to c/helloworld/src/main.c diff --git a/c/LinkTable/CMakeLists.txt b/c/link_table/CMakeLists.txt similarity index 100% rename from c/LinkTable/CMakeLists.txt rename to c/link_table/CMakeLists.txt diff --git a/c/LinkTable/build.sh b/c/link_table/build.sh similarity index 100% rename from c/LinkTable/build.sh rename to c/link_table/build.sh diff --git a/c/LinkTable/include/linktable.h b/c/link_table/include/head.h similarity index 60% rename from c/LinkTable/include/linktable.h rename to c/link_table/include/head.h index e470ea7..ee5323b 100644 --- a/c/LinkTable/include/linktable.h +++ b/c/link_table/include/head.h @@ -1,7 +1,4 @@ -#ifndef _linktable_h -#define _linktable_h #include #include struct head_link; struct body_link; -#endif \ No newline at end of file diff --git a/c/LinkTable/src/linktable.c b/c/link_table/src/main.c similarity index 50% rename from c/LinkTable/src/linktable.c rename to c/link_table/src/main.c index 35ed015..98f77a0 100644 --- a/c/LinkTable/src/linktable.c +++ b/c/link_table/src/main.c @@ -1,32 +1,28 @@ -#include "../include/linktable.h" +#include "../include/head.h" -*head_link hcreate() -{ +*head_link hcreate() { struct head_link *temp; - temp = (struct head_link *)(malloc(sizeof(struct head_link))); - temp->head = (struct body_link *)(malloc(sizeof(struct body_link))); + temp = (struct head_link*)(malloc(sizeof(struct head_link))); + temp->head = (struct body_link*)(malloc(sizeof(struct body_link))); temp->location = &(temp->head); temp->offset = 0; return temp; } -int hadd(head_link *head_hl) -{ +int hadd(head_link *head_hl){ struct head_link *temp; - temp = (struct head_link *)(malloc(sizeof(struct head_link))); + temp = (struct head_link*)(malloc(sizeof(struct head_link))); head_hl->next = temp; - temp->head = (struct body_link *)(malloc(sizeof(struct body_link))); + temp->head = (struct body_link*)(malloc(sizeof(struct body_link))); *(temp->location) = temp->head; - temp->offset = (head_hl->offset + 1); + temp->offset = (head_hl->offset+1); return 0; } -struct body_link -{ +struct body_link { void *data; int type; struct body_link *next; }; -struct head_link -{ +struct head_link { char *name; struct body_link *head; struct body_link **location; @@ -34,8 +30,7 @@ struct head_link struct head_link *next; }; -int main() -{ +int main(){ struct head_link *first = hcreate(); hadd(first); return 0; diff --git a/c/LinkTest/CMakeLists.txt b/c/link_test/CMakeLists.txt similarity index 100% rename from c/LinkTest/CMakeLists.txt rename to c/link_test/CMakeLists.txt diff --git a/c/LinkTest/build.sh b/c/link_test/build.sh similarity index 100% rename from c/LinkTest/build.sh rename to c/link_test/build.sh diff --git a/c/Fib/include/Fib.h b/c/link_test/include/head.h similarity index 69% rename from c/Fib/include/Fib.h rename to c/link_test/include/head.h index 4a48d13..fbfff34 100644 --- a/c/Fib/include/Fib.h +++ b/c/link_test/include/head.h @@ -1,3 +1,2 @@ -#include -#include -int Fib(int n); \ No newline at end of file +#include +#include diff --git a/c/link_test/src/main.c b/c/link_test/src/main.c new file mode 100644 index 0000000..09e0eec --- /dev/null +++ b/c/link_test/src/main.c @@ -0,0 +1,12 @@ +#include "../include/head.h" +int main(){ + struct test { + char name[20]; + int num; + struct test *next; + }; + struct test *test1=(struct test*)(malloc(sizeof(struct test))); + scanf("%d",&test1->num); + printf("%d\n",test1->num); + return 0; +} diff --git a/c/linuxc/exec/vim2.c b/c/linuxc/exec/vim2.c deleted file mode 100644 index 288c8bf..0000000 --- a/c/linuxc/exec/vim2.c +++ /dev/null @@ -1,11 +0,0 @@ -#include -#include -#include -extern char **environ; -int main(int argc, char *argv[]) -{ - printf("This message will show"); - sleep(10); - execlp("/bin/vi", argv[1], (char *)NULL); - printf("This message will not show"); -} diff --git a/c/malloc/1.c b/c/malloc/1.c new file mode 100644 index 0000000..c58fdbc --- /dev/null +++ b/c/malloc/1.c @@ -0,0 +1,14 @@ +#include +#include +int main(){ + int *a=(int *)malloc(sizeof(int)); + *a=4; + printf("a:%p\n",a); + { + free(a); + int *b=(int *)malloc(sizeof(int)); + printf("a:%p\n",a); + printf("b:%p\n",b); + } + printf("%d\n",*a); +} diff --git a/c/malloc/main.c b/c/malloc/main.c deleted file mode 100644 index a5a6daf..0000000 --- a/c/malloc/main.c +++ /dev/null @@ -1,15 +0,0 @@ -#include -#include -int main() -{ - int *a = (int *)malloc(sizeof(int)); - *a = 4; - printf("a:%p\n", a); - { - free(a); - int *b = (int *)malloc(sizeof(int)); - printf("a:%p\n", a); - printf("b:%p\n", b); - } - printf("%d\n", *a); -} diff --git a/c/pancakeSort/Screenshot_2023-12-03-18-49-20_5200.png b/c/pancakeSort/Screenshot_2023-12-03-18-49-20_5200.png deleted file mode 100644 index bdabb7b..0000000 Binary files a/c/pancakeSort/Screenshot_2023-12-03-18-49-20_5200.png and /dev/null differ diff --git a/c/pancakeSort/pancake.md b/c/pancakeSort/pancake.md deleted file mode 100644 index c8cb321..0000000 --- a/c/pancakeSort/pancake.md +++ /dev/null @@ -1,224 +0,0 @@ ---- -author: 测试 -date: 12 01, 2023 -paging: Slide %d / %d ---- - -# 煎饼排序(pancake sort) - -煎饼排序是一种排序方式,每次排序过程类似煎饼翻面 - ---- - -## 题目: - -给你一个整数数组  `arr` ,请使用 _煎饼翻转_ 完成对数组的排序。 - -一次煎饼翻转的执行过程如下: - -- 选择一个整数  `k` ,`1 <= k <= arr.length` -- 反转子数组  `arr[0...k-1]`(下标从 0 开始) - -例如,`arr = [3,2,1,4]` ,选择  `k = 3`  进行一次煎饼翻转,反转子数组  `[3,2,1]` ,得到  `arr = [1,2,3,4]` 。 - -以数组形式返回能使 `arr` 有序的煎饼翻转操作所对应的 `k` 值序列。任何将数组排序且翻转次数在  `10 * arr.length` 范围内的有效答案都将被判断为正确。 - ---- - -## 如何解决 - -煎饼排序中,每次煎饼翻面意味着反转从顶部开始到一个位置的列表,那么按照传统的排序方式(冒泡/选择,每次只排序一个元素,将列表分为有序和无序两部分) - -> 我们可以不断将最大元素放置到无序部分的底部并扩展有序部分的大小,从而完成排序。 - ---- - -## 尝试解决子问题:将最大元素移动到无序部分的底部 - -### 考虑[3,2,1,4]的一般解法 - -1. 初始状态:`[3,2,1,4],[]` - -2. 找到有序部分最大元素`4` - -3. 将列表`array[0,3]`反转 得到`[4,1,2,3],[]` - - - 通用的将元素移动至列表顶部的方法 - -4. 将列表`array[0,3]`反转 得到`[3,2,1,4],[]` - - - 将列表无序部分翻转以将顶部元素换到底部 - -5. 扩展有序部分 缩减无序部分 得到`[3,2,1],[4]` - - 这时,最大的元素 `4` 已经位于无序部分的底部 - - 目标是将无序部分的最大元素移动到顶部,以扩展有序部分的大小 - ---- - -## 算法实现 - -基本思路: - -- 遍历无序部分,找到最大元素的索引(最大元素在无序部分底部) -- 进行两次煎饼翻转,将最大元素移动到列表顶部 - -然后: - -- 缩小无序部分的范围 -- 重复以上步骤,直到列表完全有序 - ---- - -## 算法实现(续) - -伪代码: - -``` -pancakeSort(arr): - n = arr.length - sortedIndex = n - while sortedIndex > 1: - maxIndex = findMaxIndex(arr, sortedIndex) - flip(arr, maxIndex) - flip(arr, sortedIndex - 1) - sortedIndex -= 1 -``` - ---- - -## 算法分析 - -时间复杂度:O(n^2) - -- 每次煎饼翻转的时间复杂度为 O( n + unsorted_length ) = O(n) -- 总共需要进行 n-1 次煎饼翻转操作,其中 n 为列表长度 - -空间复杂度:O(1) - -- 原地排序,不需要额外的空间 - -稳定性 : 不稳定 - -- 翻转可能导致其他元素位置顺序变化 - ---- - -## 纯 C 语言实现 - -```c - -int reverse_array(int *array, int start, int end) { - size_t i, j; - int temp; - for (i = start, j = end; i < j; i++, j--) { - temp = array[i]; - array[i] = array[j]; - array[j] = temp; - } - return 0; -} - -int find_max_elem(int *array, int start, int end) { - int i; - int max_elem = start; - for (i = start + 1; i <= end; i++) { - if (array[max_elem] < array[i]) { - max_elem = i; - } - } - return max_elem; -} - - -int pancakeSort_no_rec(int *unsorted_array, int sort_start, int sort_end) { - int max_elem; - int unsorted_end = sort_end; - for (; unsorted_end > 0; unsorted_end--) { - max_elem = find_max_elem(unsorted_array, sort_start, unsorted_end); - reverse_array(unsorted_array, sort_start, max_elem); - reverse_array(unsorted_array, sort_start, unsorted_end); - } - return 0; -} - -int pancakeSort_rec(int *unsorted_array, int start, int end) { - int max_elem = find_max_elem(unsorted_array, start, end); - if (start == end) { - return 0; - } - reverse_array(unsorted_array, start, max_elem); - reverse_array(unsorted_array, start, end); - pancakeSort(unsorted_array, start, end - 1); - return 0; -} -``` - ---- - -## 纯 C 语言实现(泛型) - -```c -// generic -int reverse_array(void *array, size_t len, size_t elem_byte_size, - int (*swap_function)(const void *a, const void *b)) { - size_t i; - for (i = 0; i < len / 2; i++) { - swap_function(((char *)array + i * elem_byte_size), - ((char *)array + (len - i - 1) * elem_byte_size)); - } - return 0; -} - -// generic -int find_max_elem(void *array, size_t len, size_t elem_byte_size, - int (*compare_function)(const void *a, const void *b)) { - size_t max_elem = 0; - size_t i; - for (i = 0; i < len; i++) { - if (compare_function((char *)array + max_elem * elem_byte_size, - (char *)array + i * elem_byte_size) < 0) { - max_elem = i; - } - } - return max_elem; -} - -// generic -int pancakeSort_no_rec(void *unsorted_array, size_t len, size_t elem_byte_size, - int (*compare_function)(const void *a, const void *b), - int (*swap_function)(const void *a, const void *b)) { - size_t max_elem; - size_t unsorted_len = len; - for (; unsorted_len > 0; unsorted_len--) { - max_elem = find_max_elem(unsorted_array, unsorted_len, elem_byte_size, - compare_int); - reverse_array(unsorted_array, max_elem + 1, elem_byte_size, swap_int); - reverse_array(unsorted_array, unsorted_len, elem_byte_size, swap_int); - } - return 0; -} - -// generic -int pancakeSort_rec(void *unsorted_array, size_t len, size_t elem_byte_size, - int (*compare_function)(const void *a, const void *b), - int (*swap_function)(const void *a, const void *b)) { - if (len == 1) { - return 0; - } - size_t max_elem = - find_max_elem(unsorted_array, len, elem_byte_size, compare_function); - reverse_array(unsorted_array, max_elem + 1, elem_byte_size, swap_function); - reverse_array(unsorted_array, len, elem_byte_size, swap_function); - pancakeSort(unsorted_array, len - 1, elem_byte_size, compare_function, - swap_function); - - return 0; -} -``` - ---- - -## 可改进部分 - -- 当最大元素本来就在无序部分底部时无需进行煎饼翻转, 可直接进行扩展有序部分 -- 当最大元素本来就在无序部分顶部时只需翻转一次 diff --git a/c/pancakeSort/pancakeSort.c b/c/pancakeSort/pancakeSort.c deleted file mode 100644 index 18027f1..0000000 --- a/c/pancakeSort/pancakeSort.c +++ /dev/null @@ -1,102 +0,0 @@ -#include - -#define length_of_array(array) sizeof(array) / sizeof(array[0]) - -#ifndef REC_IMP -#define NO_REC_IMP -#endif - -// #define DEBUG -#if defined DEBUG -static int reverse_times = 0; -#endif - -// todo: use generic for c -int reverse_array(int *array, int start, int end) { - size_t i, j; - int temp; - for (i = start, j = end; i < j; i++, j--) { - temp = array[i]; - array[i] = array[j]; - array[j] = temp; - } - return 0; -} - -int find_max_elem(int *array, int start, int end) { - int i; - int max_elem = start; - for (i = start + 1; i <= end; i++) { - if (array[max_elem] < array[i]) { - max_elem = i; - } - } - return max_elem; -} - -#if defined NO_REC_IMP - -int pancakeSort(int *unsorted_array, int sort_start, int sort_end) { - int max_elem; - int unsorted_end = sort_end; - for (; unsorted_end > 0; unsorted_end--) { - max_elem = find_max_elem(unsorted_array, sort_start, unsorted_end); - reverse_array(unsorted_array, sort_start, max_elem); - reverse_array(unsorted_array, sort_start, unsorted_end); - } - return 0; -} - -#endif - -#if defined REC_IMP - - -int pancakeSort(int *unsorted_array, int start, int end) { - int max_elem = find_max_elem(unsorted_array, start, end); - if (start == end) { - return 0; - } - reverse_array(unsorted_array, start, max_elem); - -#if defined DEBUG - reverse_times++; - printf("the %d times reverse:", reverse_times); - for (int i = start; i <= end; i++) - printf("%d ", unsorted_array[i]); - printf("\n"); -#endif - - reverse_array(unsorted_array, start, end); - pancakeSort(unsorted_array, start, end - 1); - -#if defined DEBUG - reverse_times++; - printf("the %d times reverse:", reverse_times); - for (int i = start; i <= end; i++) - printf("%d ", unsorted_array[i]); - printf("\n"); -#endif - - return 0; -} - - -#endif - -int main() { - int array1[] = {5, 2, 1, 0, 3, 2, 9}; // {5,2,1,0,3,2*,9} => {0,1,2,2*,3,5,9} - int i; - - printf("before sort: "); - for (i = 0; i < length_of_array(array1); i++) - printf("%d ", array1[i]); - printf("\n"); - - pancakeSort(array1, 0, length_of_array(array1) - 1); - - printf("after sort: "); - for (i = 0; i < length_of_array(array1); i++) - printf("%d ", array1[i]); - printf("\n"); -} diff --git a/c/pancakeSort/pancakeSort_generic.c b/c/pancakeSort/pancakeSort_generic.c deleted file mode 100644 index 09ce012..0000000 --- a/c/pancakeSort/pancakeSort_generic.c +++ /dev/null @@ -1,104 +0,0 @@ -#include - -#define length_of_array(array) sizeof(array) / sizeof(array[0]) - -// #define DEBUG -#if defined DEBUG -static int reverse_times = 0; -#endif - -// #define REC_IMP -#ifndef REC_IMP -#define NO_REC_IMP -#endif - -// generic -int reverse_array(void *array, size_t len, size_t elem_byte_size, - int (*swap_function)(const void *a, const void *b)) { - size_t i; - for (i = 0; i < len / 2; i++) { - swap_function(((char *)array + i * elem_byte_size), - ((char *)array + (len - i - 1) * elem_byte_size)); - } - return 0; -} - -// generic -int find_max_elem(void *array, size_t len, size_t elem_byte_size, - int (*compare_function)(const void *a, const void *b)) { - size_t max_elem = 0; - size_t i; - for (i = 0; i < len; i++) { - if (compare_function((char *)array + max_elem * elem_byte_size, - (char *)array + i * elem_byte_size) < 0) { - max_elem = i; - } - } - return max_elem; -} - -int compare_int(const void *a, const void *b) { return *(int *)a - *(int *)b; } - -int swap_int(const void *a, const void *b) { - int temp = *(int *)a; - *(int *)a = *(int *)b; - *(int *)b = temp; - return 0; -} - -#if defined NO_REC_IMP - -// generic -int pancakeSort(void *unsorted_array, size_t len, size_t elem_byte_size, - int (*compare_function)(const void *a, const void *b), - int (*swap_function)(const void *a, const void *b)) { - size_t max_elem; - size_t unsorted_len = len; - for (; unsorted_len > 0; unsorted_len--) { - max_elem = find_max_elem(unsorted_array, unsorted_len, elem_byte_size, - compare_int); - reverse_array(unsorted_array, max_elem + 1, elem_byte_size, swap_int); - reverse_array(unsorted_array, unsorted_len, elem_byte_size, swap_int); - } - return 0; -} - -#endif - -#if defined REC_IMP - -// generic -int pancakeSort(void *unsorted_array, size_t len, size_t elem_byte_size, - int (*compare_function)(const void *a, const void *b), - int (*swap_function)(const void *a, const void *b)) { - if (len == 1) { - return 0; - } - size_t max_elem = - find_max_elem(unsorted_array, len, elem_byte_size, compare_function); - reverse_array(unsorted_array, max_elem + 1, elem_byte_size, swap_function); - reverse_array(unsorted_array, len, elem_byte_size, swap_function); - pancakeSort(unsorted_array, len - 1, elem_byte_size, compare_function, - swap_function); - - return 0; -} - -#endif - -int main() { - int array1[] = {5, 2, 1, 0, 3, 2, 9}; // {5,2,1,0,3,2*,9} => {0,1,2,2*,3,5,9} - size_t i; - - printf("before sort: "); - for (i = 0; i < length_of_array(array1); i++) - printf("%d ", array1[i]); - printf("\n"); - - pancakeSort(array1, length_of_array(array1), sizeof(int) / sizeof(char), - compare_int, swap_int); - - printf("after sort: "); - for (i = 0; i < length_of_array(array1); i++) - printf("%d ", array1[i]); -} diff --git a/c/pancakeSort/pancake_sort/.gitignore b/c/pancakeSort/pancake_sort/.gitignore deleted file mode 100644 index e634ac6..0000000 --- a/c/pancakeSort/pancake_sort/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -node_modules -.DS_Store -dist -*.local -index.html -.remote-assets -components.d.ts diff --git a/c/pancakeSort/pancake_sort/.npmrc b/c/pancakeSort/pancake_sort/.npmrc deleted file mode 100644 index 05932b8..0000000 --- a/c/pancakeSort/pancake_sort/.npmrc +++ /dev/null @@ -1,3 +0,0 @@ -# for pnpm -shamefully-hoist=true -auto-install-peers=true diff --git a/c/pancakeSort/pancake_sort/README.md b/c/pancakeSort/pancake_sort/README.md deleted file mode 100644 index 1622a1f..0000000 --- a/c/pancakeSort/pancake_sort/README.md +++ /dev/null @@ -1,11 +0,0 @@ -# Welcome to [Slidev](https://github.com/slidevjs/slidev)! - -To start the slide show: - -- `npm install` -- `npm run dev` -- visit http://localhost:3030 - -Edit the [slides.md](./slides.md) to see the changes. - -Learn more about Slidev on [documentations](https://sli.dev/). diff --git a/c/pancakeSort/pancake_sort/Screenshot_2023-12-03-18-49-20_5200.png b/c/pancakeSort/pancake_sort/Screenshot_2023-12-03-18-49-20_5200.png deleted file mode 100644 index bdabb7b..0000000 Binary files a/c/pancakeSort/pancake_sort/Screenshot_2023-12-03-18-49-20_5200.png and /dev/null differ diff --git a/c/pancakeSort/pancake_sort/components/Counter.vue b/c/pancakeSort/pancake_sort/components/Counter.vue deleted file mode 100644 index eaa6a79..0000000 --- a/c/pancakeSort/pancake_sort/components/Counter.vue +++ /dev/null @@ -1,37 +0,0 @@ - - - diff --git a/c/pancakeSort/pancake_sort/netlify.toml b/c/pancakeSort/pancake_sort/netlify.toml deleted file mode 100644 index 18dde11..0000000 --- a/c/pancakeSort/pancake_sort/netlify.toml +++ /dev/null @@ -1,16 +0,0 @@ -[build.environment] - NODE_VERSION = "18" - -[build] - publish = "dist" - command = "npm run build" - -[[redirects]] - from = "/.well-known/*" - to = "/.well-known/:splat" - status = 200 - -[[redirects]] - from = "/*" - to = "/index.html" - status = 200 diff --git a/c/pancakeSort/pancake_sort/package-lock.json b/c/pancakeSort/pancake_sort/package-lock.json deleted file mode 100644 index ff9b4e2..0000000 --- a/c/pancakeSort/pancake_sort/package-lock.json +++ /dev/null @@ -1,6806 +0,0 @@ -{ - "name": "pancake_sort", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "pancake_sort", - "dependencies": { - "@slidev/cli": "^0.44.0", - "@slidev/theme-default": "latest", - "@slidev/theme-seriph": "latest" - }, - "devDependencies": { - "playwright-chromium": "^1.40.1" - } - }, - "node_modules/@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@antfu/install-pkg": { - "version": "0.1.1", - "resolved": "https://registry.npmmirror.com/@antfu/install-pkg/-/install-pkg-0.1.1.tgz", - "integrity": "sha512-LyB/8+bSfa0DFGC06zpCEfs89/XoWZwws5ygEa5D+Xsm3OfI+aXQ86VgVG7Acyef+rSZ5HE7J8rrxzrQeM3PjQ==", - "dependencies": { - "execa": "^5.1.1", - "find-up": "^5.0.0" - } - }, - "node_modules/@antfu/install-pkg/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@antfu/install-pkg/node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmmirror.com/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/@antfu/install-pkg/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@antfu/install-pkg/node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/@antfu/install-pkg/node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@antfu/install-pkg/node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@antfu/install-pkg/node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/@antfu/utils": { - "version": "0.7.6", - "resolved": "https://registry.npmmirror.com/@antfu/utils/-/utils-0.7.6.tgz", - "integrity": "sha512-pvFiLP2BeOKA/ZOS6jxx4XhKzdVLHDhGlFEaZ2flWWYf2xOqVniqpk38I04DFRyz+L0ASggl7SkItTc+ZLju4w==" - }, - "node_modules/@babel/code-frame": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.23.5.tgz", - "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", - "dependencies": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.23.5.tgz", - "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/core/-/core-7.23.5.tgz", - "integrity": "sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==", - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.5", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helpers": "^7.23.5", - "@babel/parser": "^7.23.5", - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.5", - "@babel/types": "^7.23.5", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/generator": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/generator/-/generator-7.23.5.tgz", - "integrity": "sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA==", - "dependencies": { - "@babel/types": "^7.23.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.22.15", - "resolved": "https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", - "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", - "dependencies": { - "@babel/compat-data": "^7.22.9", - "@babel/helper-validator-option": "^7.22.15", - "browserslist": "^4.21.9", - "lru-cache": "^5.1.1", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.5.tgz", - "integrity": "sha512-QELlRWxSpgdwdJzSJn4WAhKC+hvw/AtHbbrIoncKHkhKKR/luAlKkgBDcri1EzWAo8f8VvYVryEHN4tax/V67A==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-member-expression-to-functions": "^7.23.0", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.20", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.22.20", - "resolved": "https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", - "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.23.0", - "resolved": "https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", - "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", - "dependencies": { - "@babel/template": "^7.22.15", - "@babel/types": "^7.23.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.23.0", - "resolved": "https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", - "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", - "dependencies": { - "@babel/types": "^7.23.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.22.15", - "resolved": "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", - "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", - "dependencies": { - "@babel/types": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.23.3", - "resolved": "https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", - "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/helper-validator-identifier": "^7.22.20" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmmirror.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", - "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.22.5", - "resolved": "https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", - "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.22.20", - "resolved": "https://registry.npmmirror.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz", - "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-member-expression-to-functions": "^7.22.15", - "@babel/helper-optimise-call-expression": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", - "resolved": "https://registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", - "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.6", - "resolved": "https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", - "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.23.4", - "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", - "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", - "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/helpers/-/helpers-7.23.5.tgz", - "integrity": "sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==", - "dependencies": { - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.5", - "@babel/types": "^7.23.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.23.4", - "resolved": "https://registry.npmmirror.com/@babel/highlight/-/highlight-7.23.4.tgz", - "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", - "dependencies": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.23.5.tgz", - "integrity": "sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ==", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.23.3", - "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", - "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.23.3", - "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", - "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.23.3", - "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz", - "integrity": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==", - "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-typescript": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.5.tgz", - "integrity": "sha512-2fMkXEJkrmwgu2Bsv1Saxgj30IXZdJ+84lQcKKI7sm719oXs0BBw2ZENKdJdR1PjWndgLCEBNXJOri0fk7RYQA==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.23.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-typescript": "^7.23.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-typescript": { - "version": "7.23.3", - "resolved": "https://registry.npmmirror.com/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz", - "integrity": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.15", - "@babel/plugin-syntax-jsx": "^7.23.3", - "@babel/plugin-transform-modules-commonjs": "^7.23.3", - "@babel/plugin-transform-typescript": "^7.23.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/standalone": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/standalone/-/standalone-7.23.5.tgz", - "integrity": "sha512-4bqgawmyDPu+9gQhZOKh1ftCUa6BAT0KztElMcWAJgOgQJRNhmGVA0M0McedEqvGi7SbfiBBvlH13Jc47P919A==", - "optional": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/template": { - "version": "7.22.15", - "resolved": "https://registry.npmmirror.com/@babel/template/-/template-7.22.15.tgz", - "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", - "dependencies": { - "@babel/code-frame": "^7.22.13", - "@babel/parser": "^7.22.15", - "@babel/types": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/traverse/-/traverse-7.23.5.tgz", - "integrity": "sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==", - "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.23.5", - "@babel/types": "^7.23.5", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/types": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.23.5.tgz", - "integrity": "sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w==", - "dependencies": { - "@babel/helper-string-parser": "^7.23.4", - "@babel/helper-validator-identifier": "^7.22.20", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@braintree/sanitize-url": { - "version": "6.0.4", - "resolved": "https://registry.npmmirror.com/@braintree/sanitize-url/-/sanitize-url-6.0.4.tgz", - "integrity": "sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==" - }, - "node_modules/@drauu/core": { - "version": "0.3.7", - "resolved": "https://registry.npmmirror.com/@drauu/core/-/core-0.3.7.tgz", - "integrity": "sha512-JFTKEyVoFKHQLfYKqFrcbI2ZnHWfe2/heuDr2JUmLG9pdMJn2Gq1WMK4LuB4L1uZDfJyYjnLQ/OicZ0ePIwI0Q==" - }, - "node_modules/@esbuild/android-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.18.20.tgz", - "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", - "cpu": [ - "arm" - ], - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", - "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.18.20.tgz", - "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", - "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", - "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", - "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", - "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", - "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", - "cpu": [ - "arm" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", - "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", - "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", - "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", - "cpu": [ - "loong64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", - "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", - "cpu": [ - "mips64el" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", - "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", - "cpu": [ - "ppc64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", - "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", - "cpu": [ - "riscv64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", - "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", - "cpu": [ - "s390x" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", - "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", - "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", - "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", - "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", - "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", - "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", - "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@hedgedoc/markdown-it-plugins": { - "version": "2.1.4", - "resolved": "https://registry.npmmirror.com/@hedgedoc/markdown-it-plugins/-/markdown-it-plugins-2.1.4.tgz", - "integrity": "sha512-lJgHOasTvhPiIsx7o019xnUJ3suANVMkTIVlQ3hWiZTUp7feyxfuaRF98/gm9sl8Bg01JjNb2OIjA8l4bck/hQ==", - "dependencies": { - "@mrdrogdrog/optional": "^1.2.1", - "html-entities": "^2.4.0" - }, - "peerDependencies": { - "markdown-it": ">=12" - } - }, - "node_modules/@iconify-json/carbon": { - "version": "1.1.24", - "resolved": "https://registry.npmmirror.com/@iconify-json/carbon/-/carbon-1.1.24.tgz", - "integrity": "sha512-Sx4vj3HfQj3yP6a4QzWc1BymDO5uTOGTHeb5it/xaMa196C6+RegNUv1F+Y1h8AJ2Sv93GMI+PyMH0HyqTHEmg==", - "dependencies": { - "@iconify/types": "*" - } - }, - "node_modules/@iconify-json/ph": { - "version": "1.1.8", - "resolved": "https://registry.npmmirror.com/@iconify-json/ph/-/ph-1.1.8.tgz", - "integrity": "sha512-LtUWsiO/R2Gx4ZqHGJbJYG4XaAFkQ1+rHPQmmQ7NVTaqg7EZibB3ky1aXX12sJ2F+6z8QIpthsw3wRjReEnTig==", - "dependencies": { - "@iconify/types": "*" - } - }, - "node_modules/@iconify/types": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/@iconify/types/-/types-2.0.0.tgz", - "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==" - }, - "node_modules/@iconify/utils": { - "version": "2.1.12", - "resolved": "https://registry.npmmirror.com/@iconify/utils/-/utils-2.1.12.tgz", - "integrity": "sha512-7vf3Uk6H7TKX4QMs2gbg5KR1X9J0NJzKSRNWhMZ+PWN92l0t6Q3tj2ZxLDG07rC3ppWBtTtA4FPmkQphuEmdsg==", - "dependencies": { - "@antfu/install-pkg": "^0.1.1", - "@antfu/utils": "^0.7.5", - "@iconify/types": "^2.0.0", - "debug": "^4.3.4", - "kolorist": "^1.8.0", - "local-pkg": "^0.4.3" - } - }, - "node_modules/@iconify/utils/node_modules/local-pkg": { - "version": "0.4.3", - "resolved": "https://registry.npmmirror.com/local-pkg/-/local-pkg-0.4.3.tgz", - "integrity": "sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==", - "engines": { - "node": ">=14" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", - "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.1", - "resolved": "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", - "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.20", - "resolved": "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", - "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", - "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, - "node_modules/@leichtgewicht/ip-codec": { - "version": "2.0.4", - "resolved": "https://registry.npmmirror.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", - "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" - }, - "node_modules/@lillallol/outline-pdf": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/@lillallol/outline-pdf/-/outline-pdf-4.0.0.tgz", - "integrity": "sha512-tILGNyOdI3ukZfU19TNTDVoS0W1nSPlMxCKAm9FPV4OPL786Ur7e1CRLQZWKJP6uaMQsUqSDBCTzISs6lXWdAQ==", - "dependencies": { - "@lillallol/outline-pdf-data-structure": "^1.0.3", - "pdf-lib": "^1.16.0" - } - }, - "node_modules/@lillallol/outline-pdf-data-structure": { - "version": "1.0.3", - "resolved": "https://registry.npmmirror.com/@lillallol/outline-pdf-data-structure/-/outline-pdf-data-structure-1.0.3.tgz", - "integrity": "sha512-XlK9dERP2n9afkJ23JyJzpmesLgiOHmhqKuGgeytnT+IVGFdAsYl1wLr2o+byXNAN5fveNbc7CCI6RfBsd5FCw==" - }, - "node_modules/@mdit-vue/plugin-component": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/@mdit-vue/plugin-component/-/plugin-component-1.0.0.tgz", - "integrity": "sha512-ZXsJwxkG5yyTHARIYbR74cT4AZ0SfMokFFjiHYCbypHIeYWgJhso4+CZ8+3V9EWFG3EHlGoKNGqKp9chHnqntQ==", - "dependencies": { - "@types/markdown-it": "^13.0.1", - "markdown-it": "^13.0.1" - } - }, - "node_modules/@mdit-vue/plugin-frontmatter": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/@mdit-vue/plugin-frontmatter/-/plugin-frontmatter-1.0.0.tgz", - "integrity": "sha512-MMA7Ny+YPZA7eDOY1t4E+rKuEWO39mzDdP/M68fKdXJU6VfcGkPr7gnpnJfW2QBJ5qIvMrK/3lDAA2JBy5TfpA==", - "dependencies": { - "@mdit-vue/types": "1.0.0", - "@types/markdown-it": "^13.0.1", - "gray-matter": "^4.0.3", - "markdown-it": "^13.0.1" - } - }, - "node_modules/@mdit-vue/types": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/@mdit-vue/types/-/types-1.0.0.tgz", - "integrity": "sha512-xeF5+sHLzRNF7plbksywKCph4qli20l72of2fMlZQQ7RECvXYrRkE9+bjRFQCyULC7B8ydUYbpbkux5xJlVWyw==" - }, - "node_modules/@mrdrogdrog/optional": { - "version": "1.2.1", - "resolved": "https://registry.npmmirror.com/@mrdrogdrog/optional/-/optional-1.2.1.tgz", - "integrity": "sha512-8JdrQautBZ+nxTC29Sp7z/plyONdgPDjCbFTf6Iih5spZKW18EmP2D4zd48wG9Nn0Qpe8f0p9f8/94SlZFl4tQ==" - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nuxt/kit": { - "version": "3.8.2", - "resolved": "https://registry.npmmirror.com/@nuxt/kit/-/kit-3.8.2.tgz", - "integrity": "sha512-LrXCm8hAkw+zpX8teUSD/LqXRarlXjbRiYxDkaqw739JSHFReWzBFgJbojsJqL4h1XIEScDGGOWiEgO4QO1sMg==", - "optional": true, - "dependencies": { - "@nuxt/schema": "3.8.2", - "c12": "^1.5.1", - "consola": "^3.2.3", - "defu": "^6.1.3", - "globby": "^14.0.0", - "hash-sum": "^2.0.0", - "ignore": "^5.3.0", - "jiti": "^1.21.0", - "knitwork": "^1.0.0", - "mlly": "^1.4.2", - "pathe": "^1.1.1", - "pkg-types": "^1.0.3", - "scule": "^1.1.0", - "semver": "^7.5.4", - "ufo": "^1.3.2", - "unctx": "^2.3.1", - "unimport": "^3.5.0", - "untyped": "^1.4.0" - }, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/kit/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "optional": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nuxt/kit/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "optional": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nuxt/kit/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "optional": true - }, - "node_modules/@nuxt/schema": { - "version": "3.8.2", - "resolved": "https://registry.npmmirror.com/@nuxt/schema/-/schema-3.8.2.tgz", - "integrity": "sha512-AMpysQ/wHK2sOujLShqYdC4OSj/S3fFJGjhYXqA2g6dgmz+FNQWJRG/ie5sI9r2EX9Ela1wt0GN1jZR3wYNE8Q==", - "optional": true, - "dependencies": { - "@nuxt/ui-templates": "^1.3.1", - "consola": "^3.2.3", - "defu": "^6.1.3", - "hookable": "^5.5.3", - "pathe": "^1.1.1", - "pkg-types": "^1.0.3", - "scule": "^1.1.0", - "std-env": "^3.5.0", - "ufo": "^1.3.2", - "unimport": "^3.5.0", - "untyped": "^1.4.0" - }, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/ui-templates": { - "version": "1.3.1", - "resolved": "https://registry.npmmirror.com/@nuxt/ui-templates/-/ui-templates-1.3.1.tgz", - "integrity": "sha512-5gc02Pu1HycOVUWJ8aYsWeeXcSTPe8iX8+KIrhyEtEoOSkY0eMBuo0ssljB8wALuEmepv31DlYe5gpiRwkjESA==", - "optional": true - }, - "node_modules/@pdf-lib/standard-fonts": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/@pdf-lib/standard-fonts/-/standard-fonts-1.0.0.tgz", - "integrity": "sha512-hU30BK9IUN/su0Mn9VdlVKsWBS6GyhVfqjwl1FjZN4TxP6cCw0jP2w7V3Hf5uX7M0AZJ16vey9yE0ny7Sa59ZA==", - "dependencies": { - "pako": "^1.0.6" - } - }, - "node_modules/@pdf-lib/upng": { - "version": "1.0.1", - "resolved": "https://registry.npmmirror.com/@pdf-lib/upng/-/upng-1.0.1.tgz", - "integrity": "sha512-dQK2FUMQtowVP00mtIksrlZhdFXQZPC+taih1q4CvPZ5vqdxR/LKBaFg0oAfzd1GlHZXXSPdQfzQnt+ViGvEIQ==", - "dependencies": { - "pako": "^1.0.10" - } - }, - "node_modules/@polka/url": { - "version": "1.0.0-next.23", - "resolved": "https://registry.npmmirror.com/@polka/url/-/url-1.0.0-next.23.tgz", - "integrity": "sha512-C16M+IYz0rgRhWZdCmK+h58JMv8vijAA61gmz2rspCSwKwzBebpdcsiUmwrtJRdphuY30i6BSLEOP8ppbNLyLg==" - }, - "node_modules/@rollup/pluginutils": { - "version": "5.1.0", - "resolved": "https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-5.1.0.tgz", - "integrity": "sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==", - "dependencies": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup/pluginutils/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "node_modules/@sindresorhus/is": { - "version": "5.6.0", - "resolved": "https://registry.npmmirror.com/@sindresorhus/is/-/is-5.6.0.tgz", - "integrity": "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==", - "engines": { - "node": ">=14.16" - } - }, - "node_modules/@sindresorhus/merge-streams": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/@sindresorhus/merge-streams/-/merge-streams-1.0.0.tgz", - "integrity": "sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==", - "optional": true, - "engines": { - "node": ">=18" - } - }, - "node_modules/@slidev/cli": { - "version": "0.44.0", - "resolved": "https://registry.npmmirror.com/@slidev/cli/-/cli-0.44.0.tgz", - "integrity": "sha512-c+wgDo634nopJyB5kCgVNgIs/WH2B4rRJZTiKO1X59uF9xPVrLMgKa6I91jad7eBDGUr6Di/3BkUfbxfu2zjrw==", - "dependencies": { - "@antfu/utils": "^0.7.6", - "@hedgedoc/markdown-it-plugins": "^2.1.4", - "@iconify-json/carbon": "^1.1.21", - "@iconify-json/ph": "^1.1.6", - "@lillallol/outline-pdf": "^4.0.0", - "@mrdrogdrog/optional": "^1.2.1", - "@slidev/client": "0.44.0", - "@slidev/parser": "0.44.0", - "@slidev/types": "0.44.0", - "@unocss/extractor-mdc": "^0.57.4", - "@unocss/reset": "^0.57.4", - "@vitejs/plugin-vue": "^4.4.1", - "@vitejs/plugin-vue-jsx": "^3.0.2", - "@windicss/config": "^1.9.1", - "cli-progress": "^3.12.0", - "codemirror": "^5.65.5", - "connect": "^3.7.0", - "debug": "^4.3.4", - "fast-glob": "^3.3.2", - "fs-extra": "^11.1.1", - "get-port-please": "^3.1.1", - "global-directory": "^4.0.1", - "htmlparser2": "^9.0.0", - "import-from": "^4.0.0", - "is-installed-globally": "^1.0.0", - "jiti": "^1.21.0", - "js-base64": "^3.7.5", - "katex": "^0.16.9", - "kolorist": "^1.8.0", - "localtunnel": "^2.0.2", - "markdown-it": "^13.0.2", - "markdown-it-footnote": "^3.0.3", - "markdown-it-link-attributes": "^4.0.1", - "markdown-it-mdc": "^0.1.4", - "monaco-editor": "^0.37.1", - "nanoid": "^5.0.3", - "open": "^9.1.0", - "pdf-lib": "^1.17.1", - "plantuml-encoder": "^1.4.0", - "postcss-nested": "^6.0.1", - "prismjs": "^1.29.0", - "prompts": "^2.4.2", - "public-ip": "^6.0.1", - "resolve": "^1.22.8", - "resolve-from": "^5.0.0", - "resolve-global": "^2.0.0", - "shiki": "npm:shikiji-compat@^0.6.13", - "unocss": "^0.57.4", - "unplugin-icons": "^0.17.4", - "unplugin-vue-components": "^0.25.2", - "unplugin-vue-markdown": "^0.25.1", - "uqr": "^0.1.2", - "vite": "^4.5.0", - "vite-plugin-inspect": "^0.7.42", - "vite-plugin-remote-assets": "^0.3.2", - "vite-plugin-static-copy": "^0.17.0", - "vite-plugin-vue-server-ref": "^0.3.4", - "vite-plugin-windicss": "^1.9.1", - "vitefu": "^0.2.5", - "vue": "^3.3.8", - "windicss": "^3.5.6", - "yargs": "^17.7.2" - }, - "bin": { - "slidev": "bin/slidev.mjs" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "playwright-chromium": "^1.10.0" - }, - "peerDependenciesMeta": { - "playwright-chromium": { - "optional": true - } - } - }, - "node_modules/@slidev/client": { - "version": "0.44.0", - "resolved": "https://registry.npmmirror.com/@slidev/client/-/client-0.44.0.tgz", - "integrity": "sha512-zEYUBWhAwttK8p+CatT7tXdzmYg+kxfkcL6jriGrrzp29O6pw+RDaFTj/RoaCUOPNuBbx9HI3yv8WZXiVx4SEg==", - "dependencies": { - "@antfu/utils": "^0.7.6", - "@slidev/parser": "0.44.0", - "@slidev/types": "0.44.0", - "@unhead/vue": "^1.8.4", - "@unocss/reset": "^0.57.4", - "@vueuse/core": "^10.6.1", - "@vueuse/math": "^10.6.1", - "@vueuse/motion": "^2.0.0", - "codemirror": "^5.65.5", - "defu": "^6.1.3", - "drauu": "^0.3.7", - "file-saver": "^2.0.5", - "fuse.js": "^7.0.0", - "js-base64": "^3.7.5", - "js-yaml": "^4.1.0", - "katex": "^0.16.9", - "mermaid": "^10.6.1", - "monaco-editor": "^0.37.1", - "nanoid": "^5.0.3", - "prettier": "^3.1.0", - "recordrtc": "^5.6.2", - "resolve": "^1.22.8", - "unocss": "^0.57.4", - "vite-plugin-windicss": "^1.9.1", - "vue": "^3.3.8", - "vue-router": "^4.2.5", - "vue-starport": "^0.4.0", - "windicss": "^3.5.6" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@slidev/parser": { - "version": "0.44.0", - "resolved": "https://registry.npmmirror.com/@slidev/parser/-/parser-0.44.0.tgz", - "integrity": "sha512-u2Aj5LrlKM+bgz/AooHtpHJG0kSX0jNr/S60Zh3anbfcRZ8Nxx1h4CfNbDBqrYyf83D3rVnkYMvc3PtUCR8rQw==", - "dependencies": { - "@slidev/types": "0.44.0", - "js-yaml": "^4.1.0" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@slidev/theme-default": { - "version": "0.21.2", - "resolved": "https://registry.npmmirror.com/@slidev/theme-default/-/theme-default-0.21.2.tgz", - "integrity": "sha512-neUucFs2YrRZZd73QwvLTyRG/o1nerDFUR5t8YAmXVLTMzWfY71flQ6aAhjYf+WjsozYsOHcxi/pZtIzZ4VhTQ==", - "dependencies": { - "@slidev/types": "^0.22.7", - "codemirror-theme-vars": "^0.1.1", - "prism-theme-vars": "^0.2.2", - "theme-vitesse": "^0.1.12" - }, - "engines": { - "node": ">=14.0.0", - "slidev": ">=0.19.2" - } - }, - "node_modules/@slidev/theme-default/node_modules/@slidev/types": { - "version": "0.22.7", - "resolved": "https://registry.npmmirror.com/@slidev/types/-/types-0.22.7.tgz", - "integrity": "sha512-mCVKQbcGTv6d6n9aHpYNp5U04HF+FMbpY083vqpJ6Folc805BB1Am02eubaW0J6nM+dSOu2dDgPY+kIjs75sAQ==", - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@slidev/theme-seriph": { - "version": "0.21.3", - "resolved": "https://registry.npmmirror.com/@slidev/theme-seriph/-/theme-seriph-0.21.3.tgz", - "integrity": "sha512-cLya6O4hmcLHUhloCMPPoKMLX27Q+8M8pRS82BSsLXVeXTXrlpc3l3glx5VB738p+NQr7FgqFN6H2CXQRoVv9Q==", - "dependencies": { - "@slidev/types": "^0.22.7", - "codemirror-theme-vars": "^0.1.1", - "prism-theme-vars": "^0.2.2", - "theme-vitesse": "^0.1.12" - }, - "engines": { - "node": ">=14.0.0", - "slidev": ">=0.19.3" - } - }, - "node_modules/@slidev/theme-seriph/node_modules/@slidev/types": { - "version": "0.22.7", - "resolved": "https://registry.npmmirror.com/@slidev/types/-/types-0.22.7.tgz", - "integrity": "sha512-mCVKQbcGTv6d6n9aHpYNp5U04HF+FMbpY083vqpJ6Folc805BB1Am02eubaW0J6nM+dSOu2dDgPY+kIjs75sAQ==", - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@slidev/types": { - "version": "0.44.0", - "resolved": "https://registry.npmmirror.com/@slidev/types/-/types-0.44.0.tgz", - "integrity": "sha512-hIRSdOq0IivEy5s0Rg7ZRH5+9n9jWSelVLGx9rzJYUBbZacMRoeQbgpl0NEW5qsv4fC0cHnyWw+yFxy3IduqDQ==", - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@szmarczak/http-timer": { - "version": "5.0.1", - "resolved": "https://registry.npmmirror.com/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", - "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==", - "dependencies": { - "defer-to-connect": "^2.0.1" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/@types/d3-scale": { - "version": "4.0.8", - "resolved": "https://registry.npmmirror.com/@types/d3-scale/-/d3-scale-4.0.8.tgz", - "integrity": "sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==", - "dependencies": { - "@types/d3-time": "*" - } - }, - "node_modules/@types/d3-scale-chromatic": { - "version": "3.0.3", - "resolved": "https://registry.npmmirror.com/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.0.3.tgz", - "integrity": "sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==" - }, - "node_modules/@types/d3-time": { - "version": "3.0.3", - "resolved": "https://registry.npmmirror.com/@types/d3-time/-/d3-time-3.0.3.tgz", - "integrity": "sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==" - }, - "node_modules/@types/debug": { - "version": "4.1.12", - "resolved": "https://registry.npmmirror.com/@types/debug/-/debug-4.1.12.tgz", - "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", - "dependencies": { - "@types/ms": "*" - } - }, - "node_modules/@types/estree": { - "version": "1.0.5", - "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.5.tgz", - "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" - }, - "node_modules/@types/hast": { - "version": "3.0.3", - "resolved": "https://registry.npmmirror.com/@types/hast/-/hast-3.0.3.tgz", - "integrity": "sha512-2fYGlaDy/qyLlhidX42wAH0KBi2TCjKMH8CHmBXgRlJ3Y+OXTiqsPQ6IWarZKwF1JoUcAJdPogv1d4b0COTpmQ==", - "dependencies": { - "@types/unist": "*" - } - }, - "node_modules/@types/http-cache-semantics": { - "version": "4.0.4", - "resolved": "https://registry.npmmirror.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", - "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" - }, - "node_modules/@types/linkify-it": { - "version": "3.0.5", - "resolved": "https://registry.npmmirror.com/@types/linkify-it/-/linkify-it-3.0.5.tgz", - "integrity": "sha512-yg6E+u0/+Zjva+buc3EIb+29XEg4wltq7cSmd4Uc2EE/1nUVmxyzpX6gUXD0V8jIrG0r7YeOGVIbYRkxeooCtw==" - }, - "node_modules/@types/markdown-it": { - "version": "13.0.7", - "resolved": "https://registry.npmmirror.com/@types/markdown-it/-/markdown-it-13.0.7.tgz", - "integrity": "sha512-U/CBi2YUUcTHBt5tjO2r5QV/x0Po6nsYwQU4Y04fBS6vfoImaiZ6f8bi3CjTCxBPQSO1LMyUqkByzi8AidyxfA==", - "dependencies": { - "@types/linkify-it": "*", - "@types/mdurl": "*" - } - }, - "node_modules/@types/mdast": { - "version": "3.0.15", - "resolved": "https://registry.npmmirror.com/@types/mdast/-/mdast-3.0.15.tgz", - "integrity": "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==", - "dependencies": { - "@types/unist": "^2" - } - }, - "node_modules/@types/mdurl": { - "version": "1.0.5", - "resolved": "https://registry.npmmirror.com/@types/mdurl/-/mdurl-1.0.5.tgz", - "integrity": "sha512-6L6VymKTzYSrEf4Nev4Xa1LCHKrlTlYCBMTlQKFuddo1CvQcE52I0mwfOJayueUC7MJuXOeHTcIU683lzd0cUA==" - }, - "node_modules/@types/ms": { - "version": "0.7.34", - "resolved": "https://registry.npmmirror.com/@types/ms/-/ms-0.7.34.tgz", - "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==" - }, - "node_modules/@types/unist": { - "version": "2.0.10", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-2.0.10.tgz", - "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==" - }, - "node_modules/@types/web-bluetooth": { - "version": "0.0.20", - "resolved": "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz", - "integrity": "sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==" - }, - "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "resolved": "https://registry.npmmirror.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==" - }, - "node_modules/@unhead/dom": { - "version": "1.8.8", - "resolved": "https://registry.npmmirror.com/@unhead/dom/-/dom-1.8.8.tgz", - "integrity": "sha512-KRtn+tvA83lEtKrtZD85XmqW04fcytVuNKLUpPBzhJvsxB3v7gozw0nu46e3EpbO3TGJjLlLd6brNHQY6WLWfA==", - "dependencies": { - "@unhead/schema": "1.8.8", - "@unhead/shared": "1.8.8" - } - }, - "node_modules/@unhead/schema": { - "version": "1.8.8", - "resolved": "https://registry.npmmirror.com/@unhead/schema/-/schema-1.8.8.tgz", - "integrity": "sha512-xuhNW4osVNLW1yQSbdInZ8YGiXVTi1gjF8rK1E4VnODpWLg8XOq0OpoCbdIlCH4X4A0Ee0UQGRyzkuuVZlrSsQ==", - "dependencies": { - "hookable": "^5.5.3", - "zhead": "^2.2.4" - } - }, - "node_modules/@unhead/shared": { - "version": "1.8.8", - "resolved": "https://registry.npmmirror.com/@unhead/shared/-/shared-1.8.8.tgz", - "integrity": "sha512-LoIJUDgmOzxoRHSIf29w/wc+IzKN2XvGiQC2dZZrYoTjOOzodf75609PEW5bhx2aHio38k9F+6BnD3KDiJ7IIg==", - "dependencies": { - "@unhead/schema": "1.8.8" - } - }, - "node_modules/@unhead/vue": { - "version": "1.8.8", - "resolved": "https://registry.npmmirror.com/@unhead/vue/-/vue-1.8.8.tgz", - "integrity": "sha512-isHpVnSSE5SP+ObsZG/i+Jq9tAQ2u1AbGrktXKmL7P5FRxwPjhATYnJFdGpxXeXfuaFgRFKzGKs29xo4MMVODw==", - "dependencies": { - "@unhead/schema": "1.8.8", - "@unhead/shared": "1.8.8", - "hookable": "^5.5.3", - "unhead": "1.8.8" - }, - "peerDependencies": { - "vue": ">=2.7 || >=3" - } - }, - "node_modules/@unocss/astro": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/astro/-/astro-0.57.7.tgz", - "integrity": "sha512-X4KSBdrAADdtS4x7xz02b016xpRDt9mD/d/oq23HyZAZ+sZc4oZs8el9MLSUJgu2okdWzAE62lRRV/oc4HWI1A==", - "dependencies": { - "@unocss/core": "0.57.7", - "@unocss/reset": "0.57.7", - "@unocss/vite": "0.57.7" - }, - "peerDependencies": { - "vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0" - }, - "peerDependenciesMeta": { - "vite": { - "optional": true - } - } - }, - "node_modules/@unocss/cli": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/cli/-/cli-0.57.7.tgz", - "integrity": "sha512-FZHTTBYyibySpBEPbA/ilDzI4v4Uy/bROItEYogZkpXNoCLzlclX+UcuFBXXLt6VFJk4WjLNFLRSQlVcCUUOLA==", - "dependencies": { - "@ampproject/remapping": "^2.2.1", - "@rollup/pluginutils": "^5.0.5", - "@unocss/config": "0.57.7", - "@unocss/core": "0.57.7", - "@unocss/preset-uno": "0.57.7", - "cac": "^6.7.14", - "chokidar": "^3.5.3", - "colorette": "^2.0.20", - "consola": "^3.2.3", - "fast-glob": "^3.3.2", - "magic-string": "^0.30.5", - "pathe": "^1.1.1", - "perfect-debounce": "^1.0.0" - }, - "bin": { - "unocss": "bin/unocss.mjs" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@unocss/config": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/config/-/config-0.57.7.tgz", - "integrity": "sha512-UG8G9orWEdk/vyDvGUToXYn/RZy/Qjpx66pLsaf5wQK37hkYsBoReAU5v8Ia/6PL1ueJlkcNXLaNpN6/yVoJvg==", - "dependencies": { - "@unocss/core": "0.57.7", - "unconfig": "^0.3.11" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@unocss/core": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/core/-/core-0.57.7.tgz", - "integrity": "sha512-1d36M0CV3yC80J0pqOa5rH1BX6g2iZdtKmIb3oSBN4AWnMCSrrJEPBrUikyMq2TEQTrYWJIVDzv5A9hBUat3TA==" - }, - "node_modules/@unocss/extractor-arbitrary-variants": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/extractor-arbitrary-variants/-/extractor-arbitrary-variants-0.57.7.tgz", - "integrity": "sha512-JdyhPlsgS0x4zoF8WYXDcusPcpU4ysE6Rkkit4a9+xUZEvg7vy7InH6PQ8dL8B9oY7pbxF7G6eFguUDpv9xx4Q==", - "dependencies": { - "@unocss/core": "0.57.7" - } - }, - "node_modules/@unocss/extractor-mdc": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/extractor-mdc/-/extractor-mdc-0.57.7.tgz", - "integrity": "sha512-OJUCmFYvDUfrwv8NCE1KguYlhevOKx/BW34VukUSkf9Q4sRetKlkVt7pwZAaVoWjyIqkSzpD+b73TjqGHeSMxg==" - }, - "node_modules/@unocss/inspector": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/inspector/-/inspector-0.57.7.tgz", - "integrity": "sha512-b9ckqn5aRsmhTdXJ5cPMKDKuNRe+825M+s9NbYcTjENnP6ellUFZo91sYF5S+LeATmU12TcwJZ83NChF4HpBSA==", - "dependencies": { - "@unocss/core": "0.57.7", - "@unocss/rule-utils": "0.57.7", - "gzip-size": "^6.0.0", - "sirv": "^2.0.3" - } - }, - "node_modules/@unocss/postcss": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/postcss/-/postcss-0.57.7.tgz", - "integrity": "sha512-13c9p5ecTvYa6inDky++8dlVuxQ0JuKaKW5A0NW3XuJ3Uz1t8Pguji+NAUddfTYEFF6GHu47L3Aac7vpI8pMcQ==", - "dependencies": { - "@unocss/config": "0.57.7", - "@unocss/core": "0.57.7", - "@unocss/rule-utils": "0.57.7", - "css-tree": "^2.3.1", - "fast-glob": "^3.3.2", - "magic-string": "^0.30.5", - "postcss": "^8.4.31" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "postcss": "^8.4.21" - } - }, - "node_modules/@unocss/preset-attributify": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/preset-attributify/-/preset-attributify-0.57.7.tgz", - "integrity": "sha512-vUqfwUokNHt1FJXIuVyj2Xze9LfJdLAy62h79lNyyEISZmiDF4a4hWTKLBe0d6Kyfr33DyXMmkLp57t5YW0V3A==", - "dependencies": { - "@unocss/core": "0.57.7" - } - }, - "node_modules/@unocss/preset-icons": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/preset-icons/-/preset-icons-0.57.7.tgz", - "integrity": "sha512-s3AelKCS9CL1ArP1GanYv0XxxPrcFi+XOuQoQCwCRHDo2CiBEq3fLLMIhaUCFEWGtIy7o7wLeL5BRjMvJ2QnMg==", - "dependencies": { - "@iconify/utils": "^2.1.11", - "@unocss/core": "0.57.7", - "ofetch": "^1.3.3" - } - }, - "node_modules/@unocss/preset-mini": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/preset-mini/-/preset-mini-0.57.7.tgz", - "integrity": "sha512-YPmmh+ZIg4J7/nPMfvzD1tOfUFD+8KEFXX9ISRteooflYeosn2YytGW66d/sq97AZos9N630FJ//DvPD2wfGwA==", - "dependencies": { - "@unocss/core": "0.57.7", - "@unocss/extractor-arbitrary-variants": "0.57.7", - "@unocss/rule-utils": "0.57.7" - } - }, - "node_modules/@unocss/preset-tagify": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/preset-tagify/-/preset-tagify-0.57.7.tgz", - "integrity": "sha512-va25pTJ5OtbqCHFBIj8myVk0PwuSucUqTx840r/YSHka0P9th6UGRS1LU30OUgjgr7FhLaWXtJMN4gkCUtQSoA==", - "dependencies": { - "@unocss/core": "0.57.7" - } - }, - "node_modules/@unocss/preset-typography": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/preset-typography/-/preset-typography-0.57.7.tgz", - "integrity": "sha512-1QuoLhqHVRs+baaVvfH54JxmJhVuBp5jdVw3HCN/vXs1CSnq2Rm/C/+PahcnQg/KLtoW6MgK5S+/hU9TCxGRVQ==", - "dependencies": { - "@unocss/core": "0.57.7", - "@unocss/preset-mini": "0.57.7" - } - }, - "node_modules/@unocss/preset-uno": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/preset-uno/-/preset-uno-0.57.7.tgz", - "integrity": "sha512-yRKvRBaPLmDSUZet5WnV1WNb3BV4EFwvB1Zbvlc3lyVp6uCksP/SYlxuUwht7JefOrfiY2sGugoBxZTyGmj/kQ==", - "dependencies": { - "@unocss/core": "0.57.7", - "@unocss/preset-mini": "0.57.7", - "@unocss/preset-wind": "0.57.7", - "@unocss/rule-utils": "0.57.7" - } - }, - "node_modules/@unocss/preset-web-fonts": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/preset-web-fonts/-/preset-web-fonts-0.57.7.tgz", - "integrity": "sha512-wBPej5GeYb0D/xjMdMmpH6k/3Oe1ujx9DJys2/gtvl/rsBZpSkoWcnl+8Z3bAhooDnwL2gkJCIlpuDiRNtKvGA==", - "dependencies": { - "@unocss/core": "0.57.7", - "ofetch": "^1.3.3" - } - }, - "node_modules/@unocss/preset-wind": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/preset-wind/-/preset-wind-0.57.7.tgz", - "integrity": "sha512-olQ6+w0fQ84eEC1t7SF4vJyKcyawkDWSRF5YufOqeQZL3zjqBzMQi+3PUlKCstrDO1DNZ3qdcwg1vPHRmuX9VA==", - "dependencies": { - "@unocss/core": "0.57.7", - "@unocss/preset-mini": "0.57.7", - "@unocss/rule-utils": "0.57.7" - } - }, - "node_modules/@unocss/reset": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/reset/-/reset-0.57.7.tgz", - "integrity": "sha512-oN9024WVrMewGbornnAPIpzHeKPIfVmZ5IsZGilWR761TnI5jTjHUkswsVoFx7tZdpCN2/bqS3JK/Ah0aot3NQ==" - }, - "node_modules/@unocss/rule-utils": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/rule-utils/-/rule-utils-0.57.7.tgz", - "integrity": "sha512-gLqbKTIetvRynLkhonu1znr+bmWnw+Cl3dFVNgZPGjiqGHd78PGS0gXQKvzuyN0iO2ADub1A7GlCWs826iEHjA==", - "dependencies": { - "@unocss/core": "^0.57.7", - "magic-string": "^0.30.5" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@unocss/scope": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/scope/-/scope-0.57.7.tgz", - "integrity": "sha512-pqWbKXcrTJ2ovVRTYFLnUX5ryEhdSXp7YfyBQT3zLtQb4nQ2XZcLTvGdWo7F+9jZ09yP7NdHscBLkeWgx+mVgw==" - }, - "node_modules/@unocss/transformer-attributify-jsx": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/transformer-attributify-jsx/-/transformer-attributify-jsx-0.57.7.tgz", - "integrity": "sha512-FpCJM+jDN4Kyp7mMMN41tTWEq6pHKAXAyJoW1GwhYw6lLu9cwyXnne6t7rQ11EPU95Z2cIEMpIJo8reDkDaiPg==", - "dependencies": { - "@unocss/core": "0.57.7" - } - }, - "node_modules/@unocss/transformer-attributify-jsx-babel": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/transformer-attributify-jsx-babel/-/transformer-attributify-jsx-babel-0.57.7.tgz", - "integrity": "sha512-CqxTiT5ikOC6R/HNyBcCIVYUfeazqRbsw7X4hYKmGHO7QsnaKQFWZTpj+sSDRh3oHq+IDtcD6KB2anTEffEQNA==", - "dependencies": { - "@babel/core": "^7.23.3", - "@babel/plugin-syntax-jsx": "^7.23.3", - "@babel/preset-typescript": "^7.23.3", - "@unocss/core": "0.57.7" - } - }, - "node_modules/@unocss/transformer-compile-class": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/transformer-compile-class/-/transformer-compile-class-0.57.7.tgz", - "integrity": "sha512-D+PyD7IOXUm/lzzoCt/yon0Gh1fIK9iKeSBvB6/BREF/ejscNzQ/ia0Pq0pid2cVvOULCSo0z2sO9zljsQtv9A==", - "dependencies": { - "@unocss/core": "0.57.7" - } - }, - "node_modules/@unocss/transformer-directives": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/transformer-directives/-/transformer-directives-0.57.7.tgz", - "integrity": "sha512-m0n7WqU3o+1Vyh1uaeU7H4u5gJqakkRqZqTq3MR3xLCSVfORJ/5XO8r+t6VUkJtaLxcIrtYE2geAbwmGV3zSKA==", - "dependencies": { - "@unocss/core": "0.57.7", - "@unocss/rule-utils": "0.57.7", - "css-tree": "^2.3.1" - } - }, - "node_modules/@unocss/transformer-variant-group": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/transformer-variant-group/-/transformer-variant-group-0.57.7.tgz", - "integrity": "sha512-O5L5Za0IZtOWd2R66vy0k07pLlB9rCIybmUommUqKWpvd1n/pg8czQ5EkmNDprINvinKObVlGVuY4Uq/JsLM0A==", - "dependencies": { - "@unocss/core": "0.57.7" - } - }, - "node_modules/@unocss/vite": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/vite/-/vite-0.57.7.tgz", - "integrity": "sha512-SbJrRgfc35MmgMBlHaEK4YpJVD2B0bmxH9PVgHRuDae/hOEOG0VqNP0f2ijJtX9HG3jOpQVlbEoGnUo8jsZtsw==", - "dependencies": { - "@ampproject/remapping": "^2.2.1", - "@rollup/pluginutils": "^5.0.5", - "@unocss/config": "0.57.7", - "@unocss/core": "0.57.7", - "@unocss/inspector": "0.57.7", - "@unocss/scope": "0.57.7", - "@unocss/transformer-directives": "0.57.7", - "chokidar": "^3.5.3", - "fast-glob": "^3.3.2", - "magic-string": "^0.30.5" - }, - "peerDependencies": { - "vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0" - } - }, - "node_modules/@vitejs/plugin-vue": { - "version": "4.5.1", - "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-4.5.1.tgz", - "integrity": "sha512-DaUzYFr+2UGDG7VSSdShKa9sIWYBa1LL8KC0MNOf2H5LjcTPjob0x8LbkqXWmAtbANJCkpiQTj66UVcQkN2s3g==", - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "peerDependencies": { - "vite": "^4.0.0 || ^5.0.0", - "vue": "^3.2.25" - } - }, - "node_modules/@vitejs/plugin-vue-jsx": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-3.1.0.tgz", - "integrity": "sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==", - "dependencies": { - "@babel/core": "^7.23.3", - "@babel/plugin-transform-typescript": "^7.23.3", - "@vue/babel-plugin-jsx": "^1.1.5" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "peerDependencies": { - "vite": "^4.0.0 || ^5.0.0", - "vue": "^3.0.0" - } - }, - "node_modules/@vue/babel-helper-vue-transform-on": { - "version": "1.1.5", - "resolved": "https://registry.npmmirror.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.1.5.tgz", - "integrity": "sha512-SgUymFpMoAyWeYWLAY+MkCK3QEROsiUnfaw5zxOVD/M64KQs8D/4oK6Q5omVA2hnvEOE0SCkH2TZxs/jnnUj7w==" - }, - "node_modules/@vue/babel-plugin-jsx": { - "version": "1.1.5", - "resolved": "https://registry.npmmirror.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.1.5.tgz", - "integrity": "sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==", - "dependencies": { - "@babel/helper-module-imports": "^7.22.5", - "@babel/plugin-syntax-jsx": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5", - "@vue/babel-helper-vue-transform-on": "^1.1.5", - "camelcase": "^6.3.0", - "html-tags": "^3.3.1", - "svg-tags": "^1.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@vue/compiler-core": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.9.tgz", - "integrity": "sha512-+/Lf68Vr/nFBA6ol4xOtJrW+BQWv3QWKfRwGSm70jtXwfhZNF4R/eRgyVJYoxFRhdCTk/F6g99BP0ffPgZihfQ==", - "dependencies": { - "@babel/parser": "^7.23.3", - "@vue/shared": "3.3.9", - "estree-walker": "^2.0.2", - "source-map-js": "^1.0.2" - } - }, - "node_modules/@vue/compiler-core/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "node_modules/@vue/compiler-dom": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.9.tgz", - "integrity": "sha512-nfWubTtLXuT4iBeDSZ5J3m218MjOy42Vp2pmKVuBKo2/BLcrFUX8nCSr/bKRFiJ32R8qbdnnnBgRn9AdU5v0Sg==", - "dependencies": { - "@vue/compiler-core": "3.3.9", - "@vue/shared": "3.3.9" - } - }, - "node_modules/@vue/compiler-sfc": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.3.9.tgz", - "integrity": "sha512-wy0CNc8z4ihoDzjASCOCsQuzW0A/HP27+0MDSSICMjVIFzk/rFViezkR3dzH+miS2NDEz8ywMdbjO5ylhOLI2A==", - "dependencies": { - "@babel/parser": "^7.23.3", - "@vue/compiler-core": "3.3.9", - "@vue/compiler-dom": "3.3.9", - "@vue/compiler-ssr": "3.3.9", - "@vue/reactivity-transform": "3.3.9", - "@vue/shared": "3.3.9", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.5", - "postcss": "^8.4.31", - "source-map-js": "^1.0.2" - } - }, - "node_modules/@vue/compiler-sfc/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "node_modules/@vue/compiler-ssr": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.3.9.tgz", - "integrity": "sha512-NO5oobAw78R0G4SODY5A502MGnDNiDjf6qvhn7zD7TJGc8XDeIEw4fg6JU705jZ/YhuokBKz0A5a/FL/XZU73g==", - "dependencies": { - "@vue/compiler-dom": "3.3.9", - "@vue/shared": "3.3.9" - } - }, - "node_modules/@vue/devtools-api": { - "version": "6.5.1", - "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.1.tgz", - "integrity": "sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==" - }, - "node_modules/@vue/reactivity": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.3.9.tgz", - "integrity": "sha512-VmpIqlNp+aYDg2X0xQhJqHx9YguOmz2UxuUJDckBdQCNkipJvfk9yA75woLWElCa0Jtyec3lAAt49GO0izsphw==", - "dependencies": { - "@vue/shared": "3.3.9" - } - }, - "node_modules/@vue/reactivity-transform": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.3.9.tgz", - "integrity": "sha512-HnUFm7Ry6dFa4Lp63DAxTixUp8opMtQr6RxQCpDI1vlh12rkGIeYqMvJtK+IKyEfEOa2I9oCkD1mmsPdaGpdVg==", - "dependencies": { - "@babel/parser": "^7.23.3", - "@vue/compiler-core": "3.3.9", - "@vue/shared": "3.3.9", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.5" - } - }, - "node_modules/@vue/reactivity-transform/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "node_modules/@vue/runtime-core": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.3.9.tgz", - "integrity": "sha512-xxaG9KvPm3GTRuM4ZyU8Tc+pMVzcu6eeoSRQJ9IE7NmCcClW6z4B3Ij6L4EDl80sxe/arTtQ6YmgiO4UZqRc+w==", - "dependencies": { - "@vue/reactivity": "3.3.9", - "@vue/shared": "3.3.9" - } - }, - "node_modules/@vue/runtime-dom": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.3.9.tgz", - "integrity": "sha512-e7LIfcxYSWbV6BK1wQv9qJyxprC75EvSqF/kQKe6bdZEDNValzeRXEVgiX7AHI6hZ59HA4h7WT5CGvm69vzJTQ==", - "dependencies": { - "@vue/runtime-core": "3.3.9", - "@vue/shared": "3.3.9", - "csstype": "^3.1.2" - } - }, - "node_modules/@vue/server-renderer": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.3.9.tgz", - "integrity": "sha512-w0zT/s5l3Oa3ZjtLW88eO4uV6AQFqU8X5GOgzq7SkQQu6vVr+8tfm+OI2kDBplS/W/XgCBuFXiPw6T5EdwXP0A==", - "dependencies": { - "@vue/compiler-ssr": "3.3.9", - "@vue/shared": "3.3.9" - }, - "peerDependencies": { - "vue": "3.3.9" - } - }, - "node_modules/@vue/shared": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.3.9.tgz", - "integrity": "sha512-ZE0VTIR0LmYgeyhurPTpy4KzKsuDyQbMSdM49eKkMnT5X4VfFBLysMzjIZhLEFQYjjOVVfbvUDHckwjDFiO2eA==" - }, - "node_modules/@vueuse/core": { - "version": "10.6.1", - "resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-10.6.1.tgz", - "integrity": "sha512-Pc26IJbqgC9VG1u6VY/xrXXfxD33hnvxBnKrLlA2LJlyHII+BSrRoTPJgGYq7qZOu61itITFUnm6QbacwZ4H8Q==", - "dependencies": { - "@types/web-bluetooth": "^0.0.20", - "@vueuse/metadata": "10.6.1", - "@vueuse/shared": "10.6.1", - "vue-demi": ">=0.14.6" - } - }, - "node_modules/@vueuse/core/node_modules/vue-demi": { - "version": "0.14.6", - "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz", - "integrity": "sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==", - "hasInstallScript": true, - "bin": { - "vue-demi-fix": "bin/vue-demi-fix.js", - "vue-demi-switch": "bin/vue-demi-switch.js" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "@vue/composition-api": "^1.0.0-rc.1", - "vue": "^3.0.0-0 || ^2.6.0" - }, - "peerDependenciesMeta": { - "@vue/composition-api": { - "optional": true - } - } - }, - "node_modules/@vueuse/math": { - "version": "10.6.1", - "resolved": "https://registry.npmmirror.com/@vueuse/math/-/math-10.6.1.tgz", - "integrity": "sha512-1/aGfewEw7QZDstnPSMFoN6OMWmsbYv3mQ26cGQTboOKdqrNzAWCIn9hoc92R7vvCbkAWJgaLVJRX5odpcXzyQ==", - "dependencies": { - "@vueuse/shared": "10.6.1", - "vue-demi": ">=0.14.6" - } - }, - "node_modules/@vueuse/math/node_modules/vue-demi": { - "version": "0.14.6", - "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz", - "integrity": "sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==", - "hasInstallScript": true, - "bin": { - "vue-demi-fix": "bin/vue-demi-fix.js", - "vue-demi-switch": "bin/vue-demi-switch.js" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "@vue/composition-api": "^1.0.0-rc.1", - "vue": "^3.0.0-0 || ^2.6.0" - }, - "peerDependenciesMeta": { - "@vue/composition-api": { - "optional": true - } - } - }, - "node_modules/@vueuse/metadata": { - "version": "10.6.1", - "resolved": "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-10.6.1.tgz", - "integrity": "sha512-qhdwPI65Bgcj23e5lpGfQsxcy0bMjCAsUGoXkJ7DsoeDUdasbZ2DBa4dinFCOER3lF4gwUv+UD2AlA11zdzMFw==" - }, - "node_modules/@vueuse/motion": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/@vueuse/motion/-/motion-2.0.0.tgz", - "integrity": "sha512-V3TAlbt1OPmb9DZFoFCz9WC3Oue54t9VHlavSWm+VU1JNimYcd+pc6aGR/hgaHUAU9tOPRHoDTleSrv2zrdIsw==", - "dependencies": { - "@vueuse/core": "^10.1.2", - "@vueuse/shared": "^10.1.2", - "csstype": "^3.1.2", - "framesync": "^6.1.2", - "popmotion": "^11.0.5", - "style-value-types": "^5.1.2" - }, - "optionalDependencies": { - "@nuxt/kit": "^3.5.1" - }, - "peerDependencies": { - "vue": ">=3.0.0" - } - }, - "node_modules/@vueuse/shared": { - "version": "10.6.1", - "resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-10.6.1.tgz", - "integrity": "sha512-TECVDTIedFlL0NUfHWncf3zF9Gc4VfdxfQc8JFwoVZQmxpONhLxFrlm0eHQeidHj4rdTPL3KXJa0TZCk1wnc5Q==", - "dependencies": { - "vue-demi": ">=0.14.6" - } - }, - "node_modules/@vueuse/shared/node_modules/vue-demi": { - "version": "0.14.6", - "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz", - "integrity": "sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==", - "hasInstallScript": true, - "bin": { - "vue-demi-fix": "bin/vue-demi-fix.js", - "vue-demi-switch": "bin/vue-demi-switch.js" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "@vue/composition-api": "^1.0.0-rc.1", - "vue": "^3.0.0-0 || ^2.6.0" - }, - "peerDependenciesMeta": { - "@vue/composition-api": { - "optional": true - } - } - }, - "node_modules/@windicss/config": { - "version": "1.9.2", - "resolved": "https://registry.npmmirror.com/@windicss/config/-/config-1.9.2.tgz", - "integrity": "sha512-5yOaarc7Yce08i3NCNRNMUb/tfmVcFo801UwgM27/dXWWfG30wuPONms8VrQurPZlcZTayPKX0svOx0doWdnPQ==", - "dependencies": { - "debug": "^4.3.4", - "jiti": "^1.18.2", - "windicss": "^3.5.6" - } - }, - "node_modules/@windicss/plugin-utils": { - "version": "1.9.2", - "resolved": "https://registry.npmmirror.com/@windicss/plugin-utils/-/plugin-utils-1.9.2.tgz", - "integrity": "sha512-P019ZVYJSBVzMBhYSzcMIWpMjZZWEynF4s7oXgP9+5msH4/Ek55erFXY6r+e3sysBFohnIr3hosQ5dp9FMG16Q==", - "dependencies": { - "@antfu/utils": "^0.7.2", - "@windicss/config": "1.9.2", - "debug": "^4.3.4", - "fast-glob": "^3.2.12", - "magic-string": "^0.30.0", - "micromatch": "^4.0.5", - "windicss": "^3.5.6" - } - }, - "node_modules/acorn": { - "version": "8.11.2", - "resolved": "https://registry.npmmirror.com/acorn/-/acorn-8.11.2.tgz", - "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmmirror.com/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", - "optional": true, - "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/aggregate-error": { - "version": "4.0.1", - "resolved": "https://registry.npmmirror.com/aggregate-error/-/aggregate-error-4.0.1.tgz", - "integrity": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==", - "dependencies": { - "clean-stack": "^4.0.0", - "indent-string": "^5.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - }, - "node_modules/axios": { - "version": "0.21.4", - "resolved": "https://registry.npmmirror.com/axios/-/axios-0.21.4.tgz", - "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", - "dependencies": { - "follow-redirects": "^1.14.0" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "node_modules/big-integer": { - "version": "1.6.52", - "resolved": "https://registry.npmmirror.com/big-integer/-/big-integer-1.6.52.tgz", - "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "engines": { - "node": ">=8" - } - }, - "node_modules/bplist-parser": { - "version": "0.2.0", - "resolved": "https://registry.npmmirror.com/bplist-parser/-/bplist-parser-0.2.0.tgz", - "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", - "dependencies": { - "big-integer": "^1.6.44" - }, - "engines": { - "node": ">= 5.10.0" - } - }, - "node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browserslist": { - "version": "4.22.2", - "resolved": "https://registry.npmmirror.com/browserslist/-/browserslist-4.22.2.tgz", - "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", - "dependencies": { - "caniuse-lite": "^1.0.30001565", - "electron-to-chromium": "^1.4.601", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/bundle-name": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/bundle-name/-/bundle-name-3.0.0.tgz", - "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", - "dependencies": { - "run-applescript": "^5.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/c12": { - "version": "1.5.1", - "resolved": "https://registry.npmmirror.com/c12/-/c12-1.5.1.tgz", - "integrity": "sha512-BWZRJgDEveT8uI+cliCwvYSSSSvb4xKoiiu5S0jaDbKBopQLQF7E+bq9xKk1pTcG+mUa3yXuFO7bD9d8Lr9Xxg==", - "optional": true, - "dependencies": { - "chokidar": "^3.5.3", - "defu": "^6.1.2", - "dotenv": "^16.3.1", - "giget": "^1.1.3", - "jiti": "^1.20.0", - "mlly": "^1.4.2", - "ohash": "^1.1.3", - "pathe": "^1.1.1", - "perfect-debounce": "^1.0.0", - "pkg-types": "^1.0.3", - "rc9": "^2.1.1" - } - }, - "node_modules/cac": { - "version": "6.7.14", - "resolved": "https://registry.npmmirror.com/cac/-/cac-6.7.14.tgz", - "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/cacheable-lookup": { - "version": "7.0.0", - "resolved": "https://registry.npmmirror.com/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz", - "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==", - "engines": { - "node": ">=14.16" - } - }, - "node_modules/cacheable-request": { - "version": "10.2.14", - "resolved": "https://registry.npmmirror.com/cacheable-request/-/cacheable-request-10.2.14.tgz", - "integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==", - "dependencies": { - "@types/http-cache-semantics": "^4.0.2", - "get-stream": "^6.0.1", - "http-cache-semantics": "^4.1.1", - "keyv": "^4.5.3", - "mimic-response": "^4.0.0", - "normalize-url": "^8.0.0", - "responselike": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmmirror.com/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "engines": { - "node": ">=10" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001565", - "resolved": "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001565.tgz", - "integrity": "sha512-xrE//a3O7TP0vaJ8ikzkD2c2NgcVUvsEe2IvFTntV4Yd1Z9FVzh+gW+enX96L0psrbaFMcVcH2l90xNuGDWc8w==" - }, - "node_modules/ccount": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/ccount/-/ccount-2.0.1.tgz", - "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==" - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/character-entities": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/character-entities/-/character-entities-2.0.2.tgz", - "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==" - }, - "node_modules/character-entities-html4": { - "version": "2.1.0", - "resolved": "https://registry.npmmirror.com/character-entities-html4/-/character-entities-html4-2.1.0.tgz", - "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==" - }, - "node_modules/character-entities-legacy": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", - "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==" - }, - "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "optional": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/clean-stack": { - "version": "4.2.0", - "resolved": "https://registry.npmmirror.com/clean-stack/-/clean-stack-4.2.0.tgz", - "integrity": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==", - "dependencies": { - "escape-string-regexp": "5.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/clean-stack/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "engines": { - "node": ">=12" - } - }, - "node_modules/cli-progress": { - "version": "3.12.0", - "resolved": "https://registry.npmmirror.com/cli-progress/-/cli-progress-3.12.0.tgz", - "integrity": "sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==", - "dependencies": { - "string-width": "^4.2.3" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmmirror.com/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/codemirror": { - "version": "5.65.16", - "resolved": "https://registry.npmmirror.com/codemirror/-/codemirror-5.65.16.tgz", - "integrity": "sha512-br21LjYmSlVL0vFCPWPfhzUCT34FM/pAdK7rRIZwa0rrtrIdotvP4Oh4GUHsu2E3IrQMCfRkL/fN3ytMNxVQvg==" - }, - "node_modules/codemirror-theme-vars": { - "version": "0.1.2", - "resolved": "https://registry.npmmirror.com/codemirror-theme-vars/-/codemirror-theme-vars-0.1.2.tgz", - "integrity": "sha512-WTau8X2q58b0SOAY9DO+iQVw8JKVEgyQIqArp2D732tcc+pobbMta3bnVMdQdmgwuvNrOFFr6HoxPRoQOgooFA==" - }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "node_modules/colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmmirror.com/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/comma-separated-tokens": { - "version": "2.0.3", - "resolved": "https://registry.npmmirror.com/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", - "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==" - }, - "node_modules/commander": { - "version": "8.3.0", - "resolved": "https://registry.npmmirror.com/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", - "engines": { - "node": ">= 12" - } - }, - "node_modules/connect": { - "version": "3.7.0", - "resolved": "https://registry.npmmirror.com/connect/-/connect-3.7.0.tgz", - "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", - "dependencies": { - "debug": "2.6.9", - "finalhandler": "1.1.2", - "parseurl": "~1.3.3", - "utils-merge": "1.0.1" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/connect/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/connect/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmmirror.com/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" - }, - "node_modules/cose-base": { - "version": "1.0.3", - "resolved": "https://registry.npmmirror.com/cose-base/-/cose-base-1.0.3.tgz", - "integrity": "sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==", - "dependencies": { - "layout-base": "^1.0.0" - } - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/css-tree": { - "version": "2.3.1", - "resolved": "https://registry.npmmirror.com/css-tree/-/css-tree-2.3.1.tgz", - "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", - "dependencies": { - "mdn-data": "2.0.30", - "source-map-js": "^1.0.1" - }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" - } - }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/csstype": { - "version": "3.1.2", - "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" - }, - "node_modules/cytoscape": { - "version": "3.27.0", - "resolved": "https://registry.npmmirror.com/cytoscape/-/cytoscape-3.27.0.tgz", - "integrity": "sha512-pPZJilfX9BxESwujODz5pydeGi+FBrXq1rcaB1mfhFXXFJ9GjE6CNndAk+8jPzoXGD+16LtSS4xlYEIUiW4Abg==", - "dependencies": { - "heap": "^0.2.6", - "lodash": "^4.17.21" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/cytoscape-cose-bilkent": { - "version": "4.1.0", - "resolved": "https://registry.npmmirror.com/cytoscape-cose-bilkent/-/cytoscape-cose-bilkent-4.1.0.tgz", - "integrity": "sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==", - "dependencies": { - "cose-base": "^1.0.0" - }, - "peerDependencies": { - "cytoscape": "^3.2.0" - } - }, - "node_modules/cytoscape-fcose": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/cytoscape-fcose/-/cytoscape-fcose-2.2.0.tgz", - "integrity": "sha512-ki1/VuRIHFCzxWNrsshHYPs6L7TvLu3DL+TyIGEsRcvVERmxokbf5Gdk7mFxZnTdiGtnA4cfSmjZJMviqSuZrQ==", - "dependencies": { - "cose-base": "^2.2.0" - }, - "peerDependencies": { - "cytoscape": "^3.2.0" - } - }, - "node_modules/cytoscape-fcose/node_modules/cose-base": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/cose-base/-/cose-base-2.2.0.tgz", - "integrity": "sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g==", - "dependencies": { - "layout-base": "^2.0.0" - } - }, - "node_modules/cytoscape-fcose/node_modules/layout-base": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/layout-base/-/layout-base-2.0.1.tgz", - "integrity": "sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg==" - }, - "node_modules/d3": { - "version": "7.8.5", - "resolved": "https://registry.npmmirror.com/d3/-/d3-7.8.5.tgz", - "integrity": "sha512-JgoahDG51ncUfJu6wX/1vWQEqOflgXyl4MaHqlcSruTez7yhaRKR9i8VjjcQGeS2en/jnFivXuaIMnseMMt0XA==", - "dependencies": { - "d3-array": "3", - "d3-axis": "3", - "d3-brush": "3", - "d3-chord": "3", - "d3-color": "3", - "d3-contour": "4", - "d3-delaunay": "6", - "d3-dispatch": "3", - "d3-drag": "3", - "d3-dsv": "3", - "d3-ease": "3", - "d3-fetch": "3", - "d3-force": "3", - "d3-format": "3", - "d3-geo": "3", - "d3-hierarchy": "3", - "d3-interpolate": "3", - "d3-path": "3", - "d3-polygon": "3", - "d3-quadtree": "3", - "d3-random": "3", - "d3-scale": "4", - "d3-scale-chromatic": "3", - "d3-selection": "3", - "d3-shape": "3", - "d3-time": "3", - "d3-time-format": "4", - "d3-timer": "3", - "d3-transition": "3", - "d3-zoom": "3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-array": { - "version": "3.2.4", - "resolved": "https://registry.npmmirror.com/d3-array/-/d3-array-3.2.4.tgz", - "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", - "dependencies": { - "internmap": "1 - 2" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-axis": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/d3-axis/-/d3-axis-3.0.0.tgz", - "integrity": "sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-brush": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/d3-brush/-/d3-brush-3.0.0.tgz", - "integrity": "sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==", - "dependencies": { - "d3-dispatch": "1 - 3", - "d3-drag": "2 - 3", - "d3-interpolate": "1 - 3", - "d3-selection": "3", - "d3-transition": "3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-chord": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-chord/-/d3-chord-3.0.1.tgz", - "integrity": "sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==", - "dependencies": { - "d3-path": "1 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-color": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/d3-color/-/d3-color-3.1.0.tgz", - "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-contour": { - "version": "4.0.2", - "resolved": "https://registry.npmmirror.com/d3-contour/-/d3-contour-4.0.2.tgz", - "integrity": "sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==", - "dependencies": { - "d3-array": "^3.2.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-delaunay": { - "version": "6.0.4", - "resolved": "https://registry.npmmirror.com/d3-delaunay/-/d3-delaunay-6.0.4.tgz", - "integrity": "sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==", - "dependencies": { - "delaunator": "5" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-dispatch": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-dispatch/-/d3-dispatch-3.0.1.tgz", - "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-drag": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/d3-drag/-/d3-drag-3.0.0.tgz", - "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", - "dependencies": { - "d3-dispatch": "1 - 3", - "d3-selection": "3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-dsv": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-dsv/-/d3-dsv-3.0.1.tgz", - "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==", - "dependencies": { - "commander": "7", - "iconv-lite": "0.6", - "rw": "1" - }, - "bin": { - "csv2json": "bin/dsv2json.js", - "csv2tsv": "bin/dsv2dsv.js", - "dsv2dsv": "bin/dsv2dsv.js", - "dsv2json": "bin/dsv2json.js", - "json2csv": "bin/json2dsv.js", - "json2dsv": "bin/json2dsv.js", - "json2tsv": "bin/json2dsv.js", - "tsv2csv": "bin/dsv2dsv.js", - "tsv2json": "bin/dsv2json.js" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-dsv/node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmmirror.com/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "engines": { - "node": ">= 10" - } - }, - "node_modules/d3-ease": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-ease/-/d3-ease-3.0.1.tgz", - "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-fetch": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-fetch/-/d3-fetch-3.0.1.tgz", - "integrity": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==", - "dependencies": { - "d3-dsv": "1 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-force": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/d3-force/-/d3-force-3.0.0.tgz", - "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==", - "dependencies": { - "d3-dispatch": "1 - 3", - "d3-quadtree": "1 - 3", - "d3-timer": "1 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-format": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/d3-format/-/d3-format-3.1.0.tgz", - "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-geo": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/d3-geo/-/d3-geo-3.1.0.tgz", - "integrity": "sha512-JEo5HxXDdDYXCaWdwLRt79y7giK8SbhZJbFWXqbRTolCHFI5jRqteLzCsq51NKbUoX0PjBVSohxrx+NoOUujYA==", - "dependencies": { - "d3-array": "2.5.0 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-hierarchy": { - "version": "3.1.2", - "resolved": "https://registry.npmmirror.com/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz", - "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-interpolate": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-interpolate/-/d3-interpolate-3.0.1.tgz", - "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", - "dependencies": { - "d3-color": "1 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-path": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/d3-path/-/d3-path-3.1.0.tgz", - "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-polygon": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-polygon/-/d3-polygon-3.0.1.tgz", - "integrity": "sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-quadtree": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-quadtree/-/d3-quadtree-3.0.1.tgz", - "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-random": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-random/-/d3-random-3.0.1.tgz", - "integrity": "sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-sankey": { - "version": "0.12.3", - "resolved": "https://registry.npmmirror.com/d3-sankey/-/d3-sankey-0.12.3.tgz", - "integrity": "sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==", - "dependencies": { - "d3-array": "1 - 2", - "d3-shape": "^1.2.0" - } - }, - "node_modules/d3-sankey/node_modules/d3-array": { - "version": "2.12.1", - "resolved": "https://registry.npmmirror.com/d3-array/-/d3-array-2.12.1.tgz", - "integrity": "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==", - "dependencies": { - "internmap": "^1.0.0" - } - }, - "node_modules/d3-sankey/node_modules/d3-path": { - "version": "1.0.9", - "resolved": "https://registry.npmmirror.com/d3-path/-/d3-path-1.0.9.tgz", - "integrity": "sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==" - }, - "node_modules/d3-sankey/node_modules/d3-shape": { - "version": "1.3.7", - "resolved": "https://registry.npmmirror.com/d3-shape/-/d3-shape-1.3.7.tgz", - "integrity": "sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==", - "dependencies": { - "d3-path": "1" - } - }, - "node_modules/d3-sankey/node_modules/internmap": { - "version": "1.0.1", - "resolved": "https://registry.npmmirror.com/internmap/-/internmap-1.0.1.tgz", - "integrity": "sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==" - }, - "node_modules/d3-scale": { - "version": "4.0.2", - "resolved": "https://registry.npmmirror.com/d3-scale/-/d3-scale-4.0.2.tgz", - "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", - "dependencies": { - "d3-array": "2.10.0 - 3", - "d3-format": "1 - 3", - "d3-interpolate": "1.2.0 - 3", - "d3-time": "2.1.1 - 3", - "d3-time-format": "2 - 4" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-scale-chromatic": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz", - "integrity": "sha512-Lx9thtxAKrO2Pq6OO2Ua474opeziKr279P/TKZsMAhYyNDD3EnCffdbgeSYN5O7m2ByQsxtuP2CSDczNUIZ22g==", - "dependencies": { - "d3-color": "1 - 3", - "d3-interpolate": "1 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-selection": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/d3-selection/-/d3-selection-3.0.0.tgz", - "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-shape": { - "version": "3.2.0", - "resolved": "https://registry.npmmirror.com/d3-shape/-/d3-shape-3.2.0.tgz", - "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", - "dependencies": { - "d3-path": "^3.1.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-time": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/d3-time/-/d3-time-3.1.0.tgz", - "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", - "dependencies": { - "d3-array": "2 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-time-format": { - "version": "4.1.0", - "resolved": "https://registry.npmmirror.com/d3-time-format/-/d3-time-format-4.1.0.tgz", - "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", - "dependencies": { - "d3-time": "1 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-timer": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-timer/-/d3-timer-3.0.1.tgz", - "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-transition": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-transition/-/d3-transition-3.0.1.tgz", - "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==", - "dependencies": { - "d3-color": "1 - 3", - "d3-dispatch": "1 - 3", - "d3-ease": "1 - 3", - "d3-interpolate": "1 - 3", - "d3-timer": "1 - 3" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "d3-selection": "2 - 3" - } - }, - "node_modules/d3-zoom": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/d3-zoom/-/d3-zoom-3.0.0.tgz", - "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==", - "dependencies": { - "d3-dispatch": "1 - 3", - "d3-drag": "2 - 3", - "d3-interpolate": "1 - 3", - "d3-selection": "2 - 3", - "d3-transition": "2 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/dagre-d3-es": { - "version": "7.0.10", - "resolved": "https://registry.npmmirror.com/dagre-d3-es/-/dagre-d3-es-7.0.10.tgz", - "integrity": "sha512-qTCQmEhcynucuaZgY5/+ti3X/rnszKZhEQH/ZdWdtP1tA/y3VoHJzcVrO9pjjJCNpigfscAtoUB5ONcd2wNn0A==", - "dependencies": { - "d3": "^7.8.2", - "lodash-es": "^4.17.21" - } - }, - "node_modules/dayjs": { - "version": "1.11.10", - "resolved": "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.10.tgz", - "integrity": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==" - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decode-named-character-reference": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", - "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", - "dependencies": { - "character-entities": "^2.0.0" - } - }, - "node_modules/decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmmirror.com/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "dependencies": { - "mimic-response": "^3.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/decompress-response/node_modules/mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", - "engines": { - "node": ">=10" - } - }, - "node_modules/default-browser": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/default-browser/-/default-browser-4.0.0.tgz", - "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", - "dependencies": { - "bundle-name": "^3.0.0", - "default-browser-id": "^3.0.0", - "execa": "^7.1.1", - "titleize": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/default-browser-id": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/default-browser-id/-/default-browser-id-3.0.0.tgz", - "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", - "dependencies": { - "bplist-parser": "^0.2.0", - "untildify": "^4.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/defer-to-connect": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz", - "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", - "engines": { - "node": ">=10" - } - }, - "node_modules/define-lazy-prop": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", - "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", - "engines": { - "node": ">=12" - } - }, - "node_modules/defu": { - "version": "6.1.3", - "resolved": "https://registry.npmmirror.com/defu/-/defu-6.1.3.tgz", - "integrity": "sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==" - }, - "node_modules/delaunator": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/delaunator/-/delaunator-5.0.0.tgz", - "integrity": "sha512-AyLvtyJdbv/U1GkiS6gUUzclRoAY4Gs75qkMygJJhU75LW4DNuSF2RMzpxs9jw9Oz1BobHjTdkG3zdP55VxAqw==", - "dependencies": { - "robust-predicates": "^3.0.0" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmmirror.com/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/destr": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/destr/-/destr-2.0.2.tgz", - "integrity": "sha512-65AlobnZMiCET00KaFFjUefxDX0khFA/E4myqZ7a6Sq1yZtR8+FVIvilVX66vF2uobSumxooYZChiRPCKNqhmg==" - }, - "node_modules/devlop": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/devlop/-/devlop-1.1.0.tgz", - "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", - "dependencies": { - "dequal": "^2.0.0" - } - }, - "node_modules/diff": { - "version": "5.1.0", - "resolved": "https://registry.npmmirror.com/diff/-/diff-5.1.0.tgz", - "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==", - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/dns-packet": { - "version": "5.6.1", - "resolved": "https://registry.npmmirror.com/dns-packet/-/dns-packet-5.6.1.tgz", - "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", - "dependencies": { - "@leichtgewicht/ip-codec": "^2.0.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/dns-socket": { - "version": "4.2.2", - "resolved": "https://registry.npmmirror.com/dns-socket/-/dns-socket-4.2.2.tgz", - "integrity": "sha512-BDeBd8najI4/lS00HSKpdFia+OvUMytaVjfzR9n5Lq8MlZRSvtbI+uLtx1+XmQFls5wFU9dssccTmQQ6nfpjdg==", - "dependencies": { - "dns-packet": "^5.2.4" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/dom-serializer": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" - } - }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmmirror.com/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - }, - "node_modules/domhandler": { - "version": "5.0.3", - "resolved": "https://registry.npmmirror.com/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", - "dependencies": { - "domelementtype": "^2.3.0" - }, - "engines": { - "node": ">= 4" - } - }, - "node_modules/dompurify": { - "version": "3.0.6", - "resolved": "https://registry.npmmirror.com/dompurify/-/dompurify-3.0.6.tgz", - "integrity": "sha512-ilkD8YEnnGh1zJ240uJsW7AzE+2qpbOUYjacomn3AvJ6J4JhKGSZ2nh4wUIXPZrEPppaCLx5jFe8T89Rk8tQ7w==" - }, - "node_modules/domutils": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/domutils/-/domutils-3.1.0.tgz", - "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", - "dependencies": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3" - } - }, - "node_modules/dotenv": { - "version": "16.3.1", - "resolved": "https://registry.npmmirror.com/dotenv/-/dotenv-16.3.1.tgz", - "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", - "optional": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/drauu": { - "version": "0.3.7", - "resolved": "https://registry.npmmirror.com/drauu/-/drauu-0.3.7.tgz", - "integrity": "sha512-fENggzwwVYTiIfKt4hYLsG2azq//hflHqu1qwAWZBzZANkN5KdX+goZYeDsRx01uvtiuxH09w/i8oESygytutg==", - "dependencies": { - "@drauu/core": "0.3.7" - } - }, - "node_modules/duplexer": { - "version": "0.1.2", - "resolved": "https://registry.npmmirror.com/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" - }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmmirror.com/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - }, - "node_modules/electron-to-chromium": { - "version": "1.4.601", - "resolved": "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.601.tgz", - "integrity": "sha512-SpwUMDWe9tQu8JX5QCO1+p/hChAi9AE9UpoC3rcHVc+gdCGlbT3SGb5I1klgb952HRIyvt9wZhSz9bNBYz9swA==" - }, - "node_modules/elkjs": { - "version": "0.8.2", - "resolved": "https://registry.npmmirror.com/elkjs/-/elkjs-0.8.2.tgz", - "integrity": "sha512-L6uRgvZTH+4OF5NE/MBbzQx/WYpru1xCBE9respNj6qznEewGUIfhzmm7horWWxbNO2M0WckQypGctR8lH79xQ==" - }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmmirror.com/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "engines": { - "node": ">=0.12" - } - }, - "node_modules/error-stack-parser-es": { - "version": "0.1.1", - "resolved": "https://registry.npmmirror.com/error-stack-parser-es/-/error-stack-parser-es-0.1.1.tgz", - "integrity": "sha512-g/9rfnvnagiNf+DRMHEVGuGuIBlCIMDFoTA616HaP2l9PlCjGjVhD98PNbVSJvmK4TttqT5mV5tInMhoFgi+aA==" - }, - "node_modules/esbuild": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.18.20.tgz", - "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.18.20", - "@esbuild/android-arm64": "0.18.20", - "@esbuild/android-x64": "0.18.20", - "@esbuild/darwin-arm64": "0.18.20", - "@esbuild/darwin-x64": "0.18.20", - "@esbuild/freebsd-arm64": "0.18.20", - "@esbuild/freebsd-x64": "0.18.20", - "@esbuild/linux-arm": "0.18.20", - "@esbuild/linux-arm64": "0.18.20", - "@esbuild/linux-ia32": "0.18.20", - "@esbuild/linux-loong64": "0.18.20", - "@esbuild/linux-mips64el": "0.18.20", - "@esbuild/linux-ppc64": "0.18.20", - "@esbuild/linux-riscv64": "0.18.20", - "@esbuild/linux-s390x": "0.18.20", - "@esbuild/linux-x64": "0.18.20", - "@esbuild/netbsd-x64": "0.18.20", - "@esbuild/openbsd-x64": "0.18.20", - "@esbuild/sunos-x64": "0.18.20", - "@esbuild/win32-arm64": "0.18.20", - "@esbuild/win32-ia32": "0.18.20", - "@esbuild/win32-x64": "0.18.20" - } - }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmmirror.com/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "optional": true, - "dependencies": { - "@types/estree": "^1.0.0" - } - }, - "node_modules/execa": { - "version": "7.2.0", - "resolved": "https://registry.npmmirror.com/execa/-/execa-7.2.0.tgz", - "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^4.3.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": "^14.18.0 || ^16.14.0 || >=18.0.0" - } - }, - "node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmmirror.com/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/file-saver": { - "version": "2.0.5", - "resolved": "https://registry.npmmirror.com/file-saver/-/file-saver-2.0.5.tgz", - "integrity": "sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==" - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmmirror.com/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "statuses": "~1.5.0", - "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/flat": { - "version": "5.0.2", - "resolved": "https://registry.npmmirror.com/flat/-/flat-5.0.2.tgz", - "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", - "optional": true, - "bin": { - "flat": "cli.js" - } - }, - "node_modules/follow-redirects": { - "version": "1.15.3", - "resolved": "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.3.tgz", - "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==", - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/form-data-encoder": { - "version": "2.1.4", - "resolved": "https://registry.npmmirror.com/form-data-encoder/-/form-data-encoder-2.1.4.tgz", - "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==", - "engines": { - "node": ">= 14.17" - } - }, - "node_modules/framesync": { - "version": "6.1.2", - "resolved": "https://registry.npmmirror.com/framesync/-/framesync-6.1.2.tgz", - "integrity": "sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==", - "dependencies": { - "tslib": "2.4.0" - } - }, - "node_modules/fs-extra": { - "version": "11.2.0", - "resolved": "https://registry.npmmirror.com/fs-extra/-/fs-extra-11.2.0.tgz", - "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=14.14" - } - }, - "node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmmirror.com/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "optional": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/fs-minipass/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmmirror.com/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "optional": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/fs-minipass/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "optional": true - }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" - }, - "node_modules/fuse.js": { - "version": "7.0.0", - "resolved": "https://registry.npmmirror.com/fuse.js/-/fuse.js-7.0.0.tgz", - "integrity": "sha512-14F4hBIxqKvD4Zz/XjDc3y94mNZN6pRv3U13Udo0lNLCWRBUsrMv2xwcF/y/Z5sV6+FQW+/ow68cHpm4sunt8Q==", - "engines": { - "node": ">=10" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-port-please": { - "version": "3.1.1", - "resolved": "https://registry.npmmirror.com/get-port-please/-/get-port-please-3.1.1.tgz", - "integrity": "sha512-3UBAyM3u4ZBVYDsxOQfJDxEa6XTbpBDrOjp4mf7ExFRt5BKs/QywQQiJsh2B+hxcZLSapWqCRvElUe8DnKcFHA==" - }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmmirror.com/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "engines": { - "node": ">=10" - } - }, - "node_modules/giget": { - "version": "1.1.3", - "resolved": "https://registry.npmmirror.com/giget/-/giget-1.1.3.tgz", - "integrity": "sha512-zHuCeqtfgqgDwvXlR84UNgnJDuUHQcNI5OqWqFxxuk2BshuKbYhJWdxBsEo4PvKqoGh23lUAIvBNpChMLv7/9Q==", - "optional": true, - "dependencies": { - "colorette": "^2.0.20", - "defu": "^6.1.2", - "https-proxy-agent": "^7.0.2", - "mri": "^1.2.0", - "node-fetch-native": "^1.4.0", - "pathe": "^1.1.1", - "tar": "^6.2.0" - }, - "bin": { - "giget": "dist/cli.mjs" - } - }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/global-directory": { - "version": "4.0.1", - "resolved": "https://registry.npmmirror.com/global-directory/-/global-directory-4.0.1.tgz", - "integrity": "sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==", - "dependencies": { - "ini": "4.1.1" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmmirror.com/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/globby": { - "version": "14.0.0", - "resolved": "https://registry.npmmirror.com/globby/-/globby-14.0.0.tgz", - "integrity": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==", - "optional": true, - "dependencies": { - "@sindresorhus/merge-streams": "^1.0.0", - "fast-glob": "^3.3.2", - "ignore": "^5.2.4", - "path-type": "^5.0.0", - "slash": "^5.1.0", - "unicorn-magic": "^0.1.0" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/got": { - "version": "12.6.1", - "resolved": "https://registry.npmmirror.com/got/-/got-12.6.1.tgz", - "integrity": "sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==", - "dependencies": { - "@sindresorhus/is": "^5.2.0", - "@szmarczak/http-timer": "^5.0.1", - "cacheable-lookup": "^7.0.0", - "cacheable-request": "^10.2.8", - "decompress-response": "^6.0.0", - "form-data-encoder": "^2.1.2", - "get-stream": "^6.0.1", - "http2-wrapper": "^2.1.10", - "lowercase-keys": "^3.0.0", - "p-cancelable": "^3.0.0", - "responselike": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - }, - "node_modules/gray-matter": { - "version": "4.0.3", - "resolved": "https://registry.npmmirror.com/gray-matter/-/gray-matter-4.0.3.tgz", - "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==", - "dependencies": { - "js-yaml": "^3.13.1", - "kind-of": "^6.0.2", - "section-matter": "^1.0.0", - "strip-bom-string": "^1.0.0" - }, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/gray-matter/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmmirror.com/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/gray-matter/node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmmirror.com/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/gzip-size": { - "version": "6.0.0", - "resolved": "https://registry.npmmirror.com/gzip-size/-/gzip-size-6.0.0.tgz", - "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", - "dependencies": { - "duplexer": "^0.1.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/hash-sum": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/hash-sum/-/hash-sum-2.0.0.tgz", - "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==", - "optional": true - }, - "node_modules/hasown": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/hasown/-/hasown-2.0.0.tgz", - "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/hast-util-from-parse5": { - "version": "8.0.1", - "resolved": "https://registry.npmmirror.com/hast-util-from-parse5/-/hast-util-from-parse5-8.0.1.tgz", - "integrity": "sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==", - "dependencies": { - "@types/hast": "^3.0.0", - "@types/unist": "^3.0.0", - "devlop": "^1.0.0", - "hastscript": "^8.0.0", - "property-information": "^6.0.0", - "vfile": "^6.0.0", - "vfile-location": "^5.0.0", - "web-namespaces": "^2.0.0" - } - }, - "node_modules/hast-util-from-parse5/node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==" - }, - "node_modules/hast-util-parse-selector": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz", - "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==", - "dependencies": { - "@types/hast": "^3.0.0" - } - }, - "node_modules/hast-util-raw": { - "version": "9.0.1", - "resolved": "https://registry.npmmirror.com/hast-util-raw/-/hast-util-raw-9.0.1.tgz", - "integrity": "sha512-5m1gmba658Q+lO5uqL5YNGQWeh1MYWZbZmWrM5lncdcuiXuo5E2HT/CIOp0rLF8ksfSwiCVJ3twlgVRyTGThGA==", - "dependencies": { - "@types/hast": "^3.0.0", - "@types/unist": "^3.0.0", - "@ungap/structured-clone": "^1.0.0", - "hast-util-from-parse5": "^8.0.0", - "hast-util-to-parse5": "^8.0.0", - "html-void-elements": "^3.0.0", - "mdast-util-to-hast": "^13.0.0", - "parse5": "^7.0.0", - "unist-util-position": "^5.0.0", - "unist-util-visit": "^5.0.0", - "vfile": "^6.0.0", - "web-namespaces": "^2.0.0", - "zwitch": "^2.0.0" - } - }, - "node_modules/hast-util-raw/node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==" - }, - "node_modules/hast-util-to-html": { - "version": "9.0.0", - "resolved": "https://registry.npmmirror.com/hast-util-to-html/-/hast-util-to-html-9.0.0.tgz", - "integrity": "sha512-IVGhNgg7vANuUA2XKrT6sOIIPgaYZnmLx3l/CCOAK0PtgfoHrZwX7jCSYyFxHTrGmC6S9q8aQQekjp4JPZF+cw==", - "dependencies": { - "@types/hast": "^3.0.0", - "@types/unist": "^3.0.0", - "ccount": "^2.0.0", - "comma-separated-tokens": "^2.0.0", - "hast-util-raw": "^9.0.0", - "hast-util-whitespace": "^3.0.0", - "html-void-elements": "^3.0.0", - "mdast-util-to-hast": "^13.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0", - "stringify-entities": "^4.0.0", - "zwitch": "^2.0.4" - } - }, - "node_modules/hast-util-to-html/node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==" - }, - "node_modules/hast-util-to-parse5": { - "version": "8.0.0", - "resolved": "https://registry.npmmirror.com/hast-util-to-parse5/-/hast-util-to-parse5-8.0.0.tgz", - "integrity": "sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==", - "dependencies": { - "@types/hast": "^3.0.0", - "comma-separated-tokens": "^2.0.0", - "devlop": "^1.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0", - "web-namespaces": "^2.0.0", - "zwitch": "^2.0.0" - } - }, - "node_modules/hast-util-whitespace": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", - "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", - "dependencies": { - "@types/hast": "^3.0.0" - } - }, - "node_modules/hastscript": { - "version": "8.0.0", - "resolved": "https://registry.npmmirror.com/hastscript/-/hastscript-8.0.0.tgz", - "integrity": "sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==", - "dependencies": { - "@types/hast": "^3.0.0", - "comma-separated-tokens": "^2.0.0", - "hast-util-parse-selector": "^4.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0" - } - }, - "node_modules/heap": { - "version": "0.2.7", - "resolved": "https://registry.npmmirror.com/heap/-/heap-0.2.7.tgz", - "integrity": "sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==" - }, - "node_modules/hey-listen": { - "version": "1.0.8", - "resolved": "https://registry.npmmirror.com/hey-listen/-/hey-listen-1.0.8.tgz", - "integrity": "sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==" - }, - "node_modules/hookable": { - "version": "5.5.3", - "resolved": "https://registry.npmmirror.com/hookable/-/hookable-5.5.3.tgz", - "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==" - }, - "node_modules/html-entities": { - "version": "2.4.0", - "resolved": "https://registry.npmmirror.com/html-entities/-/html-entities-2.4.0.tgz", - "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==" - }, - "node_modules/html-tags": { - "version": "3.3.1", - "resolved": "https://registry.npmmirror.com/html-tags/-/html-tags-3.3.1.tgz", - "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/html-void-elements": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/html-void-elements/-/html-void-elements-3.0.0.tgz", - "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==" - }, - "node_modules/htmlparser2": { - "version": "9.0.0", - "resolved": "https://registry.npmmirror.com/htmlparser2/-/htmlparser2-9.0.0.tgz", - "integrity": "sha512-uxbSI98wmFT/G4P2zXx4OVx04qWUmyFPrD2/CNepa2Zo3GPNaCaaxElDgwUrwYWkK1nr9fft0Ya8dws8coDLLQ==", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.1.0", - "entities": "^4.5.0" - } - }, - "node_modules/http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmmirror.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" - }, - "node_modules/http2-wrapper": { - "version": "2.2.1", - "resolved": "https://registry.npmmirror.com/http2-wrapper/-/http2-wrapper-2.2.1.tgz", - "integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==", - "dependencies": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.2.0" - }, - "engines": { - "node": ">=10.19.0" - } - }, - "node_modules/https-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmmirror.com/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", - "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", - "optional": true, - "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/human-signals": { - "version": "4.3.1", - "resolved": "https://registry.npmmirror.com/human-signals/-/human-signals-4.3.1.tgz", - "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", - "engines": { - "node": ">=14.18.0" - } - }, - "node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ignore": { - "version": "5.3.0", - "resolved": "https://registry.npmmirror.com/ignore/-/ignore-5.3.0.tgz", - "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", - "optional": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/import-from": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/import-from/-/import-from-4.0.0.tgz", - "integrity": "sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==", - "engines": { - "node": ">=12.2" - } - }, - "node_modules/indent-string": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/indent-string/-/indent-string-5.0.0.tgz", - "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", - "engines": { - "node": ">=12" - } - }, - "node_modules/ini": { - "version": "4.1.1", - "resolved": "https://registry.npmmirror.com/ini/-/ini-4.1.1.tgz", - "integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==", - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/internmap": { - "version": "2.0.3", - "resolved": "https://registry.npmmirror.com/internmap/-/internmap-2.0.3.tgz", - "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", - "engines": { - "node": ">=12" - } - }, - "node_modules/ip-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/ip-regex/-/ip-regex-5.0.0.tgz", - "integrity": "sha512-fOCG6lhoKKakwv+C6KdsOnGvgXnmgfmp0myi3bcNwj3qfwPAxRKWEuFhvEFF7ceYIz6+1jRZ+yguLFAmUNPEfw==", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-core-module": { - "version": "2.13.1", - "resolved": "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.13.1.tgz", - "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", - "dependencies": { - "hasown": "^2.0.0" - } - }, - "node_modules/is-docker": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/is-docker/-/is-docker-3.0.0.tgz", - "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmmirror.com/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-inside-container": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/is-inside-container/-/is-inside-container-1.0.0.tgz", - "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", - "dependencies": { - "is-docker": "^3.0.0" - }, - "bin": { - "is-inside-container": "cli.js" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/is-installed-globally": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/is-installed-globally/-/is-installed-globally-1.0.0.tgz", - "integrity": "sha512-K55T22lfpQ63N4KEN57jZUAaAYqYHEe8veb/TycJRk9DdSCLLcovXz/mL6mOnhQaZsQGwPhuFopdQIlqGSEjiQ==", - "dependencies": { - "global-directory": "^4.0.1", - "is-path-inside": "^4.0.0" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/is-ip": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/is-ip/-/is-ip-4.0.0.tgz", - "integrity": "sha512-4B4XA2HEIm/PY+OSpeMBXr8pGWBYbXuHgjMAqrwbLO3CPTCAd9ArEJzBUKGZtk9viY6+aSfadGnWyjY3ydYZkw==", - "dependencies": { - "ip-regex": "^5.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-path-inside": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/is-path-inside/-/is-path-inside-4.0.0.tgz", - "integrity": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==", - "engines": { - "node": ">=12" - } - }, - "node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dependencies": { - "is-docker": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-wsl/node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmmirror.com/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "node_modules/jiti": { - "version": "1.21.0", - "resolved": "https://registry.npmmirror.com/jiti/-/jiti-1.21.0.tgz", - "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", - "bin": { - "jiti": "bin/jiti.js" - } - }, - "node_modules/js-base64": { - "version": "3.7.5", - "resolved": "https://registry.npmmirror.com/js-base64/-/js-base64-3.7.5.tgz", - "integrity": "sha512-3MEt5DTINKqfScXKfJFrRbxkrnk2AxPWGBL/ycjz4dK8iqiSJ06UxD8jh8xuh6p10TX4t2+7FsBYVxxQbMg+qA==" - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmmirror.com/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmmirror.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" - }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/katex": { - "version": "0.16.9", - "resolved": "https://registry.npmmirror.com/katex/-/katex-0.16.9.tgz", - "integrity": "sha512-fsSYjWS0EEOwvy81j3vRA8TEAhQhKiqO+FQaKWp0m39qwOzHVBgAUBIXWj1pB+O2W3fIpNa6Y9KSKCVbfPhyAQ==", - "dependencies": { - "commander": "^8.3.0" - }, - "bin": { - "katex": "cli.js" - } - }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmmirror.com/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/khroma": { - "version": "2.1.0", - "resolved": "https://registry.npmmirror.com/khroma/-/khroma-2.1.0.tgz", - "integrity": "sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==" - }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmmirror.com/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", - "engines": { - "node": ">=6" - } - }, - "node_modules/knitwork": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/knitwork/-/knitwork-1.0.0.tgz", - "integrity": "sha512-dWl0Dbjm6Xm+kDxhPQJsCBTxrJzuGl0aP9rhr+TG8D3l+GL90N8O8lYUi7dTSAN2uuDqCtNgb6aEuQH5wsiV8Q==", - "optional": true - }, - "node_modules/kolorist": { - "version": "1.8.0", - "resolved": "https://registry.npmmirror.com/kolorist/-/kolorist-1.8.0.tgz", - "integrity": "sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==" - }, - "node_modules/layout-base": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/layout-base/-/layout-base-1.0.2.tgz", - "integrity": "sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==" - }, - "node_modules/linkify-it": { - "version": "4.0.1", - "resolved": "https://registry.npmmirror.com/linkify-it/-/linkify-it-4.0.1.tgz", - "integrity": "sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==", - "dependencies": { - "uc.micro": "^1.0.1" - } - }, - "node_modules/local-pkg": { - "version": "0.5.0", - "resolved": "https://registry.npmmirror.com/local-pkg/-/local-pkg-0.5.0.tgz", - "integrity": "sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==", - "dependencies": { - "mlly": "^1.4.2", - "pkg-types": "^1.0.3" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/localtunnel": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/localtunnel/-/localtunnel-2.0.2.tgz", - "integrity": "sha512-n418Cn5ynvJd7m/N1d9WVJISLJF/ellZnfsLnx8WBWGzxv/ntNcFkJ1o6se5quUhCplfLGBNL5tYHiq5WF3Nug==", - "dependencies": { - "axios": "0.21.4", - "debug": "4.3.2", - "openurl": "1.1.1", - "yargs": "17.1.1" - }, - "bin": { - "lt": "bin/lt.js" - }, - "engines": { - "node": ">=8.3.0" - } - }, - "node_modules/localtunnel/node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmmirror.com/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "node_modules/localtunnel/node_modules/debug": { - "version": "4.3.2", - "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/localtunnel/node_modules/yargs": { - "version": "17.1.1", - "resolved": "https://registry.npmmirror.com/yargs/-/yargs-17.1.1.tgz", - "integrity": "sha512-c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ==", - "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/localtunnel/node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "engines": { - "node": ">=10" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash-es": { - "version": "4.17.21", - "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz", - "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" - }, - "node_modules/lowercase-keys": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/lowercase-keys/-/lowercase-keys-3.0.0.tgz", - "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/magic-string": { - "version": "0.30.5", - "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.5.tgz", - "integrity": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==", - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/markdown-it": { - "version": "13.0.2", - "resolved": "https://registry.npmmirror.com/markdown-it/-/markdown-it-13.0.2.tgz", - "integrity": "sha512-FtwnEuuK+2yVU7goGn/MJ0WBZMM9ZPgU9spqlFs7/A/pDIUNSOQZhUgOqYCficIuR2QaFnrt8LHqBWsbTAoI5w==", - "dependencies": { - "argparse": "^2.0.1", - "entities": "~3.0.1", - "linkify-it": "^4.0.1", - "mdurl": "^1.0.1", - "uc.micro": "^1.0.5" - }, - "bin": { - "markdown-it": "bin/markdown-it.js" - } - }, - "node_modules/markdown-it-footnote": { - "version": "3.0.3", - "resolved": "https://registry.npmmirror.com/markdown-it-footnote/-/markdown-it-footnote-3.0.3.tgz", - "integrity": "sha512-YZMSuCGVZAjzKMn+xqIco9d1cLGxbELHZ9do/TSYVzraooV8ypsppKNmUJ0fVH5ljkCInQAtFpm8Rb3eXSrt5w==" - }, - "node_modules/markdown-it-link-attributes": { - "version": "4.0.1", - "resolved": "https://registry.npmmirror.com/markdown-it-link-attributes/-/markdown-it-link-attributes-4.0.1.tgz", - "integrity": "sha512-pg5OK0jPLg62H4k7M9mRJLT61gUp9nvG0XveKYHMOOluASo9OEF13WlXrpAp2aj35LbedAy3QOCgQCw0tkLKAQ==" - }, - "node_modules/markdown-it-mdc": { - "version": "0.1.4", - "resolved": "https://registry.npmmirror.com/markdown-it-mdc/-/markdown-it-mdc-0.1.4.tgz", - "integrity": "sha512-9+DN+a7aA3dywExjFxfEcH6JFEpEcysnysqWVDXcgcYvI3Ej0dYNdXLF2YLDMu8je/Qpf9QiHLA9L8tJbb1aog==", - "dependencies": { - "js-yaml": "^4.1.0" - }, - "peerDependencies": { - "@types/markdown-it": "^13.0.1", - "markdown-it": "^13.0.1" - } - }, - "node_modules/markdown-it/node_modules/entities": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/entities/-/entities-3.0.1.tgz", - "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==", - "engines": { - "node": ">=0.12" - } - }, - "node_modules/mdast-util-from-markdown": { - "version": "1.3.1", - "resolved": "https://registry.npmmirror.com/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz", - "integrity": "sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==", - "dependencies": { - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "decode-named-character-reference": "^1.0.0", - "mdast-util-to-string": "^3.1.0", - "micromark": "^3.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-decode-string": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "unist-util-stringify-position": "^3.0.0", - "uvu": "^0.5.0" - } - }, - "node_modules/mdast-util-to-hast": { - "version": "13.0.2", - "resolved": "https://registry.npmmirror.com/mdast-util-to-hast/-/mdast-util-to-hast-13.0.2.tgz", - "integrity": "sha512-U5I+500EOOw9e3ZrclN3Is3fRpw8c19SMyNZlZ2IS+7vLsNzb2Om11VpIVOR+/0137GhZsFEF6YiKD5+0Hr2Og==", - "dependencies": { - "@types/hast": "^3.0.0", - "@types/mdast": "^4.0.0", - "@ungap/structured-clone": "^1.0.0", - "devlop": "^1.0.0", - "micromark-util-sanitize-uri": "^2.0.0", - "trim-lines": "^3.0.0", - "unist-util-position": "^5.0.0", - "unist-util-visit": "^5.0.0" - } - }, - "node_modules/mdast-util-to-hast/node_modules/@types/mdast": { - "version": "4.0.3", - "resolved": "https://registry.npmmirror.com/@types/mdast/-/mdast-4.0.3.tgz", - "integrity": "sha512-LsjtqsyF+d2/yFOYaN22dHZI1Cpwkrj+g06G8+qtUKlhovPW89YhqSnfKtMbkgmEtYpH2gydRNULd6y8mciAFg==", - "dependencies": { - "@types/unist": "*" - } - }, - "node_modules/mdast-util-to-hast/node_modules/micromark-util-character": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/micromark-util-character/-/micromark-util-character-2.0.1.tgz", - "integrity": "sha512-3wgnrmEAJ4T+mGXAUfMvMAbxU9RDG43XmGce4j6CwPtVxB3vfwXSZ6KhFwDzZ3mZHhmPimMAXg71veiBGzeAZw==", - "dependencies": { - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/mdast-util-to-hast/node_modules/micromark-util-encode": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz", - "integrity": "sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==" - }, - "node_modules/mdast-util-to-hast/node_modules/micromark-util-sanitize-uri": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz", - "integrity": "sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==", - "dependencies": { - "micromark-util-character": "^2.0.0", - "micromark-util-encode": "^2.0.0", - "micromark-util-symbol": "^2.0.0" - } - }, - "node_modules/mdast-util-to-hast/node_modules/micromark-util-symbol": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", - "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==" - }, - "node_modules/mdast-util-to-hast/node_modules/micromark-util-types": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/micromark-util-types/-/micromark-util-types-2.0.0.tgz", - "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==" - }, - "node_modules/mdast-util-to-string": { - "version": "3.2.0", - "resolved": "https://registry.npmmirror.com/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", - "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", - "dependencies": { - "@types/mdast": "^3.0.0" - } - }, - "node_modules/mdn-data": { - "version": "2.0.30", - "resolved": "https://registry.npmmirror.com/mdn-data/-/mdn-data-2.0.30.tgz", - "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" - }, - "node_modules/mdurl": { - "version": "1.0.1", - "resolved": "https://registry.npmmirror.com/mdurl/-/mdurl-1.0.1.tgz", - "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==" - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/mermaid": { - "version": "10.6.1", - "resolved": "https://registry.npmmirror.com/mermaid/-/mermaid-10.6.1.tgz", - "integrity": "sha512-Hky0/RpOw/1il9X8AvzOEChfJtVvmXm+y7JML5C//ePYMy0/9jCEmW1E1g86x9oDfW9+iVEdTV/i+M6KWRNs4A==", - "dependencies": { - "@braintree/sanitize-url": "^6.0.1", - "@types/d3-scale": "^4.0.3", - "@types/d3-scale-chromatic": "^3.0.0", - "cytoscape": "^3.23.0", - "cytoscape-cose-bilkent": "^4.1.0", - "cytoscape-fcose": "^2.1.0", - "d3": "^7.4.0", - "d3-sankey": "^0.12.3", - "dagre-d3-es": "7.0.10", - "dayjs": "^1.11.7", - "dompurify": "^3.0.5", - "elkjs": "^0.8.2", - "khroma": "^2.0.0", - "lodash-es": "^4.17.21", - "mdast-util-from-markdown": "^1.3.0", - "non-layered-tidy-tree-layout": "^2.0.2", - "stylis": "^4.1.3", - "ts-dedent": "^2.2.0", - "uuid": "^9.0.0", - "web-worker": "^1.2.0" - } - }, - "node_modules/micromark": { - "version": "3.2.0", - "resolved": "https://registry.npmmirror.com/micromark/-/micromark-3.2.0.tgz", - "integrity": "sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==", - "dependencies": { - "@types/debug": "^4.0.0", - "debug": "^4.0.0", - "decode-named-character-reference": "^1.0.0", - "micromark-core-commonmark": "^1.0.1", - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-chunked": "^1.0.0", - "micromark-util-combine-extensions": "^1.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-encode": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-resolve-all": "^1.0.0", - "micromark-util-sanitize-uri": "^1.0.0", - "micromark-util-subtokenize": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.1", - "uvu": "^0.5.0" - } - }, - "node_modules/micromark-core-commonmark": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz", - "integrity": "sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==", - "dependencies": { - "decode-named-character-reference": "^1.0.0", - "micromark-factory-destination": "^1.0.0", - "micromark-factory-label": "^1.0.0", - "micromark-factory-space": "^1.0.0", - "micromark-factory-title": "^1.0.0", - "micromark-factory-whitespace": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-chunked": "^1.0.0", - "micromark-util-classify-character": "^1.0.0", - "micromark-util-html-tag-name": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-resolve-all": "^1.0.0", - "micromark-util-subtokenize": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.1", - "uvu": "^0.5.0" - } - }, - "node_modules/micromark-factory-destination": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz", - "integrity": "sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==", - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-factory-label": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz", - "integrity": "sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==", - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" - } - }, - "node_modules/micromark-factory-space": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz", - "integrity": "sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==", - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-factory-title": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz", - "integrity": "sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==", - "dependencies": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-factory-whitespace": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz", - "integrity": "sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==", - "dependencies": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-util-character": { - "version": "1.2.0", - "resolved": "https://registry.npmmirror.com/micromark-util-character/-/micromark-util-character-1.2.0.tgz", - "integrity": "sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==", - "dependencies": { - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-util-chunked": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz", - "integrity": "sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==", - "dependencies": { - "micromark-util-symbol": "^1.0.0" - } - }, - "node_modules/micromark-util-classify-character": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz", - "integrity": "sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==", - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-util-combine-extensions": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz", - "integrity": "sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==", - "dependencies": { - "micromark-util-chunked": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-util-decode-numeric-character-reference": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz", - "integrity": "sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==", - "dependencies": { - "micromark-util-symbol": "^1.0.0" - } - }, - "node_modules/micromark-util-decode-string": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz", - "integrity": "sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==", - "dependencies": { - "decode-named-character-reference": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-symbol": "^1.0.0" - } - }, - "node_modules/micromark-util-encode": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz", - "integrity": "sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==" - }, - "node_modules/micromark-util-html-tag-name": { - "version": "1.2.0", - "resolved": "https://registry.npmmirror.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz", - "integrity": "sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==" - }, - "node_modules/micromark-util-normalize-identifier": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz", - "integrity": "sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==", - "dependencies": { - "micromark-util-symbol": "^1.0.0" - } - }, - "node_modules/micromark-util-resolve-all": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz", - "integrity": "sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==", - "dependencies": { - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-util-sanitize-uri": { - "version": "1.2.0", - "resolved": "https://registry.npmmirror.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz", - "integrity": "sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==", - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-encode": "^1.0.0", - "micromark-util-symbol": "^1.0.0" - } - }, - "node_modules/micromark-util-subtokenize": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz", - "integrity": "sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==", - "dependencies": { - "micromark-util-chunked": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" - } - }, - "node_modules/micromark-util-symbol": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz", - "integrity": "sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==" - }, - "node_modules/micromark-util-types": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-types/-/micromark-util-types-1.1.0.tgz", - "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==" - }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "engines": { - "node": ">=12" - } - }, - "node_modules/mimic-response": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/mimic-response/-/mimic-response-4.0.0.tgz", - "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", - "optional": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmmirror.com/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "optional": true, - "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minizlib/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmmirror.com/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "optional": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minizlib/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "optional": true - }, - "node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmmirror.com/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "optional": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/mlly": { - "version": "1.4.2", - "resolved": "https://registry.npmmirror.com/mlly/-/mlly-1.4.2.tgz", - "integrity": "sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==", - "dependencies": { - "acorn": "^8.10.0", - "pathe": "^1.1.1", - "pkg-types": "^1.0.3", - "ufo": "^1.3.0" - } - }, - "node_modules/monaco-editor": { - "version": "0.37.1", - "resolved": "https://registry.npmmirror.com/monaco-editor/-/monaco-editor-0.37.1.tgz", - "integrity": "sha512-jLXEEYSbqMkT/FuJLBZAVWGuhIb4JNwHE9kPTorAVmsdZ4UzHAfgWxLsVtD7pLRFaOwYPhNG9nUCpmFL1t/dIg==" - }, - "node_modules/mri": { - "version": "1.2.0", - "resolved": "https://registry.npmmirror.com/mri/-/mri-1.2.0.tgz", - "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/mrmime": { - "version": "1.0.1", - "resolved": "https://registry.npmmirror.com/mrmime/-/mrmime-1.0.1.tgz", - "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", - "engines": { - "node": ">=10" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/nanoid": { - "version": "5.0.4", - "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-5.0.4.tgz", - "integrity": "sha512-vAjmBf13gsmhXSgBrtIclinISzFFy22WwCYoyilZlsrRXNIHSwgFQ1bEdjRwMT3aoadeIF6HMuDRlOxzfXV8ig==", - "bin": { - "nanoid": "bin/nanoid.js" - }, - "engines": { - "node": "^18 || >=20" - } - }, - "node_modules/node-fetch-native": { - "version": "1.4.1", - "resolved": "https://registry.npmmirror.com/node-fetch-native/-/node-fetch-native-1.4.1.tgz", - "integrity": "sha512-NsXBU0UgBxo2rQLOeWNZqS3fvflWePMECr8CoSWoSTqCqGbVVsvl9vZu1HfQicYN0g5piV9Gh8RTEvo/uP752w==" - }, - "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" - }, - "node_modules/non-layered-tidy-tree-layout": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/non-layered-tidy-tree-layout/-/non-layered-tidy-tree-layout-2.0.2.tgz", - "integrity": "sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw==" - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-url": { - "version": "8.0.0", - "resolved": "https://registry.npmmirror.com/normalize-url/-/normalize-url-8.0.0.tgz", - "integrity": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==", - "engines": { - "node": ">=14.16" - } - }, - "node_modules/npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/npm-run-path/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "engines": { - "node": ">=12" - } - }, - "node_modules/ofetch": { - "version": "1.3.3", - "resolved": "https://registry.npmmirror.com/ofetch/-/ofetch-1.3.3.tgz", - "integrity": "sha512-s1ZCMmQWXy4b5K/TW9i/DtiN8Ku+xCiHcjQ6/J/nDdssirrQNOoB165Zu8EqLMA2lln1JUth9a0aW9Ap2ctrUg==", - "dependencies": { - "destr": "^2.0.1", - "node-fetch-native": "^1.4.0", - "ufo": "^1.3.0" - } - }, - "node_modules/ohash": { - "version": "1.1.3", - "resolved": "https://registry.npmmirror.com/ohash/-/ohash-1.1.3.tgz", - "integrity": "sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==", - "optional": true - }, - "node_modules/on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmmirror.com/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmmirror.com/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/open": { - "version": "9.1.0", - "resolved": "https://registry.npmmirror.com/open/-/open-9.1.0.tgz", - "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", - "dependencies": { - "default-browser": "^4.0.0", - "define-lazy-prop": "^3.0.0", - "is-inside-container": "^1.0.0", - "is-wsl": "^2.2.0" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/openurl": { - "version": "1.1.1", - "resolved": "https://registry.npmmirror.com/openurl/-/openurl-1.1.1.tgz", - "integrity": "sha512-d/gTkTb1i1GKz5k3XE3XFV/PxQ1k45zDqGP2OA7YhgsaLoqm6qRvARAZOFer1fcXritWlGBRCu/UgeS4HAnXAA==" - }, - "node_modules/p-cancelable": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/p-cancelable/-/p-cancelable-3.0.0.tgz", - "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==", - "engines": { - "node": ">=12.20" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/pako": { - "version": "1.0.11", - "resolved": "https://registry.npmmirror.com/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" - }, - "node_modules/parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmmirror.com/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", - "dependencies": { - "entities": "^4.4.0" - } - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "node_modules/path-type": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/path-type/-/path-type-5.0.0.tgz", - "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", - "optional": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/pathe": { - "version": "1.1.1", - "resolved": "https://registry.npmmirror.com/pathe/-/pathe-1.1.1.tgz", - "integrity": "sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==" - }, - "node_modules/pdf-lib": { - "version": "1.17.1", - "resolved": "https://registry.npmmirror.com/pdf-lib/-/pdf-lib-1.17.1.tgz", - "integrity": "sha512-V/mpyJAoTsN4cnP31vc0wfNA1+p20evqqnap0KLoRUN0Yk/p3wN52DOEsL4oBFcLdb76hlpKPtzJIgo67j/XLw==", - "dependencies": { - "@pdf-lib/standard-fonts": "^1.0.0", - "@pdf-lib/upng": "^1.0.1", - "pako": "^1.0.11", - "tslib": "^1.11.1" - } - }, - "node_modules/pdf-lib/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmmirror.com/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, - "node_modules/perfect-debounce": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/perfect-debounce/-/perfect-debounce-1.0.0.tgz", - "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==" - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "engines": { - "node": ">=8.6" - } - }, - "node_modules/pkg-types": { - "version": "1.0.3", - "resolved": "https://registry.npmmirror.com/pkg-types/-/pkg-types-1.0.3.tgz", - "integrity": "sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==", - "dependencies": { - "jsonc-parser": "^3.2.0", - "mlly": "^1.2.0", - "pathe": "^1.1.0" - } - }, - "node_modules/plantuml-encoder": { - "version": "1.4.0", - "resolved": "https://registry.npmmirror.com/plantuml-encoder/-/plantuml-encoder-1.4.0.tgz", - "integrity": "sha512-sxMwpDw/ySY1WB2CE3+IdMuEcWibJ72DDOsXLkSmEaSzwEUaYBT6DWgOfBiHGCux4q433X6+OEFWjlVqp7gL6g==" - }, - "node_modules/playwright-chromium": { - "version": "1.40.1", - "resolved": "https://registry.npmmirror.com/playwright-chromium/-/playwright-chromium-1.40.1.tgz", - "integrity": "sha512-3atylP47OCTBW0siGI7LOEG/XKL/vnrFH8xdr4uaTnqMsc0Xq4gOLk2gGwniPJ76LSc++9ASc0w/nfqtLAmm3A==", - "devOptional": true, - "hasInstallScript": true, - "dependencies": { - "playwright-core": "1.40.1" - }, - "bin": { - "playwright": "cli.js" - }, - "engines": { - "node": ">=16" - } - }, - "node_modules/playwright-core": { - "version": "1.40.1", - "resolved": "https://registry.npmmirror.com/playwright-core/-/playwright-core-1.40.1.tgz", - "integrity": "sha512-+hkOycxPiV534c4HhpfX6yrlawqVUzITRKwHAmYfmsVreltEl6fAZJ3DPfLMOODw0H3s1Itd6MDCWmP1fl/QvQ==", - "devOptional": true, - "bin": { - "playwright-core": "cli.js" - }, - "engines": { - "node": ">=16" - } - }, - "node_modules/popmotion": { - "version": "11.0.5", - "resolved": "https://registry.npmmirror.com/popmotion/-/popmotion-11.0.5.tgz", - "integrity": "sha512-la8gPM1WYeFznb/JqF4GiTkRRPZsfaj2+kCxqQgr2MJylMmIKUwBfWW8Wa5fml/8gmtlD5yI01MP1QCZPWmppA==", - "dependencies": { - "framesync": "6.1.2", - "hey-listen": "^1.0.8", - "style-value-types": "5.1.2", - "tslib": "2.4.0" - } - }, - "node_modules/postcss": { - "version": "8.4.32", - "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.4.32.tgz", - "integrity": "sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==", - "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-nested": { - "version": "6.0.1", - "resolved": "https://registry.npmmirror.com/postcss-nested/-/postcss-nested-6.0.1.tgz", - "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", - "dependencies": { - "postcss-selector-parser": "^6.0.11" - }, - "engines": { - "node": ">=12.0" - }, - "peerDependencies": { - "postcss": "^8.2.14" - } - }, - "node_modules/postcss-selector-parser": { - "version": "6.0.13", - "resolved": "https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", - "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss/node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/prettier": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/prettier/-/prettier-3.1.0.tgz", - "integrity": "sha512-TQLvXjq5IAibjh8EpBIkNKxO749UEWABoiIZehEPiY4GNpVdhaFKqSTu+QrlU6D2dPAfubRmtJTi4K4YkQ5eXw==", - "bin": { - "prettier": "bin/prettier.cjs" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/prism-theme-vars": { - "version": "0.2.4", - "resolved": "https://registry.npmmirror.com/prism-theme-vars/-/prism-theme-vars-0.2.4.tgz", - "integrity": "sha512-B3Pht+GCT87sZph7hMRLlCQXzCM0awW7Rhk08RavpqRW4LEQOeqN0uMG4QCWkul2tr8PB61YAOJGUrEW+1uuJA==" - }, - "node_modules/prismjs": { - "version": "1.29.0", - "resolved": "https://registry.npmmirror.com/prismjs/-/prismjs-1.29.0.tgz", - "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==", - "engines": { - "node": ">=6" - } - }, - "node_modules/prompts": { - "version": "2.4.2", - "resolved": "https://registry.npmmirror.com/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", - "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/property-information": { - "version": "6.4.0", - "resolved": "https://registry.npmmirror.com/property-information/-/property-information-6.4.0.tgz", - "integrity": "sha512-9t5qARVofg2xQqKtytzt+lZ4d1Qvj8t5B8fEwXK6qOfgRLgH/b13QlgEyDh033NOS31nXeFbYv7CLUDG1CeifQ==" - }, - "node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - }, - "node_modules/public-ip": { - "version": "6.0.1", - "resolved": "https://registry.npmmirror.com/public-ip/-/public-ip-6.0.1.tgz", - "integrity": "sha512-1/Mxa1MKrAQ4jF5IalECSBtB0W1FAtnG+9c5X16jjvV/Gx9fiRy7xXIrHlBGYjnTlai0zdZkM3LrpmASavmAEg==", - "dependencies": { - "aggregate-error": "^4.0.1", - "dns-socket": "^4.2.2", - "got": "^12.1.0", - "is-ip": "^4.0.0" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" - }, - "node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmmirror.com/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", - "engines": { - "node": ">=10" - } - }, - "node_modules/rc9": { - "version": "2.1.1", - "resolved": "https://registry.npmmirror.com/rc9/-/rc9-2.1.1.tgz", - "integrity": "sha512-lNeOl38Ws0eNxpO3+wD1I9rkHGQyj1NU1jlzv4go2CtEnEQEUfqnIvZG7W+bC/aXdJ27n5x/yUjb6RoT9tko+Q==", - "optional": true, - "dependencies": { - "defu": "^6.1.2", - "destr": "^2.0.0", - "flat": "^5.0.2" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/recordrtc": { - "version": "5.6.2", - "resolved": "https://registry.npmmirror.com/recordrtc/-/recordrtc-5.6.2.tgz", - "integrity": "sha512-1QNKKNtl7+KcwD1lyOgP3ZlbiJ1d0HtXnypUy7yq49xEERxk31PHvE9RCciDrulPCY7WJ+oz0R9hpNxgsIurGQ==" - }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmmirror.com/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - } - }, - "node_modules/resolve-alpn": { - "version": "1.2.1", - "resolved": "https://registry.npmmirror.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz", - "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" - }, - "node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-global": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/resolve-global/-/resolve-global-2.0.0.tgz", - "integrity": "sha512-gnAQ0Q/KkupGkuiMyX4L0GaBV8iFwlmoXsMtOz+DFTaKmHhOO/dSlP1RMKhpvHv/dh6K/IQkowGJBqUG0NfBUw==", - "dependencies": { - "global-directory": "^4.0.1" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/responselike": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/responselike/-/responselike-3.0.0.tgz", - "integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==", - "dependencies": { - "lowercase-keys": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/robust-predicates": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/robust-predicates/-/robust-predicates-3.0.2.tgz", - "integrity": "sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==" - }, - "node_modules/rollup": { - "version": "3.29.4", - "resolved": "https://registry.npmmirror.com/rollup/-/rollup-3.29.4.tgz", - "integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==", - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=14.18.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/run-applescript": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/run-applescript/-/run-applescript-5.0.0.tgz", - "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", - "dependencies": { - "execa": "^5.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/run-applescript/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/run-applescript/node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmmirror.com/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/run-applescript/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/run-applescript/node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/run-applescript/node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/run-applescript/node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/run-applescript/node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/rw": { - "version": "1.3.3", - "resolved": "https://registry.npmmirror.com/rw/-/rw-1.3.3.tgz", - "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==" - }, - "node_modules/sade": { - "version": "1.8.1", - "resolved": "https://registry.npmmirror.com/sade/-/sade-1.8.1.tgz", - "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", - "dependencies": { - "mri": "^1.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "node_modules/scule": { - "version": "1.1.1", - "resolved": "https://registry.npmmirror.com/scule/-/scule-1.1.1.tgz", - "integrity": "sha512-sHtm/SsIK9BUBI3EFT/Gnp9VoKfY6QLvlkvAE6YK7454IF8FSgJEAnJpVdSC7K5/pjI5NfxhzBLW2JAfYA/shQ==", - "optional": true - }, - "node_modules/section-matter": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/section-matter/-/section-matter-1.0.0.tgz", - "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==", - "dependencies": { - "extend-shallow": "^2.0.1", - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "engines": { - "node": ">=8" - } - }, - "node_modules/shiki": { - "name": "shikiji-compat", - "version": "0.6.13", - "resolved": "https://registry.npmmirror.com/shikiji-compat/-/shikiji-compat-0.6.13.tgz", - "integrity": "sha512-PS6kUCD6a1+24x66HVVEDXPO+bxNXcN1dxCJaN45ZUZ0LHM2DWXF4w4rhQ/GmNrTUpvM/gMamOMsX6r6bmsxxQ==", - "dependencies": { - "shikiji": "0.6.13" - } - }, - "node_modules/shikiji": { - "version": "0.6.13", - "resolved": "https://registry.npmmirror.com/shikiji/-/shikiji-0.6.13.tgz", - "integrity": "sha512-4T7X39csvhT0p7GDnq9vysWddf2b6BeioiN3Ymhnt3xcy9tXmDcnsEFVxX18Z4YcQgEE/w48dLJ4pPPUcG9KkA==", - "dependencies": { - "hast-util-to-html": "^9.0.0" - } - }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" - }, - "node_modules/sirv": { - "version": "2.0.3", - "resolved": "https://registry.npmmirror.com/sirv/-/sirv-2.0.3.tgz", - "integrity": "sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==", - "dependencies": { - "@polka/url": "^1.0.0-next.20", - "mrmime": "^1.0.0", - "totalist": "^3.0.0" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmmirror.com/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" - }, - "node_modules/slash": { - "version": "5.1.0", - "resolved": "https://registry.npmmirror.com/slash/-/slash-5.1.0.tgz", - "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", - "optional": true, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/space-separated-tokens": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", - "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==" - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmmirror.com/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - }, - "node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmmirror.com/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/std-env": { - "version": "3.6.0", - "resolved": "https://registry.npmmirror.com/std-env/-/std-env-3.6.0.tgz", - "integrity": "sha512-aFZ19IgVmhdB2uX599ve2kE6BIE3YMnQ6Gp6BURhW/oIzpXGKr878TQfAQZn1+i0Flcc/UKUy1gOlcfaUBCryg==", - "optional": true - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/stringify-entities": { - "version": "4.0.3", - "resolved": "https://registry.npmmirror.com/stringify-entities/-/stringify-entities-4.0.3.tgz", - "integrity": "sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==", - "dependencies": { - "character-entities-html4": "^2.0.0", - "character-entities-legacy": "^3.0.0" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom-string": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz", - "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "engines": { - "node": ">=12" - } - }, - "node_modules/strip-literal": { - "version": "1.3.0", - "resolved": "https://registry.npmmirror.com/strip-literal/-/strip-literal-1.3.0.tgz", - "integrity": "sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==", - "optional": true, - "dependencies": { - "acorn": "^8.10.0" - } - }, - "node_modules/style-value-types": { - "version": "5.1.2", - "resolved": "https://registry.npmmirror.com/style-value-types/-/style-value-types-5.1.2.tgz", - "integrity": "sha512-Vs9fNreYF9j6W2VvuDTP7kepALi7sk0xtk2Tu8Yxi9UoajJdEVpNpCov0HsLTqXvNGKX+Uv09pkozVITi1jf3Q==", - "dependencies": { - "hey-listen": "^1.0.8", - "tslib": "2.4.0" - } - }, - "node_modules/stylis": { - "version": "4.3.0", - "resolved": "https://registry.npmmirror.com/stylis/-/stylis-4.3.0.tgz", - "integrity": "sha512-E87pIogpwUsUwXw7dNyU4QDjdgVMy52m+XEOPEKUn161cCzWjjhPSQhByfd1CcNvrOLnXQ6OnnZDwnJrz/Z4YQ==" - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/svg-tags": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/svg-tags/-/svg-tags-1.0.0.tgz", - "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==" - }, - "node_modules/tar": { - "version": "6.2.0", - "resolved": "https://registry.npmmirror.com/tar/-/tar-6.2.0.tgz", - "integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==", - "optional": true, - "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/tar/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "optional": true - }, - "node_modules/theme-vitesse": { - "version": "0.1.14", - "resolved": "https://registry.npmmirror.com/theme-vitesse/-/theme-vitesse-0.1.14.tgz", - "integrity": "sha512-b5s+Zpfaw5+djoCJ9AEbcTbpiTlLsOvGM9oblDmmWRGWNqg9oXtEYO/uwubwx77novHBI6zNuwZRHKNlAIBo4A==", - "engines": { - "vscode": "^1.43.0" - } - }, - "node_modules/titleize": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/titleize/-/titleize-3.0.0.tgz", - "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", - "engines": { - "node": ">=12" - } - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/totalist": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/totalist/-/totalist-3.0.1.tgz", - "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/trim-lines": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/trim-lines/-/trim-lines-3.0.1.tgz", - "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==" - }, - "node_modules/ts-dedent": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/ts-dedent/-/ts-dedent-2.2.0.tgz", - "integrity": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==", - "engines": { - "node": ">=6.10" - } - }, - "node_modules/tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - }, - "node_modules/uc.micro": { - "version": "1.0.6", - "resolved": "https://registry.npmmirror.com/uc.micro/-/uc.micro-1.0.6.tgz", - "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==" - }, - "node_modules/ufo": { - "version": "1.3.2", - "resolved": "https://registry.npmmirror.com/ufo/-/ufo-1.3.2.tgz", - "integrity": "sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==" - }, - "node_modules/unconfig": { - "version": "0.3.11", - "resolved": "https://registry.npmmirror.com/unconfig/-/unconfig-0.3.11.tgz", - "integrity": "sha512-bV/nqePAKv71v3HdVUn6UefbsDKQWRX+bJIkiSm0+twIds6WiD2bJLWWT3i214+J/B4edufZpG2w7Y63Vbwxow==", - "dependencies": { - "@antfu/utils": "^0.7.6", - "defu": "^6.1.2", - "jiti": "^1.20.0", - "mlly": "^1.4.2" - } - }, - "node_modules/unctx": { - "version": "2.3.1", - "resolved": "https://registry.npmmirror.com/unctx/-/unctx-2.3.1.tgz", - "integrity": "sha512-PhKke8ZYauiqh3FEMVNm7ljvzQiph0Mt3GBRve03IJm7ukfaON2OBK795tLwhbyfzknuRRkW0+Ze+CQUmzOZ+A==", - "optional": true, - "dependencies": { - "acorn": "^8.8.2", - "estree-walker": "^3.0.3", - "magic-string": "^0.30.0", - "unplugin": "^1.3.1" - } - }, - "node_modules/unhead": { - "version": "1.8.8", - "resolved": "https://registry.npmmirror.com/unhead/-/unhead-1.8.8.tgz", - "integrity": "sha512-SfUJ2kjz1NcfvdM+uEAlN11h31wHqMg0HZ5jriuRPjMCj5O7lPs4uSMdBUYh3KEo0uLKrW76FM85ONXkyZfm3g==", - "dependencies": { - "@unhead/dom": "1.8.8", - "@unhead/schema": "1.8.8", - "@unhead/shared": "1.8.8", - "hookable": "^5.5.3" - } - }, - "node_modules/unicorn-magic": { - "version": "0.1.0", - "resolved": "https://registry.npmmirror.com/unicorn-magic/-/unicorn-magic-0.1.0.tgz", - "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", - "optional": true, - "engines": { - "node": ">=18" - } - }, - "node_modules/unimport": { - "version": "3.6.0", - "resolved": "https://registry.npmmirror.com/unimport/-/unimport-3.6.0.tgz", - "integrity": "sha512-yXW3Z30yk1vX8fxO8uHlq9wY9K+L56LHp4Hlbv8i7tW+NENSOv8AaFJUPtOQchxlT7/JBAzCtkrBtcVjKIr1VQ==", - "optional": true, - "dependencies": { - "@rollup/pluginutils": "^5.0.5", - "escape-string-regexp": "^5.0.0", - "fast-glob": "^3.3.2", - "local-pkg": "^0.5.0", - "magic-string": "^0.30.5", - "mlly": "^1.4.2", - "pathe": "^1.1.1", - "pkg-types": "^1.0.3", - "scule": "^1.1.0", - "strip-literal": "^1.3.0", - "unplugin": "^1.5.1" - } - }, - "node_modules/unimport/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "optional": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/unist-util-is": { - "version": "6.0.0", - "resolved": "https://registry.npmmirror.com/unist-util-is/-/unist-util-is-6.0.0.tgz", - "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", - "dependencies": { - "@types/unist": "^3.0.0" - } - }, - "node_modules/unist-util-is/node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==" - }, - "node_modules/unist-util-position": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/unist-util-position/-/unist-util-position-5.0.0.tgz", - "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", - "dependencies": { - "@types/unist": "^3.0.0" - } - }, - "node_modules/unist-util-position/node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==" - }, - "node_modules/unist-util-stringify-position": { - "version": "3.0.3", - "resolved": "https://registry.npmmirror.com/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", - "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", - "dependencies": { - "@types/unist": "^2.0.0" - } - }, - "node_modules/unist-util-visit": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/unist-util-visit/-/unist-util-visit-5.0.0.tgz", - "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", - "dependencies": { - "@types/unist": "^3.0.0", - "unist-util-is": "^6.0.0", - "unist-util-visit-parents": "^6.0.0" - } - }, - "node_modules/unist-util-visit-parents": { - "version": "6.0.1", - "resolved": "https://registry.npmmirror.com/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz", - "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==", - "dependencies": { - "@types/unist": "^3.0.0", - "unist-util-is": "^6.0.0" - } - }, - "node_modules/unist-util-visit-parents/node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==" - }, - "node_modules/unist-util-visit/node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==" - }, - "node_modules/universalify": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/unocss": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/unocss/-/unocss-0.57.7.tgz", - "integrity": "sha512-Z99ZZPkbkjIUXEM7L+K/7Y5V5yqUS0VigG7ZIFzLf/npieKmXHKlrPyvQWFQaf3OqooMFuKBQivh75TwvSOkcQ==", - "dependencies": { - "@unocss/astro": "0.57.7", - "@unocss/cli": "0.57.7", - "@unocss/core": "0.57.7", - "@unocss/extractor-arbitrary-variants": "0.57.7", - "@unocss/postcss": "0.57.7", - "@unocss/preset-attributify": "0.57.7", - "@unocss/preset-icons": "0.57.7", - "@unocss/preset-mini": "0.57.7", - "@unocss/preset-tagify": "0.57.7", - "@unocss/preset-typography": "0.57.7", - "@unocss/preset-uno": "0.57.7", - "@unocss/preset-web-fonts": "0.57.7", - "@unocss/preset-wind": "0.57.7", - "@unocss/reset": "0.57.7", - "@unocss/transformer-attributify-jsx": "0.57.7", - "@unocss/transformer-attributify-jsx-babel": "0.57.7", - "@unocss/transformer-compile-class": "0.57.7", - "@unocss/transformer-directives": "0.57.7", - "@unocss/transformer-variant-group": "0.57.7", - "@unocss/vite": "0.57.7" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@unocss/webpack": "0.57.7", - "vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0" - }, - "peerDependenciesMeta": { - "@unocss/webpack": { - "optional": true - }, - "vite": { - "optional": true - } - } - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/unplugin": { - "version": "1.5.1", - "resolved": "https://registry.npmmirror.com/unplugin/-/unplugin-1.5.1.tgz", - "integrity": "sha512-0QkvG13z6RD+1L1FoibQqnvTwVBXvS4XSPwAyinVgoOCl2jAgwzdUKmEj05o4Lt8xwQI85Hb6mSyYkcAGwZPew==", - "dependencies": { - "acorn": "^8.11.2", - "chokidar": "^3.5.3", - "webpack-sources": "^3.2.3", - "webpack-virtual-modules": "^0.6.0" - } - }, - "node_modules/unplugin-icons": { - "version": "0.17.4", - "resolved": "https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.17.4.tgz", - "integrity": "sha512-PHLxjBx3ZV8RUBvfMafFl8uWH88jHeZgOijcRpkwgne7y2Ovx7WI0Ltzzw3fjZQ7dGaDhB8udyKVdm9N2S6BIw==", - "dependencies": { - "@antfu/install-pkg": "^0.1.1", - "@antfu/utils": "^0.7.6", - "@iconify/utils": "^2.1.11", - "debug": "^4.3.4", - "kolorist": "^1.8.0", - "local-pkg": "^0.5.0", - "unplugin": "^1.5.0" - }, - "peerDependencies": { - "@svgr/core": ">=7.0.0", - "@svgx/core": "^1.0.1", - "@vue/compiler-sfc": "^3.0.2 || ^2.7.0", - "vue-template-compiler": "^2.6.12", - "vue-template-es2015-compiler": "^1.9.0" - }, - "peerDependenciesMeta": { - "@svgr/core": { - "optional": true - }, - "@svgx/core": { - "optional": true - }, - "@vue/compiler-sfc": { - "optional": true - }, - "vue-template-compiler": { - "optional": true - }, - "vue-template-es2015-compiler": { - "optional": true - } - } - }, - "node_modules/unplugin-vue-components": { - "version": "0.25.2", - "resolved": "https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.25.2.tgz", - "integrity": "sha512-OVmLFqILH6w+eM8fyt/d/eoJT9A6WO51NZLf1vC5c1FZ4rmq2bbGxTy8WP2Jm7xwFdukaIdv819+UI7RClPyCA==", - "dependencies": { - "@antfu/utils": "^0.7.5", - "@rollup/pluginutils": "^5.0.2", - "chokidar": "^3.5.3", - "debug": "^4.3.4", - "fast-glob": "^3.3.0", - "local-pkg": "^0.4.3", - "magic-string": "^0.30.1", - "minimatch": "^9.0.3", - "resolve": "^1.22.2", - "unplugin": "^1.4.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@babel/parser": "^7.15.8", - "@nuxt/kit": "^3.2.2", - "vue": "2 || 3" - }, - "peerDependenciesMeta": { - "@babel/parser": { - "optional": true - }, - "@nuxt/kit": { - "optional": true - } - } - }, - "node_modules/unplugin-vue-components/node_modules/local-pkg": { - "version": "0.4.3", - "resolved": "https://registry.npmmirror.com/local-pkg/-/local-pkg-0.4.3.tgz", - "integrity": "sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==", - "engines": { - "node": ">=14" - } - }, - "node_modules/unplugin-vue-markdown": { - "version": "0.25.2", - "resolved": "https://registry.npmmirror.com/unplugin-vue-markdown/-/unplugin-vue-markdown-0.25.2.tgz", - "integrity": "sha512-bDDWqtK1PUkWK/+kczOk33hqO5WulOUx5ZxfbCZuVArcUSwY7aB2vf4e2K+qdrlxalxkpjIA64z/liOrC/cjiQ==", - "dependencies": { - "@mdit-vue/plugin-component": "^1.0.0", - "@mdit-vue/plugin-frontmatter": "^1.0.0", - "@mdit-vue/types": "^1.0.0", - "@rollup/pluginutils": "^5.0.5", - "@types/markdown-it": "^13.0.6", - "markdown-it": "^13.0.2", - "unplugin": "^1.5.0" - }, - "peerDependencies": { - "vite": "^2.0.0 || ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0" - } - }, - "node_modules/untildify": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/untildify/-/untildify-4.0.0.tgz", - "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/untyped": { - "version": "1.4.0", - "resolved": "https://registry.npmmirror.com/untyped/-/untyped-1.4.0.tgz", - "integrity": "sha512-Egkr/s4zcMTEuulcIb7dgURS6QpN7DyqQYdf+jBtiaJvQ+eRsrtWUoX84SbvQWuLkXsOjM+8sJC9u6KoMK/U7Q==", - "optional": true, - "dependencies": { - "@babel/core": "^7.22.9", - "@babel/standalone": "^7.22.9", - "@babel/types": "^7.22.5", - "defu": "^6.1.2", - "jiti": "^1.19.1", - "mri": "^1.2.0", - "scule": "^1.0.0" - }, - "bin": { - "untyped": "dist/cli.mjs" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.13", - "resolved": "https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", - "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/uqr": { - "version": "0.1.2", - "resolved": "https://registry.npmmirror.com/uqr/-/uqr-0.1.2.tgz", - "integrity": "sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==" - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmmirror.com/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/uuid": { - "version": "9.0.1", - "resolved": "https://registry.npmmirror.com/uuid/-/uuid-9.0.1.tgz", - "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/uvu": { - "version": "0.5.6", - "resolved": "https://registry.npmmirror.com/uvu/-/uvu-0.5.6.tgz", - "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==", - "dependencies": { - "dequal": "^2.0.0", - "diff": "^5.0.0", - "kleur": "^4.0.3", - "sade": "^1.7.3" - }, - "bin": { - "uvu": "bin.js" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/uvu/node_modules/kleur": { - "version": "4.1.5", - "resolved": "https://registry.npmmirror.com/kleur/-/kleur-4.1.5.tgz", - "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/vfile": { - "version": "6.0.1", - "resolved": "https://registry.npmmirror.com/vfile/-/vfile-6.0.1.tgz", - "integrity": "sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==", - "dependencies": { - "@types/unist": "^3.0.0", - "unist-util-stringify-position": "^4.0.0", - "vfile-message": "^4.0.0" - } - }, - "node_modules/vfile-location": { - "version": "5.0.2", - "resolved": "https://registry.npmmirror.com/vfile-location/-/vfile-location-5.0.2.tgz", - "integrity": "sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==", - "dependencies": { - "@types/unist": "^3.0.0", - "vfile": "^6.0.0" - } - }, - "node_modules/vfile-location/node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==" - }, - "node_modules/vfile-message": { - "version": "4.0.2", - "resolved": "https://registry.npmmirror.com/vfile-message/-/vfile-message-4.0.2.tgz", - "integrity": "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==", - "dependencies": { - "@types/unist": "^3.0.0", - "unist-util-stringify-position": "^4.0.0" - } - }, - "node_modules/vfile-message/node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==" - }, - "node_modules/vfile-message/node_modules/unist-util-stringify-position": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", - "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", - "dependencies": { - "@types/unist": "^3.0.0" - } - }, - "node_modules/vfile/node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==" - }, - "node_modules/vfile/node_modules/unist-util-stringify-position": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", - "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", - "dependencies": { - "@types/unist": "^3.0.0" - } - }, - "node_modules/vite": { - "version": "4.5.0", - "resolved": "https://registry.npmmirror.com/vite/-/vite-4.5.0.tgz", - "integrity": "sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==", - "dependencies": { - "esbuild": "^0.18.10", - "postcss": "^8.4.27", - "rollup": "^3.27.1" - }, - "bin": { - "vite": "bin/vite.js" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - }, - "peerDependencies": { - "@types/node": ">= 14", - "less": "*", - "lightningcss": "^1.21.0", - "sass": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "lightningcss": { - "optional": true - }, - "sass": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - } - } - }, - "node_modules/vite-plugin-inspect": { - "version": "0.7.42", - "resolved": "https://registry.npmmirror.com/vite-plugin-inspect/-/vite-plugin-inspect-0.7.42.tgz", - "integrity": "sha512-JCyX86wr3siQc+p9Kd0t8VkFHAJag0RaQVIpdFGSv5FEaePEVB6+V/RGtz2dQkkGSXQzRWrPs4cU3dRKg32bXw==", - "dependencies": { - "@antfu/utils": "^0.7.6", - "@rollup/pluginutils": "^5.0.5", - "debug": "^4.3.4", - "error-stack-parser-es": "^0.1.1", - "fs-extra": "^11.1.1", - "open": "^9.1.0", - "picocolors": "^1.0.0", - "sirv": "^2.0.3" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "vite": "^3.1.0 || ^4.0.0 || ^5.0.0-0" - }, - "peerDependenciesMeta": { - "@nuxt/kit": { - "optional": true - } - } - }, - "node_modules/vite-plugin-remote-assets": { - "version": "0.3.2", - "resolved": "https://registry.npmmirror.com/vite-plugin-remote-assets/-/vite-plugin-remote-assets-0.3.2.tgz", - "integrity": "sha512-E0xS2fHpoJffpsU4W82XDaBRxx2Yh4Zwl4Q668V/HXa/b0nNDaQyo5ff5tS6D4pwGBVuAKlGYyUEE63P/RfiwA==", - "dependencies": { - "axios": "^1.3.4", - "debug": "^4.3.4", - "fs-extra": "^11.1.1", - "magic-string": "^0.30.0" - }, - "peerDependencies": { - "vite": "^2.0.0 || ^3.0.0 || ^4.0.0" - } - }, - "node_modules/vite-plugin-remote-assets/node_modules/axios": { - "version": "1.6.2", - "resolved": "https://registry.npmmirror.com/axios/-/axios-1.6.2.tgz", - "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", - "dependencies": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - } - }, - "node_modules/vite-plugin-static-copy": { - "version": "0.17.1", - "resolved": "https://registry.npmmirror.com/vite-plugin-static-copy/-/vite-plugin-static-copy-0.17.1.tgz", - "integrity": "sha512-9h3iaVs0bqnqZOM5YHJXGHqdC5VAVlTZ2ARYsuNpzhEJUHmFqXY7dAK4ZFpjEQ4WLFKcaN8yWbczr81n01U4sQ==", - "dependencies": { - "chokidar": "^3.5.3", - "fast-glob": "^3.2.11", - "fs-extra": "^11.1.0", - "picocolors": "^1.0.0" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "peerDependencies": { - "vite": "^3.0.0 || ^4.0.0 || ^5.0.0" - } - }, - "node_modules/vite-plugin-vue-server-ref": { - "version": "0.3.4", - "resolved": "https://registry.npmmirror.com/vite-plugin-vue-server-ref/-/vite-plugin-vue-server-ref-0.3.4.tgz", - "integrity": "sha512-thZVfz+FX4wGMTBvlJFc0tN496XnfSychi50aV9n+FsJqDvJYTCASVrXmdkKM+2Jpu0CUg8YzfCQfJXFgcCgHg==", - "dependencies": { - "debug": "^4.3.4", - "ufo": "^1.1.2" - }, - "peerDependencies": { - "vite": "^2.0.0 || ^3.0.0 || ^4.0.0", - "vue": "^3.0.0" - } - }, - "node_modules/vite-plugin-windicss": { - "version": "1.9.2", - "resolved": "https://registry.npmmirror.com/vite-plugin-windicss/-/vite-plugin-windicss-1.9.2.tgz", - "integrity": "sha512-QRWOFgdsbj00DNHm8vM51gbSQeuyXC73uGtp//cMHMeMstFD83fbX7x6MmpjC04dijWMxyAuD90sUD0Q/pjnnQ==", - "dependencies": { - "@windicss/plugin-utils": "1.9.2", - "debug": "^4.3.4", - "kolorist": "^1.8.0", - "windicss": "^3.5.6" - }, - "peerDependencies": { - "vite": "^2.0.1 || ^3.0.0 || ^4.0.0 || ^5.0.0" - } - }, - "node_modules/vitefu": { - "version": "0.2.5", - "resolved": "https://registry.npmmirror.com/vitefu/-/vitefu-0.2.5.tgz", - "integrity": "sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==", - "peerDependencies": { - "vite": "^3.0.0 || ^4.0.0 || ^5.0.0" - }, - "peerDependenciesMeta": { - "vite": { - "optional": true - } - } - }, - "node_modules/vue": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/vue/-/vue-3.3.9.tgz", - "integrity": "sha512-sy5sLCTR8m6tvUk1/ijri3Yqzgpdsmxgj6n6yl7GXXCXqVbmW2RCXe9atE4cEI6Iv7L89v5f35fZRRr5dChP9w==", - "dependencies": { - "@vue/compiler-dom": "3.3.9", - "@vue/compiler-sfc": "3.3.9", - "@vue/runtime-dom": "3.3.9", - "@vue/server-renderer": "3.3.9", - "@vue/shared": "3.3.9" - }, - "peerDependencies": { - "typescript": "*" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/vue-router": { - "version": "4.2.5", - "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-4.2.5.tgz", - "integrity": "sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==", - "dependencies": { - "@vue/devtools-api": "^6.5.0" - }, - "peerDependencies": { - "vue": "^3.2.0" - } - }, - "node_modules/vue-starport": { - "version": "0.4.0", - "resolved": "https://registry.npmmirror.com/vue-starport/-/vue-starport-0.4.0.tgz", - "integrity": "sha512-02odSlCxGyUaDam1VzNP/d/lj2p/SO3ji5pvuajXrC1Ol7iqSqIt+n/x4xoBugUIctyGyCQoJbMuoyaiyGy9ag==", - "dependencies": { - "@vueuse/core": "^10.4.1", - "vue": "^3.3.4" - } - }, - "node_modules/web-namespaces": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/web-namespaces/-/web-namespaces-2.0.1.tgz", - "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==" - }, - "node_modules/web-worker": { - "version": "1.2.0", - "resolved": "https://registry.npmmirror.com/web-worker/-/web-worker-1.2.0.tgz", - "integrity": "sha512-PgF341avzqyx60neE9DD+XS26MMNMoUQRz9NOZwW32nPQrF6p77f1htcnjBSEV8BGMKZ16choqUG4hyI0Hx7mA==" - }, - "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webpack-virtual-modules": { - "version": "0.6.1", - "resolved": "https://registry.npmmirror.com/webpack-virtual-modules/-/webpack-virtual-modules-0.6.1.tgz", - "integrity": "sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==" - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/windicss": { - "version": "3.5.6", - "resolved": "https://registry.npmmirror.com/windicss/-/windicss-3.5.6.tgz", - "integrity": "sha512-P1mzPEjgFMZLX0ZqfFht4fhV/FX8DTG7ERG1fBLiWvd34pTLVReS5CVsewKn9PApSgXnVfPWwvq+qUsRwpnwFA==", - "bin": { - "windicss": "cli/index.js" - }, - "engines": { - "node": ">= 12" - } - }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "engines": { - "node": ">=10" - } - }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - }, - "node_modules/yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmmirror.com/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "engines": { - "node": ">=12" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "engines": { - "node": ">=10" - } - }, - "node_modules/zhead": { - "version": "2.2.4", - "resolved": "https://registry.npmmirror.com/zhead/-/zhead-2.2.4.tgz", - "integrity": "sha512-8F0OI5dpWIA5IGG5NHUg9staDwz/ZPxZtvGVf01j7vHqSyZ0raHY+78atOVxRqb73AotX22uV1pXt3gYSstGag==" - }, - "node_modules/zwitch": { - "version": "2.0.4", - "resolved": "https://registry.npmmirror.com/zwitch/-/zwitch-2.0.4.tgz", - "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==" - } - } -} diff --git a/c/pancakeSort/pancake_sort/package.json b/c/pancakeSort/pancake_sort/package.json deleted file mode 100644 index 100d4cc..0000000 --- a/c/pancakeSort/pancake_sort/package.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "name": "pancake_sort", - "type": "module", - "private": true, - "scripts": { - "build": "slidev build", - "dev": "slidev --open", - "export": "slidev export" - }, - "dependencies": { - "@slidev/cli": "^0.44.0", - "@slidev/theme-default": "latest", - "@slidev/theme-seriph": "latest" - }, - "devDependencies": { - "playwright-chromium": "^1.40.1" - } -} diff --git a/c/pancakeSort/pancake_sort/pages/multiple-entries.md b/c/pancakeSort/pancake_sort/pages/multiple-entries.md deleted file mode 100644 index 5b17510..0000000 --- a/c/pancakeSort/pancake_sort/pages/multiple-entries.md +++ /dev/null @@ -1,27 +0,0 @@ -# Multiple Entries - -You can split your slides.md into multiple files and organize them as you want using the `src` attribute. - -#### `slides.md` - -```markdown -# Page 1 - -Page 2 from main entry. - ---- -src: ./subpage.md ---- -``` - -
- -#### `subpage.md` - -```markdown -# Page 2 - -Page 2 from another file. -``` - -[Learn more](https://sli.dev/guide/syntax.html#multiple-entries) diff --git a/c/pancakeSort/pancake_sort/slides.md b/c/pancakeSort/pancake_sort/slides.md deleted file mode 100644 index ca0c9e9..0000000 --- a/c/pancakeSort/pancake_sort/slides.md +++ /dev/null @@ -1,260 +0,0 @@ ---- -title: 煎饼排序(pancake sort) ---- - -# 煎饼排序(pancake sort) - -煎饼排序是一种排序方式,每次排序过程类似煎饼翻面 - ---- - -## 目录 - - - ---- - -## 题目要求 - -给你一个整数数组  `arr` ,请使用 _煎饼翻转_ 完成对数组的排序。 - -一次煎饼翻转的执行过程如下: - -- 选择一个整数  `k` ,`1 <= k <= arr.length` -- 反转子数组  `arr[0...k-1]`(下标从 0 开始) - -例如,`arr = [3,2,1,4]` ,选择  `k = 3`  进行一次煎饼翻转,反转子数组  `[3,2,1]` ,得到  `arr = [1,2,3,4]` 。 - -以数组形式返回能使 `arr` 有序的煎饼翻转操作所对应的 `k` 值序列。任何将数组排序且翻转次数在  `10 * arr.length` 范围内的有效答案都将被判断为正确。 - ---- - -## 如何解决 - -煎饼排序中,每次煎饼翻面意味着反转从顶部开始到一个位置的列表,那么按照传统的排序方式(冒泡/选择,每次只排序一个元素,将列表分为有序和无序两部分) - -> 我们可以不断将最大元素放置到无序部分的底部并扩展有序部分的大小,从而完成排序。 - ---- - -## 尝试解决子问题: - -> 将最大元素移动到无序部分的底部 - -### 考虑[3,2,1,4]的一般解法 - -1. 初始状态:`[3,2,1,4],[]` - -2. 找到有序部分最大元素`4` - -3. 将列表`array[0,3]`反转 得到`[4,1,2,3],[]` - - - 通用的将元素移动至列表顶部的方法 - -4. 将列表`array[0,3]`反转 得到`[3,2,1,4],[]` - - - 将列表无序部分翻转以将顶部元素换到底部 - -5. 扩展有序部分 缩减无序部分 得到`[3,2,1],[4]` - - 这时,最大的元素 `4` 已经位于无序部分的底部 - - 目标是将无序部分的最大元素移动到顶部,以扩展有序部分的大小 - ---- - -## 算法实现 - -基本思路: - -- 遍历无序部分,找到最大元素的索引(最大元素在无序部分底部) -- 进行两次煎饼翻转,将最大元素移动到列表顶部 - -然后: - -- 缩小无序部分的范围 -- 重复以上步骤,直到列表完全有序 - ---- - -## 算法实现(续) - -伪代码: - -``` -pancakeSort(arr): - n = arr.length - sortedIndex = n - while sortedIndex > 1: - maxIndex = findMaxIndex(arr, sortedIndex) - flip(arr, maxIndex) - flip(arr, sortedIndex - 1) - sortedIndex -= 1 -``` - ---- - -## 算法分析 - -时间复杂度:O(n^2) - -- 每次煎饼翻转的时间复杂度为 O( n + unsorted_length ) = O(n) -- 总共需要进行 n-1 次煎饼翻转操作,其中 n 为列表长度 - -空间复杂度:O(1) - -- 原地排序,不需要额外的空间 - -稳定性 : 不稳定 - -- 翻转可能导致其他元素位置顺序变化 - ---- - -## 纯 C 语言实现(非泛型) - -```c -// 数组反转 -int reverse_array(int *array, int start, int end) { - size_t i, j; - int temp; - for (i = start, j = end; i < j; i++, j--) { - temp = array[i]; - array[i] = array[j]; - array[j] = temp; - } - return 0; -} -//找最大元素 -int find_max_elem(int *array, int start, int end) { - int i; - int max_elem = start; - for (i = start + 1; i <= end; i++) { - if (array[max_elem] < array[i]) { - max_elem = i; - } - } - return max_elem; -} -``` - ---- - -## 纯 C 语言实现(非泛型)(续) - -```c {all|6-8|14,18-20|all} -// 非递归煎饼排序 -int pancakeSort_no_rec(int *unsorted_array, int sort_start, int sort_end) { - int max_elem; - int unsorted_end = sort_end; - for (; unsorted_end > 0; unsorted_end--) { - max_elem = find_max_elem(unsorted_array, sort_start, unsorted_end); - reverse_array(unsorted_array, sort_start, max_elem); - reverse_array(unsorted_array, sort_start, unsorted_end); - } - return 0; -} -//递归煎饼排序 -int pancakeSort_rec(int *unsorted_array, int start, int end) { - int max_elem = find_max_elem(unsorted_array, start, end); - if (start == end) { - return 0; - } - reverse_array(unsorted_array, start, max_elem); - reverse_array(unsorted_array, start, end); - pancakeSort(unsorted_array, start, end - 1); - return 0; -} -``` - ---- - -## 纯 C 语言实现(泛型) - -```c -// 数组反转 -int reverse_array(void *array, size_t len, size_t elem_byte_size, - int (*swap_function)(const void *a, const void *b)) { - size_t i; - for (i = 0; i < len / 2; i++) { - swap_function(((char *)array + i * elem_byte_size), - ((char *)array + (len - i - 1) * elem_byte_size)); - } - return 0; -} - -//找最大元素 -int find_max_elem(void *array, size_t len, size_t elem_byte_size, - int (*compare_function)(const void *a, const void *b)) { - size_t max_elem = 0; - size_t i; - for (i = 0; i < len; i++) { - if (compare_function((char *)array + max_elem * elem_byte_size, - (char *)array + i * elem_byte_size) < 0) { - max_elem = i; - } - } - return max_elem; -} -``` - ---- - -## 纯 C 语言实现(泛型)(续) - -```c {all|8-11|all} -// 非递归煎饼排序 -int pancakeSort_no_rec(void *unsorted_array, size_t len, size_t elem_byte_size, - int (*compare_function)(const void *a, const void *b), - int (*swap_function)(const void *a, const void *b)) { - size_t max_elem; - size_t unsorted_len = len; - for (; unsorted_len > 0; unsorted_len--) { - max_elem = find_max_elem(unsorted_array, unsorted_len, elem_byte_size, - compare_int); - reverse_array(unsorted_array, max_elem + 1, elem_byte_size, swap_int); - reverse_array(unsorted_array, unsorted_len, elem_byte_size, swap_int); - } - return 0; -} -``` - ---- - -## 纯 C 语言实现(泛型)(续) - -```c {all|8-13|all} -// 递归煎饼排序 -int pancakeSort_rec(void *unsorted_array, size_t len, size_t elem_byte_size, - int (*compare_function)(const void *a, const void *b), - int (*swap_function)(const void *a, const void *b)) { - if (len == 1) { - return 0; - } - size_t max_elem = - find_max_elem(unsorted_array, len, elem_byte_size, compare_function); - reverse_array(unsorted_array, max_elem + 1, elem_byte_size, swap_function); - reverse_array(unsorted_array, len, elem_byte_size, swap_function); - pancakeSort(unsorted_array, len - 1, elem_byte_size, compare_function, - swap_function); - - return 0; -} -``` - ---- - -## 可改进部分 - -- 当最大元素本来就在无序部分底部时无需进行煎饼翻转, 可直接进行扩展有序部分 -- 当最大元素本来就在无序部分顶部时只需翻转一次 - ---- - -## 代码运行截图 - -![替代文本](Screenshot_2023-12-03-18-49-20_5200.png) - ---- - -# That's all - -Thanks diff --git a/c/pancakeSort/pancake_sort/vercel.json b/c/pancakeSort/pancake_sort/vercel.json deleted file mode 100644 index 9276941..0000000 --- a/c/pancakeSort/pancake_sort/vercel.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "rewrites": [ - { "source": "/(.*)", "destination": "/index.html" } - ], - "buildCommand": "npm run build", - "outputDirectory": "dist" -} diff --git a/c/pancakeSort/slidev/.gitignore b/c/pancakeSort/slidev/.gitignore deleted file mode 100644 index e634ac6..0000000 --- a/c/pancakeSort/slidev/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -node_modules -.DS_Store -dist -*.local -index.html -.remote-assets -components.d.ts diff --git a/c/pancakeSort/slidev/.npmrc b/c/pancakeSort/slidev/.npmrc deleted file mode 100644 index 05932b8..0000000 --- a/c/pancakeSort/slidev/.npmrc +++ /dev/null @@ -1,3 +0,0 @@ -# for pnpm -shamefully-hoist=true -auto-install-peers=true diff --git a/c/pancakeSort/slidev/README.md b/c/pancakeSort/slidev/README.md deleted file mode 100644 index 1622a1f..0000000 --- a/c/pancakeSort/slidev/README.md +++ /dev/null @@ -1,11 +0,0 @@ -# Welcome to [Slidev](https://github.com/slidevjs/slidev)! - -To start the slide show: - -- `npm install` -- `npm run dev` -- visit http://localhost:3030 - -Edit the [slides.md](./slides.md) to see the changes. - -Learn more about Slidev on [documentations](https://sli.dev/). diff --git a/c/pancakeSort/slidev/components/Counter.vue b/c/pancakeSort/slidev/components/Counter.vue deleted file mode 100644 index eaa6a79..0000000 --- a/c/pancakeSort/slidev/components/Counter.vue +++ /dev/null @@ -1,37 +0,0 @@ - - - diff --git a/c/pancakeSort/slidev/netlify.toml b/c/pancakeSort/slidev/netlify.toml deleted file mode 100644 index 18dde11..0000000 --- a/c/pancakeSort/slidev/netlify.toml +++ /dev/null @@ -1,16 +0,0 @@ -[build.environment] - NODE_VERSION = "18" - -[build] - publish = "dist" - command = "npm run build" - -[[redirects]] - from = "/.well-known/*" - to = "/.well-known/:splat" - status = 200 - -[[redirects]] - from = "/*" - to = "/index.html" - status = 200 diff --git a/c/pancakeSort/slidev/package-lock.json b/c/pancakeSort/slidev/package-lock.json deleted file mode 100644 index c82223b..0000000 --- a/c/pancakeSort/slidev/package-lock.json +++ /dev/null @@ -1,6775 +0,0 @@ -{ - "name": "slidev", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "slidev", - "dependencies": { - "@slidev/cli": "^0.44.0", - "@slidev/theme-default": "latest", - "@slidev/theme-seriph": "latest" - } - }, - "node_modules/@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@antfu/install-pkg": { - "version": "0.1.1", - "resolved": "https://registry.npmmirror.com/@antfu/install-pkg/-/install-pkg-0.1.1.tgz", - "integrity": "sha512-LyB/8+bSfa0DFGC06zpCEfs89/XoWZwws5ygEa5D+Xsm3OfI+aXQ86VgVG7Acyef+rSZ5HE7J8rrxzrQeM3PjQ==", - "dependencies": { - "execa": "^5.1.1", - "find-up": "^5.0.0" - } - }, - "node_modules/@antfu/install-pkg/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@antfu/install-pkg/node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmmirror.com/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/@antfu/install-pkg/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@antfu/install-pkg/node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/@antfu/install-pkg/node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@antfu/install-pkg/node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@antfu/install-pkg/node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/@antfu/utils": { - "version": "0.7.6", - "resolved": "https://registry.npmmirror.com/@antfu/utils/-/utils-0.7.6.tgz", - "integrity": "sha512-pvFiLP2BeOKA/ZOS6jxx4XhKzdVLHDhGlFEaZ2flWWYf2xOqVniqpk38I04DFRyz+L0ASggl7SkItTc+ZLju4w==" - }, - "node_modules/@babel/code-frame": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.23.5.tgz", - "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", - "dependencies": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.23.5.tgz", - "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/core/-/core-7.23.5.tgz", - "integrity": "sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==", - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.5", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helpers": "^7.23.5", - "@babel/parser": "^7.23.5", - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.5", - "@babel/types": "^7.23.5", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/generator": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/generator/-/generator-7.23.5.tgz", - "integrity": "sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA==", - "dependencies": { - "@babel/types": "^7.23.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.22.15", - "resolved": "https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", - "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", - "dependencies": { - "@babel/compat-data": "^7.22.9", - "@babel/helper-validator-option": "^7.22.15", - "browserslist": "^4.21.9", - "lru-cache": "^5.1.1", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.5.tgz", - "integrity": "sha512-QELlRWxSpgdwdJzSJn4WAhKC+hvw/AtHbbrIoncKHkhKKR/luAlKkgBDcri1EzWAo8f8VvYVryEHN4tax/V67A==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-member-expression-to-functions": "^7.23.0", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.20", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.22.20", - "resolved": "https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", - "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.23.0", - "resolved": "https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", - "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", - "dependencies": { - "@babel/template": "^7.22.15", - "@babel/types": "^7.23.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.23.0", - "resolved": "https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", - "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", - "dependencies": { - "@babel/types": "^7.23.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.22.15", - "resolved": "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", - "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", - "dependencies": { - "@babel/types": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.23.3", - "resolved": "https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", - "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/helper-validator-identifier": "^7.22.20" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmmirror.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", - "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.22.5", - "resolved": "https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", - "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.22.20", - "resolved": "https://registry.npmmirror.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz", - "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-member-expression-to-functions": "^7.22.15", - "@babel/helper-optimise-call-expression": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", - "resolved": "https://registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", - "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.6", - "resolved": "https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", - "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.23.4", - "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", - "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", - "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/helpers/-/helpers-7.23.5.tgz", - "integrity": "sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==", - "dependencies": { - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.5", - "@babel/types": "^7.23.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.23.4", - "resolved": "https://registry.npmmirror.com/@babel/highlight/-/highlight-7.23.4.tgz", - "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", - "dependencies": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.23.5.tgz", - "integrity": "sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ==", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.23.3", - "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", - "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.23.3", - "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", - "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.23.3", - "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz", - "integrity": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==", - "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-typescript": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.5.tgz", - "integrity": "sha512-2fMkXEJkrmwgu2Bsv1Saxgj30IXZdJ+84lQcKKI7sm719oXs0BBw2ZENKdJdR1PjWndgLCEBNXJOri0fk7RYQA==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.23.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-typescript": "^7.23.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-typescript": { - "version": "7.23.3", - "resolved": "https://registry.npmmirror.com/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz", - "integrity": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.15", - "@babel/plugin-syntax-jsx": "^7.23.3", - "@babel/plugin-transform-modules-commonjs": "^7.23.3", - "@babel/plugin-transform-typescript": "^7.23.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/standalone": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/standalone/-/standalone-7.23.5.tgz", - "integrity": "sha512-4bqgawmyDPu+9gQhZOKh1ftCUa6BAT0KztElMcWAJgOgQJRNhmGVA0M0McedEqvGi7SbfiBBvlH13Jc47P919A==", - "optional": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/template": { - "version": "7.22.15", - "resolved": "https://registry.npmmirror.com/@babel/template/-/template-7.22.15.tgz", - "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", - "dependencies": { - "@babel/code-frame": "^7.22.13", - "@babel/parser": "^7.22.15", - "@babel/types": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/traverse/-/traverse-7.23.5.tgz", - "integrity": "sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==", - "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.23.5", - "@babel/types": "^7.23.5", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/types": { - "version": "7.23.5", - "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.23.5.tgz", - "integrity": "sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w==", - "dependencies": { - "@babel/helper-string-parser": "^7.23.4", - "@babel/helper-validator-identifier": "^7.22.20", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@braintree/sanitize-url": { - "version": "6.0.4", - "resolved": "https://registry.npmmirror.com/@braintree/sanitize-url/-/sanitize-url-6.0.4.tgz", - "integrity": "sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==" - }, - "node_modules/@drauu/core": { - "version": "0.3.7", - "resolved": "https://registry.npmmirror.com/@drauu/core/-/core-0.3.7.tgz", - "integrity": "sha512-JFTKEyVoFKHQLfYKqFrcbI2ZnHWfe2/heuDr2JUmLG9pdMJn2Gq1WMK4LuB4L1uZDfJyYjnLQ/OicZ0ePIwI0Q==" - }, - "node_modules/@esbuild/android-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.18.20.tgz", - "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", - "cpu": [ - "arm" - ], - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", - "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.18.20.tgz", - "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", - "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", - "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", - "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", - "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", - "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", - "cpu": [ - "arm" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", - "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", - "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", - "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", - "cpu": [ - "loong64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", - "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", - "cpu": [ - "mips64el" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", - "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", - "cpu": [ - "ppc64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", - "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", - "cpu": [ - "riscv64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", - "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", - "cpu": [ - "s390x" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", - "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", - "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", - "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", - "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", - "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", - "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", - "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@hedgedoc/markdown-it-plugins": { - "version": "2.1.4", - "resolved": "https://registry.npmmirror.com/@hedgedoc/markdown-it-plugins/-/markdown-it-plugins-2.1.4.tgz", - "integrity": "sha512-lJgHOasTvhPiIsx7o019xnUJ3suANVMkTIVlQ3hWiZTUp7feyxfuaRF98/gm9sl8Bg01JjNb2OIjA8l4bck/hQ==", - "dependencies": { - "@mrdrogdrog/optional": "^1.2.1", - "html-entities": "^2.4.0" - }, - "peerDependencies": { - "markdown-it": ">=12" - } - }, - "node_modules/@iconify-json/carbon": { - "version": "1.1.24", - "resolved": "https://registry.npmmirror.com/@iconify-json/carbon/-/carbon-1.1.24.tgz", - "integrity": "sha512-Sx4vj3HfQj3yP6a4QzWc1BymDO5uTOGTHeb5it/xaMa196C6+RegNUv1F+Y1h8AJ2Sv93GMI+PyMH0HyqTHEmg==", - "dependencies": { - "@iconify/types": "*" - } - }, - "node_modules/@iconify-json/ph": { - "version": "1.1.8", - "resolved": "https://registry.npmmirror.com/@iconify-json/ph/-/ph-1.1.8.tgz", - "integrity": "sha512-LtUWsiO/R2Gx4ZqHGJbJYG4XaAFkQ1+rHPQmmQ7NVTaqg7EZibB3ky1aXX12sJ2F+6z8QIpthsw3wRjReEnTig==", - "dependencies": { - "@iconify/types": "*" - } - }, - "node_modules/@iconify/types": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/@iconify/types/-/types-2.0.0.tgz", - "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==" - }, - "node_modules/@iconify/utils": { - "version": "2.1.12", - "resolved": "https://registry.npmmirror.com/@iconify/utils/-/utils-2.1.12.tgz", - "integrity": "sha512-7vf3Uk6H7TKX4QMs2gbg5KR1X9J0NJzKSRNWhMZ+PWN92l0t6Q3tj2ZxLDG07rC3ppWBtTtA4FPmkQphuEmdsg==", - "dependencies": { - "@antfu/install-pkg": "^0.1.1", - "@antfu/utils": "^0.7.5", - "@iconify/types": "^2.0.0", - "debug": "^4.3.4", - "kolorist": "^1.8.0", - "local-pkg": "^0.4.3" - } - }, - "node_modules/@iconify/utils/node_modules/local-pkg": { - "version": "0.4.3", - "resolved": "https://registry.npmmirror.com/local-pkg/-/local-pkg-0.4.3.tgz", - "integrity": "sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==", - "engines": { - "node": ">=14" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", - "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.1", - "resolved": "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", - "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.20", - "resolved": "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", - "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", - "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, - "node_modules/@leichtgewicht/ip-codec": { - "version": "2.0.4", - "resolved": "https://registry.npmmirror.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", - "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" - }, - "node_modules/@lillallol/outline-pdf": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/@lillallol/outline-pdf/-/outline-pdf-4.0.0.tgz", - "integrity": "sha512-tILGNyOdI3ukZfU19TNTDVoS0W1nSPlMxCKAm9FPV4OPL786Ur7e1CRLQZWKJP6uaMQsUqSDBCTzISs6lXWdAQ==", - "dependencies": { - "@lillallol/outline-pdf-data-structure": "^1.0.3", - "pdf-lib": "^1.16.0" - } - }, - "node_modules/@lillallol/outline-pdf-data-structure": { - "version": "1.0.3", - "resolved": "https://registry.npmmirror.com/@lillallol/outline-pdf-data-structure/-/outline-pdf-data-structure-1.0.3.tgz", - "integrity": "sha512-XlK9dERP2n9afkJ23JyJzpmesLgiOHmhqKuGgeytnT+IVGFdAsYl1wLr2o+byXNAN5fveNbc7CCI6RfBsd5FCw==" - }, - "node_modules/@mdit-vue/plugin-component": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/@mdit-vue/plugin-component/-/plugin-component-1.0.0.tgz", - "integrity": "sha512-ZXsJwxkG5yyTHARIYbR74cT4AZ0SfMokFFjiHYCbypHIeYWgJhso4+CZ8+3V9EWFG3EHlGoKNGqKp9chHnqntQ==", - "dependencies": { - "@types/markdown-it": "^13.0.1", - "markdown-it": "^13.0.1" - } - }, - "node_modules/@mdit-vue/plugin-frontmatter": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/@mdit-vue/plugin-frontmatter/-/plugin-frontmatter-1.0.0.tgz", - "integrity": "sha512-MMA7Ny+YPZA7eDOY1t4E+rKuEWO39mzDdP/M68fKdXJU6VfcGkPr7gnpnJfW2QBJ5qIvMrK/3lDAA2JBy5TfpA==", - "dependencies": { - "@mdit-vue/types": "1.0.0", - "@types/markdown-it": "^13.0.1", - "gray-matter": "^4.0.3", - "markdown-it": "^13.0.1" - } - }, - "node_modules/@mdit-vue/types": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/@mdit-vue/types/-/types-1.0.0.tgz", - "integrity": "sha512-xeF5+sHLzRNF7plbksywKCph4qli20l72of2fMlZQQ7RECvXYrRkE9+bjRFQCyULC7B8ydUYbpbkux5xJlVWyw==" - }, - "node_modules/@mrdrogdrog/optional": { - "version": "1.2.1", - "resolved": "https://registry.npmmirror.com/@mrdrogdrog/optional/-/optional-1.2.1.tgz", - "integrity": "sha512-8JdrQautBZ+nxTC29Sp7z/plyONdgPDjCbFTf6Iih5spZKW18EmP2D4zd48wG9Nn0Qpe8f0p9f8/94SlZFl4tQ==" - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nuxt/kit": { - "version": "3.8.2", - "resolved": "https://registry.npmmirror.com/@nuxt/kit/-/kit-3.8.2.tgz", - "integrity": "sha512-LrXCm8hAkw+zpX8teUSD/LqXRarlXjbRiYxDkaqw739JSHFReWzBFgJbojsJqL4h1XIEScDGGOWiEgO4QO1sMg==", - "optional": true, - "dependencies": { - "@nuxt/schema": "3.8.2", - "c12": "^1.5.1", - "consola": "^3.2.3", - "defu": "^6.1.3", - "globby": "^14.0.0", - "hash-sum": "^2.0.0", - "ignore": "^5.3.0", - "jiti": "^1.21.0", - "knitwork": "^1.0.0", - "mlly": "^1.4.2", - "pathe": "^1.1.1", - "pkg-types": "^1.0.3", - "scule": "^1.1.0", - "semver": "^7.5.4", - "ufo": "^1.3.2", - "unctx": "^2.3.1", - "unimport": "^3.5.0", - "untyped": "^1.4.0" - }, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/kit/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "optional": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nuxt/kit/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "optional": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nuxt/kit/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "optional": true - }, - "node_modules/@nuxt/schema": { - "version": "3.8.2", - "resolved": "https://registry.npmmirror.com/@nuxt/schema/-/schema-3.8.2.tgz", - "integrity": "sha512-AMpysQ/wHK2sOujLShqYdC4OSj/S3fFJGjhYXqA2g6dgmz+FNQWJRG/ie5sI9r2EX9Ela1wt0GN1jZR3wYNE8Q==", - "optional": true, - "dependencies": { - "@nuxt/ui-templates": "^1.3.1", - "consola": "^3.2.3", - "defu": "^6.1.3", - "hookable": "^5.5.3", - "pathe": "^1.1.1", - "pkg-types": "^1.0.3", - "scule": "^1.1.0", - "std-env": "^3.5.0", - "ufo": "^1.3.2", - "unimport": "^3.5.0", - "untyped": "^1.4.0" - }, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/ui-templates": { - "version": "1.3.1", - "resolved": "https://registry.npmmirror.com/@nuxt/ui-templates/-/ui-templates-1.3.1.tgz", - "integrity": "sha512-5gc02Pu1HycOVUWJ8aYsWeeXcSTPe8iX8+KIrhyEtEoOSkY0eMBuo0ssljB8wALuEmepv31DlYe5gpiRwkjESA==", - "optional": true - }, - "node_modules/@pdf-lib/standard-fonts": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/@pdf-lib/standard-fonts/-/standard-fonts-1.0.0.tgz", - "integrity": "sha512-hU30BK9IUN/su0Mn9VdlVKsWBS6GyhVfqjwl1FjZN4TxP6cCw0jP2w7V3Hf5uX7M0AZJ16vey9yE0ny7Sa59ZA==", - "dependencies": { - "pako": "^1.0.6" - } - }, - "node_modules/@pdf-lib/upng": { - "version": "1.0.1", - "resolved": "https://registry.npmmirror.com/@pdf-lib/upng/-/upng-1.0.1.tgz", - "integrity": "sha512-dQK2FUMQtowVP00mtIksrlZhdFXQZPC+taih1q4CvPZ5vqdxR/LKBaFg0oAfzd1GlHZXXSPdQfzQnt+ViGvEIQ==", - "dependencies": { - "pako": "^1.0.10" - } - }, - "node_modules/@polka/url": { - "version": "1.0.0-next.23", - "resolved": "https://registry.npmmirror.com/@polka/url/-/url-1.0.0-next.23.tgz", - "integrity": "sha512-C16M+IYz0rgRhWZdCmK+h58JMv8vijAA61gmz2rspCSwKwzBebpdcsiUmwrtJRdphuY30i6BSLEOP8ppbNLyLg==" - }, - "node_modules/@rollup/pluginutils": { - "version": "5.1.0", - "resolved": "https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-5.1.0.tgz", - "integrity": "sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==", - "dependencies": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup/pluginutils/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "node_modules/@sindresorhus/is": { - "version": "5.6.0", - "resolved": "https://registry.npmmirror.com/@sindresorhus/is/-/is-5.6.0.tgz", - "integrity": "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==", - "engines": { - "node": ">=14.16" - } - }, - "node_modules/@sindresorhus/merge-streams": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/@sindresorhus/merge-streams/-/merge-streams-1.0.0.tgz", - "integrity": "sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==", - "optional": true, - "engines": { - "node": ">=18" - } - }, - "node_modules/@slidev/cli": { - "version": "0.44.0", - "resolved": "https://registry.npmmirror.com/@slidev/cli/-/cli-0.44.0.tgz", - "integrity": "sha512-c+wgDo634nopJyB5kCgVNgIs/WH2B4rRJZTiKO1X59uF9xPVrLMgKa6I91jad7eBDGUr6Di/3BkUfbxfu2zjrw==", - "dependencies": { - "@antfu/utils": "^0.7.6", - "@hedgedoc/markdown-it-plugins": "^2.1.4", - "@iconify-json/carbon": "^1.1.21", - "@iconify-json/ph": "^1.1.6", - "@lillallol/outline-pdf": "^4.0.0", - "@mrdrogdrog/optional": "^1.2.1", - "@slidev/client": "0.44.0", - "@slidev/parser": "0.44.0", - "@slidev/types": "0.44.0", - "@unocss/extractor-mdc": "^0.57.4", - "@unocss/reset": "^0.57.4", - "@vitejs/plugin-vue": "^4.4.1", - "@vitejs/plugin-vue-jsx": "^3.0.2", - "@windicss/config": "^1.9.1", - "cli-progress": "^3.12.0", - "codemirror": "^5.65.5", - "connect": "^3.7.0", - "debug": "^4.3.4", - "fast-glob": "^3.3.2", - "fs-extra": "^11.1.1", - "get-port-please": "^3.1.1", - "global-directory": "^4.0.1", - "htmlparser2": "^9.0.0", - "import-from": "^4.0.0", - "is-installed-globally": "^1.0.0", - "jiti": "^1.21.0", - "js-base64": "^3.7.5", - "katex": "^0.16.9", - "kolorist": "^1.8.0", - "localtunnel": "^2.0.2", - "markdown-it": "^13.0.2", - "markdown-it-footnote": "^3.0.3", - "markdown-it-link-attributes": "^4.0.1", - "markdown-it-mdc": "^0.1.4", - "monaco-editor": "^0.37.1", - "nanoid": "^5.0.3", - "open": "^9.1.0", - "pdf-lib": "^1.17.1", - "plantuml-encoder": "^1.4.0", - "postcss-nested": "^6.0.1", - "prismjs": "^1.29.0", - "prompts": "^2.4.2", - "public-ip": "^6.0.1", - "resolve": "^1.22.8", - "resolve-from": "^5.0.0", - "resolve-global": "^2.0.0", - "shiki": "npm:shikiji-compat@^0.6.13", - "unocss": "^0.57.4", - "unplugin-icons": "^0.17.4", - "unplugin-vue-components": "^0.25.2", - "unplugin-vue-markdown": "^0.25.1", - "uqr": "^0.1.2", - "vite": "^4.5.0", - "vite-plugin-inspect": "^0.7.42", - "vite-plugin-remote-assets": "^0.3.2", - "vite-plugin-static-copy": "^0.17.0", - "vite-plugin-vue-server-ref": "^0.3.4", - "vite-plugin-windicss": "^1.9.1", - "vitefu": "^0.2.5", - "vue": "^3.3.8", - "windicss": "^3.5.6", - "yargs": "^17.7.2" - }, - "bin": { - "slidev": "bin/slidev.mjs" - }, - "engines": { - "node": ">=18.0.0" - }, - "peerDependencies": { - "playwright-chromium": "^1.10.0" - }, - "peerDependenciesMeta": { - "playwright-chromium": { - "optional": true - } - } - }, - "node_modules/@slidev/client": { - "version": "0.44.0", - "resolved": "https://registry.npmmirror.com/@slidev/client/-/client-0.44.0.tgz", - "integrity": "sha512-zEYUBWhAwttK8p+CatT7tXdzmYg+kxfkcL6jriGrrzp29O6pw+RDaFTj/RoaCUOPNuBbx9HI3yv8WZXiVx4SEg==", - "dependencies": { - "@antfu/utils": "^0.7.6", - "@slidev/parser": "0.44.0", - "@slidev/types": "0.44.0", - "@unhead/vue": "^1.8.4", - "@unocss/reset": "^0.57.4", - "@vueuse/core": "^10.6.1", - "@vueuse/math": "^10.6.1", - "@vueuse/motion": "^2.0.0", - "codemirror": "^5.65.5", - "defu": "^6.1.3", - "drauu": "^0.3.7", - "file-saver": "^2.0.5", - "fuse.js": "^7.0.0", - "js-base64": "^3.7.5", - "js-yaml": "^4.1.0", - "katex": "^0.16.9", - "mermaid": "^10.6.1", - "monaco-editor": "^0.37.1", - "nanoid": "^5.0.3", - "prettier": "^3.1.0", - "recordrtc": "^5.6.2", - "resolve": "^1.22.8", - "unocss": "^0.57.4", - "vite-plugin-windicss": "^1.9.1", - "vue": "^3.3.8", - "vue-router": "^4.2.5", - "vue-starport": "^0.4.0", - "windicss": "^3.5.6" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@slidev/parser": { - "version": "0.44.0", - "resolved": "https://registry.npmmirror.com/@slidev/parser/-/parser-0.44.0.tgz", - "integrity": "sha512-u2Aj5LrlKM+bgz/AooHtpHJG0kSX0jNr/S60Zh3anbfcRZ8Nxx1h4CfNbDBqrYyf83D3rVnkYMvc3PtUCR8rQw==", - "dependencies": { - "@slidev/types": "0.44.0", - "js-yaml": "^4.1.0" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@slidev/theme-default": { - "version": "0.21.2", - "resolved": "https://registry.npmmirror.com/@slidev/theme-default/-/theme-default-0.21.2.tgz", - "integrity": "sha512-neUucFs2YrRZZd73QwvLTyRG/o1nerDFUR5t8YAmXVLTMzWfY71flQ6aAhjYf+WjsozYsOHcxi/pZtIzZ4VhTQ==", - "dependencies": { - "@slidev/types": "^0.22.7", - "codemirror-theme-vars": "^0.1.1", - "prism-theme-vars": "^0.2.2", - "theme-vitesse": "^0.1.12" - }, - "engines": { - "node": ">=14.0.0", - "slidev": ">=0.19.2" - } - }, - "node_modules/@slidev/theme-default/node_modules/@slidev/types": { - "version": "0.22.7", - "resolved": "https://registry.npmmirror.com/@slidev/types/-/types-0.22.7.tgz", - "integrity": "sha512-mCVKQbcGTv6d6n9aHpYNp5U04HF+FMbpY083vqpJ6Folc805BB1Am02eubaW0J6nM+dSOu2dDgPY+kIjs75sAQ==", - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@slidev/theme-seriph": { - "version": "0.21.3", - "resolved": "https://registry.npmmirror.com/@slidev/theme-seriph/-/theme-seriph-0.21.3.tgz", - "integrity": "sha512-cLya6O4hmcLHUhloCMPPoKMLX27Q+8M8pRS82BSsLXVeXTXrlpc3l3glx5VB738p+NQr7FgqFN6H2CXQRoVv9Q==", - "dependencies": { - "@slidev/types": "^0.22.7", - "codemirror-theme-vars": "^0.1.1", - "prism-theme-vars": "^0.2.2", - "theme-vitesse": "^0.1.12" - }, - "engines": { - "node": ">=14.0.0", - "slidev": ">=0.19.3" - } - }, - "node_modules/@slidev/theme-seriph/node_modules/@slidev/types": { - "version": "0.22.7", - "resolved": "https://registry.npmmirror.com/@slidev/types/-/types-0.22.7.tgz", - "integrity": "sha512-mCVKQbcGTv6d6n9aHpYNp5U04HF+FMbpY083vqpJ6Folc805BB1Am02eubaW0J6nM+dSOu2dDgPY+kIjs75sAQ==", - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@slidev/types": { - "version": "0.44.0", - "resolved": "https://registry.npmmirror.com/@slidev/types/-/types-0.44.0.tgz", - "integrity": "sha512-hIRSdOq0IivEy5s0Rg7ZRH5+9n9jWSelVLGx9rzJYUBbZacMRoeQbgpl0NEW5qsv4fC0cHnyWw+yFxy3IduqDQ==", - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@szmarczak/http-timer": { - "version": "5.0.1", - "resolved": "https://registry.npmmirror.com/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", - "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==", - "dependencies": { - "defer-to-connect": "^2.0.1" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/@types/d3-scale": { - "version": "4.0.8", - "resolved": "https://registry.npmmirror.com/@types/d3-scale/-/d3-scale-4.0.8.tgz", - "integrity": "sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==", - "dependencies": { - "@types/d3-time": "*" - } - }, - "node_modules/@types/d3-scale-chromatic": { - "version": "3.0.3", - "resolved": "https://registry.npmmirror.com/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.0.3.tgz", - "integrity": "sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==" - }, - "node_modules/@types/d3-time": { - "version": "3.0.3", - "resolved": "https://registry.npmmirror.com/@types/d3-time/-/d3-time-3.0.3.tgz", - "integrity": "sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==" - }, - "node_modules/@types/debug": { - "version": "4.1.12", - "resolved": "https://registry.npmmirror.com/@types/debug/-/debug-4.1.12.tgz", - "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", - "dependencies": { - "@types/ms": "*" - } - }, - "node_modules/@types/estree": { - "version": "1.0.5", - "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.5.tgz", - "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" - }, - "node_modules/@types/hast": { - "version": "3.0.3", - "resolved": "https://registry.npmmirror.com/@types/hast/-/hast-3.0.3.tgz", - "integrity": "sha512-2fYGlaDy/qyLlhidX42wAH0KBi2TCjKMH8CHmBXgRlJ3Y+OXTiqsPQ6IWarZKwF1JoUcAJdPogv1d4b0COTpmQ==", - "dependencies": { - "@types/unist": "*" - } - }, - "node_modules/@types/http-cache-semantics": { - "version": "4.0.4", - "resolved": "https://registry.npmmirror.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", - "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" - }, - "node_modules/@types/linkify-it": { - "version": "3.0.5", - "resolved": "https://registry.npmmirror.com/@types/linkify-it/-/linkify-it-3.0.5.tgz", - "integrity": "sha512-yg6E+u0/+Zjva+buc3EIb+29XEg4wltq7cSmd4Uc2EE/1nUVmxyzpX6gUXD0V8jIrG0r7YeOGVIbYRkxeooCtw==" - }, - "node_modules/@types/markdown-it": { - "version": "13.0.7", - "resolved": "https://registry.npmmirror.com/@types/markdown-it/-/markdown-it-13.0.7.tgz", - "integrity": "sha512-U/CBi2YUUcTHBt5tjO2r5QV/x0Po6nsYwQU4Y04fBS6vfoImaiZ6f8bi3CjTCxBPQSO1LMyUqkByzi8AidyxfA==", - "dependencies": { - "@types/linkify-it": "*", - "@types/mdurl": "*" - } - }, - "node_modules/@types/mdast": { - "version": "3.0.15", - "resolved": "https://registry.npmmirror.com/@types/mdast/-/mdast-3.0.15.tgz", - "integrity": "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==", - "dependencies": { - "@types/unist": "^2" - } - }, - "node_modules/@types/mdurl": { - "version": "1.0.5", - "resolved": "https://registry.npmmirror.com/@types/mdurl/-/mdurl-1.0.5.tgz", - "integrity": "sha512-6L6VymKTzYSrEf4Nev4Xa1LCHKrlTlYCBMTlQKFuddo1CvQcE52I0mwfOJayueUC7MJuXOeHTcIU683lzd0cUA==" - }, - "node_modules/@types/ms": { - "version": "0.7.34", - "resolved": "https://registry.npmmirror.com/@types/ms/-/ms-0.7.34.tgz", - "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==" - }, - "node_modules/@types/unist": { - "version": "2.0.10", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-2.0.10.tgz", - "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==" - }, - "node_modules/@types/web-bluetooth": { - "version": "0.0.20", - "resolved": "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz", - "integrity": "sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==" - }, - "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "resolved": "https://registry.npmmirror.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==" - }, - "node_modules/@unhead/dom": { - "version": "1.8.8", - "resolved": "https://registry.npmmirror.com/@unhead/dom/-/dom-1.8.8.tgz", - "integrity": "sha512-KRtn+tvA83lEtKrtZD85XmqW04fcytVuNKLUpPBzhJvsxB3v7gozw0nu46e3EpbO3TGJjLlLd6brNHQY6WLWfA==", - "dependencies": { - "@unhead/schema": "1.8.8", - "@unhead/shared": "1.8.8" - } - }, - "node_modules/@unhead/schema": { - "version": "1.8.8", - "resolved": "https://registry.npmmirror.com/@unhead/schema/-/schema-1.8.8.tgz", - "integrity": "sha512-xuhNW4osVNLW1yQSbdInZ8YGiXVTi1gjF8rK1E4VnODpWLg8XOq0OpoCbdIlCH4X4A0Ee0UQGRyzkuuVZlrSsQ==", - "dependencies": { - "hookable": "^5.5.3", - "zhead": "^2.2.4" - } - }, - "node_modules/@unhead/shared": { - "version": "1.8.8", - "resolved": "https://registry.npmmirror.com/@unhead/shared/-/shared-1.8.8.tgz", - "integrity": "sha512-LoIJUDgmOzxoRHSIf29w/wc+IzKN2XvGiQC2dZZrYoTjOOzodf75609PEW5bhx2aHio38k9F+6BnD3KDiJ7IIg==", - "dependencies": { - "@unhead/schema": "1.8.8" - } - }, - "node_modules/@unhead/vue": { - "version": "1.8.8", - "resolved": "https://registry.npmmirror.com/@unhead/vue/-/vue-1.8.8.tgz", - "integrity": "sha512-isHpVnSSE5SP+ObsZG/i+Jq9tAQ2u1AbGrktXKmL7P5FRxwPjhATYnJFdGpxXeXfuaFgRFKzGKs29xo4MMVODw==", - "dependencies": { - "@unhead/schema": "1.8.8", - "@unhead/shared": "1.8.8", - "hookable": "^5.5.3", - "unhead": "1.8.8" - }, - "peerDependencies": { - "vue": ">=2.7 || >=3" - } - }, - "node_modules/@unocss/astro": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/astro/-/astro-0.57.7.tgz", - "integrity": "sha512-X4KSBdrAADdtS4x7xz02b016xpRDt9mD/d/oq23HyZAZ+sZc4oZs8el9MLSUJgu2okdWzAE62lRRV/oc4HWI1A==", - "dependencies": { - "@unocss/core": "0.57.7", - "@unocss/reset": "0.57.7", - "@unocss/vite": "0.57.7" - }, - "peerDependencies": { - "vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0" - }, - "peerDependenciesMeta": { - "vite": { - "optional": true - } - } - }, - "node_modules/@unocss/cli": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/cli/-/cli-0.57.7.tgz", - "integrity": "sha512-FZHTTBYyibySpBEPbA/ilDzI4v4Uy/bROItEYogZkpXNoCLzlclX+UcuFBXXLt6VFJk4WjLNFLRSQlVcCUUOLA==", - "dependencies": { - "@ampproject/remapping": "^2.2.1", - "@rollup/pluginutils": "^5.0.5", - "@unocss/config": "0.57.7", - "@unocss/core": "0.57.7", - "@unocss/preset-uno": "0.57.7", - "cac": "^6.7.14", - "chokidar": "^3.5.3", - "colorette": "^2.0.20", - "consola": "^3.2.3", - "fast-glob": "^3.3.2", - "magic-string": "^0.30.5", - "pathe": "^1.1.1", - "perfect-debounce": "^1.0.0" - }, - "bin": { - "unocss": "bin/unocss.mjs" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@unocss/config": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/config/-/config-0.57.7.tgz", - "integrity": "sha512-UG8G9orWEdk/vyDvGUToXYn/RZy/Qjpx66pLsaf5wQK37hkYsBoReAU5v8Ia/6PL1ueJlkcNXLaNpN6/yVoJvg==", - "dependencies": { - "@unocss/core": "0.57.7", - "unconfig": "^0.3.11" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@unocss/core": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/core/-/core-0.57.7.tgz", - "integrity": "sha512-1d36M0CV3yC80J0pqOa5rH1BX6g2iZdtKmIb3oSBN4AWnMCSrrJEPBrUikyMq2TEQTrYWJIVDzv5A9hBUat3TA==" - }, - "node_modules/@unocss/extractor-arbitrary-variants": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/extractor-arbitrary-variants/-/extractor-arbitrary-variants-0.57.7.tgz", - "integrity": "sha512-JdyhPlsgS0x4zoF8WYXDcusPcpU4ysE6Rkkit4a9+xUZEvg7vy7InH6PQ8dL8B9oY7pbxF7G6eFguUDpv9xx4Q==", - "dependencies": { - "@unocss/core": "0.57.7" - } - }, - "node_modules/@unocss/extractor-mdc": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/extractor-mdc/-/extractor-mdc-0.57.7.tgz", - "integrity": "sha512-OJUCmFYvDUfrwv8NCE1KguYlhevOKx/BW34VukUSkf9Q4sRetKlkVt7pwZAaVoWjyIqkSzpD+b73TjqGHeSMxg==" - }, - "node_modules/@unocss/inspector": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/inspector/-/inspector-0.57.7.tgz", - "integrity": "sha512-b9ckqn5aRsmhTdXJ5cPMKDKuNRe+825M+s9NbYcTjENnP6ellUFZo91sYF5S+LeATmU12TcwJZ83NChF4HpBSA==", - "dependencies": { - "@unocss/core": "0.57.7", - "@unocss/rule-utils": "0.57.7", - "gzip-size": "^6.0.0", - "sirv": "^2.0.3" - } - }, - "node_modules/@unocss/postcss": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/postcss/-/postcss-0.57.7.tgz", - "integrity": "sha512-13c9p5ecTvYa6inDky++8dlVuxQ0JuKaKW5A0NW3XuJ3Uz1t8Pguji+NAUddfTYEFF6GHu47L3Aac7vpI8pMcQ==", - "dependencies": { - "@unocss/config": "0.57.7", - "@unocss/core": "0.57.7", - "@unocss/rule-utils": "0.57.7", - "css-tree": "^2.3.1", - "fast-glob": "^3.3.2", - "magic-string": "^0.30.5", - "postcss": "^8.4.31" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "postcss": "^8.4.21" - } - }, - "node_modules/@unocss/preset-attributify": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/preset-attributify/-/preset-attributify-0.57.7.tgz", - "integrity": "sha512-vUqfwUokNHt1FJXIuVyj2Xze9LfJdLAy62h79lNyyEISZmiDF4a4hWTKLBe0d6Kyfr33DyXMmkLp57t5YW0V3A==", - "dependencies": { - "@unocss/core": "0.57.7" - } - }, - "node_modules/@unocss/preset-icons": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/preset-icons/-/preset-icons-0.57.7.tgz", - "integrity": "sha512-s3AelKCS9CL1ArP1GanYv0XxxPrcFi+XOuQoQCwCRHDo2CiBEq3fLLMIhaUCFEWGtIy7o7wLeL5BRjMvJ2QnMg==", - "dependencies": { - "@iconify/utils": "^2.1.11", - "@unocss/core": "0.57.7", - "ofetch": "^1.3.3" - } - }, - "node_modules/@unocss/preset-mini": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/preset-mini/-/preset-mini-0.57.7.tgz", - "integrity": "sha512-YPmmh+ZIg4J7/nPMfvzD1tOfUFD+8KEFXX9ISRteooflYeosn2YytGW66d/sq97AZos9N630FJ//DvPD2wfGwA==", - "dependencies": { - "@unocss/core": "0.57.7", - "@unocss/extractor-arbitrary-variants": "0.57.7", - "@unocss/rule-utils": "0.57.7" - } - }, - "node_modules/@unocss/preset-tagify": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/preset-tagify/-/preset-tagify-0.57.7.tgz", - "integrity": "sha512-va25pTJ5OtbqCHFBIj8myVk0PwuSucUqTx840r/YSHka0P9th6UGRS1LU30OUgjgr7FhLaWXtJMN4gkCUtQSoA==", - "dependencies": { - "@unocss/core": "0.57.7" - } - }, - "node_modules/@unocss/preset-typography": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/preset-typography/-/preset-typography-0.57.7.tgz", - "integrity": "sha512-1QuoLhqHVRs+baaVvfH54JxmJhVuBp5jdVw3HCN/vXs1CSnq2Rm/C/+PahcnQg/KLtoW6MgK5S+/hU9TCxGRVQ==", - "dependencies": { - "@unocss/core": "0.57.7", - "@unocss/preset-mini": "0.57.7" - } - }, - "node_modules/@unocss/preset-uno": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/preset-uno/-/preset-uno-0.57.7.tgz", - "integrity": "sha512-yRKvRBaPLmDSUZet5WnV1WNb3BV4EFwvB1Zbvlc3lyVp6uCksP/SYlxuUwht7JefOrfiY2sGugoBxZTyGmj/kQ==", - "dependencies": { - "@unocss/core": "0.57.7", - "@unocss/preset-mini": "0.57.7", - "@unocss/preset-wind": "0.57.7", - "@unocss/rule-utils": "0.57.7" - } - }, - "node_modules/@unocss/preset-web-fonts": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/preset-web-fonts/-/preset-web-fonts-0.57.7.tgz", - "integrity": "sha512-wBPej5GeYb0D/xjMdMmpH6k/3Oe1ujx9DJys2/gtvl/rsBZpSkoWcnl+8Z3bAhooDnwL2gkJCIlpuDiRNtKvGA==", - "dependencies": { - "@unocss/core": "0.57.7", - "ofetch": "^1.3.3" - } - }, - "node_modules/@unocss/preset-wind": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/preset-wind/-/preset-wind-0.57.7.tgz", - "integrity": "sha512-olQ6+w0fQ84eEC1t7SF4vJyKcyawkDWSRF5YufOqeQZL3zjqBzMQi+3PUlKCstrDO1DNZ3qdcwg1vPHRmuX9VA==", - "dependencies": { - "@unocss/core": "0.57.7", - "@unocss/preset-mini": "0.57.7", - "@unocss/rule-utils": "0.57.7" - } - }, - "node_modules/@unocss/reset": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/reset/-/reset-0.57.7.tgz", - "integrity": "sha512-oN9024WVrMewGbornnAPIpzHeKPIfVmZ5IsZGilWR761TnI5jTjHUkswsVoFx7tZdpCN2/bqS3JK/Ah0aot3NQ==" - }, - "node_modules/@unocss/rule-utils": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/rule-utils/-/rule-utils-0.57.7.tgz", - "integrity": "sha512-gLqbKTIetvRynLkhonu1znr+bmWnw+Cl3dFVNgZPGjiqGHd78PGS0gXQKvzuyN0iO2ADub1A7GlCWs826iEHjA==", - "dependencies": { - "@unocss/core": "^0.57.7", - "magic-string": "^0.30.5" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@unocss/scope": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/scope/-/scope-0.57.7.tgz", - "integrity": "sha512-pqWbKXcrTJ2ovVRTYFLnUX5ryEhdSXp7YfyBQT3zLtQb4nQ2XZcLTvGdWo7F+9jZ09yP7NdHscBLkeWgx+mVgw==" - }, - "node_modules/@unocss/transformer-attributify-jsx": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/transformer-attributify-jsx/-/transformer-attributify-jsx-0.57.7.tgz", - "integrity": "sha512-FpCJM+jDN4Kyp7mMMN41tTWEq6pHKAXAyJoW1GwhYw6lLu9cwyXnne6t7rQ11EPU95Z2cIEMpIJo8reDkDaiPg==", - "dependencies": { - "@unocss/core": "0.57.7" - } - }, - "node_modules/@unocss/transformer-attributify-jsx-babel": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/transformer-attributify-jsx-babel/-/transformer-attributify-jsx-babel-0.57.7.tgz", - "integrity": "sha512-CqxTiT5ikOC6R/HNyBcCIVYUfeazqRbsw7X4hYKmGHO7QsnaKQFWZTpj+sSDRh3oHq+IDtcD6KB2anTEffEQNA==", - "dependencies": { - "@babel/core": "^7.23.3", - "@babel/plugin-syntax-jsx": "^7.23.3", - "@babel/preset-typescript": "^7.23.3", - "@unocss/core": "0.57.7" - } - }, - "node_modules/@unocss/transformer-compile-class": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/transformer-compile-class/-/transformer-compile-class-0.57.7.tgz", - "integrity": "sha512-D+PyD7IOXUm/lzzoCt/yon0Gh1fIK9iKeSBvB6/BREF/ejscNzQ/ia0Pq0pid2cVvOULCSo0z2sO9zljsQtv9A==", - "dependencies": { - "@unocss/core": "0.57.7" - } - }, - "node_modules/@unocss/transformer-directives": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/transformer-directives/-/transformer-directives-0.57.7.tgz", - "integrity": "sha512-m0n7WqU3o+1Vyh1uaeU7H4u5gJqakkRqZqTq3MR3xLCSVfORJ/5XO8r+t6VUkJtaLxcIrtYE2geAbwmGV3zSKA==", - "dependencies": { - "@unocss/core": "0.57.7", - "@unocss/rule-utils": "0.57.7", - "css-tree": "^2.3.1" - } - }, - "node_modules/@unocss/transformer-variant-group": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/transformer-variant-group/-/transformer-variant-group-0.57.7.tgz", - "integrity": "sha512-O5L5Za0IZtOWd2R66vy0k07pLlB9rCIybmUommUqKWpvd1n/pg8czQ5EkmNDprINvinKObVlGVuY4Uq/JsLM0A==", - "dependencies": { - "@unocss/core": "0.57.7" - } - }, - "node_modules/@unocss/vite": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/@unocss/vite/-/vite-0.57.7.tgz", - "integrity": "sha512-SbJrRgfc35MmgMBlHaEK4YpJVD2B0bmxH9PVgHRuDae/hOEOG0VqNP0f2ijJtX9HG3jOpQVlbEoGnUo8jsZtsw==", - "dependencies": { - "@ampproject/remapping": "^2.2.1", - "@rollup/pluginutils": "^5.0.5", - "@unocss/config": "0.57.7", - "@unocss/core": "0.57.7", - "@unocss/inspector": "0.57.7", - "@unocss/scope": "0.57.7", - "@unocss/transformer-directives": "0.57.7", - "chokidar": "^3.5.3", - "fast-glob": "^3.3.2", - "magic-string": "^0.30.5" - }, - "peerDependencies": { - "vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0" - } - }, - "node_modules/@vitejs/plugin-vue": { - "version": "4.5.1", - "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-4.5.1.tgz", - "integrity": "sha512-DaUzYFr+2UGDG7VSSdShKa9sIWYBa1LL8KC0MNOf2H5LjcTPjob0x8LbkqXWmAtbANJCkpiQTj66UVcQkN2s3g==", - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "peerDependencies": { - "vite": "^4.0.0 || ^5.0.0", - "vue": "^3.2.25" - } - }, - "node_modules/@vitejs/plugin-vue-jsx": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-3.1.0.tgz", - "integrity": "sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==", - "dependencies": { - "@babel/core": "^7.23.3", - "@babel/plugin-transform-typescript": "^7.23.3", - "@vue/babel-plugin-jsx": "^1.1.5" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "peerDependencies": { - "vite": "^4.0.0 || ^5.0.0", - "vue": "^3.0.0" - } - }, - "node_modules/@vue/babel-helper-vue-transform-on": { - "version": "1.1.5", - "resolved": "https://registry.npmmirror.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.1.5.tgz", - "integrity": "sha512-SgUymFpMoAyWeYWLAY+MkCK3QEROsiUnfaw5zxOVD/M64KQs8D/4oK6Q5omVA2hnvEOE0SCkH2TZxs/jnnUj7w==" - }, - "node_modules/@vue/babel-plugin-jsx": { - "version": "1.1.5", - "resolved": "https://registry.npmmirror.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.1.5.tgz", - "integrity": "sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==", - "dependencies": { - "@babel/helper-module-imports": "^7.22.5", - "@babel/plugin-syntax-jsx": "^7.22.5", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.5", - "@babel/types": "^7.22.5", - "@vue/babel-helper-vue-transform-on": "^1.1.5", - "camelcase": "^6.3.0", - "html-tags": "^3.3.1", - "svg-tags": "^1.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@vue/compiler-core": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.9.tgz", - "integrity": "sha512-+/Lf68Vr/nFBA6ol4xOtJrW+BQWv3QWKfRwGSm70jtXwfhZNF4R/eRgyVJYoxFRhdCTk/F6g99BP0ffPgZihfQ==", - "dependencies": { - "@babel/parser": "^7.23.3", - "@vue/shared": "3.3.9", - "estree-walker": "^2.0.2", - "source-map-js": "^1.0.2" - } - }, - "node_modules/@vue/compiler-core/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "node_modules/@vue/compiler-dom": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.9.tgz", - "integrity": "sha512-nfWubTtLXuT4iBeDSZ5J3m218MjOy42Vp2pmKVuBKo2/BLcrFUX8nCSr/bKRFiJ32R8qbdnnnBgRn9AdU5v0Sg==", - "dependencies": { - "@vue/compiler-core": "3.3.9", - "@vue/shared": "3.3.9" - } - }, - "node_modules/@vue/compiler-sfc": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.3.9.tgz", - "integrity": "sha512-wy0CNc8z4ihoDzjASCOCsQuzW0A/HP27+0MDSSICMjVIFzk/rFViezkR3dzH+miS2NDEz8ywMdbjO5ylhOLI2A==", - "dependencies": { - "@babel/parser": "^7.23.3", - "@vue/compiler-core": "3.3.9", - "@vue/compiler-dom": "3.3.9", - "@vue/compiler-ssr": "3.3.9", - "@vue/reactivity-transform": "3.3.9", - "@vue/shared": "3.3.9", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.5", - "postcss": "^8.4.31", - "source-map-js": "^1.0.2" - } - }, - "node_modules/@vue/compiler-sfc/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "node_modules/@vue/compiler-ssr": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.3.9.tgz", - "integrity": "sha512-NO5oobAw78R0G4SODY5A502MGnDNiDjf6qvhn7zD7TJGc8XDeIEw4fg6JU705jZ/YhuokBKz0A5a/FL/XZU73g==", - "dependencies": { - "@vue/compiler-dom": "3.3.9", - "@vue/shared": "3.3.9" - } - }, - "node_modules/@vue/devtools-api": { - "version": "6.5.1", - "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.1.tgz", - "integrity": "sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==" - }, - "node_modules/@vue/reactivity": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.3.9.tgz", - "integrity": "sha512-VmpIqlNp+aYDg2X0xQhJqHx9YguOmz2UxuUJDckBdQCNkipJvfk9yA75woLWElCa0Jtyec3lAAt49GO0izsphw==", - "dependencies": { - "@vue/shared": "3.3.9" - } - }, - "node_modules/@vue/reactivity-transform": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.3.9.tgz", - "integrity": "sha512-HnUFm7Ry6dFa4Lp63DAxTixUp8opMtQr6RxQCpDI1vlh12rkGIeYqMvJtK+IKyEfEOa2I9oCkD1mmsPdaGpdVg==", - "dependencies": { - "@babel/parser": "^7.23.3", - "@vue/compiler-core": "3.3.9", - "@vue/shared": "3.3.9", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.5" - } - }, - "node_modules/@vue/reactivity-transform/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "node_modules/@vue/runtime-core": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.3.9.tgz", - "integrity": "sha512-xxaG9KvPm3GTRuM4ZyU8Tc+pMVzcu6eeoSRQJ9IE7NmCcClW6z4B3Ij6L4EDl80sxe/arTtQ6YmgiO4UZqRc+w==", - "dependencies": { - "@vue/reactivity": "3.3.9", - "@vue/shared": "3.3.9" - } - }, - "node_modules/@vue/runtime-dom": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.3.9.tgz", - "integrity": "sha512-e7LIfcxYSWbV6BK1wQv9qJyxprC75EvSqF/kQKe6bdZEDNValzeRXEVgiX7AHI6hZ59HA4h7WT5CGvm69vzJTQ==", - "dependencies": { - "@vue/runtime-core": "3.3.9", - "@vue/shared": "3.3.9", - "csstype": "^3.1.2" - } - }, - "node_modules/@vue/server-renderer": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.3.9.tgz", - "integrity": "sha512-w0zT/s5l3Oa3ZjtLW88eO4uV6AQFqU8X5GOgzq7SkQQu6vVr+8tfm+OI2kDBplS/W/XgCBuFXiPw6T5EdwXP0A==", - "dependencies": { - "@vue/compiler-ssr": "3.3.9", - "@vue/shared": "3.3.9" - }, - "peerDependencies": { - "vue": "3.3.9" - } - }, - "node_modules/@vue/shared": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.3.9.tgz", - "integrity": "sha512-ZE0VTIR0LmYgeyhurPTpy4KzKsuDyQbMSdM49eKkMnT5X4VfFBLysMzjIZhLEFQYjjOVVfbvUDHckwjDFiO2eA==" - }, - "node_modules/@vueuse/core": { - "version": "10.6.1", - "resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-10.6.1.tgz", - "integrity": "sha512-Pc26IJbqgC9VG1u6VY/xrXXfxD33hnvxBnKrLlA2LJlyHII+BSrRoTPJgGYq7qZOu61itITFUnm6QbacwZ4H8Q==", - "dependencies": { - "@types/web-bluetooth": "^0.0.20", - "@vueuse/metadata": "10.6.1", - "@vueuse/shared": "10.6.1", - "vue-demi": ">=0.14.6" - } - }, - "node_modules/@vueuse/core/node_modules/vue-demi": { - "version": "0.14.6", - "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz", - "integrity": "sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==", - "hasInstallScript": true, - "bin": { - "vue-demi-fix": "bin/vue-demi-fix.js", - "vue-demi-switch": "bin/vue-demi-switch.js" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "@vue/composition-api": "^1.0.0-rc.1", - "vue": "^3.0.0-0 || ^2.6.0" - }, - "peerDependenciesMeta": { - "@vue/composition-api": { - "optional": true - } - } - }, - "node_modules/@vueuse/math": { - "version": "10.6.1", - "resolved": "https://registry.npmmirror.com/@vueuse/math/-/math-10.6.1.tgz", - "integrity": "sha512-1/aGfewEw7QZDstnPSMFoN6OMWmsbYv3mQ26cGQTboOKdqrNzAWCIn9hoc92R7vvCbkAWJgaLVJRX5odpcXzyQ==", - "dependencies": { - "@vueuse/shared": "10.6.1", - "vue-demi": ">=0.14.6" - } - }, - "node_modules/@vueuse/math/node_modules/vue-demi": { - "version": "0.14.6", - "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz", - "integrity": "sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==", - "hasInstallScript": true, - "bin": { - "vue-demi-fix": "bin/vue-demi-fix.js", - "vue-demi-switch": "bin/vue-demi-switch.js" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "@vue/composition-api": "^1.0.0-rc.1", - "vue": "^3.0.0-0 || ^2.6.0" - }, - "peerDependenciesMeta": { - "@vue/composition-api": { - "optional": true - } - } - }, - "node_modules/@vueuse/metadata": { - "version": "10.6.1", - "resolved": "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-10.6.1.tgz", - "integrity": "sha512-qhdwPI65Bgcj23e5lpGfQsxcy0bMjCAsUGoXkJ7DsoeDUdasbZ2DBa4dinFCOER3lF4gwUv+UD2AlA11zdzMFw==" - }, - "node_modules/@vueuse/motion": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/@vueuse/motion/-/motion-2.0.0.tgz", - "integrity": "sha512-V3TAlbt1OPmb9DZFoFCz9WC3Oue54t9VHlavSWm+VU1JNimYcd+pc6aGR/hgaHUAU9tOPRHoDTleSrv2zrdIsw==", - "dependencies": { - "@vueuse/core": "^10.1.2", - "@vueuse/shared": "^10.1.2", - "csstype": "^3.1.2", - "framesync": "^6.1.2", - "popmotion": "^11.0.5", - "style-value-types": "^5.1.2" - }, - "optionalDependencies": { - "@nuxt/kit": "^3.5.1" - }, - "peerDependencies": { - "vue": ">=3.0.0" - } - }, - "node_modules/@vueuse/shared": { - "version": "10.6.1", - "resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-10.6.1.tgz", - "integrity": "sha512-TECVDTIedFlL0NUfHWncf3zF9Gc4VfdxfQc8JFwoVZQmxpONhLxFrlm0eHQeidHj4rdTPL3KXJa0TZCk1wnc5Q==", - "dependencies": { - "vue-demi": ">=0.14.6" - } - }, - "node_modules/@vueuse/shared/node_modules/vue-demi": { - "version": "0.14.6", - "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz", - "integrity": "sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==", - "hasInstallScript": true, - "bin": { - "vue-demi-fix": "bin/vue-demi-fix.js", - "vue-demi-switch": "bin/vue-demi-switch.js" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "@vue/composition-api": "^1.0.0-rc.1", - "vue": "^3.0.0-0 || ^2.6.0" - }, - "peerDependenciesMeta": { - "@vue/composition-api": { - "optional": true - } - } - }, - "node_modules/@windicss/config": { - "version": "1.9.2", - "resolved": "https://registry.npmmirror.com/@windicss/config/-/config-1.9.2.tgz", - "integrity": "sha512-5yOaarc7Yce08i3NCNRNMUb/tfmVcFo801UwgM27/dXWWfG30wuPONms8VrQurPZlcZTayPKX0svOx0doWdnPQ==", - "dependencies": { - "debug": "^4.3.4", - "jiti": "^1.18.2", - "windicss": "^3.5.6" - } - }, - "node_modules/@windicss/plugin-utils": { - "version": "1.9.2", - "resolved": "https://registry.npmmirror.com/@windicss/plugin-utils/-/plugin-utils-1.9.2.tgz", - "integrity": "sha512-P019ZVYJSBVzMBhYSzcMIWpMjZZWEynF4s7oXgP9+5msH4/Ek55erFXY6r+e3sysBFohnIr3hosQ5dp9FMG16Q==", - "dependencies": { - "@antfu/utils": "^0.7.2", - "@windicss/config": "1.9.2", - "debug": "^4.3.4", - "fast-glob": "^3.2.12", - "magic-string": "^0.30.0", - "micromatch": "^4.0.5", - "windicss": "^3.5.6" - } - }, - "node_modules/acorn": { - "version": "8.11.2", - "resolved": "https://registry.npmmirror.com/acorn/-/acorn-8.11.2.tgz", - "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmmirror.com/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", - "optional": true, - "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/aggregate-error": { - "version": "4.0.1", - "resolved": "https://registry.npmmirror.com/aggregate-error/-/aggregate-error-4.0.1.tgz", - "integrity": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==", - "dependencies": { - "clean-stack": "^4.0.0", - "indent-string": "^5.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - }, - "node_modules/axios": { - "version": "0.21.4", - "resolved": "https://registry.npmmirror.com/axios/-/axios-0.21.4.tgz", - "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", - "dependencies": { - "follow-redirects": "^1.14.0" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "node_modules/big-integer": { - "version": "1.6.52", - "resolved": "https://registry.npmmirror.com/big-integer/-/big-integer-1.6.52.tgz", - "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "engines": { - "node": ">=8" - } - }, - "node_modules/bplist-parser": { - "version": "0.2.0", - "resolved": "https://registry.npmmirror.com/bplist-parser/-/bplist-parser-0.2.0.tgz", - "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", - "dependencies": { - "big-integer": "^1.6.44" - }, - "engines": { - "node": ">= 5.10.0" - } - }, - "node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browserslist": { - "version": "4.22.2", - "resolved": "https://registry.npmmirror.com/browserslist/-/browserslist-4.22.2.tgz", - "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", - "dependencies": { - "caniuse-lite": "^1.0.30001565", - "electron-to-chromium": "^1.4.601", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/bundle-name": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/bundle-name/-/bundle-name-3.0.0.tgz", - "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", - "dependencies": { - "run-applescript": "^5.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/c12": { - "version": "1.5.1", - "resolved": "https://registry.npmmirror.com/c12/-/c12-1.5.1.tgz", - "integrity": "sha512-BWZRJgDEveT8uI+cliCwvYSSSSvb4xKoiiu5S0jaDbKBopQLQF7E+bq9xKk1pTcG+mUa3yXuFO7bD9d8Lr9Xxg==", - "optional": true, - "dependencies": { - "chokidar": "^3.5.3", - "defu": "^6.1.2", - "dotenv": "^16.3.1", - "giget": "^1.1.3", - "jiti": "^1.20.0", - "mlly": "^1.4.2", - "ohash": "^1.1.3", - "pathe": "^1.1.1", - "perfect-debounce": "^1.0.0", - "pkg-types": "^1.0.3", - "rc9": "^2.1.1" - } - }, - "node_modules/cac": { - "version": "6.7.14", - "resolved": "https://registry.npmmirror.com/cac/-/cac-6.7.14.tgz", - "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/cacheable-lookup": { - "version": "7.0.0", - "resolved": "https://registry.npmmirror.com/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz", - "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==", - "engines": { - "node": ">=14.16" - } - }, - "node_modules/cacheable-request": { - "version": "10.2.14", - "resolved": "https://registry.npmmirror.com/cacheable-request/-/cacheable-request-10.2.14.tgz", - "integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==", - "dependencies": { - "@types/http-cache-semantics": "^4.0.2", - "get-stream": "^6.0.1", - "http-cache-semantics": "^4.1.1", - "keyv": "^4.5.3", - "mimic-response": "^4.0.0", - "normalize-url": "^8.0.0", - "responselike": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmmirror.com/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "engines": { - "node": ">=10" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001565", - "resolved": "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001565.tgz", - "integrity": "sha512-xrE//a3O7TP0vaJ8ikzkD2c2NgcVUvsEe2IvFTntV4Yd1Z9FVzh+gW+enX96L0psrbaFMcVcH2l90xNuGDWc8w==" - }, - "node_modules/ccount": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/ccount/-/ccount-2.0.1.tgz", - "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==" - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/character-entities": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/character-entities/-/character-entities-2.0.2.tgz", - "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==" - }, - "node_modules/character-entities-html4": { - "version": "2.1.0", - "resolved": "https://registry.npmmirror.com/character-entities-html4/-/character-entities-html4-2.1.0.tgz", - "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==" - }, - "node_modules/character-entities-legacy": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", - "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==" - }, - "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "optional": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/clean-stack": { - "version": "4.2.0", - "resolved": "https://registry.npmmirror.com/clean-stack/-/clean-stack-4.2.0.tgz", - "integrity": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==", - "dependencies": { - "escape-string-regexp": "5.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/clean-stack/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "engines": { - "node": ">=12" - } - }, - "node_modules/cli-progress": { - "version": "3.12.0", - "resolved": "https://registry.npmmirror.com/cli-progress/-/cli-progress-3.12.0.tgz", - "integrity": "sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==", - "dependencies": { - "string-width": "^4.2.3" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmmirror.com/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/codemirror": { - "version": "5.65.16", - "resolved": "https://registry.npmmirror.com/codemirror/-/codemirror-5.65.16.tgz", - "integrity": "sha512-br21LjYmSlVL0vFCPWPfhzUCT34FM/pAdK7rRIZwa0rrtrIdotvP4Oh4GUHsu2E3IrQMCfRkL/fN3ytMNxVQvg==" - }, - "node_modules/codemirror-theme-vars": { - "version": "0.1.2", - "resolved": "https://registry.npmmirror.com/codemirror-theme-vars/-/codemirror-theme-vars-0.1.2.tgz", - "integrity": "sha512-WTau8X2q58b0SOAY9DO+iQVw8JKVEgyQIqArp2D732tcc+pobbMta3bnVMdQdmgwuvNrOFFr6HoxPRoQOgooFA==" - }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "node_modules/colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmmirror.com/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/comma-separated-tokens": { - "version": "2.0.3", - "resolved": "https://registry.npmmirror.com/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", - "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==" - }, - "node_modules/commander": { - "version": "8.3.0", - "resolved": "https://registry.npmmirror.com/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", - "engines": { - "node": ">= 12" - } - }, - "node_modules/connect": { - "version": "3.7.0", - "resolved": "https://registry.npmmirror.com/connect/-/connect-3.7.0.tgz", - "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", - "dependencies": { - "debug": "2.6.9", - "finalhandler": "1.1.2", - "parseurl": "~1.3.3", - "utils-merge": "1.0.1" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/connect/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/connect/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmmirror.com/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" - }, - "node_modules/cose-base": { - "version": "1.0.3", - "resolved": "https://registry.npmmirror.com/cose-base/-/cose-base-1.0.3.tgz", - "integrity": "sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==", - "dependencies": { - "layout-base": "^1.0.0" - } - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/css-tree": { - "version": "2.3.1", - "resolved": "https://registry.npmmirror.com/css-tree/-/css-tree-2.3.1.tgz", - "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", - "dependencies": { - "mdn-data": "2.0.30", - "source-map-js": "^1.0.1" - }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" - } - }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/csstype": { - "version": "3.1.2", - "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" - }, - "node_modules/cytoscape": { - "version": "3.27.0", - "resolved": "https://registry.npmmirror.com/cytoscape/-/cytoscape-3.27.0.tgz", - "integrity": "sha512-pPZJilfX9BxESwujODz5pydeGi+FBrXq1rcaB1mfhFXXFJ9GjE6CNndAk+8jPzoXGD+16LtSS4xlYEIUiW4Abg==", - "dependencies": { - "heap": "^0.2.6", - "lodash": "^4.17.21" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/cytoscape-cose-bilkent": { - "version": "4.1.0", - "resolved": "https://registry.npmmirror.com/cytoscape-cose-bilkent/-/cytoscape-cose-bilkent-4.1.0.tgz", - "integrity": "sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==", - "dependencies": { - "cose-base": "^1.0.0" - }, - "peerDependencies": { - "cytoscape": "^3.2.0" - } - }, - "node_modules/cytoscape-fcose": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/cytoscape-fcose/-/cytoscape-fcose-2.2.0.tgz", - "integrity": "sha512-ki1/VuRIHFCzxWNrsshHYPs6L7TvLu3DL+TyIGEsRcvVERmxokbf5Gdk7mFxZnTdiGtnA4cfSmjZJMviqSuZrQ==", - "dependencies": { - "cose-base": "^2.2.0" - }, - "peerDependencies": { - "cytoscape": "^3.2.0" - } - }, - "node_modules/cytoscape-fcose/node_modules/cose-base": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/cose-base/-/cose-base-2.2.0.tgz", - "integrity": "sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g==", - "dependencies": { - "layout-base": "^2.0.0" - } - }, - "node_modules/cytoscape-fcose/node_modules/layout-base": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/layout-base/-/layout-base-2.0.1.tgz", - "integrity": "sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg==" - }, - "node_modules/d3": { - "version": "7.8.5", - "resolved": "https://registry.npmmirror.com/d3/-/d3-7.8.5.tgz", - "integrity": "sha512-JgoahDG51ncUfJu6wX/1vWQEqOflgXyl4MaHqlcSruTez7yhaRKR9i8VjjcQGeS2en/jnFivXuaIMnseMMt0XA==", - "dependencies": { - "d3-array": "3", - "d3-axis": "3", - "d3-brush": "3", - "d3-chord": "3", - "d3-color": "3", - "d3-contour": "4", - "d3-delaunay": "6", - "d3-dispatch": "3", - "d3-drag": "3", - "d3-dsv": "3", - "d3-ease": "3", - "d3-fetch": "3", - "d3-force": "3", - "d3-format": "3", - "d3-geo": "3", - "d3-hierarchy": "3", - "d3-interpolate": "3", - "d3-path": "3", - "d3-polygon": "3", - "d3-quadtree": "3", - "d3-random": "3", - "d3-scale": "4", - "d3-scale-chromatic": "3", - "d3-selection": "3", - "d3-shape": "3", - "d3-time": "3", - "d3-time-format": "4", - "d3-timer": "3", - "d3-transition": "3", - "d3-zoom": "3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-array": { - "version": "3.2.4", - "resolved": "https://registry.npmmirror.com/d3-array/-/d3-array-3.2.4.tgz", - "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", - "dependencies": { - "internmap": "1 - 2" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-axis": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/d3-axis/-/d3-axis-3.0.0.tgz", - "integrity": "sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-brush": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/d3-brush/-/d3-brush-3.0.0.tgz", - "integrity": "sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==", - "dependencies": { - "d3-dispatch": "1 - 3", - "d3-drag": "2 - 3", - "d3-interpolate": "1 - 3", - "d3-selection": "3", - "d3-transition": "3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-chord": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-chord/-/d3-chord-3.0.1.tgz", - "integrity": "sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==", - "dependencies": { - "d3-path": "1 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-color": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/d3-color/-/d3-color-3.1.0.tgz", - "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-contour": { - "version": "4.0.2", - "resolved": "https://registry.npmmirror.com/d3-contour/-/d3-contour-4.0.2.tgz", - "integrity": "sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==", - "dependencies": { - "d3-array": "^3.2.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-delaunay": { - "version": "6.0.4", - "resolved": "https://registry.npmmirror.com/d3-delaunay/-/d3-delaunay-6.0.4.tgz", - "integrity": "sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==", - "dependencies": { - "delaunator": "5" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-dispatch": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-dispatch/-/d3-dispatch-3.0.1.tgz", - "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-drag": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/d3-drag/-/d3-drag-3.0.0.tgz", - "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", - "dependencies": { - "d3-dispatch": "1 - 3", - "d3-selection": "3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-dsv": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-dsv/-/d3-dsv-3.0.1.tgz", - "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==", - "dependencies": { - "commander": "7", - "iconv-lite": "0.6", - "rw": "1" - }, - "bin": { - "csv2json": "bin/dsv2json.js", - "csv2tsv": "bin/dsv2dsv.js", - "dsv2dsv": "bin/dsv2dsv.js", - "dsv2json": "bin/dsv2json.js", - "json2csv": "bin/json2dsv.js", - "json2dsv": "bin/json2dsv.js", - "json2tsv": "bin/json2dsv.js", - "tsv2csv": "bin/dsv2dsv.js", - "tsv2json": "bin/dsv2json.js" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-dsv/node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmmirror.com/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "engines": { - "node": ">= 10" - } - }, - "node_modules/d3-ease": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-ease/-/d3-ease-3.0.1.tgz", - "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-fetch": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-fetch/-/d3-fetch-3.0.1.tgz", - "integrity": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==", - "dependencies": { - "d3-dsv": "1 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-force": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/d3-force/-/d3-force-3.0.0.tgz", - "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==", - "dependencies": { - "d3-dispatch": "1 - 3", - "d3-quadtree": "1 - 3", - "d3-timer": "1 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-format": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/d3-format/-/d3-format-3.1.0.tgz", - "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-geo": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/d3-geo/-/d3-geo-3.1.0.tgz", - "integrity": "sha512-JEo5HxXDdDYXCaWdwLRt79y7giK8SbhZJbFWXqbRTolCHFI5jRqteLzCsq51NKbUoX0PjBVSohxrx+NoOUujYA==", - "dependencies": { - "d3-array": "2.5.0 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-hierarchy": { - "version": "3.1.2", - "resolved": "https://registry.npmmirror.com/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz", - "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-interpolate": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-interpolate/-/d3-interpolate-3.0.1.tgz", - "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", - "dependencies": { - "d3-color": "1 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-path": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/d3-path/-/d3-path-3.1.0.tgz", - "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-polygon": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-polygon/-/d3-polygon-3.0.1.tgz", - "integrity": "sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-quadtree": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-quadtree/-/d3-quadtree-3.0.1.tgz", - "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-random": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-random/-/d3-random-3.0.1.tgz", - "integrity": "sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-sankey": { - "version": "0.12.3", - "resolved": "https://registry.npmmirror.com/d3-sankey/-/d3-sankey-0.12.3.tgz", - "integrity": "sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==", - "dependencies": { - "d3-array": "1 - 2", - "d3-shape": "^1.2.0" - } - }, - "node_modules/d3-sankey/node_modules/d3-array": { - "version": "2.12.1", - "resolved": "https://registry.npmmirror.com/d3-array/-/d3-array-2.12.1.tgz", - "integrity": "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==", - "dependencies": { - "internmap": "^1.0.0" - } - }, - "node_modules/d3-sankey/node_modules/d3-path": { - "version": "1.0.9", - "resolved": "https://registry.npmmirror.com/d3-path/-/d3-path-1.0.9.tgz", - "integrity": "sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==" - }, - "node_modules/d3-sankey/node_modules/d3-shape": { - "version": "1.3.7", - "resolved": "https://registry.npmmirror.com/d3-shape/-/d3-shape-1.3.7.tgz", - "integrity": "sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==", - "dependencies": { - "d3-path": "1" - } - }, - "node_modules/d3-sankey/node_modules/internmap": { - "version": "1.0.1", - "resolved": "https://registry.npmmirror.com/internmap/-/internmap-1.0.1.tgz", - "integrity": "sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==" - }, - "node_modules/d3-scale": { - "version": "4.0.2", - "resolved": "https://registry.npmmirror.com/d3-scale/-/d3-scale-4.0.2.tgz", - "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", - "dependencies": { - "d3-array": "2.10.0 - 3", - "d3-format": "1 - 3", - "d3-interpolate": "1.2.0 - 3", - "d3-time": "2.1.1 - 3", - "d3-time-format": "2 - 4" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-scale-chromatic": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz", - "integrity": "sha512-Lx9thtxAKrO2Pq6OO2Ua474opeziKr279P/TKZsMAhYyNDD3EnCffdbgeSYN5O7m2ByQsxtuP2CSDczNUIZ22g==", - "dependencies": { - "d3-color": "1 - 3", - "d3-interpolate": "1 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-selection": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/d3-selection/-/d3-selection-3.0.0.tgz", - "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-shape": { - "version": "3.2.0", - "resolved": "https://registry.npmmirror.com/d3-shape/-/d3-shape-3.2.0.tgz", - "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", - "dependencies": { - "d3-path": "^3.1.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-time": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/d3-time/-/d3-time-3.1.0.tgz", - "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", - "dependencies": { - "d3-array": "2 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-time-format": { - "version": "4.1.0", - "resolved": "https://registry.npmmirror.com/d3-time-format/-/d3-time-format-4.1.0.tgz", - "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", - "dependencies": { - "d3-time": "1 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-timer": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-timer/-/d3-timer-3.0.1.tgz", - "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", - "engines": { - "node": ">=12" - } - }, - "node_modules/d3-transition": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/d3-transition/-/d3-transition-3.0.1.tgz", - "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==", - "dependencies": { - "d3-color": "1 - 3", - "d3-dispatch": "1 - 3", - "d3-ease": "1 - 3", - "d3-interpolate": "1 - 3", - "d3-timer": "1 - 3" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "d3-selection": "2 - 3" - } - }, - "node_modules/d3-zoom": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/d3-zoom/-/d3-zoom-3.0.0.tgz", - "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==", - "dependencies": { - "d3-dispatch": "1 - 3", - "d3-drag": "2 - 3", - "d3-interpolate": "1 - 3", - "d3-selection": "2 - 3", - "d3-transition": "2 - 3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/dagre-d3-es": { - "version": "7.0.10", - "resolved": "https://registry.npmmirror.com/dagre-d3-es/-/dagre-d3-es-7.0.10.tgz", - "integrity": "sha512-qTCQmEhcynucuaZgY5/+ti3X/rnszKZhEQH/ZdWdtP1tA/y3VoHJzcVrO9pjjJCNpigfscAtoUB5ONcd2wNn0A==", - "dependencies": { - "d3": "^7.8.2", - "lodash-es": "^4.17.21" - } - }, - "node_modules/dayjs": { - "version": "1.11.10", - "resolved": "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.10.tgz", - "integrity": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==" - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decode-named-character-reference": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", - "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", - "dependencies": { - "character-entities": "^2.0.0" - } - }, - "node_modules/decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmmirror.com/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "dependencies": { - "mimic-response": "^3.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/decompress-response/node_modules/mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", - "engines": { - "node": ">=10" - } - }, - "node_modules/default-browser": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/default-browser/-/default-browser-4.0.0.tgz", - "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", - "dependencies": { - "bundle-name": "^3.0.0", - "default-browser-id": "^3.0.0", - "execa": "^7.1.1", - "titleize": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/default-browser-id": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/default-browser-id/-/default-browser-id-3.0.0.tgz", - "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", - "dependencies": { - "bplist-parser": "^0.2.0", - "untildify": "^4.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/defer-to-connect": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz", - "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", - "engines": { - "node": ">=10" - } - }, - "node_modules/define-lazy-prop": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", - "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", - "engines": { - "node": ">=12" - } - }, - "node_modules/defu": { - "version": "6.1.3", - "resolved": "https://registry.npmmirror.com/defu/-/defu-6.1.3.tgz", - "integrity": "sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==" - }, - "node_modules/delaunator": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/delaunator/-/delaunator-5.0.0.tgz", - "integrity": "sha512-AyLvtyJdbv/U1GkiS6gUUzclRoAY4Gs75qkMygJJhU75LW4DNuSF2RMzpxs9jw9Oz1BobHjTdkG3zdP55VxAqw==", - "dependencies": { - "robust-predicates": "^3.0.0" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmmirror.com/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/destr": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/destr/-/destr-2.0.2.tgz", - "integrity": "sha512-65AlobnZMiCET00KaFFjUefxDX0khFA/E4myqZ7a6Sq1yZtR8+FVIvilVX66vF2uobSumxooYZChiRPCKNqhmg==" - }, - "node_modules/devlop": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/devlop/-/devlop-1.1.0.tgz", - "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", - "dependencies": { - "dequal": "^2.0.0" - } - }, - "node_modules/diff": { - "version": "5.1.0", - "resolved": "https://registry.npmmirror.com/diff/-/diff-5.1.0.tgz", - "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==", - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/dns-packet": { - "version": "5.6.1", - "resolved": "https://registry.npmmirror.com/dns-packet/-/dns-packet-5.6.1.tgz", - "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", - "dependencies": { - "@leichtgewicht/ip-codec": "^2.0.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/dns-socket": { - "version": "4.2.2", - "resolved": "https://registry.npmmirror.com/dns-socket/-/dns-socket-4.2.2.tgz", - "integrity": "sha512-BDeBd8najI4/lS00HSKpdFia+OvUMytaVjfzR9n5Lq8MlZRSvtbI+uLtx1+XmQFls5wFU9dssccTmQQ6nfpjdg==", - "dependencies": { - "dns-packet": "^5.2.4" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/dom-serializer": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" - } - }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmmirror.com/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - }, - "node_modules/domhandler": { - "version": "5.0.3", - "resolved": "https://registry.npmmirror.com/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", - "dependencies": { - "domelementtype": "^2.3.0" - }, - "engines": { - "node": ">= 4" - } - }, - "node_modules/dompurify": { - "version": "3.0.6", - "resolved": "https://registry.npmmirror.com/dompurify/-/dompurify-3.0.6.tgz", - "integrity": "sha512-ilkD8YEnnGh1zJ240uJsW7AzE+2qpbOUYjacomn3AvJ6J4JhKGSZ2nh4wUIXPZrEPppaCLx5jFe8T89Rk8tQ7w==" - }, - "node_modules/domutils": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/domutils/-/domutils-3.1.0.tgz", - "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", - "dependencies": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3" - } - }, - "node_modules/dotenv": { - "version": "16.3.1", - "resolved": "https://registry.npmmirror.com/dotenv/-/dotenv-16.3.1.tgz", - "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", - "optional": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/drauu": { - "version": "0.3.7", - "resolved": "https://registry.npmmirror.com/drauu/-/drauu-0.3.7.tgz", - "integrity": "sha512-fENggzwwVYTiIfKt4hYLsG2azq//hflHqu1qwAWZBzZANkN5KdX+goZYeDsRx01uvtiuxH09w/i8oESygytutg==", - "dependencies": { - "@drauu/core": "0.3.7" - } - }, - "node_modules/duplexer": { - "version": "0.1.2", - "resolved": "https://registry.npmmirror.com/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" - }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmmirror.com/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - }, - "node_modules/electron-to-chromium": { - "version": "1.4.601", - "resolved": "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.601.tgz", - "integrity": "sha512-SpwUMDWe9tQu8JX5QCO1+p/hChAi9AE9UpoC3rcHVc+gdCGlbT3SGb5I1klgb952HRIyvt9wZhSz9bNBYz9swA==" - }, - "node_modules/elkjs": { - "version": "0.8.2", - "resolved": "https://registry.npmmirror.com/elkjs/-/elkjs-0.8.2.tgz", - "integrity": "sha512-L6uRgvZTH+4OF5NE/MBbzQx/WYpru1xCBE9respNj6qznEewGUIfhzmm7horWWxbNO2M0WckQypGctR8lH79xQ==" - }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmmirror.com/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "engines": { - "node": ">=0.12" - } - }, - "node_modules/error-stack-parser-es": { - "version": "0.1.1", - "resolved": "https://registry.npmmirror.com/error-stack-parser-es/-/error-stack-parser-es-0.1.1.tgz", - "integrity": "sha512-g/9rfnvnagiNf+DRMHEVGuGuIBlCIMDFoTA616HaP2l9PlCjGjVhD98PNbVSJvmK4TttqT5mV5tInMhoFgi+aA==" - }, - "node_modules/esbuild": { - "version": "0.18.20", - "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.18.20.tgz", - "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.18.20", - "@esbuild/android-arm64": "0.18.20", - "@esbuild/android-x64": "0.18.20", - "@esbuild/darwin-arm64": "0.18.20", - "@esbuild/darwin-x64": "0.18.20", - "@esbuild/freebsd-arm64": "0.18.20", - "@esbuild/freebsd-x64": "0.18.20", - "@esbuild/linux-arm": "0.18.20", - "@esbuild/linux-arm64": "0.18.20", - "@esbuild/linux-ia32": "0.18.20", - "@esbuild/linux-loong64": "0.18.20", - "@esbuild/linux-mips64el": "0.18.20", - "@esbuild/linux-ppc64": "0.18.20", - "@esbuild/linux-riscv64": "0.18.20", - "@esbuild/linux-s390x": "0.18.20", - "@esbuild/linux-x64": "0.18.20", - "@esbuild/netbsd-x64": "0.18.20", - "@esbuild/openbsd-x64": "0.18.20", - "@esbuild/sunos-x64": "0.18.20", - "@esbuild/win32-arm64": "0.18.20", - "@esbuild/win32-ia32": "0.18.20", - "@esbuild/win32-x64": "0.18.20" - } - }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmmirror.com/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", - "optional": true, - "dependencies": { - "@types/estree": "^1.0.0" - } - }, - "node_modules/execa": { - "version": "7.2.0", - "resolved": "https://registry.npmmirror.com/execa/-/execa-7.2.0.tgz", - "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^4.3.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": "^14.18.0 || ^16.14.0 || >=18.0.0" - } - }, - "node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmmirror.com/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/file-saver": { - "version": "2.0.5", - "resolved": "https://registry.npmmirror.com/file-saver/-/file-saver-2.0.5.tgz", - "integrity": "sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==" - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmmirror.com/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "statuses": "~1.5.0", - "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/flat": { - "version": "5.0.2", - "resolved": "https://registry.npmmirror.com/flat/-/flat-5.0.2.tgz", - "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", - "optional": true, - "bin": { - "flat": "cli.js" - } - }, - "node_modules/follow-redirects": { - "version": "1.15.3", - "resolved": "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.3.tgz", - "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==", - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/form-data-encoder": { - "version": "2.1.4", - "resolved": "https://registry.npmmirror.com/form-data-encoder/-/form-data-encoder-2.1.4.tgz", - "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==", - "engines": { - "node": ">= 14.17" - } - }, - "node_modules/framesync": { - "version": "6.1.2", - "resolved": "https://registry.npmmirror.com/framesync/-/framesync-6.1.2.tgz", - "integrity": "sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==", - "dependencies": { - "tslib": "2.4.0" - } - }, - "node_modules/fs-extra": { - "version": "11.2.0", - "resolved": "https://registry.npmmirror.com/fs-extra/-/fs-extra-11.2.0.tgz", - "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=14.14" - } - }, - "node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmmirror.com/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "optional": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/fs-minipass/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmmirror.com/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "optional": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/fs-minipass/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "optional": true - }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" - }, - "node_modules/fuse.js": { - "version": "7.0.0", - "resolved": "https://registry.npmmirror.com/fuse.js/-/fuse.js-7.0.0.tgz", - "integrity": "sha512-14F4hBIxqKvD4Zz/XjDc3y94mNZN6pRv3U13Udo0lNLCWRBUsrMv2xwcF/y/Z5sV6+FQW+/ow68cHpm4sunt8Q==", - "engines": { - "node": ">=10" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-port-please": { - "version": "3.1.1", - "resolved": "https://registry.npmmirror.com/get-port-please/-/get-port-please-3.1.1.tgz", - "integrity": "sha512-3UBAyM3u4ZBVYDsxOQfJDxEa6XTbpBDrOjp4mf7ExFRt5BKs/QywQQiJsh2B+hxcZLSapWqCRvElUe8DnKcFHA==" - }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmmirror.com/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "engines": { - "node": ">=10" - } - }, - "node_modules/giget": { - "version": "1.1.3", - "resolved": "https://registry.npmmirror.com/giget/-/giget-1.1.3.tgz", - "integrity": "sha512-zHuCeqtfgqgDwvXlR84UNgnJDuUHQcNI5OqWqFxxuk2BshuKbYhJWdxBsEo4PvKqoGh23lUAIvBNpChMLv7/9Q==", - "optional": true, - "dependencies": { - "colorette": "^2.0.20", - "defu": "^6.1.2", - "https-proxy-agent": "^7.0.2", - "mri": "^1.2.0", - "node-fetch-native": "^1.4.0", - "pathe": "^1.1.1", - "tar": "^6.2.0" - }, - "bin": { - "giget": "dist/cli.mjs" - } - }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/global-directory": { - "version": "4.0.1", - "resolved": "https://registry.npmmirror.com/global-directory/-/global-directory-4.0.1.tgz", - "integrity": "sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==", - "dependencies": { - "ini": "4.1.1" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmmirror.com/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/globby": { - "version": "14.0.0", - "resolved": "https://registry.npmmirror.com/globby/-/globby-14.0.0.tgz", - "integrity": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==", - "optional": true, - "dependencies": { - "@sindresorhus/merge-streams": "^1.0.0", - "fast-glob": "^3.3.2", - "ignore": "^5.2.4", - "path-type": "^5.0.0", - "slash": "^5.1.0", - "unicorn-magic": "^0.1.0" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/got": { - "version": "12.6.1", - "resolved": "https://registry.npmmirror.com/got/-/got-12.6.1.tgz", - "integrity": "sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==", - "dependencies": { - "@sindresorhus/is": "^5.2.0", - "@szmarczak/http-timer": "^5.0.1", - "cacheable-lookup": "^7.0.0", - "cacheable-request": "^10.2.8", - "decompress-response": "^6.0.0", - "form-data-encoder": "^2.1.2", - "get-stream": "^6.0.1", - "http2-wrapper": "^2.1.10", - "lowercase-keys": "^3.0.0", - "p-cancelable": "^3.0.0", - "responselike": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - }, - "node_modules/gray-matter": { - "version": "4.0.3", - "resolved": "https://registry.npmmirror.com/gray-matter/-/gray-matter-4.0.3.tgz", - "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==", - "dependencies": { - "js-yaml": "^3.13.1", - "kind-of": "^6.0.2", - "section-matter": "^1.0.0", - "strip-bom-string": "^1.0.0" - }, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/gray-matter/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmmirror.com/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/gray-matter/node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmmirror.com/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/gzip-size": { - "version": "6.0.0", - "resolved": "https://registry.npmmirror.com/gzip-size/-/gzip-size-6.0.0.tgz", - "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", - "dependencies": { - "duplexer": "^0.1.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/hash-sum": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/hash-sum/-/hash-sum-2.0.0.tgz", - "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==", - "optional": true - }, - "node_modules/hasown": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/hasown/-/hasown-2.0.0.tgz", - "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/hast-util-from-parse5": { - "version": "8.0.1", - "resolved": "https://registry.npmmirror.com/hast-util-from-parse5/-/hast-util-from-parse5-8.0.1.tgz", - "integrity": "sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==", - "dependencies": { - "@types/hast": "^3.0.0", - "@types/unist": "^3.0.0", - "devlop": "^1.0.0", - "hastscript": "^8.0.0", - "property-information": "^6.0.0", - "vfile": "^6.0.0", - "vfile-location": "^5.0.0", - "web-namespaces": "^2.0.0" - } - }, - "node_modules/hast-util-from-parse5/node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==" - }, - "node_modules/hast-util-parse-selector": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz", - "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==", - "dependencies": { - "@types/hast": "^3.0.0" - } - }, - "node_modules/hast-util-raw": { - "version": "9.0.1", - "resolved": "https://registry.npmmirror.com/hast-util-raw/-/hast-util-raw-9.0.1.tgz", - "integrity": "sha512-5m1gmba658Q+lO5uqL5YNGQWeh1MYWZbZmWrM5lncdcuiXuo5E2HT/CIOp0rLF8ksfSwiCVJ3twlgVRyTGThGA==", - "dependencies": { - "@types/hast": "^3.0.0", - "@types/unist": "^3.0.0", - "@ungap/structured-clone": "^1.0.0", - "hast-util-from-parse5": "^8.0.0", - "hast-util-to-parse5": "^8.0.0", - "html-void-elements": "^3.0.0", - "mdast-util-to-hast": "^13.0.0", - "parse5": "^7.0.0", - "unist-util-position": "^5.0.0", - "unist-util-visit": "^5.0.0", - "vfile": "^6.0.0", - "web-namespaces": "^2.0.0", - "zwitch": "^2.0.0" - } - }, - "node_modules/hast-util-raw/node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==" - }, - "node_modules/hast-util-to-html": { - "version": "9.0.0", - "resolved": "https://registry.npmmirror.com/hast-util-to-html/-/hast-util-to-html-9.0.0.tgz", - "integrity": "sha512-IVGhNgg7vANuUA2XKrT6sOIIPgaYZnmLx3l/CCOAK0PtgfoHrZwX7jCSYyFxHTrGmC6S9q8aQQekjp4JPZF+cw==", - "dependencies": { - "@types/hast": "^3.0.0", - "@types/unist": "^3.0.0", - "ccount": "^2.0.0", - "comma-separated-tokens": "^2.0.0", - "hast-util-raw": "^9.0.0", - "hast-util-whitespace": "^3.0.0", - "html-void-elements": "^3.0.0", - "mdast-util-to-hast": "^13.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0", - "stringify-entities": "^4.0.0", - "zwitch": "^2.0.4" - } - }, - "node_modules/hast-util-to-html/node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==" - }, - "node_modules/hast-util-to-parse5": { - "version": "8.0.0", - "resolved": "https://registry.npmmirror.com/hast-util-to-parse5/-/hast-util-to-parse5-8.0.0.tgz", - "integrity": "sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==", - "dependencies": { - "@types/hast": "^3.0.0", - "comma-separated-tokens": "^2.0.0", - "devlop": "^1.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0", - "web-namespaces": "^2.0.0", - "zwitch": "^2.0.0" - } - }, - "node_modules/hast-util-whitespace": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", - "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", - "dependencies": { - "@types/hast": "^3.0.0" - } - }, - "node_modules/hastscript": { - "version": "8.0.0", - "resolved": "https://registry.npmmirror.com/hastscript/-/hastscript-8.0.0.tgz", - "integrity": "sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==", - "dependencies": { - "@types/hast": "^3.0.0", - "comma-separated-tokens": "^2.0.0", - "hast-util-parse-selector": "^4.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0" - } - }, - "node_modules/heap": { - "version": "0.2.7", - "resolved": "https://registry.npmmirror.com/heap/-/heap-0.2.7.tgz", - "integrity": "sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==" - }, - "node_modules/hey-listen": { - "version": "1.0.8", - "resolved": "https://registry.npmmirror.com/hey-listen/-/hey-listen-1.0.8.tgz", - "integrity": "sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==" - }, - "node_modules/hookable": { - "version": "5.5.3", - "resolved": "https://registry.npmmirror.com/hookable/-/hookable-5.5.3.tgz", - "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==" - }, - "node_modules/html-entities": { - "version": "2.4.0", - "resolved": "https://registry.npmmirror.com/html-entities/-/html-entities-2.4.0.tgz", - "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==" - }, - "node_modules/html-tags": { - "version": "3.3.1", - "resolved": "https://registry.npmmirror.com/html-tags/-/html-tags-3.3.1.tgz", - "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/html-void-elements": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/html-void-elements/-/html-void-elements-3.0.0.tgz", - "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==" - }, - "node_modules/htmlparser2": { - "version": "9.0.0", - "resolved": "https://registry.npmmirror.com/htmlparser2/-/htmlparser2-9.0.0.tgz", - "integrity": "sha512-uxbSI98wmFT/G4P2zXx4OVx04qWUmyFPrD2/CNepa2Zo3GPNaCaaxElDgwUrwYWkK1nr9fft0Ya8dws8coDLLQ==", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.1.0", - "entities": "^4.5.0" - } - }, - "node_modules/http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmmirror.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" - }, - "node_modules/http2-wrapper": { - "version": "2.2.1", - "resolved": "https://registry.npmmirror.com/http2-wrapper/-/http2-wrapper-2.2.1.tgz", - "integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==", - "dependencies": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.2.0" - }, - "engines": { - "node": ">=10.19.0" - } - }, - "node_modules/https-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmmirror.com/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", - "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", - "optional": true, - "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/human-signals": { - "version": "4.3.1", - "resolved": "https://registry.npmmirror.com/human-signals/-/human-signals-4.3.1.tgz", - "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", - "engines": { - "node": ">=14.18.0" - } - }, - "node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ignore": { - "version": "5.3.0", - "resolved": "https://registry.npmmirror.com/ignore/-/ignore-5.3.0.tgz", - "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", - "optional": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/import-from": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/import-from/-/import-from-4.0.0.tgz", - "integrity": "sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==", - "engines": { - "node": ">=12.2" - } - }, - "node_modules/indent-string": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/indent-string/-/indent-string-5.0.0.tgz", - "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", - "engines": { - "node": ">=12" - } - }, - "node_modules/ini": { - "version": "4.1.1", - "resolved": "https://registry.npmmirror.com/ini/-/ini-4.1.1.tgz", - "integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==", - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/internmap": { - "version": "2.0.3", - "resolved": "https://registry.npmmirror.com/internmap/-/internmap-2.0.3.tgz", - "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", - "engines": { - "node": ">=12" - } - }, - "node_modules/ip-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/ip-regex/-/ip-regex-5.0.0.tgz", - "integrity": "sha512-fOCG6lhoKKakwv+C6KdsOnGvgXnmgfmp0myi3bcNwj3qfwPAxRKWEuFhvEFF7ceYIz6+1jRZ+yguLFAmUNPEfw==", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-core-module": { - "version": "2.13.1", - "resolved": "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.13.1.tgz", - "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", - "dependencies": { - "hasown": "^2.0.0" - } - }, - "node_modules/is-docker": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/is-docker/-/is-docker-3.0.0.tgz", - "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmmirror.com/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-inside-container": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/is-inside-container/-/is-inside-container-1.0.0.tgz", - "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", - "dependencies": { - "is-docker": "^3.0.0" - }, - "bin": { - "is-inside-container": "cli.js" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/is-installed-globally": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/is-installed-globally/-/is-installed-globally-1.0.0.tgz", - "integrity": "sha512-K55T22lfpQ63N4KEN57jZUAaAYqYHEe8veb/TycJRk9DdSCLLcovXz/mL6mOnhQaZsQGwPhuFopdQIlqGSEjiQ==", - "dependencies": { - "global-directory": "^4.0.1", - "is-path-inside": "^4.0.0" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/is-ip": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/is-ip/-/is-ip-4.0.0.tgz", - "integrity": "sha512-4B4XA2HEIm/PY+OSpeMBXr8pGWBYbXuHgjMAqrwbLO3CPTCAd9ArEJzBUKGZtk9viY6+aSfadGnWyjY3ydYZkw==", - "dependencies": { - "ip-regex": "^5.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-path-inside": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/is-path-inside/-/is-path-inside-4.0.0.tgz", - "integrity": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==", - "engines": { - "node": ">=12" - } - }, - "node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dependencies": { - "is-docker": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-wsl/node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmmirror.com/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "node_modules/jiti": { - "version": "1.21.0", - "resolved": "https://registry.npmmirror.com/jiti/-/jiti-1.21.0.tgz", - "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", - "bin": { - "jiti": "bin/jiti.js" - } - }, - "node_modules/js-base64": { - "version": "3.7.5", - "resolved": "https://registry.npmmirror.com/js-base64/-/js-base64-3.7.5.tgz", - "integrity": "sha512-3MEt5DTINKqfScXKfJFrRbxkrnk2AxPWGBL/ycjz4dK8iqiSJ06UxD8jh8xuh6p10TX4t2+7FsBYVxxQbMg+qA==" - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmmirror.com/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmmirror.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" - }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/katex": { - "version": "0.16.9", - "resolved": "https://registry.npmmirror.com/katex/-/katex-0.16.9.tgz", - "integrity": "sha512-fsSYjWS0EEOwvy81j3vRA8TEAhQhKiqO+FQaKWp0m39qwOzHVBgAUBIXWj1pB+O2W3fIpNa6Y9KSKCVbfPhyAQ==", - "dependencies": { - "commander": "^8.3.0" - }, - "bin": { - "katex": "cli.js" - } - }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmmirror.com/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/khroma": { - "version": "2.1.0", - "resolved": "https://registry.npmmirror.com/khroma/-/khroma-2.1.0.tgz", - "integrity": "sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==" - }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmmirror.com/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", - "engines": { - "node": ">=6" - } - }, - "node_modules/knitwork": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/knitwork/-/knitwork-1.0.0.tgz", - "integrity": "sha512-dWl0Dbjm6Xm+kDxhPQJsCBTxrJzuGl0aP9rhr+TG8D3l+GL90N8O8lYUi7dTSAN2uuDqCtNgb6aEuQH5wsiV8Q==", - "optional": true - }, - "node_modules/kolorist": { - "version": "1.8.0", - "resolved": "https://registry.npmmirror.com/kolorist/-/kolorist-1.8.0.tgz", - "integrity": "sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==" - }, - "node_modules/layout-base": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/layout-base/-/layout-base-1.0.2.tgz", - "integrity": "sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==" - }, - "node_modules/linkify-it": { - "version": "4.0.1", - "resolved": "https://registry.npmmirror.com/linkify-it/-/linkify-it-4.0.1.tgz", - "integrity": "sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==", - "dependencies": { - "uc.micro": "^1.0.1" - } - }, - "node_modules/local-pkg": { - "version": "0.5.0", - "resolved": "https://registry.npmmirror.com/local-pkg/-/local-pkg-0.5.0.tgz", - "integrity": "sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==", - "dependencies": { - "mlly": "^1.4.2", - "pkg-types": "^1.0.3" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/localtunnel": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/localtunnel/-/localtunnel-2.0.2.tgz", - "integrity": "sha512-n418Cn5ynvJd7m/N1d9WVJISLJF/ellZnfsLnx8WBWGzxv/ntNcFkJ1o6se5quUhCplfLGBNL5tYHiq5WF3Nug==", - "dependencies": { - "axios": "0.21.4", - "debug": "4.3.2", - "openurl": "1.1.1", - "yargs": "17.1.1" - }, - "bin": { - "lt": "bin/lt.js" - }, - "engines": { - "node": ">=8.3.0" - } - }, - "node_modules/localtunnel/node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmmirror.com/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "node_modules/localtunnel/node_modules/debug": { - "version": "4.3.2", - "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/localtunnel/node_modules/yargs": { - "version": "17.1.1", - "resolved": "https://registry.npmmirror.com/yargs/-/yargs-17.1.1.tgz", - "integrity": "sha512-c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ==", - "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/localtunnel/node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "engines": { - "node": ">=10" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash-es": { - "version": "4.17.21", - "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz", - "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" - }, - "node_modules/lowercase-keys": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/lowercase-keys/-/lowercase-keys-3.0.0.tgz", - "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/magic-string": { - "version": "0.30.5", - "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.5.tgz", - "integrity": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==", - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/markdown-it": { - "version": "13.0.2", - "resolved": "https://registry.npmmirror.com/markdown-it/-/markdown-it-13.0.2.tgz", - "integrity": "sha512-FtwnEuuK+2yVU7goGn/MJ0WBZMM9ZPgU9spqlFs7/A/pDIUNSOQZhUgOqYCficIuR2QaFnrt8LHqBWsbTAoI5w==", - "dependencies": { - "argparse": "^2.0.1", - "entities": "~3.0.1", - "linkify-it": "^4.0.1", - "mdurl": "^1.0.1", - "uc.micro": "^1.0.5" - }, - "bin": { - "markdown-it": "bin/markdown-it.js" - } - }, - "node_modules/markdown-it-footnote": { - "version": "3.0.3", - "resolved": "https://registry.npmmirror.com/markdown-it-footnote/-/markdown-it-footnote-3.0.3.tgz", - "integrity": "sha512-YZMSuCGVZAjzKMn+xqIco9d1cLGxbELHZ9do/TSYVzraooV8ypsppKNmUJ0fVH5ljkCInQAtFpm8Rb3eXSrt5w==" - }, - "node_modules/markdown-it-link-attributes": { - "version": "4.0.1", - "resolved": "https://registry.npmmirror.com/markdown-it-link-attributes/-/markdown-it-link-attributes-4.0.1.tgz", - "integrity": "sha512-pg5OK0jPLg62H4k7M9mRJLT61gUp9nvG0XveKYHMOOluASo9OEF13WlXrpAp2aj35LbedAy3QOCgQCw0tkLKAQ==" - }, - "node_modules/markdown-it-mdc": { - "version": "0.1.4", - "resolved": "https://registry.npmmirror.com/markdown-it-mdc/-/markdown-it-mdc-0.1.4.tgz", - "integrity": "sha512-9+DN+a7aA3dywExjFxfEcH6JFEpEcysnysqWVDXcgcYvI3Ej0dYNdXLF2YLDMu8je/Qpf9QiHLA9L8tJbb1aog==", - "dependencies": { - "js-yaml": "^4.1.0" - }, - "peerDependencies": { - "@types/markdown-it": "^13.0.1", - "markdown-it": "^13.0.1" - } - }, - "node_modules/markdown-it/node_modules/entities": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/entities/-/entities-3.0.1.tgz", - "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==", - "engines": { - "node": ">=0.12" - } - }, - "node_modules/mdast-util-from-markdown": { - "version": "1.3.1", - "resolved": "https://registry.npmmirror.com/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz", - "integrity": "sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==", - "dependencies": { - "@types/mdast": "^3.0.0", - "@types/unist": "^2.0.0", - "decode-named-character-reference": "^1.0.0", - "mdast-util-to-string": "^3.1.0", - "micromark": "^3.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-decode-string": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "unist-util-stringify-position": "^3.0.0", - "uvu": "^0.5.0" - } - }, - "node_modules/mdast-util-to-hast": { - "version": "13.0.2", - "resolved": "https://registry.npmmirror.com/mdast-util-to-hast/-/mdast-util-to-hast-13.0.2.tgz", - "integrity": "sha512-U5I+500EOOw9e3ZrclN3Is3fRpw8c19SMyNZlZ2IS+7vLsNzb2Om11VpIVOR+/0137GhZsFEF6YiKD5+0Hr2Og==", - "dependencies": { - "@types/hast": "^3.0.0", - "@types/mdast": "^4.0.0", - "@ungap/structured-clone": "^1.0.0", - "devlop": "^1.0.0", - "micromark-util-sanitize-uri": "^2.0.0", - "trim-lines": "^3.0.0", - "unist-util-position": "^5.0.0", - "unist-util-visit": "^5.0.0" - } - }, - "node_modules/mdast-util-to-hast/node_modules/@types/mdast": { - "version": "4.0.3", - "resolved": "https://registry.npmmirror.com/@types/mdast/-/mdast-4.0.3.tgz", - "integrity": "sha512-LsjtqsyF+d2/yFOYaN22dHZI1Cpwkrj+g06G8+qtUKlhovPW89YhqSnfKtMbkgmEtYpH2gydRNULd6y8mciAFg==", - "dependencies": { - "@types/unist": "*" - } - }, - "node_modules/mdast-util-to-hast/node_modules/micromark-util-character": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/micromark-util-character/-/micromark-util-character-2.0.1.tgz", - "integrity": "sha512-3wgnrmEAJ4T+mGXAUfMvMAbxU9RDG43XmGce4j6CwPtVxB3vfwXSZ6KhFwDzZ3mZHhmPimMAXg71veiBGzeAZw==", - "dependencies": { - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/mdast-util-to-hast/node_modules/micromark-util-encode": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz", - "integrity": "sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==" - }, - "node_modules/mdast-util-to-hast/node_modules/micromark-util-sanitize-uri": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz", - "integrity": "sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==", - "dependencies": { - "micromark-util-character": "^2.0.0", - "micromark-util-encode": "^2.0.0", - "micromark-util-symbol": "^2.0.0" - } - }, - "node_modules/mdast-util-to-hast/node_modules/micromark-util-symbol": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", - "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==" - }, - "node_modules/mdast-util-to-hast/node_modules/micromark-util-types": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/micromark-util-types/-/micromark-util-types-2.0.0.tgz", - "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==" - }, - "node_modules/mdast-util-to-string": { - "version": "3.2.0", - "resolved": "https://registry.npmmirror.com/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", - "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", - "dependencies": { - "@types/mdast": "^3.0.0" - } - }, - "node_modules/mdn-data": { - "version": "2.0.30", - "resolved": "https://registry.npmmirror.com/mdn-data/-/mdn-data-2.0.30.tgz", - "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" - }, - "node_modules/mdurl": { - "version": "1.0.1", - "resolved": "https://registry.npmmirror.com/mdurl/-/mdurl-1.0.1.tgz", - "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==" - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/mermaid": { - "version": "10.6.1", - "resolved": "https://registry.npmmirror.com/mermaid/-/mermaid-10.6.1.tgz", - "integrity": "sha512-Hky0/RpOw/1il9X8AvzOEChfJtVvmXm+y7JML5C//ePYMy0/9jCEmW1E1g86x9oDfW9+iVEdTV/i+M6KWRNs4A==", - "dependencies": { - "@braintree/sanitize-url": "^6.0.1", - "@types/d3-scale": "^4.0.3", - "@types/d3-scale-chromatic": "^3.0.0", - "cytoscape": "^3.23.0", - "cytoscape-cose-bilkent": "^4.1.0", - "cytoscape-fcose": "^2.1.0", - "d3": "^7.4.0", - "d3-sankey": "^0.12.3", - "dagre-d3-es": "7.0.10", - "dayjs": "^1.11.7", - "dompurify": "^3.0.5", - "elkjs": "^0.8.2", - "khroma": "^2.0.0", - "lodash-es": "^4.17.21", - "mdast-util-from-markdown": "^1.3.0", - "non-layered-tidy-tree-layout": "^2.0.2", - "stylis": "^4.1.3", - "ts-dedent": "^2.2.0", - "uuid": "^9.0.0", - "web-worker": "^1.2.0" - } - }, - "node_modules/micromark": { - "version": "3.2.0", - "resolved": "https://registry.npmmirror.com/micromark/-/micromark-3.2.0.tgz", - "integrity": "sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==", - "dependencies": { - "@types/debug": "^4.0.0", - "debug": "^4.0.0", - "decode-named-character-reference": "^1.0.0", - "micromark-core-commonmark": "^1.0.1", - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-chunked": "^1.0.0", - "micromark-util-combine-extensions": "^1.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-encode": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-resolve-all": "^1.0.0", - "micromark-util-sanitize-uri": "^1.0.0", - "micromark-util-subtokenize": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.1", - "uvu": "^0.5.0" - } - }, - "node_modules/micromark-core-commonmark": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz", - "integrity": "sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==", - "dependencies": { - "decode-named-character-reference": "^1.0.0", - "micromark-factory-destination": "^1.0.0", - "micromark-factory-label": "^1.0.0", - "micromark-factory-space": "^1.0.0", - "micromark-factory-title": "^1.0.0", - "micromark-factory-whitespace": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-chunked": "^1.0.0", - "micromark-util-classify-character": "^1.0.0", - "micromark-util-html-tag-name": "^1.0.0", - "micromark-util-normalize-identifier": "^1.0.0", - "micromark-util-resolve-all": "^1.0.0", - "micromark-util-subtokenize": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.1", - "uvu": "^0.5.0" - } - }, - "node_modules/micromark-factory-destination": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz", - "integrity": "sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==", - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-factory-label": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz", - "integrity": "sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==", - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" - } - }, - "node_modules/micromark-factory-space": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz", - "integrity": "sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==", - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-factory-title": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz", - "integrity": "sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==", - "dependencies": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-factory-whitespace": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz", - "integrity": "sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==", - "dependencies": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-util-character": { - "version": "1.2.0", - "resolved": "https://registry.npmmirror.com/micromark-util-character/-/micromark-util-character-1.2.0.tgz", - "integrity": "sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==", - "dependencies": { - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-util-chunked": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz", - "integrity": "sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==", - "dependencies": { - "micromark-util-symbol": "^1.0.0" - } - }, - "node_modules/micromark-util-classify-character": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz", - "integrity": "sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==", - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-util-combine-extensions": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz", - "integrity": "sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==", - "dependencies": { - "micromark-util-chunked": "^1.0.0", - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-util-decode-numeric-character-reference": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz", - "integrity": "sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==", - "dependencies": { - "micromark-util-symbol": "^1.0.0" - } - }, - "node_modules/micromark-util-decode-string": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz", - "integrity": "sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==", - "dependencies": { - "decode-named-character-reference": "^1.0.0", - "micromark-util-character": "^1.0.0", - "micromark-util-decode-numeric-character-reference": "^1.0.0", - "micromark-util-symbol": "^1.0.0" - } - }, - "node_modules/micromark-util-encode": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz", - "integrity": "sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==" - }, - "node_modules/micromark-util-html-tag-name": { - "version": "1.2.0", - "resolved": "https://registry.npmmirror.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz", - "integrity": "sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==" - }, - "node_modules/micromark-util-normalize-identifier": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz", - "integrity": "sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==", - "dependencies": { - "micromark-util-symbol": "^1.0.0" - } - }, - "node_modules/micromark-util-resolve-all": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz", - "integrity": "sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==", - "dependencies": { - "micromark-util-types": "^1.0.0" - } - }, - "node_modules/micromark-util-sanitize-uri": { - "version": "1.2.0", - "resolved": "https://registry.npmmirror.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz", - "integrity": "sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==", - "dependencies": { - "micromark-util-character": "^1.0.0", - "micromark-util-encode": "^1.0.0", - "micromark-util-symbol": "^1.0.0" - } - }, - "node_modules/micromark-util-subtokenize": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz", - "integrity": "sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==", - "dependencies": { - "micromark-util-chunked": "^1.0.0", - "micromark-util-symbol": "^1.0.0", - "micromark-util-types": "^1.0.0", - "uvu": "^0.5.0" - } - }, - "node_modules/micromark-util-symbol": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz", - "integrity": "sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==" - }, - "node_modules/micromark-util-types": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/micromark-util-types/-/micromark-util-types-1.1.0.tgz", - "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==" - }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "engines": { - "node": ">=12" - } - }, - "node_modules/mimic-response": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/mimic-response/-/mimic-response-4.0.0.tgz", - "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", - "optional": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmmirror.com/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "optional": true, - "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minizlib/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmmirror.com/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "optional": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minizlib/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "optional": true - }, - "node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmmirror.com/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "optional": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/mlly": { - "version": "1.4.2", - "resolved": "https://registry.npmmirror.com/mlly/-/mlly-1.4.2.tgz", - "integrity": "sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==", - "dependencies": { - "acorn": "^8.10.0", - "pathe": "^1.1.1", - "pkg-types": "^1.0.3", - "ufo": "^1.3.0" - } - }, - "node_modules/monaco-editor": { - "version": "0.37.1", - "resolved": "https://registry.npmmirror.com/monaco-editor/-/monaco-editor-0.37.1.tgz", - "integrity": "sha512-jLXEEYSbqMkT/FuJLBZAVWGuhIb4JNwHE9kPTorAVmsdZ4UzHAfgWxLsVtD7pLRFaOwYPhNG9nUCpmFL1t/dIg==" - }, - "node_modules/mri": { - "version": "1.2.0", - "resolved": "https://registry.npmmirror.com/mri/-/mri-1.2.0.tgz", - "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/mrmime": { - "version": "1.0.1", - "resolved": "https://registry.npmmirror.com/mrmime/-/mrmime-1.0.1.tgz", - "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", - "engines": { - "node": ">=10" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/nanoid": { - "version": "5.0.4", - "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-5.0.4.tgz", - "integrity": "sha512-vAjmBf13gsmhXSgBrtIclinISzFFy22WwCYoyilZlsrRXNIHSwgFQ1bEdjRwMT3aoadeIF6HMuDRlOxzfXV8ig==", - "bin": { - "nanoid": "bin/nanoid.js" - }, - "engines": { - "node": "^18 || >=20" - } - }, - "node_modules/node-fetch-native": { - "version": "1.4.1", - "resolved": "https://registry.npmmirror.com/node-fetch-native/-/node-fetch-native-1.4.1.tgz", - "integrity": "sha512-NsXBU0UgBxo2rQLOeWNZqS3fvflWePMECr8CoSWoSTqCqGbVVsvl9vZu1HfQicYN0g5piV9Gh8RTEvo/uP752w==" - }, - "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" - }, - "node_modules/non-layered-tidy-tree-layout": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/non-layered-tidy-tree-layout/-/non-layered-tidy-tree-layout-2.0.2.tgz", - "integrity": "sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw==" - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-url": { - "version": "8.0.0", - "resolved": "https://registry.npmmirror.com/normalize-url/-/normalize-url-8.0.0.tgz", - "integrity": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==", - "engines": { - "node": ">=14.16" - } - }, - "node_modules/npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/npm-run-path/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "engines": { - "node": ">=12" - } - }, - "node_modules/ofetch": { - "version": "1.3.3", - "resolved": "https://registry.npmmirror.com/ofetch/-/ofetch-1.3.3.tgz", - "integrity": "sha512-s1ZCMmQWXy4b5K/TW9i/DtiN8Ku+xCiHcjQ6/J/nDdssirrQNOoB165Zu8EqLMA2lln1JUth9a0aW9Ap2ctrUg==", - "dependencies": { - "destr": "^2.0.1", - "node-fetch-native": "^1.4.0", - "ufo": "^1.3.0" - } - }, - "node_modules/ohash": { - "version": "1.1.3", - "resolved": "https://registry.npmmirror.com/ohash/-/ohash-1.1.3.tgz", - "integrity": "sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==", - "optional": true - }, - "node_modules/on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmmirror.com/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmmirror.com/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/open": { - "version": "9.1.0", - "resolved": "https://registry.npmmirror.com/open/-/open-9.1.0.tgz", - "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", - "dependencies": { - "default-browser": "^4.0.0", - "define-lazy-prop": "^3.0.0", - "is-inside-container": "^1.0.0", - "is-wsl": "^2.2.0" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/openurl": { - "version": "1.1.1", - "resolved": "https://registry.npmmirror.com/openurl/-/openurl-1.1.1.tgz", - "integrity": "sha512-d/gTkTb1i1GKz5k3XE3XFV/PxQ1k45zDqGP2OA7YhgsaLoqm6qRvARAZOFer1fcXritWlGBRCu/UgeS4HAnXAA==" - }, - "node_modules/p-cancelable": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/p-cancelable/-/p-cancelable-3.0.0.tgz", - "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==", - "engines": { - "node": ">=12.20" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/pako": { - "version": "1.0.11", - "resolved": "https://registry.npmmirror.com/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" - }, - "node_modules/parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmmirror.com/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", - "dependencies": { - "entities": "^4.4.0" - } - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "node_modules/path-type": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/path-type/-/path-type-5.0.0.tgz", - "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", - "optional": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/pathe": { - "version": "1.1.1", - "resolved": "https://registry.npmmirror.com/pathe/-/pathe-1.1.1.tgz", - "integrity": "sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==" - }, - "node_modules/pdf-lib": { - "version": "1.17.1", - "resolved": "https://registry.npmmirror.com/pdf-lib/-/pdf-lib-1.17.1.tgz", - "integrity": "sha512-V/mpyJAoTsN4cnP31vc0wfNA1+p20evqqnap0KLoRUN0Yk/p3wN52DOEsL4oBFcLdb76hlpKPtzJIgo67j/XLw==", - "dependencies": { - "@pdf-lib/standard-fonts": "^1.0.0", - "@pdf-lib/upng": "^1.0.1", - "pako": "^1.0.11", - "tslib": "^1.11.1" - } - }, - "node_modules/pdf-lib/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmmirror.com/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, - "node_modules/perfect-debounce": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/perfect-debounce/-/perfect-debounce-1.0.0.tgz", - "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==" - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "engines": { - "node": ">=8.6" - } - }, - "node_modules/pkg-types": { - "version": "1.0.3", - "resolved": "https://registry.npmmirror.com/pkg-types/-/pkg-types-1.0.3.tgz", - "integrity": "sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==", - "dependencies": { - "jsonc-parser": "^3.2.0", - "mlly": "^1.2.0", - "pathe": "^1.1.0" - } - }, - "node_modules/plantuml-encoder": { - "version": "1.4.0", - "resolved": "https://registry.npmmirror.com/plantuml-encoder/-/plantuml-encoder-1.4.0.tgz", - "integrity": "sha512-sxMwpDw/ySY1WB2CE3+IdMuEcWibJ72DDOsXLkSmEaSzwEUaYBT6DWgOfBiHGCux4q433X6+OEFWjlVqp7gL6g==" - }, - "node_modules/popmotion": { - "version": "11.0.5", - "resolved": "https://registry.npmmirror.com/popmotion/-/popmotion-11.0.5.tgz", - "integrity": "sha512-la8gPM1WYeFznb/JqF4GiTkRRPZsfaj2+kCxqQgr2MJylMmIKUwBfWW8Wa5fml/8gmtlD5yI01MP1QCZPWmppA==", - "dependencies": { - "framesync": "6.1.2", - "hey-listen": "^1.0.8", - "style-value-types": "5.1.2", - "tslib": "2.4.0" - } - }, - "node_modules/postcss": { - "version": "8.4.32", - "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.4.32.tgz", - "integrity": "sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==", - "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-nested": { - "version": "6.0.1", - "resolved": "https://registry.npmmirror.com/postcss-nested/-/postcss-nested-6.0.1.tgz", - "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", - "dependencies": { - "postcss-selector-parser": "^6.0.11" - }, - "engines": { - "node": ">=12.0" - }, - "peerDependencies": { - "postcss": "^8.2.14" - } - }, - "node_modules/postcss-selector-parser": { - "version": "6.0.13", - "resolved": "https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", - "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss/node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/prettier": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/prettier/-/prettier-3.1.0.tgz", - "integrity": "sha512-TQLvXjq5IAibjh8EpBIkNKxO749UEWABoiIZehEPiY4GNpVdhaFKqSTu+QrlU6D2dPAfubRmtJTi4K4YkQ5eXw==", - "bin": { - "prettier": "bin/prettier.cjs" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/prism-theme-vars": { - "version": "0.2.4", - "resolved": "https://registry.npmmirror.com/prism-theme-vars/-/prism-theme-vars-0.2.4.tgz", - "integrity": "sha512-B3Pht+GCT87sZph7hMRLlCQXzCM0awW7Rhk08RavpqRW4LEQOeqN0uMG4QCWkul2tr8PB61YAOJGUrEW+1uuJA==" - }, - "node_modules/prismjs": { - "version": "1.29.0", - "resolved": "https://registry.npmmirror.com/prismjs/-/prismjs-1.29.0.tgz", - "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==", - "engines": { - "node": ">=6" - } - }, - "node_modules/prompts": { - "version": "2.4.2", - "resolved": "https://registry.npmmirror.com/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", - "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/property-information": { - "version": "6.4.0", - "resolved": "https://registry.npmmirror.com/property-information/-/property-information-6.4.0.tgz", - "integrity": "sha512-9t5qARVofg2xQqKtytzt+lZ4d1Qvj8t5B8fEwXK6qOfgRLgH/b13QlgEyDh033NOS31nXeFbYv7CLUDG1CeifQ==" - }, - "node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - }, - "node_modules/public-ip": { - "version": "6.0.1", - "resolved": "https://registry.npmmirror.com/public-ip/-/public-ip-6.0.1.tgz", - "integrity": "sha512-1/Mxa1MKrAQ4jF5IalECSBtB0W1FAtnG+9c5X16jjvV/Gx9fiRy7xXIrHlBGYjnTlai0zdZkM3LrpmASavmAEg==", - "dependencies": { - "aggregate-error": "^4.0.1", - "dns-socket": "^4.2.2", - "got": "^12.1.0", - "is-ip": "^4.0.0" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" - }, - "node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmmirror.com/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", - "engines": { - "node": ">=10" - } - }, - "node_modules/rc9": { - "version": "2.1.1", - "resolved": "https://registry.npmmirror.com/rc9/-/rc9-2.1.1.tgz", - "integrity": "sha512-lNeOl38Ws0eNxpO3+wD1I9rkHGQyj1NU1jlzv4go2CtEnEQEUfqnIvZG7W+bC/aXdJ27n5x/yUjb6RoT9tko+Q==", - "optional": true, - "dependencies": { - "defu": "^6.1.2", - "destr": "^2.0.0", - "flat": "^5.0.2" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/recordrtc": { - "version": "5.6.2", - "resolved": "https://registry.npmmirror.com/recordrtc/-/recordrtc-5.6.2.tgz", - "integrity": "sha512-1QNKKNtl7+KcwD1lyOgP3ZlbiJ1d0HtXnypUy7yq49xEERxk31PHvE9RCciDrulPCY7WJ+oz0R9hpNxgsIurGQ==" - }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmmirror.com/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - } - }, - "node_modules/resolve-alpn": { - "version": "1.2.1", - "resolved": "https://registry.npmmirror.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz", - "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" - }, - "node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-global": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/resolve-global/-/resolve-global-2.0.0.tgz", - "integrity": "sha512-gnAQ0Q/KkupGkuiMyX4L0GaBV8iFwlmoXsMtOz+DFTaKmHhOO/dSlP1RMKhpvHv/dh6K/IQkowGJBqUG0NfBUw==", - "dependencies": { - "global-directory": "^4.0.1" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/responselike": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/responselike/-/responselike-3.0.0.tgz", - "integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==", - "dependencies": { - "lowercase-keys": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/robust-predicates": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/robust-predicates/-/robust-predicates-3.0.2.tgz", - "integrity": "sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==" - }, - "node_modules/rollup": { - "version": "3.29.4", - "resolved": "https://registry.npmmirror.com/rollup/-/rollup-3.29.4.tgz", - "integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==", - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=14.18.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/run-applescript": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/run-applescript/-/run-applescript-5.0.0.tgz", - "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", - "dependencies": { - "execa": "^5.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/run-applescript/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/run-applescript/node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmmirror.com/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/run-applescript/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/run-applescript/node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/run-applescript/node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/run-applescript/node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/run-applescript/node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/rw": { - "version": "1.3.3", - "resolved": "https://registry.npmmirror.com/rw/-/rw-1.3.3.tgz", - "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==" - }, - "node_modules/sade": { - "version": "1.8.1", - "resolved": "https://registry.npmmirror.com/sade/-/sade-1.8.1.tgz", - "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", - "dependencies": { - "mri": "^1.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "node_modules/scule": { - "version": "1.1.1", - "resolved": "https://registry.npmmirror.com/scule/-/scule-1.1.1.tgz", - "integrity": "sha512-sHtm/SsIK9BUBI3EFT/Gnp9VoKfY6QLvlkvAE6YK7454IF8FSgJEAnJpVdSC7K5/pjI5NfxhzBLW2JAfYA/shQ==", - "optional": true - }, - "node_modules/section-matter": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/section-matter/-/section-matter-1.0.0.tgz", - "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==", - "dependencies": { - "extend-shallow": "^2.0.1", - "kind-of": "^6.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "engines": { - "node": ">=8" - } - }, - "node_modules/shiki": { - "name": "shikiji-compat", - "version": "0.6.13", - "resolved": "https://registry.npmmirror.com/shikiji-compat/-/shikiji-compat-0.6.13.tgz", - "integrity": "sha512-PS6kUCD6a1+24x66HVVEDXPO+bxNXcN1dxCJaN45ZUZ0LHM2DWXF4w4rhQ/GmNrTUpvM/gMamOMsX6r6bmsxxQ==", - "dependencies": { - "shikiji": "0.6.13" - } - }, - "node_modules/shikiji": { - "version": "0.6.13", - "resolved": "https://registry.npmmirror.com/shikiji/-/shikiji-0.6.13.tgz", - "integrity": "sha512-4T7X39csvhT0p7GDnq9vysWddf2b6BeioiN3Ymhnt3xcy9tXmDcnsEFVxX18Z4YcQgEE/w48dLJ4pPPUcG9KkA==", - "dependencies": { - "hast-util-to-html": "^9.0.0" - } - }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" - }, - "node_modules/sirv": { - "version": "2.0.3", - "resolved": "https://registry.npmmirror.com/sirv/-/sirv-2.0.3.tgz", - "integrity": "sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==", - "dependencies": { - "@polka/url": "^1.0.0-next.20", - "mrmime": "^1.0.0", - "totalist": "^3.0.0" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmmirror.com/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" - }, - "node_modules/slash": { - "version": "5.1.0", - "resolved": "https://registry.npmmirror.com/slash/-/slash-5.1.0.tgz", - "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", - "optional": true, - "engines": { - "node": ">=14.16" - } - }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/space-separated-tokens": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", - "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==" - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmmirror.com/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - }, - "node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmmirror.com/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/std-env": { - "version": "3.6.0", - "resolved": "https://registry.npmmirror.com/std-env/-/std-env-3.6.0.tgz", - "integrity": "sha512-aFZ19IgVmhdB2uX599ve2kE6BIE3YMnQ6Gp6BURhW/oIzpXGKr878TQfAQZn1+i0Flcc/UKUy1gOlcfaUBCryg==", - "optional": true - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/stringify-entities": { - "version": "4.0.3", - "resolved": "https://registry.npmmirror.com/stringify-entities/-/stringify-entities-4.0.3.tgz", - "integrity": "sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==", - "dependencies": { - "character-entities-html4": "^2.0.0", - "character-entities-legacy": "^3.0.0" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom-string": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz", - "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "engines": { - "node": ">=12" - } - }, - "node_modules/strip-literal": { - "version": "1.3.0", - "resolved": "https://registry.npmmirror.com/strip-literal/-/strip-literal-1.3.0.tgz", - "integrity": "sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==", - "optional": true, - "dependencies": { - "acorn": "^8.10.0" - } - }, - "node_modules/style-value-types": { - "version": "5.1.2", - "resolved": "https://registry.npmmirror.com/style-value-types/-/style-value-types-5.1.2.tgz", - "integrity": "sha512-Vs9fNreYF9j6W2VvuDTP7kepALi7sk0xtk2Tu8Yxi9UoajJdEVpNpCov0HsLTqXvNGKX+Uv09pkozVITi1jf3Q==", - "dependencies": { - "hey-listen": "^1.0.8", - "tslib": "2.4.0" - } - }, - "node_modules/stylis": { - "version": "4.3.0", - "resolved": "https://registry.npmmirror.com/stylis/-/stylis-4.3.0.tgz", - "integrity": "sha512-E87pIogpwUsUwXw7dNyU4QDjdgVMy52m+XEOPEKUn161cCzWjjhPSQhByfd1CcNvrOLnXQ6OnnZDwnJrz/Z4YQ==" - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/svg-tags": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/svg-tags/-/svg-tags-1.0.0.tgz", - "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==" - }, - "node_modules/tar": { - "version": "6.2.0", - "resolved": "https://registry.npmmirror.com/tar/-/tar-6.2.0.tgz", - "integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==", - "optional": true, - "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/tar/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "optional": true - }, - "node_modules/theme-vitesse": { - "version": "0.1.14", - "resolved": "https://registry.npmmirror.com/theme-vitesse/-/theme-vitesse-0.1.14.tgz", - "integrity": "sha512-b5s+Zpfaw5+djoCJ9AEbcTbpiTlLsOvGM9oblDmmWRGWNqg9oXtEYO/uwubwx77novHBI6zNuwZRHKNlAIBo4A==", - "engines": { - "vscode": "^1.43.0" - } - }, - "node_modules/titleize": { - "version": "3.0.0", - "resolved": "https://registry.npmmirror.com/titleize/-/titleize-3.0.0.tgz", - "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", - "engines": { - "node": ">=12" - } - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/totalist": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/totalist/-/totalist-3.0.1.tgz", - "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/trim-lines": { - "version": "3.0.1", - "resolved": "https://registry.npmmirror.com/trim-lines/-/trim-lines-3.0.1.tgz", - "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==" - }, - "node_modules/ts-dedent": { - "version": "2.2.0", - "resolved": "https://registry.npmmirror.com/ts-dedent/-/ts-dedent-2.2.0.tgz", - "integrity": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==", - "engines": { - "node": ">=6.10" - } - }, - "node_modules/tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - }, - "node_modules/uc.micro": { - "version": "1.0.6", - "resolved": "https://registry.npmmirror.com/uc.micro/-/uc.micro-1.0.6.tgz", - "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==" - }, - "node_modules/ufo": { - "version": "1.3.2", - "resolved": "https://registry.npmmirror.com/ufo/-/ufo-1.3.2.tgz", - "integrity": "sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==" - }, - "node_modules/unconfig": { - "version": "0.3.11", - "resolved": "https://registry.npmmirror.com/unconfig/-/unconfig-0.3.11.tgz", - "integrity": "sha512-bV/nqePAKv71v3HdVUn6UefbsDKQWRX+bJIkiSm0+twIds6WiD2bJLWWT3i214+J/B4edufZpG2w7Y63Vbwxow==", - "dependencies": { - "@antfu/utils": "^0.7.6", - "defu": "^6.1.2", - "jiti": "^1.20.0", - "mlly": "^1.4.2" - } - }, - "node_modules/unctx": { - "version": "2.3.1", - "resolved": "https://registry.npmmirror.com/unctx/-/unctx-2.3.1.tgz", - "integrity": "sha512-PhKke8ZYauiqh3FEMVNm7ljvzQiph0Mt3GBRve03IJm7ukfaON2OBK795tLwhbyfzknuRRkW0+Ze+CQUmzOZ+A==", - "optional": true, - "dependencies": { - "acorn": "^8.8.2", - "estree-walker": "^3.0.3", - "magic-string": "^0.30.0", - "unplugin": "^1.3.1" - } - }, - "node_modules/unhead": { - "version": "1.8.8", - "resolved": "https://registry.npmmirror.com/unhead/-/unhead-1.8.8.tgz", - "integrity": "sha512-SfUJ2kjz1NcfvdM+uEAlN11h31wHqMg0HZ5jriuRPjMCj5O7lPs4uSMdBUYh3KEo0uLKrW76FM85ONXkyZfm3g==", - "dependencies": { - "@unhead/dom": "1.8.8", - "@unhead/schema": "1.8.8", - "@unhead/shared": "1.8.8", - "hookable": "^5.5.3" - } - }, - "node_modules/unicorn-magic": { - "version": "0.1.0", - "resolved": "https://registry.npmmirror.com/unicorn-magic/-/unicorn-magic-0.1.0.tgz", - "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", - "optional": true, - "engines": { - "node": ">=18" - } - }, - "node_modules/unimport": { - "version": "3.6.0", - "resolved": "https://registry.npmmirror.com/unimport/-/unimport-3.6.0.tgz", - "integrity": "sha512-yXW3Z30yk1vX8fxO8uHlq9wY9K+L56LHp4Hlbv8i7tW+NENSOv8AaFJUPtOQchxlT7/JBAzCtkrBtcVjKIr1VQ==", - "optional": true, - "dependencies": { - "@rollup/pluginutils": "^5.0.5", - "escape-string-regexp": "^5.0.0", - "fast-glob": "^3.3.2", - "local-pkg": "^0.5.0", - "magic-string": "^0.30.5", - "mlly": "^1.4.2", - "pathe": "^1.1.1", - "pkg-types": "^1.0.3", - "scule": "^1.1.0", - "strip-literal": "^1.3.0", - "unplugin": "^1.5.1" - } - }, - "node_modules/unimport/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "optional": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/unist-util-is": { - "version": "6.0.0", - "resolved": "https://registry.npmmirror.com/unist-util-is/-/unist-util-is-6.0.0.tgz", - "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", - "dependencies": { - "@types/unist": "^3.0.0" - } - }, - "node_modules/unist-util-is/node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==" - }, - "node_modules/unist-util-position": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/unist-util-position/-/unist-util-position-5.0.0.tgz", - "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", - "dependencies": { - "@types/unist": "^3.0.0" - } - }, - "node_modules/unist-util-position/node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==" - }, - "node_modules/unist-util-stringify-position": { - "version": "3.0.3", - "resolved": "https://registry.npmmirror.com/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", - "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", - "dependencies": { - "@types/unist": "^2.0.0" - } - }, - "node_modules/unist-util-visit": { - "version": "5.0.0", - "resolved": "https://registry.npmmirror.com/unist-util-visit/-/unist-util-visit-5.0.0.tgz", - "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", - "dependencies": { - "@types/unist": "^3.0.0", - "unist-util-is": "^6.0.0", - "unist-util-visit-parents": "^6.0.0" - } - }, - "node_modules/unist-util-visit-parents": { - "version": "6.0.1", - "resolved": "https://registry.npmmirror.com/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz", - "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==", - "dependencies": { - "@types/unist": "^3.0.0", - "unist-util-is": "^6.0.0" - } - }, - "node_modules/unist-util-visit-parents/node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==" - }, - "node_modules/unist-util-visit/node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==" - }, - "node_modules/universalify": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/unocss": { - "version": "0.57.7", - "resolved": "https://registry.npmmirror.com/unocss/-/unocss-0.57.7.tgz", - "integrity": "sha512-Z99ZZPkbkjIUXEM7L+K/7Y5V5yqUS0VigG7ZIFzLf/npieKmXHKlrPyvQWFQaf3OqooMFuKBQivh75TwvSOkcQ==", - "dependencies": { - "@unocss/astro": "0.57.7", - "@unocss/cli": "0.57.7", - "@unocss/core": "0.57.7", - "@unocss/extractor-arbitrary-variants": "0.57.7", - "@unocss/postcss": "0.57.7", - "@unocss/preset-attributify": "0.57.7", - "@unocss/preset-icons": "0.57.7", - "@unocss/preset-mini": "0.57.7", - "@unocss/preset-tagify": "0.57.7", - "@unocss/preset-typography": "0.57.7", - "@unocss/preset-uno": "0.57.7", - "@unocss/preset-web-fonts": "0.57.7", - "@unocss/preset-wind": "0.57.7", - "@unocss/reset": "0.57.7", - "@unocss/transformer-attributify-jsx": "0.57.7", - "@unocss/transformer-attributify-jsx-babel": "0.57.7", - "@unocss/transformer-compile-class": "0.57.7", - "@unocss/transformer-directives": "0.57.7", - "@unocss/transformer-variant-group": "0.57.7", - "@unocss/vite": "0.57.7" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@unocss/webpack": "0.57.7", - "vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0" - }, - "peerDependenciesMeta": { - "@unocss/webpack": { - "optional": true - }, - "vite": { - "optional": true - } - } - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmmirror.com/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/unplugin": { - "version": "1.5.1", - "resolved": "https://registry.npmmirror.com/unplugin/-/unplugin-1.5.1.tgz", - "integrity": "sha512-0QkvG13z6RD+1L1FoibQqnvTwVBXvS4XSPwAyinVgoOCl2jAgwzdUKmEj05o4Lt8xwQI85Hb6mSyYkcAGwZPew==", - "dependencies": { - "acorn": "^8.11.2", - "chokidar": "^3.5.3", - "webpack-sources": "^3.2.3", - "webpack-virtual-modules": "^0.6.0" - } - }, - "node_modules/unplugin-icons": { - "version": "0.17.4", - "resolved": "https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.17.4.tgz", - "integrity": "sha512-PHLxjBx3ZV8RUBvfMafFl8uWH88jHeZgOijcRpkwgne7y2Ovx7WI0Ltzzw3fjZQ7dGaDhB8udyKVdm9N2S6BIw==", - "dependencies": { - "@antfu/install-pkg": "^0.1.1", - "@antfu/utils": "^0.7.6", - "@iconify/utils": "^2.1.11", - "debug": "^4.3.4", - "kolorist": "^1.8.0", - "local-pkg": "^0.5.0", - "unplugin": "^1.5.0" - }, - "peerDependencies": { - "@svgr/core": ">=7.0.0", - "@svgx/core": "^1.0.1", - "@vue/compiler-sfc": "^3.0.2 || ^2.7.0", - "vue-template-compiler": "^2.6.12", - "vue-template-es2015-compiler": "^1.9.0" - }, - "peerDependenciesMeta": { - "@svgr/core": { - "optional": true - }, - "@svgx/core": { - "optional": true - }, - "@vue/compiler-sfc": { - "optional": true - }, - "vue-template-compiler": { - "optional": true - }, - "vue-template-es2015-compiler": { - "optional": true - } - } - }, - "node_modules/unplugin-vue-components": { - "version": "0.25.2", - "resolved": "https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.25.2.tgz", - "integrity": "sha512-OVmLFqILH6w+eM8fyt/d/eoJT9A6WO51NZLf1vC5c1FZ4rmq2bbGxTy8WP2Jm7xwFdukaIdv819+UI7RClPyCA==", - "dependencies": { - "@antfu/utils": "^0.7.5", - "@rollup/pluginutils": "^5.0.2", - "chokidar": "^3.5.3", - "debug": "^4.3.4", - "fast-glob": "^3.3.0", - "local-pkg": "^0.4.3", - "magic-string": "^0.30.1", - "minimatch": "^9.0.3", - "resolve": "^1.22.2", - "unplugin": "^1.4.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@babel/parser": "^7.15.8", - "@nuxt/kit": "^3.2.2", - "vue": "2 || 3" - }, - "peerDependenciesMeta": { - "@babel/parser": { - "optional": true - }, - "@nuxt/kit": { - "optional": true - } - } - }, - "node_modules/unplugin-vue-components/node_modules/local-pkg": { - "version": "0.4.3", - "resolved": "https://registry.npmmirror.com/local-pkg/-/local-pkg-0.4.3.tgz", - "integrity": "sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==", - "engines": { - "node": ">=14" - } - }, - "node_modules/unplugin-vue-markdown": { - "version": "0.25.2", - "resolved": "https://registry.npmmirror.com/unplugin-vue-markdown/-/unplugin-vue-markdown-0.25.2.tgz", - "integrity": "sha512-bDDWqtK1PUkWK/+kczOk33hqO5WulOUx5ZxfbCZuVArcUSwY7aB2vf4e2K+qdrlxalxkpjIA64z/liOrC/cjiQ==", - "dependencies": { - "@mdit-vue/plugin-component": "^1.0.0", - "@mdit-vue/plugin-frontmatter": "^1.0.0", - "@mdit-vue/types": "^1.0.0", - "@rollup/pluginutils": "^5.0.5", - "@types/markdown-it": "^13.0.6", - "markdown-it": "^13.0.2", - "unplugin": "^1.5.0" - }, - "peerDependencies": { - "vite": "^2.0.0 || ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0" - } - }, - "node_modules/untildify": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/untildify/-/untildify-4.0.0.tgz", - "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/untyped": { - "version": "1.4.0", - "resolved": "https://registry.npmmirror.com/untyped/-/untyped-1.4.0.tgz", - "integrity": "sha512-Egkr/s4zcMTEuulcIb7dgURS6QpN7DyqQYdf+jBtiaJvQ+eRsrtWUoX84SbvQWuLkXsOjM+8sJC9u6KoMK/U7Q==", - "optional": true, - "dependencies": { - "@babel/core": "^7.22.9", - "@babel/standalone": "^7.22.9", - "@babel/types": "^7.22.5", - "defu": "^6.1.2", - "jiti": "^1.19.1", - "mri": "^1.2.0", - "scule": "^1.0.0" - }, - "bin": { - "untyped": "dist/cli.mjs" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.13", - "resolved": "https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", - "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/uqr": { - "version": "0.1.2", - "resolved": "https://registry.npmmirror.com/uqr/-/uqr-0.1.2.tgz", - "integrity": "sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==" - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmmirror.com/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/uuid": { - "version": "9.0.1", - "resolved": "https://registry.npmmirror.com/uuid/-/uuid-9.0.1.tgz", - "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/uvu": { - "version": "0.5.6", - "resolved": "https://registry.npmmirror.com/uvu/-/uvu-0.5.6.tgz", - "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==", - "dependencies": { - "dequal": "^2.0.0", - "diff": "^5.0.0", - "kleur": "^4.0.3", - "sade": "^1.7.3" - }, - "bin": { - "uvu": "bin.js" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/uvu/node_modules/kleur": { - "version": "4.1.5", - "resolved": "https://registry.npmmirror.com/kleur/-/kleur-4.1.5.tgz", - "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/vfile": { - "version": "6.0.1", - "resolved": "https://registry.npmmirror.com/vfile/-/vfile-6.0.1.tgz", - "integrity": "sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==", - "dependencies": { - "@types/unist": "^3.0.0", - "unist-util-stringify-position": "^4.0.0", - "vfile-message": "^4.0.0" - } - }, - "node_modules/vfile-location": { - "version": "5.0.2", - "resolved": "https://registry.npmmirror.com/vfile-location/-/vfile-location-5.0.2.tgz", - "integrity": "sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==", - "dependencies": { - "@types/unist": "^3.0.0", - "vfile": "^6.0.0" - } - }, - "node_modules/vfile-location/node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==" - }, - "node_modules/vfile-message": { - "version": "4.0.2", - "resolved": "https://registry.npmmirror.com/vfile-message/-/vfile-message-4.0.2.tgz", - "integrity": "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==", - "dependencies": { - "@types/unist": "^3.0.0", - "unist-util-stringify-position": "^4.0.0" - } - }, - "node_modules/vfile-message/node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==" - }, - "node_modules/vfile-message/node_modules/unist-util-stringify-position": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", - "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", - "dependencies": { - "@types/unist": "^3.0.0" - } - }, - "node_modules/vfile/node_modules/@types/unist": { - "version": "3.0.2", - "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.2.tgz", - "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==" - }, - "node_modules/vfile/node_modules/unist-util-stringify-position": { - "version": "4.0.0", - "resolved": "https://registry.npmmirror.com/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", - "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", - "dependencies": { - "@types/unist": "^3.0.0" - } - }, - "node_modules/vite": { - "version": "4.5.0", - "resolved": "https://registry.npmmirror.com/vite/-/vite-4.5.0.tgz", - "integrity": "sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==", - "dependencies": { - "esbuild": "^0.18.10", - "postcss": "^8.4.27", - "rollup": "^3.27.1" - }, - "bin": { - "vite": "bin/vite.js" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - }, - "peerDependencies": { - "@types/node": ">= 14", - "less": "*", - "lightningcss": "^1.21.0", - "sass": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "lightningcss": { - "optional": true - }, - "sass": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - } - } - }, - "node_modules/vite-plugin-inspect": { - "version": "0.7.42", - "resolved": "https://registry.npmmirror.com/vite-plugin-inspect/-/vite-plugin-inspect-0.7.42.tgz", - "integrity": "sha512-JCyX86wr3siQc+p9Kd0t8VkFHAJag0RaQVIpdFGSv5FEaePEVB6+V/RGtz2dQkkGSXQzRWrPs4cU3dRKg32bXw==", - "dependencies": { - "@antfu/utils": "^0.7.6", - "@rollup/pluginutils": "^5.0.5", - "debug": "^4.3.4", - "error-stack-parser-es": "^0.1.1", - "fs-extra": "^11.1.1", - "open": "^9.1.0", - "picocolors": "^1.0.0", - "sirv": "^2.0.3" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "vite": "^3.1.0 || ^4.0.0 || ^5.0.0-0" - }, - "peerDependenciesMeta": { - "@nuxt/kit": { - "optional": true - } - } - }, - "node_modules/vite-plugin-remote-assets": { - "version": "0.3.2", - "resolved": "https://registry.npmmirror.com/vite-plugin-remote-assets/-/vite-plugin-remote-assets-0.3.2.tgz", - "integrity": "sha512-E0xS2fHpoJffpsU4W82XDaBRxx2Yh4Zwl4Q668V/HXa/b0nNDaQyo5ff5tS6D4pwGBVuAKlGYyUEE63P/RfiwA==", - "dependencies": { - "axios": "^1.3.4", - "debug": "^4.3.4", - "fs-extra": "^11.1.1", - "magic-string": "^0.30.0" - }, - "peerDependencies": { - "vite": "^2.0.0 || ^3.0.0 || ^4.0.0" - } - }, - "node_modules/vite-plugin-remote-assets/node_modules/axios": { - "version": "1.6.2", - "resolved": "https://registry.npmmirror.com/axios/-/axios-1.6.2.tgz", - "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", - "dependencies": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - } - }, - "node_modules/vite-plugin-static-copy": { - "version": "0.17.1", - "resolved": "https://registry.npmmirror.com/vite-plugin-static-copy/-/vite-plugin-static-copy-0.17.1.tgz", - "integrity": "sha512-9h3iaVs0bqnqZOM5YHJXGHqdC5VAVlTZ2ARYsuNpzhEJUHmFqXY7dAK4ZFpjEQ4WLFKcaN8yWbczr81n01U4sQ==", - "dependencies": { - "chokidar": "^3.5.3", - "fast-glob": "^3.2.11", - "fs-extra": "^11.1.0", - "picocolors": "^1.0.0" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "peerDependencies": { - "vite": "^3.0.0 || ^4.0.0 || ^5.0.0" - } - }, - "node_modules/vite-plugin-vue-server-ref": { - "version": "0.3.4", - "resolved": "https://registry.npmmirror.com/vite-plugin-vue-server-ref/-/vite-plugin-vue-server-ref-0.3.4.tgz", - "integrity": "sha512-thZVfz+FX4wGMTBvlJFc0tN496XnfSychi50aV9n+FsJqDvJYTCASVrXmdkKM+2Jpu0CUg8YzfCQfJXFgcCgHg==", - "dependencies": { - "debug": "^4.3.4", - "ufo": "^1.1.2" - }, - "peerDependencies": { - "vite": "^2.0.0 || ^3.0.0 || ^4.0.0", - "vue": "^3.0.0" - } - }, - "node_modules/vite-plugin-windicss": { - "version": "1.9.2", - "resolved": "https://registry.npmmirror.com/vite-plugin-windicss/-/vite-plugin-windicss-1.9.2.tgz", - "integrity": "sha512-QRWOFgdsbj00DNHm8vM51gbSQeuyXC73uGtp//cMHMeMstFD83fbX7x6MmpjC04dijWMxyAuD90sUD0Q/pjnnQ==", - "dependencies": { - "@windicss/plugin-utils": "1.9.2", - "debug": "^4.3.4", - "kolorist": "^1.8.0", - "windicss": "^3.5.6" - }, - "peerDependencies": { - "vite": "^2.0.1 || ^3.0.0 || ^4.0.0 || ^5.0.0" - } - }, - "node_modules/vitefu": { - "version": "0.2.5", - "resolved": "https://registry.npmmirror.com/vitefu/-/vitefu-0.2.5.tgz", - "integrity": "sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==", - "peerDependencies": { - "vite": "^3.0.0 || ^4.0.0 || ^5.0.0" - }, - "peerDependenciesMeta": { - "vite": { - "optional": true - } - } - }, - "node_modules/vue": { - "version": "3.3.9", - "resolved": "https://registry.npmmirror.com/vue/-/vue-3.3.9.tgz", - "integrity": "sha512-sy5sLCTR8m6tvUk1/ijri3Yqzgpdsmxgj6n6yl7GXXCXqVbmW2RCXe9atE4cEI6Iv7L89v5f35fZRRr5dChP9w==", - "dependencies": { - "@vue/compiler-dom": "3.3.9", - "@vue/compiler-sfc": "3.3.9", - "@vue/runtime-dom": "3.3.9", - "@vue/server-renderer": "3.3.9", - "@vue/shared": "3.3.9" - }, - "peerDependencies": { - "typescript": "*" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/vue-router": { - "version": "4.2.5", - "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-4.2.5.tgz", - "integrity": "sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==", - "dependencies": { - "@vue/devtools-api": "^6.5.0" - }, - "peerDependencies": { - "vue": "^3.2.0" - } - }, - "node_modules/vue-starport": { - "version": "0.4.0", - "resolved": "https://registry.npmmirror.com/vue-starport/-/vue-starport-0.4.0.tgz", - "integrity": "sha512-02odSlCxGyUaDam1VzNP/d/lj2p/SO3ji5pvuajXrC1Ol7iqSqIt+n/x4xoBugUIctyGyCQoJbMuoyaiyGy9ag==", - "dependencies": { - "@vueuse/core": "^10.4.1", - "vue": "^3.3.4" - } - }, - "node_modules/web-namespaces": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/web-namespaces/-/web-namespaces-2.0.1.tgz", - "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==" - }, - "node_modules/web-worker": { - "version": "1.2.0", - "resolved": "https://registry.npmmirror.com/web-worker/-/web-worker-1.2.0.tgz", - "integrity": "sha512-PgF341avzqyx60neE9DD+XS26MMNMoUQRz9NOZwW32nPQrF6p77f1htcnjBSEV8BGMKZ16choqUG4hyI0Hx7mA==" - }, - "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webpack-virtual-modules": { - "version": "0.6.1", - "resolved": "https://registry.npmmirror.com/webpack-virtual-modules/-/webpack-virtual-modules-0.6.1.tgz", - "integrity": "sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==" - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/windicss": { - "version": "3.5.6", - "resolved": "https://registry.npmmirror.com/windicss/-/windicss-3.5.6.tgz", - "integrity": "sha512-P1mzPEjgFMZLX0ZqfFht4fhV/FX8DTG7ERG1fBLiWvd34pTLVReS5CVsewKn9PApSgXnVfPWwvq+qUsRwpnwFA==", - "bin": { - "windicss": "cli/index.js" - }, - "engines": { - "node": ">= 12" - } - }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "engines": { - "node": ">=10" - } - }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - }, - "node_modules/yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmmirror.com/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "engines": { - "node": ">=12" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "engines": { - "node": ">=10" - } - }, - "node_modules/zhead": { - "version": "2.2.4", - "resolved": "https://registry.npmmirror.com/zhead/-/zhead-2.2.4.tgz", - "integrity": "sha512-8F0OI5dpWIA5IGG5NHUg9staDwz/ZPxZtvGVf01j7vHqSyZ0raHY+78atOVxRqb73AotX22uV1pXt3gYSstGag==" - }, - "node_modules/zwitch": { - "version": "2.0.4", - "resolved": "https://registry.npmmirror.com/zwitch/-/zwitch-2.0.4.tgz", - "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==" - } - } -} diff --git a/c/pancakeSort/slidev/package.json b/c/pancakeSort/slidev/package.json deleted file mode 100644 index 5cb1961..0000000 --- a/c/pancakeSort/slidev/package.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "slidev", - "type": "module", - "private": true, - "scripts": { - "build": "slidev build", - "dev": "slidev --open", - "export": "slidev export" - }, - "dependencies": { - "@slidev/cli": "^0.44.0", - "@slidev/theme-default": "latest", - "@slidev/theme-seriph": "latest" - } -} \ No newline at end of file diff --git a/c/pancakeSort/slidev/pages/multiple-entries.md b/c/pancakeSort/slidev/pages/multiple-entries.md deleted file mode 100644 index 5b17510..0000000 --- a/c/pancakeSort/slidev/pages/multiple-entries.md +++ /dev/null @@ -1,27 +0,0 @@ -# Multiple Entries - -You can split your slides.md into multiple files and organize them as you want using the `src` attribute. - -#### `slides.md` - -```markdown -# Page 1 - -Page 2 from main entry. - ---- -src: ./subpage.md ---- -``` - -
- -#### `subpage.md` - -```markdown -# Page 2 - -Page 2 from another file. -``` - -[Learn more](https://sli.dev/guide/syntax.html#multiple-entries) diff --git a/c/pancakeSort/slidev/slides.md b/c/pancakeSort/slidev/slides.md deleted file mode 100644 index c3167c6..0000000 --- a/c/pancakeSort/slidev/slides.md +++ /dev/null @@ -1,437 +0,0 @@ ---- -theme: seriph -background: https://source.unsplash.com/collection/94734566/1920x1080 -class: text-center -highlighter: shiki -lineNumbers: false -info: | - ## Slidev Starter Template - Presentation slides for developers. - - Learn more at [Sli.dev](https://sli.dev) -drawings: - persist: false -transition: slide-left -title: Welcome to Slidev -mdc: true ---- - -# Welcome to Slidev - -Presentation slides for developers - -
- - Press Space for next page - -
- -
- - - - -
- - - ---- -transition: fade-out ---- - -# What is Slidev? - -Slidev is a slides maker and presenter designed for developers, consist of the following features - -- 📝 **Text-based** - focus on the content with Markdown, and then style them later -- 🎨 **Themable** - theme can be shared and used with npm packages -- 🧑‍💻 **Developer Friendly** - code highlighting, live coding with autocompletion -- 🤹 **Interactive** - embedding Vue components to enhance your expressions -- 🎥 **Recording** - built-in recording and camera view -- 📤 **Portable** - export into PDF, PNGs, or even a hostable SPA -- 🛠 **Hackable** - anything possible on a webpage - -
-
- -Read more about [Why Slidev?](https://sli.dev/guide/why) - - - - - - - ---- -layout: default ---- - -# Table of contents - -```html - -``` - - - ---- -transition: slide-up -level: 2 ---- - -# Navigation - -Hover on the bottom-left corner to see the navigation's controls panel, [learn more](https://sli.dev/guide/navigation.html) - -## Keyboard Shortcuts - -| | | -| --- | --- | -| right / space| next animation or slide | -| left / shiftspace | previous animation or slide | -| up | previous slide | -| down | next slide | - - - -

Here!

- ---- -layout: image-right -image: https://source.unsplash.com/collection/94734566/1920x1080 ---- - -# Code - -Use code snippets and get the highlighting directly![^1] - -```ts {all|2|1-6|9|all} -interface User { - id: number - firstName: string - lastName: string - role: string -} - -function updateUser(id: number, update: User) { - const user = getUser(id) - const newUser = { ...user, ...update } - saveUser(id, newUser) -} -``` - - - -[^1]: [Learn More](https://sli.dev/guide/syntax.html#line-highlighting) - - - ---- - -# Components - -
-
- -You can use Vue components directly inside your slides. - -We have provided a few built-in components like `` and `` that you can use directly. And adding your custom components is also super easy. - -```html - -``` - - - - -Check out [the guides](https://sli.dev/builtin/components.html) for more. - -
-
- -```html - -``` - - - -
-
- - - - ---- -class: px-20 ---- - -# Themes - -Slidev comes with powerful theming support. Themes can provide styles, layouts, components, or even configurations for tools. Switching between themes by just **one edit** in your frontmatter: - -
- -```yaml ---- -theme: default ---- -``` - -```yaml ---- -theme: seriph ---- -``` - - - - - -
- -Read more about [How to use a theme](https://sli.dev/themes/use.html) and -check out the [Awesome Themes Gallery](https://sli.dev/themes/gallery.html). - ---- -preload: false ---- - -# Animations - -Animations are powered by [@vueuse/motion](https://motion.vueuse.org/). - -```html -
- Slidev -
-``` - -
-
- - - -
- -
- Slidev -
-
- - - - -
- -[Learn More](https://sli.dev/guide/animations.html#motion) - -
- ---- - -# LaTeX - -LaTeX is supported out-of-box powered by [KaTeX](https://katex.org/). - -
- -Inline $\sqrt{3x-1}+(1+x)^2$ - -Block -$$ {1|3|all} -\begin{array}{c} - -\nabla \times \vec{\mathbf{B}} -\, \frac1c\, \frac{\partial\vec{\mathbf{E}}}{\partial t} & -= \frac{4\pi}{c}\vec{\mathbf{j}} \nabla \cdot \vec{\mathbf{E}} & = 4 \pi \rho \\ - -\nabla \times \vec{\mathbf{E}}\, +\, \frac1c\, \frac{\partial\vec{\mathbf{B}}}{\partial t} & = \vec{\mathbf{0}} \\ - -\nabla \cdot \vec{\mathbf{B}} & = 0 - -\end{array} -$$ - -
- -[Learn more](https://sli.dev/guide/syntax#latex) - ---- - -# Diagrams - -You can create diagrams / graphs from textual descriptions, directly in your Markdown. - -
- -```mermaid {scale: 0.5, alt: 'A simple sequence diagram'} -sequenceDiagram - Alice->John: Hello John, how are you? - Note over Alice,John: A typical interaction -``` - -```mermaid {theme: 'neutral', scale: 0.8} -graph TD -B[Text] --> C{Decision} -C -->|One| D[Result 1] -C -->|Two| E[Result 2] -``` - -```mermaid -mindmap - root((mindmap)) - Origins - Long history - ::icon(fa fa-book) - Popularisation - British popular psychology author Tony Buzan - Research - On effectivness
and features - On Automatic creation - Uses - Creative techniques - Strategic planning - Argument mapping - Tools - Pen and paper - Mermaid -``` - -```plantuml {scale: 0.7} -@startuml - -package "Some Group" { - HTTP - [First Component] - [Another Component] -} - -node "Other Groups" { - FTP - [Second Component] - [First Component] --> FTP -} - -cloud { - [Example 1] -} - - -database "MySql" { - folder "This is my folder" { - [Folder 3] - } - frame "Foo" { - [Frame 4] - } -} - - -[Another Component] --> [Example 1] -[Example 1] --> [Folder 3] -[Folder 3] --> [Frame 4] - -@enduml -``` - -
- -[Learn More](https://sli.dev/guide/syntax.html#diagrams) - ---- -src: ./pages/multiple-entries.md -hide: false ---- - ---- -layout: center -class: text-center ---- - -# Learn More - -[Documentations](https://sli.dev) · [GitHub](https://github.com/slidevjs/slidev) · [Showcases](https://sli.dev/showcases.html) diff --git a/c/pancakeSort/slidev/vercel.json b/c/pancakeSort/slidev/vercel.json deleted file mode 100644 index 9276941..0000000 --- a/c/pancakeSort/slidev/vercel.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "rewrites": [ - { "source": "/(.*)", "destination": "/index.html" } - ], - "buildCommand": "npm run build", - "outputDirectory": "dist" -} diff --git "a/c/pancakeSort/\347\205\216\351\245\274\346\216\222\345\272\217.c" "b/c/pancakeSort/\347\205\216\351\245\274\346\216\222\345\272\217.c" deleted file mode 100644 index 88a19a3..0000000 --- "a/c/pancakeSort/\347\205\216\351\245\274\346\216\222\345\272\217.c" +++ /dev/null @@ -1,107 +0,0 @@ -#include - -#define length_of_array(array) sizeof(array) / sizeof(array[0]) - -static int reverse_times = 0; - -// #define REC_IMP -#ifndef REC_IMP -#define NO_REC_IMP -#endif - -static size_t *result_p; - -// generic -int reverse_array(void *array, size_t len, size_t elem_byte_size, - int (*swap_function)(const void *a, const void *b)) { - size_t i; - for (i = 0; i < len / 2; i++) { - swap_function(((char *)array + i * elem_byte_size), - ((char *)array + (len - i - 1) * elem_byte_size)); - } - return 0; -} - -// generic -int find_max_elem(void *array, size_t len, size_t elem_byte_size, - int (*compare_function)(const void *a, const void *b)) { - size_t max_elem = 0; - size_t i; - for (i = 0; i < len; i++) { - if (compare_function((char *)array + max_elem * elem_byte_size, - (char *)array + i * elem_byte_size) < 0) { - max_elem = i; - } - } - return max_elem; -} - -int compare_int(const void *a, const void *b) { return *(int *)a - *(int *)b; } - -int swap_int(const void *a, const void *b) { - int temp = *(int *)a; - *(int *)a = *(int *)b; - *(int *)b = temp; - return 0; -} - -#if defined NO_REC_IMP - -// generic -int pancakeSort(void *unsorted_array, size_t len, size_t elem_byte_size, - int (*compare_function)(const void *a, const void *b), - int (*swap_function)(const void *a, const void *b)) { - size_t max_elem; - size_t unsorted_len = len; - for (; unsorted_len > 0; unsorted_len--) { - max_elem = find_max_elem(unsorted_array, unsorted_len, elem_byte_size, - compare_int); - result_p[reverse_times] = max_elem + 1; - reverse_times++; - reverse_array(unsorted_array, max_elem + 1, elem_byte_size, swap_int); - result_p[reverse_times] = unsorted_len; - reverse_times++; - reverse_array(unsorted_array, unsorted_len, elem_byte_size, swap_int); - } - return 0; -} - -#endif - -#if defined REC_IMP - -// generic -int pancakeSort(void *unsorted_array, size_t len, size_t elem_byte_size, - int (*compare_function)(const void *a, const void *b), - int (*swap_function)(const void *a, const void *b)) { - if (len == 1) { - return 0; - } - size_t max_elem = - find_max_elem(unsorted_array, len, elem_byte_size, compare_function); - reverse_array(unsorted_array, max_elem + 1, elem_byte_size, swap_function); - reverse_array(unsorted_array, len, elem_byte_size, swap_function); - pancakeSort(unsorted_array, len - 1, elem_byte_size, compare_function, - swap_function); - - return 0; -} - -#endif - -int main() { - int array1[] = {5, 2, 1, 0, - 3, 2, 9}; // want: {5,2,1,0,3,2*,9} => {0,1,2,2*,3,5,9} - size_t i; - size_t result[length_of_array(array1) * 2]; - result_p = result; - pancakeSort(array1, length_of_array(array1), sizeof(int) / sizeof(char), - compare_int, swap_int); - printf("k值序列:"); - for (i = 0; i < reverse_times; i++) { - printf("%zu ", result[i]); - } - printf("\n排序结果:"); - for (i = 0; i < length_of_array(array1); i++) - printf("%d ", array1[i]); -} diff --git a/c/RainbowBomb/CMakeLists.txt b/c/rainbowBomb/CMakeLists.txt similarity index 100% rename from c/RainbowBomb/CMakeLists.txt rename to c/rainbowBomb/CMakeLists.txt diff --git a/c/RainbowBomb/build.sh b/c/rainbowBomb/build.sh similarity index 100% rename from c/RainbowBomb/build.sh rename to c/rainbowBomb/build.sh diff --git a/c/rainbowBomb/include/bomb.h b/c/rainbowBomb/include/bomb.h new file mode 100644 index 0000000..5db66f4 --- /dev/null +++ b/c/rainbowBomb/include/bomb.h @@ -0,0 +1,3 @@ +#include +#include +int bomb(int times , char Char); diff --git a/c/rainbowBomb/src/bomb.c b/c/rainbowBomb/src/bomb.c new file mode 100644 index 0000000..29d60f9 --- /dev/null +++ b/c/rainbowBomb/src/bomb.c @@ -0,0 +1,10 @@ +#include "../include/bomb.h" +int bomb(int times,char Char){ + printf("%c[47;31m",0x1B); + while (times>0){ + putchar(Char); + times--; + } + printf("%c[0m\n",0x1B); + return 0; +} diff --git a/c/RainbowBomb/src/main.c b/c/rainbowBomb/src/main.c similarity index 100% rename from c/RainbowBomb/src/main.c rename to c/rainbowBomb/src/main.c diff --git a/c/Resistor/CMakeLists.txt b/c/resistor/CMakeLists.txt similarity index 100% rename from c/Resistor/CMakeLists.txt rename to c/resistor/CMakeLists.txt diff --git a/c/Resistor/build.sh b/c/resistor/build.sh similarity index 100% rename from c/Resistor/build.sh rename to c/resistor/build.sh diff --git a/c/resistor/include/resistorcal.h b/c/resistor/include/resistorcal.h new file mode 100644 index 0000000..d2846d0 --- /dev/null +++ b/c/resistor/include/resistorcal.h @@ -0,0 +1,4 @@ +#ifndef _RESISTOR_H +#define _RESISTOR_H +double resistorcal(double R1,double R2,char type); +#endif diff --git a/c/resistor/src/main.c b/c/resistor/src/main.c new file mode 100644 index 0000000..ed54a82 --- /dev/null +++ b/c/resistor/src/main.c @@ -0,0 +1,26 @@ +#include +#include "../include/resistorcal.h" +int main(){ + printf("Welcome to Mayuri's Resistor Calculator(Only for separate routes and 2 resistor in it)\n"); + printf("Make your choice\n> 1.Your have the two resistors of separate routes\n> 2. Your have one of the resistors in the separate routes and the total resistor\nAny other choice is to exit\n"); + char choice; + scanf("%c",&choice); + switch (choice){ + case '1' : printf("Please input your args as [R1 R2]:\n");break; + case '2' : printf("Please input your args as [R1 R]:\n");break; + default : printf("exiting\n");return 0;break; + } + double r1 = -1 ,r2 = -1; + scanf("%lf %lf",&r1,&r2); + while ((r1<0)||(r2<0)) { + printf("args don't meet the requirement(R>0)\n"); + printf("please input them again:\n"); + scanf("%lf %lf",&r1,&r2); + + } + switch (choice){ + case '1' : printf("R=%lf\n",resistorcal(r1,r2,choice));break; + case '2' : printf("R2=%lf\n",resistorcal(r1,r2,choice));break; + } + return 0; +} diff --git a/c/resistor/src/resistorcal.c b/c/resistor/src/resistorcal.c new file mode 100644 index 0000000..b106d0d --- /dev/null +++ b/c/resistor/src/resistorcal.c @@ -0,0 +1,8 @@ +#include +#include "../include/resistorcal.h" +double resistorcal(double R1,double R2,char type){ + switch (type){ + case '1' : return (R1*R2)/(R1+R2); break; + case '2' : return (R1*R2)/(R1-R2); break; + } +} diff --git a/c/socket/unix_socket/.gitignore b/c/socket/unix_socket/.gitignore deleted file mode 100644 index 494554f..0000000 --- a/c/socket/unix_socket/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -.cache/ -build/ \ No newline at end of file diff --git a/c/socket/unix_socket/CMakeLists.txt b/c/socket/unix_socket/CMakeLists.txt deleted file mode 100644 index 1e9373e..0000000 --- a/c/socket/unix_socket/CMakeLists.txt +++ /dev/null @@ -1,10 +0,0 @@ -project(UNIX_SOCKET_EXAMPLE) -cmake_minimum_required(VERSION 3.0) -set(CMAKE_EXPORT_COMPILE_COMMANDS ON) -set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} --std=c2x -g -Wall") -set(CMAKE_BUILD_TYPE Debug) -# aux_source_directory(${CMAKE_CURRENT_SOURCE_DIR}/src DIR_SRC) -include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include) - -add_executable(client ${CMAKE_CURRENT_SOURCE_DIR}/src/client.c) -add_executable(server ${CMAKE_CURRENT_SOURCE_DIR}/src/server.c) diff --git a/c/socket/unix_socket/compile_commands.json b/c/socket/unix_socket/compile_commands.json deleted file mode 100644 index 912ad98..0000000 --- a/c/socket/unix_socket/compile_commands.json +++ /dev/null @@ -1,12 +0,0 @@ -[ -{ - "directory": "/home/nixos/Documents/code/ProgramLearning/c/socket/unix_socket/build", - "command": "/etc/profiles/per-user/nixos/bin/gcc -I/home/nixos/Documents/code/ProgramLearning/c/socket/unix_socket/include -g --std=c2x -g -Wall -o CMakeFiles/client.dir/src/client.c.o -c /home/nixos/Documents/code/ProgramLearning/c/socket/unix_socket/src/client.c", - "file": "/home/nixos/Documents/code/ProgramLearning/c/socket/unix_socket/src/client.c" -}, -{ - "directory": "/home/nixos/Documents/code/ProgramLearning/c/socket/unix_socket/build", - "command": "/etc/profiles/per-user/nixos/bin/gcc -I/home/nixos/Documents/code/ProgramLearning/c/socket/unix_socket/include -g --std=c2x -g -Wall -o CMakeFiles/server.dir/src/server.c.o -c /home/nixos/Documents/code/ProgramLearning/c/socket/unix_socket/src/server.c", - "file": "/home/nixos/Documents/code/ProgramLearning/c/socket/unix_socket/src/server.c" -} -] \ No newline at end of file diff --git a/c/socket/unix_socket/include/domain.h b/c/socket/unix_socket/include/domain.h deleted file mode 100644 index 6458cff..0000000 --- a/c/socket/unix_socket/include/domain.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef __DOMAIN__ -#define __DOMAIN__ - -#include -#include -#include -#include -#include -#include -#include -#include - -#define BUF_SIZE 1024 -#define SOCKET_PATH "./my.sock" - -#define ERR_EXIT(m) \ - do { \ - perror(m); \ - exit(-1); \ - } while (0); - -#endif // !__DOMAIN__ diff --git a/c/socket/unix_socket/note.md b/c/socket/unix_socket/note.md deleted file mode 100644 index fba907a..0000000 --- a/c/socket/unix_socket/note.md +++ /dev/null @@ -1,4 +0,0 @@ -```bash -cmake -S path/to/your/project -B path/to/build/directory -cp path/to/build/directory/compile_commands.json path/to/your/project -``` \ No newline at end of file diff --git a/c/socket/unix_socket/src/client.c b/c/socket/unix_socket/src/client.c deleted file mode 100644 index 5008c5e..0000000 --- a/c/socket/unix_socket/src/client.c +++ /dev/null @@ -1,19 +0,0 @@ -#include "domain.h" -#include "sys/socket.h" -#include -int main() { - int socket_fd; - char *buf = "hello"; - struct sockaddr_un servaddr; - socket_fd = socket(AF_UNIX, SOCK_STREAM, 0); - if (socket_fd < 0) { - ERR_EXIT("socket") - } - memset(&servaddr, 0, sizeof(struct sockaddr_un)); - servaddr.sun_family = AF_UNIX; - strncpy(servaddr.sun_path, SOCKET_PATH, sizeof(servaddr.sun_path) - 1); - if (connect(socket_fd, (struct sockaddr *)&servaddr, sizeof(servaddr)) < 0) { - ERR_EXIT("connect"); - } - send(socket_fd, buf, strlen(buf), 0); -} diff --git a/c/socket/unix_socket/src/server.c b/c/socket/unix_socket/src/server.c deleted file mode 100644 index ab09c27..0000000 --- a/c/socket/unix_socket/src/server.c +++ /dev/null @@ -1,33 +0,0 @@ -#include "domain.h" -int main(int argc, char *argv[]) { - int socket_fd, connected_fd; - struct sockaddr_un addr; - size_t numRead; - char buf[BUF_SIZE]={0}; - socket_fd = socket(AF_UNIX, SOCK_STREAM, 0); - if (socket_fd < 0) - ERR_EXIT("socket"); - if (remove(SOCKET_PATH) < 0 && errno != ENOENT) { - ERR_EXIT("remove"); - } - memset(&addr, 0, sizeof(struct sockaddr_un)); - addr.sun_family = AF_UNIX; - strncpy(addr.sun_path, SOCKET_PATH, sizeof(addr.sun_path) - 1); - if (bind(socket_fd, (struct sockaddr *)&addr, sizeof(struct sockaddr_un)) < - 0) { - ERR_EXIT("bind"); - } - if (listen(socket_fd, 100)) { - ERR_EXIT("listen"); - } - for (;;) { - connected_fd = accept(socket_fd, NULL, NULL); - if (connected_fd < 0) { - ERR_EXIT("accept"); - } - while ((numRead = read(connected_fd, buf, BUF_SIZE)) > 0) { - write(STDOUT_FILENO, buf, BUF_SIZE); - } - } - return EXIT_SUCCESS; -} diff --git a/c/Sqlite/CMakeLists.txt b/c/sqlite/CMakeLists.txt similarity index 100% rename from c/Sqlite/CMakeLists.txt rename to c/sqlite/CMakeLists.txt diff --git a/c/Sqlite/build.sh b/c/sqlite/build.sh similarity index 100% rename from c/Sqlite/build.sh rename to c/sqlite/build.sh diff --git a/c/Sqlite/help.md b/c/sqlite/src/help.md similarity index 100% rename from c/Sqlite/help.md rename to c/sqlite/src/help.md diff --git a/c/sqlite/src/main.c b/c/sqlite/src/main.c new file mode 100644 index 0000000..75c54b0 --- /dev/null +++ b/c/sqlite/src/main.c @@ -0,0 +1,18 @@ +#include +#include +#include +int main(int argc ,char *argv[]){ + sqlite3 *db; + char *zErrMsg = 0; + int rc; + rc = sqlite3_open("test.db",&db); + if (rc){ + fprintf(stderr,"Open database failed:%s\n",sqlite3_errmsg(db)); + exit(0); + } + else{ + fprintf(stderr,"Open database successfully\n"); + } + sqlite3_close(db); + return 0; +} diff --git a/c/Sqrt/.project b/c/sqrt/.project similarity index 100% rename from c/Sqrt/.project rename to c/sqrt/.project diff --git a/c/Sqrt/CMakeLists.txt b/c/sqrt/CMakeLists.txt similarity index 100% rename from c/Sqrt/CMakeLists.txt rename to c/sqrt/CMakeLists.txt diff --git a/c/Sqrt/README.md b/c/sqrt/README.md similarity index 100% rename from c/Sqrt/README.md rename to c/sqrt/README.md diff --git a/c/Sqrt/build.sh b/c/sqrt/build.sh similarity index 100% rename from c/Sqrt/build.sh rename to c/sqrt/build.sh diff --git a/c/sqrt/include/a.h b/c/sqrt/include/a.h new file mode 100644 index 0000000..430d490 --- /dev/null +++ b/c/sqrt/include/a.h @@ -0,0 +1,7 @@ +#ifndef A_FILE_HEADER_INC +#define A_FILE_HEADER_INC +#include + +double get_sqrt(double var1); + +#endif diff --git a/c/Sqrt/src/sqrt.c b/c/sqrt/src/a.c similarity index 65% rename from c/Sqrt/src/sqrt.c rename to c/sqrt/src/a.c index 1dc523e..6452aaa 100644 --- a/c/Sqrt/src/sqrt.c +++ b/c/sqrt/src/a.c @@ -1,4 +1,4 @@ -#include "../include/sqrt.h" +#include"../include/a.h" double get_sqrt(double var1) { return sqrt(var1); diff --git a/c/sqrt/src/main.c b/c/sqrt/src/main.c new file mode 100644 index 0000000..c63b705 --- /dev/null +++ b/c/sqrt/src/main.c @@ -0,0 +1,11 @@ +#include +#include"../include/a.h" +int main() +{ + double b=25.0; + double a=0.0; + a=get_sqrt(b); + + printf("a is %lf, b is %lf\n",a,b); + return 0; +} diff --git a/c/string_operation/1.c b/c/string_operation/1.c new file mode 100644 index 0000000..fff702c --- /dev/null +++ b/c/string_operation/1.c @@ -0,0 +1,21 @@ +#include +#include +#include +int main(int argc,char *argv[]) +{ +// printf("%s\n",str(1)); + if (argc != 3) + { + printf("Plz input 2 str,and I will do a strcat\n"); + return 0; + } + printf("argv[1]=%s\nargv[2]=%s\n",argv[1],argv[2]); + printf("strcat(argv[1],argv[2])=%s\n\n",strcat(argv[1],argv[2])); + printf("strlen(argv[1])=%d\n",strlen(argv[1])); + printf("strlen(argv[2])=%d\n",strlen(argv[2])); + char str[strlen(argv[1])+1]; + printf("str[i]\ni=%d\n\n",sizeof(str)/sizeof(str[0])); + sprintf(str,"%s%s",argv[1],argv[2]); + printf("sprintf(str,\"%s%s\",argv[1],argv[2])\nstr=%s\n","%s","%s",str); + return 0; +} diff --git a/c/string_operation/2.c b/c/string_operation/2.c new file mode 100644 index 0000000..8cfda40 --- /dev/null +++ b/c/string_operation/2.c @@ -0,0 +1,20 @@ +#include +#include +#include +int main() +{ + char a[4]="111",b[6]="222"; + char c[3] = {'3','3'}; + printf("a=%s\n",a); + printf("b=%s\n",b); + printf("c=%s\n",c); +// char c[] = strcat(a,b); + strcat(c,a); + c[4]='4'; + printf("strcat(a,b)=%s\n",strcat(a,b)); + printf("a'=%s\n",a); + printf("la=%lu\n",sizeof(a)/sizeof(a[0])); + printf("c'=%s\n",c); + return 0; +} + diff --git a/c/StringOperation/build.sh b/c/string_operation/build.sh similarity index 100% rename from c/StringOperation/build.sh rename to c/string_operation/build.sh diff --git a/c/structbit/main.c b/c/structbit/main.c new file mode 100644 index 0000000..cf26a64 --- /dev/null +++ b/c/structbit/main.c @@ -0,0 +1,13 @@ +#include +int main(){ + struct test { + unsigned int a:1; + unsigned int b:2; + unsigned int c:1; + }; + struct test test2; + test2.a=3; + test2.b=1; + test2.c=-1; + printf("%d\n%d\n%d\n",test2.a,test2.b,test2.c); +} diff --git a/c/test/include/test.h b/c/test/include/head.h similarity index 60% rename from c/test/include/test.h rename to c/test/include/head.h index 6b63b91..9be8f22 100644 --- a/c/test/include/test.h +++ b/c/test/include/head.h @@ -1,26 +1,20 @@ -#ifndef _test_h -#define _test_h #include #include #include #include "./str.h" -struct body_link -{ +struct body_link{ int type; void *data; struct body_link *next; }; -struct head_link -{ +struct head_link{ int type[2]; char *name; struct body_link *head; struct body_link **location; struct test *next; }; -struct head_link *add() -{ - struct head_link *temp = (struct head_link *)malloc(sizeof(struct head_link)); +struct head_link* add(){ + struct head_link *temp=(struct head_link*)malloc(sizeof(struct head_link)); return temp; } -#endif \ No newline at end of file diff --git a/c/test/include/str.h b/c/test/include/str.h index 3ea532e..3bea0aa 100644 --- a/c/test/include/str.h +++ b/c/test/include/str.h @@ -1,4 +1,4 @@ #include #include #include -void strval(char **str1, const char *str2, int type); +void strval(char **str1,const char *str2,int type); diff --git a/c/test/src/main.c b/c/test/src/main.c index d7d376d..640fb1b 100644 --- a/c/test/src/main.c +++ b/c/test/src/main.c @@ -1,12 +1,11 @@ -#include "../include/test.h" +#include "../include/head.h" #include "../include/str.h" -int main() -{ - struct head_link *test1 = add(); - test1->type[0] = 1; - strval(&(test1->name), "hello ", 1); - strval(&(test1->name), "world", 2); - strval(&(test1->name), "goodbye world", 3); - printf("name:%s\nnum:%d\n", (test1->name), (test1->type[0])); +int main(){ + struct head_link *test1=add(); + test1->type[0]=1; + strval(&(test1->name),"hello ",1); + strval(&(test1->name),"world",2); + strval(&(test1->name),"goodbye world",3); + printf("name:%s\nnum:%d\n",(test1->name),(test1->type[0])); return 0; } diff --git a/c/test/src/str.c b/c/test/src/str.c index a4ac589..375d97f 100644 --- a/c/test/src/str.c +++ b/c/test/src/str.c @@ -1,29 +1,25 @@ #include "../include/str.h" -void strval(char **str1, const char *str2, int type) -{ +void strval(char **str1,const char *str2,int type){ switch (type) { - case 1: - { - *str1 = (char *)malloc(strlen(str2 + 1)); - sprintf(*str1, "%s", str2); - printf("case 1 :%s\n", *str1); - break; - } - case 2: - { - *str1 = (char *)realloc(*str1, strlen(*str1) + strlen(str2) + 1); - sprintf(*str1, "%s%s", *str1, str2); - printf("case 2 :%s\n", *str1); - } - break; - case 3: - { - free(*str1); - *str1 = (char *)malloc(strlen(str2 + 1)); - sprintf(*str1, "%s", str2); - printf("case 3 :%s\n", *str1); - break; - } + case 1 : { + *str1=(char *)malloc(strlen(str2+1)); + sprintf(*str1,"%s",str2); + printf("case 1 :%s\n",*str1); + break; + } + case 2 : { + *str1 = (char *)realloc(*str1,strlen(*str1)+strlen(str2)+1); + sprintf(*str1,"%s%s",*str1,str2); + printf("case 2 :%s\n",*str1); + } + break; + case 3 : { + free(*str1); + *str1=(char *)malloc(strlen(str2+1)); + sprintf(*str1,"%s",str2); + printf("case 3 :%s\n",*str1); + break; + } } } diff --git a/c/thread/thread.c b/c/thread/thread.c deleted file mode 100644 index cb35a0b..0000000 --- a/c/thread/thread.c +++ /dev/null @@ -1,21 +0,0 @@ -#include -#include -#include -int thrd_proc(void *varg){ - int times = 5; - struct timespec time_point={1,0}; - while (times--){ - printf("The %d times:%s\n",times+1,(char*)varg); - thrd_sleep(&time_point, NULL); - } - return 0; -} -int main(int argc, char *argv[]) -{ - thrd_t t1, t2; - thrd_create(&t1, thrd_proc, "thread 1 running"); - thrd_create(&t2, thrd_proc, "thread 2 running"); - thrd_join(t2,NULL); - thrd_join(t1,NULL); - return 0; -} diff --git a/c/unicodetozh/main.c b/c/unicodetozh/main.c new file mode 100644 index 0000000..433323e --- /dev/null +++ b/c/unicodetozh/main.c @@ -0,0 +1,12 @@ +#include +#include +#include +int main(void) +{ +char str[12]; +wchar_t wstr[] = { 0x52B3, 0x788C, 0 }; +setlocale(LC_ALL, ""); +wcstombs(str, wstr, sizeof(str)/sizeof(char)); +printf("%s", str); +return 0; +} diff --git a/c/unionbit/main.c b/c/unionbit/main.c new file mode 100644 index 0000000..4f2119d --- /dev/null +++ b/c/unionbit/main.c @@ -0,0 +1,11 @@ +#include +int main(){ + union test { + unsigned int a:1; + unsigned int b:2; + unsigned int c:1; + }; + union test test2; + test2.a=1; + printf("%d\n",test2.a); +} diff --git a/cpp/.gitignore b/cpp/.gitignore deleted file mode 100644 index d99efa9..0000000 --- a/cpp/.gitignore +++ /dev/null @@ -1,32 +0,0 @@ -# Prerequisites -*.d - -# Compiled Object files -*.slo -*.lo -*.o -*.obj - -# Precompiled Headers -*.gch -*.pch - -# Compiled Dynamic libraries -*.so -*.dylib -*.dll - -# Fortran module files -*.mod -*.smod - -# Compiled Static libraries -*.lai -*.la -*.a -*.lib - -# Executables -*.exe -*.out -*.app \ No newline at end of file diff --git a/cpp/Dll/.gitignore b/cpp/Dll/.gitignore deleted file mode 100644 index 8569fae..0000000 --- a/cpp/Dll/.gitignore +++ /dev/null @@ -1,33 +0,0 @@ -# Prerequisites -*.d - -# Compiled Object files -*.slo -*.lo -*.o -*.obj - -# Precompiled Headers -*.gch -*.pch - -# Compiled Dynamic libraries -*.so -*.dylib -*.dll - -# Fortran module files -*.mod -*.smod - -# Compiled Static libraries -*.lai -*.la -*.a -*.lib - -# Executables -*.exe -*.out -*.app -main \ No newline at end of file diff --git a/cpp/Dll/SortComponent.cpp b/cpp/Dll/SortComponent.cpp deleted file mode 100644 index 288acf3..0000000 --- a/cpp/Dll/SortComponent.cpp +++ /dev/null @@ -1,15 +0,0 @@ -#include "SortComponent.h" - -extern "C" { -void DECLSPEC sortNumbers(int *numbers, int size) { - for (int i = 0; i < size - 1; ++i) { - for (int j = 0; j < size - i - 1; ++j) { - if (numbers[j] > numbers[j + 1]) { - int temp = numbers[j]; - numbers[j] = numbers[j + 1]; - numbers[j + 1] = temp; - } - } - } -} -} diff --git a/cpp/Dll/SortComponent.h b/cpp/Dll/SortComponent.h deleted file mode 100644 index 759a494..0000000 --- a/cpp/Dll/SortComponent.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef SORT_COMPONENT_H -#define SORT_COMPONENT_H - -#if defined _WIN32 || defined __CYGWIN__ -#ifdef EXPORTING_DLL -#ifdef __GNUC__ -#define DECLSPEC __attribute__((dllexport)) -#else -#define DECLSPEC __declspec(dllexport) -#endif -#else -#ifdef __GNUC__ -#define DECLSPEC __attribute__((dllimport)) -#else -#define DECLSPEC __declspec(dllimport) -#endif -#endif -#else -#if __GNUC__ >= 4 -#define DECLSPEC __attribute__((visibility("default"))) -#else -#define DECLSPEC -#endif -#endif - -extern "C" { -DECLSPEC void sortNumbers(int *numbers, int size); -} -#endif // SORT_COMPONENT_H diff --git a/cpp/Dll/main.cpp b/cpp/Dll/main.cpp deleted file mode 100644 index eef2b30..0000000 --- a/cpp/Dll/main.cpp +++ /dev/null @@ -1,15 +0,0 @@ -#include "SortComponent.h" -#include - -int main() { - int numbers[10] = {5, 3, 8, 6, 2, 7, 4, 9, 1, 0}; - - sortNumbers(numbers, 10); - - for (int i = 0; i < 10; ++i) { - std::cout << numbers[i] << " "; - } - std::cout << std::endl; - - return 0; -} diff --git a/cpp/Dll/makefile b/cpp/Dll/makefile deleted file mode 100644 index 674dbf1..0000000 --- a/cpp/Dll/makefile +++ /dev/null @@ -1,29 +0,0 @@ -CXX := g++ -CXXFLAGS := -Wall -std=c++11 - -SRC := $(wildcard *.cpp) -OBJ := $(SRC:.cpp=.o) -DLL := libSortComponent.so -EXEC := main - -LIBDIR := . -LDFLAGS := -L$(LIBDIR) -lSortComponent - -all: $(DLL) $(EXEC) - -$(DLL): SortComponent.o - $(CXX) -shared -o $@ $^ - -$(EXEC): main.o - $(CXX) -o $@ $^ $(LDFLAGS) - -%.o: %.cpp - $(CXX) $(CXXFLAGS) -c -o $@ $< - -clean: - rm -f $(OBJ) $(DLL) $(EXEC) - -run: $(EXEC) - LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH ./$(EXEC) - -.PHONY: all clean test diff --git a/cpp/EvaluateExpression/CMakeLists.txt b/cpp/EvaluateExpression/CMakeLists.txt deleted file mode 100644 index 2d5cbcb..0000000 --- a/cpp/EvaluateExpression/CMakeLists.txt +++ /dev/null @@ -1,13 +0,0 @@ -PROJECT(EvaluateExpression) -CMAKE_MINIMUM_REQUIRED(VERSION 2.9) -INCLUDE_DIRECTORIES( - ${CMAKE_BINARY_DIR}/../include -) -AUX_SOURCE_DIRECTORY( - ${CMAKE_BINARY_DIR}/../src - DIR_SRC -) -ADD_EXECUTABLE( - EvaluateExpression - ${DIR_SRC} -) \ No newline at end of file diff --git a/cpp/EvaluateExpression/src/main.cpp b/cpp/EvaluateExpression/src/main.cpp deleted file mode 100644 index aa34fae..0000000 --- a/cpp/EvaluateExpression/src/main.cpp +++ /dev/null @@ -1,247 +0,0 @@ -#include -#include -#include - -#define MAXSIZE 100 -#define OK 1 -#define ERROR 0 -#define OVERFLOW -2 -using namespace std; -typedef struct -{ //运算符栈 - char *base; - char *top; - int stacksize; -} SqStack1; -int InitStack1(SqStack1 &S) -{ //运算符栈初始化 - S.base = new char[MAXSIZE]; - if (!S.base) - return OVERFLOW; - S.top = S.base; - S.stacksize = MAXSIZE; - return OK; -} -int Push1(SqStack1 &S, char e) -{ //运算符栈入栈 - if (S.top - S.base == S.stacksize) //栈满 - return ERROR; - *S.top = e; - S.top++; - return OK; -} -int Pop1(SqStack1 &S) -{ //运算符栈出栈 - if (S.top == S.base) //栈空 - return ERROR; - S.top--; - return OK; -} -char GetTop1(SqStack1 S) -{ //运算符栈取栈顶元素 - if (S.top != S.base) - return *(S.top - 1); - return ERROR; -} -typedef struct -{ //操作数栈 - double *base; - double *top; - int stacksize; -} SqStack2; -int InitStack2(SqStack2 &S) -{ //操作数栈初始化 - S.base = new double[MAXSIZE]; - if (!S.base) - return OVERFLOW; - S.top = S.base; - S.stacksize = MAXSIZE; - return OK; -} -int Push2(SqStack2 &S, double e) -{ //操作数栈入栈 - if (S.top - S.base == S.stacksize) //栈满 - return ERROR; - *S.top = e; - S.top++; - return OK; -} -int Pop2(SqStack2 &S) -{ //操作数栈出栈 - if (S.top == S.base) //栈空 - return ERROR; - S.top--; - return OK; -} -double GetTop2(SqStack2 S) -{ //操作数栈取栈顶元素 - if (S.top != S.base) - return *(S.top - 1); - return ERROR; -} -double Calculate(double a, char op, double b) -{ //计算表达式“a op b”的值 - switch (op) - { - case '+': - return a + b; - case '-': - return a - b; - case '*': - return a * b; - case '/': - return a / b; - } -} - -char Precede(char a, char b) -{ //比较运算符a和b的优先级 - if ((a == '(' && b == ')') || (a == '=' && b == '=')) - return '='; - else if (a == '(' || a == '=' || b == '(' || - ((a == '+' || a == '-') && (b == '*' || b == '/'))) - return '<'; - else - return '>'; -} - -double EvaluateExpression(SqStack1 OPTR, SqStack2 OPND, char s[]) -{ //算术表达式求值的算符优先算法 - /**************begin************/ - int i = 0, p1 = 0; - // i是循环用的变量 p1是字符串当前位置下标 - double a, b; - //操作数 - char op; - //操作符 - char *temp = new char[strlen(s)]; - //临时字符串用于存放操作数 - while (1) - { - if (s[p1] == '=') - { - while (OPTR.top - 1 != OPTR.base) - { - op = GetTop1(OPTR); - Pop1(OPTR); - //弹操作符栈 - a = GetTop2(OPND); - Pop2(OPND); - //弹操作数栈 - b = GetTop2(OPND); - Pop2(OPND); - //弹操作数栈 - Push2(OPND, (op != '-' && op != '/') ? Calculate(a, op, b) - : Calculate(b, op, a)); - } - goto CalcEnd; - } - if (s[p1] == '+' || s[p1] == '-' || s[p1] == '*' || s[p1] == '/' || - s[p1] == '(' || s[p1] == ')') - //是否为操作符 - { - switch (Precede(GetTop1(OPTR), s[p1])) - { - case '=': { - Pop1(OPTR); - //弹操作符栈 - break; - } - case '>': { - op = GetTop1(OPTR); - Pop1(OPTR); - //弹操作符栈 - a = GetTop2(OPND); - Pop2(OPND); - //弹操作数栈 - b = GetTop2(OPND); - Pop2(OPND); - //弹操作数栈 - Push2(OPND, (op != '-' && op != '/') ? Calculate(a, op, b) - : Calculate(b, op, a)); - //入操作数栈 - if (s[p1] == ')') - { - while (GetTop1(OPTR) != '(') - { - op = GetTop1(OPTR); - Pop1(OPTR); - //弹操作符栈 - a = GetTop2(OPND); - Pop2(OPND); - //弹操作数栈 - b = GetTop2(OPND); - Pop2(OPND); - //弹操作数栈 - Push2(OPND, (op != '-' && op != '/') - ? Calculate(a, op, b) - : Calculate(b, op, a)); - } - Pop1(OPTR); - //弹出栈顶( - } - else - { - Push1(OPTR, s[p1]); - } - //回括的话弹出所有 - break; - } - case '<': { - Push1(OPTR, s[p1]); - //入操作符栈 - break; - } - } - p1++; - } - else - { - if (s[p1] != '+' && s[p1] != '-' && s[p1] != '*' && s[p1] != '/' && - s[p1] != '(' && s[p1] != ')' && s[p1] != '=') - { - while (s[p1] != '+' && s[p1] != '-' && s[p1] != '*' && - s[p1] != '/' && s[p1] != '(' && s[p1] != ')' && - s[p1] != '=') - { - temp[i] = s[p1]; - i++; - p1++; - } - //操作数提取到temp字符串 - temp[i] = '\0'; - //字符串结尾null - Push2(OPND, stod(temp)); - //字符串转double - i = 0; - // temp字符串下标归零 - } - } - } -CalcEnd: - delete[] temp; - //用完delete - a = GetTop2(OPND); - Pop2(OPND); - return a; - /**************end************/ -} - -int main() -{ //设OPTR和OPND分别为运算符栈和操作数栈 - SqStack1 OPTR; - InitStack1(OPTR); //初始化OPND栈 - SqStack2 OPND; - InitStack2(OPND); //初始化OPTR栈 - Push1(OPTR, '='); //将表达式起始符“=”压入OPTR栈 - char s[100]; - while (cin >> s) - { //循环读入多组数据 - if (s[0] == '=') - break; //当表达式只有一个“=”时,输入结束 - //输出中缀算术表达式的值 - cout << fixed << setprecision(2) << EvaluateExpression(OPTR, OPND, s) - << fixed << setprecision(2) << endl; - } - return 0; -} \ No newline at end of file diff --git a/cpp/Koishi/CMakeLists.txt b/cpp/Koishi/CMakeLists.txt deleted file mode 100644 index 20673be..0000000 --- a/cpp/Koishi/CMakeLists.txt +++ /dev/null @@ -1,13 +0,0 @@ -PROJECT(KOISHI) -CMAKE_MINIMUM_REQUIRED(VERSION 2.9) -INCLUDE_DIRECTORIES( - ${CMAKE_BINARY_DIR}/../include -) -AUX_SOURCE_DIRECTORY( - ${CMAKE_BINARY_DIR}/../src - DIR_SRC -) -ADD_EXECUTABLE( - koishi - ${DIR_SRC} -) \ No newline at end of file diff --git a/cpp/Koishi/include/koishi.hpp b/cpp/Koishi/include/koishi.hpp deleted file mode 100644 index 5a37d5a..0000000 --- a/cpp/Koishi/include/koishi.hpp +++ /dev/null @@ -1,14 +0,0 @@ -#ifndef _KOISHI_HPP_ -#define _KOISHI_HPP_ -#include -#include -#include -#include -typedef enum level -{ - easy = 1, - normal, - hard, - extreme -} LEVEL; -#endif \ No newline at end of file diff --git a/cpp/Koishi/src/koishi.cpp b/cpp/Koishi/src/koishi.cpp deleted file mode 100644 index 1a24d79..0000000 --- a/cpp/Koishi/src/koishi.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include "../include/koishi.hpp" -LEVEL getlevel() -{ - short int l; - std::cout << "please input the level number:" << std::endl - << "1.easy" << std::endl - << "2.normal" << std::endl - << "3.hard" << std::endl - << "4.extreme" << std::endl; - std::cin >> l; - std::cin.clear(); - std::cin.ignore(1024, '\n'); - return (LEVEL)l; -} \ No newline at end of file diff --git a/cpp/Koishi/src/main.cpp b/cpp/Koishi/src/main.cpp deleted file mode 100644 index 4572548..0000000 --- a/cpp/Koishi/src/main.cpp +++ /dev/null @@ -1,16 +0,0 @@ -#include "../include/koishi.hpp" -extern LEVEL getlevel(); -int main() -{ - std::string level[4] = {"easy", "normal", "hard", "extreme"}; - LEVEL l; - l = getlevel(); - while (l < 1 || l > 4) - { - std::cout << "the number you input(" << l << ") is not listed" << std::endl - << "please input again:" << std::ends << std::endl; - l = getlevel(); - } - std::cout << "you choose " << l << " " << level[l - 1] << std::endl; - return 0; -} \ No newline at end of file diff --git a/cpp/Log/Log.hpp b/cpp/Log/Log.hpp deleted file mode 100644 index 32b6df5..0000000 --- a/cpp/Log/Log.hpp +++ /dev/null @@ -1,35 +0,0 @@ -#include -class Log -{ - public: - enum Level - { - LevelERROR = 0, - LevelWARNING, - LevelINFO - }; - - public: - Level m_LogLevel = LevelINFO; - - public: - void SetLevel(Level level) - { - m_LogLevel = level; - }; - void Error(const char *message) - { - if (m_LogLevel >= LevelERROR) - std::cout << "[ERROR]: " << message << std::endl; - }; - void Warn(const char *message) - { - if (m_LogLevel >= LevelWARNING) - std::cout << "[WARNING]: " << message << std::endl; - }; - void Info(const char *message) - { - if (m_LogLevel >= LevelINFO) - std::cout << "[INFO]: " << message << std::endl; - }; -}; \ No newline at end of file diff --git a/cpp/Log/test.cpp b/cpp/Log/test.cpp deleted file mode 100644 index 00c15cf..0000000 --- a/cpp/Log/test.cpp +++ /dev/null @@ -1,18 +0,0 @@ -#include "Log.hpp" - -int main() -{ - Log log; - log.SetLevel(Log::LevelERROR); - log.Error("ERROR"); - log.Warn("WARNING"); - log.Info("INFO"); - log.SetLevel(Log::LevelWARNING); - log.Error("ERROR"); - log.Warn("WARNING"); - log.Info("INFO"); - log.SetLevel(Log::LevelINFO); - log.Error("ERROR"); - log.Warn("WARNING"); - log.Info("INFO"); -} \ No newline at end of file diff --git a/cpp/mihoyo_asm_interpreter/.gitignore b/cpp/mihoyo_asm_interpreter/.gitignore deleted file mode 100644 index f70535e..0000000 --- a/cpp/mihoyo_asm_interpreter/.gitignore +++ /dev/null @@ -1,35 +0,0 @@ -# Prerequisites -*.d - -# Compiled Object files -*.slo -*.lo -*.o -*.obj - -# Precompiled Headers -*.gch -*.pch - -# Compiled Dynamic libraries -*.so -*.dylib -*.dll - -# Fortran module files -*.mod -*.smod - -# Compiled Static libraries -*.lai -*.la -*.a -*.lib - -# Executables -*.exe -*.out -*.app - -.xmake/ -.vscode/ \ No newline at end of file diff --git a/cpp/mihoyo_asm_interpreter/LICENSE b/cpp/mihoyo_asm_interpreter/LICENSE deleted file mode 100644 index 3292651..0000000 --- a/cpp/mihoyo_asm_interpreter/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2024 Sacabambaspis - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/cpp/mihoyo_asm_interpreter/README.md b/cpp/mihoyo_asm_interpreter/README.md deleted file mode 100644 index dbcfd17..0000000 --- a/cpp/mihoyo_asm_interpreter/README.md +++ /dev/null @@ -1,2 +0,0 @@ -# mihoyo_asm_interpreter -mihoyo_asm_interpreter diff --git a/cpp/mihoyo_asm_interpreter/src/main.cpp b/cpp/mihoyo_asm_interpreter/src/main.cpp deleted file mode 100644 index ccf5cf5..0000000 --- a/cpp/mihoyo_asm_interpreter/src/main.cpp +++ /dev/null @@ -1,153 +0,0 @@ -#include -#include -#include -#include -#include -#define CMD_COUNT 12 -const char *cmd_str[CMD_COUNT] = {"moo", "mOo", "moO", "mOO", "Moo", "MOo", - "MoO", "MOO", "OOO", "MMM", "OOM", "oom"}; - -void moo(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®); -void mOo(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®); -void moO(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®); -void mOO(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®); -void Moo(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®); -void MOo(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®); -void MoO(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®); -void MOO(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®); -void OOO(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®); -void MMM(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®); -void OOM(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®); -void oom(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®); -typedef void (*cmd_func)(std::vector &cmd, int &cmd_offset, - std::vector &memory, int &memory_offset, - int ®); -cmd_func cmd_address[CMD_COUNT] = {moo, mOo, moO, mOO, Moo, MOo, - MoO, MOO, OOO, MMM, OOM, oom}; -; -void moo(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®) { - while (true) { - if (!strcmp(cmd_str[cmd[--cmd_offset]], "MOO")) - break; - } - cmd_offset++; -} -void mOo(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®) { - memory_offset++; - memory.push_back(0); - cmd_offset++; -} -void moO(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®) { - - memory_offset--; - cmd_offset++; -} -void mOO(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®) { - if (!strcmp(cmd_str[memory[memory_offset]], "mOO") || - memory[memory_offset] < 0 || memory[memory_offset] > CMD_COUNT) - exit(1); - cmd_func cmd_a = cmd_address[memory[memory_offset]]; - cmd_a(cmd, cmd_offset, memory, memory_offset, reg); -} - -void Moo(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®) { - char tmp_a; - if (memory[memory_offset] == 0) { - std::cin >> tmp_a; - memory[memory_offset] = tmp_a; - } else { - tmp_a = memory[memory_offset]; - std::cout << tmp_a; - } - cmd_offset++; -} -void MOo(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®) { - memory[memory_offset]--; - cmd_offset++; -} -void MoO(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®) { - - memory[memory_offset]++; - cmd_offset++; -} -void MOO(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®) { - if (memory[memory_offset] == 0) { - while (true) { - if (!strcmp(cmd_str[++cmd_offset], "moo")) - break; - } - cmd_offset++; - } -} -void OOO(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®) { - memory[memory_offset] = 0; - cmd_offset++; -} -void MMM(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®) { - if (reg != 0) { - reg = memory[memory_offset]; - } else { - memory[memory_offset] = reg; - reg = 0; - } - cmd_offset++; -} -void OOM(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®) { - std::cout << memory[memory_offset]; - cmd_offset++; -} -void oom(std::vector &cmd, int &cmd_offset, std::vector &memory, - int &memory_offset, int ®) { - std::cin >> memory[memory_offset]; - cmd_offset++; -} -int main() { - std::vector cmd; - std::vector memory(1); - int reg = 0; - int tmp; - size_t i, j; - char tmp_cmd[4]; - tmp_cmd[3] = 0; - int cmd_offset = 0, memory_offset = 0; - while (true) { - if ((tmp_cmd[0] = getchar()) != '\n') { - tmp_cmd[1] = getchar(); - tmp_cmd[2] = getchar(); - for (i = 0; i < CMD_COUNT; i++) { - if (!strcmp(tmp_cmd, cmd_str[i])) { - cmd.push_back(i); - break; - } - } - } else - break; - } - while (cmd_offset < cmd.size()) { - cmd_func cmd_a = cmd_address[cmd[cmd_offset]]; - cmd_a(cmd, cmd_offset, memory, memory_offset, reg); - } -} diff --git a/cpp/mihoyo_asm_interpreter/xmake.lua b/cpp/mihoyo_asm_interpreter/xmake.lua deleted file mode 100644 index e168753..0000000 --- a/cpp/mihoyo_asm_interpreter/xmake.lua +++ /dev/null @@ -1,4 +0,0 @@ -add_rules("mode.debug", "mode.release") -target("mihoyo_asm_interpreter") - set_kind("binary") - add_files("src/main.cpp") \ No newline at end of file diff --git a/cpp/onebot/include/head.hpp b/cpp/onebot/include/head.hpp index 8330318..7bbff47 100644 --- a/cpp/onebot/include/head.hpp +++ b/cpp/onebot/include/head.hpp @@ -4,27 +4,24 @@ #include #include #include -// extern "C" +//extern "C" //{ #include "../include/str.h" //} -struct body_link -{ +struct body_link{ int type; void *data; struct body_link *next; }; -struct head_link -{ +struct head_link{ int type[2]; char *name; struct body_link *head; struct body_link **location; struct test *next; }; -struct head_link *add() -{ - struct head_link *temp = (struct head_link *)malloc(sizeof(struct head_link)); +struct head_link* add(){ + struct head_link *temp=(struct head_link*)malloc(sizeof(struct head_link)); return temp; } #endif diff --git a/cpp/onebot/include/str.h b/cpp/onebot/include/str.h index 6c113be..09edd87 100644 --- a/cpp/onebot/include/str.h +++ b/cpp/onebot/include/str.h @@ -3,5 +3,5 @@ #include #include #include -void strval(char **str1, const char *str2, int type); +void strval(char **str1,const char *str2,int type); #endif diff --git a/cpp/onebot/src/str.cpp b/cpp/onebot/src/str.cpp index a4ac589..375d97f 100644 --- a/cpp/onebot/src/str.cpp +++ b/cpp/onebot/src/str.cpp @@ -1,29 +1,25 @@ #include "../include/str.h" -void strval(char **str1, const char *str2, int type) -{ +void strval(char **str1,const char *str2,int type){ switch (type) { - case 1: - { - *str1 = (char *)malloc(strlen(str2 + 1)); - sprintf(*str1, "%s", str2); - printf("case 1 :%s\n", *str1); - break; - } - case 2: - { - *str1 = (char *)realloc(*str1, strlen(*str1) + strlen(str2) + 1); - sprintf(*str1, "%s%s", *str1, str2); - printf("case 2 :%s\n", *str1); - } - break; - case 3: - { - free(*str1); - *str1 = (char *)malloc(strlen(str2 + 1)); - sprintf(*str1, "%s", str2); - printf("case 3 :%s\n", *str1); - break; - } + case 1 : { + *str1=(char *)malloc(strlen(str2+1)); + sprintf(*str1,"%s",str2); + printf("case 1 :%s\n",*str1); + break; + } + case 2 : { + *str1 = (char *)realloc(*str1,strlen(*str1)+strlen(str2)+1); + sprintf(*str1,"%s%s",*str1,str2); + printf("case 2 :%s\n",*str1); + } + break; + case 3 : { + free(*str1); + *str1=(char *)malloc(strlen(str2+1)); + sprintf(*str1,"%s",str2); + printf("case 3 :%s\n",*str1); + break; + } } } diff --git a/cpp/onebot/src/test.cpp b/cpp/onebot/src/test.cpp index c2b41b0..8b9abc7 100644 --- a/cpp/onebot/src/test.cpp +++ b/cpp/onebot/src/test.cpp @@ -1,11 +1,11 @@ #include "../include/head.hpp" -int main() -{ - struct head_link *test1 = add(); - test1->type[0] = 1; - strval(&(test1->name), "hello ", 1); - strval(&(test1->name), "world", 2); - strval(&(test1->name), "goodbye world", 3); - printf("name:%s\nnum:%d\n", (test1->name), (test1->type[0])); +int main(){ + struct head_link *test1=add(); + test1->type[0]=1; + strval(&(test1->name),"hello ",1); + strval(&(test1->name),"world",2); + strval(&(test1->name),"goodbye world",3); + printf("name:%s\nnum:%d\n",(test1->name),(test1->type[0])); return 0; } + diff --git a/cpp/strlib/include/str.h b/cpp/strlib/include/str.h index 6c113be..09edd87 100644 --- a/cpp/strlib/include/str.h +++ b/cpp/strlib/include/str.h @@ -3,5 +3,5 @@ #include #include #include -void strval(char **str1, const char *str2, int type); +void strval(char **str1,const char *str2,int type); #endif diff --git a/cpp/strlib/src/str.cpp b/cpp/strlib/src/str.cpp index 1ae3def..375d97f 100644 --- a/cpp/strlib/src/str.cpp +++ b/cpp/strlib/src/str.cpp @@ -1,29 +1,25 @@ #include "../include/str.h" -void strval(char **str1, const char *str2, int type) -{ +void strval(char **str1,const char *str2,int type){ switch (type) { - case 1: - { - *str1 = (char *)malloc(strlen(str2 + 1)); - sprintf(*str1, "%s", str2); - printf("case 1 :%s\n", *str1); - break; - } - case 2: - { - *str1 = (char *)realloc(*str1, strlen(*str1) + strlen(str2) + 1); - sprintf(*str1, "%s%s", *str1, str2); - printf("case 2 :%s\n", *str1); - } - break; - case 3: - { - free(*str1); - *str1 = (char *)malloc(strlen(str2 + 1)); - sprintf(*str1, "%s", str2); - printf("case 3 :%s\n", *str1); - break; - } + case 1 : { + *str1=(char *)malloc(strlen(str2+1)); + sprintf(*str1,"%s",str2); + printf("case 1 :%s\n",*str1); + break; + } + case 2 : { + *str1 = (char *)realloc(*str1,strlen(*str1)+strlen(str2)+1); + sprintf(*str1,"%s%s",*str1,str2); + printf("case 2 :%s\n",*str1); + } + break; + case 3 : { + free(*str1); + *str1=(char *)malloc(strlen(str2+1)); + sprintf(*str1,"%s",str2); + printf("case 3 :%s\n",*str1); + break; + } } -} \ No newline at end of file +} diff --git a/cpp/strlib/src/test.cpp b/cpp/strlib/src/test.cpp index c2b41b0..8b9abc7 100644 --- a/cpp/strlib/src/test.cpp +++ b/cpp/strlib/src/test.cpp @@ -1,11 +1,11 @@ #include "../include/head.hpp" -int main() -{ - struct head_link *test1 = add(); - test1->type[0] = 1; - strval(&(test1->name), "hello ", 1); - strval(&(test1->name), "world", 2); - strval(&(test1->name), "goodbye world", 3); - printf("name:%s\nnum:%d\n", (test1->name), (test1->type[0])); +int main(){ + struct head_link *test1=add(); + test1->type[0]=1; + strval(&(test1->name),"hello ",1); + strval(&(test1->name),"world",2); + strval(&(test1->name),"goodbye world",3); + printf("name:%s\nnum:%d\n",(test1->name),(test1->type[0])); return 0; } + diff --git a/cpp/test2/main.c b/cpp/test2/main.c index 2378d48..b3ba424 100644 --- a/cpp/test2/main.c +++ b/cpp/test2/main.c @@ -1,14 +1,13 @@ #include void (*add)(); -void addf() -{ +void addf(){ int *a = (int *)malloc(sizeof(int)); - *a = 4; + *a =4; } int main(int argc, char *argv[]) { - add() *fp = addf(); + add()* fp=addf(); fp(); - printf("%d\n", *a); + printf("%d\n",*a ); return 0; } diff --git a/cpp/WebSocket/CMakeLists.txt b/cpp/websocket/CMakeLists.txt similarity index 100% rename from cpp/WebSocket/CMakeLists.txt rename to cpp/websocket/CMakeLists.txt diff --git a/cpp/WebSocket/build.sh b/cpp/websocket/build.sh similarity index 100% rename from cpp/WebSocket/build.sh rename to cpp/websocket/build.sh diff --git a/cpp/WebSocket/include/websocket.h b/cpp/websocket/include/websocket.h similarity index 100% rename from cpp/WebSocket/include/websocket.h rename to cpp/websocket/include/websocket.h diff --git a/cpp/WebSocket/src/websocket.c b/cpp/websocket/src/websocket.c similarity index 100% rename from cpp/WebSocket/src/websocket.c rename to cpp/websocket/src/websocket.c diff --git a/git/GPGNotes.txt b/git/GPGNotes.txt deleted file mode 100644 index 5a28ec7..0000000 --- a/git/GPGNotes.txt +++ /dev/null @@ -1,7 +0,0 @@ -gpg --full-generate-key -gpg --default-new-key-algo rsa4096 --gen-key -gpg --list-secret-keys --keyid-format=long -gpg --armor --export 3AA5C34371567BD2 -git config user.signingkey Your_GPG_key_ID -git config commit.gpgsign true -gpg --edit-key 3AA5C34371567BD2 diff --git a/git/GitNotes.txt b/git/GitNotes.txt deleted file mode 100644 index 3faf5b4..0000000 --- a/git/GitNotes.txt +++ /dev/null @@ -1,2 +0,0 @@ -git config --global http.https://github.com.proxy socks5://127.0.0.1:1080 -git config --global https.https://github.com.proxy socks5://127.0.0.1:1080 diff --git a/go/.gitignore b/go/.gitignore deleted file mode 100644 index 7cd1091..0000000 --- a/go/.gitignore +++ /dev/null @@ -1,21 +0,0 @@ -# If you prefer the allow list template instead of the deny list, see community template: -# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore -# -# Binaries for programs and plugins -*.exe -*.exe~ -*.dll -*.so -*.dylib - -# Test binary, built with `go test -c` -*.test - -# Output of the go coverage tool, specifically when used with LiteIDE -*.out - -# Dependency directories (remove the comment below to include it) -# vendor/ - -# Go workspace file -go.work \ No newline at end of file diff --git a/go/HelloWorld/main.go b/go/helloworld/main.go similarity index 100% rename from go/HelloWorld/main.go rename to go/helloworld/main.go diff --git a/go/Resistor/01/main.go b/go/r/01/main.go similarity index 100% rename from go/Resistor/01/main.go rename to go/r/01/main.go diff --git a/go/Resistor/main.go b/go/r/main.go similarity index 100% rename from go/Resistor/main.go rename to go/r/main.go diff --git a/go/Web/build.bat b/go/web/build.bat similarity index 100% rename from go/Web/build.bat rename to go/web/build.bat diff --git a/go/Web/build.sh b/go/web/build.sh similarity index 100% rename from go/Web/build.sh rename to go/web/build.sh diff --git a/go/Web/main.go b/go/web/main.go similarity index 100% rename from go/Web/main.go rename to go/web/main.go diff --git a/go/Web/test.go b/go/web/test.go similarity index 100% rename from go/Web/test.go rename to go/web/test.go diff --git a/html/1.html b/html/1.html deleted file mode 100644 index 2e9d540..0000000 --- a/html/1.html +++ /dev/null @@ -1,10 +0,0 @@ -

123456

-

12345
- 1234
- 1234567
- 12
-

- \ No newline at end of file diff --git a/html/10.html b/html/10.html deleted file mode 100644 index 870a69c..0000000 --- a/html/10.html +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - Document - - - - - -
    -
  • 模块1 -
      -
    • 内容
    • -
    • 内容
    • -
    -
  • -
  • 模块2
  • -
- - \ No newline at end of file diff --git a/html/11.html b/html/11.html deleted file mode 100644 index 13484f3..0000000 --- a/html/11.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - Document - - - -

-

123

-

-

-

1

-

-

-

2

-

-

-

3

-

- - - - - - - - \ No newline at end of file diff --git a/html/11.js b/html/11.js deleted file mode 100644 index 733139c..0000000 --- a/html/11.js +++ /dev/null @@ -1,23 +0,0 @@ -// document.getElementById("h").innerHTML = 456 -// // console.log(document.getElementsByClassName("a1")) -// document.getElementsByClassName("a1")[0].innerHTML = 4 -// var revise = document.getElementsByClassName("a1") -// revise[0].innerHTML = "revise[0]" -// // console.log(document.getElementById("h").innerHTML) -// // console.log(document.getElementById("h").innerText) -// document.getElementsByClassName("a1")[0].style.background = "red" -function a() -{ -document.getElementById("h").innerHTML = 456 -} -function b() -{ - document.getElementById("h").innerHTML = 123 -} -function key() -{ - console.log(event.key) - if (event.key == ' ') { - alert("\" \"") - } -} \ No newline at end of file diff --git a/html/12.html b/html/12.html deleted file mode 100644 index 113dafe..0000000 --- a/html/12.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - Document - - - -
- - - -
- - - - - \ No newline at end of file diff --git a/html/12.js b/html/12.js deleted file mode 100644 index db97039..0000000 --- a/html/12.js +++ /dev/null @@ -1,24 +0,0 @@ -function a() { - x = document.forms["fo"]["txt"].value - if (x == null || x == "") { - alert("input can't be blank") - return false - } - else if (x == "123456") { - alert("login success!") - } - else { - alert("password is wrong") - return false - } -} -function b() { - windows.location = "11.html" -} - -function c() -{ - setTimeout(function(){ - document.write("1234565432") - },3000) -} \ No newline at end of file diff --git a/html/13.css b/html/13.css deleted file mode 100644 index da89985..0000000 --- a/html/13.css +++ /dev/null @@ -1,20 +0,0 @@ -.a { - background-color: aliceblue; - height: 500px; - width: 1500px; - margin-left: 5%; - overflow: hidden; - position: absolute; -} -.b { - width: 4500px; - height: 500px; - display: flex; - /* left: -100px; */ - position: relative; -} -.c { - width: 1500px; - height: 500px; - float:left; -} \ No newline at end of file diff --git a/html/13.html b/html/13.html deleted file mode 100644 index 9a5a58e..0000000 --- a/html/13.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - Document - - - - - -
-
-
-
-
-
-
- - - - \ No newline at end of file diff --git a/html/13.js b/html/13.js deleted file mode 100644 index 8a71d92..0000000 --- a/html/13.js +++ /dev/null @@ -1,8 +0,0 @@ -onload = function () { - setInterval(function () { - var x = document.getElementsByClassName("b")[0]; - console.log(x.style.left); // can be modified - console.log(x.offsetLeft); // read only - x.style.left = (x.offsetLeft - 1) + "px" - }, 10); -} \ No newline at end of file diff --git a/html/2.html b/html/2.html deleted file mode 100644 index 56efbdb..0000000 --- a/html/2.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - Document - - - - - \ No newline at end of file diff --git a/html/3.html b/html/3.html deleted file mode 100644 index 2c1096e..0000000 --- a/html/3.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - Document - - - -

123456

-

12345
- 1234
- 1234567
- 12
- 123456 - 123456 - 123
- 123
- 123
-

百度

- 1.html -

- - - \ No newline at end of file diff --git a/html/4.html b/html/4.html deleted file mode 100644 index f2c8a10..0000000 --- a/html/4.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - 老婆~ - - - - -

最喜欢你了~ 傲娇变态baka老婆酱


- - 傲娇变态baka酱~ - - - \ No newline at end of file diff --git a/html/5.html b/html/5.html deleted file mode 100644 index f4580ce..0000000 --- a/html/5.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - Document - - - - - - - -

script

-
- - -

class

-
-
-

123456

-

12345

-

1234

-

1234567

-

12

-
- -

Table

-
- - - - - - - - - - - - - - - - - -
Header 1Header 2Header 3
row 1, cell 1row 1, cell 2row 1, cell 3
row 2, cell 1row 2, cell 2row 2, cell 3
- -

Line

-
- -
    -
  1. 123
  2. -
  3. 456
  4. -
  5. 789
  6. -
- -
    -
  • 123
  • -
  • 456
  • -
  • 789
  • -
- -

Form

-
-
- 用户名 - 密码 - -


-
-
-
- ------------------------------------------------------
- 香蕉
- 苹果
- ------------------------------------------------------
-
-
- - - - - sumbit - reset - button -
-
- -
- - - - - - - - -
数字
123
- - - \ No newline at end of file diff --git a/html/6.css b/html/6.css deleted file mode 100644 index e3e6df7..0000000 --- a/html/6.css +++ /dev/null @@ -1,3 +0,0 @@ -h2 { - color:yellow; -} \ No newline at end of file diff --git a/html/6.html b/html/6.html deleted file mode 100644 index ddb7b81..0000000 --- a/html/6.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - Document - - - - - - -

blue

- -

green

-

yellow

-

id

-

class

-

class

-

id+class

-

para5

-

underline

- - - \ No newline at end of file diff --git a/html/7.css b/html/7.css deleted file mode 100644 index 0f7cddc..0000000 --- a/html/7.css +++ /dev/null @@ -1,76 +0,0 @@ -a:link { - color: aliceblue; -} - -a:visited { - color: black; -} - -a:active { - color: blue; -} - -a:hover { - color: blueviolet; - text-decoration: none; -} - -a::after { - color: aqua; -} - -td { - text-decoration: none; -} - -.tab, -tr, -td { - border-style: solid; - border-color: blueviolet; - border-width: 1px; - border-collapse: collapse; - text-align: center; -} - -table { - height: 50%; - width: 25%; -} - -caption { - font-size: 40px; - font-weight: 600; - font-family: '宋体'; -} - -ul { - list-style-type: none; - list-style-position: inside; - list-style: none; -} - -input[type="text"] { - padding-left: 30px; - margin: 0px; - transition: width 0.5s; - width: 20%; - text-align: center; - height: 30px; - background-image: url("select.png"); - background-repeat: no-repeat; - border-radius: 20px; -} - -input:focus { - background-color: lightblue; - width: 40%; -} - -p:active { - color: purple -} - -p:hover { - color: lightblue -} \ No newline at end of file diff --git a/html/7.html b/html/7.html deleted file mode 100644 index e097ea5..0000000 --- a/html/7.html +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - Document - - - - jump - - - - - - - - - - - - - - -
Caption
title1title2
roll 1 cell 1roll 1 cell 2
roll 2 cell 1roll 2 cell 2
- - - \ No newline at end of file diff --git a/html/8.html b/html/8.html deleted file mode 100644 index feef2ba..0000000 --- a/html/8.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - Document - - - - -
-
网页标题
-
菜单
- HTML
- CSS
- JavaScript
-
内容
-
版权 © runoob.com
-
- - - - - - - \ No newline at end of file diff --git a/html/9.css b/html/9.css deleted file mode 100644 index 75b58d7..0000000 --- a/html/9.css +++ /dev/null @@ -1,14 +0,0 @@ -p{ - color: aqua; -} -.marked{ - color: beige; - background-color: green; -} -.marked p{ - color: yellow; -} -p.marked{ - font-size: larger; - background-color:chartreuse; -} \ No newline at end of file diff --git a/html/9.html b/html/9.html deleted file mode 100644 index becb4a5..0000000 --- a/html/9.html +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - Document - - - -

p class="marked"

-

div.marked>p

- - \ No newline at end of file diff --git a/html/9baka&Mayuri.png b/html/9baka&Mayuri.png deleted file mode 100644 index 313628f..0000000 Binary files a/html/9baka&Mayuri.png and /dev/null differ diff --git a/html/e1.html b/html/e1.html deleted file mode 100644 index 1c856d0..0000000 --- a/html/e1.html +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - Document - - -

咏鹅


-

鹅鹅鹅


- 上一句 下一句 - - \ No newline at end of file diff --git a/html/e2.html b/html/e2.html deleted file mode 100644 index c608320..0000000 --- a/html/e2.html +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - Document - - -

咏鹅


-

曲项向天歌


- 上一句 下一句 - - \ No newline at end of file diff --git a/html/e3.html b/html/e3.html deleted file mode 100644 index 5e86d79..0000000 --- a/html/e3.html +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - Document - - -

咏鹅


-

白毛浮绿水


- 上一句 下一句 - - \ No newline at end of file diff --git a/html/e4.html b/html/e4.html deleted file mode 100644 index 74c2ee3..0000000 --- a/html/e4.html +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - Document - - -

咏鹅


-

红掌拨清波


- 上一句 下一句 - - \ No newline at end of file diff --git a/html/flexbox/flexbox.css b/html/flexbox/flexbox.css deleted file mode 100644 index 95405fb..0000000 --- a/html/flexbox/flexbox.css +++ /dev/null @@ -1,38 +0,0 @@ -/* .box { - border: 5px solid green; - padding: 10px; -} - -.item { - border: 2px solid red; - border-style: solid; - border-width: 20px ; - margin: 20px 40px 60px 80px; - padding: 20px; -} */ - -body { - background-color: royalblue; -} -.container { - background-color: yellow; - border: 2px solid green; - height: 500px; - /* width: 50%; */ - max-width: 1000px; - margin: 150px auto; - padding: 10px; - display: flex; - /* flex-direction: row; - flex-wrap: wrap-reverse; */ - /* flex-flow: row-reverse warp; */ - justify-content: space-around; - align-items: flex-end; -} - -.item { - height: 100px; - width: 100px; - background-color: brown; - margin: 20px; -} \ No newline at end of file diff --git a/html/flexbox/flexbox.html b/html/flexbox/flexbox.html deleted file mode 100644 index b9a87d1..0000000 --- a/html/flexbox/flexbox.html +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - flexbox - - - - -
-
1
-
2
-
3
- -
- - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/html/goserver/web.go b/html/goserver/web.go deleted file mode 100644 index 550ff2b..0000000 --- a/html/goserver/web.go +++ /dev/null @@ -1,8 +0,0 @@ -package main -import ( - "net/http" -) -func main() { - http.Handle("/", http.FileServer(http.Dir("./"))) - http.ListenAndServe(":3000", nil) -} diff --git a/html/id.css b/html/id.css deleted file mode 100644 index 08d0b47..0000000 --- a/html/id.css +++ /dev/null @@ -1,26 +0,0 @@ -#para1 { - color: aquamarine; - text-align: center; -} - -.para2 { - background-color: rgb(255, 128, 64); -} - -.para2.para3.para4 { - color: aqua; -} - -body { - background-image: url('9baka&Mayuri.png'); - background-repeat: no-repeat; - /*background-size: 30% 30%;*/ - background-position: right; -} -.para5 { - text-align: justify; -} -.para6 { - text-align: justify; - text-decoration: underline; -} \ No newline at end of file diff --git a/html/index.css b/html/index.css deleted file mode 100644 index dcd6531..0000000 --- a/html/index.css +++ /dev/null @@ -1,4 +0,0 @@ -.box{ - font-size:20px; - color: blue; -} \ No newline at end of file diff --git a/html/jquery.html b/html/jquery.html deleted file mode 100644 index d7b5165..0000000 --- a/html/jquery.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - Document - - - -

123456

- - - - - - - -
-
- - - - - - - \ No newline at end of file diff --git a/html/login/go.mod b/html/login/go.mod deleted file mode 100644 index b927527..0000000 --- a/html/login/go.mod +++ /dev/null @@ -1,34 +0,0 @@ -module main - -go 1.22.2 - -require github.com/gin-gonic/gin v1.10.0 - -require ( - github.com/bytedance/sonic v1.11.6 // indirect - github.com/bytedance/sonic/loader v0.1.1 // indirect - github.com/cloudwego/base64x v0.1.4 // indirect - github.com/cloudwego/iasm v0.2.0 // indirect - github.com/gabriel-vasile/mimetype v1.4.3 // indirect - github.com/gin-contrib/sse v0.1.0 // indirect - github.com/go-playground/locales v0.14.1 // indirect - github.com/go-playground/universal-translator v0.18.1 // indirect - github.com/go-playground/validator/v10 v10.20.0 // indirect - github.com/goccy/go-json v0.10.2 // indirect - github.com/json-iterator/go v1.1.12 // indirect - github.com/klauspost/cpuid/v2 v2.2.7 // indirect - github.com/leodido/go-urn v1.4.0 // indirect - github.com/mattn/go-isatty v0.0.20 // indirect - github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect - github.com/modern-go/reflect2 v1.0.2 // indirect - github.com/pelletier/go-toml/v2 v2.2.2 // indirect - github.com/twitchyliquid64/golang-asm v0.15.1 // indirect - github.com/ugorji/go/codec v1.2.12 // indirect - golang.org/x/arch v0.8.0 // indirect - golang.org/x/crypto v0.23.0 // indirect - golang.org/x/net v0.25.0 // indirect - golang.org/x/sys v0.20.0 // indirect - golang.org/x/text v0.15.0 // indirect - google.golang.org/protobuf v1.34.1 // indirect - gopkg.in/yaml.v3 v3.0.1 // indirect -) diff --git a/html/login/go.sum b/html/login/go.sum deleted file mode 100644 index 7f08abb..0000000 --- a/html/login/go.sum +++ /dev/null @@ -1,89 +0,0 @@ -github.com/bytedance/sonic v1.11.6 h1:oUp34TzMlL+OY1OUWxHqsdkgC/Zfc85zGqw9siXjrc0= -github.com/bytedance/sonic v1.11.6/go.mod h1:LysEHSvpvDySVdC2f87zGWf6CIKJcAvqab1ZaiQtds4= -github.com/bytedance/sonic/loader v0.1.1 h1:c+e5Pt1k/cy5wMveRDyk2X4B9hF4g7an8N3zCYjJFNM= -github.com/bytedance/sonic/loader v0.1.1/go.mod h1:ncP89zfokxS5LZrJxl5z0UJcsk4M4yY2JpfqGeCtNLU= -github.com/cloudwego/base64x v0.1.4 h1:jwCgWpFanWmN8xoIUHa2rtzmkd5J2plF/dnLS6Xd/0Y= -github.com/cloudwego/base64x v0.1.4/go.mod h1:0zlkT4Wn5C6NdauXdJRhSKRlJvmclQ1hhJgA0rcu/8w= -github.com/cloudwego/iasm v0.2.0 h1:1KNIy1I1H9hNNFEEH3DVnI4UujN+1zjpuk6gwHLTssg= -github.com/cloudwego/iasm v0.2.0/go.mod h1:8rXZaNYT2n95jn+zTI1sDr+IgcD2GVs0nlbbQPiEFhY= -github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= -github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/gabriel-vasile/mimetype v1.4.3 h1:in2uUcidCuFcDKtdcBxlR0rJ1+fsokWf+uqxgUFjbI0= -github.com/gabriel-vasile/mimetype v1.4.3/go.mod h1:d8uq/6HKRL6CGdk+aubisF/M5GcPfT7nKyLpA0lbSSk= -github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= -github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= -github.com/gin-gonic/gin v1.10.0 h1:nTuyha1TYqgedzytsKYqna+DfLos46nTv2ygFy86HFU= -github.com/gin-gonic/gin v1.10.0/go.mod h1:4PMNQiOhvDRa013RKVbsiNwoyezlm2rm0uX/T7kzp5Y= -github.com/go-playground/assert/v2 v2.2.0 h1:JvknZsQTYeFEAhQwI4qEt9cyV5ONwRHC+lYKSsYSR8s= -github.com/go-playground/assert/v2 v2.2.0/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= -github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/oXslEjJA= -github.com/go-playground/locales v0.14.1/go.mod h1:hxrqLVvrK65+Rwrd5Fc6F2O76J/NuW9t0sjnWqG1slY= -github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJnYK9S473LQFuzCbDbfSFY= -github.com/go-playground/universal-translator v0.18.1/go.mod h1:xekY+UJKNuX9WP91TpwSH2VMlDf28Uj24BCp08ZFTUY= -github.com/go-playground/validator/v10 v10.20.0 h1:K9ISHbSaI0lyB2eWMPJo+kOS/FBExVwjEviJTixqxL8= -github.com/go-playground/validator/v10 v10.20.0/go.mod h1:dbuPbCMFw/DrkbEynArYaCwl3amGuJotoKCe95atGMM= -github.com/goccy/go-json v0.10.2 h1:CrxCmQqYDkv1z7lO7Wbh2HN93uovUHgrECaO5ZrCXAU= -github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= -github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= -github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= -github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= -github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= -github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= -github.com/klauspost/cpuid/v2 v2.2.7 h1:ZWSB3igEs+d0qvnxR/ZBzXVmxkgt8DdzP6m9pfuVLDM= -github.com/klauspost/cpuid/v2 v2.2.7/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= -github.com/knz/go-libedit v1.10.1/go.mod h1:MZTVkCWyz0oBc7JOWP3wNAzd002ZbM/5hgShxwh4x8M= -github.com/leodido/go-urn v1.4.0 h1:WT9HwE9SGECu3lg4d/dIA+jxlljEa1/ffXKmRjqdmIQ= -github.com/leodido/go-urn v1.4.0/go.mod h1:bvxc+MVxLKB4z00jd1z+Dvzr47oO32F/QSNjSBOlFxI= -github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= -github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= -github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= -github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= -github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= -github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= -github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= -github.com/pelletier/go-toml/v2 v2.2.2 h1:aYUidT7k73Pcl9nb2gScu7NSrKCSHIDE89b3+6Wq+LM= -github.com/pelletier/go-toml/v2 v2.2.2/go.mod h1:1t835xjRzz80PqgE6HHgN2JOsmgYu/h4qDAS4n929Rs= -github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= -github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= -github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= -github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA= -github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= -github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= -github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= -github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= -github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= -github.com/twitchyliquid64/golang-asm v0.15.1 h1:SU5vSMR7hnwNxj24w34ZyCi/FmDZTkS4MhqMhdFk5YI= -github.com/twitchyliquid64/golang-asm v0.15.1/go.mod h1:a1lVb/DtPvCB8fslRZhAngC2+aY1QWCk3Cedj/Gdt08= -github.com/ugorji/go/codec v1.2.12 h1:9LC83zGrHhuUA9l16C9AHXAqEV/2wBQ4nkvumAE65EE= -github.com/ugorji/go/codec v1.2.12/go.mod h1:UNopzCgEMSXjBc6AOMqYvWC1ktqTAfzJZUZgYf6w6lg= -golang.org/x/arch v0.0.0-20210923205945-b76863e36670/go.mod h1:5om86z9Hs0C8fWVUuoMHwpExlXzs5Tkyp9hOrfG7pp8= -golang.org/x/arch v0.8.0 h1:3wRIsP3pM4yUptoR96otTUOXI367OS0+c9eeRi9doIc= -golang.org/x/arch v0.8.0/go.mod h1:FEVrYAQjsQXMVJ1nsMoVVXPZg6p2JE2mx8psSWTDQys= -golang.org/x/crypto v0.23.0 h1:dIJU/v2J8Mdglj/8rJ6UUOM3Zc9zLZxVZwwxMooUSAI= -golang.org/x/crypto v0.23.0/go.mod h1:CKFgDieR+mRhux2Lsu27y0fO304Db0wZe70UKqHu0v8= -golang.org/x/net v0.25.0 h1:d/OCCoBEUq33pjydKrGQhw7IlUPI2Oylr+8qLx49kac= -golang.org/x/net v0.25.0/go.mod h1:JkAGAh7GEvH74S6FOH42FLoXpXbE/aqXSrIQjXgsiwM= -golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.20.0 h1:Od9JTbYCk261bKm4M/mw7AklTlFYIa0bIp9BgSm1S8Y= -golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/text v0.15.0 h1:h1V/4gjBv8v9cjcR6+AR5+/cIYK5N/WAgiv4xlsEtAk= -golang.org/x/text v0.15.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= -golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4= -golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -google.golang.org/protobuf v1.34.1 h1:9ddQBjfCyZPOHPUiPxpYESBLc+T8P3E+Vo4IbKZgFWg= -google.golang.org/protobuf v1.34.1/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= -gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= -gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= -gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -nullprogram.com/x/optparse v1.0.0/go.mod h1:KdyPE+Igbe0jQUrVfMqDMeJQIJZEuyV7pjYmp6pbG50= -rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= diff --git a/html/login/main.go b/html/login/main.go deleted file mode 100644 index 71cae8f..0000000 --- a/html/login/main.go +++ /dev/null @@ -1,29 +0,0 @@ -package main - -import ( - "github.com/gin-gonic/gin" -) - -func main() { - r := gin.Default() - r.GET("/ping", func(c *gin.Context) { - c.JSON(200, gin.H{ - "message": "pong", - }) - }) - // login func username root password root - r.POST("/login", func(c *gin.Context) { - username := c.PostForm("username") - password := c.PostForm("password") - if username == "root" && password == "root" { - c.JSON(200, gin.H{ - "status": "you are logged in", - }) - } else { - c.JSON(401, gin.H{ - "status": "unauthorized", - }) - } - }) - r.Run() // listen and serve on 0.0.0.0:8080 -} \ No newline at end of file diff --git a/html/login/main.html b/html/login/main.html deleted file mode 100644 index a1c0556..0000000 --- a/html/login/main.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - -
-

Login

-
- - - - -
-
- diff --git a/html/login/static/css/daisyui@4.10.5.css b/html/login/static/css/daisyui@4.10.5.css deleted file mode 100644 index 069f766..0000000 --- a/html/login/static/css/daisyui@4.10.5.css +++ /dev/null @@ -1,20 +0,0 @@ -/** - * Minified by jsDelivr using clean-css v5.3.2. - * Original file: /npm/daisyui@4.10.5/dist/full.css - * - * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files - */ -:root{color-scheme:light;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--pc:89.824% 0.06192 275.75;--ac:15.352% 0.0368 183.61;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:49.12% 0.3096 275.75;--s:69.71% 0.329 342.55;--sc:98.71% 0.0106 342.55;--a:76.76% 0.184 183.61;--n:32.1785% 0.02476 255.701624;--nc:89.4994% 0.011585 252.096176;--b1:100% 0 0;--b2:96.1151% 0 0;--b3:92.4169% 0.00108 197.137559;--bc:27.8078% 0.029596 256.847952}@media (prefers-color-scheme:dark){:root{color-scheme:dark;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--pc:13.138% 0.0392 275.75;--sc:14.96% 0.052 342.55;--ac:14.902% 0.0334 183.61;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:65.69% 0.196 275.75;--s:74.8% 0.26 342.55;--a:74.51% 0.167 183.61;--n:31.3815% 0.021108 254.139175;--nc:74.6477% 0.0216 264.435964;--b1:25.3267% 0.015896 252.417568;--b2:23.2607% 0.013807 253.100675;--b3:21.1484% 0.01165 254.087939;--bc:74.6477% 0.0216 264.435964}}[data-theme=light]{color-scheme:light;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--pc:89.824% 0.06192 275.75;--ac:15.352% 0.0368 183.61;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:49.12% 0.3096 275.75;--s:69.71% 0.329 342.55;--sc:98.71% 0.0106 342.55;--a:76.76% 0.184 183.61;--n:32.1785% 0.02476 255.701624;--nc:89.4994% 0.011585 252.096176;--b1:100% 0 0;--b2:96.1151% 0 0;--b3:92.4169% 0.00108 197.137559;--bc:27.8078% 0.029596 256.847952}:root:has(input.theme-controller[value=light]:checked){color-scheme:light;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--pc:89.824% 0.06192 275.75;--ac:15.352% 0.0368 183.61;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:49.12% 0.3096 275.75;--s:69.71% 0.329 342.55;--sc:98.71% 0.0106 342.55;--a:76.76% 0.184 183.61;--n:32.1785% 0.02476 255.701624;--nc:89.4994% 0.011585 252.096176;--b1:100% 0 0;--b2:96.1151% 0 0;--b3:92.4169% 0.00108 197.137559;--bc:27.8078% 0.029596 256.847952}[data-theme=dark]{color-scheme:dark;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--pc:13.138% 0.0392 275.75;--sc:14.96% 0.052 342.55;--ac:14.902% 0.0334 183.61;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:65.69% 0.196 275.75;--s:74.8% 0.26 342.55;--a:74.51% 0.167 183.61;--n:31.3815% 0.021108 254.139175;--nc:74.6477% 0.0216 264.435964;--b1:25.3267% 0.015896 252.417568;--b2:23.2607% 0.013807 253.100675;--b3:21.1484% 0.01165 254.087939;--bc:74.6477% 0.0216 264.435964}:root:has(input.theme-controller[value=dark]:checked){color-scheme:dark;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--pc:13.138% 0.0392 275.75;--sc:14.96% 0.052 342.55;--ac:14.902% 0.0334 183.61;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:65.69% 0.196 275.75;--s:74.8% 0.26 342.55;--a:74.51% 0.167 183.61;--n:31.3815% 0.021108 254.139175;--nc:74.6477% 0.0216 264.435964;--b1:25.3267% 0.015896 252.417568;--b2:23.2607% 0.013807 253.100675;--b3:21.1484% 0.01165 254.087939;--bc:74.6477% 0.0216 264.435964}[data-theme=cupcake]{color-scheme:light;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--pc:15.2344% 0.017892 200.026556;--sc:15.787% 0.020249 356.29965;--ac:15.8762% 0.029206 78.618794;--nc:84.7148% 0.013247 313.189598;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--rounded-box:1rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--p:76.172% 0.089459 200.026556;--s:78.9351% 0.101246 356.29965;--a:79.3811% 0.146032 78.618794;--n:23.5742% 0.066235 313.189598;--b1:97.7882% 0.00418 56.375637;--b2:93.9822% 0.007638 61.449292;--b3:91.5861% 0.006811 53.440502;--bc:23.5742% 0.066235 313.189598;--rounded-btn:1.9rem;--tab-border:2px;--tab-radius:0.7rem}:root:has(input.theme-controller[value=cupcake]:checked){color-scheme:light;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--pc:15.2344% 0.017892 200.026556;--sc:15.787% 0.020249 356.29965;--ac:15.8762% 0.029206 78.618794;--nc:84.7148% 0.013247 313.189598;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--rounded-box:1rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--p:76.172% 0.089459 200.026556;--s:78.9351% 0.101246 356.29965;--a:79.3811% 0.146032 78.618794;--n:23.5742% 0.066235 313.189598;--b1:97.7882% 0.00418 56.375637;--b2:93.9822% 0.007638 61.449292;--b3:91.5861% 0.006811 53.440502;--bc:23.5742% 0.066235 313.189598;--rounded-btn:1.9rem;--tab-border:2px;--tab-radius:0.7rem}[data-theme=bumblebee]{color-scheme:light;--b2:93% 0 0;--b3:86% 0 0;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--bc:20% 0 0;--ac:16.254% 0.0314 56.52;--nc:82.55% 0.015 281.99;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:89.51% 0.2132 96.61;--pc:38.92% 0.046 96.61;--s:80.39% 0.194 70.76;--sc:39.38% 0.068 70.76;--a:81.27% 0.157 56.52;--n:12.75% 0.075 281.99;--b1:100% 0 0}:root:has(input.theme-controller[value=bumblebee]:checked){color-scheme:light;--b2:93% 0 0;--b3:86% 0 0;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--bc:20% 0 0;--ac:16.254% 0.0314 56.52;--nc:82.55% 0.015 281.99;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:89.51% 0.2132 96.61;--pc:38.92% 0.046 96.61;--s:80.39% 0.194 70.76;--sc:39.38% 0.068 70.76;--a:81.27% 0.157 56.52;--n:12.75% 0.075 281.99;--b1:100% 0 0}[data-theme=emerald]{color-scheme:light;--b2:93% 0 0;--b3:86% 0 0;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:76.6626% 0.135433 153.450024;--pc:33.3872% 0.040618 162.240129;--s:61.3028% 0.202368 261.294233;--sc:100% 0 0;--a:72.7725% 0.149783 33.200363;--ac:0% 0 0;--n:35.5192% 0.032071 262.988584;--nc:98.4625% 0.001706 247.838921;--b1:100% 0 0;--bc:35.5192% 0.032071 262.988584;--animation-btn:0;--animation-input:0;--btn-focus-scale:1}:root:has(input.theme-controller[value=emerald]:checked){color-scheme:light;--b2:93% 0 0;--b3:86% 0 0;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:76.6626% 0.135433 153.450024;--pc:33.3872% 0.040618 162.240129;--s:61.3028% 0.202368 261.294233;--sc:100% 0 0;--a:72.7725% 0.149783 33.200363;--ac:0% 0 0;--n:35.5192% 0.032071 262.988584;--nc:98.4625% 0.001706 247.838921;--b1:100% 0 0;--bc:35.5192% 0.032071 262.988584;--animation-btn:0;--animation-input:0;--btn-focus-scale:1}[data-theme=corporate]{color-scheme:light;--b2:93% 0 0;--b3:86% 0 0;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--pc:12.078% 0.0456 269.1;--sc:13.0739% 0.010951 256.688055;--ac:15.3934% 0.022799 163.57888;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--border-btn:1px;--tab-border:1px;--p:60.39% 0.228 269.1;--s:65.3694% 0.054756 256.688055;--a:76.9669% 0.113994 163.57888;--n:22.3899% 0.031305 278.07229;--nc:95.8796% 0.008588 247.915135;--b1:100% 0 0;--bc:22.3899% 0.031305 278.07229;--rounded-box:0.25rem;--rounded-btn:.125rem;--rounded-badge:.125rem;--tab-radius:0.25rem;--animation-btn:0;--animation-input:0;--btn-focus-scale:1}:root:has(input.theme-controller[value=corporate]:checked){color-scheme:light;--b2:93% 0 0;--b3:86% 0 0;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--pc:12.078% 0.0456 269.1;--sc:13.0739% 0.010951 256.688055;--ac:15.3934% 0.022799 163.57888;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--border-btn:1px;--tab-border:1px;--p:60.39% 0.228 269.1;--s:65.3694% 0.054756 256.688055;--a:76.9669% 0.113994 163.57888;--n:22.3899% 0.031305 278.07229;--nc:95.8796% 0.008588 247.915135;--b1:100% 0 0;--bc:22.3899% 0.031305 278.07229;--rounded-box:0.25rem;--rounded-btn:.125rem;--rounded-badge:.125rem;--tab-radius:0.25rem;--animation-btn:0;--animation-input:0;--btn-focus-scale:1}[data-theme=synthwave]{color-scheme:dark;--b2:20.2941% 0.076211 287.835609;--b3:18.7665% 0.070475 287.835609;--pc:14.4421% 0.031903 342.009383;--sc:15.6543% 0.02362 227.382405;--ac:17.608% 0.0412 93.72;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:72.2105% 0.159514 342.009383;--s:78.2714% 0.118101 227.382405;--a:88.04% 0.206 93.72;--n:25.5554% 0.103537 286.507967;--nc:97.9365% 0.00819 301.358346;--b1:21.8216% 0.081948 287.835609;--bc:97.9365% 0.00819 301.358346;--in:76.5197% 0.12273 231.831603;--inc:23.5017% 0.096418 290.329844;--su:86.0572% 0.115038 178.624677;--suc:23.5017% 0.096418 290.329844;--wa:85.531% 0.122117 93.722227;--wac:23.5017% 0.096418 290.329844;--er:73.7005% 0.121339 32.639257;--erc:23.5017% 0.096418 290.329844}:root:has(input.theme-controller[value=synthwave]:checked){color-scheme:dark;--b2:20.2941% 0.076211 287.835609;--b3:18.7665% 0.070475 287.835609;--pc:14.4421% 0.031903 342.009383;--sc:15.6543% 0.02362 227.382405;--ac:17.608% 0.0412 93.72;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:72.2105% 0.159514 342.009383;--s:78.2714% 0.118101 227.382405;--a:88.04% 0.206 93.72;--n:25.5554% 0.103537 286.507967;--nc:97.9365% 0.00819 301.358346;--b1:21.8216% 0.081948 287.835609;--bc:97.9365% 0.00819 301.358346;--in:76.5197% 0.12273 231.831603;--inc:23.5017% 0.096418 290.329844;--su:86.0572% 0.115038 178.624677;--suc:23.5017% 0.096418 290.329844;--wa:85.531% 0.122117 93.722227;--wac:23.5017% 0.096418 290.329844;--er:73.7005% 0.121339 32.639257;--erc:23.5017% 0.096418 290.329844}[data-theme=retro]{color-scheme:light;--inc:90.923% 0.043042 262.880917;--suc:12.541% 0.033982 149.213788;--wac:13.3168% 0.031484 58.31834;--erc:13.144% 0.0398 27.33;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--p:76.8664% 0.104092 22.664655;--pc:26.5104% 0.006243 0.522862;--s:80.7415% 0.052534 159.094608;--sc:26.5104% 0.006243 0.522862;--a:70.3919% 0.125455 52.953428;--ac:26.5104% 0.006243 0.522862;--n:28.4181% 0.009519 355.534017;--nc:92.5604% 0.025113 89.217311;--b1:91.6374% 0.034554 90.51575;--b2:88.2722% 0.049418 91.774344;--b3:84.133% 0.065952 90.856665;--bc:26.5104% 0.006243 0.522862;--in:54.615% 0.215208 262.880917;--su:62.7052% 0.169912 149.213788;--wa:66.584% 0.157422 58.31834;--er:65.72% 0.199 27.33;--rounded-box:0.4rem;--rounded-btn:0.4rem;--rounded-badge:0.4rem;--tab-radius:0.4rem}:root:has(input.theme-controller[value=retro]:checked){color-scheme:light;--inc:90.923% 0.043042 262.880917;--suc:12.541% 0.033982 149.213788;--wac:13.3168% 0.031484 58.31834;--erc:13.144% 0.0398 27.33;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--p:76.8664% 0.104092 22.664655;--pc:26.5104% 0.006243 0.522862;--s:80.7415% 0.052534 159.094608;--sc:26.5104% 0.006243 0.522862;--a:70.3919% 0.125455 52.953428;--ac:26.5104% 0.006243 0.522862;--n:28.4181% 0.009519 355.534017;--nc:92.5604% 0.025113 89.217311;--b1:91.6374% 0.034554 90.51575;--b2:88.2722% 0.049418 91.774344;--b3:84.133% 0.065952 90.856665;--bc:26.5104% 0.006243 0.522862;--in:54.615% 0.215208 262.880917;--su:62.7052% 0.169912 149.213788;--wa:66.584% 0.157422 58.31834;--er:65.72% 0.199 27.33;--rounded-box:0.4rem;--rounded-btn:0.4rem;--rounded-badge:0.4rem;--tab-radius:0.4rem}[data-theme=cyberpunk]{color-scheme:light;--b2:87.8943% 0.16647 104.32;--b3:81.2786% 0.15394 104.32;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--bc:18.902% 0.0358 104.32;--pc:14.844% 0.0418 6.35;--sc:16.666% 0.0368 204.72;--ac:14.372% 0.04352 310.43;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;--p:74.22% 0.209 6.35;--s:83.33% 0.184 204.72;--a:71.86% 0.2176 310.43;--n:23.04% 0.065 269.31;--nc:94.51% 0.179 104.32;--b1:94.51% 0.179 104.32;--rounded-box:0;--rounded-btn:0;--rounded-badge:0;--tab-radius:0}:root:has(input.theme-controller[value=cyberpunk]:checked){color-scheme:light;--b2:87.8943% 0.16647 104.32;--b3:81.2786% 0.15394 104.32;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--bc:18.902% 0.0358 104.32;--pc:14.844% 0.0418 6.35;--sc:16.666% 0.0368 204.72;--ac:14.372% 0.04352 310.43;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;--p:74.22% 0.209 6.35;--s:83.33% 0.184 204.72;--a:71.86% 0.2176 310.43;--n:23.04% 0.065 269.31;--nc:94.51% 0.179 104.32;--b1:94.51% 0.179 104.32;--rounded-box:0;--rounded-btn:0;--rounded-badge:0;--tab-radius:0}[data-theme=valentine]{color-scheme:light;--b2:88.0567% 0.024834 337.06289;--b3:81.4288% 0.022964 337.06289;--pc:13.7239% 0.030755 15.066527;--sc:14.3942% 0.029258 293.189609;--ac:14.2537% 0.014961 197.828857;--inc:90.923% 0.043042 262.880917;--suc:12.541% 0.033982 149.213788;--wac:13.3168% 0.031484 58.31834;--erc:14.614% 0.0414 27.33;--rounded-box:1rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--p:68.6197% 0.153774 15.066527;--s:71.971% 0.14629 293.189609;--a:71.2685% 0.074804 197.828857;--n:54.6053% 0.143342 358.004839;--nc:90.2701% 0.037202 336.955191;--b1:94.6846% 0.026703 337.06289;--bc:37.3085% 0.081131 4.606426;--in:54.615% 0.215208 262.880917;--su:62.7052% 0.169912 149.213788;--wa:66.584% 0.157422 58.31834;--er:73.07% 0.207 27.33;--rounded-btn:1.9rem;--tab-radius:0.7rem}:root:has(input.theme-controller[value=valentine]:checked){color-scheme:light;--b2:88.0567% 0.024834 337.06289;--b3:81.4288% 0.022964 337.06289;--pc:13.7239% 0.030755 15.066527;--sc:14.3942% 0.029258 293.189609;--ac:14.2537% 0.014961 197.828857;--inc:90.923% 0.043042 262.880917;--suc:12.541% 0.033982 149.213788;--wac:13.3168% 0.031484 58.31834;--erc:14.614% 0.0414 27.33;--rounded-box:1rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--p:68.6197% 0.153774 15.066527;--s:71.971% 0.14629 293.189609;--a:71.2685% 0.074804 197.828857;--n:54.6053% 0.143342 358.004839;--nc:90.2701% 0.037202 336.955191;--b1:94.6846% 0.026703 337.06289;--bc:37.3085% 0.081131 4.606426;--in:54.615% 0.215208 262.880917;--su:62.7052% 0.169912 149.213788;--wa:66.584% 0.157422 58.31834;--er:73.07% 0.207 27.33;--rounded-btn:1.9rem;--tab-radius:0.7rem}[data-theme=halloween]{color-scheme:dark;--b2:23.0416% 0 0;--b3:21.3072% 0 0;--bc:84.9552% 0 0;--sc:89.196% 0.0496 305.03;--nc:84.8742% 0.009322 65.681484;--inc:90.923% 0.043042 262.880917;--suc:12.541% 0.033982 149.213788;--wac:13.3168% 0.031484 58.31834;--erc:13.144% 0.0398 27.33;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:77.48% 0.204 60.62;--pc:19.6935% 0.004671 196.779412;--s:45.98% 0.248 305.03;--a:64.8% 0.223 136.073479;--ac:0% 0 0;--n:24.371% 0.046608 65.681484;--b1:24.7759% 0 0;--in:54.615% 0.215208 262.880917;--su:62.7052% 0.169912 149.213788;--wa:66.584% 0.157422 58.31834;--er:65.72% 0.199 27.33}:root:has(input.theme-controller[value=halloween]:checked){color-scheme:dark;--b2:23.0416% 0 0;--b3:21.3072% 0 0;--bc:84.9552% 0 0;--sc:89.196% 0.0496 305.03;--nc:84.8742% 0.009322 65.681484;--inc:90.923% 0.043042 262.880917;--suc:12.541% 0.033982 149.213788;--wac:13.3168% 0.031484 58.31834;--erc:13.144% 0.0398 27.33;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:77.48% 0.204 60.62;--pc:19.6935% 0.004671 196.779412;--s:45.98% 0.248 305.03;--a:64.8% 0.223 136.073479;--ac:0% 0 0;--n:24.371% 0.046608 65.681484;--b1:24.7759% 0 0;--in:54.615% 0.215208 262.880917;--su:62.7052% 0.169912 149.213788;--wa:66.584% 0.157422 58.31834;--er:65.72% 0.199 27.33}[data-theme=garden]{color-scheme:light;--b2:86.4453% 0.002011 17.197414;--b3:79.9386% 0.00186 17.197414;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--sc:89.699% 0.022197 355.095988;--ac:11.2547% 0.010859 154.390187;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:62.45% 0.278 3.83636;--pc:100% 0 0;--s:48.4952% 0.110985 355.095988;--a:56.2735% 0.054297 154.390187;--n:24.1559% 0.049362 89.070594;--nc:92.9519% 0.002163 17.197414;--b1:92.9519% 0.002163 17.197414;--bc:16.9617% 0.001664 17.32068}:root:has(input.theme-controller[value=garden]:checked){color-scheme:light;--b2:86.4453% 0.002011 17.197414;--b3:79.9386% 0.00186 17.197414;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--sc:89.699% 0.022197 355.095988;--ac:11.2547% 0.010859 154.390187;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:62.45% 0.278 3.83636;--pc:100% 0 0;--s:48.4952% 0.110985 355.095988;--a:56.2735% 0.054297 154.390187;--n:24.1559% 0.049362 89.070594;--nc:92.9519% 0.002163 17.197414;--b1:92.9519% 0.002163 17.197414;--bc:16.9617% 0.001664 17.32068}[data-theme=forest]{color-scheme:dark;--b2:17.522% 0.007709 17.911578;--b3:16.2032% 0.007129 17.911578;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--bc:83.7682% 0.001658 17.911578;--sc:13.9553% 0.027077 168.327128;--ac:14.1257% 0.02389 185.713193;--nc:86.1397% 0.007806 171.364646;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--rounded-box:1rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:68.6283% 0.185567 148.958922;--pc:0% 0 0;--s:69.7764% 0.135385 168.327128;--a:70.6285% 0.119451 185.713193;--n:30.6985% 0.039032 171.364646;--b1:18.8409% 0.00829 17.911578;--rounded-btn:1.9rem}:root:has(input.theme-controller[value=forest]:checked){color-scheme:dark;--b2:17.522% 0.007709 17.911578;--b3:16.2032% 0.007129 17.911578;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--bc:83.7682% 0.001658 17.911578;--sc:13.9553% 0.027077 168.327128;--ac:14.1257% 0.02389 185.713193;--nc:86.1397% 0.007806 171.364646;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--rounded-box:1rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:68.6283% 0.185567 148.958922;--pc:0% 0 0;--s:69.7764% 0.135385 168.327128;--a:70.6285% 0.119451 185.713193;--n:30.6985% 0.039032 171.364646;--b1:18.8409% 0.00829 17.911578;--rounded-btn:1.9rem}[data-theme=aqua]{color-scheme:dark;--b2:45.3464% 0.118611 261.181672;--b3:41.9333% 0.109683 261.181672;--bc:89.7519% 0.025508 261.181672;--sc:12.1365% 0.02175 309.782946;--ac:18.6854% 0.020445 94.555431;--nc:12.2124% 0.023402 243.760661;--inc:90.923% 0.043042 262.880917;--suc:12.541% 0.033982 149.213788;--wac:13.3168% 0.031484 58.31834;--erc:14.79% 0.038 27.33;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:85.6617% 0.14498 198.6458;--pc:40.1249% 0.068266 197.603872;--s:60.6827% 0.108752 309.782946;--a:93.4269% 0.102225 94.555431;--n:61.0622% 0.117009 243.760661;--b1:48.7596% 0.127539 261.181672;--in:54.615% 0.215208 262.880917;--su:62.7052% 0.169912 149.213788;--wa:66.584% 0.157422 58.31834;--er:73.95% 0.19 27.33}:root:has(input.theme-controller[value=aqua]:checked){color-scheme:dark;--b2:45.3464% 0.118611 261.181672;--b3:41.9333% 0.109683 261.181672;--bc:89.7519% 0.025508 261.181672;--sc:12.1365% 0.02175 309.782946;--ac:18.6854% 0.020445 94.555431;--nc:12.2124% 0.023402 243.760661;--inc:90.923% 0.043042 262.880917;--suc:12.541% 0.033982 149.213788;--wac:13.3168% 0.031484 58.31834;--erc:14.79% 0.038 27.33;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:85.6617% 0.14498 198.6458;--pc:40.1249% 0.068266 197.603872;--s:60.6827% 0.108752 309.782946;--a:93.4269% 0.102225 94.555431;--n:61.0622% 0.117009 243.760661;--b1:48.7596% 0.127539 261.181672;--in:54.615% 0.215208 262.880917;--su:62.7052% 0.169912 149.213788;--wa:66.584% 0.157422 58.31834;--er:73.95% 0.19 27.33}[data-theme=lofi]{color-scheme:light;--inc:15.908% 0.0206 205.9;--suc:18.026% 0.0306 164.14;--wac:17.674% 0.027 79.94;--erc:15.732% 0.03 28.47;--border-btn:1px;--tab-border:1px;--p:15.9066% 0 0;--pc:100% 0 0;--s:21.455% 0.001566 17.278957;--sc:100% 0 0;--a:26.8618% 0 0;--ac:100% 0 0;--n:0% 0 0;--nc:100% 0 0;--b1:100% 0 0;--b2:96.1151% 0 0;--b3:92.268% 0.001082 17.17934;--bc:0% 0 0;--in:79.54% 0.103 205.9;--su:90.13% 0.153 164.14;--wa:88.37% 0.135 79.94;--er:78.66% 0.15 28.47;--rounded-box:0.25rem;--rounded-btn:0.125rem;--rounded-badge:0.125rem;--tab-radius:0.125rem;--animation-btn:0;--animation-input:0;--btn-focus-scale:1}:root:has(input.theme-controller[value=lofi]:checked){color-scheme:light;--inc:15.908% 0.0206 205.9;--suc:18.026% 0.0306 164.14;--wac:17.674% 0.027 79.94;--erc:15.732% 0.03 28.47;--border-btn:1px;--tab-border:1px;--p:15.9066% 0 0;--pc:100% 0 0;--s:21.455% 0.001566 17.278957;--sc:100% 0 0;--a:26.8618% 0 0;--ac:100% 0 0;--n:0% 0 0;--nc:100% 0 0;--b1:100% 0 0;--b2:96.1151% 0 0;--b3:92.268% 0.001082 17.17934;--bc:0% 0 0;--in:79.54% 0.103 205.9;--su:90.13% 0.153 164.14;--wa:88.37% 0.135 79.94;--er:78.66% 0.15 28.47;--rounded-box:0.25rem;--rounded-btn:0.125rem;--rounded-badge:0.125rem;--tab-radius:0.125rem;--animation-btn:0;--animation-input:0;--btn-focus-scale:1}[data-theme=pastel]{color-scheme:light;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--bc:20% 0 0;--pc:16.6166% 0.006979 316.8737;--sc:17.6153% 0.009839 8.688364;--ac:17.8419% 0.012056 170.923263;--nc:14.2681% 0.014702 228.183906;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--rounded-box:1rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--p:83.0828% 0.034896 316.8737;--s:88.0763% 0.049197 8.688364;--a:89.2096% 0.06028 170.923263;--n:71.3406% 0.07351 228.183906;--b1:100% 0 0;--b2:98.4625% 0.001706 247.838921;--b3:87.1681% 0.009339 258.338227;--rounded-btn:1.9rem;--tab-radius:0.7rem}:root:has(input.theme-controller[value=pastel]:checked){color-scheme:light;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--bc:20% 0 0;--pc:16.6166% 0.006979 316.8737;--sc:17.6153% 0.009839 8.688364;--ac:17.8419% 0.012056 170.923263;--nc:14.2681% 0.014702 228.183906;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--rounded-box:1rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--p:83.0828% 0.034896 316.8737;--s:88.0763% 0.049197 8.688364;--a:89.2096% 0.06028 170.923263;--n:71.3406% 0.07351 228.183906;--b1:100% 0 0;--b2:98.4625% 0.001706 247.838921;--b3:87.1681% 0.009339 258.338227;--rounded-btn:1.9rem;--tab-radius:0.7rem}[data-theme=fantasy]{color-scheme:light;--b2:93% 0 0;--b3:86% 0 0;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--pc:87.49% 0.0378 325.02;--sc:90.784% 0.0324 241.36;--ac:15.196% 0.0408 56.72;--nc:85.5616% 0.005919 256.847952;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:37.45% 0.189 325.02;--s:53.92% 0.162 241.36;--a:75.98% 0.204 56.72;--n:27.8078% 0.029596 256.847952;--b1:100% 0 0;--bc:27.8078% 0.029596 256.847952}:root:has(input.theme-controller[value=fantasy]:checked){color-scheme:light;--b2:93% 0 0;--b3:86% 0 0;--in:72.06% 0.191 231.6;--su:64.8% 0.150 160;--wa:84.71% 0.199 83.87;--er:71.76% 0.221 22.18;--pc:87.49% 0.0378 325.02;--sc:90.784% 0.0324 241.36;--ac:15.196% 0.0408 56.72;--nc:85.5616% 0.005919 256.847952;--inc:0% 0 0;--suc:0% 0 0;--wac:0% 0 0;--erc:0% 0 0;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:37.45% 0.189 325.02;--s:53.92% 0.162 241.36;--a:75.98% 0.204 56.72;--n:27.8078% 0.029596 256.847952;--b1:100% 0 0;--bc:27.8078% 0.029596 256.847952}[data-theme=wireframe]{color-scheme:light;--bc:20% 0 0;--pc:15.6521% 0 0;--sc:15.6521% 0 0;--ac:15.6521% 0 0;--nc:18.8014% 0 0;--inc:89.0403% 0.062643 264.052021;--suc:90.395% 0.035372 142.495339;--wac:14.1626% 0.019994 108.702381;--erc:12.5591% 0.051537 29.233885;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;font-family:Chalkboard,comic sans ms,'sans-serif';--p:78.2604% 0 0;--s:78.2604% 0 0;--a:78.2604% 0 0;--n:94.007% 0 0;--b1:100% 0 0;--b2:94.9119% 0 0;--b3:89.7547% 0 0;--in:45.2014% 0.313214 264.052021;--su:51.9752% 0.176858 142.495339;--wa:70.8131% 0.099969 108.702381;--er:62.7955% 0.257683 29.233885;--rounded-box:0.2rem;--rounded-btn:0.2rem;--rounded-badge:0.2rem;--tab-radius:0.2rem}:root:has(input.theme-controller[value=wireframe]:checked){color-scheme:light;--bc:20% 0 0;--pc:15.6521% 0 0;--sc:15.6521% 0 0;--ac:15.6521% 0 0;--nc:18.8014% 0 0;--inc:89.0403% 0.062643 264.052021;--suc:90.395% 0.035372 142.495339;--wac:14.1626% 0.019994 108.702381;--erc:12.5591% 0.051537 29.233885;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;font-family:Chalkboard,comic sans ms,'sans-serif';--p:78.2604% 0 0;--s:78.2604% 0 0;--a:78.2604% 0 0;--n:94.007% 0 0;--b1:100% 0 0;--b2:94.9119% 0 0;--b3:89.7547% 0 0;--in:45.2014% 0.313214 264.052021;--su:51.9752% 0.176858 142.495339;--wa:70.8131% 0.099969 108.702381;--er:62.7955% 0.257683 29.233885;--rounded-box:0.2rem;--rounded-btn:0.2rem;--rounded-badge:0.2rem;--tab-radius:0.2rem}[data-theme=black]{color-scheme:dark;--pc:86.736% 0 0;--sc:86.736% 0 0;--ac:86.736% 0 0;--nc:86.736% 0 0;--inc:89.0403% 0.062643 264.052021;--suc:90.395% 0.035372 142.495339;--wac:19.3597% 0.042201 109.769232;--erc:12.5591% 0.051537 29.233885;--border-btn:1px;--tab-border:1px;--p:33.6799% 0 0;--s:33.6799% 0 0;--a:33.6799% 0 0;--b1:0% 0 0;--b2:19.1251% 0 0;--b3:26.8618% 0 0;--bc:87.6096% 0 0;--n:33.6799% 0 0;--in:45.2014% 0.313214 264.052021;--su:51.9752% 0.176858 142.495339;--wa:96.7983% 0.211006 109.769232;--er:62.7955% 0.257683 29.233885;--rounded-box:0;--rounded-btn:0;--rounded-badge:0;--animation-btn:0;--animation-input:0;--btn-focus-scale:1;--tab-radius:0}:root:has(input.theme-controller[value=black]:checked){color-scheme:dark;--pc:86.736% 0 0;--sc:86.736% 0 0;--ac:86.736% 0 0;--nc:86.736% 0 0;--inc:89.0403% 0.062643 264.052021;--suc:90.395% 0.035372 142.495339;--wac:19.3597% 0.042201 109.769232;--erc:12.5591% 0.051537 29.233885;--border-btn:1px;--tab-border:1px;--p:33.6799% 0 0;--s:33.6799% 0 0;--a:33.6799% 0 0;--b1:0% 0 0;--b2:19.1251% 0 0;--b3:26.8618% 0 0;--bc:87.6096% 0 0;--n:33.6799% 0 0;--in:45.2014% 0.313214 264.052021;--su:51.9752% 0.176858 142.495339;--wa:96.7983% 0.211006 109.769232;--er:62.7955% 0.257683 29.233885;--rounded-box:0;--rounded-btn:0;--rounded-badge:0;--animation-btn:0;--animation-input:0;--btn-focus-scale:1;--tab-radius:0}[data-theme=luxury]{color-scheme:dark;--pc:20% 0 0;--sc:85.5163% 0.012821 261.069149;--ac:87.3349% 0.010348 338.82597;--inc:15.8122% 0.024356 237.133883;--suc:15.6239% 0.038579 132.154381;--wac:17.2255% 0.027305 102.89115;--erc:14.3506% 0.035271 22.568916;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:100% 0 0;--s:27.5815% 0.064106 261.069149;--a:36.6744% 0.051741 338.82597;--n:24.27% 0.057015 59.825019;--nc:93.2033% 0.089631 90.861683;--b1:14.0765% 0.004386 285.822869;--b2:20.2191% 0.004211 308.22937;--b3:29.8961% 0.003818 308.318612;--bc:75.6879% 0.123666 76.890484;--in:79.0612% 0.121778 237.133883;--su:78.1197% 0.192894 132.154381;--wa:86.1274% 0.136524 102.89115;--er:71.7531% 0.176357 22.568916}:root:has(input.theme-controller[value=luxury]:checked){color-scheme:dark;--pc:20% 0 0;--sc:85.5163% 0.012821 261.069149;--ac:87.3349% 0.010348 338.82597;--inc:15.8122% 0.024356 237.133883;--suc:15.6239% 0.038579 132.154381;--wac:17.2255% 0.027305 102.89115;--erc:14.3506% 0.035271 22.568916;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:100% 0 0;--s:27.5815% 0.064106 261.069149;--a:36.6744% 0.051741 338.82597;--n:24.27% 0.057015 59.825019;--nc:93.2033% 0.089631 90.861683;--b1:14.0765% 0.004386 285.822869;--b2:20.2191% 0.004211 308.22937;--b3:29.8961% 0.003818 308.318612;--bc:75.6879% 0.123666 76.890484;--in:79.0612% 0.121778 237.133883;--su:78.1197% 0.192894 132.154381;--wa:86.1274% 0.136524 102.89115;--er:71.7531% 0.176357 22.568916}[data-theme=dracula]{color-scheme:dark;--b2:26.8053% 0.020556 277.508664;--b3:24.7877% 0.019009 277.508664;--pc:15.0922% 0.036614 346.812432;--sc:14.8405% 0.029709 301.883095;--ac:16.6785% 0.024826 66.558491;--nc:87.8891% 0.006515 275.524078;--inc:17.6526% 0.018676 212.846491;--suc:17.4199% 0.043903 148.024881;--wac:19.1068% 0.026849 112.757109;--erc:13.6441% 0.041266 24.430965;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:75.4611% 0.18307 346.812432;--s:74.2023% 0.148546 301.883095;--a:83.3927% 0.124132 66.558491;--n:39.4456% 0.032576 275.524078;--b1:28.8229% 0.022103 277.508664;--bc:97.7477% 0.007913 106.545019;--in:88.263% 0.09338 212.846491;--su:87.0995% 0.219516 148.024881;--wa:95.5338% 0.134246 112.757109;--er:68.2204% 0.206328 24.430965}:root:has(input.theme-controller[value=dracula]:checked){color-scheme:dark;--b2:26.8053% 0.020556 277.508664;--b3:24.7877% 0.019009 277.508664;--pc:15.0922% 0.036614 346.812432;--sc:14.8405% 0.029709 301.883095;--ac:16.6785% 0.024826 66.558491;--nc:87.8891% 0.006515 275.524078;--inc:17.6526% 0.018676 212.846491;--suc:17.4199% 0.043903 148.024881;--wac:19.1068% 0.026849 112.757109;--erc:13.6441% 0.041266 24.430965;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:75.4611% 0.18307 346.812432;--s:74.2023% 0.148546 301.883095;--a:83.3927% 0.124132 66.558491;--n:39.4456% 0.032576 275.524078;--b1:28.8229% 0.022103 277.508664;--bc:97.7477% 0.007913 106.545019;--in:88.263% 0.09338 212.846491;--su:87.0995% 0.219516 148.024881;--wa:95.5338% 0.134246 112.757109;--er:68.2204% 0.206328 24.430965}[data-theme=cmyk]{color-scheme:light;--b2:93% 0 0;--b3:86% 0 0;--bc:20% 0 0;--pc:14.3544% 0.02666 239.443325;--sc:12.8953% 0.040552 359.339283;--ac:18.8458% 0.037948 105.306968;--nc:84.3557% 0 0;--inc:13.6952% 0.0189 217.284104;--suc:89.3898% 0.032505 321.406278;--wac:14.2473% 0.031969 52.023412;--erc:12.4027% 0.041677 28.717543;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:71.7722% 0.133298 239.443325;--s:64.4766% 0.202758 359.339283;--a:94.2289% 0.189741 105.306968;--n:21.7787% 0 0;--b1:100% 0 0;--in:68.4759% 0.094499 217.284104;--su:46.949% 0.162524 321.406278;--wa:71.2364% 0.159843 52.023412;--er:62.0133% 0.208385 28.717543}:root:has(input.theme-controller[value=cmyk]:checked){color-scheme:light;--b2:93% 0 0;--b3:86% 0 0;--bc:20% 0 0;--pc:14.3544% 0.02666 239.443325;--sc:12.8953% 0.040552 359.339283;--ac:18.8458% 0.037948 105.306968;--nc:84.3557% 0 0;--inc:13.6952% 0.0189 217.284104;--suc:89.3898% 0.032505 321.406278;--wac:14.2473% 0.031969 52.023412;--erc:12.4027% 0.041677 28.717543;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:71.7722% 0.133298 239.443325;--s:64.4766% 0.202758 359.339283;--a:94.2289% 0.189741 105.306968;--n:21.7787% 0 0;--b1:100% 0 0;--in:68.4759% 0.094499 217.284104;--su:46.949% 0.162524 321.406278;--wa:71.2364% 0.159843 52.023412;--er:62.0133% 0.208385 28.717543}[data-theme=autumn]{color-scheme:light;--b2:89.1077% 0 0;--b3:82.4006% 0 0;--bc:19.1629% 0 0;--pc:88.1446% 0.032232 17.530175;--sc:12.3353% 0.033821 23.865865;--ac:14.6851% 0.018999 60.729616;--nc:90.8734% 0.007475 51.902819;--inc:13.8449% 0.019596 207.284192;--suc:12.199% 0.016032 174.616213;--wac:14.0163% 0.032982 56.844303;--erc:90.614% 0.0482 24.16;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:40.7232% 0.16116 17.530175;--s:61.6763% 0.169105 23.865865;--a:73.4253% 0.094994 60.729616;--n:54.3672% 0.037374 51.902819;--b1:95.8147% 0 0;--in:69.2245% 0.097979 207.284192;--su:60.9951% 0.080159 174.616213;--wa:70.0817% 0.164909 56.844303;--er:53.07% 0.241 24.16}:root:has(input.theme-controller[value=autumn]:checked){color-scheme:light;--b2:89.1077% 0 0;--b3:82.4006% 0 0;--bc:19.1629% 0 0;--pc:88.1446% 0.032232 17.530175;--sc:12.3353% 0.033821 23.865865;--ac:14.6851% 0.018999 60.729616;--nc:90.8734% 0.007475 51.902819;--inc:13.8449% 0.019596 207.284192;--suc:12.199% 0.016032 174.616213;--wac:14.0163% 0.032982 56.844303;--erc:90.614% 0.0482 24.16;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:40.7232% 0.16116 17.530175;--s:61.6763% 0.169105 23.865865;--a:73.4253% 0.094994 60.729616;--n:54.3672% 0.037374 51.902819;--b1:95.8147% 0 0;--in:69.2245% 0.097979 207.284192;--su:60.9951% 0.080159 174.616213;--wa:70.0817% 0.164909 56.844303;--er:53.07% 0.241 24.16}[data-theme=business]{color-scheme:dark;--b2:22.6487% 0 0;--b3:20.944% 0 0;--bc:84.8707% 0 0;--pc:88.3407% 0.019811 251.473931;--sc:12.8185% 0.005481 229.389418;--ac:13.4542% 0.033545 35.791525;--nc:85.4882% 0.00265 253.041249;--inc:12.5233% 0.028702 240.033697;--suc:14.0454% 0.018919 156.59611;--wac:15.4965% 0.023141 81.519177;--erc:90.3221% 0.029356 29.674507;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:41.7036% 0.099057 251.473931;--s:64.0924% 0.027405 229.389418;--a:67.271% 0.167726 35.791525;--n:27.441% 0.01325 253.041249;--b1:24.3535% 0 0;--in:62.6163% 0.143511 240.033697;--su:70.2268% 0.094594 156.59611;--wa:77.4824% 0.115704 81.519177;--er:51.6105% 0.14678 29.674507;--rounded-box:0.25rem;--rounded-btn:.125rem;--rounded-badge:.125rem}:root:has(input.theme-controller[value=business]:checked){color-scheme:dark;--b2:22.6487% 0 0;--b3:20.944% 0 0;--bc:84.8707% 0 0;--pc:88.3407% 0.019811 251.473931;--sc:12.8185% 0.005481 229.389418;--ac:13.4542% 0.033545 35.791525;--nc:85.4882% 0.00265 253.041249;--inc:12.5233% 0.028702 240.033697;--suc:14.0454% 0.018919 156.59611;--wac:15.4965% 0.023141 81.519177;--erc:90.3221% 0.029356 29.674507;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:41.7036% 0.099057 251.473931;--s:64.0924% 0.027405 229.389418;--a:67.271% 0.167726 35.791525;--n:27.441% 0.01325 253.041249;--b1:24.3535% 0 0;--in:62.6163% 0.143511 240.033697;--su:70.2268% 0.094594 156.59611;--wa:77.4824% 0.115704 81.519177;--er:51.6105% 0.14678 29.674507;--rounded-box:0.25rem;--rounded-btn:.125rem;--rounded-badge:.125rem}[data-theme=acid]{color-scheme:light;--b2:91.6146% 0 0;--b3:84.7189% 0 0;--bc:19.7021% 0 0;--pc:14.38% 0.0714 330.759573;--sc:14.674% 0.0448 48.250878;--ac:18.556% 0.0528 122.962951;--nc:84.262% 0.0256 278.68;--inc:12.144% 0.0454 252.05;--suc:17.144% 0.0532 158.53;--wac:18.202% 0.0424 100.5;--erc:12.968% 0.0586 29.349188;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--p:71.9% 0.357 330.759573;--s:73.37% 0.224 48.250878;--a:92.78% 0.264 122.962951;--n:21.31% 0.128 278.68;--b1:98.5104% 0 0;--in:60.72% 0.227 252.05;--su:85.72% 0.266 158.53;--wa:91.01% 0.212 100.5;--er:64.84% 0.293 29.349188;--rounded-box:1.25rem;--rounded-btn:1rem;--rounded-badge:1rem;--tab-radius:0.7rem}:root:has(input.theme-controller[value=acid]:checked){color-scheme:light;--b2:91.6146% 0 0;--b3:84.7189% 0 0;--bc:19.7021% 0 0;--pc:14.38% 0.0714 330.759573;--sc:14.674% 0.0448 48.250878;--ac:18.556% 0.0528 122.962951;--nc:84.262% 0.0256 278.68;--inc:12.144% 0.0454 252.05;--suc:17.144% 0.0532 158.53;--wac:18.202% 0.0424 100.5;--erc:12.968% 0.0586 29.349188;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--p:71.9% 0.357 330.759573;--s:73.37% 0.224 48.250878;--a:92.78% 0.264 122.962951;--n:21.31% 0.128 278.68;--b1:98.5104% 0 0;--in:60.72% 0.227 252.05;--su:85.72% 0.266 158.53;--wa:91.01% 0.212 100.5;--er:64.84% 0.293 29.349188;--rounded-box:1.25rem;--rounded-btn:1rem;--rounded-badge:1rem;--tab-radius:0.7rem}[data-theme=lemonade]{color-scheme:light;--b2:91.8003% 0.0186 123.72;--b3:84.8906% 0.0172 123.72;--bc:19.742% 0.004 123.72;--pc:11.784% 0.0398 134.6;--sc:15.55% 0.0392 111.09;--ac:17.078% 0.0402 100.73;--nc:86.196% 0.015 108.6;--inc:17.238% 0.0094 224.14;--suc:17.238% 0.0094 157.85;--wac:17.238% 0.0094 102.15;--erc:17.238% 0.0094 25.85;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:58.92% 0.199 134.6;--s:77.75% 0.196 111.09;--a:85.39% 0.201 100.73;--n:30.98% 0.075 108.6;--b1:98.71% 0.02 123.72;--in:86.19% 0.047 224.14;--su:86.19% 0.047 157.85;--wa:86.19% 0.047 102.15;--er:86.19% 0.047 25.85}:root:has(input.theme-controller[value=lemonade]:checked){color-scheme:light;--b2:91.8003% 0.0186 123.72;--b3:84.8906% 0.0172 123.72;--bc:19.742% 0.004 123.72;--pc:11.784% 0.0398 134.6;--sc:15.55% 0.0392 111.09;--ac:17.078% 0.0402 100.73;--nc:86.196% 0.015 108.6;--inc:17.238% 0.0094 224.14;--suc:17.238% 0.0094 157.85;--wac:17.238% 0.0094 102.15;--erc:17.238% 0.0094 25.85;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:58.92% 0.199 134.6;--s:77.75% 0.196 111.09;--a:85.39% 0.201 100.73;--n:30.98% 0.075 108.6;--b1:98.71% 0.02 123.72;--in:86.19% 0.047 224.14;--su:86.19% 0.047 157.85;--wa:86.19% 0.047 102.15;--er:86.19% 0.047 25.85}[data-theme=night]{color-scheme:dark;--b2:19.3144% 0.037037 265.754874;--b3:17.8606% 0.034249 265.754874;--bc:84.1536% 0.007965 265.754874;--pc:15.0703% 0.027798 232.66148;--sc:13.6023% 0.031661 276.934902;--ac:14.4721% 0.035244 350.048739;--nc:85.5899% 0.00737 260.030984;--suc:15.6904% 0.026506 181.911977;--wac:16.6486% 0.027912 82.95003;--erc:14.3572% 0.034051 13.11834;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:75.3513% 0.138989 232.66148;--s:68.0113% 0.158303 276.934902;--a:72.3603% 0.176218 350.048739;--n:27.9495% 0.036848 260.030984;--b1:20.7682% 0.039824 265.754874;--in:68.4553% 0.148062 237.25135;--inc:0% 0 0;--su:78.452% 0.132529 181.911977;--wa:83.2428% 0.139558 82.95003;--er:71.7858% 0.170255 13.11834}:root:has(input.theme-controller[value=night]:checked){color-scheme:dark;--b2:19.3144% 0.037037 265.754874;--b3:17.8606% 0.034249 265.754874;--bc:84.1536% 0.007965 265.754874;--pc:15.0703% 0.027798 232.66148;--sc:13.6023% 0.031661 276.934902;--ac:14.4721% 0.035244 350.048739;--nc:85.5899% 0.00737 260.030984;--suc:15.6904% 0.026506 181.911977;--wac:16.6486% 0.027912 82.95003;--erc:14.3572% 0.034051 13.11834;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:75.3513% 0.138989 232.66148;--s:68.0113% 0.158303 276.934902;--a:72.3603% 0.176218 350.048739;--n:27.9495% 0.036848 260.030984;--b1:20.7682% 0.039824 265.754874;--in:68.4553% 0.148062 237.25135;--inc:0% 0 0;--su:78.452% 0.132529 181.911977;--wa:83.2428% 0.139558 82.95003;--er:71.7858% 0.170255 13.11834}[data-theme=coffee]{color-scheme:dark;--b2:20.1585% 0.021457 329.708637;--b3:18.6412% 0.019842 329.708637;--pc:14.3993% 0.024765 62.756393;--sc:86.893% 0.00597 199.19444;--ac:88.5243% 0.014881 224.389184;--nc:83.3022% 0.003149 326.261446;--inc:15.898% 0.012774 184.558367;--suc:14.9445% 0.014491 131.116276;--wac:17.6301% 0.028162 87.722413;--erc:15.4637% 0.025644 31.871922;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:71.9967% 0.123825 62.756393;--s:34.465% 0.029849 199.19444;--a:42.6213% 0.074405 224.389184;--n:16.5109% 0.015743 326.261446;--b1:21.6758% 0.023072 329.708637;--bc:72.3547% 0.092794 79.129387;--in:79.4902% 0.063869 184.558367;--su:74.7224% 0.072456 131.116276;--wa:88.1503% 0.140812 87.722413;--er:77.3187% 0.12822 31.871922}:root:has(input.theme-controller[value=coffee]:checked){color-scheme:dark;--b2:20.1585% 0.021457 329.708637;--b3:18.6412% 0.019842 329.708637;--pc:14.3993% 0.024765 62.756393;--sc:86.893% 0.00597 199.19444;--ac:88.5243% 0.014881 224.389184;--nc:83.3022% 0.003149 326.261446;--inc:15.898% 0.012774 184.558367;--suc:14.9445% 0.014491 131.116276;--wac:17.6301% 0.028162 87.722413;--erc:15.4637% 0.025644 31.871922;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:71.9967% 0.123825 62.756393;--s:34.465% 0.029849 199.19444;--a:42.6213% 0.074405 224.389184;--n:16.5109% 0.015743 326.261446;--b1:21.6758% 0.023072 329.708637;--bc:72.3547% 0.092794 79.129387;--in:79.4902% 0.063869 184.558367;--su:74.7224% 0.072456 131.116276;--wa:88.1503% 0.140812 87.722413;--er:77.3187% 0.12822 31.871922}[data-theme=winter]{color-scheme:light;--pc:91.372% 0.051 257.57;--sc:88.5103% 0.03222 282.339433;--ac:11.988% 0.038303 335.171434;--nc:83.9233% 0.012704 257.651965;--inc:17.6255% 0.017178 214.515264;--suc:16.0988% 0.015404 197.823719;--wac:17.8345% 0.009167 71.47031;--erc:14.6185% 0.022037 20.076293;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:56.86% 0.255 257.57;--s:42.5516% 0.161098 282.339433;--a:59.9398% 0.191515 335.171434;--n:19.6166% 0.063518 257.651965;--b1:100% 0 0;--b2:97.4663% 0.011947 259.822565;--b3:93.2686% 0.016223 262.751375;--bc:41.8869% 0.053885 255.824911;--in:88.1275% 0.085888 214.515264;--su:80.4941% 0.077019 197.823719;--wa:89.1725% 0.045833 71.47031;--er:73.0926% 0.110185 20.076293}:root:has(input.theme-controller[value=winter]:checked){color-scheme:light;--pc:91.372% 0.051 257.57;--sc:88.5103% 0.03222 282.339433;--ac:11.988% 0.038303 335.171434;--nc:83.9233% 0.012704 257.651965;--inc:17.6255% 0.017178 214.515264;--suc:16.0988% 0.015404 197.823719;--wac:17.8345% 0.009167 71.47031;--erc:14.6185% 0.022037 20.076293;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:56.86% 0.255 257.57;--s:42.5516% 0.161098 282.339433;--a:59.9398% 0.191515 335.171434;--n:19.6166% 0.063518 257.651965;--b1:100% 0 0;--b2:97.4663% 0.011947 259.822565;--b3:93.2686% 0.016223 262.751375;--bc:41.8869% 0.053885 255.824911;--in:88.1275% 0.085888 214.515264;--su:80.4941% 0.077019 197.823719;--wa:89.1725% 0.045833 71.47031;--er:73.0926% 0.110185 20.076293}[data-theme=dim]{color-scheme:dark;--pc:17.2267% 0.028331 139.549991;--sc:14.6752% 0.033181 35.353059;--ac:14.8459% 0.026728 311.37924;--inc:17.2157% 0.028409 206.182959;--suc:17.2343% 0.028437 166.534048;--wac:17.2327% 0.028447 94.818679;--erc:16.4838% 0.019914 33.756357;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:86.1335% 0.141656 139.549991;--s:73.3759% 0.165904 35.353059;--a:74.2296% 0.133641 311.37924;--n:24.7311% 0.020483 264.094728;--nc:82.9011% 0.031335 222.959324;--b1:30.8577% 0.023243 264.149498;--b2:28.0368% 0.01983 264.182074;--b3:26.3469% 0.018403 262.177739;--bc:82.9011% 0.031335 222.959324;--in:86.0785% 0.142046 206.182959;--su:86.1717% 0.142187 166.534048;--wa:86.1634% 0.142236 94.818679;--er:82.4189% 0.09957 33.756357}:root:has(input.theme-controller[value=dim]:checked){color-scheme:dark;--pc:17.2267% 0.028331 139.549991;--sc:14.6752% 0.033181 35.353059;--ac:14.8459% 0.026728 311.37924;--inc:17.2157% 0.028409 206.182959;--suc:17.2343% 0.028437 166.534048;--wac:17.2327% 0.028447 94.818679;--erc:16.4838% 0.019914 33.756357;--rounded-box:1rem;--rounded-btn:0.5rem;--rounded-badge:1.9rem;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--tab-radius:0.5rem;--p:86.1335% 0.141656 139.549991;--s:73.3759% 0.165904 35.353059;--a:74.2296% 0.133641 311.37924;--n:24.7311% 0.020483 264.094728;--nc:82.9011% 0.031335 222.959324;--b1:30.8577% 0.023243 264.149498;--b2:28.0368% 0.01983 264.182074;--b3:26.3469% 0.018403 262.177739;--bc:82.9011% 0.031335 222.959324;--in:86.0785% 0.142046 206.182959;--su:86.1717% 0.142187 166.534048;--wa:86.1634% 0.142236 94.818679;--er:82.4189% 0.09957 33.756357}[data-theme=nord]{color-scheme:light;--pc:11.8872% 0.015449 254.027774;--sc:13.9303% 0.011822 248.687186;--ac:15.4929% 0.01245 217.469017;--inc:13.8414% 0.012499 332.664922;--suc:15.3654% 0.01498 131.063061;--wac:17.0972% 0.017847 84.093335;--erc:12.122% 0.024119 15.341883;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--p:59.4359% 0.077246 254.027774;--s:69.6516% 0.059108 248.687186;--a:77.4643% 0.062249 217.469017;--n:45.229% 0.035214 264.1312;--nc:89.9258% 0.016374 262.749256;--b1:95.1276% 0.007445 260.731539;--b2:93.2996% 0.010389 261.788485;--b3:89.9258% 0.016374 262.749256;--bc:32.4374% 0.022945 264.182036;--in:69.2072% 0.062496 332.664922;--su:76.827% 0.074899 131.063061;--wa:85.4862% 0.089234 84.093335;--er:60.61% 0.120594 15.341883;--rounded-box:0.4rem;--rounded-btn:0.2rem;--rounded-badge:0.4rem;--tab-radius:0.2rem}:root:has(input.theme-controller[value=nord]:checked){color-scheme:light;--pc:11.8872% 0.015449 254.027774;--sc:13.9303% 0.011822 248.687186;--ac:15.4929% 0.01245 217.469017;--inc:13.8414% 0.012499 332.664922;--suc:15.3654% 0.01498 131.063061;--wac:17.0972% 0.017847 84.093335;--erc:12.122% 0.024119 15.341883;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--p:59.4359% 0.077246 254.027774;--s:69.6516% 0.059108 248.687186;--a:77.4643% 0.062249 217.469017;--n:45.229% 0.035214 264.1312;--nc:89.9258% 0.016374 262.749256;--b1:95.1276% 0.007445 260.731539;--b2:93.2996% 0.010389 261.788485;--b3:89.9258% 0.016374 262.749256;--bc:32.4374% 0.022945 264.182036;--in:69.2072% 0.062496 332.664922;--su:76.827% 0.074899 131.063061;--wa:85.4862% 0.089234 84.093335;--er:60.61% 0.120594 15.341883;--rounded-box:0.4rem;--rounded-btn:0.2rem;--rounded-badge:0.4rem;--tab-radius:0.2rem}[data-theme=sunset]{color-scheme:dark;--pc:14.9408% 0.031656 39.94703;--sc:14.5075% 0.035531 2.72034;--ac:14.2589% 0.033336 299.844533;--inc:17.1119% 0.017054 206.015183;--suc:17.1122% 0.017172 144.77874;--wac:17.1139% 0.016961 74.427797;--erc:17.1023% 0.015778 16.886379;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--p:74.7039% 0.158278 39.94703;--s:72.5375% 0.177654 2.72034;--a:71.2947% 0.166678 299.844533;--n:26% 0.019 237.69;--nc:70% 0.019 237.69;--b1:22% 0.019 237.69;--b2:20% 0.019 237.69;--b3:18% 0.019 237.69;--bc:77.3835% 0.043586 245.096534;--in:85.5596% 0.085271 206.015183;--su:85.5609% 0.08586 144.77874;--wa:85.5695% 0.084806 74.427797;--er:85.5116% 0.07889 16.886379;--rounded-box:1.2rem;--rounded-btn:0.8rem;--rounded-badge:0.4rem;--tab-radius:0.7rem}:root:has(input.theme-controller[value=sunset]:checked){color-scheme:dark;--pc:14.9408% 0.031656 39.94703;--sc:14.5075% 0.035531 2.72034;--ac:14.2589% 0.033336 299.844533;--inc:17.1119% 0.017054 206.015183;--suc:17.1122% 0.017172 144.77874;--wac:17.1139% 0.016961 74.427797;--erc:17.1023% 0.015778 16.886379;--animation-btn:0.25s;--animation-input:.2s;--btn-focus-scale:0.95;--border-btn:1px;--tab-border:1px;--p:74.7039% 0.158278 39.94703;--s:72.5375% 0.177654 2.72034;--a:71.2947% 0.166678 299.844533;--n:26% 0.019 237.69;--nc:70% 0.019 237.69;--b1:22% 0.019 237.69;--b2:20% 0.019 237.69;--b3:18% 0.019 237.69;--bc:77.3835% 0.043586 245.096534;--in:85.5596% 0.085271 206.015183;--su:85.5609% 0.08586 144.77874;--wa:85.5695% 0.084806 74.427797;--er:85.5116% 0.07889 16.886379;--rounded-box:1.2rem;--rounded-btn:0.8rem;--rounded-badge:0.4rem;--tab-radius:0.7rem}*,::after,::before{box-sizing:border-box;border-width:0;border-style:solid;border-color:currentColor}::after,::before{--tw-content:''}html{line-height:1.5;-webkit-text-size-adjust:100%;tab-size:4;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}:root,[data-theme]{background-color:var(--fallback-b1,oklch(var(--b1)/1));color:var(--fallback-bc,oklch(var(--bc)/1))}@supports not (color:oklch(0% 0 0)){:root{color-scheme:light;--fallback-p:#491eff;--fallback-pc:#d4dbff;--fallback-s:#ff41c7;--fallback-sc:#fff9fc;--fallback-a:#00cfbd;--fallback-ac:#00100d;--fallback-n:#2b3440;--fallback-nc:#d7dde4;--fallback-b1:#ffffff;--fallback-b2:#e5e6e6;--fallback-b3:#e5e6e6;--fallback-bc:#1f2937;--fallback-in:#00b3f0;--fallback-inc:#000000;--fallback-su:#00ca92;--fallback-suc:#000000;--fallback-wa:#ffc22d;--fallback-wac:#000000;--fallback-er:#ff6f70;--fallback-erc:#000000}@media (prefers-color-scheme:dark){:root{color-scheme:dark;--fallback-p:#7582ff;--fallback-pc:#050617;--fallback-s:#ff71cf;--fallback-sc:#190211;--fallback-a:#00c7b5;--fallback-ac:#000e0c;--fallback-n:#2a323c;--fallback-nc:#a6adbb;--fallback-b1:#1d232a;--fallback-b2:#191e24;--fallback-b3:#15191e;--fallback-bc:#a6adbb;--fallback-in:#00b3f0;--fallback-inc:#000000;--fallback-su:#00ca92;--fallback-suc:#000000;--fallback-wa:#ffc22d;--fallback-wac:#000000;--fallback-er:#ff6f70;--fallback-erc:#000000}}}html{-webkit-tap-highlight-color:transparent}*,::after,::before{--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000}::backdrop{--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000}.alert{display:grid;width:100%;grid-auto-flow:row;align-content:flex-start;align-items:center;justify-items:center;gap:1rem;text-align:center;border-radius:var(--rounded-box,1rem);border-width:1px;--tw-border-opacity:1;border-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));padding:1rem;--tw-text-opacity:1;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));--alert-bg:var(--fallback-b2,oklch(var(--b2)/1));--alert-bg-mix:var(--fallback-b1,oklch(var(--b1)/1));background-color:var(--alert-bg)}@media (min-width:640px){.alert{grid-auto-flow:column;grid-template-columns:auto minmax(auto,1fr);justify-items:start;text-align:start}}.artboard{width:100%}.avatar{position:relative;display:inline-flex}.avatar>div{display:block;aspect-ratio:1/1;overflow:hidden}.avatar img{height:100%;width:100%;object-fit:cover}.avatar.placeholder>div{display:flex;align-items:center;justify-content:center}.badge{display:inline-flex;align-items:center;justify-content:center;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0,0,0.2,1);transition-duration:.2s;height:1.25rem;font-size:.875rem;line-height:1.25rem;width:fit-content;padding-left:.563rem;padding-right:.563rem;border-radius:var(--rounded-badge,1.9rem);border-width:1px;--tw-border-opacity:1;border-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)))}.btm-nav{position:fixed;bottom:0;left:0;right:0;display:flex;width:100%;flex-direction:row;align-items:center;justify-content:space-around;padding-bottom:env(safe-area-inset-bottom);height:4rem;--tw-bg-opacity:1;background-color:var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));color:currentColor}.btm-nav>*{position:relative;display:flex;height:100%;flex-basis:100%;cursor:pointer;flex-direction:column;align-items:center;justify-content:center;gap:.25rem;border-color:currentColor}.breadcrumbs{max-width:100%;overflow-x:auto;padding-top:.5rem;padding-bottom:.5rem}.breadcrumbs>ol,.breadcrumbs>ul{display:flex;align-items:center;white-space:nowrap;min-height:min-content}.breadcrumbs>ol>li,.breadcrumbs>ul>li{display:flex;align-items:center}.breadcrumbs>ol>li>a,.breadcrumbs>ul>li>a{display:flex;cursor:pointer;align-items:center}@media (hover:hover){.breadcrumbs>ol>li>a:hover,.breadcrumbs>ul>li>a:hover{text-decoration-line:underline}.link-hover:hover{text-decoration-line:underline}.checkbox-primary:hover{--tw-border-opacity:1;border-color:var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)))}.checkbox-secondary:hover{--tw-border-opacity:1;border-color:var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)))}.checkbox-accent:hover{--tw-border-opacity:1;border-color:var(--fallback-a,oklch(var(--a)/var(--tw-border-opacity)))}.checkbox-success:hover{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.checkbox-warning:hover{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.checkbox-info:hover{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.checkbox-error:hover{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.label a:hover{--tw-text-opacity:1;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)))}.menu li>:not(ul,.menu-title,details,.btn).active,.menu li>:not(ul,.menu-title,details,.btn):active,.menu li>details>summary:active{--tw-bg-opacity:1;background-color:var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)))}.radio-primary:hover{--tw-border-opacity:1;border-color:var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)))}.radio-secondary:hover{--tw-border-opacity:1;border-color:var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)))}.radio-accent:hover{--tw-border-opacity:1;border-color:var(--fallback-a,oklch(var(--a)/var(--tw-border-opacity)))}.radio-success:hover{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.radio-warning:hover{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.radio-info:hover{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.radio-error:hover{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.tab:hover{--tw-text-opacity:1}.tabs-boxed .tab-active:not(.tab-disabled):not([disabled]):hover,.tabs-boxed :is(input:checked):hover{--tw-text-opacity:1;color:var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)))}.table tr.hover:hover,.table tr.hover:nth-child(2n):hover{--tw-bg-opacity:1;background-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)))}.table-zebra tr.hover:hover,.table-zebra tr.hover:nth-child(2n):hover{--tw-bg-opacity:1;background-color:var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)))}}.btn{display:inline-flex;height:3rem;min-height:3rem;flex-shrink:0;cursor:pointer;-webkit-user-select:none;user-select:none;flex-wrap:wrap;align-items:center;justify-content:center;border-radius:var(--rounded-btn,.5rem);border-color:transparent;border-color:oklch(var(--btn-color,var(--b2)) / var(--tw-border-opacity));padding-left:1rem;padding-right:1rem;text-align:center;font-size:.875rem;line-height:1em;gap:.5rem;font-weight:600;text-decoration-line:none;transition-duration:.2s;transition-timing-function:cubic-bezier(0,0,0.2,1);border-width:var(--border-btn,1px);animation:button-pop var(--animation-btn,.25s) ease-out;transition-property:color,background-color,border-color,opacity,box-shadow,transform;--tw-text-opacity:1;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));--tw-shadow:0 1px 2px 0 rgb(0 0 0 / 0.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);outline-color:var(--fallback-bc,oklch(var(--bc)/1));background-color:oklch(var(--btn-color,var(--b2)) / var(--tw-bg-opacity));--tw-bg-opacity:1;--tw-border-opacity:1}.btn-disabled,.btn:disabled,.btn[disabled]{pointer-events:none}.btn-square{height:3rem;width:3rem;padding:0}.btn-circle{height:3rem;width:3rem;border-radius:9999px;padding:0}:where(.btn:is(input[type=checkbox])),:where(.btn:is(input[type=radio])){width:auto;appearance:none}.btn:is(input[type=checkbox]):after,.btn:is(input[type=radio]):after{--tw-content:attr(aria-label);content:var(--tw-content)}.card{position:relative;display:flex;flex-direction:column;border-radius:var(--rounded-box,1rem)}.card:focus{outline:2px solid transparent;outline-offset:2px}.card-body{display:flex;flex:1 1 auto;flex-direction:column;padding:var(--padding-card,2rem);gap:.5rem}.card-body :where(p){flex-grow:1}.card-actions{display:flex;flex-wrap:wrap;align-items:flex-start;gap:.5rem}.card figure{display:flex;align-items:center;justify-content:center}.card.image-full{display:grid}.card.image-full:before{position:relative;content:"";z-index:10;border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));opacity:.75}.card.image-full:before,.card.image-full>*{grid-column-start:1;grid-row-start:1}.card.image-full>figure img{height:100%;object-fit:cover}.card.image-full>.card-body{position:relative;z-index:20;--tw-text-opacity:1;color:var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)))}.carousel{display:inline-flex;overflow-x:scroll;scroll-snap-type:x mandatory;scroll-behavior:smooth;-ms-overflow-style:none;scrollbar-width:none}.carousel-vertical{flex-direction:column;overflow-y:scroll;scroll-snap-type:y mandatory}.carousel-item{box-sizing:content-box;display:flex;flex:none;scroll-snap-align:start}.carousel-start .carousel-item{scroll-snap-align:start}.carousel-center .carousel-item{scroll-snap-align:center}.carousel-end .carousel-item{scroll-snap-align:end}.chat{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));column-gap:.75rem;padding-top:.25rem;padding-bottom:.25rem}.chat-image{grid-row:span 2/span 2;align-self:flex-end}.chat-header{grid-row-start:1;font-size:.875rem;line-height:1.25rem}.chat-footer{grid-row-start:3;font-size:.875rem;line-height:1.25rem}.chat-bubble{position:relative;display:block;width:fit-content;padding-left:1rem;padding-right:1rem;padding-top:.5rem;padding-bottom:.5rem;max-width:90%;border-radius:var(--rounded-box,1rem);min-height:2.75rem;min-width:2.75rem;--tw-bg-opacity:1;background-color:var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)))}.chat-bubble:before{position:absolute;bottom:0;height:.75rem;width:.75rem;background-color:inherit;content:"";-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center}.chat-start{place-items:start;grid-template-columns:auto 1fr}.chat-start .chat-header{grid-column-start:2}.chat-start .chat-footer{grid-column-start:2}.chat-start .chat-image{grid-column-start:1}.chat-start .chat-bubble{grid-column-start:2;border-end-start-radius:0px}.chat-start .chat-bubble:before{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 3 3 L 3 0 C 3 1 1 3 0 3'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 3 3 L 3 0 C 3 1 1 3 0 3'/%3e%3c/svg%3e");inset-inline-start:-0.749rem}[dir=rtl] .chat-start .chat-bubble:before{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 1 3 L 3 3 C 2 3 0 1 0 0'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 1 3 L 3 3 C 2 3 0 1 0 0'/%3e%3c/svg%3e")}.chat-end{place-items:end;grid-template-columns:1fr auto}.chat-end .chat-header{grid-column-start:1}.chat-end .chat-footer{grid-column-start:1}.chat-end .chat-image{grid-column-start:2}.chat-end .chat-bubble{grid-column-start:1;border-end-end-radius:0px}.chat-end .chat-bubble:before{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 1 3 L 3 3 C 2 3 0 1 0 0'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 1 3 L 3 3 C 2 3 0 1 0 0'/%3e%3c/svg%3e");inset-inline-start:99.9%}[dir=rtl] .chat-end .chat-bubble:before{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 3 3 L 3 0 C 3 1 1 3 0 3'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='3' height='3' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m 0 3 L 3 3 L 3 0 C 3 1 1 3 0 3'/%3e%3c/svg%3e")}.checkbox{flex-shrink:0;--chkbg:var(--fallback-bc,oklch(var(--bc)/1));--chkfg:var(--fallback-b1,oklch(var(--b1)/1));height:1.5rem;width:1.5rem;cursor:pointer;appearance:none;border-radius:var(--rounded-btn,.5rem);border-width:1px;border-color:var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));--tw-border-opacity:0.2}.collapse:not(td):not(tr):not(colgroup){visibility:visible}.collapse{position:relative;display:grid;overflow:hidden;grid-template-rows:auto 0fr;transition:grid-template-rows .2s;width:100%;border-radius:var(--rounded-box,1rem)}.collapse-content,.collapse-title,.collapse>input[type=checkbox],.collapse>input[type=radio]{grid-column-start:1;grid-row-start:1}.collapse>input[type=checkbox],.collapse>input[type=radio]{appearance:none;opacity:0}.collapse-content{visibility:hidden;grid-column-start:1;grid-row-start:2;min-height:0;transition:visibility .2s;transition:padding .2s ease-out,background-color .2s ease-out;padding-left:1rem;padding-right:1rem;cursor:unset}.collapse-open,.collapse:focus:not(.collapse-close),.collapse[open]{grid-template-rows:auto 1fr}.collapse:not(.collapse-close):has(> input[type=checkbox]:checked),.collapse:not(.collapse-close):has(> input[type=radio]:checked){grid-template-rows:auto 1fr}.collapse-open>.collapse-content,.collapse:focus:not(.collapse-close)>.collapse-content,.collapse:not(.collapse-close)>input[type=checkbox]:checked~.collapse-content,.collapse:not(.collapse-close)>input[type=radio]:checked~.collapse-content,.collapse[open]>.collapse-content{visibility:visible;min-height:fit-content}:root .countdown{line-height:1em}.countdown{display:inline-flex}.countdown>*{height:1em;display:inline-block;overflow-y:hidden}.countdown>:before{position:relative;content:"00\A 01\A 02\A 03\A 04\A 05\A 06\A 07\A 08\A 09\A 10\A 11\A 12\A 13\A 14\A 15\A 16\A 17\A 18\A 19\A 20\A 21\A 22\A 23\A 24\A 25\A 26\A 27\A 28\A 29\A 30\A 31\A 32\A 33\A 34\A 35\A 36\A 37\A 38\A 39\A 40\A 41\A 42\A 43\A 44\A 45\A 46\A 47\A 48\A 49\A 50\A 51\A 52\A 53\A 54\A 55\A 56\A 57\A 58\A 59\A 60\A 61\A 62\A 63\A 64\A 65\A 66\A 67\A 68\A 69\A 70\A 71\A 72\A 73\A 74\A 75\A 76\A 77\A 78\A 79\A 80\A 81\A 82\A 83\A 84\A 85\A 86\A 87\A 88\A 89\A 90\A 91\A 92\A 93\A 94\A 95\A 96\A 97\A 98\A 99\A";white-space:pre;top:calc(var(--value) * -1em);text-align:center;transition:all 1s cubic-bezier(1, 0, 0, 1)}.diff{position:relative;display:grid;width:100%;overflow:hidden;container-type:inline-size;grid-template-columns:auto 1fr}.diff-resizer{position:relative;top:50%;z-index:1;height:3rem;width:25rem;min-width:1rem;max-width:calc(100cqi - 1rem);resize:horizontal;overflow:hidden;opacity:0;transform-origin:100% 100%;scale:4;translate:1.5rem -1.5rem;clip-path:inset(calc(100% - 0.75rem) 0 0 calc(100% - 0.75rem))}.diff-item-1,.diff-item-2,.diff-resizer{position:relative;grid-column-start:1;grid-row-start:1}.diff-item-1:after{pointer-events:none;position:absolute;bottom:0;right:1px;top:50%;z-index:1;height:2rem;width:2rem;--tw-content:'';content:var(--tw-content);translate:50% -50%;border-radius:9999px;border-width:2px;--tw-border-opacity:1;border-color:var(--fallback-b1,oklch(var(--b1)/var(--tw-border-opacity)));background-color:var(--fallback-b1,oklch(var(--b1)/.5));--tw-shadow:0 1px 2px 0 rgb(0 0 0 / 0.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);outline-style:solid;outline-offset:-3px;outline-color:var(--fallback-bc,oklch(var(--bc)/.05));--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.diff-item-2{overflow:hidden;border-right-width:2px;--tw-border-opacity:1;border-color:var(--fallback-b1,oklch(var(--b1)/var(--tw-border-opacity)))}.diff-item-1>*,.diff-item-2>*{pointer-events:none;position:absolute;bottom:0;left:0;top:0;height:100%;width:100cqi;max-width:none;object-fit:cover;object-position:center}.divider{display:flex;flex-direction:row;align-items:center;align-self:stretch;margin-top:1rem;margin-bottom:1rem;height:1rem;white-space:nowrap}.divider:after,.divider:before{height:.125rem;width:100%;flex-grow:1;--tw-content:'';content:var(--tw-content);background-color:var(--fallback-bc,oklch(var(--bc)/.1))}.divider-start:before{display:none}.divider-end:after{display:none}.drawer{position:relative;display:grid;grid-auto-columns:max-content auto;width:100%}.drawer-content{grid-column-start:2;grid-row-start:1;min-width:0}.drawer-side{pointer-events:none;position:fixed;inset-inline-start:0px;top:0;grid-column-start:1;grid-row-start:1;display:grid;width:100%;grid-template-columns:repeat(1,minmax(0,1fr));grid-template-rows:repeat(1,minmax(0,1fr));align-items:flex-start;justify-items:start;overflow-x:hidden;overflow-y:hidden;overscroll-behavior:contain;height:100vh;height:100dvh}.drawer-side>.drawer-overlay{position:sticky;top:0;place-self:stretch;cursor:pointer;background-color:transparent;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0,0,0.2,1);transition-duration:.2s}.drawer-side>*{grid-column-start:1;grid-row-start:1}.drawer-side>:not(.drawer-overlay){transition-property:transform;transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0,0,0.2,1);transition-duration:.3s;will-change:transform;transform:translateX(-100%)}[dir=rtl] .drawer-side>:not(.drawer-overlay){transform:translateX(100%)}.drawer-toggle{position:fixed;height:0;width:0;appearance:none;opacity:0}.drawer-toggle:checked~.drawer-side{pointer-events:auto;visibility:visible;overflow-y:auto}.drawer-toggle:checked~.drawer-side>:not(.drawer-overlay){transform:translateX(0)}.drawer-end{grid-auto-columns:auto max-content}.drawer-end .drawer-toggle~.drawer-content{grid-column-start:1}.drawer-end .drawer-toggle~.drawer-side{grid-column-start:2;justify-items:end}.drawer-end .drawer-toggle~.drawer-side>:not(.drawer-overlay){transform:translateX(100%)}[dir=rtl] .drawer-end .drawer-toggle~.drawer-side>:not(.drawer-overlay){transform:translateX(-100%)}.drawer-end .drawer-toggle:checked~.drawer-side>:not(.drawer-overlay){transform:translateX(0)}.dropdown{position:relative;display:inline-block}.dropdown>:not(summary):focus{outline:2px solid transparent;outline-offset:2px}.dropdown .dropdown-content{position:absolute}.dropdown:is(:not(details)) .dropdown-content{visibility:hidden;opacity:0;transform-origin:top;--tw-scale-x:.95;--tw-scale-y:.95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0,0,0.2,1);transition-duration:.2s}.dropdown-end .dropdown-content{inset-inline-end:0px}.dropdown-left .dropdown-content{bottom:auto;inset-inline-end:100%;top:0;transform-origin:right}.dropdown-right .dropdown-content{bottom:auto;inset-inline-start:100%;top:0;transform-origin:left}.dropdown-bottom .dropdown-content{bottom:auto;top:100%;transform-origin:top}.dropdown-top .dropdown-content{bottom:100%;top:auto;transform-origin:bottom}.dropdown-end.dropdown-right .dropdown-content{bottom:0;top:auto}.dropdown-end.dropdown-left .dropdown-content{bottom:0;top:auto}.dropdown.dropdown-open .dropdown-content,.dropdown:focus-within .dropdown-content,.dropdown:not(.dropdown-hover):focus .dropdown-content{visibility:visible;opacity:1}@media (hover:hover){.dropdown.dropdown-hover:hover .dropdown-content{visibility:visible;opacity:1}.btm-nav>.disabled:hover,.btm-nav>[disabled]:hover{pointer-events:none;--tw-border-opacity:0;background-color:var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));--tw-bg-opacity:0.1;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));--tw-text-opacity:0.2}.btn:hover{--tw-border-opacity:1;border-color:var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)))}@supports (color:color-mix(in oklab,black,black)){.btn:hover{background-color:color-mix(in oklab,oklch(var(--btn-color,var(--b2)) / var(--tw-bg-opacity,1)) 90%,#000);border-color:color-mix(in oklab,oklch(var(--btn-color,var(--b2)) / var(--tw-border-opacity,1)) 90%,#000)}}@supports not (color:oklch(0% 0 0)){.btn:hover{background-color:var(--btn-color,var(--fallback-b2));border-color:var(--btn-color,var(--fallback-b2))}}.btn.glass:hover{--glass-opacity:25%;--glass-border-opacity:15%}.btn-ghost:hover{border-color:transparent}@supports (color:oklch(0% 0 0)){.btn-ghost:hover{background-color:var(--fallback-bc,oklch(var(--bc)/.2))}}.btn-link:hover{border-color:transparent;background-color:transparent;text-decoration-line:underline}.btn-outline:hover{--tw-border-opacity:1;border-color:var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-b1,oklch(var(--b1)/var(--tw-text-opacity)))}.btn-outline.btn-primary:hover{--tw-text-opacity:1;color:var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.btn-outline.btn-primary:hover{background-color:color-mix(in oklab,var(--fallback-p,oklch(var(--p)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-p,oklch(var(--p)/1)) 90%,#000)}}.btn-outline.btn-secondary:hover{--tw-text-opacity:1;color:var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.btn-outline.btn-secondary:hover{background-color:color-mix(in oklab,var(--fallback-s,oklch(var(--s)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-s,oklch(var(--s)/1)) 90%,#000)}}.btn-outline.btn-accent:hover{--tw-text-opacity:1;color:var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.btn-outline.btn-accent:hover{background-color:color-mix(in oklab,var(--fallback-a,oklch(var(--a)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-a,oklch(var(--a)/1)) 90%,#000)}}.btn-outline.btn-success:hover{--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.btn-outline.btn-success:hover{background-color:color-mix(in oklab,var(--fallback-su,oklch(var(--su)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-su,oklch(var(--su)/1)) 90%,#000)}}.btn-outline.btn-info:hover{--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.btn-outline.btn-info:hover{background-color:color-mix(in oklab,var(--fallback-in,oklch(var(--in)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-in,oklch(var(--in)/1)) 90%,#000)}}.btn-outline.btn-warning:hover{--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.btn-outline.btn-warning:hover{background-color:color-mix(in oklab,var(--fallback-wa,oklch(var(--wa)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-wa,oklch(var(--wa)/1)) 90%,#000)}}.btn-outline.btn-error:hover{--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.btn-outline.btn-error:hover{background-color:color-mix(in oklab,var(--fallback-er,oklch(var(--er)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-er,oklch(var(--er)/1)) 90%,#000)}}.btn-disabled:hover,.btn:disabled:hover,.btn[disabled]:hover{--tw-border-opacity:0;background-color:var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));--tw-bg-opacity:0.2;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));--tw-text-opacity:0.2}@supports (color:color-mix(in oklab,black,black)){.btn:is(input[type=checkbox]:checked):hover,.btn:is(input[type=radio]:checked):hover{background-color:color-mix(in oklab,var(--fallback-p,oklch(var(--p)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-p,oklch(var(--p)/1)) 90%,#000)}}.dropdown.dropdown-hover:hover .dropdown-content{--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}:where(.menu li:not(.menu-title,.disabled) > :not(ul,details,.menu-title)):not(.active,.btn):hover,:where(.menu li:not(.menu-title,.disabled) > details > summary:not(.menu-title)):not(.active,.btn):hover{cursor:pointer;outline:2px solid transparent;outline-offset:2px}@supports (color:oklch(0% 0 0)){:where(.menu li:not(.menu-title,.disabled) > :not(ul,details,.menu-title)):not(.active,.btn):hover,:where(.menu li:not(.menu-title,.disabled) > details > summary:not(.menu-title)):not(.active,.btn):hover{background-color:var(--fallback-bc,oklch(var(--bc)/.1))}}.tab[disabled],.tab[disabled]:hover{cursor:not-allowed;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));--tw-text-opacity:0.2}}.dropdown:is(details) summary::-webkit-details-marker{display:none}.file-input{height:3rem;flex-shrink:1;padding-inline-end:1rem;font-size:1rem;line-height:2;line-height:1.5rem;overflow:hidden;border-radius:var(--rounded-btn,.5rem);border-width:1px;border-color:var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));--tw-border-opacity:0;--tw-bg-opacity:1;background-color:var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)))}.file-input::file-selector-button{margin-inline-end:1rem;display:inline-flex;height:100%;flex-shrink:0;cursor:pointer;-webkit-user-select:none;user-select:none;flex-wrap:wrap;align-items:center;justify-content:center;padding-left:1rem;padding-right:1rem;text-align:center;font-size:.875rem;line-height:1.25rem;line-height:1em;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0,0,0.2,1);transition-duration:.2s;border-style:solid;--tw-border-opacity:1;border-color:var(--fallback-n,oklch(var(--n)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));font-weight:600;text-transform:uppercase;--tw-text-opacity:1;color:var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)));text-decoration-line:none;border-width:var(--border-btn,1px);animation:button-pop var(--animation-btn,.25s) ease-out}.footer{display:grid;width:100%;grid-auto-flow:row;place-items:start;column-gap:1rem;row-gap:2.5rem;font-size:.875rem;line-height:1.25rem}.footer>*{display:grid;place-items:start;gap:.5rem}.footer-center{place-items:center;text-align:center}.footer-center>*{place-items:center}@media (min-width:48rem){.footer{grid-auto-flow:column}.footer-center{grid-auto-flow:row dense}}.form-control{display:flex;flex-direction:column}.label{display:flex;-webkit-user-select:none;user-select:none;align-items:center;justify-content:space-between;padding-left:.25rem;padding-right:.25rem;padding-top:.5rem;padding-bottom:.5rem}.hero{display:grid;width:100%;place-items:center;background-size:cover;background-position:center}.hero>*{grid-column-start:1;grid-row-start:1}.hero-overlay{grid-column-start:1;grid-row-start:1;height:100%;width:100%;background-color:var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));--tw-bg-opacity:0.5}.hero-content{z-index:0;display:flex;align-items:center;justify-content:center;max-width:80rem;gap:1rem;padding:1rem}.indicator{position:relative;display:inline-flex;width:max-content}.indicator :where(.indicator-item){z-index:1;position:absolute;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));white-space:nowrap}.input{flex-shrink:1;appearance:none;height:3rem;padding-left:1rem;padding-right:1rem;font-size:1rem;line-height:2;line-height:1.5rem;border-radius:var(--rounded-btn,.5rem);border-width:1px;border-color:transparent;--tw-bg-opacity:1;background-color:var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)))}.input-md[type=number]::-webkit-inner-spin-button,.input[type=number]::-webkit-inner-spin-button{margin-top:-1rem;margin-bottom:-1rem;margin-inline-end:-1rem}.input-xs[type=number]::-webkit-inner-spin-button{margin-top:-.25rem;margin-bottom:-.25rem;margin-inline-end:0}.input-sm[type=number]::-webkit-inner-spin-button{margin-top:0;margin-bottom:0;margin-inline-end:0}.input-lg[type=number]::-webkit-inner-spin-button{margin-top:-1.5rem;margin-bottom:-1.5rem;margin-inline-end:-1.5rem}.join{display:inline-flex;align-items:stretch;border-radius:var(--rounded-btn,.5rem)}.join :where(.join-item){border-start-end-radius:0;border-end-end-radius:0;border-end-start-radius:0;border-start-start-radius:0}.join .join-item:not(:first-child):not(:last-child),.join :not(:first-child):not(:last-child) .join-item{border-start-end-radius:0;border-end-end-radius:0;border-end-start-radius:0;border-start-start-radius:0}.join .join-item:first-child:not(:last-child),.join :first-child:not(:last-child) .join-item{border-start-end-radius:0;border-end-end-radius:0}.join .dropdown .join-item:first-child:not(:last-child),.join :first-child:not(:last-child) .dropdown .join-item{border-start-end-radius:inherit;border-end-end-radius:inherit}.join :where(.join-item:first-child:not(:last-child)),.join :where(:first-child:not(:last-child) .join-item){border-end-start-radius:inherit;border-start-start-radius:inherit}.join .join-item:last-child:not(:first-child),.join :last-child:not(:first-child) .join-item{border-end-start-radius:0;border-start-start-radius:0}.join :where(.join-item:last-child:not(:first-child)),.join :where(:last-child:not(:first-child) .join-item){border-start-end-radius:inherit;border-end-end-radius:inherit}@supports not selector(:has(*)){:where(.join *){border-radius:inherit}}@supports selector(:has(*)){:where(.join :has(.join-item)){border-radius:inherit}}.kbd{display:inline-flex;align-items:center;justify-content:center;border-radius:var(--rounded-btn,.5rem);border-width:1px;border-color:var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));--tw-border-opacity:0.2;--tw-bg-opacity:1;background-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));padding-left:.5rem;padding-right:.5rem;border-bottom-width:2px;min-height:2.2em;min-width:2.2em}.link{cursor:pointer;text-decoration-line:underline}.link-hover{text-decoration-line:none}.mask{-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center}.mask-half-1{-webkit-mask-size:200%;mask-size:200%;-webkit-mask-position:left;mask-position:left}:is([dir=rtl] .mask-half-1){-webkit-mask-position:right;mask-position:right}.mask-half-2{-webkit-mask-size:200%;mask-size:200%;-webkit-mask-position:right;mask-position:right}:is([dir=rtl] .mask-half-2){-webkit-mask-position:left;mask-position:left}.menu{display:flex;flex-direction:column;flex-wrap:wrap;font-size:.875rem;line-height:1.25rem;padding:.5rem}.menu :where(li ul){position:relative;white-space:nowrap;margin-inline-start:1rem;padding-inline-start:0.5rem}.menu :where(li:not(.menu-title) > :not(ul,details,.menu-title,.btn)),.menu :where(li:not(.menu-title) > details > summary:not(.menu-title)){display:grid;grid-auto-flow:column;align-content:flex-start;align-items:center;gap:.5rem;grid-auto-columns:minmax(auto,max-content) auto max-content;-webkit-user-select:none;user-select:none}.menu li.disabled{cursor:not-allowed;-webkit-user-select:none;user-select:none;color:var(--fallback-bc,oklch(var(--bc)/.3))}.menu :where(li > .menu-dropdown:not(.menu-dropdown-show)){display:none}:where(.menu li){position:relative;display:flex;flex-shrink:0;flex-direction:column;flex-wrap:wrap;align-items:stretch}:where(.menu li) .badge{justify-self:end}.mockup-code{position:relative;overflow:hidden;overflow-x:auto;min-width:18rem;border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));padding-top:1.25rem;padding-bottom:1.25rem;--tw-text-opacity:1;color:var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)));direction:ltr}.mockup-code pre[data-prefix]:before{content:attr(data-prefix);display:inline-block;text-align:right;width:2rem;opacity:.5}.mockup-window{position:relative;overflow:hidden;overflow-x:auto;display:flex;flex-direction:column;border-radius:var(--rounded-box,1rem);padding-top:1.25rem}.mockup-window pre[data-prefix]:before{content:attr(data-prefix);display:inline-block;text-align:right}.mockup-browser{position:relative;overflow:hidden;overflow-x:auto;border-radius:var(--rounded-box,1rem)}.mockup-browser pre[data-prefix]:before{content:attr(data-prefix);display:inline-block;text-align:right}.modal{pointer-events:none;position:fixed;inset:0px;margin:0;display:grid;height:100%;max-height:none;width:100%;max-width:none;justify-items:center;padding:0;opacity:0;overscroll-behavior:contain;z-index:999;background-color:transparent;color:inherit;transition-duration:.2s;transition-timing-function:cubic-bezier(0,0,0.2,1);transition-property:transform,opacity,visibility;overflow-y:hidden}.modal-scroll{overscroll-behavior:auto}:where(.modal){align-items:center}.modal-box{max-height:calc(100vh - 5em);grid-column-start:1;grid-row-start:1;width:91.666667%;max-width:32rem;--tw-scale-x:.9;--tw-scale-y:.9;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-bottom-right-radius:var(--rounded-box,1rem);border-bottom-left-radius:var(--rounded-box,1rem);border-top-left-radius:var(--rounded-box,1rem);border-top-right-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));padding:1.5rem;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0,0,0.2,1);transition-duration:.2s;box-shadow:rgba(0,0,0,.25) 0 25px 50px -12px;overflow-y:auto;overscroll-behavior:contain}.modal-open,.modal-toggle:checked+.modal,.modal:target,.modal[open]{pointer-events:auto;visibility:visible;opacity:1}.modal-action{display:flex;margin-top:1.5rem;justify-content:flex-end}.modal-toggle{position:fixed;height:0;width:0;appearance:none;opacity:0}:root:has(:is(.modal-open,.modal:target,.modal-toggle:checked + .modal,.modal[open])){overflow:hidden;scrollbar-gutter:stable}.navbar{display:flex;align-items:center;padding:var(--navbar-padding,.5rem);min-height:4rem;width:100%}:where(.navbar > :not(script,style)){display:inline-flex;align-items:center}.navbar-start{width:50%;justify-content:flex-start}.navbar-center{flex-shrink:0}.navbar-end{width:50%;justify-content:flex-end}.progress{position:relative;width:100%;appearance:none;overflow:hidden;height:.5rem;border-radius:var(--rounded-box,1rem);background-color:var(--fallback-bc,oklch(var(--bc)/.2))}.radial-progress{position:relative;display:inline-grid;height:var(--size);width:var(--size);place-content:center;border-radius:9999px;background-color:transparent;vertical-align:middle;box-sizing:content-box;--value:0;--size:5rem;--thickness:calc(var(--size) / 10)}.radial-progress::-moz-progress-bar{appearance:none;background-color:transparent}.radial-progress::-webkit-progress-value{appearance:none;background-color:transparent}.radial-progress::-webkit-progress-bar{appearance:none;background-color:transparent}.radial-progress:after,.radial-progress:before{position:absolute;border-radius:9999px;content:""}.radial-progress:before{inset:0px;background:radial-gradient(farthest-side,currentColor 98%,#0000) top/var(--thickness) var(--thickness) no-repeat,conic-gradient(currentColor calc(var(--value) * 1%),#0000 0);-webkit-mask:radial-gradient(farthest-side,#0000 calc(99% - var(--thickness)),#000 calc(100% - var(--thickness)));mask:radial-gradient(farthest-side,#0000 calc(99% - var(--thickness)),#000 calc(100% - var(--thickness)))}.radial-progress:after{inset:calc(50% - var(--thickness)/ 2);transform:rotate(calc(var(--value) * 3.6deg - 90deg)) translate(calc(var(--size)/ 2 - 50%));background-color:currentColor}.radio{flex-shrink:0;--chkbg:var(--bc);height:1.5rem;width:1.5rem;cursor:pointer;appearance:none;border-radius:9999px;border-width:1px;border-color:var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));--tw-border-opacity:0.2}.range{height:1.5rem;width:100%;cursor:pointer;appearance:none;-webkit-appearance:none;--range-shdw:var(--fallback-bc,oklch(var(--bc)/1));overflow:hidden;border-radius:var(--rounded-box,1rem);background-color:transparent}.range:focus{outline:0}.rating{position:relative;display:inline-flex}.rating :where(input){cursor:pointer;border-radius:0;animation:rating-pop var(--animation-input,.25s) ease-out;height:1.5rem;width:1.5rem;background-color:var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));--tw-bg-opacity:1}.select{display:inline-flex;cursor:pointer;-webkit-user-select:none;user-select:none;appearance:none;height:3rem;min-height:3rem;padding-left:1rem;padding-right:2.5rem;font-size:.875rem;line-height:1.25rem;line-height:2;border-radius:var(--rounded-btn,.5rem);border-width:1px;border-color:transparent;--tw-bg-opacity:1;background-color:var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));background-image:linear-gradient(45deg,transparent 50%,currentColor 50%),linear-gradient(135deg,currentColor 50%,transparent 50%);background-position:calc(100% - 20px) calc(1px + 50%),calc(100% - 16.1px) calc(1px + 50%);background-size:4px 4px,4px 4px;background-repeat:no-repeat}.select[multiple]{height:auto}.stack{display:inline-grid;place-items:center;align-items:flex-end}.stack>*{grid-column-start:1;grid-row-start:1;transform:translateY(10%) scale(.9);z-index:1;width:100%;opacity:.6}.stack>:nth-child(2){transform:translateY(5%) scale(.95);z-index:2;opacity:.8}.stack>:first-child{transform:translateY(0) scale(1);z-index:3;opacity:1}.stats{display:inline-grid;border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)))}:where(.stats){grid-auto-flow:column;overflow-x:auto}.stat{display:inline-grid;width:100%;grid-template-columns:repeat(1,1fr);column-gap:1rem;border-color:var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));--tw-border-opacity:0.1;padding-left:1.5rem;padding-right:1.5rem;padding-top:1rem;padding-bottom:1rem}.stat-figure{grid-column-start:2;grid-row:span 3/span 3;grid-row-start:1;place-self:center;justify-self:end}.stat-title{grid-column-start:1;white-space:nowrap;color:var(--fallback-bc,oklch(var(--bc)/.6))}.stat-value{grid-column-start:1;white-space:nowrap;font-size:2.25rem;line-height:2.5rem;font-weight:800}.stat-desc{grid-column-start:1;white-space:nowrap;font-size:.75rem;line-height:1rem;color:var(--fallback-bc,oklch(var(--bc)/.6))}.stat-actions{grid-column-start:1;white-space:nowrap;margin-top:1rem}.steps{display:inline-grid;grid-auto-flow:column;overflow:hidden;overflow-x:auto;counter-reset:step;grid-auto-columns:1fr}.steps .step{display:grid;grid-template-columns:repeat(1,minmax(0,1fr));grid-template-columns:auto;grid-template-rows:repeat(2,minmax(0,1fr));grid-template-rows:40px 1fr;place-items:center;text-align:center;min-width:4rem}.swap{position:relative;display:inline-grid;-webkit-user-select:none;user-select:none;place-content:center;cursor:pointer}.swap>*{grid-column-start:1;grid-row-start:1;transition-duration:.3s;transition-timing-function:cubic-bezier(0,0,0.2,1);transition-property:transform,opacity}.swap input{appearance:none}.swap .swap-indeterminate,.swap .swap-on,.swap input:indeterminate~.swap-on{opacity:0}.swap input:checked~.swap-off,.swap input:indeterminate~.swap-off,.swap-active .swap-off{opacity:0}.swap input:checked~.swap-on,.swap input:indeterminate~.swap-indeterminate,.swap-active .swap-on{opacity:1}.tabs{display:grid;align-items:flex-end}.tabs-lifted:has(.tab-content[class*=" rounded-"]) .tab:first-child:not(.tab-active),.tabs-lifted:has(.tab-content[class^=rounded-]) .tab:first-child:not(.tab-active){border-bottom-color:transparent}.tab{position:relative;grid-row-start:1;display:inline-flex;height:2rem;cursor:pointer;-webkit-user-select:none;user-select:none;appearance:none;flex-wrap:wrap;align-items:center;justify-content:center;text-align:center;font-size:.875rem;line-height:1.25rem;line-height:2;--tab-padding:1rem;--tw-text-opacity:0.5;--tab-color:var(--fallback-bc,oklch(var(--bc)/1));--tab-bg:var(--fallback-b1,oklch(var(--b1)/1));--tab-border-color:var(--fallback-b3,oklch(var(--b3)/1));color:var(--tab-color);padding-inline-start:var(--tab-padding,1rem);padding-inline-end:var(--tab-padding,1rem)}.tab:is(input[type=radio]){width:auto;border-bottom-right-radius:0;border-bottom-left-radius:0}.tab:is(input[type=radio]):after{--tw-content:attr(aria-label);content:var(--tw-content)}.tab:not(input):empty{cursor:default;grid-column-start:span 9999}.tab-content{grid-column-start:1;grid-column-end:span 9999;grid-row-start:2;margin-top:calc(var(--tab-border) * -1);display:none;border-color:transparent;border-width:var(--tab-border,0)}.tab-active+.tab-content:nth-child(2),:checked+.tab-content:nth-child(2){border-start-start-radius:0px}.tab-active+.tab-content,input.tab:checked+.tab-content{display:block}.table{position:relative;width:100%;border-radius:var(--rounded-box,1rem);text-align:left;font-size:.875rem;line-height:1.25rem}.table :where(.table-pin-rows thead tr){position:sticky;top:0;z-index:1;--tw-bg-opacity:1;background-color:var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)))}.table :where(.table-pin-rows tfoot tr){position:sticky;bottom:0;z-index:1;--tw-bg-opacity:1;background-color:var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)))}.table :where(.table-pin-cols tr th){position:sticky;left:0;right:0;--tw-bg-opacity:1;background-color:var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)))}.table-zebra tbody tr:nth-child(2n) :where(.table-pin-cols tr th){--tw-bg-opacity:1;background-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)))}.textarea{min-height:3rem;flex-shrink:1;padding-left:1rem;padding-right:1rem;padding-top:.5rem;padding-bottom:.5rem;font-size:.875rem;line-height:1.25rem;line-height:2;border-radius:var(--rounded-btn,.5rem);border-width:1px;border-color:transparent;--tw-bg-opacity:1;background-color:var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)))}.timeline{position:relative;display:flex}:where(.timeline > li){position:relative;display:grid;flex-shrink:0;align-items:center;grid-template-rows:var(--timeline-row-start,minmax(0,1fr)) auto var(--timeline-row-end,minmax(0,1fr));grid-template-columns:var(--timeline-col-start,minmax(0,1fr)) auto var(--timeline-col-end,minmax(0,1fr))}.timeline>li>hr{width:100%;border-width:0}:where(.timeline > li > hr):first-child{grid-column-start:1;grid-row-start:2}:where(.timeline > li > hr):last-child{grid-column-start:3;grid-column-end:none;grid-row-start:2;grid-row-end:auto}.timeline-start{grid-column-start:1;grid-column-end:4;grid-row-start:1;grid-row-end:2;margin:.25rem;align-self:flex-end;justify-self:center}.timeline-middle{grid-column-start:2;grid-row-start:2}.timeline-end{grid-column-start:1;grid-column-end:4;grid-row-start:3;grid-row-end:4;margin:.25rem;align-self:flex-start;justify-self:center}.toast{position:fixed;display:flex;min-width:fit-content;flex-direction:column;white-space:nowrap;gap:.5rem;padding:1rem}.toggle{flex-shrink:0;--tglbg:var(--fallback-b1,oklch(var(--b1)/1));--handleoffset:1.5rem;--handleoffsetcalculator:calc(var(--handleoffset) * -1);--togglehandleborder:0 0;height:1.5rem;width:3rem;cursor:pointer;appearance:none;border-radius:var(--rounded-badge,1.9rem);border-width:1px;border-color:currentColor;background-color:currentColor;color:var(--fallback-bc,oklch(var(--bc)/.5));transition:background,box-shadow var(--animation-input, .2s) ease-out;box-shadow:var(--handleoffsetcalculator) 0 0 2px var(--tglbg) inset,0 0 0 2px var(--tglbg) inset,var(--togglehandleborder)}.alert-info{border-color:var(--fallback-in,oklch(var(--in)/.2));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));--alert-bg:var(--fallback-in,oklch(var(--in)/1));--alert-bg-mix:var(--fallback-b1,oklch(var(--b1)/1))}.alert-success{border-color:var(--fallback-su,oklch(var(--su)/.2));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));--alert-bg:var(--fallback-su,oklch(var(--su)/1));--alert-bg-mix:var(--fallback-b1,oklch(var(--b1)/1))}.alert-warning{border-color:var(--fallback-wa,oklch(var(--wa)/.2));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));--alert-bg:var(--fallback-wa,oklch(var(--wa)/1));--alert-bg-mix:var(--fallback-b1,oklch(var(--b1)/1))}.alert-error{border-color:var(--fallback-er,oklch(var(--er)/.2));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));--alert-bg:var(--fallback-er,oklch(var(--er)/1));--alert-bg-mix:var(--fallback-b1,oklch(var(--b1)/1))}.avatar-group{display:flex;overflow:hidden}.avatar-group :where(.avatar){overflow:hidden;border-radius:9999px;border-width:4px;--tw-border-opacity:1;border-color:var(--fallback-b1,oklch(var(--b1)/var(--tw-border-opacity)))}.badge-neutral{--tw-border-opacity:1;border-color:var(--fallback-n,oklch(var(--n)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)))}.badge-primary{--tw-border-opacity:1;border-color:var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)))}.badge-secondary{--tw-border-opacity:1;border-color:var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-s,oklch(var(--s)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)))}.badge-accent{--tw-border-opacity:1;border-color:var(--fallback-a,oklch(var(--a)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-a,oklch(var(--a)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)))}.badge-info{border-color:transparent;--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.badge-success{border-color:transparent;--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.badge-warning{border-color:transparent;--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.badge-error{border-color:transparent;--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}.badge-ghost{--tw-border-opacity:1;border-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)))}.badge-outline{border-color:currentColor;--tw-border-opacity:0.5;background-color:transparent;color:currentColor}.badge-outline.badge-neutral{--tw-text-opacity:1;color:var(--fallback-n,oklch(var(--n)/var(--tw-text-opacity)))}.badge-outline.badge-primary{--tw-text-opacity:1;color:var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)))}.badge-outline.badge-secondary{--tw-text-opacity:1;color:var(--fallback-s,oklch(var(--s)/var(--tw-text-opacity)))}.badge-outline.badge-accent{--tw-text-opacity:1;color:var(--fallback-a,oklch(var(--a)/var(--tw-text-opacity)))}.badge-outline.badge-info{--tw-text-opacity:1;color:var(--fallback-in,oklch(var(--in)/var(--tw-text-opacity)))}.badge-outline.badge-success{--tw-text-opacity:1;color:var(--fallback-su,oklch(var(--su)/var(--tw-text-opacity)))}.badge-outline.badge-warning{--tw-text-opacity:1;color:var(--fallback-wa,oklch(var(--wa)/var(--tw-text-opacity)))}.badge-outline.badge-error{--tw-text-opacity:1;color:var(--fallback-er,oklch(var(--er)/var(--tw-text-opacity)))}.btm-nav>:not(.active){padding-top:.125rem}.btm-nav>:where(.active){border-top-width:2px;--tw-bg-opacity:1;background-color:var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)))}.btm-nav>.disabled,.btm-nav>[disabled]{pointer-events:none;--tw-border-opacity:0;background-color:var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));--tw-bg-opacity:0.1;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));--tw-text-opacity:0.2}.btm-nav>* .label{font-size:1rem;line-height:1.5rem}.breadcrumbs>ol>li>a:focus,.breadcrumbs>ul>li>a:focus{outline:2px solid transparent;outline-offset:2px}.breadcrumbs>ol>li>a:focus-visible,.breadcrumbs>ul>li>a:focus-visible{outline:2px solid currentColor;outline-offset:2px}.breadcrumbs>ol>li+:before,.breadcrumbs>ul>li+:before{content:"";margin-left:.5rem;margin-right:.75rem;display:block;height:.375rem;width:.375rem;--tw-rotate:45deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));opacity:.4;border-top:1px solid;border-right:1px solid;background-color:transparent}[dir=rtl] .breadcrumbs>ol>li+:before,[dir=rtl] .breadcrumbs>ul>li+:before{--tw-rotate:-135deg}.btn:active:focus,.btn:active:hover{animation:button-pop 0s ease-out;transform:scale(var(--btn-focus-scale,.97))}@supports not (color:oklch(0% 0 0)){.btn{background-color:var(--btn-color,var(--fallback-b2));border-color:var(--btn-color,var(--fallback-b2))}.btn-primary{--btn-color:var(--fallback-p)}.btn-secondary{--btn-color:var(--fallback-s)}.btn-accent{--btn-color:var(--fallback-a)}.btn-neutral{--btn-color:var(--fallback-n)}.btn-info{--btn-color:var(--fallback-in)}.btn-success{--btn-color:var(--fallback-su)}.btn-warning{--btn-color:var(--fallback-wa)}.btn-error{--btn-color:var(--fallback-er)}.prose :where(code):not(:where([class~=not-prose] *,pre *)){background-color:var(--fallback-b3,oklch(var(--b3)/1))}}@supports (color:color-mix(in oklab,black,black)){.btn-active{background-color:color-mix(in oklab,oklch(var(--btn-color,var(--b3)) / var(--tw-bg-opacity,1)) 90%,#000);border-color:color-mix(in oklab,oklch(var(--btn-color,var(--b3)) / var(--tw-border-opacity,1)) 90%,#000)}.btn-outline.btn-primary.btn-active{background-color:color-mix(in oklab,var(--fallback-p,oklch(var(--p)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-p,oklch(var(--p)/1)) 90%,#000)}.btn-outline.btn-secondary.btn-active{background-color:color-mix(in oklab,var(--fallback-s,oklch(var(--s)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-s,oklch(var(--s)/1)) 90%,#000)}.btn-outline.btn-accent.btn-active{background-color:color-mix(in oklab,var(--fallback-a,oklch(var(--a)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-a,oklch(var(--a)/1)) 90%,#000)}.btn-outline.btn-success.btn-active{background-color:color-mix(in oklab,var(--fallback-su,oklch(var(--su)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-su,oklch(var(--su)/1)) 90%,#000)}.btn-outline.btn-info.btn-active{background-color:color-mix(in oklab,var(--fallback-in,oklch(var(--in)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-in,oklch(var(--in)/1)) 90%,#000)}.btn-outline.btn-warning.btn-active{background-color:color-mix(in oklab,var(--fallback-wa,oklch(var(--wa)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-wa,oklch(var(--wa)/1)) 90%,#000)}.btn-outline.btn-error.btn-active{background-color:color-mix(in oklab,var(--fallback-er,oklch(var(--er)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-er,oklch(var(--er)/1)) 90%,#000)}}.btn:focus-visible{outline-style:solid;outline-width:2px;outline-offset:2px}.btn-primary{--tw-text-opacity:1;color:var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)));outline-color:var(--fallback-p,oklch(var(--p)/1))}@supports (color:oklch(0% 0 0)){.btn-primary{--btn-color:var(--p)}.btn-secondary{--btn-color:var(--s)}.btn-accent{--btn-color:var(--a)}.btn-neutral{--btn-color:var(--n)}.btn-info{--btn-color:var(--in)}.btn-success{--btn-color:var(--su)}.btn-warning{--btn-color:var(--wa)}.btn-error{--btn-color:var(--er)}}.btn-secondary{--tw-text-opacity:1;color:var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)));outline-color:var(--fallback-s,oklch(var(--s)/1))}.btn-accent{--tw-text-opacity:1;color:var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)));outline-color:var(--fallback-a,oklch(var(--a)/1))}.btn-neutral{--tw-text-opacity:1;color:var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)));outline-color:var(--fallback-n,oklch(var(--n)/1))}.btn-info{--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));outline-color:var(--fallback-in,oklch(var(--in)/1))}.btn-success{--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));outline-color:var(--fallback-su,oklch(var(--su)/1))}.btn-warning{--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.btn-error{--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));outline-color:var(--fallback-er,oklch(var(--er)/1))}.btn.glass{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);outline-color:currentColor}.btn.glass.btn-active{--glass-opacity:25%;--glass-border-opacity:15%}.btn-ghost{border-width:1px;border-color:transparent;background-color:transparent;color:currentColor;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);outline-color:currentColor}.btn-ghost.btn-active{border-color:transparent;background-color:var(--fallback-bc,oklch(var(--bc)/.2))}.btn-link{border-color:transparent;background-color:transparent;--tw-text-opacity:1;color:var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)));text-decoration-line:underline;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);outline-color:currentColor}.btn-link.btn-active{border-color:transparent;background-color:transparent;text-decoration-line:underline}.btn-outline{border-color:currentColor;background-color:transparent;--tw-text-opacity:1;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.btn-outline.btn-active{--tw-border-opacity:1;border-color:var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-b1,oklch(var(--b1)/var(--tw-text-opacity)))}.btn-outline.btn-primary{--tw-text-opacity:1;color:var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)))}.btn-outline.btn-primary.btn-active{--tw-text-opacity:1;color:var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)))}.btn-outline.btn-secondary{--tw-text-opacity:1;color:var(--fallback-s,oklch(var(--s)/var(--tw-text-opacity)))}.btn-outline.btn-secondary.btn-active{--tw-text-opacity:1;color:var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)))}.btn-outline.btn-accent{--tw-text-opacity:1;color:var(--fallback-a,oklch(var(--a)/var(--tw-text-opacity)))}.btn-outline.btn-accent.btn-active{--tw-text-opacity:1;color:var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)))}.btn-outline.btn-success{--tw-text-opacity:1;color:var(--fallback-su,oklch(var(--su)/var(--tw-text-opacity)))}.btn-outline.btn-success.btn-active{--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.btn-outline.btn-info{--tw-text-opacity:1;color:var(--fallback-in,oklch(var(--in)/var(--tw-text-opacity)))}.btn-outline.btn-info.btn-active{--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.btn-outline.btn-warning{--tw-text-opacity:1;color:var(--fallback-wa,oklch(var(--wa)/var(--tw-text-opacity)))}.btn-outline.btn-warning.btn-active{--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.btn-outline.btn-error{--tw-text-opacity:1;color:var(--fallback-er,oklch(var(--er)/var(--tw-text-opacity)))}.btn-outline.btn-error.btn-active{--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}.btn.btn-disabled,.btn:disabled,.btn[disabled]{--tw-border-opacity:0;background-color:var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));--tw-bg-opacity:0.2;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));--tw-text-opacity:0.2}.btn:is(input[type=checkbox]:checked),.btn:is(input[type=radio]:checked){--tw-border-opacity:1;border-color:var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)))}.btn:is(input[type=checkbox]:checked):focus-visible,.btn:is(input[type=radio]:checked):focus-visible{outline-color:var(--fallback-p,oklch(var(--p)/1))}@keyframes button-pop{0%{transform:scale(var(--btn-focus-scale,.98))}40%{transform:scale(1.02)}100%{transform:scale(1)}}.card :where(figure:first-child){overflow:hidden;border-start-start-radius:inherit;border-start-end-radius:inherit;border-end-start-radius:unset;border-end-end-radius:unset}.card :where(figure:last-child){overflow:hidden;border-start-start-radius:unset;border-start-end-radius:unset;border-end-start-radius:inherit;border-end-end-radius:inherit}.card:focus-visible{outline:2px solid currentColor;outline-offset:2px}.card.bordered{border-width:1px;--tw-border-opacity:1;border-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)))}.card-bordered{border-width:1px;--tw-border-opacity:1;border-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)))}.card.compact .card-body{padding:1rem;font-size:.875rem;line-height:1.25rem}.card-title{display:flex;align-items:center;gap:.5rem;font-size:1.25rem;line-height:1.75rem;font-weight:600}.card.image-full :where(figure){overflow:hidden;border-radius:inherit}.carousel::-webkit-scrollbar{display:none}.chat-bubble-primary{--tw-bg-opacity:1;background-color:var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)))}.chat-bubble-secondary{--tw-bg-opacity:1;background-color:var(--fallback-s,oklch(var(--s)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)))}.chat-bubble-accent{--tw-bg-opacity:1;background-color:var(--fallback-a,oklch(var(--a)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)))}.chat-bubble-info{--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.chat-bubble-success{--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.chat-bubble-warning{--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.chat-bubble-error{--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}.checkbox:focus{box-shadow:none}.checkbox:focus-visible{outline-style:solid;outline-width:2px;outline-offset:2px;outline-color:var(--fallback-bc,oklch(var(--bc)/1))}.checkbox:disabled{border-width:0;cursor:not-allowed;border-color:transparent;--tw-bg-opacity:1;background-color:var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));opacity:.2}.checkbox:checked,.checkbox[aria-checked=true]{background-repeat:no-repeat;animation:checkmark var(--animation-input,.2s) ease-out;background-color:var(--chkbg);background-image:linear-gradient(-45deg,transparent 65%,var(--chkbg) 65.99%),linear-gradient(45deg,transparent 75%,var(--chkbg) 75.99%),linear-gradient(-45deg,var(--chkbg) 40%,transparent 40.99%),linear-gradient(45deg,var(--chkbg) 30%,var(--chkfg) 30.99%,var(--chkfg) 40%,transparent 40.99%),linear-gradient(-45deg,var(--chkfg) 50%,var(--chkbg) 50.99%)}.checkbox:indeterminate{--tw-bg-opacity:1;background-color:var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));background-repeat:no-repeat;animation:checkmark var(--animation-input,.2s) ease-out;background-image:linear-gradient(90deg,transparent 80%,var(--chkbg) 80%),linear-gradient(-90deg,transparent 80%,var(--chkbg) 80%),linear-gradient(0deg,var(--chkbg) 43%,var(--chkfg) 43%,var(--chkfg) 57%,var(--chkbg) 57%)}.checkbox-primary{--chkbg:var(--fallback-p,oklch(var(--p)/1));--chkfg:var(--fallback-pc,oklch(var(--pc)/1));--tw-border-opacity:1;border-color:var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)))}.checkbox-primary:focus-visible{outline-color:var(--fallback-p,oklch(var(--p)/1))}.checkbox-primary:checked,.checkbox-primary[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)))}.checkbox-secondary{--chkbg:var(--fallback-s,oklch(var(--s)/1));--chkfg:var(--fallback-sc,oklch(var(--sc)/1));--tw-border-opacity:1;border-color:var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)))}.checkbox-secondary:focus-visible{outline-color:var(--fallback-s,oklch(var(--s)/1))}.checkbox-secondary:checked,.checkbox-secondary[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-s,oklch(var(--s)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)))}.checkbox-accent{--chkbg:var(--fallback-a,oklch(var(--a)/1));--chkfg:var(--fallback-ac,oklch(var(--ac)/1));--tw-border-opacity:1;border-color:var(--fallback-a,oklch(var(--a)/var(--tw-border-opacity)))}.checkbox-accent:focus-visible{outline-color:var(--fallback-a,oklch(var(--a)/1))}.checkbox-accent:checked,.checkbox-accent[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-a,oklch(var(--a)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-a,oklch(var(--a)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)))}.checkbox-success{--chkbg:var(--fallback-su,oklch(var(--su)/1));--chkfg:var(--fallback-suc,oklch(var(--suc)/1));--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.checkbox-success:focus-visible{outline-color:var(--fallback-su,oklch(var(--su)/1))}.checkbox-success:checked,.checkbox-success[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.checkbox-warning{--chkbg:var(--fallback-wa,oklch(var(--wa)/1));--chkfg:var(--fallback-wac,oklch(var(--wac)/1));--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.checkbox-warning:focus-visible{outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.checkbox-warning:checked,.checkbox-warning[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.checkbox-info{--chkbg:var(--fallback-in,oklch(var(--in)/1));--chkfg:var(--fallback-inc,oklch(var(--inc)/1));--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.checkbox-info:focus-visible{outline-color:var(--fallback-in,oklch(var(--in)/1))}.checkbox-info:checked,.checkbox-info[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.checkbox-error{--chkbg:var(--fallback-er,oklch(var(--er)/1));--chkfg:var(--fallback-erc,oklch(var(--erc)/1));--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.checkbox-error:focus-visible{outline-color:var(--fallback-er,oklch(var(--er)/1))}.checkbox-error:checked,.checkbox-error[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}@keyframes checkmark{0%{background-position-y:5px}50%{background-position-y:-2px}100%{background-position-y:0}}.checkbox-mark{display:none}details.collapse{width:100%}details.collapse summary{position:relative;display:block;outline:2px solid transparent;outline-offset:2px}details.collapse summary::-webkit-details-marker{display:none}.collapse:focus-visible{outline-style:solid;outline-width:2px;outline-offset:2px;outline-color:var(--fallback-bc,oklch(var(--bc)/1))}.collapse:has(.collapse-title:focus-visible),.collapse:has(> input[type=checkbox]:focus-visible),.collapse:has(> input[type=radio]:focus-visible){outline-style:solid;outline-width:2px;outline-offset:2px;outline-color:var(--fallback-bc,oklch(var(--bc)/1))}.collapse-arrow>.collapse-title:after{position:absolute;display:block;height:.5rem;width:.5rem;--tw-translate-y:-100%;--tw-rotate:45deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transition-property:all;transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0,0,0.2,1);transition-duration:150ms;transition-duration:.2s;top:1.9rem;inset-inline-end:1.4rem;content:"";transform-origin:75% 75%;box-shadow:2px 2px;pointer-events:none}.collapse-plus>.collapse-title:after{position:absolute;display:block;height:.5rem;width:.5rem;transition-property:all;transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0,0,0.2,1);transition-duration:.3s;top:.9rem;inset-inline-end:1.4rem;content:"+";pointer-events:none}.collapse:not(.collapse-open):not(.collapse-close)>.collapse-title,.collapse:not(.collapse-open):not(.collapse-close)>input[type=checkbox],.collapse:not(.collapse-open):not(.collapse-close)>input[type=radio]:not(:checked){cursor:pointer}.collapse:focus:not(.collapse-open):not(.collapse-close):not(.collapse[open])>.collapse-title{cursor:unset}.collapse-title{position:relative}:where(.collapse > input[type=checkbox]),:where(.collapse > input[type=radio]){z-index:1}.collapse-title,:where(.collapse > input[type=checkbox]),:where(.collapse > input[type=radio]){width:100%;padding:1rem;padding-inline-end:3rem;min-height:3.75rem;transition:background-color .2s ease-out}.collapse-open>:where(.collapse-content),.collapse:focus:not(.collapse-close)>:where(.collapse-content),.collapse:not(.collapse-close)>:where(input[type=checkbox]:checked ~ .collapse-content),.collapse:not(.collapse-close)>:where(input[type=radio]:checked ~ .collapse-content),.collapse[open]>:where(.collapse-content){padding-bottom:1rem;transition:padding .2s ease-out,background-color .2s ease-out}.collapse-arrow:focus:not(.collapse-close)>.collapse-title:after,.collapse-arrow:not(.collapse-close)>input[type=checkbox]:checked~.collapse-title:after,.collapse-arrow:not(.collapse-close)>input[type=radio]:checked~.collapse-title:after,.collapse-open.collapse-arrow>.collapse-title:after,.collapse[open].collapse-arrow>.collapse-title:after{--tw-translate-y:-50%;--tw-rotate:225deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.collapse-open.collapse-plus>.collapse-title:after,.collapse-plus:focus:not(.collapse-close)>.collapse-title:after,.collapse-plus:not(.collapse-close)>input[type=checkbox]:checked~.collapse-title:after,.collapse-plus:not(.collapse-close)>input[type=radio]:checked~.collapse-title:after,.collapse[open].collapse-plus>.collapse-title:after{content:"−"}.divider:not(:empty){gap:1rem}.divider-neutral:after,.divider-neutral:before{--tw-bg-opacity:1;background-color:var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)))}.divider-primary:after,.divider-primary:before{--tw-bg-opacity:1;background-color:var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)))}.divider-secondary:after,.divider-secondary:before{--tw-bg-opacity:1;background-color:var(--fallback-s,oklch(var(--s)/var(--tw-bg-opacity)))}.divider-accent:after,.divider-accent:before{--tw-bg-opacity:1;background-color:var(--fallback-a,oklch(var(--a)/var(--tw-bg-opacity)))}.divider-success:after,.divider-success:before{--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)))}.divider-warning:after,.divider-warning:before{--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)))}.divider-info:after,.divider-info:before{--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)))}.divider-error:after,.divider-error:before{--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)))}.drawer-toggle:checked~.drawer-side>.drawer-overlay{background-color:#0006}.drawer-toggle:focus-visible~.drawer-content label.drawer-button{outline-style:solid;outline-width:2px;outline-offset:2px}.dropdown.dropdown-open .dropdown-content,.dropdown:focus .dropdown-content,.dropdown:focus-within .dropdown-content{--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.file-input-bordered{--tw-border-opacity:0.2}.file-input:focus{outline-style:solid;outline-width:2px;outline-offset:2px;outline-color:var(--fallback-bc,oklch(var(--bc)/.2))}.file-input-ghost{--tw-bg-opacity:0.05}.file-input-ghost:focus{--tw-bg-opacity:1;--tw-text-opacity:1;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));box-shadow:none}.file-input-ghost::file-selector-button{border-width:1px;border-color:transparent;background-color:transparent;color:currentColor}.file-input-primary{--tw-border-opacity:1;border-color:var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)))}.file-input-primary:focus{outline-color:var(--fallback-p,oklch(var(--p)/1))}.file-input-primary::file-selector-button{--tw-border-opacity:1;border-color:var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)))}.file-input-secondary{--tw-border-opacity:1;border-color:var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)))}.file-input-secondary:focus{outline-color:var(--fallback-s,oklch(var(--s)/1))}.file-input-secondary::file-selector-button{--tw-border-opacity:1;border-color:var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-s,oklch(var(--s)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)))}.file-input-accent{--tw-border-opacity:1;border-color:var(--fallback-a,oklch(var(--a)/var(--tw-border-opacity)))}.file-input-accent:focus{outline-color:var(--fallback-a,oklch(var(--a)/1))}.file-input-accent::file-selector-button{--tw-border-opacity:1;border-color:var(--fallback-a,oklch(var(--a)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-a,oklch(var(--a)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)))}.file-input-info{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.file-input-info:focus{outline-color:var(--fallback-in,oklch(var(--in)/1))}.file-input-info::file-selector-button{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.file-input-success{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.file-input-success:focus{outline-color:var(--fallback-su,oklch(var(--su)/1))}.file-input-success::file-selector-button{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.file-input-warning{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.file-input-warning:focus{outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.file-input-warning::file-selector-button{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.file-input-error{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.file-input-error:focus{outline-color:var(--fallback-er,oklch(var(--er)/1))}.file-input-error::file-selector-button{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}.file-input-disabled,.file-input[disabled]{cursor:not-allowed;--tw-border-opacity:1;border-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));--tw-text-opacity:0.2}.file-input-disabled::placeholder,.file-input[disabled]::placeholder{color:var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));--tw-placeholder-opacity:0.2}.file-input-disabled::file-selector-button,.file-input[disabled]::file-selector-button{--tw-border-opacity:0;background-color:var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));--tw-bg-opacity:0.2;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));--tw-text-opacity:0.2}.footer-title{margin-bottom:.5rem;font-weight:700;text-transform:uppercase;opacity:.6}.label-text{font-size:.875rem;line-height:1.25rem;--tw-text-opacity:1;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)))}.label-text-alt{font-size:.75rem;line-height:1rem;--tw-text-opacity:1;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)))}.input input{--tw-bg-opacity:1;background-color:var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));background-color:transparent}.input input:focus{outline:2px solid transparent;outline-offset:2px}.input[list]::-webkit-calendar-picker-indicator{line-height:1em}.input-bordered{border-color:var(--fallback-bc,oklch(var(--bc)/.2))}.input:focus,.input:focus-within{box-shadow:none;border-color:var(--fallback-bc,oklch(var(--bc)/.2));outline-style:solid;outline-width:2px;outline-offset:2px;outline-color:var(--fallback-bc,oklch(var(--bc)/.2))}.input-ghost{--tw-bg-opacity:0.05}.input-ghost:focus,.input-ghost:focus-within{--tw-bg-opacity:1;--tw-text-opacity:1;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));box-shadow:none}.input-primary{--tw-border-opacity:1;border-color:var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)))}.input-primary:focus,.input-primary:focus-within{--tw-border-opacity:1;border-color:var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));outline-color:var(--fallback-p,oklch(var(--p)/1))}.input-secondary{--tw-border-opacity:1;border-color:var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)))}.input-secondary:focus,.input-secondary:focus-within{--tw-border-opacity:1;border-color:var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));outline-color:var(--fallback-s,oklch(var(--s)/1))}.input-accent{--tw-border-opacity:1;border-color:var(--fallback-a,oklch(var(--a)/var(--tw-border-opacity)))}.input-accent:focus,.input-accent:focus-within{--tw-border-opacity:1;border-color:var(--fallback-a,oklch(var(--a)/var(--tw-border-opacity)));outline-color:var(--fallback-a,oklch(var(--a)/1))}.input-info{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.input-info:focus,.input-info:focus-within{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)));outline-color:var(--fallback-in,oklch(var(--in)/1))}.input-success{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.input-success:focus,.input-success:focus-within{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)));outline-color:var(--fallback-su,oklch(var(--su)/1))}.input-warning{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.input-warning:focus,.input-warning:focus-within{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)));outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.input-error{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.input-error:focus,.input-error:focus-within{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));outline-color:var(--fallback-er,oklch(var(--er)/1))}.input-disabled,.input:disabled,.input:has(> input[disabled]),.input[disabled]{cursor:not-allowed;--tw-border-opacity:1;border-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));color:var(--fallback-bc,oklch(var(--bc)/.4))}.input-disabled::placeholder,.input:disabled::placeholder,.input:has(> input[disabled])::placeholder,.input[disabled]::placeholder{color:var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));--tw-placeholder-opacity:0.2}.input:has(> input[disabled])>input[disabled]{cursor:not-allowed}.input::-webkit-date-and-time-value{text-align:inherit}.join>:where(:not(:first-child)){margin-top:0;margin-bottom:0;margin-inline-start:-1px}.join-item:focus{isolation:isolate}.link-primary{--tw-text-opacity:1;color:var(--fallback-p,oklch(var(--p)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){@media (hover:hover){.link-primary:hover{color:color-mix(in oklab,var(--fallback-p,oklch(var(--p)/1)) 80%,#000)}.link-secondary:hover{color:color-mix(in oklab,var(--fallback-s,oklch(var(--s)/1)) 80%,#000)}.link-accent:hover{color:color-mix(in oklab,var(--fallback-a,oklch(var(--a)/1)) 80%,#000)}.link-neutral:hover{color:color-mix(in oklab,var(--fallback-n,oklch(var(--n)/1)) 80%,#000)}.link-success:hover{color:color-mix(in oklab,var(--fallback-su,oklch(var(--su)/1)) 80%,#000)}.link-info:hover{color:color-mix(in oklab,var(--fallback-in,oklch(var(--in)/1)) 80%,#000)}.link-warning:hover{color:color-mix(in oklab,var(--fallback-wa,oklch(var(--wa)/1)) 80%,#000)}.link-error:hover{color:color-mix(in oklab,var(--fallback-er,oklch(var(--er)/1)) 80%,#000)}}}.link-secondary{--tw-text-opacity:1;color:var(--fallback-s,oklch(var(--s)/var(--tw-text-opacity)))}.link-accent{--tw-text-opacity:1;color:var(--fallback-a,oklch(var(--a)/var(--tw-text-opacity)))}.link-neutral{--tw-text-opacity:1;color:var(--fallback-n,oklch(var(--n)/var(--tw-text-opacity)))}.link-success{--tw-text-opacity:1;color:var(--fallback-su,oklch(var(--su)/var(--tw-text-opacity)))}.link-info{--tw-text-opacity:1;color:var(--fallback-in,oklch(var(--in)/var(--tw-text-opacity)))}.link-warning{--tw-text-opacity:1;color:var(--fallback-wa,oklch(var(--wa)/var(--tw-text-opacity)))}.link-error{--tw-text-opacity:1;color:var(--fallback-er,oklch(var(--er)/var(--tw-text-opacity)))}.link:focus{outline:2px solid transparent;outline-offset:2px}.link:focus-visible{outline:2px solid currentColor;outline-offset:2px}.loading{pointer-events:none;display:inline-block;aspect-ratio:1/1;width:1.5rem;background-color:currentColor;-webkit-mask-size:100%;mask-size:100%;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center;-webkit-mask-image:url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='%23000' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cstyle%3E.spinner_V8m1%7Btransform-origin:center;animation:spinner_zKoa 2s linear infinite%7D.spinner_V8m1 circle%7Bstroke-linecap:round;animation:spinner_YpZS 1.5s ease-out infinite%7D%40keyframes spinner_zKoa%7B100%25%7Btransform:rotate(360deg)%7D%7D%40keyframes spinner_YpZS%7B0%25%7Bstroke-dasharray:0 150;stroke-dashoffset:0%7D47.5%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-16%7D95%25%2C100%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-59%7D%7D%3C%2Fstyle%3E%3Cg class='spinner_V8m1'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3'%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='%23000' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cstyle%3E.spinner_V8m1%7Btransform-origin:center;animation:spinner_zKoa 2s linear infinite%7D.spinner_V8m1 circle%7Bstroke-linecap:round;animation:spinner_YpZS 1.5s ease-out infinite%7D%40keyframes spinner_zKoa%7B100%25%7Btransform:rotate(360deg)%7D%7D%40keyframes spinner_YpZS%7B0%25%7Bstroke-dasharray:0 150;stroke-dashoffset:0%7D47.5%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-16%7D95%25%2C100%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-59%7D%7D%3C%2Fstyle%3E%3Cg class='spinner_V8m1'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3'%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fsvg%3E")}.loading-spinner{-webkit-mask-image:url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='%23000' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cstyle%3E.spinner_V8m1%7Btransform-origin:center;animation:spinner_zKoa 2s linear infinite%7D.spinner_V8m1 circle%7Bstroke-linecap:round;animation:spinner_YpZS 1.5s ease-out infinite%7D%40keyframes spinner_zKoa%7B100%25%7Btransform:rotate(360deg)%7D%7D%40keyframes spinner_YpZS%7B0%25%7Bstroke-dasharray:0 150;stroke-dashoffset:0%7D47.5%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-16%7D95%25%2C100%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-59%7D%7D%3C%2Fstyle%3E%3Cg class='spinner_V8m1'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3'%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fsvg%3E");mask-image:url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='%23000' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cstyle%3E.spinner_V8m1%7Btransform-origin:center;animation:spinner_zKoa 2s linear infinite%7D.spinner_V8m1 circle%7Bstroke-linecap:round;animation:spinner_YpZS 1.5s ease-out infinite%7D%40keyframes spinner_zKoa%7B100%25%7Btransform:rotate(360deg)%7D%7D%40keyframes spinner_YpZS%7B0%25%7Bstroke-dasharray:0 150;stroke-dashoffset:0%7D47.5%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-16%7D95%25%2C100%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-59%7D%7D%3C%2Fstyle%3E%3Cg class='spinner_V8m1'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3'%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fsvg%3E")}.loading-dots{-webkit-mask-image:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cstyle%3E.spinner_qM83%7Banimation:spinner_8HQG 1.05s infinite%7D.spinner_oXPr%7Banimation-delay:.1s%7D.spinner_ZTLf%7Banimation-delay:.2s%7D@keyframes spinner_8HQG%7B0%25,57.14%25%7Banimation-timing-function:cubic-bezier(0.33,.66,.66,1);transform:translate(0)%7D28.57%25%7Banimation-timing-function:cubic-bezier(0.33,0,.66,.33);transform:translateY(-6px)%7D100%25%7Btransform:translate(0)%7D%7D%3C/style%3E%3Ccircle class='spinner_qM83' cx='4' cy='12' r='3'/%3E%3Ccircle class='spinner_qM83 spinner_oXPr' cx='12' cy='12' r='3'/%3E%3Ccircle class='spinner_qM83 spinner_ZTLf' cx='20' cy='12' r='3'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cstyle%3E.spinner_qM83%7Banimation:spinner_8HQG 1.05s infinite%7D.spinner_oXPr%7Banimation-delay:.1s%7D.spinner_ZTLf%7Banimation-delay:.2s%7D@keyframes spinner_8HQG%7B0%25,57.14%25%7Banimation-timing-function:cubic-bezier(0.33,.66,.66,1);transform:translate(0)%7D28.57%25%7Banimation-timing-function:cubic-bezier(0.33,0,.66,.33);transform:translateY(-6px)%7D100%25%7Btransform:translate(0)%7D%7D%3C/style%3E%3Ccircle class='spinner_qM83' cx='4' cy='12' r='3'/%3E%3Ccircle class='spinner_qM83 spinner_oXPr' cx='12' cy='12' r='3'/%3E%3Ccircle class='spinner_qM83 spinner_ZTLf' cx='20' cy='12' r='3'/%3E%3C/svg%3E")}.loading-ring{-webkit-mask-image:url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' xmlns='http://www.w3.org/2000/svg' stroke='%23fff'%3E%3Cg fill='none' fill-rule='evenodd' stroke-width='2'%3E%3Ccircle cx='22' cy='22' r='1'%3E%3Canimate attributeName='r' begin='0s' dur='1.8s' values='1; 20' calcMode='spline' keyTimes='0; 1' keySplines='0.165, 0.84, 0.44, 1' repeatCount='indefinite' /%3E%3Canimate attributeName='stroke-opacity' begin='0s' dur='1.8s' values='1; 0' calcMode='spline' keyTimes='0; 1' keySplines='0.3, 0.61, 0.355, 1' repeatCount='indefinite' /%3E%3C/circle%3E%3Ccircle cx='22' cy='22' r='1'%3E%3Canimate attributeName='r' begin='-0.9s' dur='1.8s' values='1; 20' calcMode='spline' keyTimes='0; 1' keySplines='0.165, 0.84, 0.44, 1' repeatCount='indefinite' /%3E%3Canimate attributeName='stroke-opacity' begin='-0.9s' dur='1.8s' values='1; 0' calcMode='spline' keyTimes='0; 1' keySplines='0.3, 0.61, 0.355, 1' repeatCount='indefinite' /%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' xmlns='http://www.w3.org/2000/svg' stroke='%23fff'%3E%3Cg fill='none' fill-rule='evenodd' stroke-width='2'%3E%3Ccircle cx='22' cy='22' r='1'%3E%3Canimate attributeName='r' begin='0s' dur='1.8s' values='1; 20' calcMode='spline' keyTimes='0; 1' keySplines='0.165, 0.84, 0.44, 1' repeatCount='indefinite' /%3E%3Canimate attributeName='stroke-opacity' begin='0s' dur='1.8s' values='1; 0' calcMode='spline' keyTimes='0; 1' keySplines='0.3, 0.61, 0.355, 1' repeatCount='indefinite' /%3E%3C/circle%3E%3Ccircle cx='22' cy='22' r='1'%3E%3Canimate attributeName='r' begin='-0.9s' dur='1.8s' values='1; 20' calcMode='spline' keyTimes='0; 1' keySplines='0.165, 0.84, 0.44, 1' repeatCount='indefinite' /%3E%3Canimate attributeName='stroke-opacity' begin='-0.9s' dur='1.8s' values='1; 0' calcMode='spline' keyTimes='0; 1' keySplines='0.3, 0.61, 0.355, 1' repeatCount='indefinite' /%3E%3C/circle%3E%3C/g%3E%3C/svg%3E")}.loading-ball{-webkit-mask-image:url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cstyle%3E.spinner_rXNP%7Banimation:spinner_YeBj .8s infinite%7D@keyframes spinner_YeBj%7B0%25%7Banimation-timing-function:cubic-bezier(0.33,0,.66,.33);cy:5px%7D46.875%25%7Bcy:20px;rx:4px;ry:4px%7D50%25%7Banimation-timing-function:cubic-bezier(0.33,.66,.66,1);cy:20.5px;rx:4.8px;ry:3px%7D53.125%25%7Brx:4px;ry:4px%7D100%25%7Bcy:5px%7D%7D%3C/style%3E%3Cellipse class='spinner_rXNP' cx='12' cy='5' rx='4' ry='4'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cstyle%3E.spinner_rXNP%7Banimation:spinner_YeBj .8s infinite%7D@keyframes spinner_YeBj%7B0%25%7Banimation-timing-function:cubic-bezier(0.33,0,.66,.33);cy:5px%7D46.875%25%7Bcy:20px;rx:4px;ry:4px%7D50%25%7Banimation-timing-function:cubic-bezier(0.33,.66,.66,1);cy:20.5px;rx:4.8px;ry:3px%7D53.125%25%7Brx:4px;ry:4px%7D100%25%7Bcy:5px%7D%7D%3C/style%3E%3Cellipse class='spinner_rXNP' cx='12' cy='5' rx='4' ry='4'/%3E%3C/svg%3E")}.loading-bars{-webkit-mask-image:url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cstyle%3E.spinner_hzlK%7Banimation:spinner_vc4H .8s linear infinite;animation-delay:-.8s%7D.spinner_koGT%7Banimation-delay:-.65s%7D.spinner_YF1u%7Banimation-delay:-.5s%7D@keyframes spinner_vc4H%7B0%25%7By:1px;height:22px%7D93.75%25%7By:5px;height:14px;opacity:.2%7D%7D%3C/style%3E%3Crect class='spinner_hzlK' x='1' y='1' width='6' height='22'/%3E%3Crect class='spinner_hzlK spinner_koGT' x='9' y='1' width='6' height='22'/%3E%3Crect class='spinner_hzlK spinner_YF1u' x='17' y='1' width='6' height='22'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cstyle%3E.spinner_hzlK%7Banimation:spinner_vc4H .8s linear infinite;animation-delay:-.8s%7D.spinner_koGT%7Banimation-delay:-.65s%7D.spinner_YF1u%7Banimation-delay:-.5s%7D@keyframes spinner_vc4H%7B0%25%7By:1px;height:22px%7D93.75%25%7By:5px;height:14px;opacity:.2%7D%7D%3C/style%3E%3Crect class='spinner_hzlK' x='1' y='1' width='6' height='22'/%3E%3Crect class='spinner_hzlK spinner_koGT' x='9' y='1' width='6' height='22'/%3E%3Crect class='spinner_hzlK spinner_YF1u' x='17' y='1' width='6' height='22'/%3E%3C/svg%3E")}.loading-infinity{-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='shape-rendering: auto;' width='200px' height='200px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Cpath fill='none' stroke='%230a0a0a' stroke-width='10' stroke-dasharray='205.271142578125 51.317785644531256' d='M24.3 30C11.4 30 5 43.3 5 50s6.4 20 19.3 20c19.3 0 32.1-40 51.4-40 C88.6 30 95 43.3 95 50s-6.4 20-19.3 20C56.4 70 43.6 30 24.3 30z' stroke-linecap='round' style='transform:scale(0.8);transform-origin:50px 50px'%3E%3Canimate attributeName='stroke-dashoffset' repeatCount='indefinite' dur='2s' keyTimes='0;1' values='0;256.58892822265625'%3E%3C/animate%3E%3C/path%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='shape-rendering: auto;' width='200px' height='200px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Cpath fill='none' stroke='%230a0a0a' stroke-width='10' stroke-dasharray='205.271142578125 51.317785644531256' d='M24.3 30C11.4 30 5 43.3 5 50s6.4 20 19.3 20c19.3 0 32.1-40 51.4-40 C88.6 30 95 43.3 95 50s-6.4 20-19.3 20C56.4 70 43.6 30 24.3 30z' stroke-linecap='round' style='transform:scale(0.8);transform-origin:50px 50px'%3E%3Canimate attributeName='stroke-dashoffset' repeatCount='indefinite' dur='2s' keyTimes='0;1' values='0;256.58892822265625'%3E%3C/animate%3E%3C/path%3E%3C/svg%3E")}.loading-xs{width:1rem}.loading-sm{width:1.25rem}.loading-md{width:1.5rem}.loading-lg{width:2.5rem}.mask-squircle{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M100 0C20 0 0 20 0 100s20 100 100 100 100-20 100-100S180 0 100 0Z'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M100 0C20 0 0 20 0 100s20 100 100 100 100-20 100-100S180 0 100 0Z'/%3e%3c/svg%3e")}.mask-decagon{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='192' height='200' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m96 0 58.779 19.098 36.327 50v61.804l-36.327 50L96 200l-58.779-19.098-36.327-50V69.098l36.327-50z' fill-rule='evenodd'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='192' height='200' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m96 0 58.779 19.098 36.327 50v61.804l-36.327 50L96 200l-58.779-19.098-36.327-50V69.098l36.327-50z' fill-rule='evenodd'/%3e%3c/svg%3e")}.mask-diamond{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m100 0 100 100-100 100L0 100z' fill-rule='evenodd'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m100 0 100 100-100 100L0 100z' fill-rule='evenodd'/%3e%3c/svg%3e")}.mask-heart{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='200' height='185' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M100 184.606a15.384 15.384 0 0 1-8.653-2.678C53.565 156.28 37.205 138.695 28.182 127.7 8.952 104.264-.254 80.202.005 54.146.308 24.287 24.264 0 53.406 0c21.192 0 35.869 11.937 44.416 21.879a2.884 2.884 0 0 0 4.356 0C110.725 11.927 125.402 0 146.594 0c29.142 0 53.098 24.287 53.4 54.151.26 26.061-8.956 50.122-28.176 73.554-9.023 10.994-25.383 28.58-63.165 54.228a15.384 15.384 0 0 1-8.653 2.673Z' fill='black' fill-rule='nonzero'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='200' height='185' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M100 184.606a15.384 15.384 0 0 1-8.653-2.678C53.565 156.28 37.205 138.695 28.182 127.7 8.952 104.264-.254 80.202.005 54.146.308 24.287 24.264 0 53.406 0c21.192 0 35.869 11.937 44.416 21.879a2.884 2.884 0 0 0 4.356 0C110.725 11.927 125.402 0 146.594 0c29.142 0 53.098 24.287 53.4 54.151.26 26.061-8.956 50.122-28.176 73.554-9.023 10.994-25.383 28.58-63.165 54.228a15.384 15.384 0 0 1-8.653 2.673Z' fill='black' fill-rule='nonzero'/%3e%3c/svg%3e")}.mask-hexagon{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='182' height='201' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M.3 65.486c0-9.196 6.687-20.063 14.211-25.078l61.86-35.946c8.36-5.016 20.899-5.016 29.258 0l61.86 35.946c8.36 5.015 14.211 15.882 14.211 25.078v71.055c0 9.196-6.687 20.063-14.211 25.079l-61.86 35.945c-8.36 4.18-20.899 4.18-29.258 0L14.51 161.62C6.151 157.44.3 145.737.3 136.54V65.486Z' fill='black' fill-rule='nonzero'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='182' height='201' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M.3 65.486c0-9.196 6.687-20.063 14.211-25.078l61.86-35.946c8.36-5.016 20.899-5.016 29.258 0l61.86 35.946c8.36 5.015 14.211 15.882 14.211 25.078v71.055c0 9.196-6.687 20.063-14.211 25.079l-61.86 35.945c-8.36 4.18-20.899 4.18-29.258 0L14.51 161.62C6.151 157.44.3 145.737.3 136.54V65.486Z' fill='black' fill-rule='nonzero'/%3e%3c/svg%3e")}.mask-hexagon-2{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='200' height='182' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M64.786 181.4c-9.196 0-20.063-6.687-25.079-14.21L3.762 105.33c-5.016-8.36-5.016-20.9 0-29.259l35.945-61.86C44.723 5.851 55.59 0 64.786 0h71.055c9.196 0 20.063 6.688 25.079 14.211l35.945 61.86c4.18 8.36 4.18 20.899 0 29.258l-35.945 61.86c-4.18 8.36-15.883 14.211-25.079 14.211H64.786Z' fill='black' fill-rule='nonzero'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='200' height='182' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M64.786 181.4c-9.196 0-20.063-6.687-25.079-14.21L3.762 105.33c-5.016-8.36-5.016-20.9 0-29.259l35.945-61.86C44.723 5.851 55.59 0 64.786 0h71.055c9.196 0 20.063 6.688 25.079 14.211l35.945 61.86c4.18 8.36 4.18 20.899 0 29.258l-35.945 61.86c-4.18 8.36-15.883 14.211-25.079 14.211H64.786Z' fill='black' fill-rule='nonzero'/%3e%3c/svg%3e")}.mask-circle{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle fill='black' cx='100' cy='100' r='100' fill-rule='evenodd'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle fill='black' cx='100' cy='100' r='100' fill-rule='evenodd'/%3e%3c/svg%3e")}.mask-parallelogram{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='200' height='154' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='M46.154 0H200l-46.154 153.846H0z' fill-rule='evenodd'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='200' height='154' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='M46.154 0H200l-46.154 153.846H0z' fill-rule='evenodd'/%3e%3c/svg%3e")}.mask-parallelogram-2{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='200' height='154' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='M153.846 0H0l46.154 153.846H200z' fill-rule='evenodd'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='200' height='154' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='M153.846 0H0l46.154 153.846H200z' fill-rule='evenodd'/%3e%3c/svg%3e")}.mask-parallelogram-3{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='154' height='201' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='M.077 47.077v153.846l153.846-46.154V.923z' fill-rule='evenodd'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='154' height='201' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='M.077 47.077v153.846l153.846-46.154V.923z' fill-rule='evenodd'/%3e%3c/svg%3e")}.mask-parallelogram-4{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='154' height='201' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='M153.923 47.077v153.846L.077 154.77V.923z' fill-rule='evenodd'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='154' height='201' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='M153.923 47.077v153.846L.077 154.77V.923z' fill-rule='evenodd'/%3e%3c/svg%3e")}.mask-pentagon{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='192' height='181' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m96 0 95.106 69.098-36.327 111.804H37.22L.894 69.098z' fill-rule='evenodd'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='192' height='181' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m96 0 95.106 69.098-36.327 111.804H37.22L.894 69.098z' fill-rule='evenodd'/%3e%3c/svg%3e")}.mask-square{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='M0 0h200v200H0z' fill-rule='evenodd'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='M0 0h200v200H0z' fill-rule='evenodd'/%3e%3c/svg%3e")}.mask-star{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='192' height='180' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m96 137.263-58.779 42.024 22.163-68.389L.894 68.481l72.476-.243L96 0l22.63 68.238 72.476.243-58.49 42.417 22.163 68.389z' fill-rule='evenodd'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='192' height='180' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m96 137.263-58.779 42.024 22.163-68.389L.894 68.481l72.476-.243L96 0l22.63 68.238 72.476.243-58.49 42.417 22.163 68.389z' fill-rule='evenodd'/%3e%3c/svg%3e")}.mask-star-2{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='192' height='180' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m96 153.044-58.779 26.243 7.02-63.513L.894 68.481l63.117-13.01L96 0l31.989 55.472 63.117 13.01-43.347 47.292 7.02 63.513z' fill-rule='evenodd'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='192' height='180' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m96 153.044-58.779 26.243 7.02-63.513L.894 68.481l63.117-13.01L96 0l31.989 55.472 63.117 13.01-43.347 47.292 7.02 63.513z' fill-rule='evenodd'/%3e%3c/svg%3e")}.mask-triangle{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='174' height='149' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m87 148.476-86.603.185L43.86 74.423 87 0l43.14 74.423 43.463 74.238z' fill-rule='evenodd'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='174' height='149' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m87 148.476-86.603.185L43.86 74.423 87 0l43.14 74.423 43.463 74.238z' fill-rule='evenodd'/%3e%3c/svg%3e")}.mask-triangle-2{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='174' height='150' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m87 .738 86.603-.184-43.463 74.238L87 149.214 43.86 74.792.397.554z' fill-rule='evenodd'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='174' height='150' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m87 .738 86.603-.184-43.463 74.238L87 149.214 43.86 74.792.397.554z' fill-rule='evenodd'/%3e%3c/svg%3e")}.mask-triangle-3{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='150' height='174' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m149.369 87.107.185 86.603-74.239-43.463L.893 87.107l74.422-43.14L149.554.505z' fill-rule='evenodd'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='150' height='174' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='m149.369 87.107.185 86.603-74.239-43.463L.893 87.107l74.422-43.14L149.554.505z' fill-rule='evenodd'/%3e%3c/svg%3e")}.mask-triangle-4{-webkit-mask-image:url("data:image/svg+xml,%3csvg width='150' height='174' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='M.631 87.107.446.505l74.239 43.462 74.422 43.14-74.422 43.14L.446 173.71z' fill-rule='evenodd'/%3e%3c/svg%3e");mask-image:url("data:image/svg+xml,%3csvg width='150' height='174' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='M.631 87.107.446.505l74.239 43.462 74.422 43.14-74.422 43.14L.446 173.71z' fill-rule='evenodd'/%3e%3c/svg%3e")}:where(.menu li:empty){--tw-bg-opacity:1;background-color:var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));opacity:.1;margin:.5rem 1rem;height:1px}.menu :where(li ul):before{position:absolute;bottom:.75rem;inset-inline-start:0px;top:.75rem;width:1px;--tw-bg-opacity:1;background-color:var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));opacity:.1;content:""}.menu :where(li:not(.menu-title) > :not(ul,details,.menu-title,.btn)),.menu :where(li:not(.menu-title) > details > summary:not(.menu-title)){border-radius:var(--rounded-btn,.5rem);padding-left:1rem;padding-right:1rem;padding-top:.5rem;padding-bottom:.5rem;text-align:start;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0,0,0.2,1);transition-duration:.2s;text-wrap:balance}:where(.menu li:not(.menu-title,.disabled) > :not(ul,details,.menu-title)):is(summary):not(.active,.btn):focus-visible,:where(.menu li:not(.menu-title,.disabled) > :not(ul,details,.menu-title)):not(summary,.active,.btn).focus,:where(.menu li:not(.menu-title,.disabled) > :not(ul,details,.menu-title)):not(summary,.active,.btn):focus,:where(.menu li:not(.menu-title,.disabled) > details > summary:not(.menu-title)):is(summary):not(.active,.btn):focus-visible,:where(.menu li:not(.menu-title,.disabled) > details > summary:not(.menu-title)):not(summary,.active,.btn).focus,:where(.menu li:not(.menu-title,.disabled) > details > summary:not(.menu-title)):not(summary,.active,.btn):focus{cursor:pointer;background-color:var(--fallback-bc,oklch(var(--bc)/.1));--tw-text-opacity:1;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));outline:2px solid transparent;outline-offset:2px}.menu li>:not(ul,.menu-title,details,.btn).active,.menu li>:not(ul,.menu-title,details,.btn):active,.menu li>details>summary:active{--tw-bg-opacity:1;background-color:var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)))}.menu :where(li > details > summary)::-webkit-details-marker{display:none}.menu :where(li > .menu-dropdown-toggle):after,.menu :where(li > details > summary):after{justify-self:end;display:block;margin-top:-.5rem;height:.5rem;width:.5rem;transform:rotate(45deg);transition-property:transform,margin-top;transition-duration:.3s;transition-timing-function:cubic-bezier(0.4,0,0.2,1);content:"";transform-origin:75% 75%;box-shadow:2px 2px;pointer-events:none}.menu :where(li > .menu-dropdown-toggle.menu-dropdown-show):after,.menu :where(li > details[open] > summary):after{transform:rotate(225deg);margin-top:0}.menu-title{padding-left:1rem;padding-right:1rem;padding-top:.5rem;padding-bottom:.5rem;font-size:.875rem;line-height:1.25rem;font-weight:700;color:var(--fallback-bc,oklch(var(--bc)/.4))}.mockup-code:before{content:"";margin-bottom:1rem;display:block;height:.75rem;width:.75rem;border-radius:9999px;opacity:.3;box-shadow:1.4em 0,2.8em 0,4.2em 0}.mockup-code pre{padding-right:1.25rem}.mockup-code pre:before{content:"";margin-right:2ch}.mockup-window:before{content:"";margin-bottom:1rem;display:block;aspect-ratio:1/1;height:.75rem;flex-shrink:0;align-self:flex-start;border-radius:9999px;opacity:.3;box-shadow:1.4em 0,2.8em 0,4.2em 0}:is([dir=rtl] .mockup-window):before{align-self:flex-end}.mockup-phone{display:inline-block;border:4px solid #444;border-radius:50px;background-color:#000;padding:10px;margin:0 auto;overflow:hidden}.mockup-phone .camera{position:relative;top:0;left:0;background:#000;height:25px;width:150px;margin:0 auto;border-bottom-left-radius:17px;border-bottom-right-radius:17px;z-index:11}.mockup-phone .camera:before{content:"";position:absolute;top:35%;left:50%;width:50px;height:4px;border-radius:5px;background-color:#0c0b0e;transform:translate(-50%,-50%)}.mockup-phone .camera:after{content:"";position:absolute;top:20%;left:70%;width:8px;height:8px;border-radius:5px;background-color:#0f0b25}.mockup-phone .display{overflow:hidden;border-radius:40px;margin-top:-25px}.mockup-browser .mockup-browser-toolbar{margin-top:.75rem;margin-bottom:.75rem;display:inline-flex;width:100%;align-items:center;padding-right:1.4em}:is([dir=rtl] .mockup-browser .mockup-browser-toolbar){flex-direction:row-reverse}.mockup-browser .mockup-browser-toolbar:before{content:"";margin-right:4.8rem;display:inline-block;aspect-ratio:1/1;height:.75rem;border-radius:9999px;opacity:.3;box-shadow:1.4em 0,2.8em 0,4.2em 0}.mockup-browser .mockup-browser-toolbar .input{position:relative;margin-left:auto;margin-right:auto;display:block;height:1.75rem;width:24rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;--tw-bg-opacity:1;background-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));padding-left:2rem;direction:ltr}.mockup-browser .mockup-browser-toolbar .input:before{content:"";position:absolute;left:.5rem;top:50%;aspect-ratio:1/1;height:.75rem;--tw-translate-y:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-radius:9999px;border-width:2px;border-color:currentColor;opacity:.6}.mockup-browser .mockup-browser-toolbar .input:after{content:"";position:absolute;left:1.25rem;top:50%;height:.5rem;--tw-translate-y:25%;--tw-rotate:-45deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-radius:9999px;border-width:1px;border-color:currentColor;opacity:.6}.modal::backdrop,.modal:not(dialog:not(.modal-open)){background-color:#0006;animation:modal-pop .2s ease-out}.modal-backdrop{z-index:-1;grid-column-start:1;grid-row-start:1;display:grid;align-self:stretch;justify-self:stretch;color:transparent}.modal-open .modal-box,.modal-toggle:checked+.modal .modal-box,.modal:target .modal-box,.modal[open] .modal-box{--tw-translate-y:0px;--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.modal-action>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.5rem * var(--tw-space-x-reverse));margin-left:calc(.5rem * calc(1 - var(--tw-space-x-reverse)))}@keyframes modal-pop{0%{opacity:0}}.progress::-moz-progress-bar{border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)))}.progress-primary::-moz-progress-bar{border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)))}.progress-secondary::-moz-progress-bar{border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-s,oklch(var(--s)/var(--tw-bg-opacity)))}.progress-accent::-moz-progress-bar{border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-a,oklch(var(--a)/var(--tw-bg-opacity)))}.progress-info::-moz-progress-bar{border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)))}.progress-success::-moz-progress-bar{border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)))}.progress-warning::-moz-progress-bar{border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)))}.progress-error::-moz-progress-bar{border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)))}.progress:indeterminate{--progress-color:var(--fallback-bc,oklch(var(--bc)/1));background-image:repeating-linear-gradient(90deg,var(--progress-color) -1%,var(--progress-color) 10%,transparent 10%,transparent 90%);background-size:200%;background-position-x:15%;animation:progress-loading 5s ease-in-out infinite}.progress-primary:indeterminate{--progress-color:var(--fallback-p,oklch(var(--p)/1))}.progress-secondary:indeterminate{--progress-color:var(--fallback-s,oklch(var(--s)/1))}.progress-accent:indeterminate{--progress-color:var(--fallback-a,oklch(var(--a)/1))}.progress-info:indeterminate{--progress-color:var(--fallback-in,oklch(var(--in)/1))}.progress-success:indeterminate{--progress-color:var(--fallback-su,oklch(var(--su)/1))}.progress-warning:indeterminate{--progress-color:var(--fallback-wa,oklch(var(--wa)/1))}.progress-error:indeterminate{--progress-color:var(--fallback-er,oklch(var(--er)/1))}.progress::-webkit-progress-bar{border-radius:var(--rounded-box,1rem);background-color:transparent}.progress::-webkit-progress-value{border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)))}.progress-primary::-webkit-progress-value{--tw-bg-opacity:1;background-color:var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)))}.progress-secondary::-webkit-progress-value{--tw-bg-opacity:1;background-color:var(--fallback-s,oklch(var(--s)/var(--tw-bg-opacity)))}.progress-accent::-webkit-progress-value{--tw-bg-opacity:1;background-color:var(--fallback-a,oklch(var(--a)/var(--tw-bg-opacity)))}.progress-info::-webkit-progress-value{--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)))}.progress-success::-webkit-progress-value{--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)))}.progress-warning::-webkit-progress-value{--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)))}.progress-error::-webkit-progress-value{--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)))}.progress:indeterminate::-moz-progress-bar{background-color:transparent;background-image:repeating-linear-gradient(90deg,var(--progress-color) -1%,var(--progress-color) 10%,transparent 10%,transparent 90%);background-size:200%;background-position-x:15%;animation:progress-loading 5s ease-in-out infinite}@keyframes progress-loading{50%{background-position-x:-115%}}.radio:focus{box-shadow:none}.radio:focus-visible{outline-style:solid;outline-width:2px;outline-offset:2px;outline-color:var(--fallback-bc,oklch(var(--bc)/1))}.radio:checked,.radio[aria-checked=true]{--tw-bg-opacity:1;background-color:var(--fallback-bc,oklch(var(--bc)/var(--tw-bg-opacity)));background-image:none;animation:radiomark var(--animation-input,.2s) ease-out;box-shadow:0 0 0 4px var(--fallback-b1,oklch(var(--b1)/1)) inset,0 0 0 4px var(--fallback-b1,oklch(var(--b1)/1)) inset}.radio-primary{--chkbg:var(--p);--tw-border-opacity:1;border-color:var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)))}.radio-primary:focus-visible{outline-color:var(--fallback-p,oklch(var(--p)/1))}.radio-primary:checked,.radio-primary[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)))}.radio-secondary{--chkbg:var(--s);--tw-border-opacity:1;border-color:var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)))}.radio-secondary:focus-visible{outline-color:var(--fallback-s,oklch(var(--s)/1))}.radio-secondary:checked,.radio-secondary[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-s,oklch(var(--s)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)))}.radio-accent{--chkbg:var(--a);--tw-border-opacity:1;border-color:var(--fallback-a,oklch(var(--a)/var(--tw-border-opacity)))}.radio-accent:focus-visible{outline-color:var(--fallback-a,oklch(var(--a)/1))}.radio-accent:checked,.radio-accent[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-a,oklch(var(--a)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-a,oklch(var(--a)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)))}.radio-success{--chkbg:var(--su);--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.radio-success:focus-visible{outline-color:var(--fallback-su,oklch(var(--su)/1))}.radio-success:checked,.radio-success[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.radio-warning{--chkbg:var(--wa);--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.radio-warning:focus-visible{outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.radio-warning:checked,.radio-warning[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.radio-info{--chkbg:var(--in);--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.radio-info:focus-visible{outline-color:var(--fallback-in,oklch(var(--in)/1))}.radio-info:checked,.radio-info[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.radio-error{--chkbg:var(--er);--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.radio-error:focus-visible{outline-color:var(--fallback-er,oklch(var(--er)/1))}.radio-error:checked,.radio-error[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}.radio:disabled{cursor:not-allowed;opacity:.2}@keyframes radiomark{0%{box-shadow:0 0 0 12px var(--fallback-b1,oklch(var(--b1)/1)) inset,0 0 0 12px var(--fallback-b1,oklch(var(--b1)/1)) inset}50%{box-shadow:0 0 0 3px var(--fallback-b1,oklch(var(--b1)/1)) inset,0 0 0 3px var(--fallback-b1,oklch(var(--b1)/1)) inset}100%{box-shadow:0 0 0 4px var(--fallback-b1,oklch(var(--b1)/1)) inset,0 0 0 4px var(--fallback-b1,oklch(var(--b1)/1)) inset}}.radio-mark{display:none}.range:focus-visible::-webkit-slider-thumb{--focus-shadow:0 0 0 6px var(--fallback-b1,oklch(var(--b1)/1)) inset,0 0 0 2rem var(--range-shdw) inset}.range:focus-visible::-moz-range-thumb{--focus-shadow:0 0 0 6px var(--fallback-b1,oklch(var(--b1)/1)) inset,0 0 0 2rem var(--range-shdw) inset}.range::-webkit-slider-runnable-track{height:.5rem;width:100%;border-radius:var(--rounded-box,1rem);background-color:var(--fallback-bc,oklch(var(--bc)/.1))}.range::-moz-range-track{height:.5rem;width:100%;border-radius:var(--rounded-box,1rem);background-color:var(--fallback-bc,oklch(var(--bc)/.1))}.range::-webkit-slider-thumb{position:relative;height:1.5rem;width:1.5rem;border-radius:var(--rounded-box,1rem);border-style:none;--tw-bg-opacity:1;background-color:var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));appearance:none;-webkit-appearance:none;top:50%;color:var(--range-shdw);transform:translateY(-50%);--filler-size:100rem;--filler-offset:0.6rem;box-shadow:0 0 0 3px var(--range-shdw) inset,var(--focus-shadow,0 0),calc(var(--filler-size) * -1 - var(--filler-offset)) 0 0 var(--filler-size)}.range::-moz-range-thumb{position:relative;height:1.5rem;width:1.5rem;border-radius:var(--rounded-box,1rem);border-style:none;--tw-bg-opacity:1;background-color:var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));top:50%;color:var(--range-shdw);--filler-size:100rem;--filler-offset:0.5rem;box-shadow:0 0 0 3px var(--range-shdw) inset,var(--focus-shadow,0 0),calc(var(--filler-size) * -1 - var(--filler-offset)) 0 0 var(--filler-size)}.range-primary{--range-shdw:var(--fallback-p,oklch(var(--p)/1))}.range-secondary{--range-shdw:var(--fallback-s,oklch(var(--s)/1))}.range-accent{--range-shdw:var(--fallback-a,oklch(var(--a)/1))}.range-success{--range-shdw:var(--fallback-su,oklch(var(--su)/1))}.range-warning{--range-shdw:var(--fallback-wa,oklch(var(--wa)/1))}.range-info{--range-shdw:var(--fallback-in,oklch(var(--in)/1))}.range-error{--range-shdw:var(--fallback-er,oklch(var(--er)/1))}.rating input{appearance:none;-webkit-appearance:none}.rating .rating-hidden{width:.5rem;background-color:transparent}.rating input[type=radio]:checked{background-image:none}.rating input:checked~input,.rating input[aria-checked=true]~input{--tw-bg-opacity:0.2}.rating input:focus-visible{transition-property:transform;transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0,0,0.2,1);transition-duration:.3s;transform:translateY(-.125em)}.rating input:active:focus{animation:none;transform:translateY(-.125em)}.rating-half :where(input:not(.rating-hidden)){width:.75rem}@keyframes rating-pop{0%{transform:translateY(-.125em)}40%{transform:translateY(-.125em)}100%{transform:translateY(0)}}.select-bordered{border-color:var(--fallback-bc,oklch(var(--bc)/.2))}.select:focus{box-shadow:none;border-color:var(--fallback-bc,oklch(var(--bc)/.2));outline-style:solid;outline-width:2px;outline-offset:2px;outline-color:var(--fallback-bc,oklch(var(--bc)/.2))}.select-ghost{--tw-bg-opacity:0.05}.select-ghost:focus{--tw-bg-opacity:1;--tw-text-opacity:1;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)))}.select-primary{--tw-border-opacity:1;border-color:var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)))}.select-primary:focus{--tw-border-opacity:1;border-color:var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));outline-color:var(--fallback-p,oklch(var(--p)/1))}.select-secondary{--tw-border-opacity:1;border-color:var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)))}.select-secondary:focus{--tw-border-opacity:1;border-color:var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));outline-color:var(--fallback-s,oklch(var(--s)/1))}.select-accent{--tw-border-opacity:1;border-color:var(--fallback-a,oklch(var(--a)/var(--tw-border-opacity)))}.select-accent:focus{--tw-border-opacity:1;border-color:var(--fallback-a,oklch(var(--a)/var(--tw-border-opacity)));outline-color:var(--fallback-a,oklch(var(--a)/1))}.select-info{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.select-info:focus{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)));outline-color:var(--fallback-in,oklch(var(--in)/1))}.select-success{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.select-success:focus{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)));outline-color:var(--fallback-su,oklch(var(--su)/1))}.select-warning{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.select-warning:focus{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)));outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.select-error{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.select-error:focus{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));outline-color:var(--fallback-er,oklch(var(--er)/1))}.select-disabled,.select:disabled,.select[disabled]{cursor:not-allowed;--tw-border-opacity:1;border-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));color:var(--fallback-bc,oklch(var(--bc)/.4))}.select-disabled::placeholder,.select:disabled::placeholder,.select[disabled]::placeholder{color:var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));--tw-placeholder-opacity:0.2}.select-multiple,.select[multiple],.select[size].select:not([size="1"]){background-image:none;padding-right:1rem}[dir=rtl] .select{background-position:calc(0% + 12px) calc(1px + 50%),calc(0% + 16px) calc(1px + 50%)}.skeleton{border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));will-change:background-position;animation:skeleton 1.8s ease-in-out infinite;background-image:linear-gradient(105deg,transparent 0,transparent 40%,var(--fallback-b1,oklch(var(--b1)/1)) 50%,transparent 60%,transparent 100%);background-size:200% auto;background-repeat:no-repeat;background-position-x:-50%}@media (prefers-reduced-motion){.skeleton{animation-duration:15s}}@keyframes skeleton{from{background-position:150%}to{background-position:-50%}}:where(.stats)>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-right-width:calc(1px * var(--tw-divide-x-reverse));border-left-width:calc(1px * calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-top-width:calc(0px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(0px * var(--tw-divide-y-reverse))}:is([dir=rtl] .stats > :not([hidden]) ~ :not([hidden])){--tw-divide-x-reverse:1}.steps .step:before{top:0;grid-column-start:1;grid-row-start:1;height:.5rem;width:100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));--tw-bg-opacity:1;background-color:var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));content:"";margin-inline-start:-100%}.steps .step:after{content:counter(step);counter-increment:step;z-index:1;position:relative;grid-column-start:1;grid-row-start:1;display:grid;height:2rem;width:2rem;place-items:center;place-self:center;border-radius:9999px;--tw-bg-opacity:1;background-color:var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)))}.steps .step:first-child:before{content:none}.steps .step[data-content]:after{content:attr(data-content)}.steps .step-neutral+.step-neutral:before,.steps .step-neutral:after{--tw-bg-opacity:1;background-color:var(--fallback-n,oklch(var(--n)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-nc,oklch(var(--nc)/var(--tw-text-opacity)))}.steps .step-primary+.step-primary:before,.steps .step-primary:after{--tw-bg-opacity:1;background-color:var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)))}.steps .step-secondary+.step-secondary:before,.steps .step-secondary:after{--tw-bg-opacity:1;background-color:var(--fallback-s,oklch(var(--s)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)))}.steps .step-accent+.step-accent:before,.steps .step-accent:after{--tw-bg-opacity:1;background-color:var(--fallback-a,oklch(var(--a)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)))}.steps .step-info+.step-info:before{--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)))}.steps .step-info:after{--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.steps .step-success+.step-success:before{--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)))}.steps .step-success:after{--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.steps .step-warning+.step-warning:before{--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)))}.steps .step-warning:after{--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.steps .step-error+.step-error:before{--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)))}.steps .step-error:after{--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}.swap-rotate .swap-indeterminate,.swap-rotate .swap-on,.swap-rotate input:indeterminate~.swap-on{--tw-rotate:45deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.swap-active:where(.swap-rotate) .swap-off,.swap-rotate input:checked~.swap-off,.swap-rotate input:indeterminate~.swap-off{--tw-rotate:-45deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.swap-active:where(.swap-rotate) .swap-on,.swap-rotate input:checked~.swap-on,.swap-rotate input:indeterminate~.swap-indeterminate{--tw-rotate:0deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.swap-flip{transform-style:preserve-3d;perspective:16em}.swap-flip .swap-indeterminate,.swap-flip .swap-on,.swap-flip input:indeterminate~.swap-on{transform:rotateY(180deg);backface-visibility:hidden;opacity:1}.swap-active:where(.swap-flip) .swap-off,.swap-flip input:checked~.swap-off,.swap-flip input:indeterminate~.swap-off{transform:rotateY(-180deg);backface-visibility:hidden;opacity:1}.swap-active:where(.swap-flip) .swap-on,.swap-flip input:checked~.swap-on,.swap-flip input:indeterminate~.swap-indeterminate{transform:rotateY(0)}.tabs-lifted>.tab:focus-visible{border-end-end-radius:0;border-end-start-radius:0}.tab.tab-active:not(.tab-disabled):not([disabled]),.tab:is(input:checked){border-color:var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));--tw-border-opacity:1;--tw-text-opacity:1}.tab:focus{outline:2px solid transparent;outline-offset:2px}.tab:focus-visible{outline:2px solid currentColor;outline-offset:-5px}.tab-disabled,.tab[disabled]{cursor:not-allowed;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));--tw-text-opacity:0.2}.tabs-bordered>.tab{border-color:var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));--tw-border-opacity:0.2;border-style:solid;border-bottom-width:calc(var(--tab-border,1px) + 1px)}.tabs-lifted>.tab{border:var(--tab-border,1px) solid transparent;border-width:0 0 var(--tab-border,1px) 0;border-start-start-radius:var(--tab-radius,0.5rem);border-start-end-radius:var(--tab-radius,0.5rem);border-bottom-color:var(--tab-border-color);padding-inline-start:var(--tab-padding,1rem);padding-inline-end:var(--tab-padding,1rem);padding-top:var(--tab-border,1px)}.tabs-lifted>.tab.tab-active:not(.tab-disabled):not([disabled]),.tabs-lifted>.tab:is(input:checked){background-color:var(--tab-bg);border-width:var(--tab-border,1px) var(--tab-border,1px) 0 var(--tab-border,1px);border-inline-start-color:var(--tab-border-color);border-inline-end-color:var(--tab-border-color);border-top-color:var(--tab-border-color);padding-inline-start:calc(var(--tab-padding,1rem) - var(--tab-border,1px));padding-inline-end:calc(var(--tab-padding,1rem) - var(--tab-border,1px));padding-bottom:var(--tab-border,1px);padding-top:0}.tabs-lifted>.tab.tab-active:not(.tab-disabled):not([disabled]):before,.tabs-lifted>.tab:is(input:checked):before{z-index:1;content:"";display:block;position:absolute;width:calc(100% + var(--tab-radius,.5rem) * 2);height:var(--tab-radius,.5rem);bottom:0;background-size:var(--tab-radius,.5rem);background-position:top left,top right;background-repeat:no-repeat;--tab-grad:calc(69% - var(--tab-border, 1px));--radius-start:radial-gradient( - circle at top left, - transparent var(--tab-grad), - var(--tab-border-color) calc(var(--tab-grad) + 0.25px), - var(--tab-border-color) calc(var(--tab-grad) + var(--tab-border, 1px)), - var(--tab-bg) calc(var(--tab-grad) + var(--tab-border, 1px) + 0.25px) - );--radius-end:radial-gradient( - circle at top right, - transparent var(--tab-grad), - var(--tab-border-color) calc(var(--tab-grad) + 0.25px), - var(--tab-border-color) calc(var(--tab-grad) + var(--tab-border, 1px)), - var(--tab-bg) calc(var(--tab-grad) + var(--tab-border, 1px) + 0.25px) - );background-image:var(--radius-start),var(--radius-end)}.tabs-lifted>.tab.tab-active:not(.tab-disabled):not([disabled]):first-child:before,.tabs-lifted>.tab:is(input:checked):first-child:before{background-image:var(--radius-end);background-position:top right}[dir=rtl] .tabs-lifted>.tab.tab-active:not(.tab-disabled):not([disabled]):first-child:before,[dir=rtl] .tabs-lifted>.tab:is(input:checked):first-child:before{background-image:var(--radius-start);background-position:top left}.tabs-lifted>.tab.tab-active:not(.tab-disabled):not([disabled]):last-child:before,.tabs-lifted>.tab:is(input:checked):last-child:before{background-image:var(--radius-start);background-position:top left}[dir=rtl] .tabs-lifted>.tab.tab-active:not(.tab-disabled):not([disabled]):last-child:before,[dir=rtl] .tabs-lifted>.tab:is(input:checked):last-child:before{background-image:var(--radius-end);background-position:top right}.tabs-lifted>.tab-active:not(.tab-disabled):not([disabled])+.tabs-lifted .tab-active:not(.tab-disabled):not([disabled]):before,.tabs-lifted>.tab:is(input:checked)+.tabs-lifted .tab:is(input:checked):before{background-image:var(--radius-end);background-position:top right}.tabs-boxed{border-radius:var(--rounded-btn,.5rem);--tw-bg-opacity:1;background-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));padding:.25rem}.tabs-boxed .tab{border-radius:var(--rounded-btn,.5rem)}.tabs-boxed .tab-active:not(.tab-disabled):not([disabled]),.tabs-boxed :is(input:checked){--tw-bg-opacity:1;background-color:var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)))}:is([dir=rtl] .table){text-align:right}.table :where(th,td){padding-left:1rem;padding-right:1rem;padding-top:.75rem;padding-bottom:.75rem;vertical-align:middle}.table tr.active,.table tr.active:nth-child(2n),.table-zebra tbody tr:nth-child(2n){--tw-bg-opacity:1;background-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)))}.table-zebra tr.active,.table-zebra tr.active:nth-child(2n),.table-zebra-zebra tbody tr:nth-child(2n){--tw-bg-opacity:1;background-color:var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)))}.table :where(thead tr,tbody tr:not(:last-child),tbody tr:first-child:last-child){border-bottom-width:1px;--tw-border-opacity:1;border-bottom-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)))}.table :where(thead,tfoot){white-space:nowrap;font-size:.75rem;line-height:1rem;font-weight:700;color:var(--fallback-bc,oklch(var(--bc)/.6))}.table :where(tfoot){border-top-width:1px;--tw-border-opacity:1;border-top-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)))}.textarea-bordered{border-color:var(--fallback-bc,oklch(var(--bc)/.2))}.textarea:focus{box-shadow:none;border-color:var(--fallback-bc,oklch(var(--bc)/.2));outline-style:solid;outline-width:2px;outline-offset:2px;outline-color:var(--fallback-bc,oklch(var(--bc)/.2))}.textarea-ghost{--tw-bg-opacity:0.05}.textarea-ghost:focus{--tw-bg-opacity:1;--tw-text-opacity:1;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));box-shadow:none}.textarea-primary{--tw-border-opacity:1;border-color:var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)))}.textarea-primary:focus{--tw-border-opacity:1;border-color:var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));outline-color:var(--fallback-p,oklch(var(--p)/1))}.textarea-secondary{--tw-border-opacity:1;border-color:var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)))}.textarea-secondary:focus{--tw-border-opacity:1;border-color:var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));outline-color:var(--fallback-s,oklch(var(--s)/1))}.textarea-accent{--tw-border-opacity:1;border-color:var(--fallback-a,oklch(var(--a)/var(--tw-border-opacity)))}.textarea-accent:focus{--tw-border-opacity:1;border-color:var(--fallback-a,oklch(var(--a)/var(--tw-border-opacity)));outline-color:var(--fallback-a,oklch(var(--a)/1))}.textarea-info{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.textarea-info:focus{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)));outline-color:var(--fallback-in,oklch(var(--in)/1))}.textarea-success{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.textarea-success:focus{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)));outline-color:var(--fallback-su,oklch(var(--su)/1))}.textarea-warning{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.textarea-warning:focus{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)));outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.textarea-error{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.textarea-error:focus{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));outline-color:var(--fallback-er,oklch(var(--er)/1))}.textarea-disabled,.textarea:disabled,.textarea[disabled]{cursor:not-allowed;--tw-border-opacity:1;border-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-b2,oklch(var(--b2)/var(--tw-bg-opacity)));color:var(--fallback-bc,oklch(var(--bc)/.4))}.textarea-disabled::placeholder,.textarea:disabled::placeholder,.textarea[disabled]::placeholder{color:var(--fallback-bc,oklch(var(--bc)/var(--tw-placeholder-opacity)));--tw-placeholder-opacity:0.2}.timeline hr{height:.25rem}:where(.timeline hr){--tw-bg-opacity:1;background-color:var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)))}:where(.timeline:has(.timeline-middle) hr):first-child{border-start-end-radius:var(--rounded-badge,1.9rem);border-end-end-radius:var(--rounded-badge,1.9rem);border-start-start-radius:0px;border-end-start-radius:0px}:where(.timeline:has(.timeline-middle) hr):last-child{border-start-start-radius:var(--rounded-badge,1.9rem);border-end-start-radius:var(--rounded-badge,1.9rem);border-start-end-radius:0px;border-end-end-radius:0px}:where(.timeline:not(:has(.timeline-middle)) :first-child hr:last-child){border-start-start-radius:var(--rounded-badge,1.9rem);border-end-start-radius:var(--rounded-badge,1.9rem);border-start-end-radius:0px;border-end-end-radius:0px}:where(.timeline:not(:has(.timeline-middle)) :last-child hr:first-child){border-start-end-radius:var(--rounded-badge,1.9rem);border-end-end-radius:var(--rounded-badge,1.9rem);border-start-start-radius:0px;border-end-start-radius:0px}.timeline-box{border-radius:var(--rounded-box,1rem);border-width:1px;--tw-border-opacity:1;border-color:var(--fallback-b3,oklch(var(--b3)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));padding-left:1rem;padding-right:1rem;padding-top:.5rem;padding-bottom:.5rem;--tw-shadow:0 1px 2px 0 rgb(0 0 0 / 0.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.toast>*{animation:toast-pop .25s ease-out}@keyframes toast-pop{0%{transform:scale(.9);opacity:0}100%{transform:scale(1);opacity:1}}[dir=rtl] .toggle{--handleoffsetcalculator:calc(var(--handleoffset) * 1)}.toggle:focus-visible{outline-style:solid;outline-width:2px;outline-offset:2px;outline-color:var(--fallback-bc,oklch(var(--bc)/.2))}.toggle:hover{background-color:currentColor}.toggle:checked,.toggle[aria-checked=true]{background-image:none;--handleoffsetcalculator:var(--handleoffset);--tw-text-opacity:1;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)))}[dir=rtl] .toggle:checked,[dir=rtl] .toggle[aria-checked=true]{--handleoffsetcalculator:calc(var(--handleoffset) * -1)}.toggle:indeterminate{--tw-text-opacity:1;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));box-shadow:calc(var(--handleoffset)/ 2) 0 0 2px var(--tglbg) inset,calc(var(--handleoffset)/ -2) 0 0 2px var(--tglbg) inset,0 0 0 2px var(--tglbg) inset}[dir=rtl] .toggle:indeterminate{box-shadow:calc(var(--handleoffset)/ 2) 0 0 2px var(--tglbg) inset,calc(var(--handleoffset)/ -2) 0 0 2px var(--tglbg) inset,0 0 0 2px var(--tglbg) inset}.toggle-primary:focus-visible{outline-color:var(--fallback-p,oklch(var(--p)/1))}.toggle-primary:checked,.toggle-primary[aria-checked=true]{border-color:var(--fallback-p,oklch(var(--p)/var(--tw-border-opacity)));--tw-border-opacity:0.1;--tw-bg-opacity:1;background-color:var(--fallback-p,oklch(var(--p)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-pc,oklch(var(--pc)/var(--tw-text-opacity)))}.toggle-secondary:focus-visible{outline-color:var(--fallback-s,oklch(var(--s)/1))}.toggle-secondary:checked,.toggle-secondary[aria-checked=true]{border-color:var(--fallback-s,oklch(var(--s)/var(--tw-border-opacity)));--tw-border-opacity:0.1;--tw-bg-opacity:1;background-color:var(--fallback-s,oklch(var(--s)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-sc,oklch(var(--sc)/var(--tw-text-opacity)))}.toggle-accent:focus-visible{outline-color:var(--fallback-a,oklch(var(--a)/1))}.toggle-accent:checked,.toggle-accent[aria-checked=true]{border-color:var(--fallback-a,oklch(var(--a)/var(--tw-border-opacity)));--tw-border-opacity:0.1;--tw-bg-opacity:1;background-color:var(--fallback-a,oklch(var(--a)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-ac,oklch(var(--ac)/var(--tw-text-opacity)))}.toggle-success:focus-visible{outline-color:var(--fallback-su,oklch(var(--su)/1))}.toggle-success:checked,.toggle-success[aria-checked=true]{border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)));--tw-border-opacity:0.1;--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.toggle-warning:focus-visible{outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.toggle-warning:checked,.toggle-warning[aria-checked=true]{border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)));--tw-border-opacity:0.1;--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.toggle-info:focus-visible{outline-color:var(--fallback-in,oklch(var(--in)/1))}.toggle-info:checked,.toggle-info[aria-checked=true]{border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)));--tw-border-opacity:0.1;--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.toggle-error:focus-visible{outline-color:var(--fallback-er,oklch(var(--er)/1))}.toggle-error:checked,.toggle-error[aria-checked=true]{border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));--tw-border-opacity:0.1;--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}.toggle:disabled{cursor:not-allowed;--tw-border-opacity:1;border-color:var(--fallback-bc,oklch(var(--bc)/var(--tw-border-opacity)));background-color:transparent;opacity:.3;--togglehandleborder:0 0 0 3px var(--fallback-bc,oklch(var(--bc)/1)) inset,var(--handleoffsetcalculator) 0 0 3px var(--fallback-bc,oklch(var(--bc)/1)) inset}.toggle-mark{display:none}:root .prose{--tw-prose-body:var(--fallback-bc,oklch(var(--bc)/0.8));--tw-prose-headings:var(--fallback-bc,oklch(var(--bc)/1));--tw-prose-lead:var(--fallback-bc,oklch(var(--bc)/1));--tw-prose-links:var(--fallback-bc,oklch(var(--bc)/1));--tw-prose-bold:var(--fallback-bc,oklch(var(--bc)/1));--tw-prose-counters:var(--fallback-bc,oklch(var(--bc)/1));--tw-prose-bullets:var(--fallback-bc,oklch(var(--bc)/0.5));--tw-prose-hr:var(--fallback-bc,oklch(var(--bc)/0.2));--tw-prose-quotes:var(--fallback-bc,oklch(var(--bc)/1));--tw-prose-quote-borders:var(--fallback-bc,oklch(var(--bc)/0.2));--tw-prose-captions:var(--fallback-bc,oklch(var(--bc)/0.5));--tw-prose-code:var(--fallback-bc,oklch(var(--bc)/1));--tw-prose-pre-code:var(--fallback-nc,oklch(var(--nc)/1));--tw-prose-pre-bg:var(--fallback-n,oklch(var(--n)/1));--tw-prose-th-borders:var(--fallback-bc,oklch(var(--bc)/0.5));--tw-prose-td-borders:var(--fallback-bc,oklch(var(--bc)/0.2))}.prose :where(code):not(:where([class~=not-prose] *,pre *)){padding:1px 8px;border-radius:var(--rounded-badge);font-weight:initial;background-color:var(--fallback-bc,oklch(var(--bc)/.1))}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *))::after,.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *))::before{display:none}.prose pre code{border-radius:0;padding:0}.prose :where(tbody tr,thead):not(:where([class~=not-prose] *)){border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.2))}@keyframes bounce{0%,100%{transform:translateY(-25%);animation-timing-function:cubic-bezier(0.8,0,1,1)}50%{transform:none;animation-timing-function:cubic-bezier(0,0,0.2,1)}}.animate-bounce{animation:bounce 1s infinite}.animate-none{animation:none}@keyframes ping{100%,75%{transform:scale(2);opacity:0}}.animate-ping{animation:ping 1s cubic-bezier(0,0,.2,1) infinite}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes spin{to{transform:rotate(360deg)}}.animate-spin{animation:spin 1s linear infinite}.divide-accent>:not([hidden])~:not([hidden]){border-color:var(--fallback-a,oklch(var(--a)/1))}.divide-accent-content>:not([hidden])~:not([hidden]){border-color:var(--fallback-ac,oklch(var(--ac)/1))}.divide-accent-content\/0>:not([hidden])~:not([hidden]){border-color:var(--fallback-ac,oklch(var(--ac)/0))}.divide-accent-content\/10>:not([hidden])~:not([hidden]){border-color:var(--fallback-ac,oklch(var(--ac)/.1))}.divide-accent-content\/100>:not([hidden])~:not([hidden]){border-color:var(--fallback-ac,oklch(var(--ac)/1))}.divide-accent-content\/20>:not([hidden])~:not([hidden]){border-color:var(--fallback-ac,oklch(var(--ac)/.2))}.divide-accent-content\/25>:not([hidden])~:not([hidden]){border-color:var(--fallback-ac,oklch(var(--ac)/.25))}.divide-accent-content\/30>:not([hidden])~:not([hidden]){border-color:var(--fallback-ac,oklch(var(--ac)/.3))}.divide-accent-content\/40>:not([hidden])~:not([hidden]){border-color:var(--fallback-ac,oklch(var(--ac)/.4))}.divide-accent-content\/5>:not([hidden])~:not([hidden]){border-color:var(--fallback-ac,oklch(var(--ac)/.05))}.divide-accent-content\/50>:not([hidden])~:not([hidden]){border-color:var(--fallback-ac,oklch(var(--ac)/.5))}.divide-accent-content\/60>:not([hidden])~:not([hidden]){border-color:var(--fallback-ac,oklch(var(--ac)/.6))}.divide-accent-content\/70>:not([hidden])~:not([hidden]){border-color:var(--fallback-ac,oklch(var(--ac)/.7))}.divide-accent-content\/75>:not([hidden])~:not([hidden]){border-color:var(--fallback-ac,oklch(var(--ac)/.75))}.divide-accent-content\/80>:not([hidden])~:not([hidden]){border-color:var(--fallback-ac,oklch(var(--ac)/.8))}.divide-accent-content\/90>:not([hidden])~:not([hidden]){border-color:var(--fallback-ac,oklch(var(--ac)/.9))}.divide-accent-content\/95>:not([hidden])~:not([hidden]){border-color:var(--fallback-ac,oklch(var(--ac)/.95))}.divide-accent\/0>:not([hidden])~:not([hidden]){border-color:var(--fallback-a,oklch(var(--a)/0))}.divide-accent\/10>:not([hidden])~:not([hidden]){border-color:var(--fallback-a,oklch(var(--a)/.1))}.divide-accent\/100>:not([hidden])~:not([hidden]){border-color:var(--fallback-a,oklch(var(--a)/1))}.divide-accent\/20>:not([hidden])~:not([hidden]){border-color:var(--fallback-a,oklch(var(--a)/.2))}.divide-accent\/25>:not([hidden])~:not([hidden]){border-color:var(--fallback-a,oklch(var(--a)/.25))}.divide-accent\/30>:not([hidden])~:not([hidden]){border-color:var(--fallback-a,oklch(var(--a)/.3))}.divide-accent\/40>:not([hidden])~:not([hidden]){border-color:var(--fallback-a,oklch(var(--a)/.4))}.divide-accent\/5>:not([hidden])~:not([hidden]){border-color:var(--fallback-a,oklch(var(--a)/.05))}.divide-accent\/50>:not([hidden])~:not([hidden]){border-color:var(--fallback-a,oklch(var(--a)/.5))}.divide-accent\/60>:not([hidden])~:not([hidden]){border-color:var(--fallback-a,oklch(var(--a)/.6))}.divide-accent\/70>:not([hidden])~:not([hidden]){border-color:var(--fallback-a,oklch(var(--a)/.7))}.divide-accent\/75>:not([hidden])~:not([hidden]){border-color:var(--fallback-a,oklch(var(--a)/.75))}.divide-accent\/80>:not([hidden])~:not([hidden]){border-color:var(--fallback-a,oklch(var(--a)/.8))}.divide-accent\/90>:not([hidden])~:not([hidden]){border-color:var(--fallback-a,oklch(var(--a)/.9))}.divide-accent\/95>:not([hidden])~:not([hidden]){border-color:var(--fallback-a,oklch(var(--a)/.95))}.divide-base-100>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/1))}.divide-base-100\/0>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/0))}.divide-base-100\/10>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.1))}.divide-base-100\/100>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/1))}.divide-base-100\/20>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.2))}.divide-base-100\/25>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.25))}.divide-base-100\/30>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.3))}.divide-base-100\/40>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.4))}.divide-base-100\/5>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.05))}.divide-base-100\/50>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.5))}.divide-base-100\/60>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.6))}.divide-base-100\/70>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.7))}.divide-base-100\/75>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.75))}.divide-base-100\/80>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.8))}.divide-base-100\/90>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.9))}.divide-base-100\/95>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.95))}.divide-base-200>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/1))}.divide-base-200\/0>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/0))}.divide-base-200\/10>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.1))}.divide-base-200\/100>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/1))}.divide-base-200\/20>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.2))}.divide-base-200\/25>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.25))}.divide-base-200\/30>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.3))}.divide-base-200\/40>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.4))}.divide-base-200\/5>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.05))}.divide-base-200\/50>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.5))}.divide-base-200\/60>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.6))}.divide-base-200\/70>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.7))}.divide-base-200\/75>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.75))}.divide-base-200\/80>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.8))}.divide-base-200\/90>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.9))}.divide-base-200\/95>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.95))}.divide-base-300>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/1))}.divide-base-300\/0>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/0))}.divide-base-300\/10>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.1))}.divide-base-300\/100>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/1))}.divide-base-300\/20>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.2))}.divide-base-300\/25>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.25))}.divide-base-300\/30>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.3))}.divide-base-300\/40>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.4))}.divide-base-300\/5>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.05))}.divide-base-300\/50>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.5))}.divide-base-300\/60>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.6))}.divide-base-300\/70>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.7))}.divide-base-300\/75>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.75))}.divide-base-300\/80>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.8))}.divide-base-300\/90>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.9))}.divide-base-300\/95>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.95))}.divide-base-content>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/1))}.divide-base-content\/0>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/0))}.divide-base-content\/10>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.1))}.divide-base-content\/100>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/1))}.divide-base-content\/20>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.2))}.divide-base-content\/25>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.25))}.divide-base-content\/30>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.3))}.divide-base-content\/40>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.4))}.divide-base-content\/5>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.05))}.divide-base-content\/50>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.5))}.divide-base-content\/60>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.6))}.divide-base-content\/70>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.7))}.divide-base-content\/75>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.75))}.divide-base-content\/80>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.8))}.divide-base-content\/90>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.9))}.divide-base-content\/95>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.95))}.divide-current>:not([hidden])~:not([hidden]){border-color:currentColor}.divide-error>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/1))}.divide-error-content>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/1))}.divide-error-content\/0>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/0))}.divide-error-content\/10>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.1))}.divide-error-content\/100>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/1))}.divide-error-content\/20>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.2))}.divide-error-content\/25>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.25))}.divide-error-content\/30>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.3))}.divide-error-content\/40>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.4))}.divide-error-content\/5>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.05))}.divide-error-content\/50>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.5))}.divide-error-content\/60>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.6))}.divide-error-content\/70>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.7))}.divide-error-content\/75>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.75))}.divide-error-content\/80>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.8))}.divide-error-content\/90>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.9))}.divide-error-content\/95>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.95))}.divide-error\/0>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/0))}.divide-error\/10>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.1))}.divide-error\/100>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/1))}.divide-error\/20>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.2))}.divide-error\/25>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.25))}.divide-error\/30>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.3))}.divide-error\/40>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.4))}.divide-error\/5>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.05))}.divide-error\/50>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.5))}.divide-error\/60>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.6))}.divide-error\/70>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.7))}.divide-error\/75>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.75))}.divide-error\/80>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.8))}.divide-error\/90>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.9))}.divide-error\/95>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.95))}.divide-info>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/1))}.divide-info-content>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/1))}.divide-info-content\/0>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/0))}.divide-info-content\/10>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.1))}.divide-info-content\/100>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/1))}.divide-info-content\/20>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.2))}.divide-info-content\/25>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.25))}.divide-info-content\/30>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.3))}.divide-info-content\/40>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.4))}.divide-info-content\/5>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.05))}.divide-info-content\/50>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.5))}.divide-info-content\/60>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.6))}.divide-info-content\/70>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.7))}.divide-info-content\/75>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.75))}.divide-info-content\/80>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.8))}.divide-info-content\/90>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.9))}.divide-info-content\/95>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.95))}.divide-info\/0>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/0))}.divide-info\/10>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.1))}.divide-info\/100>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/1))}.divide-info\/20>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.2))}.divide-info\/25>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.25))}.divide-info\/30>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.3))}.divide-info\/40>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.4))}.divide-info\/5>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.05))}.divide-info\/50>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.5))}.divide-info\/60>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.6))}.divide-info\/70>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.7))}.divide-info\/75>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.75))}.divide-info\/80>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.8))}.divide-info\/90>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.9))}.divide-info\/95>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.95))}.divide-neutral>:not([hidden])~:not([hidden]){border-color:var(--fallback-n,oklch(var(--n)/1))}.divide-neutral-content>:not([hidden])~:not([hidden]){border-color:var(--fallback-nc,oklch(var(--nc)/1))}.divide-neutral-content\/0>:not([hidden])~:not([hidden]){border-color:var(--fallback-nc,oklch(var(--nc)/0))}.divide-neutral-content\/10>:not([hidden])~:not([hidden]){border-color:var(--fallback-nc,oklch(var(--nc)/.1))}.divide-neutral-content\/100>:not([hidden])~:not([hidden]){border-color:var(--fallback-nc,oklch(var(--nc)/1))}.divide-neutral-content\/20>:not([hidden])~:not([hidden]){border-color:var(--fallback-nc,oklch(var(--nc)/.2))}.divide-neutral-content\/25>:not([hidden])~:not([hidden]){border-color:var(--fallback-nc,oklch(var(--nc)/.25))}.divide-neutral-content\/30>:not([hidden])~:not([hidden]){border-color:var(--fallback-nc,oklch(var(--nc)/.3))}.divide-neutral-content\/40>:not([hidden])~:not([hidden]){border-color:var(--fallback-nc,oklch(var(--nc)/.4))}.divide-neutral-content\/5>:not([hidden])~:not([hidden]){border-color:var(--fallback-nc,oklch(var(--nc)/.05))}.divide-neutral-content\/50>:not([hidden])~:not([hidden]){border-color:var(--fallback-nc,oklch(var(--nc)/.5))}.divide-neutral-content\/60>:not([hidden])~:not([hidden]){border-color:var(--fallback-nc,oklch(var(--nc)/.6))}.divide-neutral-content\/70>:not([hidden])~:not([hidden]){border-color:var(--fallback-nc,oklch(var(--nc)/.7))}.divide-neutral-content\/75>:not([hidden])~:not([hidden]){border-color:var(--fallback-nc,oklch(var(--nc)/.75))}.divide-neutral-content\/80>:not([hidden])~:not([hidden]){border-color:var(--fallback-nc,oklch(var(--nc)/.8))}.divide-neutral-content\/90>:not([hidden])~:not([hidden]){border-color:var(--fallback-nc,oklch(var(--nc)/.9))}.divide-neutral-content\/95>:not([hidden])~:not([hidden]){border-color:var(--fallback-nc,oklch(var(--nc)/.95))}.divide-neutral\/0>:not([hidden])~:not([hidden]){border-color:var(--fallback-n,oklch(var(--n)/0))}.divide-neutral\/10>:not([hidden])~:not([hidden]){border-color:var(--fallback-n,oklch(var(--n)/.1))}.divide-neutral\/100>:not([hidden])~:not([hidden]){border-color:var(--fallback-n,oklch(var(--n)/1))}.divide-neutral\/20>:not([hidden])~:not([hidden]){border-color:var(--fallback-n,oklch(var(--n)/.2))}.divide-neutral\/25>:not([hidden])~:not([hidden]){border-color:var(--fallback-n,oklch(var(--n)/.25))}.divide-neutral\/30>:not([hidden])~:not([hidden]){border-color:var(--fallback-n,oklch(var(--n)/.3))}.divide-neutral\/40>:not([hidden])~:not([hidden]){border-color:var(--fallback-n,oklch(var(--n)/.4))}.divide-neutral\/5>:not([hidden])~:not([hidden]){border-color:var(--fallback-n,oklch(var(--n)/.05))}.divide-neutral\/50>:not([hidden])~:not([hidden]){border-color:var(--fallback-n,oklch(var(--n)/.5))}.divide-neutral\/60>:not([hidden])~:not([hidden]){border-color:var(--fallback-n,oklch(var(--n)/.6))}.divide-neutral\/70>:not([hidden])~:not([hidden]){border-color:var(--fallback-n,oklch(var(--n)/.7))}.divide-neutral\/75>:not([hidden])~:not([hidden]){border-color:var(--fallback-n,oklch(var(--n)/.75))}.divide-neutral\/80>:not([hidden])~:not([hidden]){border-color:var(--fallback-n,oklch(var(--n)/.8))}.divide-neutral\/90>:not([hidden])~:not([hidden]){border-color:var(--fallback-n,oklch(var(--n)/.9))}.divide-neutral\/95>:not([hidden])~:not([hidden]){border-color:var(--fallback-n,oklch(var(--n)/.95))}.divide-primary>:not([hidden])~:not([hidden]){border-color:var(--fallback-p,oklch(var(--p)/1))}.divide-primary-content>:not([hidden])~:not([hidden]){border-color:var(--fallback-pc,oklch(var(--pc)/1))}.divide-primary-content\/0>:not([hidden])~:not([hidden]){border-color:var(--fallback-pc,oklch(var(--pc)/0))}.divide-primary-content\/10>:not([hidden])~:not([hidden]){border-color:var(--fallback-pc,oklch(var(--pc)/.1))}.divide-primary-content\/100>:not([hidden])~:not([hidden]){border-color:var(--fallback-pc,oklch(var(--pc)/1))}.divide-primary-content\/20>:not([hidden])~:not([hidden]){border-color:var(--fallback-pc,oklch(var(--pc)/.2))}.divide-primary-content\/25>:not([hidden])~:not([hidden]){border-color:var(--fallback-pc,oklch(var(--pc)/.25))}.divide-primary-content\/30>:not([hidden])~:not([hidden]){border-color:var(--fallback-pc,oklch(var(--pc)/.3))}.divide-primary-content\/40>:not([hidden])~:not([hidden]){border-color:var(--fallback-pc,oklch(var(--pc)/.4))}.divide-primary-content\/5>:not([hidden])~:not([hidden]){border-color:var(--fallback-pc,oklch(var(--pc)/.05))}.divide-primary-content\/50>:not([hidden])~:not([hidden]){border-color:var(--fallback-pc,oklch(var(--pc)/.5))}.divide-primary-content\/60>:not([hidden])~:not([hidden]){border-color:var(--fallback-pc,oklch(var(--pc)/.6))}.divide-primary-content\/70>:not([hidden])~:not([hidden]){border-color:var(--fallback-pc,oklch(var(--pc)/.7))}.divide-primary-content\/75>:not([hidden])~:not([hidden]){border-color:var(--fallback-pc,oklch(var(--pc)/.75))}.divide-primary-content\/80>:not([hidden])~:not([hidden]){border-color:var(--fallback-pc,oklch(var(--pc)/.8))}.divide-primary-content\/90>:not([hidden])~:not([hidden]){border-color:var(--fallback-pc,oklch(var(--pc)/.9))}.divide-primary-content\/95>:not([hidden])~:not([hidden]){border-color:var(--fallback-pc,oklch(var(--pc)/.95))}.divide-primary\/0>:not([hidden])~:not([hidden]){border-color:var(--fallback-p,oklch(var(--p)/0))}.divide-primary\/10>:not([hidden])~:not([hidden]){border-color:var(--fallback-p,oklch(var(--p)/.1))}.divide-primary\/100>:not([hidden])~:not([hidden]){border-color:var(--fallback-p,oklch(var(--p)/1))}.divide-primary\/20>:not([hidden])~:not([hidden]){border-color:var(--fallback-p,oklch(var(--p)/.2))}.divide-primary\/25>:not([hidden])~:not([hidden]){border-color:var(--fallback-p,oklch(var(--p)/.25))}.divide-primary\/30>:not([hidden])~:not([hidden]){border-color:var(--fallback-p,oklch(var(--p)/.3))}.divide-primary\/40>:not([hidden])~:not([hidden]){border-color:var(--fallback-p,oklch(var(--p)/.4))}.divide-primary\/5>:not([hidden])~:not([hidden]){border-color:var(--fallback-p,oklch(var(--p)/.05))}.divide-primary\/50>:not([hidden])~:not([hidden]){border-color:var(--fallback-p,oklch(var(--p)/.5))}.divide-primary\/60>:not([hidden])~:not([hidden]){border-color:var(--fallback-p,oklch(var(--p)/.6))}.divide-primary\/70>:not([hidden])~:not([hidden]){border-color:var(--fallback-p,oklch(var(--p)/.7))}.divide-primary\/75>:not([hidden])~:not([hidden]){border-color:var(--fallback-p,oklch(var(--p)/.75))}.divide-primary\/80>:not([hidden])~:not([hidden]){border-color:var(--fallback-p,oklch(var(--p)/.8))}.divide-primary\/90>:not([hidden])~:not([hidden]){border-color:var(--fallback-p,oklch(var(--p)/.9))}.divide-primary\/95>:not([hidden])~:not([hidden]){border-color:var(--fallback-p,oklch(var(--p)/.95))}.divide-secondary>:not([hidden])~:not([hidden]){border-color:var(--fallback-s,oklch(var(--s)/1))}.divide-secondary-content>:not([hidden])~:not([hidden]){border-color:var(--fallback-sc,oklch(var(--sc)/1))}.divide-secondary-content\/0>:not([hidden])~:not([hidden]){border-color:var(--fallback-sc,oklch(var(--sc)/0))}.divide-secondary-content\/10>:not([hidden])~:not([hidden]){border-color:var(--fallback-sc,oklch(var(--sc)/.1))}.divide-secondary-content\/100>:not([hidden])~:not([hidden]){border-color:var(--fallback-sc,oklch(var(--sc)/1))}.divide-secondary-content\/20>:not([hidden])~:not([hidden]){border-color:var(--fallback-sc,oklch(var(--sc)/.2))}.divide-secondary-content\/25>:not([hidden])~:not([hidden]){border-color:var(--fallback-sc,oklch(var(--sc)/.25))}.divide-secondary-content\/30>:not([hidden])~:not([hidden]){border-color:var(--fallback-sc,oklch(var(--sc)/.3))}.divide-secondary-content\/40>:not([hidden])~:not([hidden]){border-color:var(--fallback-sc,oklch(var(--sc)/.4))}.divide-secondary-content\/5>:not([hidden])~:not([hidden]){border-color:var(--fallback-sc,oklch(var(--sc)/.05))}.divide-secondary-content\/50>:not([hidden])~:not([hidden]){border-color:var(--fallback-sc,oklch(var(--sc)/.5))}.divide-secondary-content\/60>:not([hidden])~:not([hidden]){border-color:var(--fallback-sc,oklch(var(--sc)/.6))}.divide-secondary-content\/70>:not([hidden])~:not([hidden]){border-color:var(--fallback-sc,oklch(var(--sc)/.7))}.divide-secondary-content\/75>:not([hidden])~:not([hidden]){border-color:var(--fallback-sc,oklch(var(--sc)/.75))}.divide-secondary-content\/80>:not([hidden])~:not([hidden]){border-color:var(--fallback-sc,oklch(var(--sc)/.8))}.divide-secondary-content\/90>:not([hidden])~:not([hidden]){border-color:var(--fallback-sc,oklch(var(--sc)/.9))}.divide-secondary-content\/95>:not([hidden])~:not([hidden]){border-color:var(--fallback-sc,oklch(var(--sc)/.95))}.divide-secondary\/0>:not([hidden])~:not([hidden]){border-color:var(--fallback-s,oklch(var(--s)/0))}.divide-secondary\/10>:not([hidden])~:not([hidden]){border-color:var(--fallback-s,oklch(var(--s)/.1))}.divide-secondary\/100>:not([hidden])~:not([hidden]){border-color:var(--fallback-s,oklch(var(--s)/1))}.divide-secondary\/20>:not([hidden])~:not([hidden]){border-color:var(--fallback-s,oklch(var(--s)/.2))}.divide-secondary\/25>:not([hidden])~:not([hidden]){border-color:var(--fallback-s,oklch(var(--s)/.25))}.divide-secondary\/30>:not([hidden])~:not([hidden]){border-color:var(--fallback-s,oklch(var(--s)/.3))}.divide-secondary\/40>:not([hidden])~:not([hidden]){border-color:var(--fallback-s,oklch(var(--s)/.4))}.divide-secondary\/5>:not([hidden])~:not([hidden]){border-color:var(--fallback-s,oklch(var(--s)/.05))}.divide-secondary\/50>:not([hidden])~:not([hidden]){border-color:var(--fallback-s,oklch(var(--s)/.5))}.divide-secondary\/60>:not([hidden])~:not([hidden]){border-color:var(--fallback-s,oklch(var(--s)/.6))}.divide-secondary\/70>:not([hidden])~:not([hidden]){border-color:var(--fallback-s,oklch(var(--s)/.7))}.divide-secondary\/75>:not([hidden])~:not([hidden]){border-color:var(--fallback-s,oklch(var(--s)/.75))}.divide-secondary\/80>:not([hidden])~:not([hidden]){border-color:var(--fallback-s,oklch(var(--s)/.8))}.divide-secondary\/90>:not([hidden])~:not([hidden]){border-color:var(--fallback-s,oklch(var(--s)/.9))}.divide-secondary\/95>:not([hidden])~:not([hidden]){border-color:var(--fallback-s,oklch(var(--s)/.95))}.divide-success>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/1))}.divide-success-content>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/1))}.divide-success-content\/0>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/0))}.divide-success-content\/10>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.1))}.divide-success-content\/100>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/1))}.divide-success-content\/20>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.2))}.divide-success-content\/25>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.25))}.divide-success-content\/30>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.3))}.divide-success-content\/40>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.4))}.divide-success-content\/5>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.05))}.divide-success-content\/50>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.5))}.divide-success-content\/60>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.6))}.divide-success-content\/70>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.7))}.divide-success-content\/75>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.75))}.divide-success-content\/80>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.8))}.divide-success-content\/90>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.9))}.divide-success-content\/95>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.95))}.divide-success\/0>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/0))}.divide-success\/10>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.1))}.divide-success\/100>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/1))}.divide-success\/20>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.2))}.divide-success\/25>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.25))}.divide-success\/30>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.3))}.divide-success\/40>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.4))}.divide-success\/5>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.05))}.divide-success\/50>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.5))}.divide-success\/60>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.6))}.divide-success\/70>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.7))}.divide-success\/75>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.75))}.divide-success\/80>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.8))}.divide-success\/90>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.9))}.divide-success\/95>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.95))}.divide-transparent>:not([hidden])~:not([hidden]){border-color:transparent}.divide-transparent\/0>:not([hidden])~:not([hidden]){border-color:rgb(0 0 0 / 0)}.divide-transparent\/10>:not([hidden])~:not([hidden]){border-color:rgb(0 0 0 / .1)}.divide-transparent\/100>:not([hidden])~:not([hidden]){border-color:rgb(0 0 0 / 1)}.divide-transparent\/20>:not([hidden])~:not([hidden]){border-color:rgb(0 0 0 / .2)}.divide-transparent\/25>:not([hidden])~:not([hidden]){border-color:rgb(0 0 0 / .25)}.divide-transparent\/30>:not([hidden])~:not([hidden]){border-color:rgb(0 0 0 / .3)}.divide-transparent\/40>:not([hidden])~:not([hidden]){border-color:rgb(0 0 0 / .4)}.divide-transparent\/5>:not([hidden])~:not([hidden]){border-color:rgb(0 0 0 / .05)}.divide-transparent\/50>:not([hidden])~:not([hidden]){border-color:rgb(0 0 0 / .5)}.divide-transparent\/60>:not([hidden])~:not([hidden]){border-color:rgb(0 0 0 / .6)}.divide-transparent\/70>:not([hidden])~:not([hidden]){border-color:rgb(0 0 0 / .7)}.divide-transparent\/75>:not([hidden])~:not([hidden]){border-color:rgb(0 0 0 / .75)}.divide-transparent\/80>:not([hidden])~:not([hidden]){border-color:rgb(0 0 0 / .8)}.divide-transparent\/90>:not([hidden])~:not([hidden]){border-color:rgb(0 0 0 / .9)}.divide-transparent\/95>:not([hidden])~:not([hidden]){border-color:rgb(0 0 0 / .95)}.divide-warning>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/1))}.divide-warning-content>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/1))}.divide-warning-content\/0>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/0))}.divide-warning-content\/10>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.1))}.divide-warning-content\/100>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/1))}.divide-warning-content\/20>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.2))}.divide-warning-content\/25>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.25))}.divide-warning-content\/30>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.3))}.divide-warning-content\/40>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.4))}.divide-warning-content\/5>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.05))}.divide-warning-content\/50>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.5))}.divide-warning-content\/60>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.6))}.divide-warning-content\/70>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.7))}.divide-warning-content\/75>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.75))}.divide-warning-content\/80>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.8))}.divide-warning-content\/90>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.9))}.divide-warning-content\/95>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.95))}.divide-warning\/0>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/0))}.divide-warning\/10>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.1))}.divide-warning\/100>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/1))}.divide-warning\/20>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.2))}.divide-warning\/25>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.25))}.divide-warning\/30>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.3))}.divide-warning\/40>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.4))}.divide-warning\/5>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.05))}.divide-warning\/50>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.5))}.divide-warning\/60>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.6))}.divide-warning\/70>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.7))}.divide-warning\/75>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.75))}.divide-warning\/80>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.8))}.divide-warning\/90>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.9))}.divide-warning\/95>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.95))}.rounded-badge{border-radius:var(--rounded-badge,1.9rem)}.rounded-box{border-radius:var(--rounded-box,1rem)}.rounded-btn{border-radius:var(--rounded-btn,.5rem)}.rounded-b-badge{border-bottom-right-radius:var(--rounded-badge,1.9rem);border-bottom-left-radius:var(--rounded-badge,1.9rem)}.rounded-b-box{border-bottom-right-radius:var(--rounded-box,1rem);border-bottom-left-radius:var(--rounded-box,1rem)}.rounded-b-btn{border-bottom-right-radius:var(--rounded-btn,.5rem);border-bottom-left-radius:var(--rounded-btn,.5rem)}.rounded-e-badge{border-start-end-radius:var(--rounded-badge,1.9rem);border-end-end-radius:var(--rounded-badge,1.9rem)}.rounded-e-box{border-start-end-radius:var(--rounded-box,1rem);border-end-end-radius:var(--rounded-box,1rem)}.rounded-e-btn{border-start-end-radius:var(--rounded-btn,0.5rem);border-end-end-radius:var(--rounded-btn,0.5rem)}.rounded-l-badge{border-top-left-radius:var(--rounded-badge,1.9rem);border-bottom-left-radius:var(--rounded-badge,1.9rem)}.rounded-l-box{border-top-left-radius:var(--rounded-box,1rem);border-bottom-left-radius:var(--rounded-box,1rem)}.rounded-l-btn{border-top-left-radius:var(--rounded-btn,.5rem);border-bottom-left-radius:var(--rounded-btn,.5rem)}.rounded-r-badge{border-top-right-radius:var(--rounded-badge,1.9rem);border-bottom-right-radius:var(--rounded-badge,1.9rem)}.rounded-r-box{border-top-right-radius:var(--rounded-box,1rem);border-bottom-right-radius:var(--rounded-box,1rem)}.rounded-r-btn{border-top-right-radius:var(--rounded-btn,.5rem);border-bottom-right-radius:var(--rounded-btn,.5rem)}.rounded-s-badge{border-start-start-radius:var(--rounded-badge,1.9rem);border-end-start-radius:var(--rounded-badge,1.9rem)}.rounded-s-box{border-start-start-radius:var(--rounded-box,1rem);border-end-start-radius:var(--rounded-box,1rem)}.rounded-s-btn{border-start-start-radius:var(--rounded-btn,0.5rem);border-end-start-radius:var(--rounded-btn,0.5rem)}.rounded-t-badge{border-top-left-radius:var(--rounded-badge,1.9rem);border-top-right-radius:var(--rounded-badge,1.9rem)}.rounded-t-box{border-top-left-radius:var(--rounded-box,1rem);border-top-right-radius:var(--rounded-box,1rem)}.rounded-t-btn{border-top-left-radius:var(--rounded-btn,.5rem);border-top-right-radius:var(--rounded-btn,.5rem)}.rounded-bl-badge{border-bottom-left-radius:var(--rounded-badge,1.9rem)}.rounded-bl-box{border-bottom-left-radius:var(--rounded-box,1rem)}.rounded-bl-btn{border-bottom-left-radius:var(--rounded-btn,.5rem)}.rounded-br-badge{border-bottom-right-radius:var(--rounded-badge,1.9rem)}.rounded-br-box{border-bottom-right-radius:var(--rounded-box,1rem)}.rounded-br-btn{border-bottom-right-radius:var(--rounded-btn,.5rem)}.rounded-ee-badge{border-end-end-radius:var(--rounded-badge,1.9rem)}.rounded-ee-box{border-end-end-radius:var(--rounded-box,1rem)}.rounded-ee-btn{border-end-end-radius:var(--rounded-btn,0.5rem)}.rounded-es-badge{border-end-start-radius:var(--rounded-badge,1.9rem)}.rounded-es-box{border-end-start-radius:var(--rounded-box,1rem)}.rounded-es-btn{border-end-start-radius:var(--rounded-btn,0.5rem)}.rounded-se-badge{border-start-end-radius:var(--rounded-badge,1.9rem)}.rounded-se-box{border-start-end-radius:var(--rounded-box,1rem)}.rounded-se-btn{border-start-end-radius:var(--rounded-btn,0.5rem)}.rounded-ss-badge{border-start-start-radius:var(--rounded-badge,1.9rem)}.rounded-ss-box{border-start-start-radius:var(--rounded-box,1rem)}.rounded-ss-btn{border-start-start-radius:var(--rounded-btn,0.5rem)}.rounded-tl-badge{border-top-left-radius:var(--rounded-badge,1.9rem)}.rounded-tl-box{border-top-left-radius:var(--rounded-box,1rem)}.rounded-tl-btn{border-top-left-radius:var(--rounded-btn,.5rem)}.rounded-tr-badge{border-top-right-radius:var(--rounded-badge,1.9rem)}.rounded-tr-box{border-top-right-radius:var(--rounded-box,1rem)}.rounded-tr-btn{border-top-right-radius:var(--rounded-btn,.5rem)}.border-accent{border-color:var(--fallback-a,oklch(var(--a)/1))}.border-accent-content{border-color:var(--fallback-ac,oklch(var(--ac)/1))}.border-accent-content\/0{border-color:var(--fallback-ac,oklch(var(--ac)/0))}.border-accent-content\/10{border-color:var(--fallback-ac,oklch(var(--ac)/.1))}.border-accent-content\/100{border-color:var(--fallback-ac,oklch(var(--ac)/1))}.border-accent-content\/20{border-color:var(--fallback-ac,oklch(var(--ac)/.2))}.border-accent-content\/25{border-color:var(--fallback-ac,oklch(var(--ac)/.25))}.border-accent-content\/30{border-color:var(--fallback-ac,oklch(var(--ac)/.3))}.border-accent-content\/40{border-color:var(--fallback-ac,oklch(var(--ac)/.4))}.border-accent-content\/5{border-color:var(--fallback-ac,oklch(var(--ac)/.05))}.border-accent-content\/50{border-color:var(--fallback-ac,oklch(var(--ac)/.5))}.border-accent-content\/60{border-color:var(--fallback-ac,oklch(var(--ac)/.6))}.border-accent-content\/70{border-color:var(--fallback-ac,oklch(var(--ac)/.7))}.border-accent-content\/75{border-color:var(--fallback-ac,oklch(var(--ac)/.75))}.border-accent-content\/80{border-color:var(--fallback-ac,oklch(var(--ac)/.8))}.border-accent-content\/90{border-color:var(--fallback-ac,oklch(var(--ac)/.9))}.border-accent-content\/95{border-color:var(--fallback-ac,oklch(var(--ac)/.95))}.border-accent\/0{border-color:var(--fallback-a,oklch(var(--a)/0))}.border-accent\/10{border-color:var(--fallback-a,oklch(var(--a)/.1))}.border-accent\/100{border-color:var(--fallback-a,oklch(var(--a)/1))}.border-accent\/20{border-color:var(--fallback-a,oklch(var(--a)/.2))}.border-accent\/25{border-color:var(--fallback-a,oklch(var(--a)/.25))}.border-accent\/30{border-color:var(--fallback-a,oklch(var(--a)/.3))}.border-accent\/40{border-color:var(--fallback-a,oklch(var(--a)/.4))}.border-accent\/5{border-color:var(--fallback-a,oklch(var(--a)/.05))}.border-accent\/50{border-color:var(--fallback-a,oklch(var(--a)/.5))}.border-accent\/60{border-color:var(--fallback-a,oklch(var(--a)/.6))}.border-accent\/70{border-color:var(--fallback-a,oklch(var(--a)/.7))}.border-accent\/75{border-color:var(--fallback-a,oklch(var(--a)/.75))}.border-accent\/80{border-color:var(--fallback-a,oklch(var(--a)/.8))}.border-accent\/90{border-color:var(--fallback-a,oklch(var(--a)/.9))}.border-accent\/95{border-color:var(--fallback-a,oklch(var(--a)/.95))}.border-base-100{border-color:var(--fallback-b1,oklch(var(--b1)/1))}.border-base-100\/0{border-color:var(--fallback-b1,oklch(var(--b1)/0))}.border-base-100\/10{border-color:var(--fallback-b1,oklch(var(--b1)/.1))}.border-base-100\/100{border-color:var(--fallback-b1,oklch(var(--b1)/1))}.border-base-100\/20{border-color:var(--fallback-b1,oklch(var(--b1)/.2))}.border-base-100\/25{border-color:var(--fallback-b1,oklch(var(--b1)/.25))}.border-base-100\/30{border-color:var(--fallback-b1,oklch(var(--b1)/.3))}.border-base-100\/40{border-color:var(--fallback-b1,oklch(var(--b1)/.4))}.border-base-100\/5{border-color:var(--fallback-b1,oklch(var(--b1)/.05))}.border-base-100\/50{border-color:var(--fallback-b1,oklch(var(--b1)/.5))}.border-base-100\/60{border-color:var(--fallback-b1,oklch(var(--b1)/.6))}.border-base-100\/70{border-color:var(--fallback-b1,oklch(var(--b1)/.7))}.border-base-100\/75{border-color:var(--fallback-b1,oklch(var(--b1)/.75))}.border-base-100\/80{border-color:var(--fallback-b1,oklch(var(--b1)/.8))}.border-base-100\/90{border-color:var(--fallback-b1,oklch(var(--b1)/.9))}.border-base-100\/95{border-color:var(--fallback-b1,oklch(var(--b1)/.95))}.border-base-200{border-color:var(--fallback-b2,oklch(var(--b2)/1))}.border-base-200\/0{border-color:var(--fallback-b2,oklch(var(--b2)/0))}.border-base-200\/10{border-color:var(--fallback-b2,oklch(var(--b2)/.1))}.border-base-200\/100{border-color:var(--fallback-b2,oklch(var(--b2)/1))}.border-base-200\/20{border-color:var(--fallback-b2,oklch(var(--b2)/.2))}.border-base-200\/25{border-color:var(--fallback-b2,oklch(var(--b2)/.25))}.border-base-200\/30{border-color:var(--fallback-b2,oklch(var(--b2)/.3))}.border-base-200\/40{border-color:var(--fallback-b2,oklch(var(--b2)/.4))}.border-base-200\/5{border-color:var(--fallback-b2,oklch(var(--b2)/.05))}.border-base-200\/50{border-color:var(--fallback-b2,oklch(var(--b2)/.5))}.border-base-200\/60{border-color:var(--fallback-b2,oklch(var(--b2)/.6))}.border-base-200\/70{border-color:var(--fallback-b2,oklch(var(--b2)/.7))}.border-base-200\/75{border-color:var(--fallback-b2,oklch(var(--b2)/.75))}.border-base-200\/80{border-color:var(--fallback-b2,oklch(var(--b2)/.8))}.border-base-200\/90{border-color:var(--fallback-b2,oklch(var(--b2)/.9))}.border-base-200\/95{border-color:var(--fallback-b2,oklch(var(--b2)/.95))}.border-base-300{border-color:var(--fallback-b3,oklch(var(--b3)/1))}.border-base-300\/0{border-color:var(--fallback-b3,oklch(var(--b3)/0))}.border-base-300\/10{border-color:var(--fallback-b3,oklch(var(--b3)/.1))}.border-base-300\/100{border-color:var(--fallback-b3,oklch(var(--b3)/1))}.border-base-300\/20{border-color:var(--fallback-b3,oklch(var(--b3)/.2))}.border-base-300\/25{border-color:var(--fallback-b3,oklch(var(--b3)/.25))}.border-base-300\/30{border-color:var(--fallback-b3,oklch(var(--b3)/.3))}.border-base-300\/40{border-color:var(--fallback-b3,oklch(var(--b3)/.4))}.border-base-300\/5{border-color:var(--fallback-b3,oklch(var(--b3)/.05))}.border-base-300\/50{border-color:var(--fallback-b3,oklch(var(--b3)/.5))}.border-base-300\/60{border-color:var(--fallback-b3,oklch(var(--b3)/.6))}.border-base-300\/70{border-color:var(--fallback-b3,oklch(var(--b3)/.7))}.border-base-300\/75{border-color:var(--fallback-b3,oklch(var(--b3)/.75))}.border-base-300\/80{border-color:var(--fallback-b3,oklch(var(--b3)/.8))}.border-base-300\/90{border-color:var(--fallback-b3,oklch(var(--b3)/.9))}.border-base-300\/95{border-color:var(--fallback-b3,oklch(var(--b3)/.95))}.border-base-content{border-color:var(--fallback-bc,oklch(var(--bc)/1))}.border-base-content\/0{border-color:var(--fallback-bc,oklch(var(--bc)/0))}.border-base-content\/10{border-color:var(--fallback-bc,oklch(var(--bc)/.1))}.border-base-content\/100{border-color:var(--fallback-bc,oklch(var(--bc)/1))}.border-base-content\/20{border-color:var(--fallback-bc,oklch(var(--bc)/.2))}.border-base-content\/25{border-color:var(--fallback-bc,oklch(var(--bc)/.25))}.border-base-content\/30{border-color:var(--fallback-bc,oklch(var(--bc)/.3))}.border-base-content\/40{border-color:var(--fallback-bc,oklch(var(--bc)/.4))}.border-base-content\/5{border-color:var(--fallback-bc,oklch(var(--bc)/.05))}.border-base-content\/50{border-color:var(--fallback-bc,oklch(var(--bc)/.5))}.border-base-content\/60{border-color:var(--fallback-bc,oklch(var(--bc)/.6))}.border-base-content\/70{border-color:var(--fallback-bc,oklch(var(--bc)/.7))}.border-base-content\/75{border-color:var(--fallback-bc,oklch(var(--bc)/.75))}.border-base-content\/80{border-color:var(--fallback-bc,oklch(var(--bc)/.8))}.border-base-content\/90{border-color:var(--fallback-bc,oklch(var(--bc)/.9))}.border-base-content\/95{border-color:var(--fallback-bc,oklch(var(--bc)/.95))}.border-current{border-color:currentColor}.border-error{border-color:var(--fallback-er,oklch(var(--er)/1))}.border-error-content{border-color:var(--fallback-erc,oklch(var(--erc)/1))}.border-error-content\/0{border-color:var(--fallback-erc,oklch(var(--erc)/0))}.border-error-content\/10{border-color:var(--fallback-erc,oklch(var(--erc)/.1))}.border-error-content\/100{border-color:var(--fallback-erc,oklch(var(--erc)/1))}.border-error-content\/20{border-color:var(--fallback-erc,oklch(var(--erc)/.2))}.border-error-content\/25{border-color:var(--fallback-erc,oklch(var(--erc)/.25))}.border-error-content\/30{border-color:var(--fallback-erc,oklch(var(--erc)/.3))}.border-error-content\/40{border-color:var(--fallback-erc,oklch(var(--erc)/.4))}.border-error-content\/5{border-color:var(--fallback-erc,oklch(var(--erc)/.05))}.border-error-content\/50{border-color:var(--fallback-erc,oklch(var(--erc)/.5))}.border-error-content\/60{border-color:var(--fallback-erc,oklch(var(--erc)/.6))}.border-error-content\/70{border-color:var(--fallback-erc,oklch(var(--erc)/.7))}.border-error-content\/75{border-color:var(--fallback-erc,oklch(var(--erc)/.75))}.border-error-content\/80{border-color:var(--fallback-erc,oklch(var(--erc)/.8))}.border-error-content\/90{border-color:var(--fallback-erc,oklch(var(--erc)/.9))}.border-error-content\/95{border-color:var(--fallback-erc,oklch(var(--erc)/.95))}.border-error\/0{border-color:var(--fallback-er,oklch(var(--er)/0))}.border-error\/10{border-color:var(--fallback-er,oklch(var(--er)/.1))}.border-error\/100{border-color:var(--fallback-er,oklch(var(--er)/1))}.border-error\/20{border-color:var(--fallback-er,oklch(var(--er)/.2))}.border-error\/25{border-color:var(--fallback-er,oklch(var(--er)/.25))}.border-error\/30{border-color:var(--fallback-er,oklch(var(--er)/.3))}.border-error\/40{border-color:var(--fallback-er,oklch(var(--er)/.4))}.border-error\/5{border-color:var(--fallback-er,oklch(var(--er)/.05))}.border-error\/50{border-color:var(--fallback-er,oklch(var(--er)/.5))}.border-error\/60{border-color:var(--fallback-er,oklch(var(--er)/.6))}.border-error\/70{border-color:var(--fallback-er,oklch(var(--er)/.7))}.border-error\/75{border-color:var(--fallback-er,oklch(var(--er)/.75))}.border-error\/80{border-color:var(--fallback-er,oklch(var(--er)/.8))}.border-error\/90{border-color:var(--fallback-er,oklch(var(--er)/.9))}.border-error\/95{border-color:var(--fallback-er,oklch(var(--er)/.95))}.border-info{border-color:var(--fallback-in,oklch(var(--in)/1))}.border-info-content{border-color:var(--fallback-inc,oklch(var(--inc)/1))}.border-info-content\/0{border-color:var(--fallback-inc,oklch(var(--inc)/0))}.border-info-content\/10{border-color:var(--fallback-inc,oklch(var(--inc)/.1))}.border-info-content\/100{border-color:var(--fallback-inc,oklch(var(--inc)/1))}.border-info-content\/20{border-color:var(--fallback-inc,oklch(var(--inc)/.2))}.border-info-content\/25{border-color:var(--fallback-inc,oklch(var(--inc)/.25))}.border-info-content\/30{border-color:var(--fallback-inc,oklch(var(--inc)/.3))}.border-info-content\/40{border-color:var(--fallback-inc,oklch(var(--inc)/.4))}.border-info-content\/5{border-color:var(--fallback-inc,oklch(var(--inc)/.05))}.border-info-content\/50{border-color:var(--fallback-inc,oklch(var(--inc)/.5))}.border-info-content\/60{border-color:var(--fallback-inc,oklch(var(--inc)/.6))}.border-info-content\/70{border-color:var(--fallback-inc,oklch(var(--inc)/.7))}.border-info-content\/75{border-color:var(--fallback-inc,oklch(var(--inc)/.75))}.border-info-content\/80{border-color:var(--fallback-inc,oklch(var(--inc)/.8))}.border-info-content\/90{border-color:var(--fallback-inc,oklch(var(--inc)/.9))}.border-info-content\/95{border-color:var(--fallback-inc,oklch(var(--inc)/.95))}.border-info\/0{border-color:var(--fallback-in,oklch(var(--in)/0))}.border-info\/10{border-color:var(--fallback-in,oklch(var(--in)/.1))}.border-info\/100{border-color:var(--fallback-in,oklch(var(--in)/1))}.border-info\/20{border-color:var(--fallback-in,oklch(var(--in)/.2))}.border-info\/25{border-color:var(--fallback-in,oklch(var(--in)/.25))}.border-info\/30{border-color:var(--fallback-in,oklch(var(--in)/.3))}.border-info\/40{border-color:var(--fallback-in,oklch(var(--in)/.4))}.border-info\/5{border-color:var(--fallback-in,oklch(var(--in)/.05))}.border-info\/50{border-color:var(--fallback-in,oklch(var(--in)/.5))}.border-info\/60{border-color:var(--fallback-in,oklch(var(--in)/.6))}.border-info\/70{border-color:var(--fallback-in,oklch(var(--in)/.7))}.border-info\/75{border-color:var(--fallback-in,oklch(var(--in)/.75))}.border-info\/80{border-color:var(--fallback-in,oklch(var(--in)/.8))}.border-info\/90{border-color:var(--fallback-in,oklch(var(--in)/.9))}.border-info\/95{border-color:var(--fallback-in,oklch(var(--in)/.95))}.border-neutral{border-color:var(--fallback-n,oklch(var(--n)/1))}.border-neutral-content{border-color:var(--fallback-nc,oklch(var(--nc)/1))}.border-neutral-content\/0{border-color:var(--fallback-nc,oklch(var(--nc)/0))}.border-neutral-content\/10{border-color:var(--fallback-nc,oklch(var(--nc)/.1))}.border-neutral-content\/100{border-color:var(--fallback-nc,oklch(var(--nc)/1))}.border-neutral-content\/20{border-color:var(--fallback-nc,oklch(var(--nc)/.2))}.border-neutral-content\/25{border-color:var(--fallback-nc,oklch(var(--nc)/.25))}.border-neutral-content\/30{border-color:var(--fallback-nc,oklch(var(--nc)/.3))}.border-neutral-content\/40{border-color:var(--fallback-nc,oklch(var(--nc)/.4))}.border-neutral-content\/5{border-color:var(--fallback-nc,oklch(var(--nc)/.05))}.border-neutral-content\/50{border-color:var(--fallback-nc,oklch(var(--nc)/.5))}.border-neutral-content\/60{border-color:var(--fallback-nc,oklch(var(--nc)/.6))}.border-neutral-content\/70{border-color:var(--fallback-nc,oklch(var(--nc)/.7))}.border-neutral-content\/75{border-color:var(--fallback-nc,oklch(var(--nc)/.75))}.border-neutral-content\/80{border-color:var(--fallback-nc,oklch(var(--nc)/.8))}.border-neutral-content\/90{border-color:var(--fallback-nc,oklch(var(--nc)/.9))}.border-neutral-content\/95{border-color:var(--fallback-nc,oklch(var(--nc)/.95))}.border-neutral\/0{border-color:var(--fallback-n,oklch(var(--n)/0))}.border-neutral\/10{border-color:var(--fallback-n,oklch(var(--n)/.1))}.border-neutral\/100{border-color:var(--fallback-n,oklch(var(--n)/1))}.border-neutral\/20{border-color:var(--fallback-n,oklch(var(--n)/.2))}.border-neutral\/25{border-color:var(--fallback-n,oklch(var(--n)/.25))}.border-neutral\/30{border-color:var(--fallback-n,oklch(var(--n)/.3))}.border-neutral\/40{border-color:var(--fallback-n,oklch(var(--n)/.4))}.border-neutral\/5{border-color:var(--fallback-n,oklch(var(--n)/.05))}.border-neutral\/50{border-color:var(--fallback-n,oklch(var(--n)/.5))}.border-neutral\/60{border-color:var(--fallback-n,oklch(var(--n)/.6))}.border-neutral\/70{border-color:var(--fallback-n,oklch(var(--n)/.7))}.border-neutral\/75{border-color:var(--fallback-n,oklch(var(--n)/.75))}.border-neutral\/80{border-color:var(--fallback-n,oklch(var(--n)/.8))}.border-neutral\/90{border-color:var(--fallback-n,oklch(var(--n)/.9))}.border-neutral\/95{border-color:var(--fallback-n,oklch(var(--n)/.95))}.border-primary{border-color:var(--fallback-p,oklch(var(--p)/1))}.border-primary-content{border-color:var(--fallback-pc,oklch(var(--pc)/1))}.border-primary-content\/0{border-color:var(--fallback-pc,oklch(var(--pc)/0))}.border-primary-content\/10{border-color:var(--fallback-pc,oklch(var(--pc)/.1))}.border-primary-content\/100{border-color:var(--fallback-pc,oklch(var(--pc)/1))}.border-primary-content\/20{border-color:var(--fallback-pc,oklch(var(--pc)/.2))}.border-primary-content\/25{border-color:var(--fallback-pc,oklch(var(--pc)/.25))}.border-primary-content\/30{border-color:var(--fallback-pc,oklch(var(--pc)/.3))}.border-primary-content\/40{border-color:var(--fallback-pc,oklch(var(--pc)/.4))}.border-primary-content\/5{border-color:var(--fallback-pc,oklch(var(--pc)/.05))}.border-primary-content\/50{border-color:var(--fallback-pc,oklch(var(--pc)/.5))}.border-primary-content\/60{border-color:var(--fallback-pc,oklch(var(--pc)/.6))}.border-primary-content\/70{border-color:var(--fallback-pc,oklch(var(--pc)/.7))}.border-primary-content\/75{border-color:var(--fallback-pc,oklch(var(--pc)/.75))}.border-primary-content\/80{border-color:var(--fallback-pc,oklch(var(--pc)/.8))}.border-primary-content\/90{border-color:var(--fallback-pc,oklch(var(--pc)/.9))}.border-primary-content\/95{border-color:var(--fallback-pc,oklch(var(--pc)/.95))}.border-primary\/0{border-color:var(--fallback-p,oklch(var(--p)/0))}.border-primary\/10{border-color:var(--fallback-p,oklch(var(--p)/.1))}.border-primary\/100{border-color:var(--fallback-p,oklch(var(--p)/1))}.border-primary\/20{border-color:var(--fallback-p,oklch(var(--p)/.2))}.border-primary\/25{border-color:var(--fallback-p,oklch(var(--p)/.25))}.border-primary\/30{border-color:var(--fallback-p,oklch(var(--p)/.3))}.border-primary\/40{border-color:var(--fallback-p,oklch(var(--p)/.4))}.border-primary\/5{border-color:var(--fallback-p,oklch(var(--p)/.05))}.border-primary\/50{border-color:var(--fallback-p,oklch(var(--p)/.5))}.border-primary\/60{border-color:var(--fallback-p,oklch(var(--p)/.6))}.border-primary\/70{border-color:var(--fallback-p,oklch(var(--p)/.7))}.border-primary\/75{border-color:var(--fallback-p,oklch(var(--p)/.75))}.border-primary\/80{border-color:var(--fallback-p,oklch(var(--p)/.8))}.border-primary\/90{border-color:var(--fallback-p,oklch(var(--p)/.9))}.border-primary\/95{border-color:var(--fallback-p,oklch(var(--p)/.95))}.border-secondary{border-color:var(--fallback-s,oklch(var(--s)/1))}.border-secondary-content{border-color:var(--fallback-sc,oklch(var(--sc)/1))}.border-secondary-content\/0{border-color:var(--fallback-sc,oklch(var(--sc)/0))}.border-secondary-content\/10{border-color:var(--fallback-sc,oklch(var(--sc)/.1))}.border-secondary-content\/100{border-color:var(--fallback-sc,oklch(var(--sc)/1))}.border-secondary-content\/20{border-color:var(--fallback-sc,oklch(var(--sc)/.2))}.border-secondary-content\/25{border-color:var(--fallback-sc,oklch(var(--sc)/.25))}.border-secondary-content\/30{border-color:var(--fallback-sc,oklch(var(--sc)/.3))}.border-secondary-content\/40{border-color:var(--fallback-sc,oklch(var(--sc)/.4))}.border-secondary-content\/5{border-color:var(--fallback-sc,oklch(var(--sc)/.05))}.border-secondary-content\/50{border-color:var(--fallback-sc,oklch(var(--sc)/.5))}.border-secondary-content\/60{border-color:var(--fallback-sc,oklch(var(--sc)/.6))}.border-secondary-content\/70{border-color:var(--fallback-sc,oklch(var(--sc)/.7))}.border-secondary-content\/75{border-color:var(--fallback-sc,oklch(var(--sc)/.75))}.border-secondary-content\/80{border-color:var(--fallback-sc,oklch(var(--sc)/.8))}.border-secondary-content\/90{border-color:var(--fallback-sc,oklch(var(--sc)/.9))}.border-secondary-content\/95{border-color:var(--fallback-sc,oklch(var(--sc)/.95))}.border-secondary\/0{border-color:var(--fallback-s,oklch(var(--s)/0))}.border-secondary\/10{border-color:var(--fallback-s,oklch(var(--s)/.1))}.border-secondary\/100{border-color:var(--fallback-s,oklch(var(--s)/1))}.border-secondary\/20{border-color:var(--fallback-s,oklch(var(--s)/.2))}.border-secondary\/25{border-color:var(--fallback-s,oklch(var(--s)/.25))}.border-secondary\/30{border-color:var(--fallback-s,oklch(var(--s)/.3))}.border-secondary\/40{border-color:var(--fallback-s,oklch(var(--s)/.4))}.border-secondary\/5{border-color:var(--fallback-s,oklch(var(--s)/.05))}.border-secondary\/50{border-color:var(--fallback-s,oklch(var(--s)/.5))}.border-secondary\/60{border-color:var(--fallback-s,oklch(var(--s)/.6))}.border-secondary\/70{border-color:var(--fallback-s,oklch(var(--s)/.7))}.border-secondary\/75{border-color:var(--fallback-s,oklch(var(--s)/.75))}.border-secondary\/80{border-color:var(--fallback-s,oklch(var(--s)/.8))}.border-secondary\/90{border-color:var(--fallback-s,oklch(var(--s)/.9))}.border-secondary\/95{border-color:var(--fallback-s,oklch(var(--s)/.95))}.border-success{border-color:var(--fallback-su,oklch(var(--su)/1))}.border-success-content{border-color:var(--fallback-suc,oklch(var(--suc)/1))}.border-success-content\/0{border-color:var(--fallback-suc,oklch(var(--suc)/0))}.border-success-content\/10{border-color:var(--fallback-suc,oklch(var(--suc)/.1))}.border-success-content\/100{border-color:var(--fallback-suc,oklch(var(--suc)/1))}.border-success-content\/20{border-color:var(--fallback-suc,oklch(var(--suc)/.2))}.border-success-content\/25{border-color:var(--fallback-suc,oklch(var(--suc)/.25))}.border-success-content\/30{border-color:var(--fallback-suc,oklch(var(--suc)/.3))}.border-success-content\/40{border-color:var(--fallback-suc,oklch(var(--suc)/.4))}.border-success-content\/5{border-color:var(--fallback-suc,oklch(var(--suc)/.05))}.border-success-content\/50{border-color:var(--fallback-suc,oklch(var(--suc)/.5))}.border-success-content\/60{border-color:var(--fallback-suc,oklch(var(--suc)/.6))}.border-success-content\/70{border-color:var(--fallback-suc,oklch(var(--suc)/.7))}.border-success-content\/75{border-color:var(--fallback-suc,oklch(var(--suc)/.75))}.border-success-content\/80{border-color:var(--fallback-suc,oklch(var(--suc)/.8))}.border-success-content\/90{border-color:var(--fallback-suc,oklch(var(--suc)/.9))}.border-success-content\/95{border-color:var(--fallback-suc,oklch(var(--suc)/.95))}.border-success\/0{border-color:var(--fallback-su,oklch(var(--su)/0))}.border-success\/10{border-color:var(--fallback-su,oklch(var(--su)/.1))}.border-success\/100{border-color:var(--fallback-su,oklch(var(--su)/1))}.border-success\/20{border-color:var(--fallback-su,oklch(var(--su)/.2))}.border-success\/25{border-color:var(--fallback-su,oklch(var(--su)/.25))}.border-success\/30{border-color:var(--fallback-su,oklch(var(--su)/.3))}.border-success\/40{border-color:var(--fallback-su,oklch(var(--su)/.4))}.border-success\/5{border-color:var(--fallback-su,oklch(var(--su)/.05))}.border-success\/50{border-color:var(--fallback-su,oklch(var(--su)/.5))}.border-success\/60{border-color:var(--fallback-su,oklch(var(--su)/.6))}.border-success\/70{border-color:var(--fallback-su,oklch(var(--su)/.7))}.border-success\/75{border-color:var(--fallback-su,oklch(var(--su)/.75))}.border-success\/80{border-color:var(--fallback-su,oklch(var(--su)/.8))}.border-success\/90{border-color:var(--fallback-su,oklch(var(--su)/.9))}.border-success\/95{border-color:var(--fallback-su,oklch(var(--su)/.95))}.border-transparent{border-color:transparent}.border-transparent\/0{border-color:rgb(0 0 0 / 0)}.border-transparent\/10{border-color:rgb(0 0 0 / .1)}.border-transparent\/100{border-color:rgb(0 0 0 / 1)}.border-transparent\/20{border-color:rgb(0 0 0 / .2)}.border-transparent\/25{border-color:rgb(0 0 0 / .25)}.border-transparent\/30{border-color:rgb(0 0 0 / .3)}.border-transparent\/40{border-color:rgb(0 0 0 / .4)}.border-transparent\/5{border-color:rgb(0 0 0 / .05)}.border-transparent\/50{border-color:rgb(0 0 0 / .5)}.border-transparent\/60{border-color:rgb(0 0 0 / .6)}.border-transparent\/70{border-color:rgb(0 0 0 / .7)}.border-transparent\/75{border-color:rgb(0 0 0 / .75)}.border-transparent\/80{border-color:rgb(0 0 0 / .8)}.border-transparent\/90{border-color:rgb(0 0 0 / .9)}.border-transparent\/95{border-color:rgb(0 0 0 / .95)}.border-warning{border-color:var(--fallback-wa,oklch(var(--wa)/1))}.border-warning-content{border-color:var(--fallback-wac,oklch(var(--wac)/1))}.border-warning-content\/0{border-color:var(--fallback-wac,oklch(var(--wac)/0))}.border-warning-content\/10{border-color:var(--fallback-wac,oklch(var(--wac)/.1))}.border-warning-content\/100{border-color:var(--fallback-wac,oklch(var(--wac)/1))}.border-warning-content\/20{border-color:var(--fallback-wac,oklch(var(--wac)/.2))}.border-warning-content\/25{border-color:var(--fallback-wac,oklch(var(--wac)/.25))}.border-warning-content\/30{border-color:var(--fallback-wac,oklch(var(--wac)/.3))}.border-warning-content\/40{border-color:var(--fallback-wac,oklch(var(--wac)/.4))}.border-warning-content\/5{border-color:var(--fallback-wac,oklch(var(--wac)/.05))}.border-warning-content\/50{border-color:var(--fallback-wac,oklch(var(--wac)/.5))}.border-warning-content\/60{border-color:var(--fallback-wac,oklch(var(--wac)/.6))}.border-warning-content\/70{border-color:var(--fallback-wac,oklch(var(--wac)/.7))}.border-warning-content\/75{border-color:var(--fallback-wac,oklch(var(--wac)/.75))}.border-warning-content\/80{border-color:var(--fallback-wac,oklch(var(--wac)/.8))}.border-warning-content\/90{border-color:var(--fallback-wac,oklch(var(--wac)/.9))}.border-warning-content\/95{border-color:var(--fallback-wac,oklch(var(--wac)/.95))}.border-warning\/0{border-color:var(--fallback-wa,oklch(var(--wa)/0))}.border-warning\/10{border-color:var(--fallback-wa,oklch(var(--wa)/.1))}.border-warning\/100{border-color:var(--fallback-wa,oklch(var(--wa)/1))}.border-warning\/20{border-color:var(--fallback-wa,oklch(var(--wa)/.2))}.border-warning\/25{border-color:var(--fallback-wa,oklch(var(--wa)/.25))}.border-warning\/30{border-color:var(--fallback-wa,oklch(var(--wa)/.3))}.border-warning\/40{border-color:var(--fallback-wa,oklch(var(--wa)/.4))}.border-warning\/5{border-color:var(--fallback-wa,oklch(var(--wa)/.05))}.border-warning\/50{border-color:var(--fallback-wa,oklch(var(--wa)/.5))}.border-warning\/60{border-color:var(--fallback-wa,oklch(var(--wa)/.6))}.border-warning\/70{border-color:var(--fallback-wa,oklch(var(--wa)/.7))}.border-warning\/75{border-color:var(--fallback-wa,oklch(var(--wa)/.75))}.border-warning\/80{border-color:var(--fallback-wa,oklch(var(--wa)/.8))}.border-warning\/90{border-color:var(--fallback-wa,oklch(var(--wa)/.9))}.border-warning\/95{border-color:var(--fallback-wa,oklch(var(--wa)/.95))}.border-x-accent{border-left-color:var(--fallback-a,oklch(var(--a)/1));border-right-color:var(--fallback-a,oklch(var(--a)/1))}.border-x-accent-content{border-left-color:var(--fallback-ac,oklch(var(--ac)/1));border-right-color:var(--fallback-ac,oklch(var(--ac)/1))}.border-x-accent-content\/0{border-left-color:var(--fallback-ac,oklch(var(--ac)/0));border-right-color:var(--fallback-ac,oklch(var(--ac)/0))}.border-x-accent-content\/10{border-left-color:var(--fallback-ac,oklch(var(--ac)/.1));border-right-color:var(--fallback-ac,oklch(var(--ac)/.1))}.border-x-accent-content\/100{border-left-color:var(--fallback-ac,oklch(var(--ac)/1));border-right-color:var(--fallback-ac,oklch(var(--ac)/1))}.border-x-accent-content\/20{border-left-color:var(--fallback-ac,oklch(var(--ac)/.2));border-right-color:var(--fallback-ac,oklch(var(--ac)/.2))}.border-x-accent-content\/25{border-left-color:var(--fallback-ac,oklch(var(--ac)/.25));border-right-color:var(--fallback-ac,oklch(var(--ac)/.25))}.border-x-accent-content\/30{border-left-color:var(--fallback-ac,oklch(var(--ac)/.3));border-right-color:var(--fallback-ac,oklch(var(--ac)/.3))}.border-x-accent-content\/40{border-left-color:var(--fallback-ac,oklch(var(--ac)/.4));border-right-color:var(--fallback-ac,oklch(var(--ac)/.4))}.border-x-accent-content\/5{border-left-color:var(--fallback-ac,oklch(var(--ac)/.05));border-right-color:var(--fallback-ac,oklch(var(--ac)/.05))}.border-x-accent-content\/50{border-left-color:var(--fallback-ac,oklch(var(--ac)/.5));border-right-color:var(--fallback-ac,oklch(var(--ac)/.5))}.border-x-accent-content\/60{border-left-color:var(--fallback-ac,oklch(var(--ac)/.6));border-right-color:var(--fallback-ac,oklch(var(--ac)/.6))}.border-x-accent-content\/70{border-left-color:var(--fallback-ac,oklch(var(--ac)/.7));border-right-color:var(--fallback-ac,oklch(var(--ac)/.7))}.border-x-accent-content\/75{border-left-color:var(--fallback-ac,oklch(var(--ac)/.75));border-right-color:var(--fallback-ac,oklch(var(--ac)/.75))}.border-x-accent-content\/80{border-left-color:var(--fallback-ac,oklch(var(--ac)/.8));border-right-color:var(--fallback-ac,oklch(var(--ac)/.8))}.border-x-accent-content\/90{border-left-color:var(--fallback-ac,oklch(var(--ac)/.9));border-right-color:var(--fallback-ac,oklch(var(--ac)/.9))}.border-x-accent-content\/95{border-left-color:var(--fallback-ac,oklch(var(--ac)/.95));border-right-color:var(--fallback-ac,oklch(var(--ac)/.95))}.border-x-accent\/0{border-left-color:var(--fallback-a,oklch(var(--a)/0));border-right-color:var(--fallback-a,oklch(var(--a)/0))}.border-x-accent\/10{border-left-color:var(--fallback-a,oklch(var(--a)/.1));border-right-color:var(--fallback-a,oklch(var(--a)/.1))}.border-x-accent\/100{border-left-color:var(--fallback-a,oklch(var(--a)/1));border-right-color:var(--fallback-a,oklch(var(--a)/1))}.border-x-accent\/20{border-left-color:var(--fallback-a,oklch(var(--a)/.2));border-right-color:var(--fallback-a,oklch(var(--a)/.2))}.border-x-accent\/25{border-left-color:var(--fallback-a,oklch(var(--a)/.25));border-right-color:var(--fallback-a,oklch(var(--a)/.25))}.border-x-accent\/30{border-left-color:var(--fallback-a,oklch(var(--a)/.3));border-right-color:var(--fallback-a,oklch(var(--a)/.3))}.border-x-accent\/40{border-left-color:var(--fallback-a,oklch(var(--a)/.4));border-right-color:var(--fallback-a,oklch(var(--a)/.4))}.border-x-accent\/5{border-left-color:var(--fallback-a,oklch(var(--a)/.05));border-right-color:var(--fallback-a,oklch(var(--a)/.05))}.border-x-accent\/50{border-left-color:var(--fallback-a,oklch(var(--a)/.5));border-right-color:var(--fallback-a,oklch(var(--a)/.5))}.border-x-accent\/60{border-left-color:var(--fallback-a,oklch(var(--a)/.6));border-right-color:var(--fallback-a,oklch(var(--a)/.6))}.border-x-accent\/70{border-left-color:var(--fallback-a,oklch(var(--a)/.7));border-right-color:var(--fallback-a,oklch(var(--a)/.7))}.border-x-accent\/75{border-left-color:var(--fallback-a,oklch(var(--a)/.75));border-right-color:var(--fallback-a,oklch(var(--a)/.75))}.border-x-accent\/80{border-left-color:var(--fallback-a,oklch(var(--a)/.8));border-right-color:var(--fallback-a,oklch(var(--a)/.8))}.border-x-accent\/90{border-left-color:var(--fallback-a,oklch(var(--a)/.9));border-right-color:var(--fallback-a,oklch(var(--a)/.9))}.border-x-accent\/95{border-left-color:var(--fallback-a,oklch(var(--a)/.95));border-right-color:var(--fallback-a,oklch(var(--a)/.95))}.border-x-base-100{border-left-color:var(--fallback-b1,oklch(var(--b1)/1));border-right-color:var(--fallback-b1,oklch(var(--b1)/1))}.border-x-base-100\/0{border-left-color:var(--fallback-b1,oklch(var(--b1)/0));border-right-color:var(--fallback-b1,oklch(var(--b1)/0))}.border-x-base-100\/10{border-left-color:var(--fallback-b1,oklch(var(--b1)/.1));border-right-color:var(--fallback-b1,oklch(var(--b1)/.1))}.border-x-base-100\/100{border-left-color:var(--fallback-b1,oklch(var(--b1)/1));border-right-color:var(--fallback-b1,oklch(var(--b1)/1))}.border-x-base-100\/20{border-left-color:var(--fallback-b1,oklch(var(--b1)/.2));border-right-color:var(--fallback-b1,oklch(var(--b1)/.2))}.border-x-base-100\/25{border-left-color:var(--fallback-b1,oklch(var(--b1)/.25));border-right-color:var(--fallback-b1,oklch(var(--b1)/.25))}.border-x-base-100\/30{border-left-color:var(--fallback-b1,oklch(var(--b1)/.3));border-right-color:var(--fallback-b1,oklch(var(--b1)/.3))}.border-x-base-100\/40{border-left-color:var(--fallback-b1,oklch(var(--b1)/.4));border-right-color:var(--fallback-b1,oklch(var(--b1)/.4))}.border-x-base-100\/5{border-left-color:var(--fallback-b1,oklch(var(--b1)/.05));border-right-color:var(--fallback-b1,oklch(var(--b1)/.05))}.border-x-base-100\/50{border-left-color:var(--fallback-b1,oklch(var(--b1)/.5));border-right-color:var(--fallback-b1,oklch(var(--b1)/.5))}.border-x-base-100\/60{border-left-color:var(--fallback-b1,oklch(var(--b1)/.6));border-right-color:var(--fallback-b1,oklch(var(--b1)/.6))}.border-x-base-100\/70{border-left-color:var(--fallback-b1,oklch(var(--b1)/.7));border-right-color:var(--fallback-b1,oklch(var(--b1)/.7))}.border-x-base-100\/75{border-left-color:var(--fallback-b1,oklch(var(--b1)/.75));border-right-color:var(--fallback-b1,oklch(var(--b1)/.75))}.border-x-base-100\/80{border-left-color:var(--fallback-b1,oklch(var(--b1)/.8));border-right-color:var(--fallback-b1,oklch(var(--b1)/.8))}.border-x-base-100\/90{border-left-color:var(--fallback-b1,oklch(var(--b1)/.9));border-right-color:var(--fallback-b1,oklch(var(--b1)/.9))}.border-x-base-100\/95{border-left-color:var(--fallback-b1,oklch(var(--b1)/.95));border-right-color:var(--fallback-b1,oklch(var(--b1)/.95))}.border-x-base-200{border-left-color:var(--fallback-b2,oklch(var(--b2)/1));border-right-color:var(--fallback-b2,oklch(var(--b2)/1))}.border-x-base-200\/0{border-left-color:var(--fallback-b2,oklch(var(--b2)/0));border-right-color:var(--fallback-b2,oklch(var(--b2)/0))}.border-x-base-200\/10{border-left-color:var(--fallback-b2,oklch(var(--b2)/.1));border-right-color:var(--fallback-b2,oklch(var(--b2)/.1))}.border-x-base-200\/100{border-left-color:var(--fallback-b2,oklch(var(--b2)/1));border-right-color:var(--fallback-b2,oklch(var(--b2)/1))}.border-x-base-200\/20{border-left-color:var(--fallback-b2,oklch(var(--b2)/.2));border-right-color:var(--fallback-b2,oklch(var(--b2)/.2))}.border-x-base-200\/25{border-left-color:var(--fallback-b2,oklch(var(--b2)/.25));border-right-color:var(--fallback-b2,oklch(var(--b2)/.25))}.border-x-base-200\/30{border-left-color:var(--fallback-b2,oklch(var(--b2)/.3));border-right-color:var(--fallback-b2,oklch(var(--b2)/.3))}.border-x-base-200\/40{border-left-color:var(--fallback-b2,oklch(var(--b2)/.4));border-right-color:var(--fallback-b2,oklch(var(--b2)/.4))}.border-x-base-200\/5{border-left-color:var(--fallback-b2,oklch(var(--b2)/.05));border-right-color:var(--fallback-b2,oklch(var(--b2)/.05))}.border-x-base-200\/50{border-left-color:var(--fallback-b2,oklch(var(--b2)/.5));border-right-color:var(--fallback-b2,oklch(var(--b2)/.5))}.border-x-base-200\/60{border-left-color:var(--fallback-b2,oklch(var(--b2)/.6));border-right-color:var(--fallback-b2,oklch(var(--b2)/.6))}.border-x-base-200\/70{border-left-color:var(--fallback-b2,oklch(var(--b2)/.7));border-right-color:var(--fallback-b2,oklch(var(--b2)/.7))}.border-x-base-200\/75{border-left-color:var(--fallback-b2,oklch(var(--b2)/.75));border-right-color:var(--fallback-b2,oklch(var(--b2)/.75))}.border-x-base-200\/80{border-left-color:var(--fallback-b2,oklch(var(--b2)/.8));border-right-color:var(--fallback-b2,oklch(var(--b2)/.8))}.border-x-base-200\/90{border-left-color:var(--fallback-b2,oklch(var(--b2)/.9));border-right-color:var(--fallback-b2,oklch(var(--b2)/.9))}.border-x-base-200\/95{border-left-color:var(--fallback-b2,oklch(var(--b2)/.95));border-right-color:var(--fallback-b2,oklch(var(--b2)/.95))}.border-x-base-300{border-left-color:var(--fallback-b3,oklch(var(--b3)/1));border-right-color:var(--fallback-b3,oklch(var(--b3)/1))}.border-x-base-300\/0{border-left-color:var(--fallback-b3,oklch(var(--b3)/0));border-right-color:var(--fallback-b3,oklch(var(--b3)/0))}.border-x-base-300\/10{border-left-color:var(--fallback-b3,oklch(var(--b3)/.1));border-right-color:var(--fallback-b3,oklch(var(--b3)/.1))}.border-x-base-300\/100{border-left-color:var(--fallback-b3,oklch(var(--b3)/1));border-right-color:var(--fallback-b3,oklch(var(--b3)/1))}.border-x-base-300\/20{border-left-color:var(--fallback-b3,oklch(var(--b3)/.2));border-right-color:var(--fallback-b3,oklch(var(--b3)/.2))}.border-x-base-300\/25{border-left-color:var(--fallback-b3,oklch(var(--b3)/.25));border-right-color:var(--fallback-b3,oklch(var(--b3)/.25))}.border-x-base-300\/30{border-left-color:var(--fallback-b3,oklch(var(--b3)/.3));border-right-color:var(--fallback-b3,oklch(var(--b3)/.3))}.border-x-base-300\/40{border-left-color:var(--fallback-b3,oklch(var(--b3)/.4));border-right-color:var(--fallback-b3,oklch(var(--b3)/.4))}.border-x-base-300\/5{border-left-color:var(--fallback-b3,oklch(var(--b3)/.05));border-right-color:var(--fallback-b3,oklch(var(--b3)/.05))}.border-x-base-300\/50{border-left-color:var(--fallback-b3,oklch(var(--b3)/.5));border-right-color:var(--fallback-b3,oklch(var(--b3)/.5))}.border-x-base-300\/60{border-left-color:var(--fallback-b3,oklch(var(--b3)/.6));border-right-color:var(--fallback-b3,oklch(var(--b3)/.6))}.border-x-base-300\/70{border-left-color:var(--fallback-b3,oklch(var(--b3)/.7));border-right-color:var(--fallback-b3,oklch(var(--b3)/.7))}.border-x-base-300\/75{border-left-color:var(--fallback-b3,oklch(var(--b3)/.75));border-right-color:var(--fallback-b3,oklch(var(--b3)/.75))}.border-x-base-300\/80{border-left-color:var(--fallback-b3,oklch(var(--b3)/.8));border-right-color:var(--fallback-b3,oklch(var(--b3)/.8))}.border-x-base-300\/90{border-left-color:var(--fallback-b3,oklch(var(--b3)/.9));border-right-color:var(--fallback-b3,oklch(var(--b3)/.9))}.border-x-base-300\/95{border-left-color:var(--fallback-b3,oklch(var(--b3)/.95));border-right-color:var(--fallback-b3,oklch(var(--b3)/.95))}.border-x-base-content{border-left-color:var(--fallback-bc,oklch(var(--bc)/1));border-right-color:var(--fallback-bc,oklch(var(--bc)/1))}.border-x-base-content\/0{border-left-color:var(--fallback-bc,oklch(var(--bc)/0));border-right-color:var(--fallback-bc,oklch(var(--bc)/0))}.border-x-base-content\/10{border-left-color:var(--fallback-bc,oklch(var(--bc)/.1));border-right-color:var(--fallback-bc,oklch(var(--bc)/.1))}.border-x-base-content\/100{border-left-color:var(--fallback-bc,oklch(var(--bc)/1));border-right-color:var(--fallback-bc,oklch(var(--bc)/1))}.border-x-base-content\/20{border-left-color:var(--fallback-bc,oklch(var(--bc)/.2));border-right-color:var(--fallback-bc,oklch(var(--bc)/.2))}.border-x-base-content\/25{border-left-color:var(--fallback-bc,oklch(var(--bc)/.25));border-right-color:var(--fallback-bc,oklch(var(--bc)/.25))}.border-x-base-content\/30{border-left-color:var(--fallback-bc,oklch(var(--bc)/.3));border-right-color:var(--fallback-bc,oklch(var(--bc)/.3))}.border-x-base-content\/40{border-left-color:var(--fallback-bc,oklch(var(--bc)/.4));border-right-color:var(--fallback-bc,oklch(var(--bc)/.4))}.border-x-base-content\/5{border-left-color:var(--fallback-bc,oklch(var(--bc)/.05));border-right-color:var(--fallback-bc,oklch(var(--bc)/.05))}.border-x-base-content\/50{border-left-color:var(--fallback-bc,oklch(var(--bc)/.5));border-right-color:var(--fallback-bc,oklch(var(--bc)/.5))}.border-x-base-content\/60{border-left-color:var(--fallback-bc,oklch(var(--bc)/.6));border-right-color:var(--fallback-bc,oklch(var(--bc)/.6))}.border-x-base-content\/70{border-left-color:var(--fallback-bc,oklch(var(--bc)/.7));border-right-color:var(--fallback-bc,oklch(var(--bc)/.7))}.border-x-base-content\/75{border-left-color:var(--fallback-bc,oklch(var(--bc)/.75));border-right-color:var(--fallback-bc,oklch(var(--bc)/.75))}.border-x-base-content\/80{border-left-color:var(--fallback-bc,oklch(var(--bc)/.8));border-right-color:var(--fallback-bc,oklch(var(--bc)/.8))}.border-x-base-content\/90{border-left-color:var(--fallback-bc,oklch(var(--bc)/.9));border-right-color:var(--fallback-bc,oklch(var(--bc)/.9))}.border-x-base-content\/95{border-left-color:var(--fallback-bc,oklch(var(--bc)/.95));border-right-color:var(--fallback-bc,oklch(var(--bc)/.95))}.border-x-current{border-left-color:currentColor;border-right-color:currentColor}.border-x-error{border-left-color:var(--fallback-er,oklch(var(--er)/1));border-right-color:var(--fallback-er,oklch(var(--er)/1))}.border-x-error-content{border-left-color:var(--fallback-erc,oklch(var(--erc)/1));border-right-color:var(--fallback-erc,oklch(var(--erc)/1))}.border-x-error-content\/0{border-left-color:var(--fallback-erc,oklch(var(--erc)/0));border-right-color:var(--fallback-erc,oklch(var(--erc)/0))}.border-x-error-content\/10{border-left-color:var(--fallback-erc,oklch(var(--erc)/.1));border-right-color:var(--fallback-erc,oklch(var(--erc)/.1))}.border-x-error-content\/100{border-left-color:var(--fallback-erc,oklch(var(--erc)/1));border-right-color:var(--fallback-erc,oklch(var(--erc)/1))}.border-x-error-content\/20{border-left-color:var(--fallback-erc,oklch(var(--erc)/.2));border-right-color:var(--fallback-erc,oklch(var(--erc)/.2))}.border-x-error-content\/25{border-left-color:var(--fallback-erc,oklch(var(--erc)/.25));border-right-color:var(--fallback-erc,oklch(var(--erc)/.25))}.border-x-error-content\/30{border-left-color:var(--fallback-erc,oklch(var(--erc)/.3));border-right-color:var(--fallback-erc,oklch(var(--erc)/.3))}.border-x-error-content\/40{border-left-color:var(--fallback-erc,oklch(var(--erc)/.4));border-right-color:var(--fallback-erc,oklch(var(--erc)/.4))}.border-x-error-content\/5{border-left-color:var(--fallback-erc,oklch(var(--erc)/.05));border-right-color:var(--fallback-erc,oklch(var(--erc)/.05))}.border-x-error-content\/50{border-left-color:var(--fallback-erc,oklch(var(--erc)/.5));border-right-color:var(--fallback-erc,oklch(var(--erc)/.5))}.border-x-error-content\/60{border-left-color:var(--fallback-erc,oklch(var(--erc)/.6));border-right-color:var(--fallback-erc,oklch(var(--erc)/.6))}.border-x-error-content\/70{border-left-color:var(--fallback-erc,oklch(var(--erc)/.7));border-right-color:var(--fallback-erc,oklch(var(--erc)/.7))}.border-x-error-content\/75{border-left-color:var(--fallback-erc,oklch(var(--erc)/.75));border-right-color:var(--fallback-erc,oklch(var(--erc)/.75))}.border-x-error-content\/80{border-left-color:var(--fallback-erc,oklch(var(--erc)/.8));border-right-color:var(--fallback-erc,oklch(var(--erc)/.8))}.border-x-error-content\/90{border-left-color:var(--fallback-erc,oklch(var(--erc)/.9));border-right-color:var(--fallback-erc,oklch(var(--erc)/.9))}.border-x-error-content\/95{border-left-color:var(--fallback-erc,oklch(var(--erc)/.95));border-right-color:var(--fallback-erc,oklch(var(--erc)/.95))}.border-x-error\/0{border-left-color:var(--fallback-er,oklch(var(--er)/0));border-right-color:var(--fallback-er,oklch(var(--er)/0))}.border-x-error\/10{border-left-color:var(--fallback-er,oklch(var(--er)/.1));border-right-color:var(--fallback-er,oklch(var(--er)/.1))}.border-x-error\/100{border-left-color:var(--fallback-er,oklch(var(--er)/1));border-right-color:var(--fallback-er,oklch(var(--er)/1))}.border-x-error\/20{border-left-color:var(--fallback-er,oklch(var(--er)/.2));border-right-color:var(--fallback-er,oklch(var(--er)/.2))}.border-x-error\/25{border-left-color:var(--fallback-er,oklch(var(--er)/.25));border-right-color:var(--fallback-er,oklch(var(--er)/.25))}.border-x-error\/30{border-left-color:var(--fallback-er,oklch(var(--er)/.3));border-right-color:var(--fallback-er,oklch(var(--er)/.3))}.border-x-error\/40{border-left-color:var(--fallback-er,oklch(var(--er)/.4));border-right-color:var(--fallback-er,oklch(var(--er)/.4))}.border-x-error\/5{border-left-color:var(--fallback-er,oklch(var(--er)/.05));border-right-color:var(--fallback-er,oklch(var(--er)/.05))}.border-x-error\/50{border-left-color:var(--fallback-er,oklch(var(--er)/.5));border-right-color:var(--fallback-er,oklch(var(--er)/.5))}.border-x-error\/60{border-left-color:var(--fallback-er,oklch(var(--er)/.6));border-right-color:var(--fallback-er,oklch(var(--er)/.6))}.border-x-error\/70{border-left-color:var(--fallback-er,oklch(var(--er)/.7));border-right-color:var(--fallback-er,oklch(var(--er)/.7))}.border-x-error\/75{border-left-color:var(--fallback-er,oklch(var(--er)/.75));border-right-color:var(--fallback-er,oklch(var(--er)/.75))}.border-x-error\/80{border-left-color:var(--fallback-er,oklch(var(--er)/.8));border-right-color:var(--fallback-er,oklch(var(--er)/.8))}.border-x-error\/90{border-left-color:var(--fallback-er,oklch(var(--er)/.9));border-right-color:var(--fallback-er,oklch(var(--er)/.9))}.border-x-error\/95{border-left-color:var(--fallback-er,oklch(var(--er)/.95));border-right-color:var(--fallback-er,oklch(var(--er)/.95))}.border-x-info{border-left-color:var(--fallback-in,oklch(var(--in)/1));border-right-color:var(--fallback-in,oklch(var(--in)/1))}.border-x-info-content{border-left-color:var(--fallback-inc,oklch(var(--inc)/1));border-right-color:var(--fallback-inc,oklch(var(--inc)/1))}.border-x-info-content\/0{border-left-color:var(--fallback-inc,oklch(var(--inc)/0));border-right-color:var(--fallback-inc,oklch(var(--inc)/0))}.border-x-info-content\/10{border-left-color:var(--fallback-inc,oklch(var(--inc)/.1));border-right-color:var(--fallback-inc,oklch(var(--inc)/.1))}.border-x-info-content\/100{border-left-color:var(--fallback-inc,oklch(var(--inc)/1));border-right-color:var(--fallback-inc,oklch(var(--inc)/1))}.border-x-info-content\/20{border-left-color:var(--fallback-inc,oklch(var(--inc)/.2));border-right-color:var(--fallback-inc,oklch(var(--inc)/.2))}.border-x-info-content\/25{border-left-color:var(--fallback-inc,oklch(var(--inc)/.25));border-right-color:var(--fallback-inc,oklch(var(--inc)/.25))}.border-x-info-content\/30{border-left-color:var(--fallback-inc,oklch(var(--inc)/.3));border-right-color:var(--fallback-inc,oklch(var(--inc)/.3))}.border-x-info-content\/40{border-left-color:var(--fallback-inc,oklch(var(--inc)/.4));border-right-color:var(--fallback-inc,oklch(var(--inc)/.4))}.border-x-info-content\/5{border-left-color:var(--fallback-inc,oklch(var(--inc)/.05));border-right-color:var(--fallback-inc,oklch(var(--inc)/.05))}.border-x-info-content\/50{border-left-color:var(--fallback-inc,oklch(var(--inc)/.5));border-right-color:var(--fallback-inc,oklch(var(--inc)/.5))}.border-x-info-content\/60{border-left-color:var(--fallback-inc,oklch(var(--inc)/.6));border-right-color:var(--fallback-inc,oklch(var(--inc)/.6))}.border-x-info-content\/70{border-left-color:var(--fallback-inc,oklch(var(--inc)/.7));border-right-color:var(--fallback-inc,oklch(var(--inc)/.7))}.border-x-info-content\/75{border-left-color:var(--fallback-inc,oklch(var(--inc)/.75));border-right-color:var(--fallback-inc,oklch(var(--inc)/.75))}.border-x-info-content\/80{border-left-color:var(--fallback-inc,oklch(var(--inc)/.8));border-right-color:var(--fallback-inc,oklch(var(--inc)/.8))}.border-x-info-content\/90{border-left-color:var(--fallback-inc,oklch(var(--inc)/.9));border-right-color:var(--fallback-inc,oklch(var(--inc)/.9))}.border-x-info-content\/95{border-left-color:var(--fallback-inc,oklch(var(--inc)/.95));border-right-color:var(--fallback-inc,oklch(var(--inc)/.95))}.border-x-info\/0{border-left-color:var(--fallback-in,oklch(var(--in)/0));border-right-color:var(--fallback-in,oklch(var(--in)/0))}.border-x-info\/10{border-left-color:var(--fallback-in,oklch(var(--in)/.1));border-right-color:var(--fallback-in,oklch(var(--in)/.1))}.border-x-info\/100{border-left-color:var(--fallback-in,oklch(var(--in)/1));border-right-color:var(--fallback-in,oklch(var(--in)/1))}.border-x-info\/20{border-left-color:var(--fallback-in,oklch(var(--in)/.2));border-right-color:var(--fallback-in,oklch(var(--in)/.2))}.border-x-info\/25{border-left-color:var(--fallback-in,oklch(var(--in)/.25));border-right-color:var(--fallback-in,oklch(var(--in)/.25))}.border-x-info\/30{border-left-color:var(--fallback-in,oklch(var(--in)/.3));border-right-color:var(--fallback-in,oklch(var(--in)/.3))}.border-x-info\/40{border-left-color:var(--fallback-in,oklch(var(--in)/.4));border-right-color:var(--fallback-in,oklch(var(--in)/.4))}.border-x-info\/5{border-left-color:var(--fallback-in,oklch(var(--in)/.05));border-right-color:var(--fallback-in,oklch(var(--in)/.05))}.border-x-info\/50{border-left-color:var(--fallback-in,oklch(var(--in)/.5));border-right-color:var(--fallback-in,oklch(var(--in)/.5))}.border-x-info\/60{border-left-color:var(--fallback-in,oklch(var(--in)/.6));border-right-color:var(--fallback-in,oklch(var(--in)/.6))}.border-x-info\/70{border-left-color:var(--fallback-in,oklch(var(--in)/.7));border-right-color:var(--fallback-in,oklch(var(--in)/.7))}.border-x-info\/75{border-left-color:var(--fallback-in,oklch(var(--in)/.75));border-right-color:var(--fallback-in,oklch(var(--in)/.75))}.border-x-info\/80{border-left-color:var(--fallback-in,oklch(var(--in)/.8));border-right-color:var(--fallback-in,oklch(var(--in)/.8))}.border-x-info\/90{border-left-color:var(--fallback-in,oklch(var(--in)/.9));border-right-color:var(--fallback-in,oklch(var(--in)/.9))}.border-x-info\/95{border-left-color:var(--fallback-in,oklch(var(--in)/.95));border-right-color:var(--fallback-in,oklch(var(--in)/.95))}.border-x-neutral{border-left-color:var(--fallback-n,oklch(var(--n)/1));border-right-color:var(--fallback-n,oklch(var(--n)/1))}.border-x-neutral-content{border-left-color:var(--fallback-nc,oklch(var(--nc)/1));border-right-color:var(--fallback-nc,oklch(var(--nc)/1))}.border-x-neutral-content\/0{border-left-color:var(--fallback-nc,oklch(var(--nc)/0));border-right-color:var(--fallback-nc,oklch(var(--nc)/0))}.border-x-neutral-content\/10{border-left-color:var(--fallback-nc,oklch(var(--nc)/.1));border-right-color:var(--fallback-nc,oklch(var(--nc)/.1))}.border-x-neutral-content\/100{border-left-color:var(--fallback-nc,oklch(var(--nc)/1));border-right-color:var(--fallback-nc,oklch(var(--nc)/1))}.border-x-neutral-content\/20{border-left-color:var(--fallback-nc,oklch(var(--nc)/.2));border-right-color:var(--fallback-nc,oklch(var(--nc)/.2))}.border-x-neutral-content\/25{border-left-color:var(--fallback-nc,oklch(var(--nc)/.25));border-right-color:var(--fallback-nc,oklch(var(--nc)/.25))}.border-x-neutral-content\/30{border-left-color:var(--fallback-nc,oklch(var(--nc)/.3));border-right-color:var(--fallback-nc,oklch(var(--nc)/.3))}.border-x-neutral-content\/40{border-left-color:var(--fallback-nc,oklch(var(--nc)/.4));border-right-color:var(--fallback-nc,oklch(var(--nc)/.4))}.border-x-neutral-content\/5{border-left-color:var(--fallback-nc,oklch(var(--nc)/.05));border-right-color:var(--fallback-nc,oklch(var(--nc)/.05))}.border-x-neutral-content\/50{border-left-color:var(--fallback-nc,oklch(var(--nc)/.5));border-right-color:var(--fallback-nc,oklch(var(--nc)/.5))}.border-x-neutral-content\/60{border-left-color:var(--fallback-nc,oklch(var(--nc)/.6));border-right-color:var(--fallback-nc,oklch(var(--nc)/.6))}.border-x-neutral-content\/70{border-left-color:var(--fallback-nc,oklch(var(--nc)/.7));border-right-color:var(--fallback-nc,oklch(var(--nc)/.7))}.border-x-neutral-content\/75{border-left-color:var(--fallback-nc,oklch(var(--nc)/.75));border-right-color:var(--fallback-nc,oklch(var(--nc)/.75))}.border-x-neutral-content\/80{border-left-color:var(--fallback-nc,oklch(var(--nc)/.8));border-right-color:var(--fallback-nc,oklch(var(--nc)/.8))}.border-x-neutral-content\/90{border-left-color:var(--fallback-nc,oklch(var(--nc)/.9));border-right-color:var(--fallback-nc,oklch(var(--nc)/.9))}.border-x-neutral-content\/95{border-left-color:var(--fallback-nc,oklch(var(--nc)/.95));border-right-color:var(--fallback-nc,oklch(var(--nc)/.95))}.border-x-neutral\/0{border-left-color:var(--fallback-n,oklch(var(--n)/0));border-right-color:var(--fallback-n,oklch(var(--n)/0))}.border-x-neutral\/10{border-left-color:var(--fallback-n,oklch(var(--n)/.1));border-right-color:var(--fallback-n,oklch(var(--n)/.1))}.border-x-neutral\/100{border-left-color:var(--fallback-n,oklch(var(--n)/1));border-right-color:var(--fallback-n,oklch(var(--n)/1))}.border-x-neutral\/20{border-left-color:var(--fallback-n,oklch(var(--n)/.2));border-right-color:var(--fallback-n,oklch(var(--n)/.2))}.border-x-neutral\/25{border-left-color:var(--fallback-n,oklch(var(--n)/.25));border-right-color:var(--fallback-n,oklch(var(--n)/.25))}.border-x-neutral\/30{border-left-color:var(--fallback-n,oklch(var(--n)/.3));border-right-color:var(--fallback-n,oklch(var(--n)/.3))}.border-x-neutral\/40{border-left-color:var(--fallback-n,oklch(var(--n)/.4));border-right-color:var(--fallback-n,oklch(var(--n)/.4))}.border-x-neutral\/5{border-left-color:var(--fallback-n,oklch(var(--n)/.05));border-right-color:var(--fallback-n,oklch(var(--n)/.05))}.border-x-neutral\/50{border-left-color:var(--fallback-n,oklch(var(--n)/.5));border-right-color:var(--fallback-n,oklch(var(--n)/.5))}.border-x-neutral\/60{border-left-color:var(--fallback-n,oklch(var(--n)/.6));border-right-color:var(--fallback-n,oklch(var(--n)/.6))}.border-x-neutral\/70{border-left-color:var(--fallback-n,oklch(var(--n)/.7));border-right-color:var(--fallback-n,oklch(var(--n)/.7))}.border-x-neutral\/75{border-left-color:var(--fallback-n,oklch(var(--n)/.75));border-right-color:var(--fallback-n,oklch(var(--n)/.75))}.border-x-neutral\/80{border-left-color:var(--fallback-n,oklch(var(--n)/.8));border-right-color:var(--fallback-n,oklch(var(--n)/.8))}.border-x-neutral\/90{border-left-color:var(--fallback-n,oklch(var(--n)/.9));border-right-color:var(--fallback-n,oklch(var(--n)/.9))}.border-x-neutral\/95{border-left-color:var(--fallback-n,oklch(var(--n)/.95));border-right-color:var(--fallback-n,oklch(var(--n)/.95))}.border-x-primary{border-left-color:var(--fallback-p,oklch(var(--p)/1));border-right-color:var(--fallback-p,oklch(var(--p)/1))}.border-x-primary-content{border-left-color:var(--fallback-pc,oklch(var(--pc)/1));border-right-color:var(--fallback-pc,oklch(var(--pc)/1))}.border-x-primary-content\/0{border-left-color:var(--fallback-pc,oklch(var(--pc)/0));border-right-color:var(--fallback-pc,oklch(var(--pc)/0))}.border-x-primary-content\/10{border-left-color:var(--fallback-pc,oklch(var(--pc)/.1));border-right-color:var(--fallback-pc,oklch(var(--pc)/.1))}.border-x-primary-content\/100{border-left-color:var(--fallback-pc,oklch(var(--pc)/1));border-right-color:var(--fallback-pc,oklch(var(--pc)/1))}.border-x-primary-content\/20{border-left-color:var(--fallback-pc,oklch(var(--pc)/.2));border-right-color:var(--fallback-pc,oklch(var(--pc)/.2))}.border-x-primary-content\/25{border-left-color:var(--fallback-pc,oklch(var(--pc)/.25));border-right-color:var(--fallback-pc,oklch(var(--pc)/.25))}.border-x-primary-content\/30{border-left-color:var(--fallback-pc,oklch(var(--pc)/.3));border-right-color:var(--fallback-pc,oklch(var(--pc)/.3))}.border-x-primary-content\/40{border-left-color:var(--fallback-pc,oklch(var(--pc)/.4));border-right-color:var(--fallback-pc,oklch(var(--pc)/.4))}.border-x-primary-content\/5{border-left-color:var(--fallback-pc,oklch(var(--pc)/.05));border-right-color:var(--fallback-pc,oklch(var(--pc)/.05))}.border-x-primary-content\/50{border-left-color:var(--fallback-pc,oklch(var(--pc)/.5));border-right-color:var(--fallback-pc,oklch(var(--pc)/.5))}.border-x-primary-content\/60{border-left-color:var(--fallback-pc,oklch(var(--pc)/.6));border-right-color:var(--fallback-pc,oklch(var(--pc)/.6))}.border-x-primary-content\/70{border-left-color:var(--fallback-pc,oklch(var(--pc)/.7));border-right-color:var(--fallback-pc,oklch(var(--pc)/.7))}.border-x-primary-content\/75{border-left-color:var(--fallback-pc,oklch(var(--pc)/.75));border-right-color:var(--fallback-pc,oklch(var(--pc)/.75))}.border-x-primary-content\/80{border-left-color:var(--fallback-pc,oklch(var(--pc)/.8));border-right-color:var(--fallback-pc,oklch(var(--pc)/.8))}.border-x-primary-content\/90{border-left-color:var(--fallback-pc,oklch(var(--pc)/.9));border-right-color:var(--fallback-pc,oklch(var(--pc)/.9))}.border-x-primary-content\/95{border-left-color:var(--fallback-pc,oklch(var(--pc)/.95));border-right-color:var(--fallback-pc,oklch(var(--pc)/.95))}.border-x-primary\/0{border-left-color:var(--fallback-p,oklch(var(--p)/0));border-right-color:var(--fallback-p,oklch(var(--p)/0))}.border-x-primary\/10{border-left-color:var(--fallback-p,oklch(var(--p)/.1));border-right-color:var(--fallback-p,oklch(var(--p)/.1))}.border-x-primary\/100{border-left-color:var(--fallback-p,oklch(var(--p)/1));border-right-color:var(--fallback-p,oklch(var(--p)/1))}.border-x-primary\/20{border-left-color:var(--fallback-p,oklch(var(--p)/.2));border-right-color:var(--fallback-p,oklch(var(--p)/.2))}.border-x-primary\/25{border-left-color:var(--fallback-p,oklch(var(--p)/.25));border-right-color:var(--fallback-p,oklch(var(--p)/.25))}.border-x-primary\/30{border-left-color:var(--fallback-p,oklch(var(--p)/.3));border-right-color:var(--fallback-p,oklch(var(--p)/.3))}.border-x-primary\/40{border-left-color:var(--fallback-p,oklch(var(--p)/.4));border-right-color:var(--fallback-p,oklch(var(--p)/.4))}.border-x-primary\/5{border-left-color:var(--fallback-p,oklch(var(--p)/.05));border-right-color:var(--fallback-p,oklch(var(--p)/.05))}.border-x-primary\/50{border-left-color:var(--fallback-p,oklch(var(--p)/.5));border-right-color:var(--fallback-p,oklch(var(--p)/.5))}.border-x-primary\/60{border-left-color:var(--fallback-p,oklch(var(--p)/.6));border-right-color:var(--fallback-p,oklch(var(--p)/.6))}.border-x-primary\/70{border-left-color:var(--fallback-p,oklch(var(--p)/.7));border-right-color:var(--fallback-p,oklch(var(--p)/.7))}.border-x-primary\/75{border-left-color:var(--fallback-p,oklch(var(--p)/.75));border-right-color:var(--fallback-p,oklch(var(--p)/.75))}.border-x-primary\/80{border-left-color:var(--fallback-p,oklch(var(--p)/.8));border-right-color:var(--fallback-p,oklch(var(--p)/.8))}.border-x-primary\/90{border-left-color:var(--fallback-p,oklch(var(--p)/.9));border-right-color:var(--fallback-p,oklch(var(--p)/.9))}.border-x-primary\/95{border-left-color:var(--fallback-p,oklch(var(--p)/.95));border-right-color:var(--fallback-p,oklch(var(--p)/.95))}.border-x-secondary{border-left-color:var(--fallback-s,oklch(var(--s)/1));border-right-color:var(--fallback-s,oklch(var(--s)/1))}.border-x-secondary-content{border-left-color:var(--fallback-sc,oklch(var(--sc)/1));border-right-color:var(--fallback-sc,oklch(var(--sc)/1))}.border-x-secondary-content\/0{border-left-color:var(--fallback-sc,oklch(var(--sc)/0));border-right-color:var(--fallback-sc,oklch(var(--sc)/0))}.border-x-secondary-content\/10{border-left-color:var(--fallback-sc,oklch(var(--sc)/.1));border-right-color:var(--fallback-sc,oklch(var(--sc)/.1))}.border-x-secondary-content\/100{border-left-color:var(--fallback-sc,oklch(var(--sc)/1));border-right-color:var(--fallback-sc,oklch(var(--sc)/1))}.border-x-secondary-content\/20{border-left-color:var(--fallback-sc,oklch(var(--sc)/.2));border-right-color:var(--fallback-sc,oklch(var(--sc)/.2))}.border-x-secondary-content\/25{border-left-color:var(--fallback-sc,oklch(var(--sc)/.25));border-right-color:var(--fallback-sc,oklch(var(--sc)/.25))}.border-x-secondary-content\/30{border-left-color:var(--fallback-sc,oklch(var(--sc)/.3));border-right-color:var(--fallback-sc,oklch(var(--sc)/.3))}.border-x-secondary-content\/40{border-left-color:var(--fallback-sc,oklch(var(--sc)/.4));border-right-color:var(--fallback-sc,oklch(var(--sc)/.4))}.border-x-secondary-content\/5{border-left-color:var(--fallback-sc,oklch(var(--sc)/.05));border-right-color:var(--fallback-sc,oklch(var(--sc)/.05))}.border-x-secondary-content\/50{border-left-color:var(--fallback-sc,oklch(var(--sc)/.5));border-right-color:var(--fallback-sc,oklch(var(--sc)/.5))}.border-x-secondary-content\/60{border-left-color:var(--fallback-sc,oklch(var(--sc)/.6));border-right-color:var(--fallback-sc,oklch(var(--sc)/.6))}.border-x-secondary-content\/70{border-left-color:var(--fallback-sc,oklch(var(--sc)/.7));border-right-color:var(--fallback-sc,oklch(var(--sc)/.7))}.border-x-secondary-content\/75{border-left-color:var(--fallback-sc,oklch(var(--sc)/.75));border-right-color:var(--fallback-sc,oklch(var(--sc)/.75))}.border-x-secondary-content\/80{border-left-color:var(--fallback-sc,oklch(var(--sc)/.8));border-right-color:var(--fallback-sc,oklch(var(--sc)/.8))}.border-x-secondary-content\/90{border-left-color:var(--fallback-sc,oklch(var(--sc)/.9));border-right-color:var(--fallback-sc,oklch(var(--sc)/.9))}.border-x-secondary-content\/95{border-left-color:var(--fallback-sc,oklch(var(--sc)/.95));border-right-color:var(--fallback-sc,oklch(var(--sc)/.95))}.border-x-secondary\/0{border-left-color:var(--fallback-s,oklch(var(--s)/0));border-right-color:var(--fallback-s,oklch(var(--s)/0))}.border-x-secondary\/10{border-left-color:var(--fallback-s,oklch(var(--s)/.1));border-right-color:var(--fallback-s,oklch(var(--s)/.1))}.border-x-secondary\/100{border-left-color:var(--fallback-s,oklch(var(--s)/1));border-right-color:var(--fallback-s,oklch(var(--s)/1))}.border-x-secondary\/20{border-left-color:var(--fallback-s,oklch(var(--s)/.2));border-right-color:var(--fallback-s,oklch(var(--s)/.2))}.border-x-secondary\/25{border-left-color:var(--fallback-s,oklch(var(--s)/.25));border-right-color:var(--fallback-s,oklch(var(--s)/.25))}.border-x-secondary\/30{border-left-color:var(--fallback-s,oklch(var(--s)/.3));border-right-color:var(--fallback-s,oklch(var(--s)/.3))}.border-x-secondary\/40{border-left-color:var(--fallback-s,oklch(var(--s)/.4));border-right-color:var(--fallback-s,oklch(var(--s)/.4))}.border-x-secondary\/5{border-left-color:var(--fallback-s,oklch(var(--s)/.05));border-right-color:var(--fallback-s,oklch(var(--s)/.05))}.border-x-secondary\/50{border-left-color:var(--fallback-s,oklch(var(--s)/.5));border-right-color:var(--fallback-s,oklch(var(--s)/.5))}.border-x-secondary\/60{border-left-color:var(--fallback-s,oklch(var(--s)/.6));border-right-color:var(--fallback-s,oklch(var(--s)/.6))}.border-x-secondary\/70{border-left-color:var(--fallback-s,oklch(var(--s)/.7));border-right-color:var(--fallback-s,oklch(var(--s)/.7))}.border-x-secondary\/75{border-left-color:var(--fallback-s,oklch(var(--s)/.75));border-right-color:var(--fallback-s,oklch(var(--s)/.75))}.border-x-secondary\/80{border-left-color:var(--fallback-s,oklch(var(--s)/.8));border-right-color:var(--fallback-s,oklch(var(--s)/.8))}.border-x-secondary\/90{border-left-color:var(--fallback-s,oklch(var(--s)/.9));border-right-color:var(--fallback-s,oklch(var(--s)/.9))}.border-x-secondary\/95{border-left-color:var(--fallback-s,oklch(var(--s)/.95));border-right-color:var(--fallback-s,oklch(var(--s)/.95))}.border-x-success{border-left-color:var(--fallback-su,oklch(var(--su)/1));border-right-color:var(--fallback-su,oklch(var(--su)/1))}.border-x-success-content{border-left-color:var(--fallback-suc,oklch(var(--suc)/1));border-right-color:var(--fallback-suc,oklch(var(--suc)/1))}.border-x-success-content\/0{border-left-color:var(--fallback-suc,oklch(var(--suc)/0));border-right-color:var(--fallback-suc,oklch(var(--suc)/0))}.border-x-success-content\/10{border-left-color:var(--fallback-suc,oklch(var(--suc)/.1));border-right-color:var(--fallback-suc,oklch(var(--suc)/.1))}.border-x-success-content\/100{border-left-color:var(--fallback-suc,oklch(var(--suc)/1));border-right-color:var(--fallback-suc,oklch(var(--suc)/1))}.border-x-success-content\/20{border-left-color:var(--fallback-suc,oklch(var(--suc)/.2));border-right-color:var(--fallback-suc,oklch(var(--suc)/.2))}.border-x-success-content\/25{border-left-color:var(--fallback-suc,oklch(var(--suc)/.25));border-right-color:var(--fallback-suc,oklch(var(--suc)/.25))}.border-x-success-content\/30{border-left-color:var(--fallback-suc,oklch(var(--suc)/.3));border-right-color:var(--fallback-suc,oklch(var(--suc)/.3))}.border-x-success-content\/40{border-left-color:var(--fallback-suc,oklch(var(--suc)/.4));border-right-color:var(--fallback-suc,oklch(var(--suc)/.4))}.border-x-success-content\/5{border-left-color:var(--fallback-suc,oklch(var(--suc)/.05));border-right-color:var(--fallback-suc,oklch(var(--suc)/.05))}.border-x-success-content\/50{border-left-color:var(--fallback-suc,oklch(var(--suc)/.5));border-right-color:var(--fallback-suc,oklch(var(--suc)/.5))}.border-x-success-content\/60{border-left-color:var(--fallback-suc,oklch(var(--suc)/.6));border-right-color:var(--fallback-suc,oklch(var(--suc)/.6))}.border-x-success-content\/70{border-left-color:var(--fallback-suc,oklch(var(--suc)/.7));border-right-color:var(--fallback-suc,oklch(var(--suc)/.7))}.border-x-success-content\/75{border-left-color:var(--fallback-suc,oklch(var(--suc)/.75));border-right-color:var(--fallback-suc,oklch(var(--suc)/.75))}.border-x-success-content\/80{border-left-color:var(--fallback-suc,oklch(var(--suc)/.8));border-right-color:var(--fallback-suc,oklch(var(--suc)/.8))}.border-x-success-content\/90{border-left-color:var(--fallback-suc,oklch(var(--suc)/.9));border-right-color:var(--fallback-suc,oklch(var(--suc)/.9))}.border-x-success-content\/95{border-left-color:var(--fallback-suc,oklch(var(--suc)/.95));border-right-color:var(--fallback-suc,oklch(var(--suc)/.95))}.border-x-success\/0{border-left-color:var(--fallback-su,oklch(var(--su)/0));border-right-color:var(--fallback-su,oklch(var(--su)/0))}.border-x-success\/10{border-left-color:var(--fallback-su,oklch(var(--su)/.1));border-right-color:var(--fallback-su,oklch(var(--su)/.1))}.border-x-success\/100{border-left-color:var(--fallback-su,oklch(var(--su)/1));border-right-color:var(--fallback-su,oklch(var(--su)/1))}.border-x-success\/20{border-left-color:var(--fallback-su,oklch(var(--su)/.2));border-right-color:var(--fallback-su,oklch(var(--su)/.2))}.border-x-success\/25{border-left-color:var(--fallback-su,oklch(var(--su)/.25));border-right-color:var(--fallback-su,oklch(var(--su)/.25))}.border-x-success\/30{border-left-color:var(--fallback-su,oklch(var(--su)/.3));border-right-color:var(--fallback-su,oklch(var(--su)/.3))}.border-x-success\/40{border-left-color:var(--fallback-su,oklch(var(--su)/.4));border-right-color:var(--fallback-su,oklch(var(--su)/.4))}.border-x-success\/5{border-left-color:var(--fallback-su,oklch(var(--su)/.05));border-right-color:var(--fallback-su,oklch(var(--su)/.05))}.border-x-success\/50{border-left-color:var(--fallback-su,oklch(var(--su)/.5));border-right-color:var(--fallback-su,oklch(var(--su)/.5))}.border-x-success\/60{border-left-color:var(--fallback-su,oklch(var(--su)/.6));border-right-color:var(--fallback-su,oklch(var(--su)/.6))}.border-x-success\/70{border-left-color:var(--fallback-su,oklch(var(--su)/.7));border-right-color:var(--fallback-su,oklch(var(--su)/.7))}.border-x-success\/75{border-left-color:var(--fallback-su,oklch(var(--su)/.75));border-right-color:var(--fallback-su,oklch(var(--su)/.75))}.border-x-success\/80{border-left-color:var(--fallback-su,oklch(var(--su)/.8));border-right-color:var(--fallback-su,oklch(var(--su)/.8))}.border-x-success\/90{border-left-color:var(--fallback-su,oklch(var(--su)/.9));border-right-color:var(--fallback-su,oklch(var(--su)/.9))}.border-x-success\/95{border-left-color:var(--fallback-su,oklch(var(--su)/.95));border-right-color:var(--fallback-su,oklch(var(--su)/.95))}.border-x-transparent{border-left-color:transparent;border-right-color:transparent}.border-x-transparent\/0{border-left-color:rgb(0 0 0 / 0);border-right-color:rgb(0 0 0 / 0)}.border-x-transparent\/10{border-left-color:rgb(0 0 0 / .1);border-right-color:rgb(0 0 0 / .1)}.border-x-transparent\/100{border-left-color:rgb(0 0 0 / 1);border-right-color:rgb(0 0 0 / 1)}.border-x-transparent\/20{border-left-color:rgb(0 0 0 / .2);border-right-color:rgb(0 0 0 / .2)}.border-x-transparent\/25{border-left-color:rgb(0 0 0 / .25);border-right-color:rgb(0 0 0 / .25)}.border-x-transparent\/30{border-left-color:rgb(0 0 0 / .3);border-right-color:rgb(0 0 0 / .3)}.border-x-transparent\/40{border-left-color:rgb(0 0 0 / .4);border-right-color:rgb(0 0 0 / .4)}.border-x-transparent\/5{border-left-color:rgb(0 0 0 / .05);border-right-color:rgb(0 0 0 / .05)}.border-x-transparent\/50{border-left-color:rgb(0 0 0 / .5);border-right-color:rgb(0 0 0 / .5)}.border-x-transparent\/60{border-left-color:rgb(0 0 0 / .6);border-right-color:rgb(0 0 0 / .6)}.border-x-transparent\/70{border-left-color:rgb(0 0 0 / .7);border-right-color:rgb(0 0 0 / .7)}.border-x-transparent\/75{border-left-color:rgb(0 0 0 / .75);border-right-color:rgb(0 0 0 / .75)}.border-x-transparent\/80{border-left-color:rgb(0 0 0 / .8);border-right-color:rgb(0 0 0 / .8)}.border-x-transparent\/90{border-left-color:rgb(0 0 0 / .9);border-right-color:rgb(0 0 0 / .9)}.border-x-transparent\/95{border-left-color:rgb(0 0 0 / .95);border-right-color:rgb(0 0 0 / .95)}.border-x-warning{border-left-color:var(--fallback-wa,oklch(var(--wa)/1));border-right-color:var(--fallback-wa,oklch(var(--wa)/1))}.border-x-warning-content{border-left-color:var(--fallback-wac,oklch(var(--wac)/1));border-right-color:var(--fallback-wac,oklch(var(--wac)/1))}.border-x-warning-content\/0{border-left-color:var(--fallback-wac,oklch(var(--wac)/0));border-right-color:var(--fallback-wac,oklch(var(--wac)/0))}.border-x-warning-content\/10{border-left-color:var(--fallback-wac,oklch(var(--wac)/.1));border-right-color:var(--fallback-wac,oklch(var(--wac)/.1))}.border-x-warning-content\/100{border-left-color:var(--fallback-wac,oklch(var(--wac)/1));border-right-color:var(--fallback-wac,oklch(var(--wac)/1))}.border-x-warning-content\/20{border-left-color:var(--fallback-wac,oklch(var(--wac)/.2));border-right-color:var(--fallback-wac,oklch(var(--wac)/.2))}.border-x-warning-content\/25{border-left-color:var(--fallback-wac,oklch(var(--wac)/.25));border-right-color:var(--fallback-wac,oklch(var(--wac)/.25))}.border-x-warning-content\/30{border-left-color:var(--fallback-wac,oklch(var(--wac)/.3));border-right-color:var(--fallback-wac,oklch(var(--wac)/.3))}.border-x-warning-content\/40{border-left-color:var(--fallback-wac,oklch(var(--wac)/.4));border-right-color:var(--fallback-wac,oklch(var(--wac)/.4))}.border-x-warning-content\/5{border-left-color:var(--fallback-wac,oklch(var(--wac)/.05));border-right-color:var(--fallback-wac,oklch(var(--wac)/.05))}.border-x-warning-content\/50{border-left-color:var(--fallback-wac,oklch(var(--wac)/.5));border-right-color:var(--fallback-wac,oklch(var(--wac)/.5))}.border-x-warning-content\/60{border-left-color:var(--fallback-wac,oklch(var(--wac)/.6));border-right-color:var(--fallback-wac,oklch(var(--wac)/.6))}.border-x-warning-content\/70{border-left-color:var(--fallback-wac,oklch(var(--wac)/.7));border-right-color:var(--fallback-wac,oklch(var(--wac)/.7))}.border-x-warning-content\/75{border-left-color:var(--fallback-wac,oklch(var(--wac)/.75));border-right-color:var(--fallback-wac,oklch(var(--wac)/.75))}.border-x-warning-content\/80{border-left-color:var(--fallback-wac,oklch(var(--wac)/.8));border-right-color:var(--fallback-wac,oklch(var(--wac)/.8))}.border-x-warning-content\/90{border-left-color:var(--fallback-wac,oklch(var(--wac)/.9));border-right-color:var(--fallback-wac,oklch(var(--wac)/.9))}.border-x-warning-content\/95{border-left-color:var(--fallback-wac,oklch(var(--wac)/.95));border-right-color:var(--fallback-wac,oklch(var(--wac)/.95))}.border-x-warning\/0{border-left-color:var(--fallback-wa,oklch(var(--wa)/0));border-right-color:var(--fallback-wa,oklch(var(--wa)/0))}.border-x-warning\/10{border-left-color:var(--fallback-wa,oklch(var(--wa)/.1));border-right-color:var(--fallback-wa,oklch(var(--wa)/.1))}.border-x-warning\/100{border-left-color:var(--fallback-wa,oklch(var(--wa)/1));border-right-color:var(--fallback-wa,oklch(var(--wa)/1))}.border-x-warning\/20{border-left-color:var(--fallback-wa,oklch(var(--wa)/.2));border-right-color:var(--fallback-wa,oklch(var(--wa)/.2))}.border-x-warning\/25{border-left-color:var(--fallback-wa,oklch(var(--wa)/.25));border-right-color:var(--fallback-wa,oklch(var(--wa)/.25))}.border-x-warning\/30{border-left-color:var(--fallback-wa,oklch(var(--wa)/.3));border-right-color:var(--fallback-wa,oklch(var(--wa)/.3))}.border-x-warning\/40{border-left-color:var(--fallback-wa,oklch(var(--wa)/.4));border-right-color:var(--fallback-wa,oklch(var(--wa)/.4))}.border-x-warning\/5{border-left-color:var(--fallback-wa,oklch(var(--wa)/.05));border-right-color:var(--fallback-wa,oklch(var(--wa)/.05))}.border-x-warning\/50{border-left-color:var(--fallback-wa,oklch(var(--wa)/.5));border-right-color:var(--fallback-wa,oklch(var(--wa)/.5))}.border-x-warning\/60{border-left-color:var(--fallback-wa,oklch(var(--wa)/.6));border-right-color:var(--fallback-wa,oklch(var(--wa)/.6))}.border-x-warning\/70{border-left-color:var(--fallback-wa,oklch(var(--wa)/.7));border-right-color:var(--fallback-wa,oklch(var(--wa)/.7))}.border-x-warning\/75{border-left-color:var(--fallback-wa,oklch(var(--wa)/.75));border-right-color:var(--fallback-wa,oklch(var(--wa)/.75))}.border-x-warning\/80{border-left-color:var(--fallback-wa,oklch(var(--wa)/.8));border-right-color:var(--fallback-wa,oklch(var(--wa)/.8))}.border-x-warning\/90{border-left-color:var(--fallback-wa,oklch(var(--wa)/.9));border-right-color:var(--fallback-wa,oklch(var(--wa)/.9))}.border-x-warning\/95{border-left-color:var(--fallback-wa,oklch(var(--wa)/.95));border-right-color:var(--fallback-wa,oklch(var(--wa)/.95))}.border-y-accent{border-top-color:var(--fallback-a,oklch(var(--a)/1));border-bottom-color:var(--fallback-a,oklch(var(--a)/1))}.border-y-accent-content{border-top-color:var(--fallback-ac,oklch(var(--ac)/1));border-bottom-color:var(--fallback-ac,oklch(var(--ac)/1))}.border-y-accent-content\/0{border-top-color:var(--fallback-ac,oklch(var(--ac)/0));border-bottom-color:var(--fallback-ac,oklch(var(--ac)/0))}.border-y-accent-content\/10{border-top-color:var(--fallback-ac,oklch(var(--ac)/.1));border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.1))}.border-y-accent-content\/100{border-top-color:var(--fallback-ac,oklch(var(--ac)/1));border-bottom-color:var(--fallback-ac,oklch(var(--ac)/1))}.border-y-accent-content\/20{border-top-color:var(--fallback-ac,oklch(var(--ac)/.2));border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.2))}.border-y-accent-content\/25{border-top-color:var(--fallback-ac,oklch(var(--ac)/.25));border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.25))}.border-y-accent-content\/30{border-top-color:var(--fallback-ac,oklch(var(--ac)/.3));border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.3))}.border-y-accent-content\/40{border-top-color:var(--fallback-ac,oklch(var(--ac)/.4));border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.4))}.border-y-accent-content\/5{border-top-color:var(--fallback-ac,oklch(var(--ac)/.05));border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.05))}.border-y-accent-content\/50{border-top-color:var(--fallback-ac,oklch(var(--ac)/.5));border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.5))}.border-y-accent-content\/60{border-top-color:var(--fallback-ac,oklch(var(--ac)/.6));border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.6))}.border-y-accent-content\/70{border-top-color:var(--fallback-ac,oklch(var(--ac)/.7));border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.7))}.border-y-accent-content\/75{border-top-color:var(--fallback-ac,oklch(var(--ac)/.75));border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.75))}.border-y-accent-content\/80{border-top-color:var(--fallback-ac,oklch(var(--ac)/.8));border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.8))}.border-y-accent-content\/90{border-top-color:var(--fallback-ac,oklch(var(--ac)/.9));border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.9))}.border-y-accent-content\/95{border-top-color:var(--fallback-ac,oklch(var(--ac)/.95));border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.95))}.border-y-accent\/0{border-top-color:var(--fallback-a,oklch(var(--a)/0));border-bottom-color:var(--fallback-a,oklch(var(--a)/0))}.border-y-accent\/10{border-top-color:var(--fallback-a,oklch(var(--a)/.1));border-bottom-color:var(--fallback-a,oklch(var(--a)/.1))}.border-y-accent\/100{border-top-color:var(--fallback-a,oklch(var(--a)/1));border-bottom-color:var(--fallback-a,oklch(var(--a)/1))}.border-y-accent\/20{border-top-color:var(--fallback-a,oklch(var(--a)/.2));border-bottom-color:var(--fallback-a,oklch(var(--a)/.2))}.border-y-accent\/25{border-top-color:var(--fallback-a,oklch(var(--a)/.25));border-bottom-color:var(--fallback-a,oklch(var(--a)/.25))}.border-y-accent\/30{border-top-color:var(--fallback-a,oklch(var(--a)/.3));border-bottom-color:var(--fallback-a,oklch(var(--a)/.3))}.border-y-accent\/40{border-top-color:var(--fallback-a,oklch(var(--a)/.4));border-bottom-color:var(--fallback-a,oklch(var(--a)/.4))}.border-y-accent\/5{border-top-color:var(--fallback-a,oklch(var(--a)/.05));border-bottom-color:var(--fallback-a,oklch(var(--a)/.05))}.border-y-accent\/50{border-top-color:var(--fallback-a,oklch(var(--a)/.5));border-bottom-color:var(--fallback-a,oklch(var(--a)/.5))}.border-y-accent\/60{border-top-color:var(--fallback-a,oklch(var(--a)/.6));border-bottom-color:var(--fallback-a,oklch(var(--a)/.6))}.border-y-accent\/70{border-top-color:var(--fallback-a,oklch(var(--a)/.7));border-bottom-color:var(--fallback-a,oklch(var(--a)/.7))}.border-y-accent\/75{border-top-color:var(--fallback-a,oklch(var(--a)/.75));border-bottom-color:var(--fallback-a,oklch(var(--a)/.75))}.border-y-accent\/80{border-top-color:var(--fallback-a,oklch(var(--a)/.8));border-bottom-color:var(--fallback-a,oklch(var(--a)/.8))}.border-y-accent\/90{border-top-color:var(--fallback-a,oklch(var(--a)/.9));border-bottom-color:var(--fallback-a,oklch(var(--a)/.9))}.border-y-accent\/95{border-top-color:var(--fallback-a,oklch(var(--a)/.95));border-bottom-color:var(--fallback-a,oklch(var(--a)/.95))}.border-y-base-100{border-top-color:var(--fallback-b1,oklch(var(--b1)/1));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/1))}.border-y-base-100\/0{border-top-color:var(--fallback-b1,oklch(var(--b1)/0));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/0))}.border-y-base-100\/10{border-top-color:var(--fallback-b1,oklch(var(--b1)/.1));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.1))}.border-y-base-100\/100{border-top-color:var(--fallback-b1,oklch(var(--b1)/1));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/1))}.border-y-base-100\/20{border-top-color:var(--fallback-b1,oklch(var(--b1)/.2));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.2))}.border-y-base-100\/25{border-top-color:var(--fallback-b1,oklch(var(--b1)/.25));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.25))}.border-y-base-100\/30{border-top-color:var(--fallback-b1,oklch(var(--b1)/.3));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.3))}.border-y-base-100\/40{border-top-color:var(--fallback-b1,oklch(var(--b1)/.4));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.4))}.border-y-base-100\/5{border-top-color:var(--fallback-b1,oklch(var(--b1)/.05));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.05))}.border-y-base-100\/50{border-top-color:var(--fallback-b1,oklch(var(--b1)/.5));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.5))}.border-y-base-100\/60{border-top-color:var(--fallback-b1,oklch(var(--b1)/.6));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.6))}.border-y-base-100\/70{border-top-color:var(--fallback-b1,oklch(var(--b1)/.7));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.7))}.border-y-base-100\/75{border-top-color:var(--fallback-b1,oklch(var(--b1)/.75));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.75))}.border-y-base-100\/80{border-top-color:var(--fallback-b1,oklch(var(--b1)/.8));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.8))}.border-y-base-100\/90{border-top-color:var(--fallback-b1,oklch(var(--b1)/.9));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.9))}.border-y-base-100\/95{border-top-color:var(--fallback-b1,oklch(var(--b1)/.95));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.95))}.border-y-base-200{border-top-color:var(--fallback-b2,oklch(var(--b2)/1));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/1))}.border-y-base-200\/0{border-top-color:var(--fallback-b2,oklch(var(--b2)/0));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/0))}.border-y-base-200\/10{border-top-color:var(--fallback-b2,oklch(var(--b2)/.1));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.1))}.border-y-base-200\/100{border-top-color:var(--fallback-b2,oklch(var(--b2)/1));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/1))}.border-y-base-200\/20{border-top-color:var(--fallback-b2,oklch(var(--b2)/.2));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.2))}.border-y-base-200\/25{border-top-color:var(--fallback-b2,oklch(var(--b2)/.25));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.25))}.border-y-base-200\/30{border-top-color:var(--fallback-b2,oklch(var(--b2)/.3));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.3))}.border-y-base-200\/40{border-top-color:var(--fallback-b2,oklch(var(--b2)/.4));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.4))}.border-y-base-200\/5{border-top-color:var(--fallback-b2,oklch(var(--b2)/.05));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.05))}.border-y-base-200\/50{border-top-color:var(--fallback-b2,oklch(var(--b2)/.5));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.5))}.border-y-base-200\/60{border-top-color:var(--fallback-b2,oklch(var(--b2)/.6));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.6))}.border-y-base-200\/70{border-top-color:var(--fallback-b2,oklch(var(--b2)/.7));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.7))}.border-y-base-200\/75{border-top-color:var(--fallback-b2,oklch(var(--b2)/.75));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.75))}.border-y-base-200\/80{border-top-color:var(--fallback-b2,oklch(var(--b2)/.8));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.8))}.border-y-base-200\/90{border-top-color:var(--fallback-b2,oklch(var(--b2)/.9));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.9))}.border-y-base-200\/95{border-top-color:var(--fallback-b2,oklch(var(--b2)/.95));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.95))}.border-y-base-300{border-top-color:var(--fallback-b3,oklch(var(--b3)/1));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/1))}.border-y-base-300\/0{border-top-color:var(--fallback-b3,oklch(var(--b3)/0));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/0))}.border-y-base-300\/10{border-top-color:var(--fallback-b3,oklch(var(--b3)/.1));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.1))}.border-y-base-300\/100{border-top-color:var(--fallback-b3,oklch(var(--b3)/1));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/1))}.border-y-base-300\/20{border-top-color:var(--fallback-b3,oklch(var(--b3)/.2));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.2))}.border-y-base-300\/25{border-top-color:var(--fallback-b3,oklch(var(--b3)/.25));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.25))}.border-y-base-300\/30{border-top-color:var(--fallback-b3,oklch(var(--b3)/.3));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.3))}.border-y-base-300\/40{border-top-color:var(--fallback-b3,oklch(var(--b3)/.4));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.4))}.border-y-base-300\/5{border-top-color:var(--fallback-b3,oklch(var(--b3)/.05));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.05))}.border-y-base-300\/50{border-top-color:var(--fallback-b3,oklch(var(--b3)/.5));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.5))}.border-y-base-300\/60{border-top-color:var(--fallback-b3,oklch(var(--b3)/.6));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.6))}.border-y-base-300\/70{border-top-color:var(--fallback-b3,oklch(var(--b3)/.7));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.7))}.border-y-base-300\/75{border-top-color:var(--fallback-b3,oklch(var(--b3)/.75));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.75))}.border-y-base-300\/80{border-top-color:var(--fallback-b3,oklch(var(--b3)/.8));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.8))}.border-y-base-300\/90{border-top-color:var(--fallback-b3,oklch(var(--b3)/.9));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.9))}.border-y-base-300\/95{border-top-color:var(--fallback-b3,oklch(var(--b3)/.95));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.95))}.border-y-base-content{border-top-color:var(--fallback-bc,oklch(var(--bc)/1));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/1))}.border-y-base-content\/0{border-top-color:var(--fallback-bc,oklch(var(--bc)/0));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/0))}.border-y-base-content\/10{border-top-color:var(--fallback-bc,oklch(var(--bc)/.1));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.1))}.border-y-base-content\/100{border-top-color:var(--fallback-bc,oklch(var(--bc)/1));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/1))}.border-y-base-content\/20{border-top-color:var(--fallback-bc,oklch(var(--bc)/.2));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.2))}.border-y-base-content\/25{border-top-color:var(--fallback-bc,oklch(var(--bc)/.25));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.25))}.border-y-base-content\/30{border-top-color:var(--fallback-bc,oklch(var(--bc)/.3));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.3))}.border-y-base-content\/40{border-top-color:var(--fallback-bc,oklch(var(--bc)/.4));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.4))}.border-y-base-content\/5{border-top-color:var(--fallback-bc,oklch(var(--bc)/.05));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.05))}.border-y-base-content\/50{border-top-color:var(--fallback-bc,oklch(var(--bc)/.5));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.5))}.border-y-base-content\/60{border-top-color:var(--fallback-bc,oklch(var(--bc)/.6));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.6))}.border-y-base-content\/70{border-top-color:var(--fallback-bc,oklch(var(--bc)/.7));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.7))}.border-y-base-content\/75{border-top-color:var(--fallback-bc,oklch(var(--bc)/.75));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.75))}.border-y-base-content\/80{border-top-color:var(--fallback-bc,oklch(var(--bc)/.8));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.8))}.border-y-base-content\/90{border-top-color:var(--fallback-bc,oklch(var(--bc)/.9));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.9))}.border-y-base-content\/95{border-top-color:var(--fallback-bc,oklch(var(--bc)/.95));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.95))}.border-y-current{border-top-color:currentColor;border-bottom-color:currentColor}.border-y-error{border-top-color:var(--fallback-er,oklch(var(--er)/1));border-bottom-color:var(--fallback-er,oklch(var(--er)/1))}.border-y-error-content{border-top-color:var(--fallback-erc,oklch(var(--erc)/1));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/1))}.border-y-error-content\/0{border-top-color:var(--fallback-erc,oklch(var(--erc)/0));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/0))}.border-y-error-content\/10{border-top-color:var(--fallback-erc,oklch(var(--erc)/.1));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.1))}.border-y-error-content\/100{border-top-color:var(--fallback-erc,oklch(var(--erc)/1));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/1))}.border-y-error-content\/20{border-top-color:var(--fallback-erc,oklch(var(--erc)/.2));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.2))}.border-y-error-content\/25{border-top-color:var(--fallback-erc,oklch(var(--erc)/.25));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.25))}.border-y-error-content\/30{border-top-color:var(--fallback-erc,oklch(var(--erc)/.3));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.3))}.border-y-error-content\/40{border-top-color:var(--fallback-erc,oklch(var(--erc)/.4));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.4))}.border-y-error-content\/5{border-top-color:var(--fallback-erc,oklch(var(--erc)/.05));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.05))}.border-y-error-content\/50{border-top-color:var(--fallback-erc,oklch(var(--erc)/.5));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.5))}.border-y-error-content\/60{border-top-color:var(--fallback-erc,oklch(var(--erc)/.6));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.6))}.border-y-error-content\/70{border-top-color:var(--fallback-erc,oklch(var(--erc)/.7));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.7))}.border-y-error-content\/75{border-top-color:var(--fallback-erc,oklch(var(--erc)/.75));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.75))}.border-y-error-content\/80{border-top-color:var(--fallback-erc,oklch(var(--erc)/.8));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.8))}.border-y-error-content\/90{border-top-color:var(--fallback-erc,oklch(var(--erc)/.9));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.9))}.border-y-error-content\/95{border-top-color:var(--fallback-erc,oklch(var(--erc)/.95));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.95))}.border-y-error\/0{border-top-color:var(--fallback-er,oklch(var(--er)/0));border-bottom-color:var(--fallback-er,oklch(var(--er)/0))}.border-y-error\/10{border-top-color:var(--fallback-er,oklch(var(--er)/.1));border-bottom-color:var(--fallback-er,oklch(var(--er)/.1))}.border-y-error\/100{border-top-color:var(--fallback-er,oklch(var(--er)/1));border-bottom-color:var(--fallback-er,oklch(var(--er)/1))}.border-y-error\/20{border-top-color:var(--fallback-er,oklch(var(--er)/.2));border-bottom-color:var(--fallback-er,oklch(var(--er)/.2))}.border-y-error\/25{border-top-color:var(--fallback-er,oklch(var(--er)/.25));border-bottom-color:var(--fallback-er,oklch(var(--er)/.25))}.border-y-error\/30{border-top-color:var(--fallback-er,oklch(var(--er)/.3));border-bottom-color:var(--fallback-er,oklch(var(--er)/.3))}.border-y-error\/40{border-top-color:var(--fallback-er,oklch(var(--er)/.4));border-bottom-color:var(--fallback-er,oklch(var(--er)/.4))}.border-y-error\/5{border-top-color:var(--fallback-er,oklch(var(--er)/.05));border-bottom-color:var(--fallback-er,oklch(var(--er)/.05))}.border-y-error\/50{border-top-color:var(--fallback-er,oklch(var(--er)/.5));border-bottom-color:var(--fallback-er,oklch(var(--er)/.5))}.border-y-error\/60{border-top-color:var(--fallback-er,oklch(var(--er)/.6));border-bottom-color:var(--fallback-er,oklch(var(--er)/.6))}.border-y-error\/70{border-top-color:var(--fallback-er,oklch(var(--er)/.7));border-bottom-color:var(--fallback-er,oklch(var(--er)/.7))}.border-y-error\/75{border-top-color:var(--fallback-er,oklch(var(--er)/.75));border-bottom-color:var(--fallback-er,oklch(var(--er)/.75))}.border-y-error\/80{border-top-color:var(--fallback-er,oklch(var(--er)/.8));border-bottom-color:var(--fallback-er,oklch(var(--er)/.8))}.border-y-error\/90{border-top-color:var(--fallback-er,oklch(var(--er)/.9));border-bottom-color:var(--fallback-er,oklch(var(--er)/.9))}.border-y-error\/95{border-top-color:var(--fallback-er,oklch(var(--er)/.95));border-bottom-color:var(--fallback-er,oklch(var(--er)/.95))}.border-y-info{border-top-color:var(--fallback-in,oklch(var(--in)/1));border-bottom-color:var(--fallback-in,oklch(var(--in)/1))}.border-y-info-content{border-top-color:var(--fallback-inc,oklch(var(--inc)/1));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/1))}.border-y-info-content\/0{border-top-color:var(--fallback-inc,oklch(var(--inc)/0));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/0))}.border-y-info-content\/10{border-top-color:var(--fallback-inc,oklch(var(--inc)/.1));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.1))}.border-y-info-content\/100{border-top-color:var(--fallback-inc,oklch(var(--inc)/1));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/1))}.border-y-info-content\/20{border-top-color:var(--fallback-inc,oklch(var(--inc)/.2));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.2))}.border-y-info-content\/25{border-top-color:var(--fallback-inc,oklch(var(--inc)/.25));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.25))}.border-y-info-content\/30{border-top-color:var(--fallback-inc,oklch(var(--inc)/.3));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.3))}.border-y-info-content\/40{border-top-color:var(--fallback-inc,oklch(var(--inc)/.4));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.4))}.border-y-info-content\/5{border-top-color:var(--fallback-inc,oklch(var(--inc)/.05));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.05))}.border-y-info-content\/50{border-top-color:var(--fallback-inc,oklch(var(--inc)/.5));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.5))}.border-y-info-content\/60{border-top-color:var(--fallback-inc,oklch(var(--inc)/.6));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.6))}.border-y-info-content\/70{border-top-color:var(--fallback-inc,oklch(var(--inc)/.7));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.7))}.border-y-info-content\/75{border-top-color:var(--fallback-inc,oklch(var(--inc)/.75));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.75))}.border-y-info-content\/80{border-top-color:var(--fallback-inc,oklch(var(--inc)/.8));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.8))}.border-y-info-content\/90{border-top-color:var(--fallback-inc,oklch(var(--inc)/.9));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.9))}.border-y-info-content\/95{border-top-color:var(--fallback-inc,oklch(var(--inc)/.95));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.95))}.border-y-info\/0{border-top-color:var(--fallback-in,oklch(var(--in)/0));border-bottom-color:var(--fallback-in,oklch(var(--in)/0))}.border-y-info\/10{border-top-color:var(--fallback-in,oklch(var(--in)/.1));border-bottom-color:var(--fallback-in,oklch(var(--in)/.1))}.border-y-info\/100{border-top-color:var(--fallback-in,oklch(var(--in)/1));border-bottom-color:var(--fallback-in,oklch(var(--in)/1))}.border-y-info\/20{border-top-color:var(--fallback-in,oklch(var(--in)/.2));border-bottom-color:var(--fallback-in,oklch(var(--in)/.2))}.border-y-info\/25{border-top-color:var(--fallback-in,oklch(var(--in)/.25));border-bottom-color:var(--fallback-in,oklch(var(--in)/.25))}.border-y-info\/30{border-top-color:var(--fallback-in,oklch(var(--in)/.3));border-bottom-color:var(--fallback-in,oklch(var(--in)/.3))}.border-y-info\/40{border-top-color:var(--fallback-in,oklch(var(--in)/.4));border-bottom-color:var(--fallback-in,oklch(var(--in)/.4))}.border-y-info\/5{border-top-color:var(--fallback-in,oklch(var(--in)/.05));border-bottom-color:var(--fallback-in,oklch(var(--in)/.05))}.border-y-info\/50{border-top-color:var(--fallback-in,oklch(var(--in)/.5));border-bottom-color:var(--fallback-in,oklch(var(--in)/.5))}.border-y-info\/60{border-top-color:var(--fallback-in,oklch(var(--in)/.6));border-bottom-color:var(--fallback-in,oklch(var(--in)/.6))}.border-y-info\/70{border-top-color:var(--fallback-in,oklch(var(--in)/.7));border-bottom-color:var(--fallback-in,oklch(var(--in)/.7))}.border-y-info\/75{border-top-color:var(--fallback-in,oklch(var(--in)/.75));border-bottom-color:var(--fallback-in,oklch(var(--in)/.75))}.border-y-info\/80{border-top-color:var(--fallback-in,oklch(var(--in)/.8));border-bottom-color:var(--fallback-in,oklch(var(--in)/.8))}.border-y-info\/90{border-top-color:var(--fallback-in,oklch(var(--in)/.9));border-bottom-color:var(--fallback-in,oklch(var(--in)/.9))}.border-y-info\/95{border-top-color:var(--fallback-in,oklch(var(--in)/.95));border-bottom-color:var(--fallback-in,oklch(var(--in)/.95))}.border-y-neutral{border-top-color:var(--fallback-n,oklch(var(--n)/1));border-bottom-color:var(--fallback-n,oklch(var(--n)/1))}.border-y-neutral-content{border-top-color:var(--fallback-nc,oklch(var(--nc)/1));border-bottom-color:var(--fallback-nc,oklch(var(--nc)/1))}.border-y-neutral-content\/0{border-top-color:var(--fallback-nc,oklch(var(--nc)/0));border-bottom-color:var(--fallback-nc,oklch(var(--nc)/0))}.border-y-neutral-content\/10{border-top-color:var(--fallback-nc,oklch(var(--nc)/.1));border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.1))}.border-y-neutral-content\/100{border-top-color:var(--fallback-nc,oklch(var(--nc)/1));border-bottom-color:var(--fallback-nc,oklch(var(--nc)/1))}.border-y-neutral-content\/20{border-top-color:var(--fallback-nc,oklch(var(--nc)/.2));border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.2))}.border-y-neutral-content\/25{border-top-color:var(--fallback-nc,oklch(var(--nc)/.25));border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.25))}.border-y-neutral-content\/30{border-top-color:var(--fallback-nc,oklch(var(--nc)/.3));border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.3))}.border-y-neutral-content\/40{border-top-color:var(--fallback-nc,oklch(var(--nc)/.4));border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.4))}.border-y-neutral-content\/5{border-top-color:var(--fallback-nc,oklch(var(--nc)/.05));border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.05))}.border-y-neutral-content\/50{border-top-color:var(--fallback-nc,oklch(var(--nc)/.5));border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.5))}.border-y-neutral-content\/60{border-top-color:var(--fallback-nc,oklch(var(--nc)/.6));border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.6))}.border-y-neutral-content\/70{border-top-color:var(--fallback-nc,oklch(var(--nc)/.7));border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.7))}.border-y-neutral-content\/75{border-top-color:var(--fallback-nc,oklch(var(--nc)/.75));border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.75))}.border-y-neutral-content\/80{border-top-color:var(--fallback-nc,oklch(var(--nc)/.8));border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.8))}.border-y-neutral-content\/90{border-top-color:var(--fallback-nc,oklch(var(--nc)/.9));border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.9))}.border-y-neutral-content\/95{border-top-color:var(--fallback-nc,oklch(var(--nc)/.95));border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.95))}.border-y-neutral\/0{border-top-color:var(--fallback-n,oklch(var(--n)/0));border-bottom-color:var(--fallback-n,oklch(var(--n)/0))}.border-y-neutral\/10{border-top-color:var(--fallback-n,oklch(var(--n)/.1));border-bottom-color:var(--fallback-n,oklch(var(--n)/.1))}.border-y-neutral\/100{border-top-color:var(--fallback-n,oklch(var(--n)/1));border-bottom-color:var(--fallback-n,oklch(var(--n)/1))}.border-y-neutral\/20{border-top-color:var(--fallback-n,oklch(var(--n)/.2));border-bottom-color:var(--fallback-n,oklch(var(--n)/.2))}.border-y-neutral\/25{border-top-color:var(--fallback-n,oklch(var(--n)/.25));border-bottom-color:var(--fallback-n,oklch(var(--n)/.25))}.border-y-neutral\/30{border-top-color:var(--fallback-n,oklch(var(--n)/.3));border-bottom-color:var(--fallback-n,oklch(var(--n)/.3))}.border-y-neutral\/40{border-top-color:var(--fallback-n,oklch(var(--n)/.4));border-bottom-color:var(--fallback-n,oklch(var(--n)/.4))}.border-y-neutral\/5{border-top-color:var(--fallback-n,oklch(var(--n)/.05));border-bottom-color:var(--fallback-n,oklch(var(--n)/.05))}.border-y-neutral\/50{border-top-color:var(--fallback-n,oklch(var(--n)/.5));border-bottom-color:var(--fallback-n,oklch(var(--n)/.5))}.border-y-neutral\/60{border-top-color:var(--fallback-n,oklch(var(--n)/.6));border-bottom-color:var(--fallback-n,oklch(var(--n)/.6))}.border-y-neutral\/70{border-top-color:var(--fallback-n,oklch(var(--n)/.7));border-bottom-color:var(--fallback-n,oklch(var(--n)/.7))}.border-y-neutral\/75{border-top-color:var(--fallback-n,oklch(var(--n)/.75));border-bottom-color:var(--fallback-n,oklch(var(--n)/.75))}.border-y-neutral\/80{border-top-color:var(--fallback-n,oklch(var(--n)/.8));border-bottom-color:var(--fallback-n,oklch(var(--n)/.8))}.border-y-neutral\/90{border-top-color:var(--fallback-n,oklch(var(--n)/.9));border-bottom-color:var(--fallback-n,oklch(var(--n)/.9))}.border-y-neutral\/95{border-top-color:var(--fallback-n,oklch(var(--n)/.95));border-bottom-color:var(--fallback-n,oklch(var(--n)/.95))}.border-y-primary{border-top-color:var(--fallback-p,oklch(var(--p)/1));border-bottom-color:var(--fallback-p,oklch(var(--p)/1))}.border-y-primary-content{border-top-color:var(--fallback-pc,oklch(var(--pc)/1));border-bottom-color:var(--fallback-pc,oklch(var(--pc)/1))}.border-y-primary-content\/0{border-top-color:var(--fallback-pc,oklch(var(--pc)/0));border-bottom-color:var(--fallback-pc,oklch(var(--pc)/0))}.border-y-primary-content\/10{border-top-color:var(--fallback-pc,oklch(var(--pc)/.1));border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.1))}.border-y-primary-content\/100{border-top-color:var(--fallback-pc,oklch(var(--pc)/1));border-bottom-color:var(--fallback-pc,oklch(var(--pc)/1))}.border-y-primary-content\/20{border-top-color:var(--fallback-pc,oklch(var(--pc)/.2));border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.2))}.border-y-primary-content\/25{border-top-color:var(--fallback-pc,oklch(var(--pc)/.25));border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.25))}.border-y-primary-content\/30{border-top-color:var(--fallback-pc,oklch(var(--pc)/.3));border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.3))}.border-y-primary-content\/40{border-top-color:var(--fallback-pc,oklch(var(--pc)/.4));border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.4))}.border-y-primary-content\/5{border-top-color:var(--fallback-pc,oklch(var(--pc)/.05));border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.05))}.border-y-primary-content\/50{border-top-color:var(--fallback-pc,oklch(var(--pc)/.5));border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.5))}.border-y-primary-content\/60{border-top-color:var(--fallback-pc,oklch(var(--pc)/.6));border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.6))}.border-y-primary-content\/70{border-top-color:var(--fallback-pc,oklch(var(--pc)/.7));border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.7))}.border-y-primary-content\/75{border-top-color:var(--fallback-pc,oklch(var(--pc)/.75));border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.75))}.border-y-primary-content\/80{border-top-color:var(--fallback-pc,oklch(var(--pc)/.8));border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.8))}.border-y-primary-content\/90{border-top-color:var(--fallback-pc,oklch(var(--pc)/.9));border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.9))}.border-y-primary-content\/95{border-top-color:var(--fallback-pc,oklch(var(--pc)/.95));border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.95))}.border-y-primary\/0{border-top-color:var(--fallback-p,oklch(var(--p)/0));border-bottom-color:var(--fallback-p,oklch(var(--p)/0))}.border-y-primary\/10{border-top-color:var(--fallback-p,oklch(var(--p)/.1));border-bottom-color:var(--fallback-p,oklch(var(--p)/.1))}.border-y-primary\/100{border-top-color:var(--fallback-p,oklch(var(--p)/1));border-bottom-color:var(--fallback-p,oklch(var(--p)/1))}.border-y-primary\/20{border-top-color:var(--fallback-p,oklch(var(--p)/.2));border-bottom-color:var(--fallback-p,oklch(var(--p)/.2))}.border-y-primary\/25{border-top-color:var(--fallback-p,oklch(var(--p)/.25));border-bottom-color:var(--fallback-p,oklch(var(--p)/.25))}.border-y-primary\/30{border-top-color:var(--fallback-p,oklch(var(--p)/.3));border-bottom-color:var(--fallback-p,oklch(var(--p)/.3))}.border-y-primary\/40{border-top-color:var(--fallback-p,oklch(var(--p)/.4));border-bottom-color:var(--fallback-p,oklch(var(--p)/.4))}.border-y-primary\/5{border-top-color:var(--fallback-p,oklch(var(--p)/.05));border-bottom-color:var(--fallback-p,oklch(var(--p)/.05))}.border-y-primary\/50{border-top-color:var(--fallback-p,oklch(var(--p)/.5));border-bottom-color:var(--fallback-p,oklch(var(--p)/.5))}.border-y-primary\/60{border-top-color:var(--fallback-p,oklch(var(--p)/.6));border-bottom-color:var(--fallback-p,oklch(var(--p)/.6))}.border-y-primary\/70{border-top-color:var(--fallback-p,oklch(var(--p)/.7));border-bottom-color:var(--fallback-p,oklch(var(--p)/.7))}.border-y-primary\/75{border-top-color:var(--fallback-p,oklch(var(--p)/.75));border-bottom-color:var(--fallback-p,oklch(var(--p)/.75))}.border-y-primary\/80{border-top-color:var(--fallback-p,oklch(var(--p)/.8));border-bottom-color:var(--fallback-p,oklch(var(--p)/.8))}.border-y-primary\/90{border-top-color:var(--fallback-p,oklch(var(--p)/.9));border-bottom-color:var(--fallback-p,oklch(var(--p)/.9))}.border-y-primary\/95{border-top-color:var(--fallback-p,oklch(var(--p)/.95));border-bottom-color:var(--fallback-p,oklch(var(--p)/.95))}.border-y-secondary{border-top-color:var(--fallback-s,oklch(var(--s)/1));border-bottom-color:var(--fallback-s,oklch(var(--s)/1))}.border-y-secondary-content{border-top-color:var(--fallback-sc,oklch(var(--sc)/1));border-bottom-color:var(--fallback-sc,oklch(var(--sc)/1))}.border-y-secondary-content\/0{border-top-color:var(--fallback-sc,oklch(var(--sc)/0));border-bottom-color:var(--fallback-sc,oklch(var(--sc)/0))}.border-y-secondary-content\/10{border-top-color:var(--fallback-sc,oklch(var(--sc)/.1));border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.1))}.border-y-secondary-content\/100{border-top-color:var(--fallback-sc,oklch(var(--sc)/1));border-bottom-color:var(--fallback-sc,oklch(var(--sc)/1))}.border-y-secondary-content\/20{border-top-color:var(--fallback-sc,oklch(var(--sc)/.2));border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.2))}.border-y-secondary-content\/25{border-top-color:var(--fallback-sc,oklch(var(--sc)/.25));border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.25))}.border-y-secondary-content\/30{border-top-color:var(--fallback-sc,oklch(var(--sc)/.3));border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.3))}.border-y-secondary-content\/40{border-top-color:var(--fallback-sc,oklch(var(--sc)/.4));border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.4))}.border-y-secondary-content\/5{border-top-color:var(--fallback-sc,oklch(var(--sc)/.05));border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.05))}.border-y-secondary-content\/50{border-top-color:var(--fallback-sc,oklch(var(--sc)/.5));border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.5))}.border-y-secondary-content\/60{border-top-color:var(--fallback-sc,oklch(var(--sc)/.6));border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.6))}.border-y-secondary-content\/70{border-top-color:var(--fallback-sc,oklch(var(--sc)/.7));border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.7))}.border-y-secondary-content\/75{border-top-color:var(--fallback-sc,oklch(var(--sc)/.75));border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.75))}.border-y-secondary-content\/80{border-top-color:var(--fallback-sc,oklch(var(--sc)/.8));border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.8))}.border-y-secondary-content\/90{border-top-color:var(--fallback-sc,oklch(var(--sc)/.9));border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.9))}.border-y-secondary-content\/95{border-top-color:var(--fallback-sc,oklch(var(--sc)/.95));border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.95))}.border-y-secondary\/0{border-top-color:var(--fallback-s,oklch(var(--s)/0));border-bottom-color:var(--fallback-s,oklch(var(--s)/0))}.border-y-secondary\/10{border-top-color:var(--fallback-s,oklch(var(--s)/.1));border-bottom-color:var(--fallback-s,oklch(var(--s)/.1))}.border-y-secondary\/100{border-top-color:var(--fallback-s,oklch(var(--s)/1));border-bottom-color:var(--fallback-s,oklch(var(--s)/1))}.border-y-secondary\/20{border-top-color:var(--fallback-s,oklch(var(--s)/.2));border-bottom-color:var(--fallback-s,oklch(var(--s)/.2))}.border-y-secondary\/25{border-top-color:var(--fallback-s,oklch(var(--s)/.25));border-bottom-color:var(--fallback-s,oklch(var(--s)/.25))}.border-y-secondary\/30{border-top-color:var(--fallback-s,oklch(var(--s)/.3));border-bottom-color:var(--fallback-s,oklch(var(--s)/.3))}.border-y-secondary\/40{border-top-color:var(--fallback-s,oklch(var(--s)/.4));border-bottom-color:var(--fallback-s,oklch(var(--s)/.4))}.border-y-secondary\/5{border-top-color:var(--fallback-s,oklch(var(--s)/.05));border-bottom-color:var(--fallback-s,oklch(var(--s)/.05))}.border-y-secondary\/50{border-top-color:var(--fallback-s,oklch(var(--s)/.5));border-bottom-color:var(--fallback-s,oklch(var(--s)/.5))}.border-y-secondary\/60{border-top-color:var(--fallback-s,oklch(var(--s)/.6));border-bottom-color:var(--fallback-s,oklch(var(--s)/.6))}.border-y-secondary\/70{border-top-color:var(--fallback-s,oklch(var(--s)/.7));border-bottom-color:var(--fallback-s,oklch(var(--s)/.7))}.border-y-secondary\/75{border-top-color:var(--fallback-s,oklch(var(--s)/.75));border-bottom-color:var(--fallback-s,oklch(var(--s)/.75))}.border-y-secondary\/80{border-top-color:var(--fallback-s,oklch(var(--s)/.8));border-bottom-color:var(--fallback-s,oklch(var(--s)/.8))}.border-y-secondary\/90{border-top-color:var(--fallback-s,oklch(var(--s)/.9));border-bottom-color:var(--fallback-s,oklch(var(--s)/.9))}.border-y-secondary\/95{border-top-color:var(--fallback-s,oklch(var(--s)/.95));border-bottom-color:var(--fallback-s,oklch(var(--s)/.95))}.border-y-success{border-top-color:var(--fallback-su,oklch(var(--su)/1));border-bottom-color:var(--fallback-su,oklch(var(--su)/1))}.border-y-success-content{border-top-color:var(--fallback-suc,oklch(var(--suc)/1));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/1))}.border-y-success-content\/0{border-top-color:var(--fallback-suc,oklch(var(--suc)/0));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/0))}.border-y-success-content\/10{border-top-color:var(--fallback-suc,oklch(var(--suc)/.1));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.1))}.border-y-success-content\/100{border-top-color:var(--fallback-suc,oklch(var(--suc)/1));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/1))}.border-y-success-content\/20{border-top-color:var(--fallback-suc,oklch(var(--suc)/.2));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.2))}.border-y-success-content\/25{border-top-color:var(--fallback-suc,oklch(var(--suc)/.25));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.25))}.border-y-success-content\/30{border-top-color:var(--fallback-suc,oklch(var(--suc)/.3));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.3))}.border-y-success-content\/40{border-top-color:var(--fallback-suc,oklch(var(--suc)/.4));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.4))}.border-y-success-content\/5{border-top-color:var(--fallback-suc,oklch(var(--suc)/.05));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.05))}.border-y-success-content\/50{border-top-color:var(--fallback-suc,oklch(var(--suc)/.5));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.5))}.border-y-success-content\/60{border-top-color:var(--fallback-suc,oklch(var(--suc)/.6));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.6))}.border-y-success-content\/70{border-top-color:var(--fallback-suc,oklch(var(--suc)/.7));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.7))}.border-y-success-content\/75{border-top-color:var(--fallback-suc,oklch(var(--suc)/.75));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.75))}.border-y-success-content\/80{border-top-color:var(--fallback-suc,oklch(var(--suc)/.8));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.8))}.border-y-success-content\/90{border-top-color:var(--fallback-suc,oklch(var(--suc)/.9));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.9))}.border-y-success-content\/95{border-top-color:var(--fallback-suc,oklch(var(--suc)/.95));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.95))}.border-y-success\/0{border-top-color:var(--fallback-su,oklch(var(--su)/0));border-bottom-color:var(--fallback-su,oklch(var(--su)/0))}.border-y-success\/10{border-top-color:var(--fallback-su,oklch(var(--su)/.1));border-bottom-color:var(--fallback-su,oklch(var(--su)/.1))}.border-y-success\/100{border-top-color:var(--fallback-su,oklch(var(--su)/1));border-bottom-color:var(--fallback-su,oklch(var(--su)/1))}.border-y-success\/20{border-top-color:var(--fallback-su,oklch(var(--su)/.2));border-bottom-color:var(--fallback-su,oklch(var(--su)/.2))}.border-y-success\/25{border-top-color:var(--fallback-su,oklch(var(--su)/.25));border-bottom-color:var(--fallback-su,oklch(var(--su)/.25))}.border-y-success\/30{border-top-color:var(--fallback-su,oklch(var(--su)/.3));border-bottom-color:var(--fallback-su,oklch(var(--su)/.3))}.border-y-success\/40{border-top-color:var(--fallback-su,oklch(var(--su)/.4));border-bottom-color:var(--fallback-su,oklch(var(--su)/.4))}.border-y-success\/5{border-top-color:var(--fallback-su,oklch(var(--su)/.05));border-bottom-color:var(--fallback-su,oklch(var(--su)/.05))}.border-y-success\/50{border-top-color:var(--fallback-su,oklch(var(--su)/.5));border-bottom-color:var(--fallback-su,oklch(var(--su)/.5))}.border-y-success\/60{border-top-color:var(--fallback-su,oklch(var(--su)/.6));border-bottom-color:var(--fallback-su,oklch(var(--su)/.6))}.border-y-success\/70{border-top-color:var(--fallback-su,oklch(var(--su)/.7));border-bottom-color:var(--fallback-su,oklch(var(--su)/.7))}.border-y-success\/75{border-top-color:var(--fallback-su,oklch(var(--su)/.75));border-bottom-color:var(--fallback-su,oklch(var(--su)/.75))}.border-y-success\/80{border-top-color:var(--fallback-su,oklch(var(--su)/.8));border-bottom-color:var(--fallback-su,oklch(var(--su)/.8))}.border-y-success\/90{border-top-color:var(--fallback-su,oklch(var(--su)/.9));border-bottom-color:var(--fallback-su,oklch(var(--su)/.9))}.border-y-success\/95{border-top-color:var(--fallback-su,oklch(var(--su)/.95));border-bottom-color:var(--fallback-su,oklch(var(--su)/.95))}.border-y-transparent{border-top-color:transparent;border-bottom-color:transparent}.border-y-transparent\/0{border-top-color:rgb(0 0 0 / 0);border-bottom-color:rgb(0 0 0 / 0)}.border-y-transparent\/10{border-top-color:rgb(0 0 0 / .1);border-bottom-color:rgb(0 0 0 / .1)}.border-y-transparent\/100{border-top-color:rgb(0 0 0 / 1);border-bottom-color:rgb(0 0 0 / 1)}.border-y-transparent\/20{border-top-color:rgb(0 0 0 / .2);border-bottom-color:rgb(0 0 0 / .2)}.border-y-transparent\/25{border-top-color:rgb(0 0 0 / .25);border-bottom-color:rgb(0 0 0 / .25)}.border-y-transparent\/30{border-top-color:rgb(0 0 0 / .3);border-bottom-color:rgb(0 0 0 / .3)}.border-y-transparent\/40{border-top-color:rgb(0 0 0 / .4);border-bottom-color:rgb(0 0 0 / .4)}.border-y-transparent\/5{border-top-color:rgb(0 0 0 / .05);border-bottom-color:rgb(0 0 0 / .05)}.border-y-transparent\/50{border-top-color:rgb(0 0 0 / .5);border-bottom-color:rgb(0 0 0 / .5)}.border-y-transparent\/60{border-top-color:rgb(0 0 0 / .6);border-bottom-color:rgb(0 0 0 / .6)}.border-y-transparent\/70{border-top-color:rgb(0 0 0 / .7);border-bottom-color:rgb(0 0 0 / .7)}.border-y-transparent\/75{border-top-color:rgb(0 0 0 / .75);border-bottom-color:rgb(0 0 0 / .75)}.border-y-transparent\/80{border-top-color:rgb(0 0 0 / .8);border-bottom-color:rgb(0 0 0 / .8)}.border-y-transparent\/90{border-top-color:rgb(0 0 0 / .9);border-bottom-color:rgb(0 0 0 / .9)}.border-y-transparent\/95{border-top-color:rgb(0 0 0 / .95);border-bottom-color:rgb(0 0 0 / .95)}.border-y-warning{border-top-color:var(--fallback-wa,oklch(var(--wa)/1));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/1))}.border-y-warning-content{border-top-color:var(--fallback-wac,oklch(var(--wac)/1));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/1))}.border-y-warning-content\/0{border-top-color:var(--fallback-wac,oklch(var(--wac)/0));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/0))}.border-y-warning-content\/10{border-top-color:var(--fallback-wac,oklch(var(--wac)/.1));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.1))}.border-y-warning-content\/100{border-top-color:var(--fallback-wac,oklch(var(--wac)/1));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/1))}.border-y-warning-content\/20{border-top-color:var(--fallback-wac,oklch(var(--wac)/.2));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.2))}.border-y-warning-content\/25{border-top-color:var(--fallback-wac,oklch(var(--wac)/.25));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.25))}.border-y-warning-content\/30{border-top-color:var(--fallback-wac,oklch(var(--wac)/.3));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.3))}.border-y-warning-content\/40{border-top-color:var(--fallback-wac,oklch(var(--wac)/.4));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.4))}.border-y-warning-content\/5{border-top-color:var(--fallback-wac,oklch(var(--wac)/.05));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.05))}.border-y-warning-content\/50{border-top-color:var(--fallback-wac,oklch(var(--wac)/.5));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.5))}.border-y-warning-content\/60{border-top-color:var(--fallback-wac,oklch(var(--wac)/.6));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.6))}.border-y-warning-content\/70{border-top-color:var(--fallback-wac,oklch(var(--wac)/.7));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.7))}.border-y-warning-content\/75{border-top-color:var(--fallback-wac,oklch(var(--wac)/.75));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.75))}.border-y-warning-content\/80{border-top-color:var(--fallback-wac,oklch(var(--wac)/.8));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.8))}.border-y-warning-content\/90{border-top-color:var(--fallback-wac,oklch(var(--wac)/.9));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.9))}.border-y-warning-content\/95{border-top-color:var(--fallback-wac,oklch(var(--wac)/.95));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.95))}.border-y-warning\/0{border-top-color:var(--fallback-wa,oklch(var(--wa)/0));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/0))}.border-y-warning\/10{border-top-color:var(--fallback-wa,oklch(var(--wa)/.1));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.1))}.border-y-warning\/100{border-top-color:var(--fallback-wa,oklch(var(--wa)/1));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/1))}.border-y-warning\/20{border-top-color:var(--fallback-wa,oklch(var(--wa)/.2));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.2))}.border-y-warning\/25{border-top-color:var(--fallback-wa,oklch(var(--wa)/.25));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.25))}.border-y-warning\/30{border-top-color:var(--fallback-wa,oklch(var(--wa)/.3));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.3))}.border-y-warning\/40{border-top-color:var(--fallback-wa,oklch(var(--wa)/.4));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.4))}.border-y-warning\/5{border-top-color:var(--fallback-wa,oklch(var(--wa)/.05));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.05))}.border-y-warning\/50{border-top-color:var(--fallback-wa,oklch(var(--wa)/.5));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.5))}.border-y-warning\/60{border-top-color:var(--fallback-wa,oklch(var(--wa)/.6));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.6))}.border-y-warning\/70{border-top-color:var(--fallback-wa,oklch(var(--wa)/.7));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.7))}.border-y-warning\/75{border-top-color:var(--fallback-wa,oklch(var(--wa)/.75));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.75))}.border-y-warning\/80{border-top-color:var(--fallback-wa,oklch(var(--wa)/.8));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.8))}.border-y-warning\/90{border-top-color:var(--fallback-wa,oklch(var(--wa)/.9));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.9))}.border-y-warning\/95{border-top-color:var(--fallback-wa,oklch(var(--wa)/.95));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.95))}.border-b-accent{border-bottom-color:var(--fallback-a,oklch(var(--a)/1))}.border-b-accent-content{border-bottom-color:var(--fallback-ac,oklch(var(--ac)/1))}.border-b-accent-content\/0{border-bottom-color:var(--fallback-ac,oklch(var(--ac)/0))}.border-b-accent-content\/10{border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.1))}.border-b-accent-content\/100{border-bottom-color:var(--fallback-ac,oklch(var(--ac)/1))}.border-b-accent-content\/20{border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.2))}.border-b-accent-content\/25{border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.25))}.border-b-accent-content\/30{border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.3))}.border-b-accent-content\/40{border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.4))}.border-b-accent-content\/5{border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.05))}.border-b-accent-content\/50{border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.5))}.border-b-accent-content\/60{border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.6))}.border-b-accent-content\/70{border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.7))}.border-b-accent-content\/75{border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.75))}.border-b-accent-content\/80{border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.8))}.border-b-accent-content\/90{border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.9))}.border-b-accent-content\/95{border-bottom-color:var(--fallback-ac,oklch(var(--ac)/.95))}.border-b-accent\/0{border-bottom-color:var(--fallback-a,oklch(var(--a)/0))}.border-b-accent\/10{border-bottom-color:var(--fallback-a,oklch(var(--a)/.1))}.border-b-accent\/100{border-bottom-color:var(--fallback-a,oklch(var(--a)/1))}.border-b-accent\/20{border-bottom-color:var(--fallback-a,oklch(var(--a)/.2))}.border-b-accent\/25{border-bottom-color:var(--fallback-a,oklch(var(--a)/.25))}.border-b-accent\/30{border-bottom-color:var(--fallback-a,oklch(var(--a)/.3))}.border-b-accent\/40{border-bottom-color:var(--fallback-a,oklch(var(--a)/.4))}.border-b-accent\/5{border-bottom-color:var(--fallback-a,oklch(var(--a)/.05))}.border-b-accent\/50{border-bottom-color:var(--fallback-a,oklch(var(--a)/.5))}.border-b-accent\/60{border-bottom-color:var(--fallback-a,oklch(var(--a)/.6))}.border-b-accent\/70{border-bottom-color:var(--fallback-a,oklch(var(--a)/.7))}.border-b-accent\/75{border-bottom-color:var(--fallback-a,oklch(var(--a)/.75))}.border-b-accent\/80{border-bottom-color:var(--fallback-a,oklch(var(--a)/.8))}.border-b-accent\/90{border-bottom-color:var(--fallback-a,oklch(var(--a)/.9))}.border-b-accent\/95{border-bottom-color:var(--fallback-a,oklch(var(--a)/.95))}.border-b-base-100{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/1))}.border-b-base-100\/0{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/0))}.border-b-base-100\/10{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.1))}.border-b-base-100\/100{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/1))}.border-b-base-100\/20{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.2))}.border-b-base-100\/25{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.25))}.border-b-base-100\/30{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.3))}.border-b-base-100\/40{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.4))}.border-b-base-100\/5{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.05))}.border-b-base-100\/50{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.5))}.border-b-base-100\/60{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.6))}.border-b-base-100\/70{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.7))}.border-b-base-100\/75{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.75))}.border-b-base-100\/80{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.8))}.border-b-base-100\/90{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.9))}.border-b-base-100\/95{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.95))}.border-b-base-200{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/1))}.border-b-base-200\/0{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/0))}.border-b-base-200\/10{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.1))}.border-b-base-200\/100{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/1))}.border-b-base-200\/20{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.2))}.border-b-base-200\/25{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.25))}.border-b-base-200\/30{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.3))}.border-b-base-200\/40{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.4))}.border-b-base-200\/5{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.05))}.border-b-base-200\/50{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.5))}.border-b-base-200\/60{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.6))}.border-b-base-200\/70{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.7))}.border-b-base-200\/75{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.75))}.border-b-base-200\/80{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.8))}.border-b-base-200\/90{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.9))}.border-b-base-200\/95{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.95))}.border-b-base-300{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/1))}.border-b-base-300\/0{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/0))}.border-b-base-300\/10{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.1))}.border-b-base-300\/100{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/1))}.border-b-base-300\/20{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.2))}.border-b-base-300\/25{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.25))}.border-b-base-300\/30{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.3))}.border-b-base-300\/40{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.4))}.border-b-base-300\/5{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.05))}.border-b-base-300\/50{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.5))}.border-b-base-300\/60{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.6))}.border-b-base-300\/70{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.7))}.border-b-base-300\/75{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.75))}.border-b-base-300\/80{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.8))}.border-b-base-300\/90{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.9))}.border-b-base-300\/95{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.95))}.border-b-base-content{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/1))}.border-b-base-content\/0{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/0))}.border-b-base-content\/10{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.1))}.border-b-base-content\/100{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/1))}.border-b-base-content\/20{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.2))}.border-b-base-content\/25{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.25))}.border-b-base-content\/30{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.3))}.border-b-base-content\/40{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.4))}.border-b-base-content\/5{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.05))}.border-b-base-content\/50{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.5))}.border-b-base-content\/60{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.6))}.border-b-base-content\/70{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.7))}.border-b-base-content\/75{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.75))}.border-b-base-content\/80{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.8))}.border-b-base-content\/90{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.9))}.border-b-base-content\/95{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.95))}.border-b-current{border-bottom-color:currentColor}.border-b-error{border-bottom-color:var(--fallback-er,oklch(var(--er)/1))}.border-b-error-content{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/1))}.border-b-error-content\/0{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/0))}.border-b-error-content\/10{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.1))}.border-b-error-content\/100{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/1))}.border-b-error-content\/20{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.2))}.border-b-error-content\/25{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.25))}.border-b-error-content\/30{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.3))}.border-b-error-content\/40{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.4))}.border-b-error-content\/5{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.05))}.border-b-error-content\/50{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.5))}.border-b-error-content\/60{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.6))}.border-b-error-content\/70{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.7))}.border-b-error-content\/75{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.75))}.border-b-error-content\/80{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.8))}.border-b-error-content\/90{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.9))}.border-b-error-content\/95{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.95))}.border-b-error\/0{border-bottom-color:var(--fallback-er,oklch(var(--er)/0))}.border-b-error\/10{border-bottom-color:var(--fallback-er,oklch(var(--er)/.1))}.border-b-error\/100{border-bottom-color:var(--fallback-er,oklch(var(--er)/1))}.border-b-error\/20{border-bottom-color:var(--fallback-er,oklch(var(--er)/.2))}.border-b-error\/25{border-bottom-color:var(--fallback-er,oklch(var(--er)/.25))}.border-b-error\/30{border-bottom-color:var(--fallback-er,oklch(var(--er)/.3))}.border-b-error\/40{border-bottom-color:var(--fallback-er,oklch(var(--er)/.4))}.border-b-error\/5{border-bottom-color:var(--fallback-er,oklch(var(--er)/.05))}.border-b-error\/50{border-bottom-color:var(--fallback-er,oklch(var(--er)/.5))}.border-b-error\/60{border-bottom-color:var(--fallback-er,oklch(var(--er)/.6))}.border-b-error\/70{border-bottom-color:var(--fallback-er,oklch(var(--er)/.7))}.border-b-error\/75{border-bottom-color:var(--fallback-er,oklch(var(--er)/.75))}.border-b-error\/80{border-bottom-color:var(--fallback-er,oklch(var(--er)/.8))}.border-b-error\/90{border-bottom-color:var(--fallback-er,oklch(var(--er)/.9))}.border-b-error\/95{border-bottom-color:var(--fallback-er,oklch(var(--er)/.95))}.border-b-info{border-bottom-color:var(--fallback-in,oklch(var(--in)/1))}.border-b-info-content{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/1))}.border-b-info-content\/0{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/0))}.border-b-info-content\/10{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.1))}.border-b-info-content\/100{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/1))}.border-b-info-content\/20{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.2))}.border-b-info-content\/25{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.25))}.border-b-info-content\/30{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.3))}.border-b-info-content\/40{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.4))}.border-b-info-content\/5{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.05))}.border-b-info-content\/50{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.5))}.border-b-info-content\/60{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.6))}.border-b-info-content\/70{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.7))}.border-b-info-content\/75{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.75))}.border-b-info-content\/80{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.8))}.border-b-info-content\/90{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.9))}.border-b-info-content\/95{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.95))}.border-b-info\/0{border-bottom-color:var(--fallback-in,oklch(var(--in)/0))}.border-b-info\/10{border-bottom-color:var(--fallback-in,oklch(var(--in)/.1))}.border-b-info\/100{border-bottom-color:var(--fallback-in,oklch(var(--in)/1))}.border-b-info\/20{border-bottom-color:var(--fallback-in,oklch(var(--in)/.2))}.border-b-info\/25{border-bottom-color:var(--fallback-in,oklch(var(--in)/.25))}.border-b-info\/30{border-bottom-color:var(--fallback-in,oklch(var(--in)/.3))}.border-b-info\/40{border-bottom-color:var(--fallback-in,oklch(var(--in)/.4))}.border-b-info\/5{border-bottom-color:var(--fallback-in,oklch(var(--in)/.05))}.border-b-info\/50{border-bottom-color:var(--fallback-in,oklch(var(--in)/.5))}.border-b-info\/60{border-bottom-color:var(--fallback-in,oklch(var(--in)/.6))}.border-b-info\/70{border-bottom-color:var(--fallback-in,oklch(var(--in)/.7))}.border-b-info\/75{border-bottom-color:var(--fallback-in,oklch(var(--in)/.75))}.border-b-info\/80{border-bottom-color:var(--fallback-in,oklch(var(--in)/.8))}.border-b-info\/90{border-bottom-color:var(--fallback-in,oklch(var(--in)/.9))}.border-b-info\/95{border-bottom-color:var(--fallback-in,oklch(var(--in)/.95))}.border-b-neutral{border-bottom-color:var(--fallback-n,oklch(var(--n)/1))}.border-b-neutral-content{border-bottom-color:var(--fallback-nc,oklch(var(--nc)/1))}.border-b-neutral-content\/0{border-bottom-color:var(--fallback-nc,oklch(var(--nc)/0))}.border-b-neutral-content\/10{border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.1))}.border-b-neutral-content\/100{border-bottom-color:var(--fallback-nc,oklch(var(--nc)/1))}.border-b-neutral-content\/20{border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.2))}.border-b-neutral-content\/25{border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.25))}.border-b-neutral-content\/30{border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.3))}.border-b-neutral-content\/40{border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.4))}.border-b-neutral-content\/5{border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.05))}.border-b-neutral-content\/50{border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.5))}.border-b-neutral-content\/60{border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.6))}.border-b-neutral-content\/70{border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.7))}.border-b-neutral-content\/75{border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.75))}.border-b-neutral-content\/80{border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.8))}.border-b-neutral-content\/90{border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.9))}.border-b-neutral-content\/95{border-bottom-color:var(--fallback-nc,oklch(var(--nc)/.95))}.border-b-neutral\/0{border-bottom-color:var(--fallback-n,oklch(var(--n)/0))}.border-b-neutral\/10{border-bottom-color:var(--fallback-n,oklch(var(--n)/.1))}.border-b-neutral\/100{border-bottom-color:var(--fallback-n,oklch(var(--n)/1))}.border-b-neutral\/20{border-bottom-color:var(--fallback-n,oklch(var(--n)/.2))}.border-b-neutral\/25{border-bottom-color:var(--fallback-n,oklch(var(--n)/.25))}.border-b-neutral\/30{border-bottom-color:var(--fallback-n,oklch(var(--n)/.3))}.border-b-neutral\/40{border-bottom-color:var(--fallback-n,oklch(var(--n)/.4))}.border-b-neutral\/5{border-bottom-color:var(--fallback-n,oklch(var(--n)/.05))}.border-b-neutral\/50{border-bottom-color:var(--fallback-n,oklch(var(--n)/.5))}.border-b-neutral\/60{border-bottom-color:var(--fallback-n,oklch(var(--n)/.6))}.border-b-neutral\/70{border-bottom-color:var(--fallback-n,oklch(var(--n)/.7))}.border-b-neutral\/75{border-bottom-color:var(--fallback-n,oklch(var(--n)/.75))}.border-b-neutral\/80{border-bottom-color:var(--fallback-n,oklch(var(--n)/.8))}.border-b-neutral\/90{border-bottom-color:var(--fallback-n,oklch(var(--n)/.9))}.border-b-neutral\/95{border-bottom-color:var(--fallback-n,oklch(var(--n)/.95))}.border-b-primary{border-bottom-color:var(--fallback-p,oklch(var(--p)/1))}.border-b-primary-content{border-bottom-color:var(--fallback-pc,oklch(var(--pc)/1))}.border-b-primary-content\/0{border-bottom-color:var(--fallback-pc,oklch(var(--pc)/0))}.border-b-primary-content\/10{border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.1))}.border-b-primary-content\/100{border-bottom-color:var(--fallback-pc,oklch(var(--pc)/1))}.border-b-primary-content\/20{border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.2))}.border-b-primary-content\/25{border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.25))}.border-b-primary-content\/30{border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.3))}.border-b-primary-content\/40{border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.4))}.border-b-primary-content\/5{border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.05))}.border-b-primary-content\/50{border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.5))}.border-b-primary-content\/60{border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.6))}.border-b-primary-content\/70{border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.7))}.border-b-primary-content\/75{border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.75))}.border-b-primary-content\/80{border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.8))}.border-b-primary-content\/90{border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.9))}.border-b-primary-content\/95{border-bottom-color:var(--fallback-pc,oklch(var(--pc)/.95))}.border-b-primary\/0{border-bottom-color:var(--fallback-p,oklch(var(--p)/0))}.border-b-primary\/10{border-bottom-color:var(--fallback-p,oklch(var(--p)/.1))}.border-b-primary\/100{border-bottom-color:var(--fallback-p,oklch(var(--p)/1))}.border-b-primary\/20{border-bottom-color:var(--fallback-p,oklch(var(--p)/.2))}.border-b-primary\/25{border-bottom-color:var(--fallback-p,oklch(var(--p)/.25))}.border-b-primary\/30{border-bottom-color:var(--fallback-p,oklch(var(--p)/.3))}.border-b-primary\/40{border-bottom-color:var(--fallback-p,oklch(var(--p)/.4))}.border-b-primary\/5{border-bottom-color:var(--fallback-p,oklch(var(--p)/.05))}.border-b-primary\/50{border-bottom-color:var(--fallback-p,oklch(var(--p)/.5))}.border-b-primary\/60{border-bottom-color:var(--fallback-p,oklch(var(--p)/.6))}.border-b-primary\/70{border-bottom-color:var(--fallback-p,oklch(var(--p)/.7))}.border-b-primary\/75{border-bottom-color:var(--fallback-p,oklch(var(--p)/.75))}.border-b-primary\/80{border-bottom-color:var(--fallback-p,oklch(var(--p)/.8))}.border-b-primary\/90{border-bottom-color:var(--fallback-p,oklch(var(--p)/.9))}.border-b-primary\/95{border-bottom-color:var(--fallback-p,oklch(var(--p)/.95))}.border-b-secondary{border-bottom-color:var(--fallback-s,oklch(var(--s)/1))}.border-b-secondary-content{border-bottom-color:var(--fallback-sc,oklch(var(--sc)/1))}.border-b-secondary-content\/0{border-bottom-color:var(--fallback-sc,oklch(var(--sc)/0))}.border-b-secondary-content\/10{border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.1))}.border-b-secondary-content\/100{border-bottom-color:var(--fallback-sc,oklch(var(--sc)/1))}.border-b-secondary-content\/20{border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.2))}.border-b-secondary-content\/25{border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.25))}.border-b-secondary-content\/30{border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.3))}.border-b-secondary-content\/40{border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.4))}.border-b-secondary-content\/5{border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.05))}.border-b-secondary-content\/50{border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.5))}.border-b-secondary-content\/60{border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.6))}.border-b-secondary-content\/70{border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.7))}.border-b-secondary-content\/75{border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.75))}.border-b-secondary-content\/80{border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.8))}.border-b-secondary-content\/90{border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.9))}.border-b-secondary-content\/95{border-bottom-color:var(--fallback-sc,oklch(var(--sc)/.95))}.border-b-secondary\/0{border-bottom-color:var(--fallback-s,oklch(var(--s)/0))}.border-b-secondary\/10{border-bottom-color:var(--fallback-s,oklch(var(--s)/.1))}.border-b-secondary\/100{border-bottom-color:var(--fallback-s,oklch(var(--s)/1))}.border-b-secondary\/20{border-bottom-color:var(--fallback-s,oklch(var(--s)/.2))}.border-b-secondary\/25{border-bottom-color:var(--fallback-s,oklch(var(--s)/.25))}.border-b-secondary\/30{border-bottom-color:var(--fallback-s,oklch(var(--s)/.3))}.border-b-secondary\/40{border-bottom-color:var(--fallback-s,oklch(var(--s)/.4))}.border-b-secondary\/5{border-bottom-color:var(--fallback-s,oklch(var(--s)/.05))}.border-b-secondary\/50{border-bottom-color:var(--fallback-s,oklch(var(--s)/.5))}.border-b-secondary\/60{border-bottom-color:var(--fallback-s,oklch(var(--s)/.6))}.border-b-secondary\/70{border-bottom-color:var(--fallback-s,oklch(var(--s)/.7))}.border-b-secondary\/75{border-bottom-color:var(--fallback-s,oklch(var(--s)/.75))}.border-b-secondary\/80{border-bottom-color:var(--fallback-s,oklch(var(--s)/.8))}.border-b-secondary\/90{border-bottom-color:var(--fallback-s,oklch(var(--s)/.9))}.border-b-secondary\/95{border-bottom-color:var(--fallback-s,oklch(var(--s)/.95))}.border-b-success{border-bottom-color:var(--fallback-su,oklch(var(--su)/1))}.border-b-success-content{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/1))}.border-b-success-content\/0{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/0))}.border-b-success-content\/10{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.1))}.border-b-success-content\/100{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/1))}.border-b-success-content\/20{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.2))}.border-b-success-content\/25{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.25))}.border-b-success-content\/30{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.3))}.border-b-success-content\/40{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.4))}.border-b-success-content\/5{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.05))}.border-b-success-content\/50{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.5))}.border-b-success-content\/60{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.6))}.border-b-success-content\/70{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.7))}.border-b-success-content\/75{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.75))}.border-b-success-content\/80{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.8))}.border-b-success-content\/90{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.9))}.border-b-success-content\/95{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.95))}.border-b-success\/0{border-bottom-color:var(--fallback-su,oklch(var(--su)/0))}.border-b-success\/10{border-bottom-color:var(--fallback-su,oklch(var(--su)/.1))}.border-b-success\/100{border-bottom-color:var(--fallback-su,oklch(var(--su)/1))}.border-b-success\/20{border-bottom-color:var(--fallback-su,oklch(var(--su)/.2))}.border-b-success\/25{border-bottom-color:var(--fallback-su,oklch(var(--su)/.25))}.border-b-success\/30{border-bottom-color:var(--fallback-su,oklch(var(--su)/.3))}.border-b-success\/40{border-bottom-color:var(--fallback-su,oklch(var(--su)/.4))}.border-b-success\/5{border-bottom-color:var(--fallback-su,oklch(var(--su)/.05))}.border-b-success\/50{border-bottom-color:var(--fallback-su,oklch(var(--su)/.5))}.border-b-success\/60{border-bottom-color:var(--fallback-su,oklch(var(--su)/.6))}.border-b-success\/70{border-bottom-color:var(--fallback-su,oklch(var(--su)/.7))}.border-b-success\/75{border-bottom-color:var(--fallback-su,oklch(var(--su)/.75))}.border-b-success\/80{border-bottom-color:var(--fallback-su,oklch(var(--su)/.8))}.border-b-success\/90{border-bottom-color:var(--fallback-su,oklch(var(--su)/.9))}.border-b-success\/95{border-bottom-color:var(--fallback-su,oklch(var(--su)/.95))}.border-b-transparent{border-bottom-color:transparent}.border-b-transparent\/0{border-bottom-color:rgb(0 0 0 / 0)}.border-b-transparent\/10{border-bottom-color:rgb(0 0 0 / .1)}.border-b-transparent\/100{border-bottom-color:rgb(0 0 0 / 1)}.border-b-transparent\/20{border-bottom-color:rgb(0 0 0 / .2)}.border-b-transparent\/25{border-bottom-color:rgb(0 0 0 / .25)}.border-b-transparent\/30{border-bottom-color:rgb(0 0 0 / .3)}.border-b-transparent\/40{border-bottom-color:rgb(0 0 0 / .4)}.border-b-transparent\/5{border-bottom-color:rgb(0 0 0 / .05)}.border-b-transparent\/50{border-bottom-color:rgb(0 0 0 / .5)}.border-b-transparent\/60{border-bottom-color:rgb(0 0 0 / .6)}.border-b-transparent\/70{border-bottom-color:rgb(0 0 0 / .7)}.border-b-transparent\/75{border-bottom-color:rgb(0 0 0 / .75)}.border-b-transparent\/80{border-bottom-color:rgb(0 0 0 / .8)}.border-b-transparent\/90{border-bottom-color:rgb(0 0 0 / .9)}.border-b-transparent\/95{border-bottom-color:rgb(0 0 0 / .95)}.border-b-warning{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/1))}.border-b-warning-content{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/1))}.border-b-warning-content\/0{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/0))}.border-b-warning-content\/10{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.1))}.border-b-warning-content\/100{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/1))}.border-b-warning-content\/20{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.2))}.border-b-warning-content\/25{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.25))}.border-b-warning-content\/30{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.3))}.border-b-warning-content\/40{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.4))}.border-b-warning-content\/5{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.05))}.border-b-warning-content\/50{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.5))}.border-b-warning-content\/60{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.6))}.border-b-warning-content\/70{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.7))}.border-b-warning-content\/75{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.75))}.border-b-warning-content\/80{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.8))}.border-b-warning-content\/90{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.9))}.border-b-warning-content\/95{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.95))}.border-b-warning\/0{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/0))}.border-b-warning\/10{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.1))}.border-b-warning\/100{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/1))}.border-b-warning\/20{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.2))}.border-b-warning\/25{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.25))}.border-b-warning\/30{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.3))}.border-b-warning\/40{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.4))}.border-b-warning\/5{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.05))}.border-b-warning\/50{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.5))}.border-b-warning\/60{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.6))}.border-b-warning\/70{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.7))}.border-b-warning\/75{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.75))}.border-b-warning\/80{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.8))}.border-b-warning\/90{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.9))}.border-b-warning\/95{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.95))}.border-e-accent{border-inline-end-color:var(--fallback-a,oklch(var(--a)/1))}.border-e-accent-content{border-inline-end-color:var(--fallback-ac,oklch(var(--ac)/1))}.border-e-accent-content\/0{border-inline-end-color:var(--fallback-ac,oklch(var(--ac)/0))}.border-e-accent-content\/10{border-inline-end-color:var(--fallback-ac,oklch(var(--ac)/0.1))}.border-e-accent-content\/100{border-inline-end-color:var(--fallback-ac,oklch(var(--ac)/1))}.border-e-accent-content\/20{border-inline-end-color:var(--fallback-ac,oklch(var(--ac)/0.2))}.border-e-accent-content\/25{border-inline-end-color:var(--fallback-ac,oklch(var(--ac)/0.25))}.border-e-accent-content\/30{border-inline-end-color:var(--fallback-ac,oklch(var(--ac)/0.3))}.border-e-accent-content\/40{border-inline-end-color:var(--fallback-ac,oklch(var(--ac)/0.4))}.border-e-accent-content\/5{border-inline-end-color:var(--fallback-ac,oklch(var(--ac)/0.05))}.border-e-accent-content\/50{border-inline-end-color:var(--fallback-ac,oklch(var(--ac)/0.5))}.border-e-accent-content\/60{border-inline-end-color:var(--fallback-ac,oklch(var(--ac)/0.6))}.border-e-accent-content\/70{border-inline-end-color:var(--fallback-ac,oklch(var(--ac)/0.7))}.border-e-accent-content\/75{border-inline-end-color:var(--fallback-ac,oklch(var(--ac)/0.75))}.border-e-accent-content\/80{border-inline-end-color:var(--fallback-ac,oklch(var(--ac)/0.8))}.border-e-accent-content\/90{border-inline-end-color:var(--fallback-ac,oklch(var(--ac)/0.9))}.border-e-accent-content\/95{border-inline-end-color:var(--fallback-ac,oklch(var(--ac)/0.95))}.border-e-accent\/0{border-inline-end-color:var(--fallback-a,oklch(var(--a)/0))}.border-e-accent\/10{border-inline-end-color:var(--fallback-a,oklch(var(--a)/0.1))}.border-e-accent\/100{border-inline-end-color:var(--fallback-a,oklch(var(--a)/1))}.border-e-accent\/20{border-inline-end-color:var(--fallback-a,oklch(var(--a)/0.2))}.border-e-accent\/25{border-inline-end-color:var(--fallback-a,oklch(var(--a)/0.25))}.border-e-accent\/30{border-inline-end-color:var(--fallback-a,oklch(var(--a)/0.3))}.border-e-accent\/40{border-inline-end-color:var(--fallback-a,oklch(var(--a)/0.4))}.border-e-accent\/5{border-inline-end-color:var(--fallback-a,oklch(var(--a)/0.05))}.border-e-accent\/50{border-inline-end-color:var(--fallback-a,oklch(var(--a)/0.5))}.border-e-accent\/60{border-inline-end-color:var(--fallback-a,oklch(var(--a)/0.6))}.border-e-accent\/70{border-inline-end-color:var(--fallback-a,oklch(var(--a)/0.7))}.border-e-accent\/75{border-inline-end-color:var(--fallback-a,oklch(var(--a)/0.75))}.border-e-accent\/80{border-inline-end-color:var(--fallback-a,oklch(var(--a)/0.8))}.border-e-accent\/90{border-inline-end-color:var(--fallback-a,oklch(var(--a)/0.9))}.border-e-accent\/95{border-inline-end-color:var(--fallback-a,oklch(var(--a)/0.95))}.border-e-base-100{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/1))}.border-e-base-100\/0{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0))}.border-e-base-100\/10{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.1))}.border-e-base-100\/100{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/1))}.border-e-base-100\/20{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.2))}.border-e-base-100\/25{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.25))}.border-e-base-100\/30{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.3))}.border-e-base-100\/40{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.4))}.border-e-base-100\/5{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.05))}.border-e-base-100\/50{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.5))}.border-e-base-100\/60{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.6))}.border-e-base-100\/70{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.7))}.border-e-base-100\/75{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.75))}.border-e-base-100\/80{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.8))}.border-e-base-100\/90{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.9))}.border-e-base-100\/95{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.95))}.border-e-base-200{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/1))}.border-e-base-200\/0{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0))}.border-e-base-200\/10{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.1))}.border-e-base-200\/100{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/1))}.border-e-base-200\/20{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.2))}.border-e-base-200\/25{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.25))}.border-e-base-200\/30{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.3))}.border-e-base-200\/40{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.4))}.border-e-base-200\/5{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.05))}.border-e-base-200\/50{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.5))}.border-e-base-200\/60{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.6))}.border-e-base-200\/70{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.7))}.border-e-base-200\/75{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.75))}.border-e-base-200\/80{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.8))}.border-e-base-200\/90{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.9))}.border-e-base-200\/95{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.95))}.border-e-base-300{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/1))}.border-e-base-300\/0{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0))}.border-e-base-300\/10{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.1))}.border-e-base-300\/100{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/1))}.border-e-base-300\/20{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.2))}.border-e-base-300\/25{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.25))}.border-e-base-300\/30{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.3))}.border-e-base-300\/40{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.4))}.border-e-base-300\/5{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.05))}.border-e-base-300\/50{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.5))}.border-e-base-300\/60{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.6))}.border-e-base-300\/70{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.7))}.border-e-base-300\/75{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.75))}.border-e-base-300\/80{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.8))}.border-e-base-300\/90{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.9))}.border-e-base-300\/95{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.95))}.border-e-base-content{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/1))}.border-e-base-content\/0{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0))}.border-e-base-content\/10{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.1))}.border-e-base-content\/100{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/1))}.border-e-base-content\/20{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.2))}.border-e-base-content\/25{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.25))}.border-e-base-content\/30{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.3))}.border-e-base-content\/40{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.4))}.border-e-base-content\/5{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.05))}.border-e-base-content\/50{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.5))}.border-e-base-content\/60{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.6))}.border-e-base-content\/70{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.7))}.border-e-base-content\/75{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.75))}.border-e-base-content\/80{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.8))}.border-e-base-content\/90{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.9))}.border-e-base-content\/95{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.95))}.border-e-current{border-inline-end-color:currentColor}.border-e-error{border-inline-end-color:var(--fallback-er,oklch(var(--er)/1))}.border-e-error-content{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/1))}.border-e-error-content\/0{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0))}.border-e-error-content\/10{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.1))}.border-e-error-content\/100{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/1))}.border-e-error-content\/20{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.2))}.border-e-error-content\/25{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.25))}.border-e-error-content\/30{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.3))}.border-e-error-content\/40{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.4))}.border-e-error-content\/5{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.05))}.border-e-error-content\/50{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.5))}.border-e-error-content\/60{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.6))}.border-e-error-content\/70{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.7))}.border-e-error-content\/75{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.75))}.border-e-error-content\/80{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.8))}.border-e-error-content\/90{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.9))}.border-e-error-content\/95{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.95))}.border-e-error\/0{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0))}.border-e-error\/10{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.1))}.border-e-error\/100{border-inline-end-color:var(--fallback-er,oklch(var(--er)/1))}.border-e-error\/20{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.2))}.border-e-error\/25{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.25))}.border-e-error\/30{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.3))}.border-e-error\/40{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.4))}.border-e-error\/5{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.05))}.border-e-error\/50{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.5))}.border-e-error\/60{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.6))}.border-e-error\/70{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.7))}.border-e-error\/75{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.75))}.border-e-error\/80{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.8))}.border-e-error\/90{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.9))}.border-e-error\/95{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.95))}.border-e-info{border-inline-end-color:var(--fallback-in,oklch(var(--in)/1))}.border-e-info-content{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/1))}.border-e-info-content\/0{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0))}.border-e-info-content\/10{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.1))}.border-e-info-content\/100{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/1))}.border-e-info-content\/20{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.2))}.border-e-info-content\/25{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.25))}.border-e-info-content\/30{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.3))}.border-e-info-content\/40{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.4))}.border-e-info-content\/5{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.05))}.border-e-info-content\/50{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.5))}.border-e-info-content\/60{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.6))}.border-e-info-content\/70{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.7))}.border-e-info-content\/75{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.75))}.border-e-info-content\/80{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.8))}.border-e-info-content\/90{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.9))}.border-e-info-content\/95{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.95))}.border-e-info\/0{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0))}.border-e-info\/10{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.1))}.border-e-info\/100{border-inline-end-color:var(--fallback-in,oklch(var(--in)/1))}.border-e-info\/20{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.2))}.border-e-info\/25{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.25))}.border-e-info\/30{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.3))}.border-e-info\/40{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.4))}.border-e-info\/5{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.05))}.border-e-info\/50{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.5))}.border-e-info\/60{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.6))}.border-e-info\/70{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.7))}.border-e-info\/75{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.75))}.border-e-info\/80{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.8))}.border-e-info\/90{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.9))}.border-e-info\/95{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.95))}.border-e-neutral{border-inline-end-color:var(--fallback-n,oklch(var(--n)/1))}.border-e-neutral-content{border-inline-end-color:var(--fallback-nc,oklch(var(--nc)/1))}.border-e-neutral-content\/0{border-inline-end-color:var(--fallback-nc,oklch(var(--nc)/0))}.border-e-neutral-content\/10{border-inline-end-color:var(--fallback-nc,oklch(var(--nc)/0.1))}.border-e-neutral-content\/100{border-inline-end-color:var(--fallback-nc,oklch(var(--nc)/1))}.border-e-neutral-content\/20{border-inline-end-color:var(--fallback-nc,oklch(var(--nc)/0.2))}.border-e-neutral-content\/25{border-inline-end-color:var(--fallback-nc,oklch(var(--nc)/0.25))}.border-e-neutral-content\/30{border-inline-end-color:var(--fallback-nc,oklch(var(--nc)/0.3))}.border-e-neutral-content\/40{border-inline-end-color:var(--fallback-nc,oklch(var(--nc)/0.4))}.border-e-neutral-content\/5{border-inline-end-color:var(--fallback-nc,oklch(var(--nc)/0.05))}.border-e-neutral-content\/50{border-inline-end-color:var(--fallback-nc,oklch(var(--nc)/0.5))}.border-e-neutral-content\/60{border-inline-end-color:var(--fallback-nc,oklch(var(--nc)/0.6))}.border-e-neutral-content\/70{border-inline-end-color:var(--fallback-nc,oklch(var(--nc)/0.7))}.border-e-neutral-content\/75{border-inline-end-color:var(--fallback-nc,oklch(var(--nc)/0.75))}.border-e-neutral-content\/80{border-inline-end-color:var(--fallback-nc,oklch(var(--nc)/0.8))}.border-e-neutral-content\/90{border-inline-end-color:var(--fallback-nc,oklch(var(--nc)/0.9))}.border-e-neutral-content\/95{border-inline-end-color:var(--fallback-nc,oklch(var(--nc)/0.95))}.border-e-neutral\/0{border-inline-end-color:var(--fallback-n,oklch(var(--n)/0))}.border-e-neutral\/10{border-inline-end-color:var(--fallback-n,oklch(var(--n)/0.1))}.border-e-neutral\/100{border-inline-end-color:var(--fallback-n,oklch(var(--n)/1))}.border-e-neutral\/20{border-inline-end-color:var(--fallback-n,oklch(var(--n)/0.2))}.border-e-neutral\/25{border-inline-end-color:var(--fallback-n,oklch(var(--n)/0.25))}.border-e-neutral\/30{border-inline-end-color:var(--fallback-n,oklch(var(--n)/0.3))}.border-e-neutral\/40{border-inline-end-color:var(--fallback-n,oklch(var(--n)/0.4))}.border-e-neutral\/5{border-inline-end-color:var(--fallback-n,oklch(var(--n)/0.05))}.border-e-neutral\/50{border-inline-end-color:var(--fallback-n,oklch(var(--n)/0.5))}.border-e-neutral\/60{border-inline-end-color:var(--fallback-n,oklch(var(--n)/0.6))}.border-e-neutral\/70{border-inline-end-color:var(--fallback-n,oklch(var(--n)/0.7))}.border-e-neutral\/75{border-inline-end-color:var(--fallback-n,oklch(var(--n)/0.75))}.border-e-neutral\/80{border-inline-end-color:var(--fallback-n,oklch(var(--n)/0.8))}.border-e-neutral\/90{border-inline-end-color:var(--fallback-n,oklch(var(--n)/0.9))}.border-e-neutral\/95{border-inline-end-color:var(--fallback-n,oklch(var(--n)/0.95))}.border-e-primary{border-inline-end-color:var(--fallback-p,oklch(var(--p)/1))}.border-e-primary-content{border-inline-end-color:var(--fallback-pc,oklch(var(--pc)/1))}.border-e-primary-content\/0{border-inline-end-color:var(--fallback-pc,oklch(var(--pc)/0))}.border-e-primary-content\/10{border-inline-end-color:var(--fallback-pc,oklch(var(--pc)/0.1))}.border-e-primary-content\/100{border-inline-end-color:var(--fallback-pc,oklch(var(--pc)/1))}.border-e-primary-content\/20{border-inline-end-color:var(--fallback-pc,oklch(var(--pc)/0.2))}.border-e-primary-content\/25{border-inline-end-color:var(--fallback-pc,oklch(var(--pc)/0.25))}.border-e-primary-content\/30{border-inline-end-color:var(--fallback-pc,oklch(var(--pc)/0.3))}.border-e-primary-content\/40{border-inline-end-color:var(--fallback-pc,oklch(var(--pc)/0.4))}.border-e-primary-content\/5{border-inline-end-color:var(--fallback-pc,oklch(var(--pc)/0.05))}.border-e-primary-content\/50{border-inline-end-color:var(--fallback-pc,oklch(var(--pc)/0.5))}.border-e-primary-content\/60{border-inline-end-color:var(--fallback-pc,oklch(var(--pc)/0.6))}.border-e-primary-content\/70{border-inline-end-color:var(--fallback-pc,oklch(var(--pc)/0.7))}.border-e-primary-content\/75{border-inline-end-color:var(--fallback-pc,oklch(var(--pc)/0.75))}.border-e-primary-content\/80{border-inline-end-color:var(--fallback-pc,oklch(var(--pc)/0.8))}.border-e-primary-content\/90{border-inline-end-color:var(--fallback-pc,oklch(var(--pc)/0.9))}.border-e-primary-content\/95{border-inline-end-color:var(--fallback-pc,oklch(var(--pc)/0.95))}.border-e-primary\/0{border-inline-end-color:var(--fallback-p,oklch(var(--p)/0))}.border-e-primary\/10{border-inline-end-color:var(--fallback-p,oklch(var(--p)/0.1))}.border-e-primary\/100{border-inline-end-color:var(--fallback-p,oklch(var(--p)/1))}.border-e-primary\/20{border-inline-end-color:var(--fallback-p,oklch(var(--p)/0.2))}.border-e-primary\/25{border-inline-end-color:var(--fallback-p,oklch(var(--p)/0.25))}.border-e-primary\/30{border-inline-end-color:var(--fallback-p,oklch(var(--p)/0.3))}.border-e-primary\/40{border-inline-end-color:var(--fallback-p,oklch(var(--p)/0.4))}.border-e-primary\/5{border-inline-end-color:var(--fallback-p,oklch(var(--p)/0.05))}.border-e-primary\/50{border-inline-end-color:var(--fallback-p,oklch(var(--p)/0.5))}.border-e-primary\/60{border-inline-end-color:var(--fallback-p,oklch(var(--p)/0.6))}.border-e-primary\/70{border-inline-end-color:var(--fallback-p,oklch(var(--p)/0.7))}.border-e-primary\/75{border-inline-end-color:var(--fallback-p,oklch(var(--p)/0.75))}.border-e-primary\/80{border-inline-end-color:var(--fallback-p,oklch(var(--p)/0.8))}.border-e-primary\/90{border-inline-end-color:var(--fallback-p,oklch(var(--p)/0.9))}.border-e-primary\/95{border-inline-end-color:var(--fallback-p,oklch(var(--p)/0.95))}.border-e-secondary{border-inline-end-color:var(--fallback-s,oklch(var(--s)/1))}.border-e-secondary-content{border-inline-end-color:var(--fallback-sc,oklch(var(--sc)/1))}.border-e-secondary-content\/0{border-inline-end-color:var(--fallback-sc,oklch(var(--sc)/0))}.border-e-secondary-content\/10{border-inline-end-color:var(--fallback-sc,oklch(var(--sc)/0.1))}.border-e-secondary-content\/100{border-inline-end-color:var(--fallback-sc,oklch(var(--sc)/1))}.border-e-secondary-content\/20{border-inline-end-color:var(--fallback-sc,oklch(var(--sc)/0.2))}.border-e-secondary-content\/25{border-inline-end-color:var(--fallback-sc,oklch(var(--sc)/0.25))}.border-e-secondary-content\/30{border-inline-end-color:var(--fallback-sc,oklch(var(--sc)/0.3))}.border-e-secondary-content\/40{border-inline-end-color:var(--fallback-sc,oklch(var(--sc)/0.4))}.border-e-secondary-content\/5{border-inline-end-color:var(--fallback-sc,oklch(var(--sc)/0.05))}.border-e-secondary-content\/50{border-inline-end-color:var(--fallback-sc,oklch(var(--sc)/0.5))}.border-e-secondary-content\/60{border-inline-end-color:var(--fallback-sc,oklch(var(--sc)/0.6))}.border-e-secondary-content\/70{border-inline-end-color:var(--fallback-sc,oklch(var(--sc)/0.7))}.border-e-secondary-content\/75{border-inline-end-color:var(--fallback-sc,oklch(var(--sc)/0.75))}.border-e-secondary-content\/80{border-inline-end-color:var(--fallback-sc,oklch(var(--sc)/0.8))}.border-e-secondary-content\/90{border-inline-end-color:var(--fallback-sc,oklch(var(--sc)/0.9))}.border-e-secondary-content\/95{border-inline-end-color:var(--fallback-sc,oklch(var(--sc)/0.95))}.border-e-secondary\/0{border-inline-end-color:var(--fallback-s,oklch(var(--s)/0))}.border-e-secondary\/10{border-inline-end-color:var(--fallback-s,oklch(var(--s)/0.1))}.border-e-secondary\/100{border-inline-end-color:var(--fallback-s,oklch(var(--s)/1))}.border-e-secondary\/20{border-inline-end-color:var(--fallback-s,oklch(var(--s)/0.2))}.border-e-secondary\/25{border-inline-end-color:var(--fallback-s,oklch(var(--s)/0.25))}.border-e-secondary\/30{border-inline-end-color:var(--fallback-s,oklch(var(--s)/0.3))}.border-e-secondary\/40{border-inline-end-color:var(--fallback-s,oklch(var(--s)/0.4))}.border-e-secondary\/5{border-inline-end-color:var(--fallback-s,oklch(var(--s)/0.05))}.border-e-secondary\/50{border-inline-end-color:var(--fallback-s,oklch(var(--s)/0.5))}.border-e-secondary\/60{border-inline-end-color:var(--fallback-s,oklch(var(--s)/0.6))}.border-e-secondary\/70{border-inline-end-color:var(--fallback-s,oklch(var(--s)/0.7))}.border-e-secondary\/75{border-inline-end-color:var(--fallback-s,oklch(var(--s)/0.75))}.border-e-secondary\/80{border-inline-end-color:var(--fallback-s,oklch(var(--s)/0.8))}.border-e-secondary\/90{border-inline-end-color:var(--fallback-s,oklch(var(--s)/0.9))}.border-e-secondary\/95{border-inline-end-color:var(--fallback-s,oklch(var(--s)/0.95))}.border-e-success{border-inline-end-color:var(--fallback-su,oklch(var(--su)/1))}.border-e-success-content{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/1))}.border-e-success-content\/0{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0))}.border-e-success-content\/10{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.1))}.border-e-success-content\/100{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/1))}.border-e-success-content\/20{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.2))}.border-e-success-content\/25{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.25))}.border-e-success-content\/30{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.3))}.border-e-success-content\/40{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.4))}.border-e-success-content\/5{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.05))}.border-e-success-content\/50{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.5))}.border-e-success-content\/60{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.6))}.border-e-success-content\/70{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.7))}.border-e-success-content\/75{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.75))}.border-e-success-content\/80{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.8))}.border-e-success-content\/90{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.9))}.border-e-success-content\/95{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.95))}.border-e-success\/0{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0))}.border-e-success\/10{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.1))}.border-e-success\/100{border-inline-end-color:var(--fallback-su,oklch(var(--su)/1))}.border-e-success\/20{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.2))}.border-e-success\/25{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.25))}.border-e-success\/30{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.3))}.border-e-success\/40{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.4))}.border-e-success\/5{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.05))}.border-e-success\/50{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.5))}.border-e-success\/60{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.6))}.border-e-success\/70{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.7))}.border-e-success\/75{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.75))}.border-e-success\/80{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.8))}.border-e-success\/90{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.9))}.border-e-success\/95{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.95))}.border-e-transparent{border-inline-end-color:transparent}.border-e-transparent\/0{border-inline-end-color:rgb(0 0 0 / 0)}.border-e-transparent\/10{border-inline-end-color:rgb(0 0 0 / 0.1)}.border-e-transparent\/100{border-inline-end-color:rgb(0 0 0 / 1)}.border-e-transparent\/20{border-inline-end-color:rgb(0 0 0 / 0.2)}.border-e-transparent\/25{border-inline-end-color:rgb(0 0 0 / 0.25)}.border-e-transparent\/30{border-inline-end-color:rgb(0 0 0 / 0.3)}.border-e-transparent\/40{border-inline-end-color:rgb(0 0 0 / 0.4)}.border-e-transparent\/5{border-inline-end-color:rgb(0 0 0 / 0.05)}.border-e-transparent\/50{border-inline-end-color:rgb(0 0 0 / 0.5)}.border-e-transparent\/60{border-inline-end-color:rgb(0 0 0 / 0.6)}.border-e-transparent\/70{border-inline-end-color:rgb(0 0 0 / 0.7)}.border-e-transparent\/75{border-inline-end-color:rgb(0 0 0 / 0.75)}.border-e-transparent\/80{border-inline-end-color:rgb(0 0 0 / 0.8)}.border-e-transparent\/90{border-inline-end-color:rgb(0 0 0 / 0.9)}.border-e-transparent\/95{border-inline-end-color:rgb(0 0 0 / 0.95)}.border-e-warning{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/1))}.border-e-warning-content{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/1))}.border-e-warning-content\/0{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0))}.border-e-warning-content\/10{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.1))}.border-e-warning-content\/100{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/1))}.border-e-warning-content\/20{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.2))}.border-e-warning-content\/25{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.25))}.border-e-warning-content\/30{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.3))}.border-e-warning-content\/40{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.4))}.border-e-warning-content\/5{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.05))}.border-e-warning-content\/50{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.5))}.border-e-warning-content\/60{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.6))}.border-e-warning-content\/70{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.7))}.border-e-warning-content\/75{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.75))}.border-e-warning-content\/80{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.8))}.border-e-warning-content\/90{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.9))}.border-e-warning-content\/95{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.95))}.border-e-warning\/0{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0))}.border-e-warning\/10{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.1))}.border-e-warning\/100{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/1))}.border-e-warning\/20{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.2))}.border-e-warning\/25{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.25))}.border-e-warning\/30{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.3))}.border-e-warning\/40{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.4))}.border-e-warning\/5{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.05))}.border-e-warning\/50{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.5))}.border-e-warning\/60{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.6))}.border-e-warning\/70{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.7))}.border-e-warning\/75{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.75))}.border-e-warning\/80{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.8))}.border-e-warning\/90{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.9))}.border-e-warning\/95{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.95))}.border-l-accent{border-left-color:var(--fallback-a,oklch(var(--a)/1))}.border-l-accent-content{border-left-color:var(--fallback-ac,oklch(var(--ac)/1))}.border-l-accent-content\/0{border-left-color:var(--fallback-ac,oklch(var(--ac)/0))}.border-l-accent-content\/10{border-left-color:var(--fallback-ac,oklch(var(--ac)/.1))}.border-l-accent-content\/100{border-left-color:var(--fallback-ac,oklch(var(--ac)/1))}.border-l-accent-content\/20{border-left-color:var(--fallback-ac,oklch(var(--ac)/.2))}.border-l-accent-content\/25{border-left-color:var(--fallback-ac,oklch(var(--ac)/.25))}.border-l-accent-content\/30{border-left-color:var(--fallback-ac,oklch(var(--ac)/.3))}.border-l-accent-content\/40{border-left-color:var(--fallback-ac,oklch(var(--ac)/.4))}.border-l-accent-content\/5{border-left-color:var(--fallback-ac,oklch(var(--ac)/.05))}.border-l-accent-content\/50{border-left-color:var(--fallback-ac,oklch(var(--ac)/.5))}.border-l-accent-content\/60{border-left-color:var(--fallback-ac,oklch(var(--ac)/.6))}.border-l-accent-content\/70{border-left-color:var(--fallback-ac,oklch(var(--ac)/.7))}.border-l-accent-content\/75{border-left-color:var(--fallback-ac,oklch(var(--ac)/.75))}.border-l-accent-content\/80{border-left-color:var(--fallback-ac,oklch(var(--ac)/.8))}.border-l-accent-content\/90{border-left-color:var(--fallback-ac,oklch(var(--ac)/.9))}.border-l-accent-content\/95{border-left-color:var(--fallback-ac,oklch(var(--ac)/.95))}.border-l-accent\/0{border-left-color:var(--fallback-a,oklch(var(--a)/0))}.border-l-accent\/10{border-left-color:var(--fallback-a,oklch(var(--a)/.1))}.border-l-accent\/100{border-left-color:var(--fallback-a,oklch(var(--a)/1))}.border-l-accent\/20{border-left-color:var(--fallback-a,oklch(var(--a)/.2))}.border-l-accent\/25{border-left-color:var(--fallback-a,oklch(var(--a)/.25))}.border-l-accent\/30{border-left-color:var(--fallback-a,oklch(var(--a)/.3))}.border-l-accent\/40{border-left-color:var(--fallback-a,oklch(var(--a)/.4))}.border-l-accent\/5{border-left-color:var(--fallback-a,oklch(var(--a)/.05))}.border-l-accent\/50{border-left-color:var(--fallback-a,oklch(var(--a)/.5))}.border-l-accent\/60{border-left-color:var(--fallback-a,oklch(var(--a)/.6))}.border-l-accent\/70{border-left-color:var(--fallback-a,oklch(var(--a)/.7))}.border-l-accent\/75{border-left-color:var(--fallback-a,oklch(var(--a)/.75))}.border-l-accent\/80{border-left-color:var(--fallback-a,oklch(var(--a)/.8))}.border-l-accent\/90{border-left-color:var(--fallback-a,oklch(var(--a)/.9))}.border-l-accent\/95{border-left-color:var(--fallback-a,oklch(var(--a)/.95))}.border-l-base-100{border-left-color:var(--fallback-b1,oklch(var(--b1)/1))}.border-l-base-100\/0{border-left-color:var(--fallback-b1,oklch(var(--b1)/0))}.border-l-base-100\/10{border-left-color:var(--fallback-b1,oklch(var(--b1)/.1))}.border-l-base-100\/100{border-left-color:var(--fallback-b1,oklch(var(--b1)/1))}.border-l-base-100\/20{border-left-color:var(--fallback-b1,oklch(var(--b1)/.2))}.border-l-base-100\/25{border-left-color:var(--fallback-b1,oklch(var(--b1)/.25))}.border-l-base-100\/30{border-left-color:var(--fallback-b1,oklch(var(--b1)/.3))}.border-l-base-100\/40{border-left-color:var(--fallback-b1,oklch(var(--b1)/.4))}.border-l-base-100\/5{border-left-color:var(--fallback-b1,oklch(var(--b1)/.05))}.border-l-base-100\/50{border-left-color:var(--fallback-b1,oklch(var(--b1)/.5))}.border-l-base-100\/60{border-left-color:var(--fallback-b1,oklch(var(--b1)/.6))}.border-l-base-100\/70{border-left-color:var(--fallback-b1,oklch(var(--b1)/.7))}.border-l-base-100\/75{border-left-color:var(--fallback-b1,oklch(var(--b1)/.75))}.border-l-base-100\/80{border-left-color:var(--fallback-b1,oklch(var(--b1)/.8))}.border-l-base-100\/90{border-left-color:var(--fallback-b1,oklch(var(--b1)/.9))}.border-l-base-100\/95{border-left-color:var(--fallback-b1,oklch(var(--b1)/.95))}.border-l-base-200{border-left-color:var(--fallback-b2,oklch(var(--b2)/1))}.border-l-base-200\/0{border-left-color:var(--fallback-b2,oklch(var(--b2)/0))}.border-l-base-200\/10{border-left-color:var(--fallback-b2,oklch(var(--b2)/.1))}.border-l-base-200\/100{border-left-color:var(--fallback-b2,oklch(var(--b2)/1))}.border-l-base-200\/20{border-left-color:var(--fallback-b2,oklch(var(--b2)/.2))}.border-l-base-200\/25{border-left-color:var(--fallback-b2,oklch(var(--b2)/.25))}.border-l-base-200\/30{border-left-color:var(--fallback-b2,oklch(var(--b2)/.3))}.border-l-base-200\/40{border-left-color:var(--fallback-b2,oklch(var(--b2)/.4))}.border-l-base-200\/5{border-left-color:var(--fallback-b2,oklch(var(--b2)/.05))}.border-l-base-200\/50{border-left-color:var(--fallback-b2,oklch(var(--b2)/.5))}.border-l-base-200\/60{border-left-color:var(--fallback-b2,oklch(var(--b2)/.6))}.border-l-base-200\/70{border-left-color:var(--fallback-b2,oklch(var(--b2)/.7))}.border-l-base-200\/75{border-left-color:var(--fallback-b2,oklch(var(--b2)/.75))}.border-l-base-200\/80{border-left-color:var(--fallback-b2,oklch(var(--b2)/.8))}.border-l-base-200\/90{border-left-color:var(--fallback-b2,oklch(var(--b2)/.9))}.border-l-base-200\/95{border-left-color:var(--fallback-b2,oklch(var(--b2)/.95))}.border-l-base-300{border-left-color:var(--fallback-b3,oklch(var(--b3)/1))}.border-l-base-300\/0{border-left-color:var(--fallback-b3,oklch(var(--b3)/0))}.border-l-base-300\/10{border-left-color:var(--fallback-b3,oklch(var(--b3)/.1))}.border-l-base-300\/100{border-left-color:var(--fallback-b3,oklch(var(--b3)/1))}.border-l-base-300\/20{border-left-color:var(--fallback-b3,oklch(var(--b3)/.2))}.border-l-base-300\/25{border-left-color:var(--fallback-b3,oklch(var(--b3)/.25))}.border-l-base-300\/30{border-left-color:var(--fallback-b3,oklch(var(--b3)/.3))}.border-l-base-300\/40{border-left-color:var(--fallback-b3,oklch(var(--b3)/.4))}.border-l-base-300\/5{border-left-color:var(--fallback-b3,oklch(var(--b3)/.05))}.border-l-base-300\/50{border-left-color:var(--fallback-b3,oklch(var(--b3)/.5))}.border-l-base-300\/60{border-left-color:var(--fallback-b3,oklch(var(--b3)/.6))}.border-l-base-300\/70{border-left-color:var(--fallback-b3,oklch(var(--b3)/.7))}.border-l-base-300\/75{border-left-color:var(--fallback-b3,oklch(var(--b3)/.75))}.border-l-base-300\/80{border-left-color:var(--fallback-b3,oklch(var(--b3)/.8))}.border-l-base-300\/90{border-left-color:var(--fallback-b3,oklch(var(--b3)/.9))}.border-l-base-300\/95{border-left-color:var(--fallback-b3,oklch(var(--b3)/.95))}.border-l-base-content{border-left-color:var(--fallback-bc,oklch(var(--bc)/1))}.border-l-base-content\/0{border-left-color:var(--fallback-bc,oklch(var(--bc)/0))}.border-l-base-content\/10{border-left-color:var(--fallback-bc,oklch(var(--bc)/.1))}.border-l-base-content\/100{border-left-color:var(--fallback-bc,oklch(var(--bc)/1))}.border-l-base-content\/20{border-left-color:var(--fallback-bc,oklch(var(--bc)/.2))}.border-l-base-content\/25{border-left-color:var(--fallback-bc,oklch(var(--bc)/.25))}.border-l-base-content\/30{border-left-color:var(--fallback-bc,oklch(var(--bc)/.3))}.border-l-base-content\/40{border-left-color:var(--fallback-bc,oklch(var(--bc)/.4))}.border-l-base-content\/5{border-left-color:var(--fallback-bc,oklch(var(--bc)/.05))}.border-l-base-content\/50{border-left-color:var(--fallback-bc,oklch(var(--bc)/.5))}.border-l-base-content\/60{border-left-color:var(--fallback-bc,oklch(var(--bc)/.6))}.border-l-base-content\/70{border-left-color:var(--fallback-bc,oklch(var(--bc)/.7))}.border-l-base-content\/75{border-left-color:var(--fallback-bc,oklch(var(--bc)/.75))}.border-l-base-content\/80{border-left-color:var(--fallback-bc,oklch(var(--bc)/.8))}.border-l-base-content\/90{border-left-color:var(--fallback-bc,oklch(var(--bc)/.9))}.border-l-base-content\/95{border-left-color:var(--fallback-bc,oklch(var(--bc)/.95))}.border-l-current{border-left-color:currentColor}.border-l-error{border-left-color:var(--fallback-er,oklch(var(--er)/1))}.border-l-error-content{border-left-color:var(--fallback-erc,oklch(var(--erc)/1))}.border-l-error-content\/0{border-left-color:var(--fallback-erc,oklch(var(--erc)/0))}.border-l-error-content\/10{border-left-color:var(--fallback-erc,oklch(var(--erc)/.1))}.border-l-error-content\/100{border-left-color:var(--fallback-erc,oklch(var(--erc)/1))}.border-l-error-content\/20{border-left-color:var(--fallback-erc,oklch(var(--erc)/.2))}.border-l-error-content\/25{border-left-color:var(--fallback-erc,oklch(var(--erc)/.25))}.border-l-error-content\/30{border-left-color:var(--fallback-erc,oklch(var(--erc)/.3))}.border-l-error-content\/40{border-left-color:var(--fallback-erc,oklch(var(--erc)/.4))}.border-l-error-content\/5{border-left-color:var(--fallback-erc,oklch(var(--erc)/.05))}.border-l-error-content\/50{border-left-color:var(--fallback-erc,oklch(var(--erc)/.5))}.border-l-error-content\/60{border-left-color:var(--fallback-erc,oklch(var(--erc)/.6))}.border-l-error-content\/70{border-left-color:var(--fallback-erc,oklch(var(--erc)/.7))}.border-l-error-content\/75{border-left-color:var(--fallback-erc,oklch(var(--erc)/.75))}.border-l-error-content\/80{border-left-color:var(--fallback-erc,oklch(var(--erc)/.8))}.border-l-error-content\/90{border-left-color:var(--fallback-erc,oklch(var(--erc)/.9))}.border-l-error-content\/95{border-left-color:var(--fallback-erc,oklch(var(--erc)/.95))}.border-l-error\/0{border-left-color:var(--fallback-er,oklch(var(--er)/0))}.border-l-error\/10{border-left-color:var(--fallback-er,oklch(var(--er)/.1))}.border-l-error\/100{border-left-color:var(--fallback-er,oklch(var(--er)/1))}.border-l-error\/20{border-left-color:var(--fallback-er,oklch(var(--er)/.2))}.border-l-error\/25{border-left-color:var(--fallback-er,oklch(var(--er)/.25))}.border-l-error\/30{border-left-color:var(--fallback-er,oklch(var(--er)/.3))}.border-l-error\/40{border-left-color:var(--fallback-er,oklch(var(--er)/.4))}.border-l-error\/5{border-left-color:var(--fallback-er,oklch(var(--er)/.05))}.border-l-error\/50{border-left-color:var(--fallback-er,oklch(var(--er)/.5))}.border-l-error\/60{border-left-color:var(--fallback-er,oklch(var(--er)/.6))}.border-l-error\/70{border-left-color:var(--fallback-er,oklch(var(--er)/.7))}.border-l-error\/75{border-left-color:var(--fallback-er,oklch(var(--er)/.75))}.border-l-error\/80{border-left-color:var(--fallback-er,oklch(var(--er)/.8))}.border-l-error\/90{border-left-color:var(--fallback-er,oklch(var(--er)/.9))}.border-l-error\/95{border-left-color:var(--fallback-er,oklch(var(--er)/.95))}.border-l-info{border-left-color:var(--fallback-in,oklch(var(--in)/1))}.border-l-info-content{border-left-color:var(--fallback-inc,oklch(var(--inc)/1))}.border-l-info-content\/0{border-left-color:var(--fallback-inc,oklch(var(--inc)/0))}.border-l-info-content\/10{border-left-color:var(--fallback-inc,oklch(var(--inc)/.1))}.border-l-info-content\/100{border-left-color:var(--fallback-inc,oklch(var(--inc)/1))}.border-l-info-content\/20{border-left-color:var(--fallback-inc,oklch(var(--inc)/.2))}.border-l-info-content\/25{border-left-color:var(--fallback-inc,oklch(var(--inc)/.25))}.border-l-info-content\/30{border-left-color:var(--fallback-inc,oklch(var(--inc)/.3))}.border-l-info-content\/40{border-left-color:var(--fallback-inc,oklch(var(--inc)/.4))}.border-l-info-content\/5{border-left-color:var(--fallback-inc,oklch(var(--inc)/.05))}.border-l-info-content\/50{border-left-color:var(--fallback-inc,oklch(var(--inc)/.5))}.border-l-info-content\/60{border-left-color:var(--fallback-inc,oklch(var(--inc)/.6))}.border-l-info-content\/70{border-left-color:var(--fallback-inc,oklch(var(--inc)/.7))}.border-l-info-content\/75{border-left-color:var(--fallback-inc,oklch(var(--inc)/.75))}.border-l-info-content\/80{border-left-color:var(--fallback-inc,oklch(var(--inc)/.8))}.border-l-info-content\/90{border-left-color:var(--fallback-inc,oklch(var(--inc)/.9))}.border-l-info-content\/95{border-left-color:var(--fallback-inc,oklch(var(--inc)/.95))}.border-l-info\/0{border-left-color:var(--fallback-in,oklch(var(--in)/0))}.border-l-info\/10{border-left-color:var(--fallback-in,oklch(var(--in)/.1))}.border-l-info\/100{border-left-color:var(--fallback-in,oklch(var(--in)/1))}.border-l-info\/20{border-left-color:var(--fallback-in,oklch(var(--in)/.2))}.border-l-info\/25{border-left-color:var(--fallback-in,oklch(var(--in)/.25))}.border-l-info\/30{border-left-color:var(--fallback-in,oklch(var(--in)/.3))}.border-l-info\/40{border-left-color:var(--fallback-in,oklch(var(--in)/.4))}.border-l-info\/5{border-left-color:var(--fallback-in,oklch(var(--in)/.05))}.border-l-info\/50{border-left-color:var(--fallback-in,oklch(var(--in)/.5))}.border-l-info\/60{border-left-color:var(--fallback-in,oklch(var(--in)/.6))}.border-l-info\/70{border-left-color:var(--fallback-in,oklch(var(--in)/.7))}.border-l-info\/75{border-left-color:var(--fallback-in,oklch(var(--in)/.75))}.border-l-info\/80{border-left-color:var(--fallback-in,oklch(var(--in)/.8))}.border-l-info\/90{border-left-color:var(--fallback-in,oklch(var(--in)/.9))}.border-l-info\/95{border-left-color:var(--fallback-in,oklch(var(--in)/.95))}.border-l-neutral{border-left-color:var(--fallback-n,oklch(var(--n)/1))}.border-l-neutral-content{border-left-color:var(--fallback-nc,oklch(var(--nc)/1))}.border-l-neutral-content\/0{border-left-color:var(--fallback-nc,oklch(var(--nc)/0))}.border-l-neutral-content\/10{border-left-color:var(--fallback-nc,oklch(var(--nc)/.1))}.border-l-neutral-content\/100{border-left-color:var(--fallback-nc,oklch(var(--nc)/1))}.border-l-neutral-content\/20{border-left-color:var(--fallback-nc,oklch(var(--nc)/.2))}.border-l-neutral-content\/25{border-left-color:var(--fallback-nc,oklch(var(--nc)/.25))}.border-l-neutral-content\/30{border-left-color:var(--fallback-nc,oklch(var(--nc)/.3))}.border-l-neutral-content\/40{border-left-color:var(--fallback-nc,oklch(var(--nc)/.4))}.border-l-neutral-content\/5{border-left-color:var(--fallback-nc,oklch(var(--nc)/.05))}.border-l-neutral-content\/50{border-left-color:var(--fallback-nc,oklch(var(--nc)/.5))}.border-l-neutral-content\/60{border-left-color:var(--fallback-nc,oklch(var(--nc)/.6))}.border-l-neutral-content\/70{border-left-color:var(--fallback-nc,oklch(var(--nc)/.7))}.border-l-neutral-content\/75{border-left-color:var(--fallback-nc,oklch(var(--nc)/.75))}.border-l-neutral-content\/80{border-left-color:var(--fallback-nc,oklch(var(--nc)/.8))}.border-l-neutral-content\/90{border-left-color:var(--fallback-nc,oklch(var(--nc)/.9))}.border-l-neutral-content\/95{border-left-color:var(--fallback-nc,oklch(var(--nc)/.95))}.border-l-neutral\/0{border-left-color:var(--fallback-n,oklch(var(--n)/0))}.border-l-neutral\/10{border-left-color:var(--fallback-n,oklch(var(--n)/.1))}.border-l-neutral\/100{border-left-color:var(--fallback-n,oklch(var(--n)/1))}.border-l-neutral\/20{border-left-color:var(--fallback-n,oklch(var(--n)/.2))}.border-l-neutral\/25{border-left-color:var(--fallback-n,oklch(var(--n)/.25))}.border-l-neutral\/30{border-left-color:var(--fallback-n,oklch(var(--n)/.3))}.border-l-neutral\/40{border-left-color:var(--fallback-n,oklch(var(--n)/.4))}.border-l-neutral\/5{border-left-color:var(--fallback-n,oklch(var(--n)/.05))}.border-l-neutral\/50{border-left-color:var(--fallback-n,oklch(var(--n)/.5))}.border-l-neutral\/60{border-left-color:var(--fallback-n,oklch(var(--n)/.6))}.border-l-neutral\/70{border-left-color:var(--fallback-n,oklch(var(--n)/.7))}.border-l-neutral\/75{border-left-color:var(--fallback-n,oklch(var(--n)/.75))}.border-l-neutral\/80{border-left-color:var(--fallback-n,oklch(var(--n)/.8))}.border-l-neutral\/90{border-left-color:var(--fallback-n,oklch(var(--n)/.9))}.border-l-neutral\/95{border-left-color:var(--fallback-n,oklch(var(--n)/.95))}.border-l-primary{border-left-color:var(--fallback-p,oklch(var(--p)/1))}.border-l-primary-content{border-left-color:var(--fallback-pc,oklch(var(--pc)/1))}.border-l-primary-content\/0{border-left-color:var(--fallback-pc,oklch(var(--pc)/0))}.border-l-primary-content\/10{border-left-color:var(--fallback-pc,oklch(var(--pc)/.1))}.border-l-primary-content\/100{border-left-color:var(--fallback-pc,oklch(var(--pc)/1))}.border-l-primary-content\/20{border-left-color:var(--fallback-pc,oklch(var(--pc)/.2))}.border-l-primary-content\/25{border-left-color:var(--fallback-pc,oklch(var(--pc)/.25))}.border-l-primary-content\/30{border-left-color:var(--fallback-pc,oklch(var(--pc)/.3))}.border-l-primary-content\/40{border-left-color:var(--fallback-pc,oklch(var(--pc)/.4))}.border-l-primary-content\/5{border-left-color:var(--fallback-pc,oklch(var(--pc)/.05))}.border-l-primary-content\/50{border-left-color:var(--fallback-pc,oklch(var(--pc)/.5))}.border-l-primary-content\/60{border-left-color:var(--fallback-pc,oklch(var(--pc)/.6))}.border-l-primary-content\/70{border-left-color:var(--fallback-pc,oklch(var(--pc)/.7))}.border-l-primary-content\/75{border-left-color:var(--fallback-pc,oklch(var(--pc)/.75))}.border-l-primary-content\/80{border-left-color:var(--fallback-pc,oklch(var(--pc)/.8))}.border-l-primary-content\/90{border-left-color:var(--fallback-pc,oklch(var(--pc)/.9))}.border-l-primary-content\/95{border-left-color:var(--fallback-pc,oklch(var(--pc)/.95))}.border-l-primary\/0{border-left-color:var(--fallback-p,oklch(var(--p)/0))}.border-l-primary\/10{border-left-color:var(--fallback-p,oklch(var(--p)/.1))}.border-l-primary\/100{border-left-color:var(--fallback-p,oklch(var(--p)/1))}.border-l-primary\/20{border-left-color:var(--fallback-p,oklch(var(--p)/.2))}.border-l-primary\/25{border-left-color:var(--fallback-p,oklch(var(--p)/.25))}.border-l-primary\/30{border-left-color:var(--fallback-p,oklch(var(--p)/.3))}.border-l-primary\/40{border-left-color:var(--fallback-p,oklch(var(--p)/.4))}.border-l-primary\/5{border-left-color:var(--fallback-p,oklch(var(--p)/.05))}.border-l-primary\/50{border-left-color:var(--fallback-p,oklch(var(--p)/.5))}.border-l-primary\/60{border-left-color:var(--fallback-p,oklch(var(--p)/.6))}.border-l-primary\/70{border-left-color:var(--fallback-p,oklch(var(--p)/.7))}.border-l-primary\/75{border-left-color:var(--fallback-p,oklch(var(--p)/.75))}.border-l-primary\/80{border-left-color:var(--fallback-p,oklch(var(--p)/.8))}.border-l-primary\/90{border-left-color:var(--fallback-p,oklch(var(--p)/.9))}.border-l-primary\/95{border-left-color:var(--fallback-p,oklch(var(--p)/.95))}.border-l-secondary{border-left-color:var(--fallback-s,oklch(var(--s)/1))}.border-l-secondary-content{border-left-color:var(--fallback-sc,oklch(var(--sc)/1))}.border-l-secondary-content\/0{border-left-color:var(--fallback-sc,oklch(var(--sc)/0))}.border-l-secondary-content\/10{border-left-color:var(--fallback-sc,oklch(var(--sc)/.1))}.border-l-secondary-content\/100{border-left-color:var(--fallback-sc,oklch(var(--sc)/1))}.border-l-secondary-content\/20{border-left-color:var(--fallback-sc,oklch(var(--sc)/.2))}.border-l-secondary-content\/25{border-left-color:var(--fallback-sc,oklch(var(--sc)/.25))}.border-l-secondary-content\/30{border-left-color:var(--fallback-sc,oklch(var(--sc)/.3))}.border-l-secondary-content\/40{border-left-color:var(--fallback-sc,oklch(var(--sc)/.4))}.border-l-secondary-content\/5{border-left-color:var(--fallback-sc,oklch(var(--sc)/.05))}.border-l-secondary-content\/50{border-left-color:var(--fallback-sc,oklch(var(--sc)/.5))}.border-l-secondary-content\/60{border-left-color:var(--fallback-sc,oklch(var(--sc)/.6))}.border-l-secondary-content\/70{border-left-color:var(--fallback-sc,oklch(var(--sc)/.7))}.border-l-secondary-content\/75{border-left-color:var(--fallback-sc,oklch(var(--sc)/.75))}.border-l-secondary-content\/80{border-left-color:var(--fallback-sc,oklch(var(--sc)/.8))}.border-l-secondary-content\/90{border-left-color:var(--fallback-sc,oklch(var(--sc)/.9))}.border-l-secondary-content\/95{border-left-color:var(--fallback-sc,oklch(var(--sc)/.95))}.border-l-secondary\/0{border-left-color:var(--fallback-s,oklch(var(--s)/0))}.border-l-secondary\/10{border-left-color:var(--fallback-s,oklch(var(--s)/.1))}.border-l-secondary\/100{border-left-color:var(--fallback-s,oklch(var(--s)/1))}.border-l-secondary\/20{border-left-color:var(--fallback-s,oklch(var(--s)/.2))}.border-l-secondary\/25{border-left-color:var(--fallback-s,oklch(var(--s)/.25))}.border-l-secondary\/30{border-left-color:var(--fallback-s,oklch(var(--s)/.3))}.border-l-secondary\/40{border-left-color:var(--fallback-s,oklch(var(--s)/.4))}.border-l-secondary\/5{border-left-color:var(--fallback-s,oklch(var(--s)/.05))}.border-l-secondary\/50{border-left-color:var(--fallback-s,oklch(var(--s)/.5))}.border-l-secondary\/60{border-left-color:var(--fallback-s,oklch(var(--s)/.6))}.border-l-secondary\/70{border-left-color:var(--fallback-s,oklch(var(--s)/.7))}.border-l-secondary\/75{border-left-color:var(--fallback-s,oklch(var(--s)/.75))}.border-l-secondary\/80{border-left-color:var(--fallback-s,oklch(var(--s)/.8))}.border-l-secondary\/90{border-left-color:var(--fallback-s,oklch(var(--s)/.9))}.border-l-secondary\/95{border-left-color:var(--fallback-s,oklch(var(--s)/.95))}.border-l-success{border-left-color:var(--fallback-su,oklch(var(--su)/1))}.border-l-success-content{border-left-color:var(--fallback-suc,oklch(var(--suc)/1))}.border-l-success-content\/0{border-left-color:var(--fallback-suc,oklch(var(--suc)/0))}.border-l-success-content\/10{border-left-color:var(--fallback-suc,oklch(var(--suc)/.1))}.border-l-success-content\/100{border-left-color:var(--fallback-suc,oklch(var(--suc)/1))}.border-l-success-content\/20{border-left-color:var(--fallback-suc,oklch(var(--suc)/.2))}.border-l-success-content\/25{border-left-color:var(--fallback-suc,oklch(var(--suc)/.25))}.border-l-success-content\/30{border-left-color:var(--fallback-suc,oklch(var(--suc)/.3))}.border-l-success-content\/40{border-left-color:var(--fallback-suc,oklch(var(--suc)/.4))}.border-l-success-content\/5{border-left-color:var(--fallback-suc,oklch(var(--suc)/.05))}.border-l-success-content\/50{border-left-color:var(--fallback-suc,oklch(var(--suc)/.5))}.border-l-success-content\/60{border-left-color:var(--fallback-suc,oklch(var(--suc)/.6))}.border-l-success-content\/70{border-left-color:var(--fallback-suc,oklch(var(--suc)/.7))}.border-l-success-content\/75{border-left-color:var(--fallback-suc,oklch(var(--suc)/.75))}.border-l-success-content\/80{border-left-color:var(--fallback-suc,oklch(var(--suc)/.8))}.border-l-success-content\/90{border-left-color:var(--fallback-suc,oklch(var(--suc)/.9))}.border-l-success-content\/95{border-left-color:var(--fallback-suc,oklch(var(--suc)/.95))}.border-l-success\/0{border-left-color:var(--fallback-su,oklch(var(--su)/0))}.border-l-success\/10{border-left-color:var(--fallback-su,oklch(var(--su)/.1))}.border-l-success\/100{border-left-color:var(--fallback-su,oklch(var(--su)/1))}.border-l-success\/20{border-left-color:var(--fallback-su,oklch(var(--su)/.2))}.border-l-success\/25{border-left-color:var(--fallback-su,oklch(var(--su)/.25))}.border-l-success\/30{border-left-color:var(--fallback-su,oklch(var(--su)/.3))}.border-l-success\/40{border-left-color:var(--fallback-su,oklch(var(--su)/.4))}.border-l-success\/5{border-left-color:var(--fallback-su,oklch(var(--su)/.05))}.border-l-success\/50{border-left-color:var(--fallback-su,oklch(var(--su)/.5))}.border-l-success\/60{border-left-color:var(--fallback-su,oklch(var(--su)/.6))}.border-l-success\/70{border-left-color:var(--fallback-su,oklch(var(--su)/.7))}.border-l-success\/75{border-left-color:var(--fallback-su,oklch(var(--su)/.75))}.border-l-success\/80{border-left-color:var(--fallback-su,oklch(var(--su)/.8))}.border-l-success\/90{border-left-color:var(--fallback-su,oklch(var(--su)/.9))}.border-l-success\/95{border-left-color:var(--fallback-su,oklch(var(--su)/.95))}.border-l-transparent{border-left-color:transparent}.border-l-transparent\/0{border-left-color:rgb(0 0 0 / 0)}.border-l-transparent\/10{border-left-color:rgb(0 0 0 / .1)}.border-l-transparent\/100{border-left-color:rgb(0 0 0 / 1)}.border-l-transparent\/20{border-left-color:rgb(0 0 0 / .2)}.border-l-transparent\/25{border-left-color:rgb(0 0 0 / .25)}.border-l-transparent\/30{border-left-color:rgb(0 0 0 / .3)}.border-l-transparent\/40{border-left-color:rgb(0 0 0 / .4)}.border-l-transparent\/5{border-left-color:rgb(0 0 0 / .05)}.border-l-transparent\/50{border-left-color:rgb(0 0 0 / .5)}.border-l-transparent\/60{border-left-color:rgb(0 0 0 / .6)}.border-l-transparent\/70{border-left-color:rgb(0 0 0 / .7)}.border-l-transparent\/75{border-left-color:rgb(0 0 0 / .75)}.border-l-transparent\/80{border-left-color:rgb(0 0 0 / .8)}.border-l-transparent\/90{border-left-color:rgb(0 0 0 / .9)}.border-l-transparent\/95{border-left-color:rgb(0 0 0 / .95)}.border-l-warning{border-left-color:var(--fallback-wa,oklch(var(--wa)/1))}.border-l-warning-content{border-left-color:var(--fallback-wac,oklch(var(--wac)/1))}.border-l-warning-content\/0{border-left-color:var(--fallback-wac,oklch(var(--wac)/0))}.border-l-warning-content\/10{border-left-color:var(--fallback-wac,oklch(var(--wac)/.1))}.border-l-warning-content\/100{border-left-color:var(--fallback-wac,oklch(var(--wac)/1))}.border-l-warning-content\/20{border-left-color:var(--fallback-wac,oklch(var(--wac)/.2))}.border-l-warning-content\/25{border-left-color:var(--fallback-wac,oklch(var(--wac)/.25))}.border-l-warning-content\/30{border-left-color:var(--fallback-wac,oklch(var(--wac)/.3))}.border-l-warning-content\/40{border-left-color:var(--fallback-wac,oklch(var(--wac)/.4))}.border-l-warning-content\/5{border-left-color:var(--fallback-wac,oklch(var(--wac)/.05))}.border-l-warning-content\/50{border-left-color:var(--fallback-wac,oklch(var(--wac)/.5))}.border-l-warning-content\/60{border-left-color:var(--fallback-wac,oklch(var(--wac)/.6))}.border-l-warning-content\/70{border-left-color:var(--fallback-wac,oklch(var(--wac)/.7))}.border-l-warning-content\/75{border-left-color:var(--fallback-wac,oklch(var(--wac)/.75))}.border-l-warning-content\/80{border-left-color:var(--fallback-wac,oklch(var(--wac)/.8))}.border-l-warning-content\/90{border-left-color:var(--fallback-wac,oklch(var(--wac)/.9))}.border-l-warning-content\/95{border-left-color:var(--fallback-wac,oklch(var(--wac)/.95))}.border-l-warning\/0{border-left-color:var(--fallback-wa,oklch(var(--wa)/0))}.border-l-warning\/10{border-left-color:var(--fallback-wa,oklch(var(--wa)/.1))}.border-l-warning\/100{border-left-color:var(--fallback-wa,oklch(var(--wa)/1))}.border-l-warning\/20{border-left-color:var(--fallback-wa,oklch(var(--wa)/.2))}.border-l-warning\/25{border-left-color:var(--fallback-wa,oklch(var(--wa)/.25))}.border-l-warning\/30{border-left-color:var(--fallback-wa,oklch(var(--wa)/.3))}.border-l-warning\/40{border-left-color:var(--fallback-wa,oklch(var(--wa)/.4))}.border-l-warning\/5{border-left-color:var(--fallback-wa,oklch(var(--wa)/.05))}.border-l-warning\/50{border-left-color:var(--fallback-wa,oklch(var(--wa)/.5))}.border-l-warning\/60{border-left-color:var(--fallback-wa,oklch(var(--wa)/.6))}.border-l-warning\/70{border-left-color:var(--fallback-wa,oklch(var(--wa)/.7))}.border-l-warning\/75{border-left-color:var(--fallback-wa,oklch(var(--wa)/.75))}.border-l-warning\/80{border-left-color:var(--fallback-wa,oklch(var(--wa)/.8))}.border-l-warning\/90{border-left-color:var(--fallback-wa,oklch(var(--wa)/.9))}.border-l-warning\/95{border-left-color:var(--fallback-wa,oklch(var(--wa)/.95))}.border-r-accent{border-right-color:var(--fallback-a,oklch(var(--a)/1))}.border-r-accent-content{border-right-color:var(--fallback-ac,oklch(var(--ac)/1))}.border-r-accent-content\/0{border-right-color:var(--fallback-ac,oklch(var(--ac)/0))}.border-r-accent-content\/10{border-right-color:var(--fallback-ac,oklch(var(--ac)/.1))}.border-r-accent-content\/100{border-right-color:var(--fallback-ac,oklch(var(--ac)/1))}.border-r-accent-content\/20{border-right-color:var(--fallback-ac,oklch(var(--ac)/.2))}.border-r-accent-content\/25{border-right-color:var(--fallback-ac,oklch(var(--ac)/.25))}.border-r-accent-content\/30{border-right-color:var(--fallback-ac,oklch(var(--ac)/.3))}.border-r-accent-content\/40{border-right-color:var(--fallback-ac,oklch(var(--ac)/.4))}.border-r-accent-content\/5{border-right-color:var(--fallback-ac,oklch(var(--ac)/.05))}.border-r-accent-content\/50{border-right-color:var(--fallback-ac,oklch(var(--ac)/.5))}.border-r-accent-content\/60{border-right-color:var(--fallback-ac,oklch(var(--ac)/.6))}.border-r-accent-content\/70{border-right-color:var(--fallback-ac,oklch(var(--ac)/.7))}.border-r-accent-content\/75{border-right-color:var(--fallback-ac,oklch(var(--ac)/.75))}.border-r-accent-content\/80{border-right-color:var(--fallback-ac,oklch(var(--ac)/.8))}.border-r-accent-content\/90{border-right-color:var(--fallback-ac,oklch(var(--ac)/.9))}.border-r-accent-content\/95{border-right-color:var(--fallback-ac,oklch(var(--ac)/.95))}.border-r-accent\/0{border-right-color:var(--fallback-a,oklch(var(--a)/0))}.border-r-accent\/10{border-right-color:var(--fallback-a,oklch(var(--a)/.1))}.border-r-accent\/100{border-right-color:var(--fallback-a,oklch(var(--a)/1))}.border-r-accent\/20{border-right-color:var(--fallback-a,oklch(var(--a)/.2))}.border-r-accent\/25{border-right-color:var(--fallback-a,oklch(var(--a)/.25))}.border-r-accent\/30{border-right-color:var(--fallback-a,oklch(var(--a)/.3))}.border-r-accent\/40{border-right-color:var(--fallback-a,oklch(var(--a)/.4))}.border-r-accent\/5{border-right-color:var(--fallback-a,oklch(var(--a)/.05))}.border-r-accent\/50{border-right-color:var(--fallback-a,oklch(var(--a)/.5))}.border-r-accent\/60{border-right-color:var(--fallback-a,oklch(var(--a)/.6))}.border-r-accent\/70{border-right-color:var(--fallback-a,oklch(var(--a)/.7))}.border-r-accent\/75{border-right-color:var(--fallback-a,oklch(var(--a)/.75))}.border-r-accent\/80{border-right-color:var(--fallback-a,oklch(var(--a)/.8))}.border-r-accent\/90{border-right-color:var(--fallback-a,oklch(var(--a)/.9))}.border-r-accent\/95{border-right-color:var(--fallback-a,oklch(var(--a)/.95))}.border-r-base-100{border-right-color:var(--fallback-b1,oklch(var(--b1)/1))}.border-r-base-100\/0{border-right-color:var(--fallback-b1,oklch(var(--b1)/0))}.border-r-base-100\/10{border-right-color:var(--fallback-b1,oklch(var(--b1)/.1))}.border-r-base-100\/100{border-right-color:var(--fallback-b1,oklch(var(--b1)/1))}.border-r-base-100\/20{border-right-color:var(--fallback-b1,oklch(var(--b1)/.2))}.border-r-base-100\/25{border-right-color:var(--fallback-b1,oklch(var(--b1)/.25))}.border-r-base-100\/30{border-right-color:var(--fallback-b1,oklch(var(--b1)/.3))}.border-r-base-100\/40{border-right-color:var(--fallback-b1,oklch(var(--b1)/.4))}.border-r-base-100\/5{border-right-color:var(--fallback-b1,oklch(var(--b1)/.05))}.border-r-base-100\/50{border-right-color:var(--fallback-b1,oklch(var(--b1)/.5))}.border-r-base-100\/60{border-right-color:var(--fallback-b1,oklch(var(--b1)/.6))}.border-r-base-100\/70{border-right-color:var(--fallback-b1,oklch(var(--b1)/.7))}.border-r-base-100\/75{border-right-color:var(--fallback-b1,oklch(var(--b1)/.75))}.border-r-base-100\/80{border-right-color:var(--fallback-b1,oklch(var(--b1)/.8))}.border-r-base-100\/90{border-right-color:var(--fallback-b1,oklch(var(--b1)/.9))}.border-r-base-100\/95{border-right-color:var(--fallback-b1,oklch(var(--b1)/.95))}.border-r-base-200{border-right-color:var(--fallback-b2,oklch(var(--b2)/1))}.border-r-base-200\/0{border-right-color:var(--fallback-b2,oklch(var(--b2)/0))}.border-r-base-200\/10{border-right-color:var(--fallback-b2,oklch(var(--b2)/.1))}.border-r-base-200\/100{border-right-color:var(--fallback-b2,oklch(var(--b2)/1))}.border-r-base-200\/20{border-right-color:var(--fallback-b2,oklch(var(--b2)/.2))}.border-r-base-200\/25{border-right-color:var(--fallback-b2,oklch(var(--b2)/.25))}.border-r-base-200\/30{border-right-color:var(--fallback-b2,oklch(var(--b2)/.3))}.border-r-base-200\/40{border-right-color:var(--fallback-b2,oklch(var(--b2)/.4))}.border-r-base-200\/5{border-right-color:var(--fallback-b2,oklch(var(--b2)/.05))}.border-r-base-200\/50{border-right-color:var(--fallback-b2,oklch(var(--b2)/.5))}.border-r-base-200\/60{border-right-color:var(--fallback-b2,oklch(var(--b2)/.6))}.border-r-base-200\/70{border-right-color:var(--fallback-b2,oklch(var(--b2)/.7))}.border-r-base-200\/75{border-right-color:var(--fallback-b2,oklch(var(--b2)/.75))}.border-r-base-200\/80{border-right-color:var(--fallback-b2,oklch(var(--b2)/.8))}.border-r-base-200\/90{border-right-color:var(--fallback-b2,oklch(var(--b2)/.9))}.border-r-base-200\/95{border-right-color:var(--fallback-b2,oklch(var(--b2)/.95))}.border-r-base-300{border-right-color:var(--fallback-b3,oklch(var(--b3)/1))}.border-r-base-300\/0{border-right-color:var(--fallback-b3,oklch(var(--b3)/0))}.border-r-base-300\/10{border-right-color:var(--fallback-b3,oklch(var(--b3)/.1))}.border-r-base-300\/100{border-right-color:var(--fallback-b3,oklch(var(--b3)/1))}.border-r-base-300\/20{border-right-color:var(--fallback-b3,oklch(var(--b3)/.2))}.border-r-base-300\/25{border-right-color:var(--fallback-b3,oklch(var(--b3)/.25))}.border-r-base-300\/30{border-right-color:var(--fallback-b3,oklch(var(--b3)/.3))}.border-r-base-300\/40{border-right-color:var(--fallback-b3,oklch(var(--b3)/.4))}.border-r-base-300\/5{border-right-color:var(--fallback-b3,oklch(var(--b3)/.05))}.border-r-base-300\/50{border-right-color:var(--fallback-b3,oklch(var(--b3)/.5))}.border-r-base-300\/60{border-right-color:var(--fallback-b3,oklch(var(--b3)/.6))}.border-r-base-300\/70{border-right-color:var(--fallback-b3,oklch(var(--b3)/.7))}.border-r-base-300\/75{border-right-color:var(--fallback-b3,oklch(var(--b3)/.75))}.border-r-base-300\/80{border-right-color:var(--fallback-b3,oklch(var(--b3)/.8))}.border-r-base-300\/90{border-right-color:var(--fallback-b3,oklch(var(--b3)/.9))}.border-r-base-300\/95{border-right-color:var(--fallback-b3,oklch(var(--b3)/.95))}.border-r-base-content{border-right-color:var(--fallback-bc,oklch(var(--bc)/1))}.border-r-base-content\/0{border-right-color:var(--fallback-bc,oklch(var(--bc)/0))}.border-r-base-content\/10{border-right-color:var(--fallback-bc,oklch(var(--bc)/.1))}.border-r-base-content\/100{border-right-color:var(--fallback-bc,oklch(var(--bc)/1))}.border-r-base-content\/20{border-right-color:var(--fallback-bc,oklch(var(--bc)/.2))}.border-r-base-content\/25{border-right-color:var(--fallback-bc,oklch(var(--bc)/.25))}.border-r-base-content\/30{border-right-color:var(--fallback-bc,oklch(var(--bc)/.3))}.border-r-base-content\/40{border-right-color:var(--fallback-bc,oklch(var(--bc)/.4))}.border-r-base-content\/5{border-right-color:var(--fallback-bc,oklch(var(--bc)/.05))}.border-r-base-content\/50{border-right-color:var(--fallback-bc,oklch(var(--bc)/.5))}.border-r-base-content\/60{border-right-color:var(--fallback-bc,oklch(var(--bc)/.6))}.border-r-base-content\/70{border-right-color:var(--fallback-bc,oklch(var(--bc)/.7))}.border-r-base-content\/75{border-right-color:var(--fallback-bc,oklch(var(--bc)/.75))}.border-r-base-content\/80{border-right-color:var(--fallback-bc,oklch(var(--bc)/.8))}.border-r-base-content\/90{border-right-color:var(--fallback-bc,oklch(var(--bc)/.9))}.border-r-base-content\/95{border-right-color:var(--fallback-bc,oklch(var(--bc)/.95))}.border-r-current{border-right-color:currentColor}.border-r-error{border-right-color:var(--fallback-er,oklch(var(--er)/1))}.border-r-error-content{border-right-color:var(--fallback-erc,oklch(var(--erc)/1))}.border-r-error-content\/0{border-right-color:var(--fallback-erc,oklch(var(--erc)/0))}.border-r-error-content\/10{border-right-color:var(--fallback-erc,oklch(var(--erc)/.1))}.border-r-error-content\/100{border-right-color:var(--fallback-erc,oklch(var(--erc)/1))}.border-r-error-content\/20{border-right-color:var(--fallback-erc,oklch(var(--erc)/.2))}.border-r-error-content\/25{border-right-color:var(--fallback-erc,oklch(var(--erc)/.25))}.border-r-error-content\/30{border-right-color:var(--fallback-erc,oklch(var(--erc)/.3))}.border-r-error-content\/40{border-right-color:var(--fallback-erc,oklch(var(--erc)/.4))}.border-r-error-content\/5{border-right-color:var(--fallback-erc,oklch(var(--erc)/.05))}.border-r-error-content\/50{border-right-color:var(--fallback-erc,oklch(var(--erc)/.5))}.border-r-error-content\/60{border-right-color:var(--fallback-erc,oklch(var(--erc)/.6))}.border-r-error-content\/70{border-right-color:var(--fallback-erc,oklch(var(--erc)/.7))}.border-r-error-content\/75{border-right-color:var(--fallback-erc,oklch(var(--erc)/.75))}.border-r-error-content\/80{border-right-color:var(--fallback-erc,oklch(var(--erc)/.8))}.border-r-error-content\/90{border-right-color:var(--fallback-erc,oklch(var(--erc)/.9))}.border-r-error-content\/95{border-right-color:var(--fallback-erc,oklch(var(--erc)/.95))}.border-r-error\/0{border-right-color:var(--fallback-er,oklch(var(--er)/0))}.border-r-error\/10{border-right-color:var(--fallback-er,oklch(var(--er)/.1))}.border-r-error\/100{border-right-color:var(--fallback-er,oklch(var(--er)/1))}.border-r-error\/20{border-right-color:var(--fallback-er,oklch(var(--er)/.2))}.border-r-error\/25{border-right-color:var(--fallback-er,oklch(var(--er)/.25))}.border-r-error\/30{border-right-color:var(--fallback-er,oklch(var(--er)/.3))}.border-r-error\/40{border-right-color:var(--fallback-er,oklch(var(--er)/.4))}.border-r-error\/5{border-right-color:var(--fallback-er,oklch(var(--er)/.05))}.border-r-error\/50{border-right-color:var(--fallback-er,oklch(var(--er)/.5))}.border-r-error\/60{border-right-color:var(--fallback-er,oklch(var(--er)/.6))}.border-r-error\/70{border-right-color:var(--fallback-er,oklch(var(--er)/.7))}.border-r-error\/75{border-right-color:var(--fallback-er,oklch(var(--er)/.75))}.border-r-error\/80{border-right-color:var(--fallback-er,oklch(var(--er)/.8))}.border-r-error\/90{border-right-color:var(--fallback-er,oklch(var(--er)/.9))}.border-r-error\/95{border-right-color:var(--fallback-er,oklch(var(--er)/.95))}.border-r-info{border-right-color:var(--fallback-in,oklch(var(--in)/1))}.border-r-info-content{border-right-color:var(--fallback-inc,oklch(var(--inc)/1))}.border-r-info-content\/0{border-right-color:var(--fallback-inc,oklch(var(--inc)/0))}.border-r-info-content\/10{border-right-color:var(--fallback-inc,oklch(var(--inc)/.1))}.border-r-info-content\/100{border-right-color:var(--fallback-inc,oklch(var(--inc)/1))}.border-r-info-content\/20{border-right-color:var(--fallback-inc,oklch(var(--inc)/.2))}.border-r-info-content\/25{border-right-color:var(--fallback-inc,oklch(var(--inc)/.25))}.border-r-info-content\/30{border-right-color:var(--fallback-inc,oklch(var(--inc)/.3))}.border-r-info-content\/40{border-right-color:var(--fallback-inc,oklch(var(--inc)/.4))}.border-r-info-content\/5{border-right-color:var(--fallback-inc,oklch(var(--inc)/.05))}.border-r-info-content\/50{border-right-color:var(--fallback-inc,oklch(var(--inc)/.5))}.border-r-info-content\/60{border-right-color:var(--fallback-inc,oklch(var(--inc)/.6))}.border-r-info-content\/70{border-right-color:var(--fallback-inc,oklch(var(--inc)/.7))}.border-r-info-content\/75{border-right-color:var(--fallback-inc,oklch(var(--inc)/.75))}.border-r-info-content\/80{border-right-color:var(--fallback-inc,oklch(var(--inc)/.8))}.border-r-info-content\/90{border-right-color:var(--fallback-inc,oklch(var(--inc)/.9))}.border-r-info-content\/95{border-right-color:var(--fallback-inc,oklch(var(--inc)/.95))}.border-r-info\/0{border-right-color:var(--fallback-in,oklch(var(--in)/0))}.border-r-info\/10{border-right-color:var(--fallback-in,oklch(var(--in)/.1))}.border-r-info\/100{border-right-color:var(--fallback-in,oklch(var(--in)/1))}.border-r-info\/20{border-right-color:var(--fallback-in,oklch(var(--in)/.2))}.border-r-info\/25{border-right-color:var(--fallback-in,oklch(var(--in)/.25))}.border-r-info\/30{border-right-color:var(--fallback-in,oklch(var(--in)/.3))}.border-r-info\/40{border-right-color:var(--fallback-in,oklch(var(--in)/.4))}.border-r-info\/5{border-right-color:var(--fallback-in,oklch(var(--in)/.05))}.border-r-info\/50{border-right-color:var(--fallback-in,oklch(var(--in)/.5))}.border-r-info\/60{border-right-color:var(--fallback-in,oklch(var(--in)/.6))}.border-r-info\/70{border-right-color:var(--fallback-in,oklch(var(--in)/.7))}.border-r-info\/75{border-right-color:var(--fallback-in,oklch(var(--in)/.75))}.border-r-info\/80{border-right-color:var(--fallback-in,oklch(var(--in)/.8))}.border-r-info\/90{border-right-color:var(--fallback-in,oklch(var(--in)/.9))}.border-r-info\/95{border-right-color:var(--fallback-in,oklch(var(--in)/.95))}.border-r-neutral{border-right-color:var(--fallback-n,oklch(var(--n)/1))}.border-r-neutral-content{border-right-color:var(--fallback-nc,oklch(var(--nc)/1))}.border-r-neutral-content\/0{border-right-color:var(--fallback-nc,oklch(var(--nc)/0))}.border-r-neutral-content\/10{border-right-color:var(--fallback-nc,oklch(var(--nc)/.1))}.border-r-neutral-content\/100{border-right-color:var(--fallback-nc,oklch(var(--nc)/1))}.border-r-neutral-content\/20{border-right-color:var(--fallback-nc,oklch(var(--nc)/.2))}.border-r-neutral-content\/25{border-right-color:var(--fallback-nc,oklch(var(--nc)/.25))}.border-r-neutral-content\/30{border-right-color:var(--fallback-nc,oklch(var(--nc)/.3))}.border-r-neutral-content\/40{border-right-color:var(--fallback-nc,oklch(var(--nc)/.4))}.border-r-neutral-content\/5{border-right-color:var(--fallback-nc,oklch(var(--nc)/.05))}.border-r-neutral-content\/50{border-right-color:var(--fallback-nc,oklch(var(--nc)/.5))}.border-r-neutral-content\/60{border-right-color:var(--fallback-nc,oklch(var(--nc)/.6))}.border-r-neutral-content\/70{border-right-color:var(--fallback-nc,oklch(var(--nc)/.7))}.border-r-neutral-content\/75{border-right-color:var(--fallback-nc,oklch(var(--nc)/.75))}.border-r-neutral-content\/80{border-right-color:var(--fallback-nc,oklch(var(--nc)/.8))}.border-r-neutral-content\/90{border-right-color:var(--fallback-nc,oklch(var(--nc)/.9))}.border-r-neutral-content\/95{border-right-color:var(--fallback-nc,oklch(var(--nc)/.95))}.border-r-neutral\/0{border-right-color:var(--fallback-n,oklch(var(--n)/0))}.border-r-neutral\/10{border-right-color:var(--fallback-n,oklch(var(--n)/.1))}.border-r-neutral\/100{border-right-color:var(--fallback-n,oklch(var(--n)/1))}.border-r-neutral\/20{border-right-color:var(--fallback-n,oklch(var(--n)/.2))}.border-r-neutral\/25{border-right-color:var(--fallback-n,oklch(var(--n)/.25))}.border-r-neutral\/30{border-right-color:var(--fallback-n,oklch(var(--n)/.3))}.border-r-neutral\/40{border-right-color:var(--fallback-n,oklch(var(--n)/.4))}.border-r-neutral\/5{border-right-color:var(--fallback-n,oklch(var(--n)/.05))}.border-r-neutral\/50{border-right-color:var(--fallback-n,oklch(var(--n)/.5))}.border-r-neutral\/60{border-right-color:var(--fallback-n,oklch(var(--n)/.6))}.border-r-neutral\/70{border-right-color:var(--fallback-n,oklch(var(--n)/.7))}.border-r-neutral\/75{border-right-color:var(--fallback-n,oklch(var(--n)/.75))}.border-r-neutral\/80{border-right-color:var(--fallback-n,oklch(var(--n)/.8))}.border-r-neutral\/90{border-right-color:var(--fallback-n,oklch(var(--n)/.9))}.border-r-neutral\/95{border-right-color:var(--fallback-n,oklch(var(--n)/.95))}.border-r-primary{border-right-color:var(--fallback-p,oklch(var(--p)/1))}.border-r-primary-content{border-right-color:var(--fallback-pc,oklch(var(--pc)/1))}.border-r-primary-content\/0{border-right-color:var(--fallback-pc,oklch(var(--pc)/0))}.border-r-primary-content\/10{border-right-color:var(--fallback-pc,oklch(var(--pc)/.1))}.border-r-primary-content\/100{border-right-color:var(--fallback-pc,oklch(var(--pc)/1))}.border-r-primary-content\/20{border-right-color:var(--fallback-pc,oklch(var(--pc)/.2))}.border-r-primary-content\/25{border-right-color:var(--fallback-pc,oklch(var(--pc)/.25))}.border-r-primary-content\/30{border-right-color:var(--fallback-pc,oklch(var(--pc)/.3))}.border-r-primary-content\/40{border-right-color:var(--fallback-pc,oklch(var(--pc)/.4))}.border-r-primary-content\/5{border-right-color:var(--fallback-pc,oklch(var(--pc)/.05))}.border-r-primary-content\/50{border-right-color:var(--fallback-pc,oklch(var(--pc)/.5))}.border-r-primary-content\/60{border-right-color:var(--fallback-pc,oklch(var(--pc)/.6))}.border-r-primary-content\/70{border-right-color:var(--fallback-pc,oklch(var(--pc)/.7))}.border-r-primary-content\/75{border-right-color:var(--fallback-pc,oklch(var(--pc)/.75))}.border-r-primary-content\/80{border-right-color:var(--fallback-pc,oklch(var(--pc)/.8))}.border-r-primary-content\/90{border-right-color:var(--fallback-pc,oklch(var(--pc)/.9))}.border-r-primary-content\/95{border-right-color:var(--fallback-pc,oklch(var(--pc)/.95))}.border-r-primary\/0{border-right-color:var(--fallback-p,oklch(var(--p)/0))}.border-r-primary\/10{border-right-color:var(--fallback-p,oklch(var(--p)/.1))}.border-r-primary\/100{border-right-color:var(--fallback-p,oklch(var(--p)/1))}.border-r-primary\/20{border-right-color:var(--fallback-p,oklch(var(--p)/.2))}.border-r-primary\/25{border-right-color:var(--fallback-p,oklch(var(--p)/.25))}.border-r-primary\/30{border-right-color:var(--fallback-p,oklch(var(--p)/.3))}.border-r-primary\/40{border-right-color:var(--fallback-p,oklch(var(--p)/.4))}.border-r-primary\/5{border-right-color:var(--fallback-p,oklch(var(--p)/.05))}.border-r-primary\/50{border-right-color:var(--fallback-p,oklch(var(--p)/.5))}.border-r-primary\/60{border-right-color:var(--fallback-p,oklch(var(--p)/.6))}.border-r-primary\/70{border-right-color:var(--fallback-p,oklch(var(--p)/.7))}.border-r-primary\/75{border-right-color:var(--fallback-p,oklch(var(--p)/.75))}.border-r-primary\/80{border-right-color:var(--fallback-p,oklch(var(--p)/.8))}.border-r-primary\/90{border-right-color:var(--fallback-p,oklch(var(--p)/.9))}.border-r-primary\/95{border-right-color:var(--fallback-p,oklch(var(--p)/.95))}.border-r-secondary{border-right-color:var(--fallback-s,oklch(var(--s)/1))}.border-r-secondary-content{border-right-color:var(--fallback-sc,oklch(var(--sc)/1))}.border-r-secondary-content\/0{border-right-color:var(--fallback-sc,oklch(var(--sc)/0))}.border-r-secondary-content\/10{border-right-color:var(--fallback-sc,oklch(var(--sc)/.1))}.border-r-secondary-content\/100{border-right-color:var(--fallback-sc,oklch(var(--sc)/1))}.border-r-secondary-content\/20{border-right-color:var(--fallback-sc,oklch(var(--sc)/.2))}.border-r-secondary-content\/25{border-right-color:var(--fallback-sc,oklch(var(--sc)/.25))}.border-r-secondary-content\/30{border-right-color:var(--fallback-sc,oklch(var(--sc)/.3))}.border-r-secondary-content\/40{border-right-color:var(--fallback-sc,oklch(var(--sc)/.4))}.border-r-secondary-content\/5{border-right-color:var(--fallback-sc,oklch(var(--sc)/.05))}.border-r-secondary-content\/50{border-right-color:var(--fallback-sc,oklch(var(--sc)/.5))}.border-r-secondary-content\/60{border-right-color:var(--fallback-sc,oklch(var(--sc)/.6))}.border-r-secondary-content\/70{border-right-color:var(--fallback-sc,oklch(var(--sc)/.7))}.border-r-secondary-content\/75{border-right-color:var(--fallback-sc,oklch(var(--sc)/.75))}.border-r-secondary-content\/80{border-right-color:var(--fallback-sc,oklch(var(--sc)/.8))}.border-r-secondary-content\/90{border-right-color:var(--fallback-sc,oklch(var(--sc)/.9))}.border-r-secondary-content\/95{border-right-color:var(--fallback-sc,oklch(var(--sc)/.95))}.border-r-secondary\/0{border-right-color:var(--fallback-s,oklch(var(--s)/0))}.border-r-secondary\/10{border-right-color:var(--fallback-s,oklch(var(--s)/.1))}.border-r-secondary\/100{border-right-color:var(--fallback-s,oklch(var(--s)/1))}.border-r-secondary\/20{border-right-color:var(--fallback-s,oklch(var(--s)/.2))}.border-r-secondary\/25{border-right-color:var(--fallback-s,oklch(var(--s)/.25))}.border-r-secondary\/30{border-right-color:var(--fallback-s,oklch(var(--s)/.3))}.border-r-secondary\/40{border-right-color:var(--fallback-s,oklch(var(--s)/.4))}.border-r-secondary\/5{border-right-color:var(--fallback-s,oklch(var(--s)/.05))}.border-r-secondary\/50{border-right-color:var(--fallback-s,oklch(var(--s)/.5))}.border-r-secondary\/60{border-right-color:var(--fallback-s,oklch(var(--s)/.6))}.border-r-secondary\/70{border-right-color:var(--fallback-s,oklch(var(--s)/.7))}.border-r-secondary\/75{border-right-color:var(--fallback-s,oklch(var(--s)/.75))}.border-r-secondary\/80{border-right-color:var(--fallback-s,oklch(var(--s)/.8))}.border-r-secondary\/90{border-right-color:var(--fallback-s,oklch(var(--s)/.9))}.border-r-secondary\/95{border-right-color:var(--fallback-s,oklch(var(--s)/.95))}.border-r-success{border-right-color:var(--fallback-su,oklch(var(--su)/1))}.border-r-success-content{border-right-color:var(--fallback-suc,oklch(var(--suc)/1))}.border-r-success-content\/0{border-right-color:var(--fallback-suc,oklch(var(--suc)/0))}.border-r-success-content\/10{border-right-color:var(--fallback-suc,oklch(var(--suc)/.1))}.border-r-success-content\/100{border-right-color:var(--fallback-suc,oklch(var(--suc)/1))}.border-r-success-content\/20{border-right-color:var(--fallback-suc,oklch(var(--suc)/.2))}.border-r-success-content\/25{border-right-color:var(--fallback-suc,oklch(var(--suc)/.25))}.border-r-success-content\/30{border-right-color:var(--fallback-suc,oklch(var(--suc)/.3))}.border-r-success-content\/40{border-right-color:var(--fallback-suc,oklch(var(--suc)/.4))}.border-r-success-content\/5{border-right-color:var(--fallback-suc,oklch(var(--suc)/.05))}.border-r-success-content\/50{border-right-color:var(--fallback-suc,oklch(var(--suc)/.5))}.border-r-success-content\/60{border-right-color:var(--fallback-suc,oklch(var(--suc)/.6))}.border-r-success-content\/70{border-right-color:var(--fallback-suc,oklch(var(--suc)/.7))}.border-r-success-content\/75{border-right-color:var(--fallback-suc,oklch(var(--suc)/.75))}.border-r-success-content\/80{border-right-color:var(--fallback-suc,oklch(var(--suc)/.8))}.border-r-success-content\/90{border-right-color:var(--fallback-suc,oklch(var(--suc)/.9))}.border-r-success-content\/95{border-right-color:var(--fallback-suc,oklch(var(--suc)/.95))}.border-r-success\/0{border-right-color:var(--fallback-su,oklch(var(--su)/0))}.border-r-success\/10{border-right-color:var(--fallback-su,oklch(var(--su)/.1))}.border-r-success\/100{border-right-color:var(--fallback-su,oklch(var(--su)/1))}.border-r-success\/20{border-right-color:var(--fallback-su,oklch(var(--su)/.2))}.border-r-success\/25{border-right-color:var(--fallback-su,oklch(var(--su)/.25))}.border-r-success\/30{border-right-color:var(--fallback-su,oklch(var(--su)/.3))}.border-r-success\/40{border-right-color:var(--fallback-su,oklch(var(--su)/.4))}.border-r-success\/5{border-right-color:var(--fallback-su,oklch(var(--su)/.05))}.border-r-success\/50{border-right-color:var(--fallback-su,oklch(var(--su)/.5))}.border-r-success\/60{border-right-color:var(--fallback-su,oklch(var(--su)/.6))}.border-r-success\/70{border-right-color:var(--fallback-su,oklch(var(--su)/.7))}.border-r-success\/75{border-right-color:var(--fallback-su,oklch(var(--su)/.75))}.border-r-success\/80{border-right-color:var(--fallback-su,oklch(var(--su)/.8))}.border-r-success\/90{border-right-color:var(--fallback-su,oklch(var(--su)/.9))}.border-r-success\/95{border-right-color:var(--fallback-su,oklch(var(--su)/.95))}.border-r-transparent{border-right-color:transparent}.border-r-transparent\/0{border-right-color:rgb(0 0 0 / 0)}.border-r-transparent\/10{border-right-color:rgb(0 0 0 / .1)}.border-r-transparent\/100{border-right-color:rgb(0 0 0 / 1)}.border-r-transparent\/20{border-right-color:rgb(0 0 0 / .2)}.border-r-transparent\/25{border-right-color:rgb(0 0 0 / .25)}.border-r-transparent\/30{border-right-color:rgb(0 0 0 / .3)}.border-r-transparent\/40{border-right-color:rgb(0 0 0 / .4)}.border-r-transparent\/5{border-right-color:rgb(0 0 0 / .05)}.border-r-transparent\/50{border-right-color:rgb(0 0 0 / .5)}.border-r-transparent\/60{border-right-color:rgb(0 0 0 / .6)}.border-r-transparent\/70{border-right-color:rgb(0 0 0 / .7)}.border-r-transparent\/75{border-right-color:rgb(0 0 0 / .75)}.border-r-transparent\/80{border-right-color:rgb(0 0 0 / .8)}.border-r-transparent\/90{border-right-color:rgb(0 0 0 / .9)}.border-r-transparent\/95{border-right-color:rgb(0 0 0 / .95)}.border-r-warning{border-right-color:var(--fallback-wa,oklch(var(--wa)/1))}.border-r-warning-content{border-right-color:var(--fallback-wac,oklch(var(--wac)/1))}.border-r-warning-content\/0{border-right-color:var(--fallback-wac,oklch(var(--wac)/0))}.border-r-warning-content\/10{border-right-color:var(--fallback-wac,oklch(var(--wac)/.1))}.border-r-warning-content\/100{border-right-color:var(--fallback-wac,oklch(var(--wac)/1))}.border-r-warning-content\/20{border-right-color:var(--fallback-wac,oklch(var(--wac)/.2))}.border-r-warning-content\/25{border-right-color:var(--fallback-wac,oklch(var(--wac)/.25))}.border-r-warning-content\/30{border-right-color:var(--fallback-wac,oklch(var(--wac)/.3))}.border-r-warning-content\/40{border-right-color:var(--fallback-wac,oklch(var(--wac)/.4))}.border-r-warning-content\/5{border-right-color:var(--fallback-wac,oklch(var(--wac)/.05))}.border-r-warning-content\/50{border-right-color:var(--fallback-wac,oklch(var(--wac)/.5))}.border-r-warning-content\/60{border-right-color:var(--fallback-wac,oklch(var(--wac)/.6))}.border-r-warning-content\/70{border-right-color:var(--fallback-wac,oklch(var(--wac)/.7))}.border-r-warning-content\/75{border-right-color:var(--fallback-wac,oklch(var(--wac)/.75))}.border-r-warning-content\/80{border-right-color:var(--fallback-wac,oklch(var(--wac)/.8))}.border-r-warning-content\/90{border-right-color:var(--fallback-wac,oklch(var(--wac)/.9))}.border-r-warning-content\/95{border-right-color:var(--fallback-wac,oklch(var(--wac)/.95))}.border-r-warning\/0{border-right-color:var(--fallback-wa,oklch(var(--wa)/0))}.border-r-warning\/10{border-right-color:var(--fallback-wa,oklch(var(--wa)/.1))}.border-r-warning\/100{border-right-color:var(--fallback-wa,oklch(var(--wa)/1))}.border-r-warning\/20{border-right-color:var(--fallback-wa,oklch(var(--wa)/.2))}.border-r-warning\/25{border-right-color:var(--fallback-wa,oklch(var(--wa)/.25))}.border-r-warning\/30{border-right-color:var(--fallback-wa,oklch(var(--wa)/.3))}.border-r-warning\/40{border-right-color:var(--fallback-wa,oklch(var(--wa)/.4))}.border-r-warning\/5{border-right-color:var(--fallback-wa,oklch(var(--wa)/.05))}.border-r-warning\/50{border-right-color:var(--fallback-wa,oklch(var(--wa)/.5))}.border-r-warning\/60{border-right-color:var(--fallback-wa,oklch(var(--wa)/.6))}.border-r-warning\/70{border-right-color:var(--fallback-wa,oklch(var(--wa)/.7))}.border-r-warning\/75{border-right-color:var(--fallback-wa,oklch(var(--wa)/.75))}.border-r-warning\/80{border-right-color:var(--fallback-wa,oklch(var(--wa)/.8))}.border-r-warning\/90{border-right-color:var(--fallback-wa,oklch(var(--wa)/.9))}.border-r-warning\/95{border-right-color:var(--fallback-wa,oklch(var(--wa)/.95))}.border-s-accent{border-inline-start-color:var(--fallback-a,oklch(var(--a)/1))}.border-s-accent-content{border-inline-start-color:var(--fallback-ac,oklch(var(--ac)/1))}.border-s-accent-content\/0{border-inline-start-color:var(--fallback-ac,oklch(var(--ac)/0))}.border-s-accent-content\/10{border-inline-start-color:var(--fallback-ac,oklch(var(--ac)/0.1))}.border-s-accent-content\/100{border-inline-start-color:var(--fallback-ac,oklch(var(--ac)/1))}.border-s-accent-content\/20{border-inline-start-color:var(--fallback-ac,oklch(var(--ac)/0.2))}.border-s-accent-content\/25{border-inline-start-color:var(--fallback-ac,oklch(var(--ac)/0.25))}.border-s-accent-content\/30{border-inline-start-color:var(--fallback-ac,oklch(var(--ac)/0.3))}.border-s-accent-content\/40{border-inline-start-color:var(--fallback-ac,oklch(var(--ac)/0.4))}.border-s-accent-content\/5{border-inline-start-color:var(--fallback-ac,oklch(var(--ac)/0.05))}.border-s-accent-content\/50{border-inline-start-color:var(--fallback-ac,oklch(var(--ac)/0.5))}.border-s-accent-content\/60{border-inline-start-color:var(--fallback-ac,oklch(var(--ac)/0.6))}.border-s-accent-content\/70{border-inline-start-color:var(--fallback-ac,oklch(var(--ac)/0.7))}.border-s-accent-content\/75{border-inline-start-color:var(--fallback-ac,oklch(var(--ac)/0.75))}.border-s-accent-content\/80{border-inline-start-color:var(--fallback-ac,oklch(var(--ac)/0.8))}.border-s-accent-content\/90{border-inline-start-color:var(--fallback-ac,oklch(var(--ac)/0.9))}.border-s-accent-content\/95{border-inline-start-color:var(--fallback-ac,oklch(var(--ac)/0.95))}.border-s-accent\/0{border-inline-start-color:var(--fallback-a,oklch(var(--a)/0))}.border-s-accent\/10{border-inline-start-color:var(--fallback-a,oklch(var(--a)/0.1))}.border-s-accent\/100{border-inline-start-color:var(--fallback-a,oklch(var(--a)/1))}.border-s-accent\/20{border-inline-start-color:var(--fallback-a,oklch(var(--a)/0.2))}.border-s-accent\/25{border-inline-start-color:var(--fallback-a,oklch(var(--a)/0.25))}.border-s-accent\/30{border-inline-start-color:var(--fallback-a,oklch(var(--a)/0.3))}.border-s-accent\/40{border-inline-start-color:var(--fallback-a,oklch(var(--a)/0.4))}.border-s-accent\/5{border-inline-start-color:var(--fallback-a,oklch(var(--a)/0.05))}.border-s-accent\/50{border-inline-start-color:var(--fallback-a,oklch(var(--a)/0.5))}.border-s-accent\/60{border-inline-start-color:var(--fallback-a,oklch(var(--a)/0.6))}.border-s-accent\/70{border-inline-start-color:var(--fallback-a,oklch(var(--a)/0.7))}.border-s-accent\/75{border-inline-start-color:var(--fallback-a,oklch(var(--a)/0.75))}.border-s-accent\/80{border-inline-start-color:var(--fallback-a,oklch(var(--a)/0.8))}.border-s-accent\/90{border-inline-start-color:var(--fallback-a,oklch(var(--a)/0.9))}.border-s-accent\/95{border-inline-start-color:var(--fallback-a,oklch(var(--a)/0.95))}.border-s-base-100{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/1))}.border-s-base-100\/0{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0))}.border-s-base-100\/10{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.1))}.border-s-base-100\/100{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/1))}.border-s-base-100\/20{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.2))}.border-s-base-100\/25{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.25))}.border-s-base-100\/30{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.3))}.border-s-base-100\/40{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.4))}.border-s-base-100\/5{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.05))}.border-s-base-100\/50{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.5))}.border-s-base-100\/60{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.6))}.border-s-base-100\/70{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.7))}.border-s-base-100\/75{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.75))}.border-s-base-100\/80{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.8))}.border-s-base-100\/90{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.9))}.border-s-base-100\/95{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.95))}.border-s-base-200{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/1))}.border-s-base-200\/0{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0))}.border-s-base-200\/10{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.1))}.border-s-base-200\/100{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/1))}.border-s-base-200\/20{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.2))}.border-s-base-200\/25{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.25))}.border-s-base-200\/30{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.3))}.border-s-base-200\/40{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.4))}.border-s-base-200\/5{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.05))}.border-s-base-200\/50{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.5))}.border-s-base-200\/60{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.6))}.border-s-base-200\/70{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.7))}.border-s-base-200\/75{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.75))}.border-s-base-200\/80{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.8))}.border-s-base-200\/90{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.9))}.border-s-base-200\/95{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.95))}.border-s-base-300{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/1))}.border-s-base-300\/0{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0))}.border-s-base-300\/10{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.1))}.border-s-base-300\/100{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/1))}.border-s-base-300\/20{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.2))}.border-s-base-300\/25{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.25))}.border-s-base-300\/30{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.3))}.border-s-base-300\/40{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.4))}.border-s-base-300\/5{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.05))}.border-s-base-300\/50{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.5))}.border-s-base-300\/60{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.6))}.border-s-base-300\/70{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.7))}.border-s-base-300\/75{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.75))}.border-s-base-300\/80{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.8))}.border-s-base-300\/90{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.9))}.border-s-base-300\/95{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.95))}.border-s-base-content{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/1))}.border-s-base-content\/0{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0))}.border-s-base-content\/10{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.1))}.border-s-base-content\/100{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/1))}.border-s-base-content\/20{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.2))}.border-s-base-content\/25{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.25))}.border-s-base-content\/30{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.3))}.border-s-base-content\/40{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.4))}.border-s-base-content\/5{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.05))}.border-s-base-content\/50{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.5))}.border-s-base-content\/60{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.6))}.border-s-base-content\/70{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.7))}.border-s-base-content\/75{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.75))}.border-s-base-content\/80{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.8))}.border-s-base-content\/90{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.9))}.border-s-base-content\/95{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.95))}.border-s-current{border-inline-start-color:currentColor}.border-s-error{border-inline-start-color:var(--fallback-er,oklch(var(--er)/1))}.border-s-error-content{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/1))}.border-s-error-content\/0{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0))}.border-s-error-content\/10{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.1))}.border-s-error-content\/100{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/1))}.border-s-error-content\/20{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.2))}.border-s-error-content\/25{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.25))}.border-s-error-content\/30{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.3))}.border-s-error-content\/40{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.4))}.border-s-error-content\/5{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.05))}.border-s-error-content\/50{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.5))}.border-s-error-content\/60{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.6))}.border-s-error-content\/70{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.7))}.border-s-error-content\/75{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.75))}.border-s-error-content\/80{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.8))}.border-s-error-content\/90{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.9))}.border-s-error-content\/95{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.95))}.border-s-error\/0{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0))}.border-s-error\/10{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.1))}.border-s-error\/100{border-inline-start-color:var(--fallback-er,oklch(var(--er)/1))}.border-s-error\/20{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.2))}.border-s-error\/25{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.25))}.border-s-error\/30{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.3))}.border-s-error\/40{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.4))}.border-s-error\/5{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.05))}.border-s-error\/50{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.5))}.border-s-error\/60{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.6))}.border-s-error\/70{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.7))}.border-s-error\/75{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.75))}.border-s-error\/80{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.8))}.border-s-error\/90{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.9))}.border-s-error\/95{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.95))}.border-s-info{border-inline-start-color:var(--fallback-in,oklch(var(--in)/1))}.border-s-info-content{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/1))}.border-s-info-content\/0{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0))}.border-s-info-content\/10{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.1))}.border-s-info-content\/100{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/1))}.border-s-info-content\/20{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.2))}.border-s-info-content\/25{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.25))}.border-s-info-content\/30{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.3))}.border-s-info-content\/40{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.4))}.border-s-info-content\/5{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.05))}.border-s-info-content\/50{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.5))}.border-s-info-content\/60{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.6))}.border-s-info-content\/70{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.7))}.border-s-info-content\/75{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.75))}.border-s-info-content\/80{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.8))}.border-s-info-content\/90{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.9))}.border-s-info-content\/95{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.95))}.border-s-info\/0{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0))}.border-s-info\/10{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.1))}.border-s-info\/100{border-inline-start-color:var(--fallback-in,oklch(var(--in)/1))}.border-s-info\/20{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.2))}.border-s-info\/25{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.25))}.border-s-info\/30{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.3))}.border-s-info\/40{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.4))}.border-s-info\/5{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.05))}.border-s-info\/50{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.5))}.border-s-info\/60{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.6))}.border-s-info\/70{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.7))}.border-s-info\/75{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.75))}.border-s-info\/80{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.8))}.border-s-info\/90{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.9))}.border-s-info\/95{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.95))}.border-s-neutral{border-inline-start-color:var(--fallback-n,oklch(var(--n)/1))}.border-s-neutral-content{border-inline-start-color:var(--fallback-nc,oklch(var(--nc)/1))}.border-s-neutral-content\/0{border-inline-start-color:var(--fallback-nc,oklch(var(--nc)/0))}.border-s-neutral-content\/10{border-inline-start-color:var(--fallback-nc,oklch(var(--nc)/0.1))}.border-s-neutral-content\/100{border-inline-start-color:var(--fallback-nc,oklch(var(--nc)/1))}.border-s-neutral-content\/20{border-inline-start-color:var(--fallback-nc,oklch(var(--nc)/0.2))}.border-s-neutral-content\/25{border-inline-start-color:var(--fallback-nc,oklch(var(--nc)/0.25))}.border-s-neutral-content\/30{border-inline-start-color:var(--fallback-nc,oklch(var(--nc)/0.3))}.border-s-neutral-content\/40{border-inline-start-color:var(--fallback-nc,oklch(var(--nc)/0.4))}.border-s-neutral-content\/5{border-inline-start-color:var(--fallback-nc,oklch(var(--nc)/0.05))}.border-s-neutral-content\/50{border-inline-start-color:var(--fallback-nc,oklch(var(--nc)/0.5))}.border-s-neutral-content\/60{border-inline-start-color:var(--fallback-nc,oklch(var(--nc)/0.6))}.border-s-neutral-content\/70{border-inline-start-color:var(--fallback-nc,oklch(var(--nc)/0.7))}.border-s-neutral-content\/75{border-inline-start-color:var(--fallback-nc,oklch(var(--nc)/0.75))}.border-s-neutral-content\/80{border-inline-start-color:var(--fallback-nc,oklch(var(--nc)/0.8))}.border-s-neutral-content\/90{border-inline-start-color:var(--fallback-nc,oklch(var(--nc)/0.9))}.border-s-neutral-content\/95{border-inline-start-color:var(--fallback-nc,oklch(var(--nc)/0.95))}.border-s-neutral\/0{border-inline-start-color:var(--fallback-n,oklch(var(--n)/0))}.border-s-neutral\/10{border-inline-start-color:var(--fallback-n,oklch(var(--n)/0.1))}.border-s-neutral\/100{border-inline-start-color:var(--fallback-n,oklch(var(--n)/1))}.border-s-neutral\/20{border-inline-start-color:var(--fallback-n,oklch(var(--n)/0.2))}.border-s-neutral\/25{border-inline-start-color:var(--fallback-n,oklch(var(--n)/0.25))}.border-s-neutral\/30{border-inline-start-color:var(--fallback-n,oklch(var(--n)/0.3))}.border-s-neutral\/40{border-inline-start-color:var(--fallback-n,oklch(var(--n)/0.4))}.border-s-neutral\/5{border-inline-start-color:var(--fallback-n,oklch(var(--n)/0.05))}.border-s-neutral\/50{border-inline-start-color:var(--fallback-n,oklch(var(--n)/0.5))}.border-s-neutral\/60{border-inline-start-color:var(--fallback-n,oklch(var(--n)/0.6))}.border-s-neutral\/70{border-inline-start-color:var(--fallback-n,oklch(var(--n)/0.7))}.border-s-neutral\/75{border-inline-start-color:var(--fallback-n,oklch(var(--n)/0.75))}.border-s-neutral\/80{border-inline-start-color:var(--fallback-n,oklch(var(--n)/0.8))}.border-s-neutral\/90{border-inline-start-color:var(--fallback-n,oklch(var(--n)/0.9))}.border-s-neutral\/95{border-inline-start-color:var(--fallback-n,oklch(var(--n)/0.95))}.border-s-primary{border-inline-start-color:var(--fallback-p,oklch(var(--p)/1))}.border-s-primary-content{border-inline-start-color:var(--fallback-pc,oklch(var(--pc)/1))}.border-s-primary-content\/0{border-inline-start-color:var(--fallback-pc,oklch(var(--pc)/0))}.border-s-primary-content\/10{border-inline-start-color:var(--fallback-pc,oklch(var(--pc)/0.1))}.border-s-primary-content\/100{border-inline-start-color:var(--fallback-pc,oklch(var(--pc)/1))}.border-s-primary-content\/20{border-inline-start-color:var(--fallback-pc,oklch(var(--pc)/0.2))}.border-s-primary-content\/25{border-inline-start-color:var(--fallback-pc,oklch(var(--pc)/0.25))}.border-s-primary-content\/30{border-inline-start-color:var(--fallback-pc,oklch(var(--pc)/0.3))}.border-s-primary-content\/40{border-inline-start-color:var(--fallback-pc,oklch(var(--pc)/0.4))}.border-s-primary-content\/5{border-inline-start-color:var(--fallback-pc,oklch(var(--pc)/0.05))}.border-s-primary-content\/50{border-inline-start-color:var(--fallback-pc,oklch(var(--pc)/0.5))}.border-s-primary-content\/60{border-inline-start-color:var(--fallback-pc,oklch(var(--pc)/0.6))}.border-s-primary-content\/70{border-inline-start-color:var(--fallback-pc,oklch(var(--pc)/0.7))}.border-s-primary-content\/75{border-inline-start-color:var(--fallback-pc,oklch(var(--pc)/0.75))}.border-s-primary-content\/80{border-inline-start-color:var(--fallback-pc,oklch(var(--pc)/0.8))}.border-s-primary-content\/90{border-inline-start-color:var(--fallback-pc,oklch(var(--pc)/0.9))}.border-s-primary-content\/95{border-inline-start-color:var(--fallback-pc,oklch(var(--pc)/0.95))}.border-s-primary\/0{border-inline-start-color:var(--fallback-p,oklch(var(--p)/0))}.border-s-primary\/10{border-inline-start-color:var(--fallback-p,oklch(var(--p)/0.1))}.border-s-primary\/100{border-inline-start-color:var(--fallback-p,oklch(var(--p)/1))}.border-s-primary\/20{border-inline-start-color:var(--fallback-p,oklch(var(--p)/0.2))}.border-s-primary\/25{border-inline-start-color:var(--fallback-p,oklch(var(--p)/0.25))}.border-s-primary\/30{border-inline-start-color:var(--fallback-p,oklch(var(--p)/0.3))}.border-s-primary\/40{border-inline-start-color:var(--fallback-p,oklch(var(--p)/0.4))}.border-s-primary\/5{border-inline-start-color:var(--fallback-p,oklch(var(--p)/0.05))}.border-s-primary\/50{border-inline-start-color:var(--fallback-p,oklch(var(--p)/0.5))}.border-s-primary\/60{border-inline-start-color:var(--fallback-p,oklch(var(--p)/0.6))}.border-s-primary\/70{border-inline-start-color:var(--fallback-p,oklch(var(--p)/0.7))}.border-s-primary\/75{border-inline-start-color:var(--fallback-p,oklch(var(--p)/0.75))}.border-s-primary\/80{border-inline-start-color:var(--fallback-p,oklch(var(--p)/0.8))}.border-s-primary\/90{border-inline-start-color:var(--fallback-p,oklch(var(--p)/0.9))}.border-s-primary\/95{border-inline-start-color:var(--fallback-p,oklch(var(--p)/0.95))}.border-s-secondary{border-inline-start-color:var(--fallback-s,oklch(var(--s)/1))}.border-s-secondary-content{border-inline-start-color:var(--fallback-sc,oklch(var(--sc)/1))}.border-s-secondary-content\/0{border-inline-start-color:var(--fallback-sc,oklch(var(--sc)/0))}.border-s-secondary-content\/10{border-inline-start-color:var(--fallback-sc,oklch(var(--sc)/0.1))}.border-s-secondary-content\/100{border-inline-start-color:var(--fallback-sc,oklch(var(--sc)/1))}.border-s-secondary-content\/20{border-inline-start-color:var(--fallback-sc,oklch(var(--sc)/0.2))}.border-s-secondary-content\/25{border-inline-start-color:var(--fallback-sc,oklch(var(--sc)/0.25))}.border-s-secondary-content\/30{border-inline-start-color:var(--fallback-sc,oklch(var(--sc)/0.3))}.border-s-secondary-content\/40{border-inline-start-color:var(--fallback-sc,oklch(var(--sc)/0.4))}.border-s-secondary-content\/5{border-inline-start-color:var(--fallback-sc,oklch(var(--sc)/0.05))}.border-s-secondary-content\/50{border-inline-start-color:var(--fallback-sc,oklch(var(--sc)/0.5))}.border-s-secondary-content\/60{border-inline-start-color:var(--fallback-sc,oklch(var(--sc)/0.6))}.border-s-secondary-content\/70{border-inline-start-color:var(--fallback-sc,oklch(var(--sc)/0.7))}.border-s-secondary-content\/75{border-inline-start-color:var(--fallback-sc,oklch(var(--sc)/0.75))}.border-s-secondary-content\/80{border-inline-start-color:var(--fallback-sc,oklch(var(--sc)/0.8))}.border-s-secondary-content\/90{border-inline-start-color:var(--fallback-sc,oklch(var(--sc)/0.9))}.border-s-secondary-content\/95{border-inline-start-color:var(--fallback-sc,oklch(var(--sc)/0.95))}.border-s-secondary\/0{border-inline-start-color:var(--fallback-s,oklch(var(--s)/0))}.border-s-secondary\/10{border-inline-start-color:var(--fallback-s,oklch(var(--s)/0.1))}.border-s-secondary\/100{border-inline-start-color:var(--fallback-s,oklch(var(--s)/1))}.border-s-secondary\/20{border-inline-start-color:var(--fallback-s,oklch(var(--s)/0.2))}.border-s-secondary\/25{border-inline-start-color:var(--fallback-s,oklch(var(--s)/0.25))}.border-s-secondary\/30{border-inline-start-color:var(--fallback-s,oklch(var(--s)/0.3))}.border-s-secondary\/40{border-inline-start-color:var(--fallback-s,oklch(var(--s)/0.4))}.border-s-secondary\/5{border-inline-start-color:var(--fallback-s,oklch(var(--s)/0.05))}.border-s-secondary\/50{border-inline-start-color:var(--fallback-s,oklch(var(--s)/0.5))}.border-s-secondary\/60{border-inline-start-color:var(--fallback-s,oklch(var(--s)/0.6))}.border-s-secondary\/70{border-inline-start-color:var(--fallback-s,oklch(var(--s)/0.7))}.border-s-secondary\/75{border-inline-start-color:var(--fallback-s,oklch(var(--s)/0.75))}.border-s-secondary\/80{border-inline-start-color:var(--fallback-s,oklch(var(--s)/0.8))}.border-s-secondary\/90{border-inline-start-color:var(--fallback-s,oklch(var(--s)/0.9))}.border-s-secondary\/95{border-inline-start-color:var(--fallback-s,oklch(var(--s)/0.95))}.border-s-success{border-inline-start-color:var(--fallback-su,oklch(var(--su)/1))}.border-s-success-content{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/1))}.border-s-success-content\/0{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0))}.border-s-success-content\/10{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.1))}.border-s-success-content\/100{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/1))}.border-s-success-content\/20{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.2))}.border-s-success-content\/25{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.25))}.border-s-success-content\/30{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.3))}.border-s-success-content\/40{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.4))}.border-s-success-content\/5{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.05))}.border-s-success-content\/50{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.5))}.border-s-success-content\/60{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.6))}.border-s-success-content\/70{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.7))}.border-s-success-content\/75{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.75))}.border-s-success-content\/80{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.8))}.border-s-success-content\/90{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.9))}.border-s-success-content\/95{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.95))}.border-s-success\/0{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0))}.border-s-success\/10{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.1))}.border-s-success\/100{border-inline-start-color:var(--fallback-su,oklch(var(--su)/1))}.border-s-success\/20{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.2))}.border-s-success\/25{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.25))}.border-s-success\/30{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.3))}.border-s-success\/40{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.4))}.border-s-success\/5{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.05))}.border-s-success\/50{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.5))}.border-s-success\/60{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.6))}.border-s-success\/70{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.7))}.border-s-success\/75{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.75))}.border-s-success\/80{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.8))}.border-s-success\/90{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.9))}.border-s-success\/95{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.95))}.border-s-transparent{border-inline-start-color:transparent}.border-s-transparent\/0{border-inline-start-color:rgb(0 0 0 / 0)}.border-s-transparent\/10{border-inline-start-color:rgb(0 0 0 / 0.1)}.border-s-transparent\/100{border-inline-start-color:rgb(0 0 0 / 1)}.border-s-transparent\/20{border-inline-start-color:rgb(0 0 0 / 0.2)}.border-s-transparent\/25{border-inline-start-color:rgb(0 0 0 / 0.25)}.border-s-transparent\/30{border-inline-start-color:rgb(0 0 0 / 0.3)}.border-s-transparent\/40{border-inline-start-color:rgb(0 0 0 / 0.4)}.border-s-transparent\/5{border-inline-start-color:rgb(0 0 0 / 0.05)}.border-s-transparent\/50{border-inline-start-color:rgb(0 0 0 / 0.5)}.border-s-transparent\/60{border-inline-start-color:rgb(0 0 0 / 0.6)}.border-s-transparent\/70{border-inline-start-color:rgb(0 0 0 / 0.7)}.border-s-transparent\/75{border-inline-start-color:rgb(0 0 0 / 0.75)}.border-s-transparent\/80{border-inline-start-color:rgb(0 0 0 / 0.8)}.border-s-transparent\/90{border-inline-start-color:rgb(0 0 0 / 0.9)}.border-s-transparent\/95{border-inline-start-color:rgb(0 0 0 / 0.95)}.border-s-warning{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/1))}.border-s-warning-content{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/1))}.border-s-warning-content\/0{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0))}.border-s-warning-content\/10{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.1))}.border-s-warning-content\/100{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/1))}.border-s-warning-content\/20{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.2))}.border-s-warning-content\/25{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.25))}.border-s-warning-content\/30{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.3))}.border-s-warning-content\/40{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.4))}.border-s-warning-content\/5{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.05))}.border-s-warning-content\/50{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.5))}.border-s-warning-content\/60{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.6))}.border-s-warning-content\/70{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.7))}.border-s-warning-content\/75{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.75))}.border-s-warning-content\/80{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.8))}.border-s-warning-content\/90{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.9))}.border-s-warning-content\/95{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.95))}.border-s-warning\/0{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0))}.border-s-warning\/10{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.1))}.border-s-warning\/100{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/1))}.border-s-warning\/20{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.2))}.border-s-warning\/25{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.25))}.border-s-warning\/30{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.3))}.border-s-warning\/40{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.4))}.border-s-warning\/5{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.05))}.border-s-warning\/50{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.5))}.border-s-warning\/60{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.6))}.border-s-warning\/70{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.7))}.border-s-warning\/75{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.75))}.border-s-warning\/80{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.8))}.border-s-warning\/90{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.9))}.border-s-warning\/95{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.95))}.border-t-accent{border-top-color:var(--fallback-a,oklch(var(--a)/1))}.border-t-accent-content{border-top-color:var(--fallback-ac,oklch(var(--ac)/1))}.border-t-accent-content\/0{border-top-color:var(--fallback-ac,oklch(var(--ac)/0))}.border-t-accent-content\/10{border-top-color:var(--fallback-ac,oklch(var(--ac)/.1))}.border-t-accent-content\/100{border-top-color:var(--fallback-ac,oklch(var(--ac)/1))}.border-t-accent-content\/20{border-top-color:var(--fallback-ac,oklch(var(--ac)/.2))}.border-t-accent-content\/25{border-top-color:var(--fallback-ac,oklch(var(--ac)/.25))}.border-t-accent-content\/30{border-top-color:var(--fallback-ac,oklch(var(--ac)/.3))}.border-t-accent-content\/40{border-top-color:var(--fallback-ac,oklch(var(--ac)/.4))}.border-t-accent-content\/5{border-top-color:var(--fallback-ac,oklch(var(--ac)/.05))}.border-t-accent-content\/50{border-top-color:var(--fallback-ac,oklch(var(--ac)/.5))}.border-t-accent-content\/60{border-top-color:var(--fallback-ac,oklch(var(--ac)/.6))}.border-t-accent-content\/70{border-top-color:var(--fallback-ac,oklch(var(--ac)/.7))}.border-t-accent-content\/75{border-top-color:var(--fallback-ac,oklch(var(--ac)/.75))}.border-t-accent-content\/80{border-top-color:var(--fallback-ac,oklch(var(--ac)/.8))}.border-t-accent-content\/90{border-top-color:var(--fallback-ac,oklch(var(--ac)/.9))}.border-t-accent-content\/95{border-top-color:var(--fallback-ac,oklch(var(--ac)/.95))}.border-t-accent\/0{border-top-color:var(--fallback-a,oklch(var(--a)/0))}.border-t-accent\/10{border-top-color:var(--fallback-a,oklch(var(--a)/.1))}.border-t-accent\/100{border-top-color:var(--fallback-a,oklch(var(--a)/1))}.border-t-accent\/20{border-top-color:var(--fallback-a,oklch(var(--a)/.2))}.border-t-accent\/25{border-top-color:var(--fallback-a,oklch(var(--a)/.25))}.border-t-accent\/30{border-top-color:var(--fallback-a,oklch(var(--a)/.3))}.border-t-accent\/40{border-top-color:var(--fallback-a,oklch(var(--a)/.4))}.border-t-accent\/5{border-top-color:var(--fallback-a,oklch(var(--a)/.05))}.border-t-accent\/50{border-top-color:var(--fallback-a,oklch(var(--a)/.5))}.border-t-accent\/60{border-top-color:var(--fallback-a,oklch(var(--a)/.6))}.border-t-accent\/70{border-top-color:var(--fallback-a,oklch(var(--a)/.7))}.border-t-accent\/75{border-top-color:var(--fallback-a,oklch(var(--a)/.75))}.border-t-accent\/80{border-top-color:var(--fallback-a,oklch(var(--a)/.8))}.border-t-accent\/90{border-top-color:var(--fallback-a,oklch(var(--a)/.9))}.border-t-accent\/95{border-top-color:var(--fallback-a,oklch(var(--a)/.95))}.border-t-base-100{border-top-color:var(--fallback-b1,oklch(var(--b1)/1))}.border-t-base-100\/0{border-top-color:var(--fallback-b1,oklch(var(--b1)/0))}.border-t-base-100\/10{border-top-color:var(--fallback-b1,oklch(var(--b1)/.1))}.border-t-base-100\/100{border-top-color:var(--fallback-b1,oklch(var(--b1)/1))}.border-t-base-100\/20{border-top-color:var(--fallback-b1,oklch(var(--b1)/.2))}.border-t-base-100\/25{border-top-color:var(--fallback-b1,oklch(var(--b1)/.25))}.border-t-base-100\/30{border-top-color:var(--fallback-b1,oklch(var(--b1)/.3))}.border-t-base-100\/40{border-top-color:var(--fallback-b1,oklch(var(--b1)/.4))}.border-t-base-100\/5{border-top-color:var(--fallback-b1,oklch(var(--b1)/.05))}.border-t-base-100\/50{border-top-color:var(--fallback-b1,oklch(var(--b1)/.5))}.border-t-base-100\/60{border-top-color:var(--fallback-b1,oklch(var(--b1)/.6))}.border-t-base-100\/70{border-top-color:var(--fallback-b1,oklch(var(--b1)/.7))}.border-t-base-100\/75{border-top-color:var(--fallback-b1,oklch(var(--b1)/.75))}.border-t-base-100\/80{border-top-color:var(--fallback-b1,oklch(var(--b1)/.8))}.border-t-base-100\/90{border-top-color:var(--fallback-b1,oklch(var(--b1)/.9))}.border-t-base-100\/95{border-top-color:var(--fallback-b1,oklch(var(--b1)/.95))}.border-t-base-200{border-top-color:var(--fallback-b2,oklch(var(--b2)/1))}.border-t-base-200\/0{border-top-color:var(--fallback-b2,oklch(var(--b2)/0))}.border-t-base-200\/10{border-top-color:var(--fallback-b2,oklch(var(--b2)/.1))}.border-t-base-200\/100{border-top-color:var(--fallback-b2,oklch(var(--b2)/1))}.border-t-base-200\/20{border-top-color:var(--fallback-b2,oklch(var(--b2)/.2))}.border-t-base-200\/25{border-top-color:var(--fallback-b2,oklch(var(--b2)/.25))}.border-t-base-200\/30{border-top-color:var(--fallback-b2,oklch(var(--b2)/.3))}.border-t-base-200\/40{border-top-color:var(--fallback-b2,oklch(var(--b2)/.4))}.border-t-base-200\/5{border-top-color:var(--fallback-b2,oklch(var(--b2)/.05))}.border-t-base-200\/50{border-top-color:var(--fallback-b2,oklch(var(--b2)/.5))}.border-t-base-200\/60{border-top-color:var(--fallback-b2,oklch(var(--b2)/.6))}.border-t-base-200\/70{border-top-color:var(--fallback-b2,oklch(var(--b2)/.7))}.border-t-base-200\/75{border-top-color:var(--fallback-b2,oklch(var(--b2)/.75))}.border-t-base-200\/80{border-top-color:var(--fallback-b2,oklch(var(--b2)/.8))}.border-t-base-200\/90{border-top-color:var(--fallback-b2,oklch(var(--b2)/.9))}.border-t-base-200\/95{border-top-color:var(--fallback-b2,oklch(var(--b2)/.95))}.border-t-base-300{border-top-color:var(--fallback-b3,oklch(var(--b3)/1))}.border-t-base-300\/0{border-top-color:var(--fallback-b3,oklch(var(--b3)/0))}.border-t-base-300\/10{border-top-color:var(--fallback-b3,oklch(var(--b3)/.1))}.border-t-base-300\/100{border-top-color:var(--fallback-b3,oklch(var(--b3)/1))}.border-t-base-300\/20{border-top-color:var(--fallback-b3,oklch(var(--b3)/.2))}.border-t-base-300\/25{border-top-color:var(--fallback-b3,oklch(var(--b3)/.25))}.border-t-base-300\/30{border-top-color:var(--fallback-b3,oklch(var(--b3)/.3))}.border-t-base-300\/40{border-top-color:var(--fallback-b3,oklch(var(--b3)/.4))}.border-t-base-300\/5{border-top-color:var(--fallback-b3,oklch(var(--b3)/.05))}.border-t-base-300\/50{border-top-color:var(--fallback-b3,oklch(var(--b3)/.5))}.border-t-base-300\/60{border-top-color:var(--fallback-b3,oklch(var(--b3)/.6))}.border-t-base-300\/70{border-top-color:var(--fallback-b3,oklch(var(--b3)/.7))}.border-t-base-300\/75{border-top-color:var(--fallback-b3,oklch(var(--b3)/.75))}.border-t-base-300\/80{border-top-color:var(--fallback-b3,oklch(var(--b3)/.8))}.border-t-base-300\/90{border-top-color:var(--fallback-b3,oklch(var(--b3)/.9))}.border-t-base-300\/95{border-top-color:var(--fallback-b3,oklch(var(--b3)/.95))}.border-t-base-content{border-top-color:var(--fallback-bc,oklch(var(--bc)/1))}.border-t-base-content\/0{border-top-color:var(--fallback-bc,oklch(var(--bc)/0))}.border-t-base-content\/10{border-top-color:var(--fallback-bc,oklch(var(--bc)/.1))}.border-t-base-content\/100{border-top-color:var(--fallback-bc,oklch(var(--bc)/1))}.border-t-base-content\/20{border-top-color:var(--fallback-bc,oklch(var(--bc)/.2))}.border-t-base-content\/25{border-top-color:var(--fallback-bc,oklch(var(--bc)/.25))}.border-t-base-content\/30{border-top-color:var(--fallback-bc,oklch(var(--bc)/.3))}.border-t-base-content\/40{border-top-color:var(--fallback-bc,oklch(var(--bc)/.4))}.border-t-base-content\/5{border-top-color:var(--fallback-bc,oklch(var(--bc)/.05))}.border-t-base-content\/50{border-top-color:var(--fallback-bc,oklch(var(--bc)/.5))}.border-t-base-content\/60{border-top-color:var(--fallback-bc,oklch(var(--bc)/.6))}.border-t-base-content\/70{border-top-color:var(--fallback-bc,oklch(var(--bc)/.7))}.border-t-base-content\/75{border-top-color:var(--fallback-bc,oklch(var(--bc)/.75))}.border-t-base-content\/80{border-top-color:var(--fallback-bc,oklch(var(--bc)/.8))}.border-t-base-content\/90{border-top-color:var(--fallback-bc,oklch(var(--bc)/.9))}.border-t-base-content\/95{border-top-color:var(--fallback-bc,oklch(var(--bc)/.95))}.border-t-current{border-top-color:currentColor}.border-t-error{border-top-color:var(--fallback-er,oklch(var(--er)/1))}.border-t-error-content{border-top-color:var(--fallback-erc,oklch(var(--erc)/1))}.border-t-error-content\/0{border-top-color:var(--fallback-erc,oklch(var(--erc)/0))}.border-t-error-content\/10{border-top-color:var(--fallback-erc,oklch(var(--erc)/.1))}.border-t-error-content\/100{border-top-color:var(--fallback-erc,oklch(var(--erc)/1))}.border-t-error-content\/20{border-top-color:var(--fallback-erc,oklch(var(--erc)/.2))}.border-t-error-content\/25{border-top-color:var(--fallback-erc,oklch(var(--erc)/.25))}.border-t-error-content\/30{border-top-color:var(--fallback-erc,oklch(var(--erc)/.3))}.border-t-error-content\/40{border-top-color:var(--fallback-erc,oklch(var(--erc)/.4))}.border-t-error-content\/5{border-top-color:var(--fallback-erc,oklch(var(--erc)/.05))}.border-t-error-content\/50{border-top-color:var(--fallback-erc,oklch(var(--erc)/.5))}.border-t-error-content\/60{border-top-color:var(--fallback-erc,oklch(var(--erc)/.6))}.border-t-error-content\/70{border-top-color:var(--fallback-erc,oklch(var(--erc)/.7))}.border-t-error-content\/75{border-top-color:var(--fallback-erc,oklch(var(--erc)/.75))}.border-t-error-content\/80{border-top-color:var(--fallback-erc,oklch(var(--erc)/.8))}.border-t-error-content\/90{border-top-color:var(--fallback-erc,oklch(var(--erc)/.9))}.border-t-error-content\/95{border-top-color:var(--fallback-erc,oklch(var(--erc)/.95))}.border-t-error\/0{border-top-color:var(--fallback-er,oklch(var(--er)/0))}.border-t-error\/10{border-top-color:var(--fallback-er,oklch(var(--er)/.1))}.border-t-error\/100{border-top-color:var(--fallback-er,oklch(var(--er)/1))}.border-t-error\/20{border-top-color:var(--fallback-er,oklch(var(--er)/.2))}.border-t-error\/25{border-top-color:var(--fallback-er,oklch(var(--er)/.25))}.border-t-error\/30{border-top-color:var(--fallback-er,oklch(var(--er)/.3))}.border-t-error\/40{border-top-color:var(--fallback-er,oklch(var(--er)/.4))}.border-t-error\/5{border-top-color:var(--fallback-er,oklch(var(--er)/.05))}.border-t-error\/50{border-top-color:var(--fallback-er,oklch(var(--er)/.5))}.border-t-error\/60{border-top-color:var(--fallback-er,oklch(var(--er)/.6))}.border-t-error\/70{border-top-color:var(--fallback-er,oklch(var(--er)/.7))}.border-t-error\/75{border-top-color:var(--fallback-er,oklch(var(--er)/.75))}.border-t-error\/80{border-top-color:var(--fallback-er,oklch(var(--er)/.8))}.border-t-error\/90{border-top-color:var(--fallback-er,oklch(var(--er)/.9))}.border-t-error\/95{border-top-color:var(--fallback-er,oklch(var(--er)/.95))}.border-t-info{border-top-color:var(--fallback-in,oklch(var(--in)/1))}.border-t-info-content{border-top-color:var(--fallback-inc,oklch(var(--inc)/1))}.border-t-info-content\/0{border-top-color:var(--fallback-inc,oklch(var(--inc)/0))}.border-t-info-content\/10{border-top-color:var(--fallback-inc,oklch(var(--inc)/.1))}.border-t-info-content\/100{border-top-color:var(--fallback-inc,oklch(var(--inc)/1))}.border-t-info-content\/20{border-top-color:var(--fallback-inc,oklch(var(--inc)/.2))}.border-t-info-content\/25{border-top-color:var(--fallback-inc,oklch(var(--inc)/.25))}.border-t-info-content\/30{border-top-color:var(--fallback-inc,oklch(var(--inc)/.3))}.border-t-info-content\/40{border-top-color:var(--fallback-inc,oklch(var(--inc)/.4))}.border-t-info-content\/5{border-top-color:var(--fallback-inc,oklch(var(--inc)/.05))}.border-t-info-content\/50{border-top-color:var(--fallback-inc,oklch(var(--inc)/.5))}.border-t-info-content\/60{border-top-color:var(--fallback-inc,oklch(var(--inc)/.6))}.border-t-info-content\/70{border-top-color:var(--fallback-inc,oklch(var(--inc)/.7))}.border-t-info-content\/75{border-top-color:var(--fallback-inc,oklch(var(--inc)/.75))}.border-t-info-content\/80{border-top-color:var(--fallback-inc,oklch(var(--inc)/.8))}.border-t-info-content\/90{border-top-color:var(--fallback-inc,oklch(var(--inc)/.9))}.border-t-info-content\/95{border-top-color:var(--fallback-inc,oklch(var(--inc)/.95))}.border-t-info\/0{border-top-color:var(--fallback-in,oklch(var(--in)/0))}.border-t-info\/10{border-top-color:var(--fallback-in,oklch(var(--in)/.1))}.border-t-info\/100{border-top-color:var(--fallback-in,oklch(var(--in)/1))}.border-t-info\/20{border-top-color:var(--fallback-in,oklch(var(--in)/.2))}.border-t-info\/25{border-top-color:var(--fallback-in,oklch(var(--in)/.25))}.border-t-info\/30{border-top-color:var(--fallback-in,oklch(var(--in)/.3))}.border-t-info\/40{border-top-color:var(--fallback-in,oklch(var(--in)/.4))}.border-t-info\/5{border-top-color:var(--fallback-in,oklch(var(--in)/.05))}.border-t-info\/50{border-top-color:var(--fallback-in,oklch(var(--in)/.5))}.border-t-info\/60{border-top-color:var(--fallback-in,oklch(var(--in)/.6))}.border-t-info\/70{border-top-color:var(--fallback-in,oklch(var(--in)/.7))}.border-t-info\/75{border-top-color:var(--fallback-in,oklch(var(--in)/.75))}.border-t-info\/80{border-top-color:var(--fallback-in,oklch(var(--in)/.8))}.border-t-info\/90{border-top-color:var(--fallback-in,oklch(var(--in)/.9))}.border-t-info\/95{border-top-color:var(--fallback-in,oklch(var(--in)/.95))}.border-t-neutral{border-top-color:var(--fallback-n,oklch(var(--n)/1))}.border-t-neutral-content{border-top-color:var(--fallback-nc,oklch(var(--nc)/1))}.border-t-neutral-content\/0{border-top-color:var(--fallback-nc,oklch(var(--nc)/0))}.border-t-neutral-content\/10{border-top-color:var(--fallback-nc,oklch(var(--nc)/.1))}.border-t-neutral-content\/100{border-top-color:var(--fallback-nc,oklch(var(--nc)/1))}.border-t-neutral-content\/20{border-top-color:var(--fallback-nc,oklch(var(--nc)/.2))}.border-t-neutral-content\/25{border-top-color:var(--fallback-nc,oklch(var(--nc)/.25))}.border-t-neutral-content\/30{border-top-color:var(--fallback-nc,oklch(var(--nc)/.3))}.border-t-neutral-content\/40{border-top-color:var(--fallback-nc,oklch(var(--nc)/.4))}.border-t-neutral-content\/5{border-top-color:var(--fallback-nc,oklch(var(--nc)/.05))}.border-t-neutral-content\/50{border-top-color:var(--fallback-nc,oklch(var(--nc)/.5))}.border-t-neutral-content\/60{border-top-color:var(--fallback-nc,oklch(var(--nc)/.6))}.border-t-neutral-content\/70{border-top-color:var(--fallback-nc,oklch(var(--nc)/.7))}.border-t-neutral-content\/75{border-top-color:var(--fallback-nc,oklch(var(--nc)/.75))}.border-t-neutral-content\/80{border-top-color:var(--fallback-nc,oklch(var(--nc)/.8))}.border-t-neutral-content\/90{border-top-color:var(--fallback-nc,oklch(var(--nc)/.9))}.border-t-neutral-content\/95{border-top-color:var(--fallback-nc,oklch(var(--nc)/.95))}.border-t-neutral\/0{border-top-color:var(--fallback-n,oklch(var(--n)/0))}.border-t-neutral\/10{border-top-color:var(--fallback-n,oklch(var(--n)/.1))}.border-t-neutral\/100{border-top-color:var(--fallback-n,oklch(var(--n)/1))}.border-t-neutral\/20{border-top-color:var(--fallback-n,oklch(var(--n)/.2))}.border-t-neutral\/25{border-top-color:var(--fallback-n,oklch(var(--n)/.25))}.border-t-neutral\/30{border-top-color:var(--fallback-n,oklch(var(--n)/.3))}.border-t-neutral\/40{border-top-color:var(--fallback-n,oklch(var(--n)/.4))}.border-t-neutral\/5{border-top-color:var(--fallback-n,oklch(var(--n)/.05))}.border-t-neutral\/50{border-top-color:var(--fallback-n,oklch(var(--n)/.5))}.border-t-neutral\/60{border-top-color:var(--fallback-n,oklch(var(--n)/.6))}.border-t-neutral\/70{border-top-color:var(--fallback-n,oklch(var(--n)/.7))}.border-t-neutral\/75{border-top-color:var(--fallback-n,oklch(var(--n)/.75))}.border-t-neutral\/80{border-top-color:var(--fallback-n,oklch(var(--n)/.8))}.border-t-neutral\/90{border-top-color:var(--fallback-n,oklch(var(--n)/.9))}.border-t-neutral\/95{border-top-color:var(--fallback-n,oklch(var(--n)/.95))}.border-t-primary{border-top-color:var(--fallback-p,oklch(var(--p)/1))}.border-t-primary-content{border-top-color:var(--fallback-pc,oklch(var(--pc)/1))}.border-t-primary-content\/0{border-top-color:var(--fallback-pc,oklch(var(--pc)/0))}.border-t-primary-content\/10{border-top-color:var(--fallback-pc,oklch(var(--pc)/.1))}.border-t-primary-content\/100{border-top-color:var(--fallback-pc,oklch(var(--pc)/1))}.border-t-primary-content\/20{border-top-color:var(--fallback-pc,oklch(var(--pc)/.2))}.border-t-primary-content\/25{border-top-color:var(--fallback-pc,oklch(var(--pc)/.25))}.border-t-primary-content\/30{border-top-color:var(--fallback-pc,oklch(var(--pc)/.3))}.border-t-primary-content\/40{border-top-color:var(--fallback-pc,oklch(var(--pc)/.4))}.border-t-primary-content\/5{border-top-color:var(--fallback-pc,oklch(var(--pc)/.05))}.border-t-primary-content\/50{border-top-color:var(--fallback-pc,oklch(var(--pc)/.5))}.border-t-primary-content\/60{border-top-color:var(--fallback-pc,oklch(var(--pc)/.6))}.border-t-primary-content\/70{border-top-color:var(--fallback-pc,oklch(var(--pc)/.7))}.border-t-primary-content\/75{border-top-color:var(--fallback-pc,oklch(var(--pc)/.75))}.border-t-primary-content\/80{border-top-color:var(--fallback-pc,oklch(var(--pc)/.8))}.border-t-primary-content\/90{border-top-color:var(--fallback-pc,oklch(var(--pc)/.9))}.border-t-primary-content\/95{border-top-color:var(--fallback-pc,oklch(var(--pc)/.95))}.border-t-primary\/0{border-top-color:var(--fallback-p,oklch(var(--p)/0))}.border-t-primary\/10{border-top-color:var(--fallback-p,oklch(var(--p)/.1))}.border-t-primary\/100{border-top-color:var(--fallback-p,oklch(var(--p)/1))}.border-t-primary\/20{border-top-color:var(--fallback-p,oklch(var(--p)/.2))}.border-t-primary\/25{border-top-color:var(--fallback-p,oklch(var(--p)/.25))}.border-t-primary\/30{border-top-color:var(--fallback-p,oklch(var(--p)/.3))}.border-t-primary\/40{border-top-color:var(--fallback-p,oklch(var(--p)/.4))}.border-t-primary\/5{border-top-color:var(--fallback-p,oklch(var(--p)/.05))}.border-t-primary\/50{border-top-color:var(--fallback-p,oklch(var(--p)/.5))}.border-t-primary\/60{border-top-color:var(--fallback-p,oklch(var(--p)/.6))}.border-t-primary\/70{border-top-color:var(--fallback-p,oklch(var(--p)/.7))}.border-t-primary\/75{border-top-color:var(--fallback-p,oklch(var(--p)/.75))}.border-t-primary\/80{border-top-color:var(--fallback-p,oklch(var(--p)/.8))}.border-t-primary\/90{border-top-color:var(--fallback-p,oklch(var(--p)/.9))}.border-t-primary\/95{border-top-color:var(--fallback-p,oklch(var(--p)/.95))}.border-t-secondary{border-top-color:var(--fallback-s,oklch(var(--s)/1))}.border-t-secondary-content{border-top-color:var(--fallback-sc,oklch(var(--sc)/1))}.border-t-secondary-content\/0{border-top-color:var(--fallback-sc,oklch(var(--sc)/0))}.border-t-secondary-content\/10{border-top-color:var(--fallback-sc,oklch(var(--sc)/.1))}.border-t-secondary-content\/100{border-top-color:var(--fallback-sc,oklch(var(--sc)/1))}.border-t-secondary-content\/20{border-top-color:var(--fallback-sc,oklch(var(--sc)/.2))}.border-t-secondary-content\/25{border-top-color:var(--fallback-sc,oklch(var(--sc)/.25))}.border-t-secondary-content\/30{border-top-color:var(--fallback-sc,oklch(var(--sc)/.3))}.border-t-secondary-content\/40{border-top-color:var(--fallback-sc,oklch(var(--sc)/.4))}.border-t-secondary-content\/5{border-top-color:var(--fallback-sc,oklch(var(--sc)/.05))}.border-t-secondary-content\/50{border-top-color:var(--fallback-sc,oklch(var(--sc)/.5))}.border-t-secondary-content\/60{border-top-color:var(--fallback-sc,oklch(var(--sc)/.6))}.border-t-secondary-content\/70{border-top-color:var(--fallback-sc,oklch(var(--sc)/.7))}.border-t-secondary-content\/75{border-top-color:var(--fallback-sc,oklch(var(--sc)/.75))}.border-t-secondary-content\/80{border-top-color:var(--fallback-sc,oklch(var(--sc)/.8))}.border-t-secondary-content\/90{border-top-color:var(--fallback-sc,oklch(var(--sc)/.9))}.border-t-secondary-content\/95{border-top-color:var(--fallback-sc,oklch(var(--sc)/.95))}.border-t-secondary\/0{border-top-color:var(--fallback-s,oklch(var(--s)/0))}.border-t-secondary\/10{border-top-color:var(--fallback-s,oklch(var(--s)/.1))}.border-t-secondary\/100{border-top-color:var(--fallback-s,oklch(var(--s)/1))}.border-t-secondary\/20{border-top-color:var(--fallback-s,oklch(var(--s)/.2))}.border-t-secondary\/25{border-top-color:var(--fallback-s,oklch(var(--s)/.25))}.border-t-secondary\/30{border-top-color:var(--fallback-s,oklch(var(--s)/.3))}.border-t-secondary\/40{border-top-color:var(--fallback-s,oklch(var(--s)/.4))}.border-t-secondary\/5{border-top-color:var(--fallback-s,oklch(var(--s)/.05))}.border-t-secondary\/50{border-top-color:var(--fallback-s,oklch(var(--s)/.5))}.border-t-secondary\/60{border-top-color:var(--fallback-s,oklch(var(--s)/.6))}.border-t-secondary\/70{border-top-color:var(--fallback-s,oklch(var(--s)/.7))}.border-t-secondary\/75{border-top-color:var(--fallback-s,oklch(var(--s)/.75))}.border-t-secondary\/80{border-top-color:var(--fallback-s,oklch(var(--s)/.8))}.border-t-secondary\/90{border-top-color:var(--fallback-s,oklch(var(--s)/.9))}.border-t-secondary\/95{border-top-color:var(--fallback-s,oklch(var(--s)/.95))}.border-t-success{border-top-color:var(--fallback-su,oklch(var(--su)/1))}.border-t-success-content{border-top-color:var(--fallback-suc,oklch(var(--suc)/1))}.border-t-success-content\/0{border-top-color:var(--fallback-suc,oklch(var(--suc)/0))}.border-t-success-content\/10{border-top-color:var(--fallback-suc,oklch(var(--suc)/.1))}.border-t-success-content\/100{border-top-color:var(--fallback-suc,oklch(var(--suc)/1))}.border-t-success-content\/20{border-top-color:var(--fallback-suc,oklch(var(--suc)/.2))}.border-t-success-content\/25{border-top-color:var(--fallback-suc,oklch(var(--suc)/.25))}.border-t-success-content\/30{border-top-color:var(--fallback-suc,oklch(var(--suc)/.3))}.border-t-success-content\/40{border-top-color:var(--fallback-suc,oklch(var(--suc)/.4))}.border-t-success-content\/5{border-top-color:var(--fallback-suc,oklch(var(--suc)/.05))}.border-t-success-content\/50{border-top-color:var(--fallback-suc,oklch(var(--suc)/.5))}.border-t-success-content\/60{border-top-color:var(--fallback-suc,oklch(var(--suc)/.6))}.border-t-success-content\/70{border-top-color:var(--fallback-suc,oklch(var(--suc)/.7))}.border-t-success-content\/75{border-top-color:var(--fallback-suc,oklch(var(--suc)/.75))}.border-t-success-content\/80{border-top-color:var(--fallback-suc,oklch(var(--suc)/.8))}.border-t-success-content\/90{border-top-color:var(--fallback-suc,oklch(var(--suc)/.9))}.border-t-success-content\/95{border-top-color:var(--fallback-suc,oklch(var(--suc)/.95))}.border-t-success\/0{border-top-color:var(--fallback-su,oklch(var(--su)/0))}.border-t-success\/10{border-top-color:var(--fallback-su,oklch(var(--su)/.1))}.border-t-success\/100{border-top-color:var(--fallback-su,oklch(var(--su)/1))}.border-t-success\/20{border-top-color:var(--fallback-su,oklch(var(--su)/.2))}.border-t-success\/25{border-top-color:var(--fallback-su,oklch(var(--su)/.25))}.border-t-success\/30{border-top-color:var(--fallback-su,oklch(var(--su)/.3))}.border-t-success\/40{border-top-color:var(--fallback-su,oklch(var(--su)/.4))}.border-t-success\/5{border-top-color:var(--fallback-su,oklch(var(--su)/.05))}.border-t-success\/50{border-top-color:var(--fallback-su,oklch(var(--su)/.5))}.border-t-success\/60{border-top-color:var(--fallback-su,oklch(var(--su)/.6))}.border-t-success\/70{border-top-color:var(--fallback-su,oklch(var(--su)/.7))}.border-t-success\/75{border-top-color:var(--fallback-su,oklch(var(--su)/.75))}.border-t-success\/80{border-top-color:var(--fallback-su,oklch(var(--su)/.8))}.border-t-success\/90{border-top-color:var(--fallback-su,oklch(var(--su)/.9))}.border-t-success\/95{border-top-color:var(--fallback-su,oklch(var(--su)/.95))}.border-t-transparent{border-top-color:transparent}.border-t-transparent\/0{border-top-color:rgb(0 0 0 / 0)}.border-t-transparent\/10{border-top-color:rgb(0 0 0 / .1)}.border-t-transparent\/100{border-top-color:rgb(0 0 0 / 1)}.border-t-transparent\/20{border-top-color:rgb(0 0 0 / .2)}.border-t-transparent\/25{border-top-color:rgb(0 0 0 / .25)}.border-t-transparent\/30{border-top-color:rgb(0 0 0 / .3)}.border-t-transparent\/40{border-top-color:rgb(0 0 0 / .4)}.border-t-transparent\/5{border-top-color:rgb(0 0 0 / .05)}.border-t-transparent\/50{border-top-color:rgb(0 0 0 / .5)}.border-t-transparent\/60{border-top-color:rgb(0 0 0 / .6)}.border-t-transparent\/70{border-top-color:rgb(0 0 0 / .7)}.border-t-transparent\/75{border-top-color:rgb(0 0 0 / .75)}.border-t-transparent\/80{border-top-color:rgb(0 0 0 / .8)}.border-t-transparent\/90{border-top-color:rgb(0 0 0 / .9)}.border-t-transparent\/95{border-top-color:rgb(0 0 0 / .95)}.border-t-warning{border-top-color:var(--fallback-wa,oklch(var(--wa)/1))}.border-t-warning-content{border-top-color:var(--fallback-wac,oklch(var(--wac)/1))}.border-t-warning-content\/0{border-top-color:var(--fallback-wac,oklch(var(--wac)/0))}.border-t-warning-content\/10{border-top-color:var(--fallback-wac,oklch(var(--wac)/.1))}.border-t-warning-content\/100{border-top-color:var(--fallback-wac,oklch(var(--wac)/1))}.border-t-warning-content\/20{border-top-color:var(--fallback-wac,oklch(var(--wac)/.2))}.border-t-warning-content\/25{border-top-color:var(--fallback-wac,oklch(var(--wac)/.25))}.border-t-warning-content\/30{border-top-color:var(--fallback-wac,oklch(var(--wac)/.3))}.border-t-warning-content\/40{border-top-color:var(--fallback-wac,oklch(var(--wac)/.4))}.border-t-warning-content\/5{border-top-color:var(--fallback-wac,oklch(var(--wac)/.05))}.border-t-warning-content\/50{border-top-color:var(--fallback-wac,oklch(var(--wac)/.5))}.border-t-warning-content\/60{border-top-color:var(--fallback-wac,oklch(var(--wac)/.6))}.border-t-warning-content\/70{border-top-color:var(--fallback-wac,oklch(var(--wac)/.7))}.border-t-warning-content\/75{border-top-color:var(--fallback-wac,oklch(var(--wac)/.75))}.border-t-warning-content\/80{border-top-color:var(--fallback-wac,oklch(var(--wac)/.8))}.border-t-warning-content\/90{border-top-color:var(--fallback-wac,oklch(var(--wac)/.9))}.border-t-warning-content\/95{border-top-color:var(--fallback-wac,oklch(var(--wac)/.95))}.border-t-warning\/0{border-top-color:var(--fallback-wa,oklch(var(--wa)/0))}.border-t-warning\/10{border-top-color:var(--fallback-wa,oklch(var(--wa)/.1))}.border-t-warning\/100{border-top-color:var(--fallback-wa,oklch(var(--wa)/1))}.border-t-warning\/20{border-top-color:var(--fallback-wa,oklch(var(--wa)/.2))}.border-t-warning\/25{border-top-color:var(--fallback-wa,oklch(var(--wa)/.25))}.border-t-warning\/30{border-top-color:var(--fallback-wa,oklch(var(--wa)/.3))}.border-t-warning\/40{border-top-color:var(--fallback-wa,oklch(var(--wa)/.4))}.border-t-warning\/5{border-top-color:var(--fallback-wa,oklch(var(--wa)/.05))}.border-t-warning\/50{border-top-color:var(--fallback-wa,oklch(var(--wa)/.5))}.border-t-warning\/60{border-top-color:var(--fallback-wa,oklch(var(--wa)/.6))}.border-t-warning\/70{border-top-color:var(--fallback-wa,oklch(var(--wa)/.7))}.border-t-warning\/75{border-top-color:var(--fallback-wa,oklch(var(--wa)/.75))}.border-t-warning\/80{border-top-color:var(--fallback-wa,oklch(var(--wa)/.8))}.border-t-warning\/90{border-top-color:var(--fallback-wa,oklch(var(--wa)/.9))}.border-t-warning\/95{border-top-color:var(--fallback-wa,oklch(var(--wa)/.95))}.bg-accent{background-color:var(--fallback-a,oklch(var(--a)/1))}.bg-accent-content{background-color:var(--fallback-ac,oklch(var(--ac)/1))}.bg-accent-content\/0{background-color:var(--fallback-ac,oklch(var(--ac)/0))}.bg-accent-content\/10{background-color:var(--fallback-ac,oklch(var(--ac)/.1))}.bg-accent-content\/100{background-color:var(--fallback-ac,oklch(var(--ac)/1))}.bg-accent-content\/20{background-color:var(--fallback-ac,oklch(var(--ac)/.2))}.bg-accent-content\/25{background-color:var(--fallback-ac,oklch(var(--ac)/.25))}.bg-accent-content\/30{background-color:var(--fallback-ac,oklch(var(--ac)/.3))}.bg-accent-content\/40{background-color:var(--fallback-ac,oklch(var(--ac)/.4))}.bg-accent-content\/5{background-color:var(--fallback-ac,oklch(var(--ac)/.05))}.bg-accent-content\/50{background-color:var(--fallback-ac,oklch(var(--ac)/.5))}.bg-accent-content\/60{background-color:var(--fallback-ac,oklch(var(--ac)/.6))}.bg-accent-content\/70{background-color:var(--fallback-ac,oklch(var(--ac)/.7))}.bg-accent-content\/75{background-color:var(--fallback-ac,oklch(var(--ac)/.75))}.bg-accent-content\/80{background-color:var(--fallback-ac,oklch(var(--ac)/.8))}.bg-accent-content\/90{background-color:var(--fallback-ac,oklch(var(--ac)/.9))}.bg-accent-content\/95{background-color:var(--fallback-ac,oklch(var(--ac)/.95))}.bg-accent\/0{background-color:var(--fallback-a,oklch(var(--a)/0))}.bg-accent\/10{background-color:var(--fallback-a,oklch(var(--a)/.1))}.bg-accent\/100{background-color:var(--fallback-a,oklch(var(--a)/1))}.bg-accent\/20{background-color:var(--fallback-a,oklch(var(--a)/.2))}.bg-accent\/25{background-color:var(--fallback-a,oklch(var(--a)/.25))}.bg-accent\/30{background-color:var(--fallback-a,oklch(var(--a)/.3))}.bg-accent\/40{background-color:var(--fallback-a,oklch(var(--a)/.4))}.bg-accent\/5{background-color:var(--fallback-a,oklch(var(--a)/.05))}.bg-accent\/50{background-color:var(--fallback-a,oklch(var(--a)/.5))}.bg-accent\/60{background-color:var(--fallback-a,oklch(var(--a)/.6))}.bg-accent\/70{background-color:var(--fallback-a,oklch(var(--a)/.7))}.bg-accent\/75{background-color:var(--fallback-a,oklch(var(--a)/.75))}.bg-accent\/80{background-color:var(--fallback-a,oklch(var(--a)/.8))}.bg-accent\/90{background-color:var(--fallback-a,oklch(var(--a)/.9))}.bg-accent\/95{background-color:var(--fallback-a,oklch(var(--a)/.95))}.bg-base-100{background-color:var(--fallback-b1,oklch(var(--b1)/1))}.bg-base-100\/0{background-color:var(--fallback-b1,oklch(var(--b1)/0))}.bg-base-100\/10{background-color:var(--fallback-b1,oklch(var(--b1)/.1))}.bg-base-100\/100{background-color:var(--fallback-b1,oklch(var(--b1)/1))}.bg-base-100\/20{background-color:var(--fallback-b1,oklch(var(--b1)/.2))}.bg-base-100\/25{background-color:var(--fallback-b1,oklch(var(--b1)/.25))}.bg-base-100\/30{background-color:var(--fallback-b1,oklch(var(--b1)/.3))}.bg-base-100\/40{background-color:var(--fallback-b1,oklch(var(--b1)/.4))}.bg-base-100\/5{background-color:var(--fallback-b1,oklch(var(--b1)/.05))}.bg-base-100\/50{background-color:var(--fallback-b1,oklch(var(--b1)/.5))}.bg-base-100\/60{background-color:var(--fallback-b1,oklch(var(--b1)/.6))}.bg-base-100\/70{background-color:var(--fallback-b1,oklch(var(--b1)/.7))}.bg-base-100\/75{background-color:var(--fallback-b1,oklch(var(--b1)/.75))}.bg-base-100\/80{background-color:var(--fallback-b1,oklch(var(--b1)/.8))}.bg-base-100\/90{background-color:var(--fallback-b1,oklch(var(--b1)/.9))}.bg-base-100\/95{background-color:var(--fallback-b1,oklch(var(--b1)/.95))}.bg-base-200{background-color:var(--fallback-b2,oklch(var(--b2)/1))}.bg-base-200\/0{background-color:var(--fallback-b2,oklch(var(--b2)/0))}.bg-base-200\/10{background-color:var(--fallback-b2,oklch(var(--b2)/.1))}.bg-base-200\/100{background-color:var(--fallback-b2,oklch(var(--b2)/1))}.bg-base-200\/20{background-color:var(--fallback-b2,oklch(var(--b2)/.2))}.bg-base-200\/25{background-color:var(--fallback-b2,oklch(var(--b2)/.25))}.bg-base-200\/30{background-color:var(--fallback-b2,oklch(var(--b2)/.3))}.bg-base-200\/40{background-color:var(--fallback-b2,oklch(var(--b2)/.4))}.bg-base-200\/5{background-color:var(--fallback-b2,oklch(var(--b2)/.05))}.bg-base-200\/50{background-color:var(--fallback-b2,oklch(var(--b2)/.5))}.bg-base-200\/60{background-color:var(--fallback-b2,oklch(var(--b2)/.6))}.bg-base-200\/70{background-color:var(--fallback-b2,oklch(var(--b2)/.7))}.bg-base-200\/75{background-color:var(--fallback-b2,oklch(var(--b2)/.75))}.bg-base-200\/80{background-color:var(--fallback-b2,oklch(var(--b2)/.8))}.bg-base-200\/90{background-color:var(--fallback-b2,oklch(var(--b2)/.9))}.bg-base-200\/95{background-color:var(--fallback-b2,oklch(var(--b2)/.95))}.bg-base-300{background-color:var(--fallback-b3,oklch(var(--b3)/1))}.bg-base-300\/0{background-color:var(--fallback-b3,oklch(var(--b3)/0))}.bg-base-300\/10{background-color:var(--fallback-b3,oklch(var(--b3)/.1))}.bg-base-300\/100{background-color:var(--fallback-b3,oklch(var(--b3)/1))}.bg-base-300\/20{background-color:var(--fallback-b3,oklch(var(--b3)/.2))}.bg-base-300\/25{background-color:var(--fallback-b3,oklch(var(--b3)/.25))}.bg-base-300\/30{background-color:var(--fallback-b3,oklch(var(--b3)/.3))}.bg-base-300\/40{background-color:var(--fallback-b3,oklch(var(--b3)/.4))}.bg-base-300\/5{background-color:var(--fallback-b3,oklch(var(--b3)/.05))}.bg-base-300\/50{background-color:var(--fallback-b3,oklch(var(--b3)/.5))}.bg-base-300\/60{background-color:var(--fallback-b3,oklch(var(--b3)/.6))}.bg-base-300\/70{background-color:var(--fallback-b3,oklch(var(--b3)/.7))}.bg-base-300\/75{background-color:var(--fallback-b3,oklch(var(--b3)/.75))}.bg-base-300\/80{background-color:var(--fallback-b3,oklch(var(--b3)/.8))}.bg-base-300\/90{background-color:var(--fallback-b3,oklch(var(--b3)/.9))}.bg-base-300\/95{background-color:var(--fallback-b3,oklch(var(--b3)/.95))}.bg-base-content{background-color:var(--fallback-bc,oklch(var(--bc)/1))}.bg-base-content\/0{background-color:var(--fallback-bc,oklch(var(--bc)/0))}.bg-base-content\/10{background-color:var(--fallback-bc,oklch(var(--bc)/.1))}.bg-base-content\/100{background-color:var(--fallback-bc,oklch(var(--bc)/1))}.bg-base-content\/20{background-color:var(--fallback-bc,oklch(var(--bc)/.2))}.bg-base-content\/25{background-color:var(--fallback-bc,oklch(var(--bc)/.25))}.bg-base-content\/30{background-color:var(--fallback-bc,oklch(var(--bc)/.3))}.bg-base-content\/40{background-color:var(--fallback-bc,oklch(var(--bc)/.4))}.bg-base-content\/5{background-color:var(--fallback-bc,oklch(var(--bc)/.05))}.bg-base-content\/50{background-color:var(--fallback-bc,oklch(var(--bc)/.5))}.bg-base-content\/60{background-color:var(--fallback-bc,oklch(var(--bc)/.6))}.bg-base-content\/70{background-color:var(--fallback-bc,oklch(var(--bc)/.7))}.bg-base-content\/75{background-color:var(--fallback-bc,oklch(var(--bc)/.75))}.bg-base-content\/80{background-color:var(--fallback-bc,oklch(var(--bc)/.8))}.bg-base-content\/90{background-color:var(--fallback-bc,oklch(var(--bc)/.9))}.bg-base-content\/95{background-color:var(--fallback-bc,oklch(var(--bc)/.95))}.bg-current{background-color:currentColor}.bg-error{background-color:var(--fallback-er,oklch(var(--er)/1))}.bg-error-content{background-color:var(--fallback-erc,oklch(var(--erc)/1))}.bg-error-content\/0{background-color:var(--fallback-erc,oklch(var(--erc)/0))}.bg-error-content\/10{background-color:var(--fallback-erc,oklch(var(--erc)/.1))}.bg-error-content\/100{background-color:var(--fallback-erc,oklch(var(--erc)/1))}.bg-error-content\/20{background-color:var(--fallback-erc,oklch(var(--erc)/.2))}.bg-error-content\/25{background-color:var(--fallback-erc,oklch(var(--erc)/.25))}.bg-error-content\/30{background-color:var(--fallback-erc,oklch(var(--erc)/.3))}.bg-error-content\/40{background-color:var(--fallback-erc,oklch(var(--erc)/.4))}.bg-error-content\/5{background-color:var(--fallback-erc,oklch(var(--erc)/.05))}.bg-error-content\/50{background-color:var(--fallback-erc,oklch(var(--erc)/.5))}.bg-error-content\/60{background-color:var(--fallback-erc,oklch(var(--erc)/.6))}.bg-error-content\/70{background-color:var(--fallback-erc,oklch(var(--erc)/.7))}.bg-error-content\/75{background-color:var(--fallback-erc,oklch(var(--erc)/.75))}.bg-error-content\/80{background-color:var(--fallback-erc,oklch(var(--erc)/.8))}.bg-error-content\/90{background-color:var(--fallback-erc,oklch(var(--erc)/.9))}.bg-error-content\/95{background-color:var(--fallback-erc,oklch(var(--erc)/.95))}.bg-error\/0{background-color:var(--fallback-er,oklch(var(--er)/0))}.bg-error\/10{background-color:var(--fallback-er,oklch(var(--er)/.1))}.bg-error\/100{background-color:var(--fallback-er,oklch(var(--er)/1))}.bg-error\/20{background-color:var(--fallback-er,oklch(var(--er)/.2))}.bg-error\/25{background-color:var(--fallback-er,oklch(var(--er)/.25))}.bg-error\/30{background-color:var(--fallback-er,oklch(var(--er)/.3))}.bg-error\/40{background-color:var(--fallback-er,oklch(var(--er)/.4))}.bg-error\/5{background-color:var(--fallback-er,oklch(var(--er)/.05))}.bg-error\/50{background-color:var(--fallback-er,oklch(var(--er)/.5))}.bg-error\/60{background-color:var(--fallback-er,oklch(var(--er)/.6))}.bg-error\/70{background-color:var(--fallback-er,oklch(var(--er)/.7))}.bg-error\/75{background-color:var(--fallback-er,oklch(var(--er)/.75))}.bg-error\/80{background-color:var(--fallback-er,oklch(var(--er)/.8))}.bg-error\/90{background-color:var(--fallback-er,oklch(var(--er)/.9))}.bg-error\/95{background-color:var(--fallback-er,oklch(var(--er)/.95))}.bg-info{background-color:var(--fallback-in,oklch(var(--in)/1))}.bg-info-content{background-color:var(--fallback-inc,oklch(var(--inc)/1))}.bg-info-content\/0{background-color:var(--fallback-inc,oklch(var(--inc)/0))}.bg-info-content\/10{background-color:var(--fallback-inc,oklch(var(--inc)/.1))}.bg-info-content\/100{background-color:var(--fallback-inc,oklch(var(--inc)/1))}.bg-info-content\/20{background-color:var(--fallback-inc,oklch(var(--inc)/.2))}.bg-info-content\/25{background-color:var(--fallback-inc,oklch(var(--inc)/.25))}.bg-info-content\/30{background-color:var(--fallback-inc,oklch(var(--inc)/.3))}.bg-info-content\/40{background-color:var(--fallback-inc,oklch(var(--inc)/.4))}.bg-info-content\/5{background-color:var(--fallback-inc,oklch(var(--inc)/.05))}.bg-info-content\/50{background-color:var(--fallback-inc,oklch(var(--inc)/.5))}.bg-info-content\/60{background-color:var(--fallback-inc,oklch(var(--inc)/.6))}.bg-info-content\/70{background-color:var(--fallback-inc,oklch(var(--inc)/.7))}.bg-info-content\/75{background-color:var(--fallback-inc,oklch(var(--inc)/.75))}.bg-info-content\/80{background-color:var(--fallback-inc,oklch(var(--inc)/.8))}.bg-info-content\/90{background-color:var(--fallback-inc,oklch(var(--inc)/.9))}.bg-info-content\/95{background-color:var(--fallback-inc,oklch(var(--inc)/.95))}.bg-info\/0{background-color:var(--fallback-in,oklch(var(--in)/0))}.bg-info\/10{background-color:var(--fallback-in,oklch(var(--in)/.1))}.bg-info\/100{background-color:var(--fallback-in,oklch(var(--in)/1))}.bg-info\/20{background-color:var(--fallback-in,oklch(var(--in)/.2))}.bg-info\/25{background-color:var(--fallback-in,oklch(var(--in)/.25))}.bg-info\/30{background-color:var(--fallback-in,oklch(var(--in)/.3))}.bg-info\/40{background-color:var(--fallback-in,oklch(var(--in)/.4))}.bg-info\/5{background-color:var(--fallback-in,oklch(var(--in)/.05))}.bg-info\/50{background-color:var(--fallback-in,oklch(var(--in)/.5))}.bg-info\/60{background-color:var(--fallback-in,oklch(var(--in)/.6))}.bg-info\/70{background-color:var(--fallback-in,oklch(var(--in)/.7))}.bg-info\/75{background-color:var(--fallback-in,oklch(var(--in)/.75))}.bg-info\/80{background-color:var(--fallback-in,oklch(var(--in)/.8))}.bg-info\/90{background-color:var(--fallback-in,oklch(var(--in)/.9))}.bg-info\/95{background-color:var(--fallback-in,oklch(var(--in)/.95))}.bg-neutral{background-color:var(--fallback-n,oklch(var(--n)/1))}.bg-neutral-content{background-color:var(--fallback-nc,oklch(var(--nc)/1))}.bg-neutral-content\/0{background-color:var(--fallback-nc,oklch(var(--nc)/0))}.bg-neutral-content\/10{background-color:var(--fallback-nc,oklch(var(--nc)/.1))}.bg-neutral-content\/100{background-color:var(--fallback-nc,oklch(var(--nc)/1))}.bg-neutral-content\/20{background-color:var(--fallback-nc,oklch(var(--nc)/.2))}.bg-neutral-content\/25{background-color:var(--fallback-nc,oklch(var(--nc)/.25))}.bg-neutral-content\/30{background-color:var(--fallback-nc,oklch(var(--nc)/.3))}.bg-neutral-content\/40{background-color:var(--fallback-nc,oklch(var(--nc)/.4))}.bg-neutral-content\/5{background-color:var(--fallback-nc,oklch(var(--nc)/.05))}.bg-neutral-content\/50{background-color:var(--fallback-nc,oklch(var(--nc)/.5))}.bg-neutral-content\/60{background-color:var(--fallback-nc,oklch(var(--nc)/.6))}.bg-neutral-content\/70{background-color:var(--fallback-nc,oklch(var(--nc)/.7))}.bg-neutral-content\/75{background-color:var(--fallback-nc,oklch(var(--nc)/.75))}.bg-neutral-content\/80{background-color:var(--fallback-nc,oklch(var(--nc)/.8))}.bg-neutral-content\/90{background-color:var(--fallback-nc,oklch(var(--nc)/.9))}.bg-neutral-content\/95{background-color:var(--fallback-nc,oklch(var(--nc)/.95))}.bg-neutral\/0{background-color:var(--fallback-n,oklch(var(--n)/0))}.bg-neutral\/10{background-color:var(--fallback-n,oklch(var(--n)/.1))}.bg-neutral\/100{background-color:var(--fallback-n,oklch(var(--n)/1))}.bg-neutral\/20{background-color:var(--fallback-n,oklch(var(--n)/.2))}.bg-neutral\/25{background-color:var(--fallback-n,oklch(var(--n)/.25))}.bg-neutral\/30{background-color:var(--fallback-n,oklch(var(--n)/.3))}.bg-neutral\/40{background-color:var(--fallback-n,oklch(var(--n)/.4))}.bg-neutral\/5{background-color:var(--fallback-n,oklch(var(--n)/.05))}.bg-neutral\/50{background-color:var(--fallback-n,oklch(var(--n)/.5))}.bg-neutral\/60{background-color:var(--fallback-n,oklch(var(--n)/.6))}.bg-neutral\/70{background-color:var(--fallback-n,oklch(var(--n)/.7))}.bg-neutral\/75{background-color:var(--fallback-n,oklch(var(--n)/.75))}.bg-neutral\/80{background-color:var(--fallback-n,oklch(var(--n)/.8))}.bg-neutral\/90{background-color:var(--fallback-n,oklch(var(--n)/.9))}.bg-neutral\/95{background-color:var(--fallback-n,oklch(var(--n)/.95))}.bg-primary{background-color:var(--fallback-p,oklch(var(--p)/1))}.bg-primary-content{background-color:var(--fallback-pc,oklch(var(--pc)/1))}.bg-primary-content\/0{background-color:var(--fallback-pc,oklch(var(--pc)/0))}.bg-primary-content\/10{background-color:var(--fallback-pc,oklch(var(--pc)/.1))}.bg-primary-content\/100{background-color:var(--fallback-pc,oklch(var(--pc)/1))}.bg-primary-content\/20{background-color:var(--fallback-pc,oklch(var(--pc)/.2))}.bg-primary-content\/25{background-color:var(--fallback-pc,oklch(var(--pc)/.25))}.bg-primary-content\/30{background-color:var(--fallback-pc,oklch(var(--pc)/.3))}.bg-primary-content\/40{background-color:var(--fallback-pc,oklch(var(--pc)/.4))}.bg-primary-content\/5{background-color:var(--fallback-pc,oklch(var(--pc)/.05))}.bg-primary-content\/50{background-color:var(--fallback-pc,oklch(var(--pc)/.5))}.bg-primary-content\/60{background-color:var(--fallback-pc,oklch(var(--pc)/.6))}.bg-primary-content\/70{background-color:var(--fallback-pc,oklch(var(--pc)/.7))}.bg-primary-content\/75{background-color:var(--fallback-pc,oklch(var(--pc)/.75))}.bg-primary-content\/80{background-color:var(--fallback-pc,oklch(var(--pc)/.8))}.bg-primary-content\/90{background-color:var(--fallback-pc,oklch(var(--pc)/.9))}.bg-primary-content\/95{background-color:var(--fallback-pc,oklch(var(--pc)/.95))}.bg-primary\/0{background-color:var(--fallback-p,oklch(var(--p)/0))}.bg-primary\/10{background-color:var(--fallback-p,oklch(var(--p)/.1))}.bg-primary\/100{background-color:var(--fallback-p,oklch(var(--p)/1))}.bg-primary\/20{background-color:var(--fallback-p,oklch(var(--p)/.2))}.bg-primary\/25{background-color:var(--fallback-p,oklch(var(--p)/.25))}.bg-primary\/30{background-color:var(--fallback-p,oklch(var(--p)/.3))}.bg-primary\/40{background-color:var(--fallback-p,oklch(var(--p)/.4))}.bg-primary\/5{background-color:var(--fallback-p,oklch(var(--p)/.05))}.bg-primary\/50{background-color:var(--fallback-p,oklch(var(--p)/.5))}.bg-primary\/60{background-color:var(--fallback-p,oklch(var(--p)/.6))}.bg-primary\/70{background-color:var(--fallback-p,oklch(var(--p)/.7))}.bg-primary\/75{background-color:var(--fallback-p,oklch(var(--p)/.75))}.bg-primary\/80{background-color:var(--fallback-p,oklch(var(--p)/.8))}.bg-primary\/90{background-color:var(--fallback-p,oklch(var(--p)/.9))}.bg-primary\/95{background-color:var(--fallback-p,oklch(var(--p)/.95))}.bg-secondary{background-color:var(--fallback-s,oklch(var(--s)/1))}.bg-secondary-content{background-color:var(--fallback-sc,oklch(var(--sc)/1))}.bg-secondary-content\/0{background-color:var(--fallback-sc,oklch(var(--sc)/0))}.bg-secondary-content\/10{background-color:var(--fallback-sc,oklch(var(--sc)/.1))}.bg-secondary-content\/100{background-color:var(--fallback-sc,oklch(var(--sc)/1))}.bg-secondary-content\/20{background-color:var(--fallback-sc,oklch(var(--sc)/.2))}.bg-secondary-content\/25{background-color:var(--fallback-sc,oklch(var(--sc)/.25))}.bg-secondary-content\/30{background-color:var(--fallback-sc,oklch(var(--sc)/.3))}.bg-secondary-content\/40{background-color:var(--fallback-sc,oklch(var(--sc)/.4))}.bg-secondary-content\/5{background-color:var(--fallback-sc,oklch(var(--sc)/.05))}.bg-secondary-content\/50{background-color:var(--fallback-sc,oklch(var(--sc)/.5))}.bg-secondary-content\/60{background-color:var(--fallback-sc,oklch(var(--sc)/.6))}.bg-secondary-content\/70{background-color:var(--fallback-sc,oklch(var(--sc)/.7))}.bg-secondary-content\/75{background-color:var(--fallback-sc,oklch(var(--sc)/.75))}.bg-secondary-content\/80{background-color:var(--fallback-sc,oklch(var(--sc)/.8))}.bg-secondary-content\/90{background-color:var(--fallback-sc,oklch(var(--sc)/.9))}.bg-secondary-content\/95{background-color:var(--fallback-sc,oklch(var(--sc)/.95))}.bg-secondary\/0{background-color:var(--fallback-s,oklch(var(--s)/0))}.bg-secondary\/10{background-color:var(--fallback-s,oklch(var(--s)/.1))}.bg-secondary\/100{background-color:var(--fallback-s,oklch(var(--s)/1))}.bg-secondary\/20{background-color:var(--fallback-s,oklch(var(--s)/.2))}.bg-secondary\/25{background-color:var(--fallback-s,oklch(var(--s)/.25))}.bg-secondary\/30{background-color:var(--fallback-s,oklch(var(--s)/.3))}.bg-secondary\/40{background-color:var(--fallback-s,oklch(var(--s)/.4))}.bg-secondary\/5{background-color:var(--fallback-s,oklch(var(--s)/.05))}.bg-secondary\/50{background-color:var(--fallback-s,oklch(var(--s)/.5))}.bg-secondary\/60{background-color:var(--fallback-s,oklch(var(--s)/.6))}.bg-secondary\/70{background-color:var(--fallback-s,oklch(var(--s)/.7))}.bg-secondary\/75{background-color:var(--fallback-s,oklch(var(--s)/.75))}.bg-secondary\/80{background-color:var(--fallback-s,oklch(var(--s)/.8))}.bg-secondary\/90{background-color:var(--fallback-s,oklch(var(--s)/.9))}.bg-secondary\/95{background-color:var(--fallback-s,oklch(var(--s)/.95))}.bg-success{background-color:var(--fallback-su,oklch(var(--su)/1))}.bg-success-content{background-color:var(--fallback-suc,oklch(var(--suc)/1))}.bg-success-content\/0{background-color:var(--fallback-suc,oklch(var(--suc)/0))}.bg-success-content\/10{background-color:var(--fallback-suc,oklch(var(--suc)/.1))}.bg-success-content\/100{background-color:var(--fallback-suc,oklch(var(--suc)/1))}.bg-success-content\/20{background-color:var(--fallback-suc,oklch(var(--suc)/.2))}.bg-success-content\/25{background-color:var(--fallback-suc,oklch(var(--suc)/.25))}.bg-success-content\/30{background-color:var(--fallback-suc,oklch(var(--suc)/.3))}.bg-success-content\/40{background-color:var(--fallback-suc,oklch(var(--suc)/.4))}.bg-success-content\/5{background-color:var(--fallback-suc,oklch(var(--suc)/.05))}.bg-success-content\/50{background-color:var(--fallback-suc,oklch(var(--suc)/.5))}.bg-success-content\/60{background-color:var(--fallback-suc,oklch(var(--suc)/.6))}.bg-success-content\/70{background-color:var(--fallback-suc,oklch(var(--suc)/.7))}.bg-success-content\/75{background-color:var(--fallback-suc,oklch(var(--suc)/.75))}.bg-success-content\/80{background-color:var(--fallback-suc,oklch(var(--suc)/.8))}.bg-success-content\/90{background-color:var(--fallback-suc,oklch(var(--suc)/.9))}.bg-success-content\/95{background-color:var(--fallback-suc,oklch(var(--suc)/.95))}.bg-success\/0{background-color:var(--fallback-su,oklch(var(--su)/0))}.bg-success\/10{background-color:var(--fallback-su,oklch(var(--su)/.1))}.bg-success\/100{background-color:var(--fallback-su,oklch(var(--su)/1))}.bg-success\/20{background-color:var(--fallback-su,oklch(var(--su)/.2))}.bg-success\/25{background-color:var(--fallback-su,oklch(var(--su)/.25))}.bg-success\/30{background-color:var(--fallback-su,oklch(var(--su)/.3))}.bg-success\/40{background-color:var(--fallback-su,oklch(var(--su)/.4))}.bg-success\/5{background-color:var(--fallback-su,oklch(var(--su)/.05))}.bg-success\/50{background-color:var(--fallback-su,oklch(var(--su)/.5))}.bg-success\/60{background-color:var(--fallback-su,oklch(var(--su)/.6))}.bg-success\/70{background-color:var(--fallback-su,oklch(var(--su)/.7))}.bg-success\/75{background-color:var(--fallback-su,oklch(var(--su)/.75))}.bg-success\/80{background-color:var(--fallback-su,oklch(var(--su)/.8))}.bg-success\/90{background-color:var(--fallback-su,oklch(var(--su)/.9))}.bg-success\/95{background-color:var(--fallback-su,oklch(var(--su)/.95))}.bg-transparent{background-color:transparent}.bg-transparent\/0{background-color:rgb(0 0 0 / 0)}.bg-transparent\/10{background-color:rgb(0 0 0 / .1)}.bg-transparent\/100{background-color:rgb(0 0 0 / 1)}.bg-transparent\/20{background-color:rgb(0 0 0 / .2)}.bg-transparent\/25{background-color:rgb(0 0 0 / .25)}.bg-transparent\/30{background-color:rgb(0 0 0 / .3)}.bg-transparent\/40{background-color:rgb(0 0 0 / .4)}.bg-transparent\/5{background-color:rgb(0 0 0 / .05)}.bg-transparent\/50{background-color:rgb(0 0 0 / .5)}.bg-transparent\/60{background-color:rgb(0 0 0 / .6)}.bg-transparent\/70{background-color:rgb(0 0 0 / .7)}.bg-transparent\/75{background-color:rgb(0 0 0 / .75)}.bg-transparent\/80{background-color:rgb(0 0 0 / .8)}.bg-transparent\/90{background-color:rgb(0 0 0 / .9)}.bg-transparent\/95{background-color:rgb(0 0 0 / .95)}.bg-warning{background-color:var(--fallback-wa,oklch(var(--wa)/1))}.bg-warning-content{background-color:var(--fallback-wac,oklch(var(--wac)/1))}.bg-warning-content\/0{background-color:var(--fallback-wac,oklch(var(--wac)/0))}.bg-warning-content\/10{background-color:var(--fallback-wac,oklch(var(--wac)/.1))}.bg-warning-content\/100{background-color:var(--fallback-wac,oklch(var(--wac)/1))}.bg-warning-content\/20{background-color:var(--fallback-wac,oklch(var(--wac)/.2))}.bg-warning-content\/25{background-color:var(--fallback-wac,oklch(var(--wac)/.25))}.bg-warning-content\/30{background-color:var(--fallback-wac,oklch(var(--wac)/.3))}.bg-warning-content\/40{background-color:var(--fallback-wac,oklch(var(--wac)/.4))}.bg-warning-content\/5{background-color:var(--fallback-wac,oklch(var(--wac)/.05))}.bg-warning-content\/50{background-color:var(--fallback-wac,oklch(var(--wac)/.5))}.bg-warning-content\/60{background-color:var(--fallback-wac,oklch(var(--wac)/.6))}.bg-warning-content\/70{background-color:var(--fallback-wac,oklch(var(--wac)/.7))}.bg-warning-content\/75{background-color:var(--fallback-wac,oklch(var(--wac)/.75))}.bg-warning-content\/80{background-color:var(--fallback-wac,oklch(var(--wac)/.8))}.bg-warning-content\/90{background-color:var(--fallback-wac,oklch(var(--wac)/.9))}.bg-warning-content\/95{background-color:var(--fallback-wac,oklch(var(--wac)/.95))}.bg-warning\/0{background-color:var(--fallback-wa,oklch(var(--wa)/0))}.bg-warning\/10{background-color:var(--fallback-wa,oklch(var(--wa)/.1))}.bg-warning\/100{background-color:var(--fallback-wa,oklch(var(--wa)/1))}.bg-warning\/20{background-color:var(--fallback-wa,oklch(var(--wa)/.2))}.bg-warning\/25{background-color:var(--fallback-wa,oklch(var(--wa)/.25))}.bg-warning\/30{background-color:var(--fallback-wa,oklch(var(--wa)/.3))}.bg-warning\/40{background-color:var(--fallback-wa,oklch(var(--wa)/.4))}.bg-warning\/5{background-color:var(--fallback-wa,oklch(var(--wa)/.05))}.bg-warning\/50{background-color:var(--fallback-wa,oklch(var(--wa)/.5))}.bg-warning\/60{background-color:var(--fallback-wa,oklch(var(--wa)/.6))}.bg-warning\/70{background-color:var(--fallback-wa,oklch(var(--wa)/.7))}.bg-warning\/75{background-color:var(--fallback-wa,oklch(var(--wa)/.75))}.bg-warning\/80{background-color:var(--fallback-wa,oklch(var(--wa)/.8))}.bg-warning\/90{background-color:var(--fallback-wa,oklch(var(--wa)/.9))}.bg-warning\/95{background-color:var(--fallback-wa,oklch(var(--wa)/.95))}.bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--tw-gradient-stops))}.bg-gradient-to-bl{background-image:linear-gradient(to bottom left,var(--tw-gradient-stops))}.bg-gradient-to-br{background-image:linear-gradient(to bottom right,var(--tw-gradient-stops))}.bg-gradient-to-l{background-image:linear-gradient(to left,var(--tw-gradient-stops))}.bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.bg-gradient-to-t{background-image:linear-gradient(to top,var(--tw-gradient-stops))}.bg-gradient-to-tl{background-image:linear-gradient(to top left,var(--tw-gradient-stops))}.bg-gradient-to-tr{background-image:linear-gradient(to top right,var(--tw-gradient-stops))}.bg-none{background-image:none}.from-accent{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent-content{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent-content\/0{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent-content\/10{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent-content\/100{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent-content\/20{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent-content\/25{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent-content\/30{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent-content\/40{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent-content\/5{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent-content\/50{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent-content\/60{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent-content\/70{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent-content\/75{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent-content\/80{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent-content\/90{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent-content\/95{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent\/0{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent\/10{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent\/100{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent\/20{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent\/25{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent\/30{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent\/40{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent\/5{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent\/50{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent\/60{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent\/70{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent\/75{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent\/80{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent\/90{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-accent\/95{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-100{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-100\/0{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-100\/10{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-100\/100{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-100\/20{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-100\/25{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-100\/30{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-100\/40{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-100\/5{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-100\/50{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-100\/60{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-100\/70{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-100\/75{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-100\/80{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-100\/90{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-100\/95{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-200{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-200\/0{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-200\/10{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-200\/100{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-200\/20{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-200\/25{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-200\/30{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-200\/40{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-200\/5{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-200\/50{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-200\/60{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-200\/70{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-200\/75{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-200\/80{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-200\/90{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-200\/95{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-300{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-300\/0{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-300\/10{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-300\/100{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-300\/20{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-300\/25{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-300\/30{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-300\/40{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-300\/5{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-300\/50{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-300\/60{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-300\/70{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-300\/75{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-300\/80{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-300\/90{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-300\/95{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-content{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-content\/0{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-content\/10{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-content\/100{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-content\/20{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-content\/25{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-content\/30{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-content\/40{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-content\/5{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-content\/50{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-content\/60{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-content\/70{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-content\/75{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-content\/80{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-content\/90{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-base-content\/95{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-current{--tw-gradient-from:currentColor var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error-content{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error-content\/0{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error-content\/10{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error-content\/100{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error-content\/20{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error-content\/25{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error-content\/30{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error-content\/40{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error-content\/5{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error-content\/50{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error-content\/60{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error-content\/70{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error-content\/75{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error-content\/80{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error-content\/90{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error-content\/95{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/0{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/10{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/100{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/20{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/25{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/30{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/40{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/5{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/50{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/60{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/70{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/75{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/80{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/90{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-error\/95{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info-content{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info-content\/0{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info-content\/10{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info-content\/100{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info-content\/20{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info-content\/25{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info-content\/30{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info-content\/40{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info-content\/5{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info-content\/50{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info-content\/60{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info-content\/70{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info-content\/75{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info-content\/80{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info-content\/90{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info-content\/95{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info\/0{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info\/10{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info\/100{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info\/20{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info\/25{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info\/30{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info\/40{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info\/5{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info\/50{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info\/60{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info\/70{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info\/75{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info\/80{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info\/90{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-info\/95{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral-content{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral-content\/0{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral-content\/10{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral-content\/100{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral-content\/20{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral-content\/25{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral-content\/30{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral-content\/40{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral-content\/5{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral-content\/50{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral-content\/60{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral-content\/70{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral-content\/75{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral-content\/80{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral-content\/90{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral-content\/95{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral\/0{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral\/10{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral\/100{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral\/20{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral\/25{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral\/30{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral\/40{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral\/5{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral\/50{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral\/60{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral\/70{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral\/75{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral\/80{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral\/90{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-neutral\/95{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary-content{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary-content\/0{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary-content\/10{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary-content\/100{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary-content\/20{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary-content\/25{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary-content\/30{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary-content\/40{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary-content\/5{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary-content\/50{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary-content\/60{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary-content\/70{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary-content\/75{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary-content\/80{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary-content\/90{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary-content\/95{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/0{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/10{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/100{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/20{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/25{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/30{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/40{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/5{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/50{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/60{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/70{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/75{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/80{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/90{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-primary\/95{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary-content{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary-content\/0{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary-content\/10{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary-content\/100{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary-content\/20{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary-content\/25{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary-content\/30{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary-content\/40{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary-content\/5{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary-content\/50{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary-content\/60{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary-content\/70{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary-content\/75{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary-content\/80{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary-content\/90{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary-content\/95{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/0{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/10{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/100{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/20{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/25{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/30{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/40{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/5{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/50{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/60{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/70{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/75{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/80{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/90{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-secondary\/95{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success-content{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success-content\/0{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success-content\/10{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success-content\/100{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success-content\/20{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success-content\/25{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success-content\/30{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success-content\/40{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success-content\/5{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success-content\/50{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success-content\/60{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success-content\/70{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success-content\/75{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success-content\/80{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success-content\/90{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success-content\/95{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/0{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/10{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/100{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/20{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/25{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/30{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/40{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/5{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/50{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/60{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/70{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/75{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/80{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/90{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-success\/95{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-transparent{--tw-gradient-from:transparent var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-transparent\/0{--tw-gradient-from:rgb(0 0 0 / 0) var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-transparent\/10{--tw-gradient-from:rgb(0 0 0 / 0.1) var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-transparent\/100{--tw-gradient-from:rgb(0 0 0 / 1) var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-transparent\/20{--tw-gradient-from:rgb(0 0 0 / 0.2) var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-transparent\/25{--tw-gradient-from:rgb(0 0 0 / 0.25) var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-transparent\/30{--tw-gradient-from:rgb(0 0 0 / 0.3) var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-transparent\/40{--tw-gradient-from:rgb(0 0 0 / 0.4) var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-transparent\/5{--tw-gradient-from:rgb(0 0 0 / 0.05) var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-transparent\/50{--tw-gradient-from:rgb(0 0 0 / 0.5) var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-transparent\/60{--tw-gradient-from:rgb(0 0 0 / 0.6) var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-transparent\/70{--tw-gradient-from:rgb(0 0 0 / 0.7) var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-transparent\/75{--tw-gradient-from:rgb(0 0 0 / 0.75) var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-transparent\/80{--tw-gradient-from:rgb(0 0 0 / 0.8) var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-transparent\/90{--tw-gradient-from:rgb(0 0 0 / 0.9) var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-transparent\/95{--tw-gradient-from:rgb(0 0 0 / 0.95) var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning-content{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning-content\/0{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning-content\/10{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning-content\/100{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning-content\/20{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning-content\/25{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning-content\/30{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning-content\/40{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning-content\/5{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning-content\/50{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning-content\/60{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning-content\/70{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning-content\/75{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning-content\/80{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning-content\/90{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning-content\/95{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/0{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/10{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/100{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/20{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/25{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/30{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/40{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/5{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/50{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/60{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/70{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/75{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/80{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/90{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-warning\/95{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.from-0\%{--tw-gradient-from-position:0%}.from-10\%{--tw-gradient-from-position:10%}.from-100\%{--tw-gradient-from-position:100%}.from-15\%{--tw-gradient-from-position:15%}.from-20\%{--tw-gradient-from-position:20%}.from-25\%{--tw-gradient-from-position:25%}.from-30\%{--tw-gradient-from-position:30%}.from-35\%{--tw-gradient-from-position:35%}.from-40\%{--tw-gradient-from-position:40%}.from-45\%{--tw-gradient-from-position:45%}.from-5\%{--tw-gradient-from-position:5%}.from-50\%{--tw-gradient-from-position:50%}.from-55\%{--tw-gradient-from-position:55%}.from-60\%{--tw-gradient-from-position:60%}.from-65\%{--tw-gradient-from-position:65%}.from-70\%{--tw-gradient-from-position:70%}.from-75\%{--tw-gradient-from-position:75%}.from-80\%{--tw-gradient-from-position:80%}.from-85\%{--tw-gradient-from-position:85%}.from-90\%{--tw-gradient-from-position:90%}.from-95\%{--tw-gradient-from-position:95%}.via-accent{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent-content{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent-content\/0{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent-content\/10{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent-content\/100{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent-content\/20{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent-content\/25{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent-content\/30{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent-content\/40{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent-content\/5{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent-content\/50{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent-content\/60{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent-content\/70{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent-content\/75{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent-content\/80{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent-content\/90{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent-content\/95{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent\/0{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent\/10{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent\/100{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent\/20{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent\/25{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent\/30{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent\/40{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent\/5{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent\/50{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent\/60{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent\/70{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent\/75{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent\/80{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent\/90{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-accent\/95{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-100{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-100\/0{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-100\/10{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-100\/100{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-100\/20{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-100\/25{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-100\/30{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-100\/40{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-100\/5{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-100\/50{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-100\/60{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-100\/70{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-100\/75{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-100\/80{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-100\/90{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-100\/95{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-200{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-200\/0{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-200\/10{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-200\/100{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-200\/20{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-200\/25{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-200\/30{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-200\/40{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-200\/5{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-200\/50{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-200\/60{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-200\/70{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-200\/75{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-200\/80{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-200\/90{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-200\/95{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-300{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-300\/0{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-300\/10{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-300\/100{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-300\/20{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-300\/25{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-300\/30{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-300\/40{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-300\/5{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-300\/50{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-300\/60{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-300\/70{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-300\/75{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-300\/80{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-300\/90{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-300\/95{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-content{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-content\/0{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-content\/10{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-content\/100{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-content\/20{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-content\/25{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-content\/30{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-content\/40{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-content\/5{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-content\/50{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-content\/60{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-content\/70{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-content\/75{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-content\/80{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-content\/90{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-base-content\/95{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-current{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),currentColor var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error-content{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error-content\/0{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error-content\/10{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error-content\/100{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error-content\/20{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error-content\/25{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error-content\/30{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error-content\/40{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error-content\/5{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error-content\/50{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error-content\/60{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error-content\/70{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error-content\/75{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error-content\/80{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error-content\/90{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error-content\/95{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/0{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/10{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/100{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/20{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/25{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/30{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/40{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/5{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/50{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/60{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/70{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/75{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/80{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/90{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-error\/95{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info-content{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info-content\/0{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info-content\/10{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info-content\/100{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info-content\/20{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info-content\/25{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info-content\/30{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info-content\/40{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info-content\/5{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info-content\/50{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info-content\/60{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info-content\/70{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info-content\/75{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info-content\/80{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info-content\/90{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info-content\/95{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info\/0{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info\/10{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info\/100{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info\/20{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info\/25{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info\/30{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info\/40{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info\/5{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info\/50{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info\/60{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info\/70{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info\/75{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info\/80{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info\/90{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-info\/95{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral-content{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral-content\/0{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral-content\/10{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral-content\/100{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral-content\/20{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral-content\/25{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral-content\/30{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral-content\/40{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral-content\/5{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral-content\/50{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral-content\/60{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral-content\/70{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral-content\/75{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral-content\/80{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral-content\/90{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral-content\/95{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral\/0{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral\/10{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral\/100{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral\/20{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral\/25{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral\/30{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral\/40{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral\/5{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral\/50{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral\/60{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral\/70{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral\/75{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral\/80{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral\/90{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-neutral\/95{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary-content{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary-content\/0{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary-content\/10{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary-content\/100{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary-content\/20{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary-content\/25{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary-content\/30{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary-content\/40{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary-content\/5{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary-content\/50{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary-content\/60{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary-content\/70{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary-content\/75{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary-content\/80{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary-content\/90{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary-content\/95{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/0{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/10{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/100{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/20{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/25{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/30{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/40{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/5{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/50{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/60{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/70{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/75{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/80{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/90{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-primary\/95{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary-content{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary-content\/0{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary-content\/10{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary-content\/100{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary-content\/20{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary-content\/25{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary-content\/30{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary-content\/40{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary-content\/5{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary-content\/50{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary-content\/60{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary-content\/70{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary-content\/75{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary-content\/80{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary-content\/90{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary-content\/95{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/0{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/10{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/100{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/20{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/25{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/30{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/40{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/5{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/50{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/60{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/70{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/75{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/80{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/90{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-secondary\/95{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success-content{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success-content\/0{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success-content\/10{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success-content\/100{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success-content\/20{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success-content\/25{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success-content\/30{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success-content\/40{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success-content\/5{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success-content\/50{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success-content\/60{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success-content\/70{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success-content\/75{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success-content\/80{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success-content\/90{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success-content\/95{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/0{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/10{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/100{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/20{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/25{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/30{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/40{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/5{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/50{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/60{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/70{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/75{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/80{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/90{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-success\/95{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-transparent{--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),transparent var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-transparent\/0{--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),rgb(0 0 0 / 0) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-transparent\/10{--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),rgb(0 0 0 / 0.1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-transparent\/100{--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),rgb(0 0 0 / 1) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-transparent\/20{--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),rgb(0 0 0 / 0.2) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-transparent\/25{--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),rgb(0 0 0 / 0.25) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-transparent\/30{--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),rgb(0 0 0 / 0.3) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-transparent\/40{--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),rgb(0 0 0 / 0.4) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-transparent\/5{--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),rgb(0 0 0 / 0.05) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-transparent\/50{--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),rgb(0 0 0 / 0.5) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-transparent\/60{--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),rgb(0 0 0 / 0.6) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-transparent\/70{--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),rgb(0 0 0 / 0.7) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-transparent\/75{--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),rgb(0 0 0 / 0.75) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-transparent\/80{--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),rgb(0 0 0 / 0.8) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-transparent\/90{--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),rgb(0 0 0 / 0.9) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-transparent\/95{--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),rgb(0 0 0 / 0.95) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning-content{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning-content\/0{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning-content\/10{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning-content\/100{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning-content\/20{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning-content\/25{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning-content\/30{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning-content\/40{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning-content\/5{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning-content\/50{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning-content\/60{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning-content\/70{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning-content\/75{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning-content\/80{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning-content\/90{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning-content\/95{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/0{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/10{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/100{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/20{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/25{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/30{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/40{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/5{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/50{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/60{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/70{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/75{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/80{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/90{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-warning\/95{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.via-0\%{--tw-gradient-via-position:0%}.via-10\%{--tw-gradient-via-position:10%}.via-100\%{--tw-gradient-via-position:100%}.via-15\%{--tw-gradient-via-position:15%}.via-20\%{--tw-gradient-via-position:20%}.via-25\%{--tw-gradient-via-position:25%}.via-30\%{--tw-gradient-via-position:30%}.via-35\%{--tw-gradient-via-position:35%}.via-40\%{--tw-gradient-via-position:40%}.via-45\%{--tw-gradient-via-position:45%}.via-5\%{--tw-gradient-via-position:5%}.via-50\%{--tw-gradient-via-position:50%}.via-55\%{--tw-gradient-via-position:55%}.via-60\%{--tw-gradient-via-position:60%}.via-65\%{--tw-gradient-via-position:65%}.via-70\%{--tw-gradient-via-position:70%}.via-75\%{--tw-gradient-via-position:75%}.via-80\%{--tw-gradient-via-position:80%}.via-85\%{--tw-gradient-via-position:85%}.via-90\%{--tw-gradient-via-position:90%}.via-95\%{--tw-gradient-via-position:95%}.to-accent{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/1)) var(--tw-gradient-to-position)}.to-accent-content{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/1)) var(--tw-gradient-to-position)}.to-accent-content\/0{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0)) var(--tw-gradient-to-position)}.to-accent-content\/10{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.1)) var(--tw-gradient-to-position)}.to-accent-content\/100{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/1)) var(--tw-gradient-to-position)}.to-accent-content\/20{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.2)) var(--tw-gradient-to-position)}.to-accent-content\/25{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.25)) var(--tw-gradient-to-position)}.to-accent-content\/30{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.3)) var(--tw-gradient-to-position)}.to-accent-content\/40{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.4)) var(--tw-gradient-to-position)}.to-accent-content\/5{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.05)) var(--tw-gradient-to-position)}.to-accent-content\/50{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.5)) var(--tw-gradient-to-position)}.to-accent-content\/60{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.6)) var(--tw-gradient-to-position)}.to-accent-content\/70{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.7)) var(--tw-gradient-to-position)}.to-accent-content\/75{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.75)) var(--tw-gradient-to-position)}.to-accent-content\/80{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.8)) var(--tw-gradient-to-position)}.to-accent-content\/90{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.9)) var(--tw-gradient-to-position)}.to-accent-content\/95{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.95)) var(--tw-gradient-to-position)}.to-accent\/0{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0)) var(--tw-gradient-to-position)}.to-accent\/10{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.1)) var(--tw-gradient-to-position)}.to-accent\/100{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/1)) var(--tw-gradient-to-position)}.to-accent\/20{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.2)) var(--tw-gradient-to-position)}.to-accent\/25{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.25)) var(--tw-gradient-to-position)}.to-accent\/30{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.3)) var(--tw-gradient-to-position)}.to-accent\/40{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.4)) var(--tw-gradient-to-position)}.to-accent\/5{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.05)) var(--tw-gradient-to-position)}.to-accent\/50{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.5)) var(--tw-gradient-to-position)}.to-accent\/60{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.6)) var(--tw-gradient-to-position)}.to-accent\/70{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.7)) var(--tw-gradient-to-position)}.to-accent\/75{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.75)) var(--tw-gradient-to-position)}.to-accent\/80{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.8)) var(--tw-gradient-to-position)}.to-accent\/90{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.9)) var(--tw-gradient-to-position)}.to-accent\/95{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.95)) var(--tw-gradient-to-position)}.to-base-100{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/1)) var(--tw-gradient-to-position)}.to-base-100\/0{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0)) var(--tw-gradient-to-position)}.to-base-100\/10{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.1)) var(--tw-gradient-to-position)}.to-base-100\/100{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/1)) var(--tw-gradient-to-position)}.to-base-100\/20{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.2)) var(--tw-gradient-to-position)}.to-base-100\/25{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.25)) var(--tw-gradient-to-position)}.to-base-100\/30{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.3)) var(--tw-gradient-to-position)}.to-base-100\/40{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.4)) var(--tw-gradient-to-position)}.to-base-100\/5{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.05)) var(--tw-gradient-to-position)}.to-base-100\/50{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.5)) var(--tw-gradient-to-position)}.to-base-100\/60{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.6)) var(--tw-gradient-to-position)}.to-base-100\/70{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.7)) var(--tw-gradient-to-position)}.to-base-100\/75{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.75)) var(--tw-gradient-to-position)}.to-base-100\/80{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.8)) var(--tw-gradient-to-position)}.to-base-100\/90{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.9)) var(--tw-gradient-to-position)}.to-base-100\/95{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.95)) var(--tw-gradient-to-position)}.to-base-200{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/1)) var(--tw-gradient-to-position)}.to-base-200\/0{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0)) var(--tw-gradient-to-position)}.to-base-200\/10{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.1)) var(--tw-gradient-to-position)}.to-base-200\/100{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/1)) var(--tw-gradient-to-position)}.to-base-200\/20{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.2)) var(--tw-gradient-to-position)}.to-base-200\/25{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.25)) var(--tw-gradient-to-position)}.to-base-200\/30{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.3)) var(--tw-gradient-to-position)}.to-base-200\/40{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.4)) var(--tw-gradient-to-position)}.to-base-200\/5{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.05)) var(--tw-gradient-to-position)}.to-base-200\/50{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.5)) var(--tw-gradient-to-position)}.to-base-200\/60{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.6)) var(--tw-gradient-to-position)}.to-base-200\/70{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.7)) var(--tw-gradient-to-position)}.to-base-200\/75{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.75)) var(--tw-gradient-to-position)}.to-base-200\/80{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.8)) var(--tw-gradient-to-position)}.to-base-200\/90{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.9)) var(--tw-gradient-to-position)}.to-base-200\/95{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.95)) var(--tw-gradient-to-position)}.to-base-300{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/1)) var(--tw-gradient-to-position)}.to-base-300\/0{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0)) var(--tw-gradient-to-position)}.to-base-300\/10{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.1)) var(--tw-gradient-to-position)}.to-base-300\/100{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/1)) var(--tw-gradient-to-position)}.to-base-300\/20{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.2)) var(--tw-gradient-to-position)}.to-base-300\/25{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.25)) var(--tw-gradient-to-position)}.to-base-300\/30{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.3)) var(--tw-gradient-to-position)}.to-base-300\/40{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.4)) var(--tw-gradient-to-position)}.to-base-300\/5{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.05)) var(--tw-gradient-to-position)}.to-base-300\/50{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.5)) var(--tw-gradient-to-position)}.to-base-300\/60{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.6)) var(--tw-gradient-to-position)}.to-base-300\/70{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.7)) var(--tw-gradient-to-position)}.to-base-300\/75{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.75)) var(--tw-gradient-to-position)}.to-base-300\/80{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.8)) var(--tw-gradient-to-position)}.to-base-300\/90{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.9)) var(--tw-gradient-to-position)}.to-base-300\/95{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.95)) var(--tw-gradient-to-position)}.to-base-content{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/1)) var(--tw-gradient-to-position)}.to-base-content\/0{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0)) var(--tw-gradient-to-position)}.to-base-content\/10{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.1)) var(--tw-gradient-to-position)}.to-base-content\/100{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/1)) var(--tw-gradient-to-position)}.to-base-content\/20{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.2)) var(--tw-gradient-to-position)}.to-base-content\/25{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.25)) var(--tw-gradient-to-position)}.to-base-content\/30{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.3)) var(--tw-gradient-to-position)}.to-base-content\/40{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.4)) var(--tw-gradient-to-position)}.to-base-content\/5{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.05)) var(--tw-gradient-to-position)}.to-base-content\/50{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.5)) var(--tw-gradient-to-position)}.to-base-content\/60{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.6)) var(--tw-gradient-to-position)}.to-base-content\/70{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.7)) var(--tw-gradient-to-position)}.to-base-content\/75{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.75)) var(--tw-gradient-to-position)}.to-base-content\/80{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.8)) var(--tw-gradient-to-position)}.to-base-content\/90{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.9)) var(--tw-gradient-to-position)}.to-base-content\/95{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.95)) var(--tw-gradient-to-position)}.to-current{--tw-gradient-to:currentColor var(--tw-gradient-to-position)}.to-error{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/1)) var(--tw-gradient-to-position)}.to-error-content{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/1)) var(--tw-gradient-to-position)}.to-error-content\/0{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0)) var(--tw-gradient-to-position)}.to-error-content\/10{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.1)) var(--tw-gradient-to-position)}.to-error-content\/100{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/1)) var(--tw-gradient-to-position)}.to-error-content\/20{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.2)) var(--tw-gradient-to-position)}.to-error-content\/25{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.25)) var(--tw-gradient-to-position)}.to-error-content\/30{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.3)) var(--tw-gradient-to-position)}.to-error-content\/40{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.4)) var(--tw-gradient-to-position)}.to-error-content\/5{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.05)) var(--tw-gradient-to-position)}.to-error-content\/50{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.5)) var(--tw-gradient-to-position)}.to-error-content\/60{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.6)) var(--tw-gradient-to-position)}.to-error-content\/70{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.7)) var(--tw-gradient-to-position)}.to-error-content\/75{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.75)) var(--tw-gradient-to-position)}.to-error-content\/80{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.8)) var(--tw-gradient-to-position)}.to-error-content\/90{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.9)) var(--tw-gradient-to-position)}.to-error-content\/95{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.95)) var(--tw-gradient-to-position)}.to-error\/0{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0)) var(--tw-gradient-to-position)}.to-error\/10{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.1)) var(--tw-gradient-to-position)}.to-error\/100{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/1)) var(--tw-gradient-to-position)}.to-error\/20{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.2)) var(--tw-gradient-to-position)}.to-error\/25{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.25)) var(--tw-gradient-to-position)}.to-error\/30{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.3)) var(--tw-gradient-to-position)}.to-error\/40{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.4)) var(--tw-gradient-to-position)}.to-error\/5{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.05)) var(--tw-gradient-to-position)}.to-error\/50{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.5)) var(--tw-gradient-to-position)}.to-error\/60{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.6)) var(--tw-gradient-to-position)}.to-error\/70{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.7)) var(--tw-gradient-to-position)}.to-error\/75{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.75)) var(--tw-gradient-to-position)}.to-error\/80{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.8)) var(--tw-gradient-to-position)}.to-error\/90{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.9)) var(--tw-gradient-to-position)}.to-error\/95{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.95)) var(--tw-gradient-to-position)}.to-info{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/1)) var(--tw-gradient-to-position)}.to-info-content{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/1)) var(--tw-gradient-to-position)}.to-info-content\/0{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0)) var(--tw-gradient-to-position)}.to-info-content\/10{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.1)) var(--tw-gradient-to-position)}.to-info-content\/100{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/1)) var(--tw-gradient-to-position)}.to-info-content\/20{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.2)) var(--tw-gradient-to-position)}.to-info-content\/25{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.25)) var(--tw-gradient-to-position)}.to-info-content\/30{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.3)) var(--tw-gradient-to-position)}.to-info-content\/40{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.4)) var(--tw-gradient-to-position)}.to-info-content\/5{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.05)) var(--tw-gradient-to-position)}.to-info-content\/50{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.5)) var(--tw-gradient-to-position)}.to-info-content\/60{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.6)) var(--tw-gradient-to-position)}.to-info-content\/70{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.7)) var(--tw-gradient-to-position)}.to-info-content\/75{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.75)) var(--tw-gradient-to-position)}.to-info-content\/80{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.8)) var(--tw-gradient-to-position)}.to-info-content\/90{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.9)) var(--tw-gradient-to-position)}.to-info-content\/95{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.95)) var(--tw-gradient-to-position)}.to-info\/0{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0)) var(--tw-gradient-to-position)}.to-info\/10{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.1)) var(--tw-gradient-to-position)}.to-info\/100{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/1)) var(--tw-gradient-to-position)}.to-info\/20{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.2)) var(--tw-gradient-to-position)}.to-info\/25{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.25)) var(--tw-gradient-to-position)}.to-info\/30{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.3)) var(--tw-gradient-to-position)}.to-info\/40{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.4)) var(--tw-gradient-to-position)}.to-info\/5{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.05)) var(--tw-gradient-to-position)}.to-info\/50{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.5)) var(--tw-gradient-to-position)}.to-info\/60{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.6)) var(--tw-gradient-to-position)}.to-info\/70{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.7)) var(--tw-gradient-to-position)}.to-info\/75{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.75)) var(--tw-gradient-to-position)}.to-info\/80{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.8)) var(--tw-gradient-to-position)}.to-info\/90{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.9)) var(--tw-gradient-to-position)}.to-info\/95{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.95)) var(--tw-gradient-to-position)}.to-neutral{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/1)) var(--tw-gradient-to-position)}.to-neutral-content{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/1)) var(--tw-gradient-to-position)}.to-neutral-content\/0{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0)) var(--tw-gradient-to-position)}.to-neutral-content\/10{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.1)) var(--tw-gradient-to-position)}.to-neutral-content\/100{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/1)) var(--tw-gradient-to-position)}.to-neutral-content\/20{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.2)) var(--tw-gradient-to-position)}.to-neutral-content\/25{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.25)) var(--tw-gradient-to-position)}.to-neutral-content\/30{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.3)) var(--tw-gradient-to-position)}.to-neutral-content\/40{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.4)) var(--tw-gradient-to-position)}.to-neutral-content\/5{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.05)) var(--tw-gradient-to-position)}.to-neutral-content\/50{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.5)) var(--tw-gradient-to-position)}.to-neutral-content\/60{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.6)) var(--tw-gradient-to-position)}.to-neutral-content\/70{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.7)) var(--tw-gradient-to-position)}.to-neutral-content\/75{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.75)) var(--tw-gradient-to-position)}.to-neutral-content\/80{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.8)) var(--tw-gradient-to-position)}.to-neutral-content\/90{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.9)) var(--tw-gradient-to-position)}.to-neutral-content\/95{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.95)) var(--tw-gradient-to-position)}.to-neutral\/0{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0)) var(--tw-gradient-to-position)}.to-neutral\/10{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.1)) var(--tw-gradient-to-position)}.to-neutral\/100{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/1)) var(--tw-gradient-to-position)}.to-neutral\/20{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.2)) var(--tw-gradient-to-position)}.to-neutral\/25{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.25)) var(--tw-gradient-to-position)}.to-neutral\/30{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.3)) var(--tw-gradient-to-position)}.to-neutral\/40{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.4)) var(--tw-gradient-to-position)}.to-neutral\/5{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.05)) var(--tw-gradient-to-position)}.to-neutral\/50{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.5)) var(--tw-gradient-to-position)}.to-neutral\/60{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.6)) var(--tw-gradient-to-position)}.to-neutral\/70{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.7)) var(--tw-gradient-to-position)}.to-neutral\/75{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.75)) var(--tw-gradient-to-position)}.to-neutral\/80{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.8)) var(--tw-gradient-to-position)}.to-neutral\/90{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.9)) var(--tw-gradient-to-position)}.to-neutral\/95{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.95)) var(--tw-gradient-to-position)}.to-primary{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/1)) var(--tw-gradient-to-position)}.to-primary-content{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/1)) var(--tw-gradient-to-position)}.to-primary-content\/0{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0)) var(--tw-gradient-to-position)}.to-primary-content\/10{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.1)) var(--tw-gradient-to-position)}.to-primary-content\/100{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/1)) var(--tw-gradient-to-position)}.to-primary-content\/20{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.2)) var(--tw-gradient-to-position)}.to-primary-content\/25{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.25)) var(--tw-gradient-to-position)}.to-primary-content\/30{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.3)) var(--tw-gradient-to-position)}.to-primary-content\/40{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.4)) var(--tw-gradient-to-position)}.to-primary-content\/5{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.05)) var(--tw-gradient-to-position)}.to-primary-content\/50{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.5)) var(--tw-gradient-to-position)}.to-primary-content\/60{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.6)) var(--tw-gradient-to-position)}.to-primary-content\/70{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.7)) var(--tw-gradient-to-position)}.to-primary-content\/75{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.75)) var(--tw-gradient-to-position)}.to-primary-content\/80{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.8)) var(--tw-gradient-to-position)}.to-primary-content\/90{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.9)) var(--tw-gradient-to-position)}.to-primary-content\/95{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.95)) var(--tw-gradient-to-position)}.to-primary\/0{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0)) var(--tw-gradient-to-position)}.to-primary\/10{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.1)) var(--tw-gradient-to-position)}.to-primary\/100{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/1)) var(--tw-gradient-to-position)}.to-primary\/20{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.2)) var(--tw-gradient-to-position)}.to-primary\/25{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.25)) var(--tw-gradient-to-position)}.to-primary\/30{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.3)) var(--tw-gradient-to-position)}.to-primary\/40{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.4)) var(--tw-gradient-to-position)}.to-primary\/5{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.05)) var(--tw-gradient-to-position)}.to-primary\/50{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.5)) var(--tw-gradient-to-position)}.to-primary\/60{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.6)) var(--tw-gradient-to-position)}.to-primary\/70{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.7)) var(--tw-gradient-to-position)}.to-primary\/75{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.75)) var(--tw-gradient-to-position)}.to-primary\/80{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.8)) var(--tw-gradient-to-position)}.to-primary\/90{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.9)) var(--tw-gradient-to-position)}.to-primary\/95{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.95)) var(--tw-gradient-to-position)}.to-secondary{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/1)) var(--tw-gradient-to-position)}.to-secondary-content{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/1)) var(--tw-gradient-to-position)}.to-secondary-content\/0{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0)) var(--tw-gradient-to-position)}.to-secondary-content\/10{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.1)) var(--tw-gradient-to-position)}.to-secondary-content\/100{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/1)) var(--tw-gradient-to-position)}.to-secondary-content\/20{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.2)) var(--tw-gradient-to-position)}.to-secondary-content\/25{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.25)) var(--tw-gradient-to-position)}.to-secondary-content\/30{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.3)) var(--tw-gradient-to-position)}.to-secondary-content\/40{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.4)) var(--tw-gradient-to-position)}.to-secondary-content\/5{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.05)) var(--tw-gradient-to-position)}.to-secondary-content\/50{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.5)) var(--tw-gradient-to-position)}.to-secondary-content\/60{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.6)) var(--tw-gradient-to-position)}.to-secondary-content\/70{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.7)) var(--tw-gradient-to-position)}.to-secondary-content\/75{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.75)) var(--tw-gradient-to-position)}.to-secondary-content\/80{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.8)) var(--tw-gradient-to-position)}.to-secondary-content\/90{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.9)) var(--tw-gradient-to-position)}.to-secondary-content\/95{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.95)) var(--tw-gradient-to-position)}.to-secondary\/0{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0)) var(--tw-gradient-to-position)}.to-secondary\/10{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.1)) var(--tw-gradient-to-position)}.to-secondary\/100{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/1)) var(--tw-gradient-to-position)}.to-secondary\/20{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.2)) var(--tw-gradient-to-position)}.to-secondary\/25{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.25)) var(--tw-gradient-to-position)}.to-secondary\/30{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.3)) var(--tw-gradient-to-position)}.to-secondary\/40{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.4)) var(--tw-gradient-to-position)}.to-secondary\/5{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.05)) var(--tw-gradient-to-position)}.to-secondary\/50{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.5)) var(--tw-gradient-to-position)}.to-secondary\/60{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.6)) var(--tw-gradient-to-position)}.to-secondary\/70{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.7)) var(--tw-gradient-to-position)}.to-secondary\/75{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.75)) var(--tw-gradient-to-position)}.to-secondary\/80{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.8)) var(--tw-gradient-to-position)}.to-secondary\/90{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.9)) var(--tw-gradient-to-position)}.to-secondary\/95{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.95)) var(--tw-gradient-to-position)}.to-success{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/1)) var(--tw-gradient-to-position)}.to-success-content{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/1)) var(--tw-gradient-to-position)}.to-success-content\/0{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0)) var(--tw-gradient-to-position)}.to-success-content\/10{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.1)) var(--tw-gradient-to-position)}.to-success-content\/100{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/1)) var(--tw-gradient-to-position)}.to-success-content\/20{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.2)) var(--tw-gradient-to-position)}.to-success-content\/25{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.25)) var(--tw-gradient-to-position)}.to-success-content\/30{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.3)) var(--tw-gradient-to-position)}.to-success-content\/40{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.4)) var(--tw-gradient-to-position)}.to-success-content\/5{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.05)) var(--tw-gradient-to-position)}.to-success-content\/50{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.5)) var(--tw-gradient-to-position)}.to-success-content\/60{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.6)) var(--tw-gradient-to-position)}.to-success-content\/70{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.7)) var(--tw-gradient-to-position)}.to-success-content\/75{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.75)) var(--tw-gradient-to-position)}.to-success-content\/80{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.8)) var(--tw-gradient-to-position)}.to-success-content\/90{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.9)) var(--tw-gradient-to-position)}.to-success-content\/95{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.95)) var(--tw-gradient-to-position)}.to-success\/0{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0)) var(--tw-gradient-to-position)}.to-success\/10{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.1)) var(--tw-gradient-to-position)}.to-success\/100{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/1)) var(--tw-gradient-to-position)}.to-success\/20{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.2)) var(--tw-gradient-to-position)}.to-success\/25{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.25)) var(--tw-gradient-to-position)}.to-success\/30{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.3)) var(--tw-gradient-to-position)}.to-success\/40{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.4)) var(--tw-gradient-to-position)}.to-success\/5{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.05)) var(--tw-gradient-to-position)}.to-success\/50{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.5)) var(--tw-gradient-to-position)}.to-success\/60{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.6)) var(--tw-gradient-to-position)}.to-success\/70{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.7)) var(--tw-gradient-to-position)}.to-success\/75{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.75)) var(--tw-gradient-to-position)}.to-success\/80{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.8)) var(--tw-gradient-to-position)}.to-success\/90{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.9)) var(--tw-gradient-to-position)}.to-success\/95{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.95)) var(--tw-gradient-to-position)}.to-transparent{--tw-gradient-to:transparent var(--tw-gradient-to-position)}.to-transparent\/0{--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position)}.to-transparent\/10{--tw-gradient-to:rgb(0 0 0 / 0.1) var(--tw-gradient-to-position)}.to-transparent\/100{--tw-gradient-to:rgb(0 0 0 / 1) var(--tw-gradient-to-position)}.to-transparent\/20{--tw-gradient-to:rgb(0 0 0 / 0.2) var(--tw-gradient-to-position)}.to-transparent\/25{--tw-gradient-to:rgb(0 0 0 / 0.25) var(--tw-gradient-to-position)}.to-transparent\/30{--tw-gradient-to:rgb(0 0 0 / 0.3) var(--tw-gradient-to-position)}.to-transparent\/40{--tw-gradient-to:rgb(0 0 0 / 0.4) var(--tw-gradient-to-position)}.to-transparent\/5{--tw-gradient-to:rgb(0 0 0 / 0.05) var(--tw-gradient-to-position)}.to-transparent\/50{--tw-gradient-to:rgb(0 0 0 / 0.5) var(--tw-gradient-to-position)}.to-transparent\/60{--tw-gradient-to:rgb(0 0 0 / 0.6) var(--tw-gradient-to-position)}.to-transparent\/70{--tw-gradient-to:rgb(0 0 0 / 0.7) var(--tw-gradient-to-position)}.to-transparent\/75{--tw-gradient-to:rgb(0 0 0 / 0.75) var(--tw-gradient-to-position)}.to-transparent\/80{--tw-gradient-to:rgb(0 0 0 / 0.8) var(--tw-gradient-to-position)}.to-transparent\/90{--tw-gradient-to:rgb(0 0 0 / 0.9) var(--tw-gradient-to-position)}.to-transparent\/95{--tw-gradient-to:rgb(0 0 0 / 0.95) var(--tw-gradient-to-position)}.to-warning{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/1)) var(--tw-gradient-to-position)}.to-warning-content{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/1)) var(--tw-gradient-to-position)}.to-warning-content\/0{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0)) var(--tw-gradient-to-position)}.to-warning-content\/10{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.1)) var(--tw-gradient-to-position)}.to-warning-content\/100{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/1)) var(--tw-gradient-to-position)}.to-warning-content\/20{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.2)) var(--tw-gradient-to-position)}.to-warning-content\/25{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.25)) var(--tw-gradient-to-position)}.to-warning-content\/30{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.3)) var(--tw-gradient-to-position)}.to-warning-content\/40{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.4)) var(--tw-gradient-to-position)}.to-warning-content\/5{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.05)) var(--tw-gradient-to-position)}.to-warning-content\/50{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.5)) var(--tw-gradient-to-position)}.to-warning-content\/60{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.6)) var(--tw-gradient-to-position)}.to-warning-content\/70{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.7)) var(--tw-gradient-to-position)}.to-warning-content\/75{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.75)) var(--tw-gradient-to-position)}.to-warning-content\/80{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.8)) var(--tw-gradient-to-position)}.to-warning-content\/90{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.9)) var(--tw-gradient-to-position)}.to-warning-content\/95{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.95)) var(--tw-gradient-to-position)}.to-warning\/0{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0)) var(--tw-gradient-to-position)}.to-warning\/10{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.1)) var(--tw-gradient-to-position)}.to-warning\/100{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/1)) var(--tw-gradient-to-position)}.to-warning\/20{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.2)) var(--tw-gradient-to-position)}.to-warning\/25{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.25)) var(--tw-gradient-to-position)}.to-warning\/30{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.3)) var(--tw-gradient-to-position)}.to-warning\/40{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.4)) var(--tw-gradient-to-position)}.to-warning\/5{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.05)) var(--tw-gradient-to-position)}.to-warning\/50{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.5)) var(--tw-gradient-to-position)}.to-warning\/60{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.6)) var(--tw-gradient-to-position)}.to-warning\/70{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.7)) var(--tw-gradient-to-position)}.to-warning\/75{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.75)) var(--tw-gradient-to-position)}.to-warning\/80{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.8)) var(--tw-gradient-to-position)}.to-warning\/90{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.9)) var(--tw-gradient-to-position)}.to-warning\/95{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.95)) var(--tw-gradient-to-position)}.to-0\%{--tw-gradient-to-position:0%}.to-10\%{--tw-gradient-to-position:10%}.to-100\%{--tw-gradient-to-position:100%}.to-15\%{--tw-gradient-to-position:15%}.to-20\%{--tw-gradient-to-position:20%}.to-25\%{--tw-gradient-to-position:25%}.to-30\%{--tw-gradient-to-position:30%}.to-35\%{--tw-gradient-to-position:35%}.to-40\%{--tw-gradient-to-position:40%}.to-45\%{--tw-gradient-to-position:45%}.to-5\%{--tw-gradient-to-position:5%}.to-50\%{--tw-gradient-to-position:50%}.to-55\%{--tw-gradient-to-position:55%}.to-60\%{--tw-gradient-to-position:60%}.to-65\%{--tw-gradient-to-position:65%}.to-70\%{--tw-gradient-to-position:70%}.to-75\%{--tw-gradient-to-position:75%}.to-80\%{--tw-gradient-to-position:80%}.to-85\%{--tw-gradient-to-position:85%}.to-90\%{--tw-gradient-to-position:90%}.to-95\%{--tw-gradient-to-position:95%}.stroke-accent{stroke:var(--fallback-a,oklch(var(--a)/1))}.stroke-accent-content{stroke:var(--fallback-ac,oklch(var(--ac)/1))}.stroke-accent-content\/0{stroke:var(--fallback-ac,oklch(var(--ac)/0))}.stroke-accent-content\/10{stroke:var(--fallback-ac,oklch(var(--ac)/0.1))}.stroke-accent-content\/100{stroke:var(--fallback-ac,oklch(var(--ac)/1))}.stroke-accent-content\/20{stroke:var(--fallback-ac,oklch(var(--ac)/0.2))}.stroke-accent-content\/25{stroke:var(--fallback-ac,oklch(var(--ac)/0.25))}.stroke-accent-content\/30{stroke:var(--fallback-ac,oklch(var(--ac)/0.3))}.stroke-accent-content\/40{stroke:var(--fallback-ac,oklch(var(--ac)/0.4))}.stroke-accent-content\/5{stroke:var(--fallback-ac,oklch(var(--ac)/0.05))}.stroke-accent-content\/50{stroke:var(--fallback-ac,oklch(var(--ac)/0.5))}.stroke-accent-content\/60{stroke:var(--fallback-ac,oklch(var(--ac)/0.6))}.stroke-accent-content\/70{stroke:var(--fallback-ac,oklch(var(--ac)/0.7))}.stroke-accent-content\/75{stroke:var(--fallback-ac,oklch(var(--ac)/0.75))}.stroke-accent-content\/80{stroke:var(--fallback-ac,oklch(var(--ac)/0.8))}.stroke-accent-content\/90{stroke:var(--fallback-ac,oklch(var(--ac)/0.9))}.stroke-accent-content\/95{stroke:var(--fallback-ac,oklch(var(--ac)/0.95))}.stroke-accent\/0{stroke:var(--fallback-a,oklch(var(--a)/0))}.stroke-accent\/10{stroke:var(--fallback-a,oklch(var(--a)/0.1))}.stroke-accent\/100{stroke:var(--fallback-a,oklch(var(--a)/1))}.stroke-accent\/20{stroke:var(--fallback-a,oklch(var(--a)/0.2))}.stroke-accent\/25{stroke:var(--fallback-a,oklch(var(--a)/0.25))}.stroke-accent\/30{stroke:var(--fallback-a,oklch(var(--a)/0.3))}.stroke-accent\/40{stroke:var(--fallback-a,oklch(var(--a)/0.4))}.stroke-accent\/5{stroke:var(--fallback-a,oklch(var(--a)/0.05))}.stroke-accent\/50{stroke:var(--fallback-a,oklch(var(--a)/0.5))}.stroke-accent\/60{stroke:var(--fallback-a,oklch(var(--a)/0.6))}.stroke-accent\/70{stroke:var(--fallback-a,oklch(var(--a)/0.7))}.stroke-accent\/75{stroke:var(--fallback-a,oklch(var(--a)/0.75))}.stroke-accent\/80{stroke:var(--fallback-a,oklch(var(--a)/0.8))}.stroke-accent\/90{stroke:var(--fallback-a,oklch(var(--a)/0.9))}.stroke-accent\/95{stroke:var(--fallback-a,oklch(var(--a)/0.95))}.stroke-base-100{stroke:var(--fallback-b1,oklch(var(--b1)/1))}.stroke-base-100\/0{stroke:var(--fallback-b1,oklch(var(--b1)/0))}.stroke-base-100\/10{stroke:var(--fallback-b1,oklch(var(--b1)/0.1))}.stroke-base-100\/100{stroke:var(--fallback-b1,oklch(var(--b1)/1))}.stroke-base-100\/20{stroke:var(--fallback-b1,oklch(var(--b1)/0.2))}.stroke-base-100\/25{stroke:var(--fallback-b1,oklch(var(--b1)/0.25))}.stroke-base-100\/30{stroke:var(--fallback-b1,oklch(var(--b1)/0.3))}.stroke-base-100\/40{stroke:var(--fallback-b1,oklch(var(--b1)/0.4))}.stroke-base-100\/5{stroke:var(--fallback-b1,oklch(var(--b1)/0.05))}.stroke-base-100\/50{stroke:var(--fallback-b1,oklch(var(--b1)/0.5))}.stroke-base-100\/60{stroke:var(--fallback-b1,oklch(var(--b1)/0.6))}.stroke-base-100\/70{stroke:var(--fallback-b1,oklch(var(--b1)/0.7))}.stroke-base-100\/75{stroke:var(--fallback-b1,oklch(var(--b1)/0.75))}.stroke-base-100\/80{stroke:var(--fallback-b1,oklch(var(--b1)/0.8))}.stroke-base-100\/90{stroke:var(--fallback-b1,oklch(var(--b1)/0.9))}.stroke-base-100\/95{stroke:var(--fallback-b1,oklch(var(--b1)/0.95))}.stroke-base-200{stroke:var(--fallback-b2,oklch(var(--b2)/1))}.stroke-base-200\/0{stroke:var(--fallback-b2,oklch(var(--b2)/0))}.stroke-base-200\/10{stroke:var(--fallback-b2,oklch(var(--b2)/0.1))}.stroke-base-200\/100{stroke:var(--fallback-b2,oklch(var(--b2)/1))}.stroke-base-200\/20{stroke:var(--fallback-b2,oklch(var(--b2)/0.2))}.stroke-base-200\/25{stroke:var(--fallback-b2,oklch(var(--b2)/0.25))}.stroke-base-200\/30{stroke:var(--fallback-b2,oklch(var(--b2)/0.3))}.stroke-base-200\/40{stroke:var(--fallback-b2,oklch(var(--b2)/0.4))}.stroke-base-200\/5{stroke:var(--fallback-b2,oklch(var(--b2)/0.05))}.stroke-base-200\/50{stroke:var(--fallback-b2,oklch(var(--b2)/0.5))}.stroke-base-200\/60{stroke:var(--fallback-b2,oklch(var(--b2)/0.6))}.stroke-base-200\/70{stroke:var(--fallback-b2,oklch(var(--b2)/0.7))}.stroke-base-200\/75{stroke:var(--fallback-b2,oklch(var(--b2)/0.75))}.stroke-base-200\/80{stroke:var(--fallback-b2,oklch(var(--b2)/0.8))}.stroke-base-200\/90{stroke:var(--fallback-b2,oklch(var(--b2)/0.9))}.stroke-base-200\/95{stroke:var(--fallback-b2,oklch(var(--b2)/0.95))}.stroke-base-300{stroke:var(--fallback-b3,oklch(var(--b3)/1))}.stroke-base-300\/0{stroke:var(--fallback-b3,oklch(var(--b3)/0))}.stroke-base-300\/10{stroke:var(--fallback-b3,oklch(var(--b3)/0.1))}.stroke-base-300\/100{stroke:var(--fallback-b3,oklch(var(--b3)/1))}.stroke-base-300\/20{stroke:var(--fallback-b3,oklch(var(--b3)/0.2))}.stroke-base-300\/25{stroke:var(--fallback-b3,oklch(var(--b3)/0.25))}.stroke-base-300\/30{stroke:var(--fallback-b3,oklch(var(--b3)/0.3))}.stroke-base-300\/40{stroke:var(--fallback-b3,oklch(var(--b3)/0.4))}.stroke-base-300\/5{stroke:var(--fallback-b3,oklch(var(--b3)/0.05))}.stroke-base-300\/50{stroke:var(--fallback-b3,oklch(var(--b3)/0.5))}.stroke-base-300\/60{stroke:var(--fallback-b3,oklch(var(--b3)/0.6))}.stroke-base-300\/70{stroke:var(--fallback-b3,oklch(var(--b3)/0.7))}.stroke-base-300\/75{stroke:var(--fallback-b3,oklch(var(--b3)/0.75))}.stroke-base-300\/80{stroke:var(--fallback-b3,oklch(var(--b3)/0.8))}.stroke-base-300\/90{stroke:var(--fallback-b3,oklch(var(--b3)/0.9))}.stroke-base-300\/95{stroke:var(--fallback-b3,oklch(var(--b3)/0.95))}.stroke-base-content{stroke:var(--fallback-bc,oklch(var(--bc)/1))}.stroke-base-content\/0{stroke:var(--fallback-bc,oklch(var(--bc)/0))}.stroke-base-content\/10{stroke:var(--fallback-bc,oklch(var(--bc)/0.1))}.stroke-base-content\/100{stroke:var(--fallback-bc,oklch(var(--bc)/1))}.stroke-base-content\/20{stroke:var(--fallback-bc,oklch(var(--bc)/0.2))}.stroke-base-content\/25{stroke:var(--fallback-bc,oklch(var(--bc)/0.25))}.stroke-base-content\/30{stroke:var(--fallback-bc,oklch(var(--bc)/0.3))}.stroke-base-content\/40{stroke:var(--fallback-bc,oklch(var(--bc)/0.4))}.stroke-base-content\/5{stroke:var(--fallback-bc,oklch(var(--bc)/0.05))}.stroke-base-content\/50{stroke:var(--fallback-bc,oklch(var(--bc)/0.5))}.stroke-base-content\/60{stroke:var(--fallback-bc,oklch(var(--bc)/0.6))}.stroke-base-content\/70{stroke:var(--fallback-bc,oklch(var(--bc)/0.7))}.stroke-base-content\/75{stroke:var(--fallback-bc,oklch(var(--bc)/0.75))}.stroke-base-content\/80{stroke:var(--fallback-bc,oklch(var(--bc)/0.8))}.stroke-base-content\/90{stroke:var(--fallback-bc,oklch(var(--bc)/0.9))}.stroke-base-content\/95{stroke:var(--fallback-bc,oklch(var(--bc)/0.95))}.stroke-current{stroke:currentColor}.stroke-error{stroke:var(--fallback-er,oklch(var(--er)/1))}.stroke-error-content{stroke:var(--fallback-erc,oklch(var(--erc)/1))}.stroke-error-content\/0{stroke:var(--fallback-erc,oklch(var(--erc)/0))}.stroke-error-content\/10{stroke:var(--fallback-erc,oklch(var(--erc)/0.1))}.stroke-error-content\/100{stroke:var(--fallback-erc,oklch(var(--erc)/1))}.stroke-error-content\/20{stroke:var(--fallback-erc,oklch(var(--erc)/0.2))}.stroke-error-content\/25{stroke:var(--fallback-erc,oklch(var(--erc)/0.25))}.stroke-error-content\/30{stroke:var(--fallback-erc,oklch(var(--erc)/0.3))}.stroke-error-content\/40{stroke:var(--fallback-erc,oklch(var(--erc)/0.4))}.stroke-error-content\/5{stroke:var(--fallback-erc,oklch(var(--erc)/0.05))}.stroke-error-content\/50{stroke:var(--fallback-erc,oklch(var(--erc)/0.5))}.stroke-error-content\/60{stroke:var(--fallback-erc,oklch(var(--erc)/0.6))}.stroke-error-content\/70{stroke:var(--fallback-erc,oklch(var(--erc)/0.7))}.stroke-error-content\/75{stroke:var(--fallback-erc,oklch(var(--erc)/0.75))}.stroke-error-content\/80{stroke:var(--fallback-erc,oklch(var(--erc)/0.8))}.stroke-error-content\/90{stroke:var(--fallback-erc,oklch(var(--erc)/0.9))}.stroke-error-content\/95{stroke:var(--fallback-erc,oklch(var(--erc)/0.95))}.stroke-error\/0{stroke:var(--fallback-er,oklch(var(--er)/0))}.stroke-error\/10{stroke:var(--fallback-er,oklch(var(--er)/0.1))}.stroke-error\/100{stroke:var(--fallback-er,oklch(var(--er)/1))}.stroke-error\/20{stroke:var(--fallback-er,oklch(var(--er)/0.2))}.stroke-error\/25{stroke:var(--fallback-er,oklch(var(--er)/0.25))}.stroke-error\/30{stroke:var(--fallback-er,oklch(var(--er)/0.3))}.stroke-error\/40{stroke:var(--fallback-er,oklch(var(--er)/0.4))}.stroke-error\/5{stroke:var(--fallback-er,oklch(var(--er)/0.05))}.stroke-error\/50{stroke:var(--fallback-er,oklch(var(--er)/0.5))}.stroke-error\/60{stroke:var(--fallback-er,oklch(var(--er)/0.6))}.stroke-error\/70{stroke:var(--fallback-er,oklch(var(--er)/0.7))}.stroke-error\/75{stroke:var(--fallback-er,oklch(var(--er)/0.75))}.stroke-error\/80{stroke:var(--fallback-er,oklch(var(--er)/0.8))}.stroke-error\/90{stroke:var(--fallback-er,oklch(var(--er)/0.9))}.stroke-error\/95{stroke:var(--fallback-er,oklch(var(--er)/0.95))}.stroke-info{stroke:var(--fallback-in,oklch(var(--in)/1))}.stroke-info-content{stroke:var(--fallback-inc,oklch(var(--inc)/1))}.stroke-info-content\/0{stroke:var(--fallback-inc,oklch(var(--inc)/0))}.stroke-info-content\/10{stroke:var(--fallback-inc,oklch(var(--inc)/0.1))}.stroke-info-content\/100{stroke:var(--fallback-inc,oklch(var(--inc)/1))}.stroke-info-content\/20{stroke:var(--fallback-inc,oklch(var(--inc)/0.2))}.stroke-info-content\/25{stroke:var(--fallback-inc,oklch(var(--inc)/0.25))}.stroke-info-content\/30{stroke:var(--fallback-inc,oklch(var(--inc)/0.3))}.stroke-info-content\/40{stroke:var(--fallback-inc,oklch(var(--inc)/0.4))}.stroke-info-content\/5{stroke:var(--fallback-inc,oklch(var(--inc)/0.05))}.stroke-info-content\/50{stroke:var(--fallback-inc,oklch(var(--inc)/0.5))}.stroke-info-content\/60{stroke:var(--fallback-inc,oklch(var(--inc)/0.6))}.stroke-info-content\/70{stroke:var(--fallback-inc,oklch(var(--inc)/0.7))}.stroke-info-content\/75{stroke:var(--fallback-inc,oklch(var(--inc)/0.75))}.stroke-info-content\/80{stroke:var(--fallback-inc,oklch(var(--inc)/0.8))}.stroke-info-content\/90{stroke:var(--fallback-inc,oklch(var(--inc)/0.9))}.stroke-info-content\/95{stroke:var(--fallback-inc,oklch(var(--inc)/0.95))}.stroke-info\/0{stroke:var(--fallback-in,oklch(var(--in)/0))}.stroke-info\/10{stroke:var(--fallback-in,oklch(var(--in)/0.1))}.stroke-info\/100{stroke:var(--fallback-in,oklch(var(--in)/1))}.stroke-info\/20{stroke:var(--fallback-in,oklch(var(--in)/0.2))}.stroke-info\/25{stroke:var(--fallback-in,oklch(var(--in)/0.25))}.stroke-info\/30{stroke:var(--fallback-in,oklch(var(--in)/0.3))}.stroke-info\/40{stroke:var(--fallback-in,oklch(var(--in)/0.4))}.stroke-info\/5{stroke:var(--fallback-in,oklch(var(--in)/0.05))}.stroke-info\/50{stroke:var(--fallback-in,oklch(var(--in)/0.5))}.stroke-info\/60{stroke:var(--fallback-in,oklch(var(--in)/0.6))}.stroke-info\/70{stroke:var(--fallback-in,oklch(var(--in)/0.7))}.stroke-info\/75{stroke:var(--fallback-in,oklch(var(--in)/0.75))}.stroke-info\/80{stroke:var(--fallback-in,oklch(var(--in)/0.8))}.stroke-info\/90{stroke:var(--fallback-in,oklch(var(--in)/0.9))}.stroke-info\/95{stroke:var(--fallback-in,oklch(var(--in)/0.95))}.stroke-neutral{stroke:var(--fallback-n,oklch(var(--n)/1))}.stroke-neutral-content{stroke:var(--fallback-nc,oklch(var(--nc)/1))}.stroke-neutral-content\/0{stroke:var(--fallback-nc,oklch(var(--nc)/0))}.stroke-neutral-content\/10{stroke:var(--fallback-nc,oklch(var(--nc)/0.1))}.stroke-neutral-content\/100{stroke:var(--fallback-nc,oklch(var(--nc)/1))}.stroke-neutral-content\/20{stroke:var(--fallback-nc,oklch(var(--nc)/0.2))}.stroke-neutral-content\/25{stroke:var(--fallback-nc,oklch(var(--nc)/0.25))}.stroke-neutral-content\/30{stroke:var(--fallback-nc,oklch(var(--nc)/0.3))}.stroke-neutral-content\/40{stroke:var(--fallback-nc,oklch(var(--nc)/0.4))}.stroke-neutral-content\/5{stroke:var(--fallback-nc,oklch(var(--nc)/0.05))}.stroke-neutral-content\/50{stroke:var(--fallback-nc,oklch(var(--nc)/0.5))}.stroke-neutral-content\/60{stroke:var(--fallback-nc,oklch(var(--nc)/0.6))}.stroke-neutral-content\/70{stroke:var(--fallback-nc,oklch(var(--nc)/0.7))}.stroke-neutral-content\/75{stroke:var(--fallback-nc,oklch(var(--nc)/0.75))}.stroke-neutral-content\/80{stroke:var(--fallback-nc,oklch(var(--nc)/0.8))}.stroke-neutral-content\/90{stroke:var(--fallback-nc,oklch(var(--nc)/0.9))}.stroke-neutral-content\/95{stroke:var(--fallback-nc,oklch(var(--nc)/0.95))}.stroke-neutral\/0{stroke:var(--fallback-n,oklch(var(--n)/0))}.stroke-neutral\/10{stroke:var(--fallback-n,oklch(var(--n)/0.1))}.stroke-neutral\/100{stroke:var(--fallback-n,oklch(var(--n)/1))}.stroke-neutral\/20{stroke:var(--fallback-n,oklch(var(--n)/0.2))}.stroke-neutral\/25{stroke:var(--fallback-n,oklch(var(--n)/0.25))}.stroke-neutral\/30{stroke:var(--fallback-n,oklch(var(--n)/0.3))}.stroke-neutral\/40{stroke:var(--fallback-n,oklch(var(--n)/0.4))}.stroke-neutral\/5{stroke:var(--fallback-n,oklch(var(--n)/0.05))}.stroke-neutral\/50{stroke:var(--fallback-n,oklch(var(--n)/0.5))}.stroke-neutral\/60{stroke:var(--fallback-n,oklch(var(--n)/0.6))}.stroke-neutral\/70{stroke:var(--fallback-n,oklch(var(--n)/0.7))}.stroke-neutral\/75{stroke:var(--fallback-n,oklch(var(--n)/0.75))}.stroke-neutral\/80{stroke:var(--fallback-n,oklch(var(--n)/0.8))}.stroke-neutral\/90{stroke:var(--fallback-n,oklch(var(--n)/0.9))}.stroke-neutral\/95{stroke:var(--fallback-n,oklch(var(--n)/0.95))}.stroke-none{stroke:none}.stroke-primary{stroke:var(--fallback-p,oklch(var(--p)/1))}.stroke-primary-content{stroke:var(--fallback-pc,oklch(var(--pc)/1))}.stroke-primary-content\/0{stroke:var(--fallback-pc,oklch(var(--pc)/0))}.stroke-primary-content\/10{stroke:var(--fallback-pc,oklch(var(--pc)/0.1))}.stroke-primary-content\/100{stroke:var(--fallback-pc,oklch(var(--pc)/1))}.stroke-primary-content\/20{stroke:var(--fallback-pc,oklch(var(--pc)/0.2))}.stroke-primary-content\/25{stroke:var(--fallback-pc,oklch(var(--pc)/0.25))}.stroke-primary-content\/30{stroke:var(--fallback-pc,oklch(var(--pc)/0.3))}.stroke-primary-content\/40{stroke:var(--fallback-pc,oklch(var(--pc)/0.4))}.stroke-primary-content\/5{stroke:var(--fallback-pc,oklch(var(--pc)/0.05))}.stroke-primary-content\/50{stroke:var(--fallback-pc,oklch(var(--pc)/0.5))}.stroke-primary-content\/60{stroke:var(--fallback-pc,oklch(var(--pc)/0.6))}.stroke-primary-content\/70{stroke:var(--fallback-pc,oklch(var(--pc)/0.7))}.stroke-primary-content\/75{stroke:var(--fallback-pc,oklch(var(--pc)/0.75))}.stroke-primary-content\/80{stroke:var(--fallback-pc,oklch(var(--pc)/0.8))}.stroke-primary-content\/90{stroke:var(--fallback-pc,oklch(var(--pc)/0.9))}.stroke-primary-content\/95{stroke:var(--fallback-pc,oklch(var(--pc)/0.95))}.stroke-primary\/0{stroke:var(--fallback-p,oklch(var(--p)/0))}.stroke-primary\/10{stroke:var(--fallback-p,oklch(var(--p)/0.1))}.stroke-primary\/100{stroke:var(--fallback-p,oklch(var(--p)/1))}.stroke-primary\/20{stroke:var(--fallback-p,oklch(var(--p)/0.2))}.stroke-primary\/25{stroke:var(--fallback-p,oklch(var(--p)/0.25))}.stroke-primary\/30{stroke:var(--fallback-p,oklch(var(--p)/0.3))}.stroke-primary\/40{stroke:var(--fallback-p,oklch(var(--p)/0.4))}.stroke-primary\/5{stroke:var(--fallback-p,oklch(var(--p)/0.05))}.stroke-primary\/50{stroke:var(--fallback-p,oklch(var(--p)/0.5))}.stroke-primary\/60{stroke:var(--fallback-p,oklch(var(--p)/0.6))}.stroke-primary\/70{stroke:var(--fallback-p,oklch(var(--p)/0.7))}.stroke-primary\/75{stroke:var(--fallback-p,oklch(var(--p)/0.75))}.stroke-primary\/80{stroke:var(--fallback-p,oklch(var(--p)/0.8))}.stroke-primary\/90{stroke:var(--fallback-p,oklch(var(--p)/0.9))}.stroke-primary\/95{stroke:var(--fallback-p,oklch(var(--p)/0.95))}.stroke-secondary{stroke:var(--fallback-s,oklch(var(--s)/1))}.stroke-secondary-content{stroke:var(--fallback-sc,oklch(var(--sc)/1))}.stroke-secondary-content\/0{stroke:var(--fallback-sc,oklch(var(--sc)/0))}.stroke-secondary-content\/10{stroke:var(--fallback-sc,oklch(var(--sc)/0.1))}.stroke-secondary-content\/100{stroke:var(--fallback-sc,oklch(var(--sc)/1))}.stroke-secondary-content\/20{stroke:var(--fallback-sc,oklch(var(--sc)/0.2))}.stroke-secondary-content\/25{stroke:var(--fallback-sc,oklch(var(--sc)/0.25))}.stroke-secondary-content\/30{stroke:var(--fallback-sc,oklch(var(--sc)/0.3))}.stroke-secondary-content\/40{stroke:var(--fallback-sc,oklch(var(--sc)/0.4))}.stroke-secondary-content\/5{stroke:var(--fallback-sc,oklch(var(--sc)/0.05))}.stroke-secondary-content\/50{stroke:var(--fallback-sc,oklch(var(--sc)/0.5))}.stroke-secondary-content\/60{stroke:var(--fallback-sc,oklch(var(--sc)/0.6))}.stroke-secondary-content\/70{stroke:var(--fallback-sc,oklch(var(--sc)/0.7))}.stroke-secondary-content\/75{stroke:var(--fallback-sc,oklch(var(--sc)/0.75))}.stroke-secondary-content\/80{stroke:var(--fallback-sc,oklch(var(--sc)/0.8))}.stroke-secondary-content\/90{stroke:var(--fallback-sc,oklch(var(--sc)/0.9))}.stroke-secondary-content\/95{stroke:var(--fallback-sc,oklch(var(--sc)/0.95))}.stroke-secondary\/0{stroke:var(--fallback-s,oklch(var(--s)/0))}.stroke-secondary\/10{stroke:var(--fallback-s,oklch(var(--s)/0.1))}.stroke-secondary\/100{stroke:var(--fallback-s,oklch(var(--s)/1))}.stroke-secondary\/20{stroke:var(--fallback-s,oklch(var(--s)/0.2))}.stroke-secondary\/25{stroke:var(--fallback-s,oklch(var(--s)/0.25))}.stroke-secondary\/30{stroke:var(--fallback-s,oklch(var(--s)/0.3))}.stroke-secondary\/40{stroke:var(--fallback-s,oklch(var(--s)/0.4))}.stroke-secondary\/5{stroke:var(--fallback-s,oklch(var(--s)/0.05))}.stroke-secondary\/50{stroke:var(--fallback-s,oklch(var(--s)/0.5))}.stroke-secondary\/60{stroke:var(--fallback-s,oklch(var(--s)/0.6))}.stroke-secondary\/70{stroke:var(--fallback-s,oklch(var(--s)/0.7))}.stroke-secondary\/75{stroke:var(--fallback-s,oklch(var(--s)/0.75))}.stroke-secondary\/80{stroke:var(--fallback-s,oklch(var(--s)/0.8))}.stroke-secondary\/90{stroke:var(--fallback-s,oklch(var(--s)/0.9))}.stroke-secondary\/95{stroke:var(--fallback-s,oklch(var(--s)/0.95))}.stroke-success{stroke:var(--fallback-su,oklch(var(--su)/1))}.stroke-success-content{stroke:var(--fallback-suc,oklch(var(--suc)/1))}.stroke-success-content\/0{stroke:var(--fallback-suc,oklch(var(--suc)/0))}.stroke-success-content\/10{stroke:var(--fallback-suc,oklch(var(--suc)/0.1))}.stroke-success-content\/100{stroke:var(--fallback-suc,oklch(var(--suc)/1))}.stroke-success-content\/20{stroke:var(--fallback-suc,oklch(var(--suc)/0.2))}.stroke-success-content\/25{stroke:var(--fallback-suc,oklch(var(--suc)/0.25))}.stroke-success-content\/30{stroke:var(--fallback-suc,oklch(var(--suc)/0.3))}.stroke-success-content\/40{stroke:var(--fallback-suc,oklch(var(--suc)/0.4))}.stroke-success-content\/5{stroke:var(--fallback-suc,oklch(var(--suc)/0.05))}.stroke-success-content\/50{stroke:var(--fallback-suc,oklch(var(--suc)/0.5))}.stroke-success-content\/60{stroke:var(--fallback-suc,oklch(var(--suc)/0.6))}.stroke-success-content\/70{stroke:var(--fallback-suc,oklch(var(--suc)/0.7))}.stroke-success-content\/75{stroke:var(--fallback-suc,oklch(var(--suc)/0.75))}.stroke-success-content\/80{stroke:var(--fallback-suc,oklch(var(--suc)/0.8))}.stroke-success-content\/90{stroke:var(--fallback-suc,oklch(var(--suc)/0.9))}.stroke-success-content\/95{stroke:var(--fallback-suc,oklch(var(--suc)/0.95))}.stroke-success\/0{stroke:var(--fallback-su,oklch(var(--su)/0))}.stroke-success\/10{stroke:var(--fallback-su,oklch(var(--su)/0.1))}.stroke-success\/100{stroke:var(--fallback-su,oklch(var(--su)/1))}.stroke-success\/20{stroke:var(--fallback-su,oklch(var(--su)/0.2))}.stroke-success\/25{stroke:var(--fallback-su,oklch(var(--su)/0.25))}.stroke-success\/30{stroke:var(--fallback-su,oklch(var(--su)/0.3))}.stroke-success\/40{stroke:var(--fallback-su,oklch(var(--su)/0.4))}.stroke-success\/5{stroke:var(--fallback-su,oklch(var(--su)/0.05))}.stroke-success\/50{stroke:var(--fallback-su,oklch(var(--su)/0.5))}.stroke-success\/60{stroke:var(--fallback-su,oklch(var(--su)/0.6))}.stroke-success\/70{stroke:var(--fallback-su,oklch(var(--su)/0.7))}.stroke-success\/75{stroke:var(--fallback-su,oklch(var(--su)/0.75))}.stroke-success\/80{stroke:var(--fallback-su,oklch(var(--su)/0.8))}.stroke-success\/90{stroke:var(--fallback-su,oklch(var(--su)/0.9))}.stroke-success\/95{stroke:var(--fallback-su,oklch(var(--su)/0.95))}.stroke-transparent{stroke:transparent}.stroke-transparent\/0{stroke:rgb(0 0 0 / 0)}.stroke-transparent\/10{stroke:rgb(0 0 0 / 0.1)}.stroke-transparent\/100{stroke:rgb(0 0 0 / 1)}.stroke-transparent\/20{stroke:rgb(0 0 0 / 0.2)}.stroke-transparent\/25{stroke:rgb(0 0 0 / 0.25)}.stroke-transparent\/30{stroke:rgb(0 0 0 / 0.3)}.stroke-transparent\/40{stroke:rgb(0 0 0 / 0.4)}.stroke-transparent\/5{stroke:rgb(0 0 0 / 0.05)}.stroke-transparent\/50{stroke:rgb(0 0 0 / 0.5)}.stroke-transparent\/60{stroke:rgb(0 0 0 / 0.6)}.stroke-transparent\/70{stroke:rgb(0 0 0 / 0.7)}.stroke-transparent\/75{stroke:rgb(0 0 0 / 0.75)}.stroke-transparent\/80{stroke:rgb(0 0 0 / 0.8)}.stroke-transparent\/90{stroke:rgb(0 0 0 / 0.9)}.stroke-transparent\/95{stroke:rgb(0 0 0 / 0.95)}.stroke-warning{stroke:var(--fallback-wa,oklch(var(--wa)/1))}.stroke-warning-content{stroke:var(--fallback-wac,oklch(var(--wac)/1))}.stroke-warning-content\/0{stroke:var(--fallback-wac,oklch(var(--wac)/0))}.stroke-warning-content\/10{stroke:var(--fallback-wac,oklch(var(--wac)/0.1))}.stroke-warning-content\/100{stroke:var(--fallback-wac,oklch(var(--wac)/1))}.stroke-warning-content\/20{stroke:var(--fallback-wac,oklch(var(--wac)/0.2))}.stroke-warning-content\/25{stroke:var(--fallback-wac,oklch(var(--wac)/0.25))}.stroke-warning-content\/30{stroke:var(--fallback-wac,oklch(var(--wac)/0.3))}.stroke-warning-content\/40{stroke:var(--fallback-wac,oklch(var(--wac)/0.4))}.stroke-warning-content\/5{stroke:var(--fallback-wac,oklch(var(--wac)/0.05))}.stroke-warning-content\/50{stroke:var(--fallback-wac,oklch(var(--wac)/0.5))}.stroke-warning-content\/60{stroke:var(--fallback-wac,oklch(var(--wac)/0.6))}.stroke-warning-content\/70{stroke:var(--fallback-wac,oklch(var(--wac)/0.7))}.stroke-warning-content\/75{stroke:var(--fallback-wac,oklch(var(--wac)/0.75))}.stroke-warning-content\/80{stroke:var(--fallback-wac,oklch(var(--wac)/0.8))}.stroke-warning-content\/90{stroke:var(--fallback-wac,oklch(var(--wac)/0.9))}.stroke-warning-content\/95{stroke:var(--fallback-wac,oklch(var(--wac)/0.95))}.stroke-warning\/0{stroke:var(--fallback-wa,oklch(var(--wa)/0))}.stroke-warning\/10{stroke:var(--fallback-wa,oklch(var(--wa)/0.1))}.stroke-warning\/100{stroke:var(--fallback-wa,oklch(var(--wa)/1))}.stroke-warning\/20{stroke:var(--fallback-wa,oklch(var(--wa)/0.2))}.stroke-warning\/25{stroke:var(--fallback-wa,oklch(var(--wa)/0.25))}.stroke-warning\/30{stroke:var(--fallback-wa,oklch(var(--wa)/0.3))}.stroke-warning\/40{stroke:var(--fallback-wa,oklch(var(--wa)/0.4))}.stroke-warning\/5{stroke:var(--fallback-wa,oklch(var(--wa)/0.05))}.stroke-warning\/50{stroke:var(--fallback-wa,oklch(var(--wa)/0.5))}.stroke-warning\/60{stroke:var(--fallback-wa,oklch(var(--wa)/0.6))}.stroke-warning\/70{stroke:var(--fallback-wa,oklch(var(--wa)/0.7))}.stroke-warning\/75{stroke:var(--fallback-wa,oklch(var(--wa)/0.75))}.stroke-warning\/80{stroke:var(--fallback-wa,oklch(var(--wa)/0.8))}.stroke-warning\/90{stroke:var(--fallback-wa,oklch(var(--wa)/0.9))}.stroke-warning\/95{stroke:var(--fallback-wa,oklch(var(--wa)/0.95))}.text-accent{color:var(--fallback-a,oklch(var(--a)/1))}.text-accent-content{color:var(--fallback-ac,oklch(var(--ac)/1))}.text-accent-content\/0{color:var(--fallback-ac,oklch(var(--ac)/0))}.text-accent-content\/10{color:var(--fallback-ac,oklch(var(--ac)/.1))}.text-accent-content\/100{color:var(--fallback-ac,oklch(var(--ac)/1))}.text-accent-content\/20{color:var(--fallback-ac,oklch(var(--ac)/.2))}.text-accent-content\/25{color:var(--fallback-ac,oklch(var(--ac)/.25))}.text-accent-content\/30{color:var(--fallback-ac,oklch(var(--ac)/.3))}.text-accent-content\/40{color:var(--fallback-ac,oklch(var(--ac)/.4))}.text-accent-content\/5{color:var(--fallback-ac,oklch(var(--ac)/.05))}.text-accent-content\/50{color:var(--fallback-ac,oklch(var(--ac)/.5))}.text-accent-content\/60{color:var(--fallback-ac,oklch(var(--ac)/.6))}.text-accent-content\/70{color:var(--fallback-ac,oklch(var(--ac)/.7))}.text-accent-content\/75{color:var(--fallback-ac,oklch(var(--ac)/.75))}.text-accent-content\/80{color:var(--fallback-ac,oklch(var(--ac)/.8))}.text-accent-content\/90{color:var(--fallback-ac,oklch(var(--ac)/.9))}.text-accent-content\/95{color:var(--fallback-ac,oklch(var(--ac)/.95))}.text-accent\/0{color:var(--fallback-a,oklch(var(--a)/0))}.text-accent\/10{color:var(--fallback-a,oklch(var(--a)/.1))}.text-accent\/100{color:var(--fallback-a,oklch(var(--a)/1))}.text-accent\/20{color:var(--fallback-a,oklch(var(--a)/.2))}.text-accent\/25{color:var(--fallback-a,oklch(var(--a)/.25))}.text-accent\/30{color:var(--fallback-a,oklch(var(--a)/.3))}.text-accent\/40{color:var(--fallback-a,oklch(var(--a)/.4))}.text-accent\/5{color:var(--fallback-a,oklch(var(--a)/.05))}.text-accent\/50{color:var(--fallback-a,oklch(var(--a)/.5))}.text-accent\/60{color:var(--fallback-a,oklch(var(--a)/.6))}.text-accent\/70{color:var(--fallback-a,oklch(var(--a)/.7))}.text-accent\/75{color:var(--fallback-a,oklch(var(--a)/.75))}.text-accent\/80{color:var(--fallback-a,oklch(var(--a)/.8))}.text-accent\/90{color:var(--fallback-a,oklch(var(--a)/.9))}.text-accent\/95{color:var(--fallback-a,oklch(var(--a)/.95))}.text-base-100{color:var(--fallback-b1,oklch(var(--b1)/1))}.text-base-100\/0{color:var(--fallback-b1,oklch(var(--b1)/0))}.text-base-100\/10{color:var(--fallback-b1,oklch(var(--b1)/.1))}.text-base-100\/100{color:var(--fallback-b1,oklch(var(--b1)/1))}.text-base-100\/20{color:var(--fallback-b1,oklch(var(--b1)/.2))}.text-base-100\/25{color:var(--fallback-b1,oklch(var(--b1)/.25))}.text-base-100\/30{color:var(--fallback-b1,oklch(var(--b1)/.3))}.text-base-100\/40{color:var(--fallback-b1,oklch(var(--b1)/.4))}.text-base-100\/5{color:var(--fallback-b1,oklch(var(--b1)/.05))}.text-base-100\/50{color:var(--fallback-b1,oklch(var(--b1)/.5))}.text-base-100\/60{color:var(--fallback-b1,oklch(var(--b1)/.6))}.text-base-100\/70{color:var(--fallback-b1,oklch(var(--b1)/.7))}.text-base-100\/75{color:var(--fallback-b1,oklch(var(--b1)/.75))}.text-base-100\/80{color:var(--fallback-b1,oklch(var(--b1)/.8))}.text-base-100\/90{color:var(--fallback-b1,oklch(var(--b1)/.9))}.text-base-100\/95{color:var(--fallback-b1,oklch(var(--b1)/.95))}.text-base-200{color:var(--fallback-b2,oklch(var(--b2)/1))}.text-base-200\/0{color:var(--fallback-b2,oklch(var(--b2)/0))}.text-base-200\/10{color:var(--fallback-b2,oklch(var(--b2)/.1))}.text-base-200\/100{color:var(--fallback-b2,oklch(var(--b2)/1))}.text-base-200\/20{color:var(--fallback-b2,oklch(var(--b2)/.2))}.text-base-200\/25{color:var(--fallback-b2,oklch(var(--b2)/.25))}.text-base-200\/30{color:var(--fallback-b2,oklch(var(--b2)/.3))}.text-base-200\/40{color:var(--fallback-b2,oklch(var(--b2)/.4))}.text-base-200\/5{color:var(--fallback-b2,oklch(var(--b2)/.05))}.text-base-200\/50{color:var(--fallback-b2,oklch(var(--b2)/.5))}.text-base-200\/60{color:var(--fallback-b2,oklch(var(--b2)/.6))}.text-base-200\/70{color:var(--fallback-b2,oklch(var(--b2)/.7))}.text-base-200\/75{color:var(--fallback-b2,oklch(var(--b2)/.75))}.text-base-200\/80{color:var(--fallback-b2,oklch(var(--b2)/.8))}.text-base-200\/90{color:var(--fallback-b2,oklch(var(--b2)/.9))}.text-base-200\/95{color:var(--fallback-b2,oklch(var(--b2)/.95))}.text-base-300{color:var(--fallback-b3,oklch(var(--b3)/1))}.text-base-300\/0{color:var(--fallback-b3,oklch(var(--b3)/0))}.text-base-300\/10{color:var(--fallback-b3,oklch(var(--b3)/.1))}.text-base-300\/100{color:var(--fallback-b3,oklch(var(--b3)/1))}.text-base-300\/20{color:var(--fallback-b3,oklch(var(--b3)/.2))}.text-base-300\/25{color:var(--fallback-b3,oklch(var(--b3)/.25))}.text-base-300\/30{color:var(--fallback-b3,oklch(var(--b3)/.3))}.text-base-300\/40{color:var(--fallback-b3,oklch(var(--b3)/.4))}.text-base-300\/5{color:var(--fallback-b3,oklch(var(--b3)/.05))}.text-base-300\/50{color:var(--fallback-b3,oklch(var(--b3)/.5))}.text-base-300\/60{color:var(--fallback-b3,oklch(var(--b3)/.6))}.text-base-300\/70{color:var(--fallback-b3,oklch(var(--b3)/.7))}.text-base-300\/75{color:var(--fallback-b3,oklch(var(--b3)/.75))}.text-base-300\/80{color:var(--fallback-b3,oklch(var(--b3)/.8))}.text-base-300\/90{color:var(--fallback-b3,oklch(var(--b3)/.9))}.text-base-300\/95{color:var(--fallback-b3,oklch(var(--b3)/.95))}.text-base-content{color:var(--fallback-bc,oklch(var(--bc)/1))}.text-base-content\/0{color:var(--fallback-bc,oklch(var(--bc)/0))}.text-base-content\/10{color:var(--fallback-bc,oklch(var(--bc)/.1))}.text-base-content\/100{color:var(--fallback-bc,oklch(var(--bc)/1))}.text-base-content\/20{color:var(--fallback-bc,oklch(var(--bc)/.2))}.text-base-content\/25{color:var(--fallback-bc,oklch(var(--bc)/.25))}.text-base-content\/30{color:var(--fallback-bc,oklch(var(--bc)/.3))}.text-base-content\/40{color:var(--fallback-bc,oklch(var(--bc)/.4))}.text-base-content\/5{color:var(--fallback-bc,oklch(var(--bc)/.05))}.text-base-content\/50{color:var(--fallback-bc,oklch(var(--bc)/.5))}.text-base-content\/60{color:var(--fallback-bc,oklch(var(--bc)/.6))}.text-base-content\/70{color:var(--fallback-bc,oklch(var(--bc)/.7))}.text-base-content\/75{color:var(--fallback-bc,oklch(var(--bc)/.75))}.text-base-content\/80{color:var(--fallback-bc,oklch(var(--bc)/.8))}.text-base-content\/90{color:var(--fallback-bc,oklch(var(--bc)/.9))}.text-base-content\/95{color:var(--fallback-bc,oklch(var(--bc)/.95))}.text-current{color:currentColor}.text-error{color:var(--fallback-er,oklch(var(--er)/1))}.text-error-content{color:var(--fallback-erc,oklch(var(--erc)/1))}.text-error-content\/0{color:var(--fallback-erc,oklch(var(--erc)/0))}.text-error-content\/10{color:var(--fallback-erc,oklch(var(--erc)/.1))}.text-error-content\/100{color:var(--fallback-erc,oklch(var(--erc)/1))}.text-error-content\/20{color:var(--fallback-erc,oklch(var(--erc)/.2))}.text-error-content\/25{color:var(--fallback-erc,oklch(var(--erc)/.25))}.text-error-content\/30{color:var(--fallback-erc,oklch(var(--erc)/.3))}.text-error-content\/40{color:var(--fallback-erc,oklch(var(--erc)/.4))}.text-error-content\/5{color:var(--fallback-erc,oklch(var(--erc)/.05))}.text-error-content\/50{color:var(--fallback-erc,oklch(var(--erc)/.5))}.text-error-content\/60{color:var(--fallback-erc,oklch(var(--erc)/.6))}.text-error-content\/70{color:var(--fallback-erc,oklch(var(--erc)/.7))}.text-error-content\/75{color:var(--fallback-erc,oklch(var(--erc)/.75))}.text-error-content\/80{color:var(--fallback-erc,oklch(var(--erc)/.8))}.text-error-content\/90{color:var(--fallback-erc,oklch(var(--erc)/.9))}.text-error-content\/95{color:var(--fallback-erc,oklch(var(--erc)/.95))}.text-error\/0{color:var(--fallback-er,oklch(var(--er)/0))}.text-error\/10{color:var(--fallback-er,oklch(var(--er)/.1))}.text-error\/100{color:var(--fallback-er,oklch(var(--er)/1))}.text-error\/20{color:var(--fallback-er,oklch(var(--er)/.2))}.text-error\/25{color:var(--fallback-er,oklch(var(--er)/.25))}.text-error\/30{color:var(--fallback-er,oklch(var(--er)/.3))}.text-error\/40{color:var(--fallback-er,oklch(var(--er)/.4))}.text-error\/5{color:var(--fallback-er,oklch(var(--er)/.05))}.text-error\/50{color:var(--fallback-er,oklch(var(--er)/.5))}.text-error\/60{color:var(--fallback-er,oklch(var(--er)/.6))}.text-error\/70{color:var(--fallback-er,oklch(var(--er)/.7))}.text-error\/75{color:var(--fallback-er,oklch(var(--er)/.75))}.text-error\/80{color:var(--fallback-er,oklch(var(--er)/.8))}.text-error\/90{color:var(--fallback-er,oklch(var(--er)/.9))}.text-error\/95{color:var(--fallback-er,oklch(var(--er)/.95))}.text-info{color:var(--fallback-in,oklch(var(--in)/1))}.text-info-content{color:var(--fallback-inc,oklch(var(--inc)/1))}.text-info-content\/0{color:var(--fallback-inc,oklch(var(--inc)/0))}.text-info-content\/10{color:var(--fallback-inc,oklch(var(--inc)/.1))}.text-info-content\/100{color:var(--fallback-inc,oklch(var(--inc)/1))}.text-info-content\/20{color:var(--fallback-inc,oklch(var(--inc)/.2))}.text-info-content\/25{color:var(--fallback-inc,oklch(var(--inc)/.25))}.text-info-content\/30{color:var(--fallback-inc,oklch(var(--inc)/.3))}.text-info-content\/40{color:var(--fallback-inc,oklch(var(--inc)/.4))}.text-info-content\/5{color:var(--fallback-inc,oklch(var(--inc)/.05))}.text-info-content\/50{color:var(--fallback-inc,oklch(var(--inc)/.5))}.text-info-content\/60{color:var(--fallback-inc,oklch(var(--inc)/.6))}.text-info-content\/70{color:var(--fallback-inc,oklch(var(--inc)/.7))}.text-info-content\/75{color:var(--fallback-inc,oklch(var(--inc)/.75))}.text-info-content\/80{color:var(--fallback-inc,oklch(var(--inc)/.8))}.text-info-content\/90{color:var(--fallback-inc,oklch(var(--inc)/.9))}.text-info-content\/95{color:var(--fallback-inc,oklch(var(--inc)/.95))}.text-info\/0{color:var(--fallback-in,oklch(var(--in)/0))}.text-info\/10{color:var(--fallback-in,oklch(var(--in)/.1))}.text-info\/100{color:var(--fallback-in,oklch(var(--in)/1))}.text-info\/20{color:var(--fallback-in,oklch(var(--in)/.2))}.text-info\/25{color:var(--fallback-in,oklch(var(--in)/.25))}.text-info\/30{color:var(--fallback-in,oklch(var(--in)/.3))}.text-info\/40{color:var(--fallback-in,oklch(var(--in)/.4))}.text-info\/5{color:var(--fallback-in,oklch(var(--in)/.05))}.text-info\/50{color:var(--fallback-in,oklch(var(--in)/.5))}.text-info\/60{color:var(--fallback-in,oklch(var(--in)/.6))}.text-info\/70{color:var(--fallback-in,oklch(var(--in)/.7))}.text-info\/75{color:var(--fallback-in,oklch(var(--in)/.75))}.text-info\/80{color:var(--fallback-in,oklch(var(--in)/.8))}.text-info\/90{color:var(--fallback-in,oklch(var(--in)/.9))}.text-info\/95{color:var(--fallback-in,oklch(var(--in)/.95))}.text-neutral{color:var(--fallback-n,oklch(var(--n)/1))}.text-neutral-content{color:var(--fallback-nc,oklch(var(--nc)/1))}.text-neutral-content\/0{color:var(--fallback-nc,oklch(var(--nc)/0))}.text-neutral-content\/10{color:var(--fallback-nc,oklch(var(--nc)/.1))}.text-neutral-content\/100{color:var(--fallback-nc,oklch(var(--nc)/1))}.text-neutral-content\/20{color:var(--fallback-nc,oklch(var(--nc)/.2))}.text-neutral-content\/25{color:var(--fallback-nc,oklch(var(--nc)/.25))}.text-neutral-content\/30{color:var(--fallback-nc,oklch(var(--nc)/.3))}.text-neutral-content\/40{color:var(--fallback-nc,oklch(var(--nc)/.4))}.text-neutral-content\/5{color:var(--fallback-nc,oklch(var(--nc)/.05))}.text-neutral-content\/50{color:var(--fallback-nc,oklch(var(--nc)/.5))}.text-neutral-content\/60{color:var(--fallback-nc,oklch(var(--nc)/.6))}.text-neutral-content\/70{color:var(--fallback-nc,oklch(var(--nc)/.7))}.text-neutral-content\/75{color:var(--fallback-nc,oklch(var(--nc)/.75))}.text-neutral-content\/80{color:var(--fallback-nc,oklch(var(--nc)/.8))}.text-neutral-content\/90{color:var(--fallback-nc,oklch(var(--nc)/.9))}.text-neutral-content\/95{color:var(--fallback-nc,oklch(var(--nc)/.95))}.text-neutral\/0{color:var(--fallback-n,oklch(var(--n)/0))}.text-neutral\/10{color:var(--fallback-n,oklch(var(--n)/.1))}.text-neutral\/100{color:var(--fallback-n,oklch(var(--n)/1))}.text-neutral\/20{color:var(--fallback-n,oklch(var(--n)/.2))}.text-neutral\/25{color:var(--fallback-n,oklch(var(--n)/.25))}.text-neutral\/30{color:var(--fallback-n,oklch(var(--n)/.3))}.text-neutral\/40{color:var(--fallback-n,oklch(var(--n)/.4))}.text-neutral\/5{color:var(--fallback-n,oklch(var(--n)/.05))}.text-neutral\/50{color:var(--fallback-n,oklch(var(--n)/.5))}.text-neutral\/60{color:var(--fallback-n,oklch(var(--n)/.6))}.text-neutral\/70{color:var(--fallback-n,oklch(var(--n)/.7))}.text-neutral\/75{color:var(--fallback-n,oklch(var(--n)/.75))}.text-neutral\/80{color:var(--fallback-n,oklch(var(--n)/.8))}.text-neutral\/90{color:var(--fallback-n,oklch(var(--n)/.9))}.text-neutral\/95{color:var(--fallback-n,oklch(var(--n)/.95))}.text-primary{color:var(--fallback-p,oklch(var(--p)/1))}.text-primary-content{color:var(--fallback-pc,oklch(var(--pc)/1))}.text-primary-content\/0{color:var(--fallback-pc,oklch(var(--pc)/0))}.text-primary-content\/10{color:var(--fallback-pc,oklch(var(--pc)/.1))}.text-primary-content\/100{color:var(--fallback-pc,oklch(var(--pc)/1))}.text-primary-content\/20{color:var(--fallback-pc,oklch(var(--pc)/.2))}.text-primary-content\/25{color:var(--fallback-pc,oklch(var(--pc)/.25))}.text-primary-content\/30{color:var(--fallback-pc,oklch(var(--pc)/.3))}.text-primary-content\/40{color:var(--fallback-pc,oklch(var(--pc)/.4))}.text-primary-content\/5{color:var(--fallback-pc,oklch(var(--pc)/.05))}.text-primary-content\/50{color:var(--fallback-pc,oklch(var(--pc)/.5))}.text-primary-content\/60{color:var(--fallback-pc,oklch(var(--pc)/.6))}.text-primary-content\/70{color:var(--fallback-pc,oklch(var(--pc)/.7))}.text-primary-content\/75{color:var(--fallback-pc,oklch(var(--pc)/.75))}.text-primary-content\/80{color:var(--fallback-pc,oklch(var(--pc)/.8))}.text-primary-content\/90{color:var(--fallback-pc,oklch(var(--pc)/.9))}.text-primary-content\/95{color:var(--fallback-pc,oklch(var(--pc)/.95))}.text-primary\/0{color:var(--fallback-p,oklch(var(--p)/0))}.text-primary\/10{color:var(--fallback-p,oklch(var(--p)/.1))}.text-primary\/100{color:var(--fallback-p,oklch(var(--p)/1))}.text-primary\/20{color:var(--fallback-p,oklch(var(--p)/.2))}.text-primary\/25{color:var(--fallback-p,oklch(var(--p)/.25))}.text-primary\/30{color:var(--fallback-p,oklch(var(--p)/.3))}.text-primary\/40{color:var(--fallback-p,oklch(var(--p)/.4))}.text-primary\/5{color:var(--fallback-p,oklch(var(--p)/.05))}.text-primary\/50{color:var(--fallback-p,oklch(var(--p)/.5))}.text-primary\/60{color:var(--fallback-p,oklch(var(--p)/.6))}.text-primary\/70{color:var(--fallback-p,oklch(var(--p)/.7))}.text-primary\/75{color:var(--fallback-p,oklch(var(--p)/.75))}.text-primary\/80{color:var(--fallback-p,oklch(var(--p)/.8))}.text-primary\/90{color:var(--fallback-p,oklch(var(--p)/.9))}.text-primary\/95{color:var(--fallback-p,oklch(var(--p)/.95))}.text-secondary{color:var(--fallback-s,oklch(var(--s)/1))}.text-secondary-content{color:var(--fallback-sc,oklch(var(--sc)/1))}.text-secondary-content\/0{color:var(--fallback-sc,oklch(var(--sc)/0))}.text-secondary-content\/10{color:var(--fallback-sc,oklch(var(--sc)/.1))}.text-secondary-content\/100{color:var(--fallback-sc,oklch(var(--sc)/1))}.text-secondary-content\/20{color:var(--fallback-sc,oklch(var(--sc)/.2))}.text-secondary-content\/25{color:var(--fallback-sc,oklch(var(--sc)/.25))}.text-secondary-content\/30{color:var(--fallback-sc,oklch(var(--sc)/.3))}.text-secondary-content\/40{color:var(--fallback-sc,oklch(var(--sc)/.4))}.text-secondary-content\/5{color:var(--fallback-sc,oklch(var(--sc)/.05))}.text-secondary-content\/50{color:var(--fallback-sc,oklch(var(--sc)/.5))}.text-secondary-content\/60{color:var(--fallback-sc,oklch(var(--sc)/.6))}.text-secondary-content\/70{color:var(--fallback-sc,oklch(var(--sc)/.7))}.text-secondary-content\/75{color:var(--fallback-sc,oklch(var(--sc)/.75))}.text-secondary-content\/80{color:var(--fallback-sc,oklch(var(--sc)/.8))}.text-secondary-content\/90{color:var(--fallback-sc,oklch(var(--sc)/.9))}.text-secondary-content\/95{color:var(--fallback-sc,oklch(var(--sc)/.95))}.text-secondary\/0{color:var(--fallback-s,oklch(var(--s)/0))}.text-secondary\/10{color:var(--fallback-s,oklch(var(--s)/.1))}.text-secondary\/100{color:var(--fallback-s,oklch(var(--s)/1))}.text-secondary\/20{color:var(--fallback-s,oklch(var(--s)/.2))}.text-secondary\/25{color:var(--fallback-s,oklch(var(--s)/.25))}.text-secondary\/30{color:var(--fallback-s,oklch(var(--s)/.3))}.text-secondary\/40{color:var(--fallback-s,oklch(var(--s)/.4))}.text-secondary\/5{color:var(--fallback-s,oklch(var(--s)/.05))}.text-secondary\/50{color:var(--fallback-s,oklch(var(--s)/.5))}.text-secondary\/60{color:var(--fallback-s,oklch(var(--s)/.6))}.text-secondary\/70{color:var(--fallback-s,oklch(var(--s)/.7))}.text-secondary\/75{color:var(--fallback-s,oklch(var(--s)/.75))}.text-secondary\/80{color:var(--fallback-s,oklch(var(--s)/.8))}.text-secondary\/90{color:var(--fallback-s,oklch(var(--s)/.9))}.text-secondary\/95{color:var(--fallback-s,oklch(var(--s)/.95))}.text-success{color:var(--fallback-su,oklch(var(--su)/1))}.text-success-content{color:var(--fallback-suc,oklch(var(--suc)/1))}.text-success-content\/0{color:var(--fallback-suc,oklch(var(--suc)/0))}.text-success-content\/10{color:var(--fallback-suc,oklch(var(--suc)/.1))}.text-success-content\/100{color:var(--fallback-suc,oklch(var(--suc)/1))}.text-success-content\/20{color:var(--fallback-suc,oklch(var(--suc)/.2))}.text-success-content\/25{color:var(--fallback-suc,oklch(var(--suc)/.25))}.text-success-content\/30{color:var(--fallback-suc,oklch(var(--suc)/.3))}.text-success-content\/40{color:var(--fallback-suc,oklch(var(--suc)/.4))}.text-success-content\/5{color:var(--fallback-suc,oklch(var(--suc)/.05))}.text-success-content\/50{color:var(--fallback-suc,oklch(var(--suc)/.5))}.text-success-content\/60{color:var(--fallback-suc,oklch(var(--suc)/.6))}.text-success-content\/70{color:var(--fallback-suc,oklch(var(--suc)/.7))}.text-success-content\/75{color:var(--fallback-suc,oklch(var(--suc)/.75))}.text-success-content\/80{color:var(--fallback-suc,oklch(var(--suc)/.8))}.text-success-content\/90{color:var(--fallback-suc,oklch(var(--suc)/.9))}.text-success-content\/95{color:var(--fallback-suc,oklch(var(--suc)/.95))}.text-success\/0{color:var(--fallback-su,oklch(var(--su)/0))}.text-success\/10{color:var(--fallback-su,oklch(var(--su)/.1))}.text-success\/100{color:var(--fallback-su,oklch(var(--su)/1))}.text-success\/20{color:var(--fallback-su,oklch(var(--su)/.2))}.text-success\/25{color:var(--fallback-su,oklch(var(--su)/.25))}.text-success\/30{color:var(--fallback-su,oklch(var(--su)/.3))}.text-success\/40{color:var(--fallback-su,oklch(var(--su)/.4))}.text-success\/5{color:var(--fallback-su,oklch(var(--su)/.05))}.text-success\/50{color:var(--fallback-su,oklch(var(--su)/.5))}.text-success\/60{color:var(--fallback-su,oklch(var(--su)/.6))}.text-success\/70{color:var(--fallback-su,oklch(var(--su)/.7))}.text-success\/75{color:var(--fallback-su,oklch(var(--su)/.75))}.text-success\/80{color:var(--fallback-su,oklch(var(--su)/.8))}.text-success\/90{color:var(--fallback-su,oklch(var(--su)/.9))}.text-success\/95{color:var(--fallback-su,oklch(var(--su)/.95))}.text-transparent{color:transparent}.text-transparent\/0{color:rgb(0 0 0 / 0)}.text-transparent\/10{color:rgb(0 0 0 / .1)}.text-transparent\/100{color:rgb(0 0 0 / 1)}.text-transparent\/20{color:rgb(0 0 0 / .2)}.text-transparent\/25{color:rgb(0 0 0 / .25)}.text-transparent\/30{color:rgb(0 0 0 / .3)}.text-transparent\/40{color:rgb(0 0 0 / .4)}.text-transparent\/5{color:rgb(0 0 0 / .05)}.text-transparent\/50{color:rgb(0 0 0 / .5)}.text-transparent\/60{color:rgb(0 0 0 / .6)}.text-transparent\/70{color:rgb(0 0 0 / .7)}.text-transparent\/75{color:rgb(0 0 0 / .75)}.text-transparent\/80{color:rgb(0 0 0 / .8)}.text-transparent\/90{color:rgb(0 0 0 / .9)}.text-transparent\/95{color:rgb(0 0 0 / .95)}.text-warning{color:var(--fallback-wa,oklch(var(--wa)/1))}.text-warning-content{color:var(--fallback-wac,oklch(var(--wac)/1))}.text-warning-content\/0{color:var(--fallback-wac,oklch(var(--wac)/0))}.text-warning-content\/10{color:var(--fallback-wac,oklch(var(--wac)/.1))}.text-warning-content\/100{color:var(--fallback-wac,oklch(var(--wac)/1))}.text-warning-content\/20{color:var(--fallback-wac,oklch(var(--wac)/.2))}.text-warning-content\/25{color:var(--fallback-wac,oklch(var(--wac)/.25))}.text-warning-content\/30{color:var(--fallback-wac,oklch(var(--wac)/.3))}.text-warning-content\/40{color:var(--fallback-wac,oklch(var(--wac)/.4))}.text-warning-content\/5{color:var(--fallback-wac,oklch(var(--wac)/.05))}.text-warning-content\/50{color:var(--fallback-wac,oklch(var(--wac)/.5))}.text-warning-content\/60{color:var(--fallback-wac,oklch(var(--wac)/.6))}.text-warning-content\/70{color:var(--fallback-wac,oklch(var(--wac)/.7))}.text-warning-content\/75{color:var(--fallback-wac,oklch(var(--wac)/.75))}.text-warning-content\/80{color:var(--fallback-wac,oklch(var(--wac)/.8))}.text-warning-content\/90{color:var(--fallback-wac,oklch(var(--wac)/.9))}.text-warning-content\/95{color:var(--fallback-wac,oklch(var(--wac)/.95))}.text-warning\/0{color:var(--fallback-wa,oklch(var(--wa)/0))}.text-warning\/10{color:var(--fallback-wa,oklch(var(--wa)/.1))}.text-warning\/100{color:var(--fallback-wa,oklch(var(--wa)/1))}.text-warning\/20{color:var(--fallback-wa,oklch(var(--wa)/.2))}.text-warning\/25{color:var(--fallback-wa,oklch(var(--wa)/.25))}.text-warning\/30{color:var(--fallback-wa,oklch(var(--wa)/.3))}.text-warning\/40{color:var(--fallback-wa,oklch(var(--wa)/.4))}.text-warning\/5{color:var(--fallback-wa,oklch(var(--wa)/.05))}.text-warning\/50{color:var(--fallback-wa,oklch(var(--wa)/.5))}.text-warning\/60{color:var(--fallback-wa,oklch(var(--wa)/.6))}.text-warning\/70{color:var(--fallback-wa,oklch(var(--wa)/.7))}.text-warning\/75{color:var(--fallback-wa,oklch(var(--wa)/.75))}.text-warning\/80{color:var(--fallback-wa,oklch(var(--wa)/.8))}.text-warning\/90{color:var(--fallback-wa,oklch(var(--wa)/.9))}.text-warning\/95{color:var(--fallback-wa,oklch(var(--wa)/.95))}.placeholder-accent::placeholder{color:var(--fallback-a,oklch(var(--a)/1))}.placeholder-accent-content::placeholder{color:var(--fallback-ac,oklch(var(--ac)/1))}.placeholder-accent-content\/0::placeholder{color:var(--fallback-ac,oklch(var(--ac)/0))}.placeholder-accent-content\/10::placeholder{color:var(--fallback-ac,oklch(var(--ac)/.1))}.placeholder-accent-content\/100::placeholder{color:var(--fallback-ac,oklch(var(--ac)/1))}.placeholder-accent-content\/20::placeholder{color:var(--fallback-ac,oklch(var(--ac)/.2))}.placeholder-accent-content\/25::placeholder{color:var(--fallback-ac,oklch(var(--ac)/.25))}.placeholder-accent-content\/30::placeholder{color:var(--fallback-ac,oklch(var(--ac)/.3))}.placeholder-accent-content\/40::placeholder{color:var(--fallback-ac,oklch(var(--ac)/.4))}.placeholder-accent-content\/5::placeholder{color:var(--fallback-ac,oklch(var(--ac)/.05))}.placeholder-accent-content\/50::placeholder{color:var(--fallback-ac,oklch(var(--ac)/.5))}.placeholder-accent-content\/60::placeholder{color:var(--fallback-ac,oklch(var(--ac)/.6))}.placeholder-accent-content\/70::placeholder{color:var(--fallback-ac,oklch(var(--ac)/.7))}.placeholder-accent-content\/75::placeholder{color:var(--fallback-ac,oklch(var(--ac)/.75))}.placeholder-accent-content\/80::placeholder{color:var(--fallback-ac,oklch(var(--ac)/.8))}.placeholder-accent-content\/90::placeholder{color:var(--fallback-ac,oklch(var(--ac)/.9))}.placeholder-accent-content\/95::placeholder{color:var(--fallback-ac,oklch(var(--ac)/.95))}.placeholder-accent\/0::placeholder{color:var(--fallback-a,oklch(var(--a)/0))}.placeholder-accent\/10::placeholder{color:var(--fallback-a,oklch(var(--a)/.1))}.placeholder-accent\/100::placeholder{color:var(--fallback-a,oklch(var(--a)/1))}.placeholder-accent\/20::placeholder{color:var(--fallback-a,oklch(var(--a)/.2))}.placeholder-accent\/25::placeholder{color:var(--fallback-a,oklch(var(--a)/.25))}.placeholder-accent\/30::placeholder{color:var(--fallback-a,oklch(var(--a)/.3))}.placeholder-accent\/40::placeholder{color:var(--fallback-a,oklch(var(--a)/.4))}.placeholder-accent\/5::placeholder{color:var(--fallback-a,oklch(var(--a)/.05))}.placeholder-accent\/50::placeholder{color:var(--fallback-a,oklch(var(--a)/.5))}.placeholder-accent\/60::placeholder{color:var(--fallback-a,oklch(var(--a)/.6))}.placeholder-accent\/70::placeholder{color:var(--fallback-a,oklch(var(--a)/.7))}.placeholder-accent\/75::placeholder{color:var(--fallback-a,oklch(var(--a)/.75))}.placeholder-accent\/80::placeholder{color:var(--fallback-a,oklch(var(--a)/.8))}.placeholder-accent\/90::placeholder{color:var(--fallback-a,oklch(var(--a)/.9))}.placeholder-accent\/95::placeholder{color:var(--fallback-a,oklch(var(--a)/.95))}.placeholder-base-100::placeholder{color:var(--fallback-b1,oklch(var(--b1)/1))}.placeholder-base-100\/0::placeholder{color:var(--fallback-b1,oklch(var(--b1)/0))}.placeholder-base-100\/10::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.1))}.placeholder-base-100\/100::placeholder{color:var(--fallback-b1,oklch(var(--b1)/1))}.placeholder-base-100\/20::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.2))}.placeholder-base-100\/25::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.25))}.placeholder-base-100\/30::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.3))}.placeholder-base-100\/40::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.4))}.placeholder-base-100\/5::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.05))}.placeholder-base-100\/50::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.5))}.placeholder-base-100\/60::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.6))}.placeholder-base-100\/70::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.7))}.placeholder-base-100\/75::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.75))}.placeholder-base-100\/80::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.8))}.placeholder-base-100\/90::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.9))}.placeholder-base-100\/95::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.95))}.placeholder-base-200::placeholder{color:var(--fallback-b2,oklch(var(--b2)/1))}.placeholder-base-200\/0::placeholder{color:var(--fallback-b2,oklch(var(--b2)/0))}.placeholder-base-200\/10::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.1))}.placeholder-base-200\/100::placeholder{color:var(--fallback-b2,oklch(var(--b2)/1))}.placeholder-base-200\/20::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.2))}.placeholder-base-200\/25::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.25))}.placeholder-base-200\/30::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.3))}.placeholder-base-200\/40::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.4))}.placeholder-base-200\/5::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.05))}.placeholder-base-200\/50::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.5))}.placeholder-base-200\/60::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.6))}.placeholder-base-200\/70::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.7))}.placeholder-base-200\/75::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.75))}.placeholder-base-200\/80::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.8))}.placeholder-base-200\/90::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.9))}.placeholder-base-200\/95::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.95))}.placeholder-base-300::placeholder{color:var(--fallback-b3,oklch(var(--b3)/1))}.placeholder-base-300\/0::placeholder{color:var(--fallback-b3,oklch(var(--b3)/0))}.placeholder-base-300\/10::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.1))}.placeholder-base-300\/100::placeholder{color:var(--fallback-b3,oklch(var(--b3)/1))}.placeholder-base-300\/20::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.2))}.placeholder-base-300\/25::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.25))}.placeholder-base-300\/30::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.3))}.placeholder-base-300\/40::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.4))}.placeholder-base-300\/5::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.05))}.placeholder-base-300\/50::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.5))}.placeholder-base-300\/60::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.6))}.placeholder-base-300\/70::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.7))}.placeholder-base-300\/75::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.75))}.placeholder-base-300\/80::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.8))}.placeholder-base-300\/90::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.9))}.placeholder-base-300\/95::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.95))}.placeholder-base-content::placeholder{color:var(--fallback-bc,oklch(var(--bc)/1))}.placeholder-base-content\/0::placeholder{color:var(--fallback-bc,oklch(var(--bc)/0))}.placeholder-base-content\/10::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.1))}.placeholder-base-content\/100::placeholder{color:var(--fallback-bc,oklch(var(--bc)/1))}.placeholder-base-content\/20::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.2))}.placeholder-base-content\/25::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.25))}.placeholder-base-content\/30::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.3))}.placeholder-base-content\/40::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.4))}.placeholder-base-content\/5::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.05))}.placeholder-base-content\/50::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.5))}.placeholder-base-content\/60::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.6))}.placeholder-base-content\/70::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.7))}.placeholder-base-content\/75::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.75))}.placeholder-base-content\/80::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.8))}.placeholder-base-content\/90::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.9))}.placeholder-base-content\/95::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.95))}.placeholder-current::placeholder{color:currentColor}.placeholder-error::placeholder{color:var(--fallback-er,oklch(var(--er)/1))}.placeholder-error-content::placeholder{color:var(--fallback-erc,oklch(var(--erc)/1))}.placeholder-error-content\/0::placeholder{color:var(--fallback-erc,oklch(var(--erc)/0))}.placeholder-error-content\/10::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.1))}.placeholder-error-content\/100::placeholder{color:var(--fallback-erc,oklch(var(--erc)/1))}.placeholder-error-content\/20::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.2))}.placeholder-error-content\/25::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.25))}.placeholder-error-content\/30::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.3))}.placeholder-error-content\/40::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.4))}.placeholder-error-content\/5::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.05))}.placeholder-error-content\/50::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.5))}.placeholder-error-content\/60::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.6))}.placeholder-error-content\/70::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.7))}.placeholder-error-content\/75::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.75))}.placeholder-error-content\/80::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.8))}.placeholder-error-content\/90::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.9))}.placeholder-error-content\/95::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.95))}.placeholder-error\/0::placeholder{color:var(--fallback-er,oklch(var(--er)/0))}.placeholder-error\/10::placeholder{color:var(--fallback-er,oklch(var(--er)/.1))}.placeholder-error\/100::placeholder{color:var(--fallback-er,oklch(var(--er)/1))}.placeholder-error\/20::placeholder{color:var(--fallback-er,oklch(var(--er)/.2))}.placeholder-error\/25::placeholder{color:var(--fallback-er,oklch(var(--er)/.25))}.placeholder-error\/30::placeholder{color:var(--fallback-er,oklch(var(--er)/.3))}.placeholder-error\/40::placeholder{color:var(--fallback-er,oklch(var(--er)/.4))}.placeholder-error\/5::placeholder{color:var(--fallback-er,oklch(var(--er)/.05))}.placeholder-error\/50::placeholder{color:var(--fallback-er,oklch(var(--er)/.5))}.placeholder-error\/60::placeholder{color:var(--fallback-er,oklch(var(--er)/.6))}.placeholder-error\/70::placeholder{color:var(--fallback-er,oklch(var(--er)/.7))}.placeholder-error\/75::placeholder{color:var(--fallback-er,oklch(var(--er)/.75))}.placeholder-error\/80::placeholder{color:var(--fallback-er,oklch(var(--er)/.8))}.placeholder-error\/90::placeholder{color:var(--fallback-er,oklch(var(--er)/.9))}.placeholder-error\/95::placeholder{color:var(--fallback-er,oklch(var(--er)/.95))}.placeholder-info::placeholder{color:var(--fallback-in,oklch(var(--in)/1))}.placeholder-info-content::placeholder{color:var(--fallback-inc,oklch(var(--inc)/1))}.placeholder-info-content\/0::placeholder{color:var(--fallback-inc,oklch(var(--inc)/0))}.placeholder-info-content\/10::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.1))}.placeholder-info-content\/100::placeholder{color:var(--fallback-inc,oklch(var(--inc)/1))}.placeholder-info-content\/20::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.2))}.placeholder-info-content\/25::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.25))}.placeholder-info-content\/30::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.3))}.placeholder-info-content\/40::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.4))}.placeholder-info-content\/5::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.05))}.placeholder-info-content\/50::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.5))}.placeholder-info-content\/60::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.6))}.placeholder-info-content\/70::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.7))}.placeholder-info-content\/75::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.75))}.placeholder-info-content\/80::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.8))}.placeholder-info-content\/90::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.9))}.placeholder-info-content\/95::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.95))}.placeholder-info\/0::placeholder{color:var(--fallback-in,oklch(var(--in)/0))}.placeholder-info\/10::placeholder{color:var(--fallback-in,oklch(var(--in)/.1))}.placeholder-info\/100::placeholder{color:var(--fallback-in,oklch(var(--in)/1))}.placeholder-info\/20::placeholder{color:var(--fallback-in,oklch(var(--in)/.2))}.placeholder-info\/25::placeholder{color:var(--fallback-in,oklch(var(--in)/.25))}.placeholder-info\/30::placeholder{color:var(--fallback-in,oklch(var(--in)/.3))}.placeholder-info\/40::placeholder{color:var(--fallback-in,oklch(var(--in)/.4))}.placeholder-info\/5::placeholder{color:var(--fallback-in,oklch(var(--in)/.05))}.placeholder-info\/50::placeholder{color:var(--fallback-in,oklch(var(--in)/.5))}.placeholder-info\/60::placeholder{color:var(--fallback-in,oklch(var(--in)/.6))}.placeholder-info\/70::placeholder{color:var(--fallback-in,oklch(var(--in)/.7))}.placeholder-info\/75::placeholder{color:var(--fallback-in,oklch(var(--in)/.75))}.placeholder-info\/80::placeholder{color:var(--fallback-in,oklch(var(--in)/.8))}.placeholder-info\/90::placeholder{color:var(--fallback-in,oklch(var(--in)/.9))}.placeholder-info\/95::placeholder{color:var(--fallback-in,oklch(var(--in)/.95))}.placeholder-neutral::placeholder{color:var(--fallback-n,oklch(var(--n)/1))}.placeholder-neutral-content::placeholder{color:var(--fallback-nc,oklch(var(--nc)/1))}.placeholder-neutral-content\/0::placeholder{color:var(--fallback-nc,oklch(var(--nc)/0))}.placeholder-neutral-content\/10::placeholder{color:var(--fallback-nc,oklch(var(--nc)/.1))}.placeholder-neutral-content\/100::placeholder{color:var(--fallback-nc,oklch(var(--nc)/1))}.placeholder-neutral-content\/20::placeholder{color:var(--fallback-nc,oklch(var(--nc)/.2))}.placeholder-neutral-content\/25::placeholder{color:var(--fallback-nc,oklch(var(--nc)/.25))}.placeholder-neutral-content\/30::placeholder{color:var(--fallback-nc,oklch(var(--nc)/.3))}.placeholder-neutral-content\/40::placeholder{color:var(--fallback-nc,oklch(var(--nc)/.4))}.placeholder-neutral-content\/5::placeholder{color:var(--fallback-nc,oklch(var(--nc)/.05))}.placeholder-neutral-content\/50::placeholder{color:var(--fallback-nc,oklch(var(--nc)/.5))}.placeholder-neutral-content\/60::placeholder{color:var(--fallback-nc,oklch(var(--nc)/.6))}.placeholder-neutral-content\/70::placeholder{color:var(--fallback-nc,oklch(var(--nc)/.7))}.placeholder-neutral-content\/75::placeholder{color:var(--fallback-nc,oklch(var(--nc)/.75))}.placeholder-neutral-content\/80::placeholder{color:var(--fallback-nc,oklch(var(--nc)/.8))}.placeholder-neutral-content\/90::placeholder{color:var(--fallback-nc,oklch(var(--nc)/.9))}.placeholder-neutral-content\/95::placeholder{color:var(--fallback-nc,oklch(var(--nc)/.95))}.placeholder-neutral\/0::placeholder{color:var(--fallback-n,oklch(var(--n)/0))}.placeholder-neutral\/10::placeholder{color:var(--fallback-n,oklch(var(--n)/.1))}.placeholder-neutral\/100::placeholder{color:var(--fallback-n,oklch(var(--n)/1))}.placeholder-neutral\/20::placeholder{color:var(--fallback-n,oklch(var(--n)/.2))}.placeholder-neutral\/25::placeholder{color:var(--fallback-n,oklch(var(--n)/.25))}.placeholder-neutral\/30::placeholder{color:var(--fallback-n,oklch(var(--n)/.3))}.placeholder-neutral\/40::placeholder{color:var(--fallback-n,oklch(var(--n)/.4))}.placeholder-neutral\/5::placeholder{color:var(--fallback-n,oklch(var(--n)/.05))}.placeholder-neutral\/50::placeholder{color:var(--fallback-n,oklch(var(--n)/.5))}.placeholder-neutral\/60::placeholder{color:var(--fallback-n,oklch(var(--n)/.6))}.placeholder-neutral\/70::placeholder{color:var(--fallback-n,oklch(var(--n)/.7))}.placeholder-neutral\/75::placeholder{color:var(--fallback-n,oklch(var(--n)/.75))}.placeholder-neutral\/80::placeholder{color:var(--fallback-n,oklch(var(--n)/.8))}.placeholder-neutral\/90::placeholder{color:var(--fallback-n,oklch(var(--n)/.9))}.placeholder-neutral\/95::placeholder{color:var(--fallback-n,oklch(var(--n)/.95))}.placeholder-primary::placeholder{color:var(--fallback-p,oklch(var(--p)/1))}.placeholder-primary-content::placeholder{color:var(--fallback-pc,oklch(var(--pc)/1))}.placeholder-primary-content\/0::placeholder{color:var(--fallback-pc,oklch(var(--pc)/0))}.placeholder-primary-content\/10::placeholder{color:var(--fallback-pc,oklch(var(--pc)/.1))}.placeholder-primary-content\/100::placeholder{color:var(--fallback-pc,oklch(var(--pc)/1))}.placeholder-primary-content\/20::placeholder{color:var(--fallback-pc,oklch(var(--pc)/.2))}.placeholder-primary-content\/25::placeholder{color:var(--fallback-pc,oklch(var(--pc)/.25))}.placeholder-primary-content\/30::placeholder{color:var(--fallback-pc,oklch(var(--pc)/.3))}.placeholder-primary-content\/40::placeholder{color:var(--fallback-pc,oklch(var(--pc)/.4))}.placeholder-primary-content\/5::placeholder{color:var(--fallback-pc,oklch(var(--pc)/.05))}.placeholder-primary-content\/50::placeholder{color:var(--fallback-pc,oklch(var(--pc)/.5))}.placeholder-primary-content\/60::placeholder{color:var(--fallback-pc,oklch(var(--pc)/.6))}.placeholder-primary-content\/70::placeholder{color:var(--fallback-pc,oklch(var(--pc)/.7))}.placeholder-primary-content\/75::placeholder{color:var(--fallback-pc,oklch(var(--pc)/.75))}.placeholder-primary-content\/80::placeholder{color:var(--fallback-pc,oklch(var(--pc)/.8))}.placeholder-primary-content\/90::placeholder{color:var(--fallback-pc,oklch(var(--pc)/.9))}.placeholder-primary-content\/95::placeholder{color:var(--fallback-pc,oklch(var(--pc)/.95))}.placeholder-primary\/0::placeholder{color:var(--fallback-p,oklch(var(--p)/0))}.placeholder-primary\/10::placeholder{color:var(--fallback-p,oklch(var(--p)/.1))}.placeholder-primary\/100::placeholder{color:var(--fallback-p,oklch(var(--p)/1))}.placeholder-primary\/20::placeholder{color:var(--fallback-p,oklch(var(--p)/.2))}.placeholder-primary\/25::placeholder{color:var(--fallback-p,oklch(var(--p)/.25))}.placeholder-primary\/30::placeholder{color:var(--fallback-p,oklch(var(--p)/.3))}.placeholder-primary\/40::placeholder{color:var(--fallback-p,oklch(var(--p)/.4))}.placeholder-primary\/5::placeholder{color:var(--fallback-p,oklch(var(--p)/.05))}.placeholder-primary\/50::placeholder{color:var(--fallback-p,oklch(var(--p)/.5))}.placeholder-primary\/60::placeholder{color:var(--fallback-p,oklch(var(--p)/.6))}.placeholder-primary\/70::placeholder{color:var(--fallback-p,oklch(var(--p)/.7))}.placeholder-primary\/75::placeholder{color:var(--fallback-p,oklch(var(--p)/.75))}.placeholder-primary\/80::placeholder{color:var(--fallback-p,oklch(var(--p)/.8))}.placeholder-primary\/90::placeholder{color:var(--fallback-p,oklch(var(--p)/.9))}.placeholder-primary\/95::placeholder{color:var(--fallback-p,oklch(var(--p)/.95))}.placeholder-secondary::placeholder{color:var(--fallback-s,oklch(var(--s)/1))}.placeholder-secondary-content::placeholder{color:var(--fallback-sc,oklch(var(--sc)/1))}.placeholder-secondary-content\/0::placeholder{color:var(--fallback-sc,oklch(var(--sc)/0))}.placeholder-secondary-content\/10::placeholder{color:var(--fallback-sc,oklch(var(--sc)/.1))}.placeholder-secondary-content\/100::placeholder{color:var(--fallback-sc,oklch(var(--sc)/1))}.placeholder-secondary-content\/20::placeholder{color:var(--fallback-sc,oklch(var(--sc)/.2))}.placeholder-secondary-content\/25::placeholder{color:var(--fallback-sc,oklch(var(--sc)/.25))}.placeholder-secondary-content\/30::placeholder{color:var(--fallback-sc,oklch(var(--sc)/.3))}.placeholder-secondary-content\/40::placeholder{color:var(--fallback-sc,oklch(var(--sc)/.4))}.placeholder-secondary-content\/5::placeholder{color:var(--fallback-sc,oklch(var(--sc)/.05))}.placeholder-secondary-content\/50::placeholder{color:var(--fallback-sc,oklch(var(--sc)/.5))}.placeholder-secondary-content\/60::placeholder{color:var(--fallback-sc,oklch(var(--sc)/.6))}.placeholder-secondary-content\/70::placeholder{color:var(--fallback-sc,oklch(var(--sc)/.7))}.placeholder-secondary-content\/75::placeholder{color:var(--fallback-sc,oklch(var(--sc)/.75))}.placeholder-secondary-content\/80::placeholder{color:var(--fallback-sc,oklch(var(--sc)/.8))}.placeholder-secondary-content\/90::placeholder{color:var(--fallback-sc,oklch(var(--sc)/.9))}.placeholder-secondary-content\/95::placeholder{color:var(--fallback-sc,oklch(var(--sc)/.95))}.placeholder-secondary\/0::placeholder{color:var(--fallback-s,oklch(var(--s)/0))}.placeholder-secondary\/10::placeholder{color:var(--fallback-s,oklch(var(--s)/.1))}.placeholder-secondary\/100::placeholder{color:var(--fallback-s,oklch(var(--s)/1))}.placeholder-secondary\/20::placeholder{color:var(--fallback-s,oklch(var(--s)/.2))}.placeholder-secondary\/25::placeholder{color:var(--fallback-s,oklch(var(--s)/.25))}.placeholder-secondary\/30::placeholder{color:var(--fallback-s,oklch(var(--s)/.3))}.placeholder-secondary\/40::placeholder{color:var(--fallback-s,oklch(var(--s)/.4))}.placeholder-secondary\/5::placeholder{color:var(--fallback-s,oklch(var(--s)/.05))}.placeholder-secondary\/50::placeholder{color:var(--fallback-s,oklch(var(--s)/.5))}.placeholder-secondary\/60::placeholder{color:var(--fallback-s,oklch(var(--s)/.6))}.placeholder-secondary\/70::placeholder{color:var(--fallback-s,oklch(var(--s)/.7))}.placeholder-secondary\/75::placeholder{color:var(--fallback-s,oklch(var(--s)/.75))}.placeholder-secondary\/80::placeholder{color:var(--fallback-s,oklch(var(--s)/.8))}.placeholder-secondary\/90::placeholder{color:var(--fallback-s,oklch(var(--s)/.9))}.placeholder-secondary\/95::placeholder{color:var(--fallback-s,oklch(var(--s)/.95))}.placeholder-success::placeholder{color:var(--fallback-su,oklch(var(--su)/1))}.placeholder-success-content::placeholder{color:var(--fallback-suc,oklch(var(--suc)/1))}.placeholder-success-content\/0::placeholder{color:var(--fallback-suc,oklch(var(--suc)/0))}.placeholder-success-content\/10::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.1))}.placeholder-success-content\/100::placeholder{color:var(--fallback-suc,oklch(var(--suc)/1))}.placeholder-success-content\/20::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.2))}.placeholder-success-content\/25::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.25))}.placeholder-success-content\/30::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.3))}.placeholder-success-content\/40::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.4))}.placeholder-success-content\/5::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.05))}.placeholder-success-content\/50::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.5))}.placeholder-success-content\/60::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.6))}.placeholder-success-content\/70::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.7))}.placeholder-success-content\/75::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.75))}.placeholder-success-content\/80::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.8))}.placeholder-success-content\/90::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.9))}.placeholder-success-content\/95::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.95))}.placeholder-success\/0::placeholder{color:var(--fallback-su,oklch(var(--su)/0))}.placeholder-success\/10::placeholder{color:var(--fallback-su,oklch(var(--su)/.1))}.placeholder-success\/100::placeholder{color:var(--fallback-su,oklch(var(--su)/1))}.placeholder-success\/20::placeholder{color:var(--fallback-su,oklch(var(--su)/.2))}.placeholder-success\/25::placeholder{color:var(--fallback-su,oklch(var(--su)/.25))}.placeholder-success\/30::placeholder{color:var(--fallback-su,oklch(var(--su)/.3))}.placeholder-success\/40::placeholder{color:var(--fallback-su,oklch(var(--su)/.4))}.placeholder-success\/5::placeholder{color:var(--fallback-su,oklch(var(--su)/.05))}.placeholder-success\/50::placeholder{color:var(--fallback-su,oklch(var(--su)/.5))}.placeholder-success\/60::placeholder{color:var(--fallback-su,oklch(var(--su)/.6))}.placeholder-success\/70::placeholder{color:var(--fallback-su,oklch(var(--su)/.7))}.placeholder-success\/75::placeholder{color:var(--fallback-su,oklch(var(--su)/.75))}.placeholder-success\/80::placeholder{color:var(--fallback-su,oklch(var(--su)/.8))}.placeholder-success\/90::placeholder{color:var(--fallback-su,oklch(var(--su)/.9))}.placeholder-success\/95::placeholder{color:var(--fallback-su,oklch(var(--su)/.95))}.placeholder-transparent::placeholder{color:transparent}.placeholder-transparent\/0::placeholder{color:rgb(0 0 0 / 0)}.placeholder-transparent\/10::placeholder{color:rgb(0 0 0 / .1)}.placeholder-transparent\/100::placeholder{color:rgb(0 0 0 / 1)}.placeholder-transparent\/20::placeholder{color:rgb(0 0 0 / .2)}.placeholder-transparent\/25::placeholder{color:rgb(0 0 0 / .25)}.placeholder-transparent\/30::placeholder{color:rgb(0 0 0 / .3)}.placeholder-transparent\/40::placeholder{color:rgb(0 0 0 / .4)}.placeholder-transparent\/5::placeholder{color:rgb(0 0 0 / .05)}.placeholder-transparent\/50::placeholder{color:rgb(0 0 0 / .5)}.placeholder-transparent\/60::placeholder{color:rgb(0 0 0 / .6)}.placeholder-transparent\/70::placeholder{color:rgb(0 0 0 / .7)}.placeholder-transparent\/75::placeholder{color:rgb(0 0 0 / .75)}.placeholder-transparent\/80::placeholder{color:rgb(0 0 0 / .8)}.placeholder-transparent\/90::placeholder{color:rgb(0 0 0 / .9)}.placeholder-transparent\/95::placeholder{color:rgb(0 0 0 / .95)}.placeholder-warning::placeholder{color:var(--fallback-wa,oklch(var(--wa)/1))}.placeholder-warning-content::placeholder{color:var(--fallback-wac,oklch(var(--wac)/1))}.placeholder-warning-content\/0::placeholder{color:var(--fallback-wac,oklch(var(--wac)/0))}.placeholder-warning-content\/10::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.1))}.placeholder-warning-content\/100::placeholder{color:var(--fallback-wac,oklch(var(--wac)/1))}.placeholder-warning-content\/20::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.2))}.placeholder-warning-content\/25::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.25))}.placeholder-warning-content\/30::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.3))}.placeholder-warning-content\/40::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.4))}.placeholder-warning-content\/5::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.05))}.placeholder-warning-content\/50::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.5))}.placeholder-warning-content\/60::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.6))}.placeholder-warning-content\/70::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.7))}.placeholder-warning-content\/75::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.75))}.placeholder-warning-content\/80::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.8))}.placeholder-warning-content\/90::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.9))}.placeholder-warning-content\/95::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.95))}.placeholder-warning\/0::placeholder{color:var(--fallback-wa,oklch(var(--wa)/0))}.placeholder-warning\/10::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.1))}.placeholder-warning\/100::placeholder{color:var(--fallback-wa,oklch(var(--wa)/1))}.placeholder-warning\/20::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.2))}.placeholder-warning\/25::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.25))}.placeholder-warning\/30::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.3))}.placeholder-warning\/40::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.4))}.placeholder-warning\/5::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.05))}.placeholder-warning\/50::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.5))}.placeholder-warning\/60::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.6))}.placeholder-warning\/70::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.7))}.placeholder-warning\/75::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.75))}.placeholder-warning\/80::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.8))}.placeholder-warning\/90::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.9))}.placeholder-warning\/95::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.95))}.outline-accent{outline-color:var(--fallback-a,oklch(var(--a)/1))}.outline-accent-content{outline-color:var(--fallback-ac,oklch(var(--ac)/1))}.outline-accent-content\/0{outline-color:var(--fallback-ac,oklch(var(--ac)/0))}.outline-accent-content\/10{outline-color:var(--fallback-ac,oklch(var(--ac)/.1))}.outline-accent-content\/100{outline-color:var(--fallback-ac,oklch(var(--ac)/1))}.outline-accent-content\/20{outline-color:var(--fallback-ac,oklch(var(--ac)/.2))}.outline-accent-content\/25{outline-color:var(--fallback-ac,oklch(var(--ac)/.25))}.outline-accent-content\/30{outline-color:var(--fallback-ac,oklch(var(--ac)/.3))}.outline-accent-content\/40{outline-color:var(--fallback-ac,oklch(var(--ac)/.4))}.outline-accent-content\/5{outline-color:var(--fallback-ac,oklch(var(--ac)/.05))}.outline-accent-content\/50{outline-color:var(--fallback-ac,oklch(var(--ac)/.5))}.outline-accent-content\/60{outline-color:var(--fallback-ac,oklch(var(--ac)/.6))}.outline-accent-content\/70{outline-color:var(--fallback-ac,oklch(var(--ac)/.7))}.outline-accent-content\/75{outline-color:var(--fallback-ac,oklch(var(--ac)/.75))}.outline-accent-content\/80{outline-color:var(--fallback-ac,oklch(var(--ac)/.8))}.outline-accent-content\/90{outline-color:var(--fallback-ac,oklch(var(--ac)/.9))}.outline-accent-content\/95{outline-color:var(--fallback-ac,oklch(var(--ac)/.95))}.outline-accent\/0{outline-color:var(--fallback-a,oklch(var(--a)/0))}.outline-accent\/10{outline-color:var(--fallback-a,oklch(var(--a)/.1))}.outline-accent\/100{outline-color:var(--fallback-a,oklch(var(--a)/1))}.outline-accent\/20{outline-color:var(--fallback-a,oklch(var(--a)/.2))}.outline-accent\/25{outline-color:var(--fallback-a,oklch(var(--a)/.25))}.outline-accent\/30{outline-color:var(--fallback-a,oklch(var(--a)/.3))}.outline-accent\/40{outline-color:var(--fallback-a,oklch(var(--a)/.4))}.outline-accent\/5{outline-color:var(--fallback-a,oklch(var(--a)/.05))}.outline-accent\/50{outline-color:var(--fallback-a,oklch(var(--a)/.5))}.outline-accent\/60{outline-color:var(--fallback-a,oklch(var(--a)/.6))}.outline-accent\/70{outline-color:var(--fallback-a,oklch(var(--a)/.7))}.outline-accent\/75{outline-color:var(--fallback-a,oklch(var(--a)/.75))}.outline-accent\/80{outline-color:var(--fallback-a,oklch(var(--a)/.8))}.outline-accent\/90{outline-color:var(--fallback-a,oklch(var(--a)/.9))}.outline-accent\/95{outline-color:var(--fallback-a,oklch(var(--a)/.95))}.outline-base-100{outline-color:var(--fallback-b1,oklch(var(--b1)/1))}.outline-base-100\/0{outline-color:var(--fallback-b1,oklch(var(--b1)/0))}.outline-base-100\/10{outline-color:var(--fallback-b1,oklch(var(--b1)/.1))}.outline-base-100\/100{outline-color:var(--fallback-b1,oklch(var(--b1)/1))}.outline-base-100\/20{outline-color:var(--fallback-b1,oklch(var(--b1)/.2))}.outline-base-100\/25{outline-color:var(--fallback-b1,oklch(var(--b1)/.25))}.outline-base-100\/30{outline-color:var(--fallback-b1,oklch(var(--b1)/.3))}.outline-base-100\/40{outline-color:var(--fallback-b1,oklch(var(--b1)/.4))}.outline-base-100\/5{outline-color:var(--fallback-b1,oklch(var(--b1)/.05))}.outline-base-100\/50{outline-color:var(--fallback-b1,oklch(var(--b1)/.5))}.outline-base-100\/60{outline-color:var(--fallback-b1,oklch(var(--b1)/.6))}.outline-base-100\/70{outline-color:var(--fallback-b1,oklch(var(--b1)/.7))}.outline-base-100\/75{outline-color:var(--fallback-b1,oklch(var(--b1)/.75))}.outline-base-100\/80{outline-color:var(--fallback-b1,oklch(var(--b1)/.8))}.outline-base-100\/90{outline-color:var(--fallback-b1,oklch(var(--b1)/.9))}.outline-base-100\/95{outline-color:var(--fallback-b1,oklch(var(--b1)/.95))}.outline-base-200{outline-color:var(--fallback-b2,oklch(var(--b2)/1))}.outline-base-200\/0{outline-color:var(--fallback-b2,oklch(var(--b2)/0))}.outline-base-200\/10{outline-color:var(--fallback-b2,oklch(var(--b2)/.1))}.outline-base-200\/100{outline-color:var(--fallback-b2,oklch(var(--b2)/1))}.outline-base-200\/20{outline-color:var(--fallback-b2,oklch(var(--b2)/.2))}.outline-base-200\/25{outline-color:var(--fallback-b2,oklch(var(--b2)/.25))}.outline-base-200\/30{outline-color:var(--fallback-b2,oklch(var(--b2)/.3))}.outline-base-200\/40{outline-color:var(--fallback-b2,oklch(var(--b2)/.4))}.outline-base-200\/5{outline-color:var(--fallback-b2,oklch(var(--b2)/.05))}.outline-base-200\/50{outline-color:var(--fallback-b2,oklch(var(--b2)/.5))}.outline-base-200\/60{outline-color:var(--fallback-b2,oklch(var(--b2)/.6))}.outline-base-200\/70{outline-color:var(--fallback-b2,oklch(var(--b2)/.7))}.outline-base-200\/75{outline-color:var(--fallback-b2,oklch(var(--b2)/.75))}.outline-base-200\/80{outline-color:var(--fallback-b2,oklch(var(--b2)/.8))}.outline-base-200\/90{outline-color:var(--fallback-b2,oklch(var(--b2)/.9))}.outline-base-200\/95{outline-color:var(--fallback-b2,oklch(var(--b2)/.95))}.outline-base-300{outline-color:var(--fallback-b3,oklch(var(--b3)/1))}.outline-base-300\/0{outline-color:var(--fallback-b3,oklch(var(--b3)/0))}.outline-base-300\/10{outline-color:var(--fallback-b3,oklch(var(--b3)/.1))}.outline-base-300\/100{outline-color:var(--fallback-b3,oklch(var(--b3)/1))}.outline-base-300\/20{outline-color:var(--fallback-b3,oklch(var(--b3)/.2))}.outline-base-300\/25{outline-color:var(--fallback-b3,oklch(var(--b3)/.25))}.outline-base-300\/30{outline-color:var(--fallback-b3,oklch(var(--b3)/.3))}.outline-base-300\/40{outline-color:var(--fallback-b3,oklch(var(--b3)/.4))}.outline-base-300\/5{outline-color:var(--fallback-b3,oklch(var(--b3)/.05))}.outline-base-300\/50{outline-color:var(--fallback-b3,oklch(var(--b3)/.5))}.outline-base-300\/60{outline-color:var(--fallback-b3,oklch(var(--b3)/.6))}.outline-base-300\/70{outline-color:var(--fallback-b3,oklch(var(--b3)/.7))}.outline-base-300\/75{outline-color:var(--fallback-b3,oklch(var(--b3)/.75))}.outline-base-300\/80{outline-color:var(--fallback-b3,oklch(var(--b3)/.8))}.outline-base-300\/90{outline-color:var(--fallback-b3,oklch(var(--b3)/.9))}.outline-base-300\/95{outline-color:var(--fallback-b3,oklch(var(--b3)/.95))}.outline-base-content{outline-color:var(--fallback-bc,oklch(var(--bc)/1))}.outline-base-content\/0{outline-color:var(--fallback-bc,oklch(var(--bc)/0))}.outline-base-content\/10{outline-color:var(--fallback-bc,oklch(var(--bc)/.1))}.outline-base-content\/100{outline-color:var(--fallback-bc,oklch(var(--bc)/1))}.outline-base-content\/20{outline-color:var(--fallback-bc,oklch(var(--bc)/.2))}.outline-base-content\/25{outline-color:var(--fallback-bc,oklch(var(--bc)/.25))}.outline-base-content\/30{outline-color:var(--fallback-bc,oklch(var(--bc)/.3))}.outline-base-content\/40{outline-color:var(--fallback-bc,oklch(var(--bc)/.4))}.outline-base-content\/5{outline-color:var(--fallback-bc,oklch(var(--bc)/.05))}.outline-base-content\/50{outline-color:var(--fallback-bc,oklch(var(--bc)/.5))}.outline-base-content\/60{outline-color:var(--fallback-bc,oklch(var(--bc)/.6))}.outline-base-content\/70{outline-color:var(--fallback-bc,oklch(var(--bc)/.7))}.outline-base-content\/75{outline-color:var(--fallback-bc,oklch(var(--bc)/.75))}.outline-base-content\/80{outline-color:var(--fallback-bc,oklch(var(--bc)/.8))}.outline-base-content\/90{outline-color:var(--fallback-bc,oklch(var(--bc)/.9))}.outline-base-content\/95{outline-color:var(--fallback-bc,oklch(var(--bc)/.95))}.outline-current{outline-color:currentColor}.outline-error{outline-color:var(--fallback-er,oklch(var(--er)/1))}.outline-error-content{outline-color:var(--fallback-erc,oklch(var(--erc)/1))}.outline-error-content\/0{outline-color:var(--fallback-erc,oklch(var(--erc)/0))}.outline-error-content\/10{outline-color:var(--fallback-erc,oklch(var(--erc)/.1))}.outline-error-content\/100{outline-color:var(--fallback-erc,oklch(var(--erc)/1))}.outline-error-content\/20{outline-color:var(--fallback-erc,oklch(var(--erc)/.2))}.outline-error-content\/25{outline-color:var(--fallback-erc,oklch(var(--erc)/.25))}.outline-error-content\/30{outline-color:var(--fallback-erc,oklch(var(--erc)/.3))}.outline-error-content\/40{outline-color:var(--fallback-erc,oklch(var(--erc)/.4))}.outline-error-content\/5{outline-color:var(--fallback-erc,oklch(var(--erc)/.05))}.outline-error-content\/50{outline-color:var(--fallback-erc,oklch(var(--erc)/.5))}.outline-error-content\/60{outline-color:var(--fallback-erc,oklch(var(--erc)/.6))}.outline-error-content\/70{outline-color:var(--fallback-erc,oklch(var(--erc)/.7))}.outline-error-content\/75{outline-color:var(--fallback-erc,oklch(var(--erc)/.75))}.outline-error-content\/80{outline-color:var(--fallback-erc,oklch(var(--erc)/.8))}.outline-error-content\/90{outline-color:var(--fallback-erc,oklch(var(--erc)/.9))}.outline-error-content\/95{outline-color:var(--fallback-erc,oklch(var(--erc)/.95))}.outline-error\/0{outline-color:var(--fallback-er,oklch(var(--er)/0))}.outline-error\/10{outline-color:var(--fallback-er,oklch(var(--er)/.1))}.outline-error\/100{outline-color:var(--fallback-er,oklch(var(--er)/1))}.outline-error\/20{outline-color:var(--fallback-er,oklch(var(--er)/.2))}.outline-error\/25{outline-color:var(--fallback-er,oklch(var(--er)/.25))}.outline-error\/30{outline-color:var(--fallback-er,oklch(var(--er)/.3))}.outline-error\/40{outline-color:var(--fallback-er,oklch(var(--er)/.4))}.outline-error\/5{outline-color:var(--fallback-er,oklch(var(--er)/.05))}.outline-error\/50{outline-color:var(--fallback-er,oklch(var(--er)/.5))}.outline-error\/60{outline-color:var(--fallback-er,oklch(var(--er)/.6))}.outline-error\/70{outline-color:var(--fallback-er,oklch(var(--er)/.7))}.outline-error\/75{outline-color:var(--fallback-er,oklch(var(--er)/.75))}.outline-error\/80{outline-color:var(--fallback-er,oklch(var(--er)/.8))}.outline-error\/90{outline-color:var(--fallback-er,oklch(var(--er)/.9))}.outline-error\/95{outline-color:var(--fallback-er,oklch(var(--er)/.95))}.outline-info{outline-color:var(--fallback-in,oklch(var(--in)/1))}.outline-info-content{outline-color:var(--fallback-inc,oklch(var(--inc)/1))}.outline-info-content\/0{outline-color:var(--fallback-inc,oklch(var(--inc)/0))}.outline-info-content\/10{outline-color:var(--fallback-inc,oklch(var(--inc)/.1))}.outline-info-content\/100{outline-color:var(--fallback-inc,oklch(var(--inc)/1))}.outline-info-content\/20{outline-color:var(--fallback-inc,oklch(var(--inc)/.2))}.outline-info-content\/25{outline-color:var(--fallback-inc,oklch(var(--inc)/.25))}.outline-info-content\/30{outline-color:var(--fallback-inc,oklch(var(--inc)/.3))}.outline-info-content\/40{outline-color:var(--fallback-inc,oklch(var(--inc)/.4))}.outline-info-content\/5{outline-color:var(--fallback-inc,oklch(var(--inc)/.05))}.outline-info-content\/50{outline-color:var(--fallback-inc,oklch(var(--inc)/.5))}.outline-info-content\/60{outline-color:var(--fallback-inc,oklch(var(--inc)/.6))}.outline-info-content\/70{outline-color:var(--fallback-inc,oklch(var(--inc)/.7))}.outline-info-content\/75{outline-color:var(--fallback-inc,oklch(var(--inc)/.75))}.outline-info-content\/80{outline-color:var(--fallback-inc,oklch(var(--inc)/.8))}.outline-info-content\/90{outline-color:var(--fallback-inc,oklch(var(--inc)/.9))}.outline-info-content\/95{outline-color:var(--fallback-inc,oklch(var(--inc)/.95))}.outline-info\/0{outline-color:var(--fallback-in,oklch(var(--in)/0))}.outline-info\/10{outline-color:var(--fallback-in,oklch(var(--in)/.1))}.outline-info\/100{outline-color:var(--fallback-in,oklch(var(--in)/1))}.outline-info\/20{outline-color:var(--fallback-in,oklch(var(--in)/.2))}.outline-info\/25{outline-color:var(--fallback-in,oklch(var(--in)/.25))}.outline-info\/30{outline-color:var(--fallback-in,oklch(var(--in)/.3))}.outline-info\/40{outline-color:var(--fallback-in,oklch(var(--in)/.4))}.outline-info\/5{outline-color:var(--fallback-in,oklch(var(--in)/.05))}.outline-info\/50{outline-color:var(--fallback-in,oklch(var(--in)/.5))}.outline-info\/60{outline-color:var(--fallback-in,oklch(var(--in)/.6))}.outline-info\/70{outline-color:var(--fallback-in,oklch(var(--in)/.7))}.outline-info\/75{outline-color:var(--fallback-in,oklch(var(--in)/.75))}.outline-info\/80{outline-color:var(--fallback-in,oklch(var(--in)/.8))}.outline-info\/90{outline-color:var(--fallback-in,oklch(var(--in)/.9))}.outline-info\/95{outline-color:var(--fallback-in,oklch(var(--in)/.95))}.outline-neutral{outline-color:var(--fallback-n,oklch(var(--n)/1))}.outline-neutral-content{outline-color:var(--fallback-nc,oklch(var(--nc)/1))}.outline-neutral-content\/0{outline-color:var(--fallback-nc,oklch(var(--nc)/0))}.outline-neutral-content\/10{outline-color:var(--fallback-nc,oklch(var(--nc)/.1))}.outline-neutral-content\/100{outline-color:var(--fallback-nc,oklch(var(--nc)/1))}.outline-neutral-content\/20{outline-color:var(--fallback-nc,oklch(var(--nc)/.2))}.outline-neutral-content\/25{outline-color:var(--fallback-nc,oklch(var(--nc)/.25))}.outline-neutral-content\/30{outline-color:var(--fallback-nc,oklch(var(--nc)/.3))}.outline-neutral-content\/40{outline-color:var(--fallback-nc,oklch(var(--nc)/.4))}.outline-neutral-content\/5{outline-color:var(--fallback-nc,oklch(var(--nc)/.05))}.outline-neutral-content\/50{outline-color:var(--fallback-nc,oklch(var(--nc)/.5))}.outline-neutral-content\/60{outline-color:var(--fallback-nc,oklch(var(--nc)/.6))}.outline-neutral-content\/70{outline-color:var(--fallback-nc,oklch(var(--nc)/.7))}.outline-neutral-content\/75{outline-color:var(--fallback-nc,oklch(var(--nc)/.75))}.outline-neutral-content\/80{outline-color:var(--fallback-nc,oklch(var(--nc)/.8))}.outline-neutral-content\/90{outline-color:var(--fallback-nc,oklch(var(--nc)/.9))}.outline-neutral-content\/95{outline-color:var(--fallback-nc,oklch(var(--nc)/.95))}.outline-neutral\/0{outline-color:var(--fallback-n,oklch(var(--n)/0))}.outline-neutral\/10{outline-color:var(--fallback-n,oklch(var(--n)/.1))}.outline-neutral\/100{outline-color:var(--fallback-n,oklch(var(--n)/1))}.outline-neutral\/20{outline-color:var(--fallback-n,oklch(var(--n)/.2))}.outline-neutral\/25{outline-color:var(--fallback-n,oklch(var(--n)/.25))}.outline-neutral\/30{outline-color:var(--fallback-n,oklch(var(--n)/.3))}.outline-neutral\/40{outline-color:var(--fallback-n,oklch(var(--n)/.4))}.outline-neutral\/5{outline-color:var(--fallback-n,oklch(var(--n)/.05))}.outline-neutral\/50{outline-color:var(--fallback-n,oklch(var(--n)/.5))}.outline-neutral\/60{outline-color:var(--fallback-n,oklch(var(--n)/.6))}.outline-neutral\/70{outline-color:var(--fallback-n,oklch(var(--n)/.7))}.outline-neutral\/75{outline-color:var(--fallback-n,oklch(var(--n)/.75))}.outline-neutral\/80{outline-color:var(--fallback-n,oklch(var(--n)/.8))}.outline-neutral\/90{outline-color:var(--fallback-n,oklch(var(--n)/.9))}.outline-neutral\/95{outline-color:var(--fallback-n,oklch(var(--n)/.95))}.outline-primary{outline-color:var(--fallback-p,oklch(var(--p)/1))}.outline-primary-content{outline-color:var(--fallback-pc,oklch(var(--pc)/1))}.outline-primary-content\/0{outline-color:var(--fallback-pc,oklch(var(--pc)/0))}.outline-primary-content\/10{outline-color:var(--fallback-pc,oklch(var(--pc)/.1))}.outline-primary-content\/100{outline-color:var(--fallback-pc,oklch(var(--pc)/1))}.outline-primary-content\/20{outline-color:var(--fallback-pc,oklch(var(--pc)/.2))}.outline-primary-content\/25{outline-color:var(--fallback-pc,oklch(var(--pc)/.25))}.outline-primary-content\/30{outline-color:var(--fallback-pc,oklch(var(--pc)/.3))}.outline-primary-content\/40{outline-color:var(--fallback-pc,oklch(var(--pc)/.4))}.outline-primary-content\/5{outline-color:var(--fallback-pc,oklch(var(--pc)/.05))}.outline-primary-content\/50{outline-color:var(--fallback-pc,oklch(var(--pc)/.5))}.outline-primary-content\/60{outline-color:var(--fallback-pc,oklch(var(--pc)/.6))}.outline-primary-content\/70{outline-color:var(--fallback-pc,oklch(var(--pc)/.7))}.outline-primary-content\/75{outline-color:var(--fallback-pc,oklch(var(--pc)/.75))}.outline-primary-content\/80{outline-color:var(--fallback-pc,oklch(var(--pc)/.8))}.outline-primary-content\/90{outline-color:var(--fallback-pc,oklch(var(--pc)/.9))}.outline-primary-content\/95{outline-color:var(--fallback-pc,oklch(var(--pc)/.95))}.outline-primary\/0{outline-color:var(--fallback-p,oklch(var(--p)/0))}.outline-primary\/10{outline-color:var(--fallback-p,oklch(var(--p)/.1))}.outline-primary\/100{outline-color:var(--fallback-p,oklch(var(--p)/1))}.outline-primary\/20{outline-color:var(--fallback-p,oklch(var(--p)/.2))}.outline-primary\/25{outline-color:var(--fallback-p,oklch(var(--p)/.25))}.outline-primary\/30{outline-color:var(--fallback-p,oklch(var(--p)/.3))}.outline-primary\/40{outline-color:var(--fallback-p,oklch(var(--p)/.4))}.outline-primary\/5{outline-color:var(--fallback-p,oklch(var(--p)/.05))}.outline-primary\/50{outline-color:var(--fallback-p,oklch(var(--p)/.5))}.outline-primary\/60{outline-color:var(--fallback-p,oklch(var(--p)/.6))}.outline-primary\/70{outline-color:var(--fallback-p,oklch(var(--p)/.7))}.outline-primary\/75{outline-color:var(--fallback-p,oklch(var(--p)/.75))}.outline-primary\/80{outline-color:var(--fallback-p,oklch(var(--p)/.8))}.outline-primary\/90{outline-color:var(--fallback-p,oklch(var(--p)/.9))}.outline-primary\/95{outline-color:var(--fallback-p,oklch(var(--p)/.95))}.outline-secondary{outline-color:var(--fallback-s,oklch(var(--s)/1))}.outline-secondary-content{outline-color:var(--fallback-sc,oklch(var(--sc)/1))}.outline-secondary-content\/0{outline-color:var(--fallback-sc,oklch(var(--sc)/0))}.outline-secondary-content\/10{outline-color:var(--fallback-sc,oklch(var(--sc)/.1))}.outline-secondary-content\/100{outline-color:var(--fallback-sc,oklch(var(--sc)/1))}.outline-secondary-content\/20{outline-color:var(--fallback-sc,oklch(var(--sc)/.2))}.outline-secondary-content\/25{outline-color:var(--fallback-sc,oklch(var(--sc)/.25))}.outline-secondary-content\/30{outline-color:var(--fallback-sc,oklch(var(--sc)/.3))}.outline-secondary-content\/40{outline-color:var(--fallback-sc,oklch(var(--sc)/.4))}.outline-secondary-content\/5{outline-color:var(--fallback-sc,oklch(var(--sc)/.05))}.outline-secondary-content\/50{outline-color:var(--fallback-sc,oklch(var(--sc)/.5))}.outline-secondary-content\/60{outline-color:var(--fallback-sc,oklch(var(--sc)/.6))}.outline-secondary-content\/70{outline-color:var(--fallback-sc,oklch(var(--sc)/.7))}.outline-secondary-content\/75{outline-color:var(--fallback-sc,oklch(var(--sc)/.75))}.outline-secondary-content\/80{outline-color:var(--fallback-sc,oklch(var(--sc)/.8))}.outline-secondary-content\/90{outline-color:var(--fallback-sc,oklch(var(--sc)/.9))}.outline-secondary-content\/95{outline-color:var(--fallback-sc,oklch(var(--sc)/.95))}.outline-secondary\/0{outline-color:var(--fallback-s,oklch(var(--s)/0))}.outline-secondary\/10{outline-color:var(--fallback-s,oklch(var(--s)/.1))}.outline-secondary\/100{outline-color:var(--fallback-s,oklch(var(--s)/1))}.outline-secondary\/20{outline-color:var(--fallback-s,oklch(var(--s)/.2))}.outline-secondary\/25{outline-color:var(--fallback-s,oklch(var(--s)/.25))}.outline-secondary\/30{outline-color:var(--fallback-s,oklch(var(--s)/.3))}.outline-secondary\/40{outline-color:var(--fallback-s,oklch(var(--s)/.4))}.outline-secondary\/5{outline-color:var(--fallback-s,oklch(var(--s)/.05))}.outline-secondary\/50{outline-color:var(--fallback-s,oklch(var(--s)/.5))}.outline-secondary\/60{outline-color:var(--fallback-s,oklch(var(--s)/.6))}.outline-secondary\/70{outline-color:var(--fallback-s,oklch(var(--s)/.7))}.outline-secondary\/75{outline-color:var(--fallback-s,oklch(var(--s)/.75))}.outline-secondary\/80{outline-color:var(--fallback-s,oklch(var(--s)/.8))}.outline-secondary\/90{outline-color:var(--fallback-s,oklch(var(--s)/.9))}.outline-secondary\/95{outline-color:var(--fallback-s,oklch(var(--s)/.95))}.outline-success{outline-color:var(--fallback-su,oklch(var(--su)/1))}.outline-success-content{outline-color:var(--fallback-suc,oklch(var(--suc)/1))}.outline-success-content\/0{outline-color:var(--fallback-suc,oklch(var(--suc)/0))}.outline-success-content\/10{outline-color:var(--fallback-suc,oklch(var(--suc)/.1))}.outline-success-content\/100{outline-color:var(--fallback-suc,oklch(var(--suc)/1))}.outline-success-content\/20{outline-color:var(--fallback-suc,oklch(var(--suc)/.2))}.outline-success-content\/25{outline-color:var(--fallback-suc,oklch(var(--suc)/.25))}.outline-success-content\/30{outline-color:var(--fallback-suc,oklch(var(--suc)/.3))}.outline-success-content\/40{outline-color:var(--fallback-suc,oklch(var(--suc)/.4))}.outline-success-content\/5{outline-color:var(--fallback-suc,oklch(var(--suc)/.05))}.outline-success-content\/50{outline-color:var(--fallback-suc,oklch(var(--suc)/.5))}.outline-success-content\/60{outline-color:var(--fallback-suc,oklch(var(--suc)/.6))}.outline-success-content\/70{outline-color:var(--fallback-suc,oklch(var(--suc)/.7))}.outline-success-content\/75{outline-color:var(--fallback-suc,oklch(var(--suc)/.75))}.outline-success-content\/80{outline-color:var(--fallback-suc,oklch(var(--suc)/.8))}.outline-success-content\/90{outline-color:var(--fallback-suc,oklch(var(--suc)/.9))}.outline-success-content\/95{outline-color:var(--fallback-suc,oklch(var(--suc)/.95))}.outline-success\/0{outline-color:var(--fallback-su,oklch(var(--su)/0))}.outline-success\/10{outline-color:var(--fallback-su,oklch(var(--su)/.1))}.outline-success\/100{outline-color:var(--fallback-su,oklch(var(--su)/1))}.outline-success\/20{outline-color:var(--fallback-su,oklch(var(--su)/.2))}.outline-success\/25{outline-color:var(--fallback-su,oklch(var(--su)/.25))}.outline-success\/30{outline-color:var(--fallback-su,oklch(var(--su)/.3))}.outline-success\/40{outline-color:var(--fallback-su,oklch(var(--su)/.4))}.outline-success\/5{outline-color:var(--fallback-su,oklch(var(--su)/.05))}.outline-success\/50{outline-color:var(--fallback-su,oklch(var(--su)/.5))}.outline-success\/60{outline-color:var(--fallback-su,oklch(var(--su)/.6))}.outline-success\/70{outline-color:var(--fallback-su,oklch(var(--su)/.7))}.outline-success\/75{outline-color:var(--fallback-su,oklch(var(--su)/.75))}.outline-success\/80{outline-color:var(--fallback-su,oklch(var(--su)/.8))}.outline-success\/90{outline-color:var(--fallback-su,oklch(var(--su)/.9))}.outline-success\/95{outline-color:var(--fallback-su,oklch(var(--su)/.95))}.outline-transparent{outline-color:transparent}.outline-transparent\/0{outline-color:rgb(0 0 0 / 0)}.outline-transparent\/10{outline-color:rgb(0 0 0 / .1)}.outline-transparent\/100{outline-color:rgb(0 0 0 / 1)}.outline-transparent\/20{outline-color:rgb(0 0 0 / .2)}.outline-transparent\/25{outline-color:rgb(0 0 0 / .25)}.outline-transparent\/30{outline-color:rgb(0 0 0 / .3)}.outline-transparent\/40{outline-color:rgb(0 0 0 / .4)}.outline-transparent\/5{outline-color:rgb(0 0 0 / .05)}.outline-transparent\/50{outline-color:rgb(0 0 0 / .5)}.outline-transparent\/60{outline-color:rgb(0 0 0 / .6)}.outline-transparent\/70{outline-color:rgb(0 0 0 / .7)}.outline-transparent\/75{outline-color:rgb(0 0 0 / .75)}.outline-transparent\/80{outline-color:rgb(0 0 0 / .8)}.outline-transparent\/90{outline-color:rgb(0 0 0 / .9)}.outline-transparent\/95{outline-color:rgb(0 0 0 / .95)}.outline-warning{outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.outline-warning-content{outline-color:var(--fallback-wac,oklch(var(--wac)/1))}.outline-warning-content\/0{outline-color:var(--fallback-wac,oklch(var(--wac)/0))}.outline-warning-content\/10{outline-color:var(--fallback-wac,oklch(var(--wac)/.1))}.outline-warning-content\/100{outline-color:var(--fallback-wac,oklch(var(--wac)/1))}.outline-warning-content\/20{outline-color:var(--fallback-wac,oklch(var(--wac)/.2))}.outline-warning-content\/25{outline-color:var(--fallback-wac,oklch(var(--wac)/.25))}.outline-warning-content\/30{outline-color:var(--fallback-wac,oklch(var(--wac)/.3))}.outline-warning-content\/40{outline-color:var(--fallback-wac,oklch(var(--wac)/.4))}.outline-warning-content\/5{outline-color:var(--fallback-wac,oklch(var(--wac)/.05))}.outline-warning-content\/50{outline-color:var(--fallback-wac,oklch(var(--wac)/.5))}.outline-warning-content\/60{outline-color:var(--fallback-wac,oklch(var(--wac)/.6))}.outline-warning-content\/70{outline-color:var(--fallback-wac,oklch(var(--wac)/.7))}.outline-warning-content\/75{outline-color:var(--fallback-wac,oklch(var(--wac)/.75))}.outline-warning-content\/80{outline-color:var(--fallback-wac,oklch(var(--wac)/.8))}.outline-warning-content\/90{outline-color:var(--fallback-wac,oklch(var(--wac)/.9))}.outline-warning-content\/95{outline-color:var(--fallback-wac,oklch(var(--wac)/.95))}.outline-warning\/0{outline-color:var(--fallback-wa,oklch(var(--wa)/0))}.outline-warning\/10{outline-color:var(--fallback-wa,oklch(var(--wa)/.1))}.outline-warning\/100{outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.outline-warning\/20{outline-color:var(--fallback-wa,oklch(var(--wa)/.2))}.outline-warning\/25{outline-color:var(--fallback-wa,oklch(var(--wa)/.25))}.outline-warning\/30{outline-color:var(--fallback-wa,oklch(var(--wa)/.3))}.outline-warning\/40{outline-color:var(--fallback-wa,oklch(var(--wa)/.4))}.outline-warning\/5{outline-color:var(--fallback-wa,oklch(var(--wa)/.05))}.outline-warning\/50{outline-color:var(--fallback-wa,oklch(var(--wa)/.5))}.outline-warning\/60{outline-color:var(--fallback-wa,oklch(var(--wa)/.6))}.outline-warning\/70{outline-color:var(--fallback-wa,oklch(var(--wa)/.7))}.outline-warning\/75{outline-color:var(--fallback-wa,oklch(var(--wa)/.75))}.outline-warning\/80{outline-color:var(--fallback-wa,oklch(var(--wa)/.8))}.outline-warning\/90{outline-color:var(--fallback-wa,oklch(var(--wa)/.9))}.outline-warning\/95{outline-color:var(--fallback-wa,oklch(var(--wa)/.95))}.ring{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-0{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-1{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-2{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-4{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-8{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-inset{--tw-ring-inset:inset}.ring-accent{--tw-ring-color:var(--fallback-a,oklch(var(--a)/1))}.ring-accent-content{--tw-ring-color:var(--fallback-ac,oklch(var(--ac)/1))}.ring-accent-content\/0{--tw-ring-color:var(--fallback-ac,oklch(var(--ac)/0))}.ring-accent-content\/10{--tw-ring-color:var(--fallback-ac,oklch(var(--ac)/0.1))}.ring-accent-content\/100{--tw-ring-color:var(--fallback-ac,oklch(var(--ac)/1))}.ring-accent-content\/20{--tw-ring-color:var(--fallback-ac,oklch(var(--ac)/0.2))}.ring-accent-content\/25{--tw-ring-color:var(--fallback-ac,oklch(var(--ac)/0.25))}.ring-accent-content\/30{--tw-ring-color:var(--fallback-ac,oklch(var(--ac)/0.3))}.ring-accent-content\/40{--tw-ring-color:var(--fallback-ac,oklch(var(--ac)/0.4))}.ring-accent-content\/5{--tw-ring-color:var(--fallback-ac,oklch(var(--ac)/0.05))}.ring-accent-content\/50{--tw-ring-color:var(--fallback-ac,oklch(var(--ac)/0.5))}.ring-accent-content\/60{--tw-ring-color:var(--fallback-ac,oklch(var(--ac)/0.6))}.ring-accent-content\/70{--tw-ring-color:var(--fallback-ac,oklch(var(--ac)/0.7))}.ring-accent-content\/75{--tw-ring-color:var(--fallback-ac,oklch(var(--ac)/0.75))}.ring-accent-content\/80{--tw-ring-color:var(--fallback-ac,oklch(var(--ac)/0.8))}.ring-accent-content\/90{--tw-ring-color:var(--fallback-ac,oklch(var(--ac)/0.9))}.ring-accent-content\/95{--tw-ring-color:var(--fallback-ac,oklch(var(--ac)/0.95))}.ring-accent\/0{--tw-ring-color:var(--fallback-a,oklch(var(--a)/0))}.ring-accent\/10{--tw-ring-color:var(--fallback-a,oklch(var(--a)/0.1))}.ring-accent\/100{--tw-ring-color:var(--fallback-a,oklch(var(--a)/1))}.ring-accent\/20{--tw-ring-color:var(--fallback-a,oklch(var(--a)/0.2))}.ring-accent\/25{--tw-ring-color:var(--fallback-a,oklch(var(--a)/0.25))}.ring-accent\/30{--tw-ring-color:var(--fallback-a,oklch(var(--a)/0.3))}.ring-accent\/40{--tw-ring-color:var(--fallback-a,oklch(var(--a)/0.4))}.ring-accent\/5{--tw-ring-color:var(--fallback-a,oklch(var(--a)/0.05))}.ring-accent\/50{--tw-ring-color:var(--fallback-a,oklch(var(--a)/0.5))}.ring-accent\/60{--tw-ring-color:var(--fallback-a,oklch(var(--a)/0.6))}.ring-accent\/70{--tw-ring-color:var(--fallback-a,oklch(var(--a)/0.7))}.ring-accent\/75{--tw-ring-color:var(--fallback-a,oklch(var(--a)/0.75))}.ring-accent\/80{--tw-ring-color:var(--fallback-a,oklch(var(--a)/0.8))}.ring-accent\/90{--tw-ring-color:var(--fallback-a,oklch(var(--a)/0.9))}.ring-accent\/95{--tw-ring-color:var(--fallback-a,oklch(var(--a)/0.95))}.ring-base-100{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/1))}.ring-base-100\/0{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0))}.ring-base-100\/10{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.1))}.ring-base-100\/100{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/1))}.ring-base-100\/20{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.2))}.ring-base-100\/25{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.25))}.ring-base-100\/30{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.3))}.ring-base-100\/40{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.4))}.ring-base-100\/5{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.05))}.ring-base-100\/50{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.5))}.ring-base-100\/60{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.6))}.ring-base-100\/70{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.7))}.ring-base-100\/75{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.75))}.ring-base-100\/80{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.8))}.ring-base-100\/90{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.9))}.ring-base-100\/95{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.95))}.ring-base-200{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/1))}.ring-base-200\/0{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0))}.ring-base-200\/10{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.1))}.ring-base-200\/100{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/1))}.ring-base-200\/20{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.2))}.ring-base-200\/25{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.25))}.ring-base-200\/30{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.3))}.ring-base-200\/40{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.4))}.ring-base-200\/5{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.05))}.ring-base-200\/50{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.5))}.ring-base-200\/60{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.6))}.ring-base-200\/70{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.7))}.ring-base-200\/75{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.75))}.ring-base-200\/80{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.8))}.ring-base-200\/90{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.9))}.ring-base-200\/95{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.95))}.ring-base-300{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/1))}.ring-base-300\/0{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0))}.ring-base-300\/10{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.1))}.ring-base-300\/100{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/1))}.ring-base-300\/20{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.2))}.ring-base-300\/25{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.25))}.ring-base-300\/30{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.3))}.ring-base-300\/40{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.4))}.ring-base-300\/5{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.05))}.ring-base-300\/50{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.5))}.ring-base-300\/60{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.6))}.ring-base-300\/70{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.7))}.ring-base-300\/75{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.75))}.ring-base-300\/80{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.8))}.ring-base-300\/90{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.9))}.ring-base-300\/95{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.95))}.ring-base-content{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/1))}.ring-base-content\/0{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0))}.ring-base-content\/10{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.1))}.ring-base-content\/100{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/1))}.ring-base-content\/20{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.2))}.ring-base-content\/25{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.25))}.ring-base-content\/30{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.3))}.ring-base-content\/40{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.4))}.ring-base-content\/5{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.05))}.ring-base-content\/50{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.5))}.ring-base-content\/60{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.6))}.ring-base-content\/70{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.7))}.ring-base-content\/75{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.75))}.ring-base-content\/80{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.8))}.ring-base-content\/90{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.9))}.ring-base-content\/95{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.95))}.ring-current{--tw-ring-color:currentColor}.ring-error{--tw-ring-color:var(--fallback-er,oklch(var(--er)/1))}.ring-error-content{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/1))}.ring-error-content\/0{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0))}.ring-error-content\/10{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.1))}.ring-error-content\/100{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/1))}.ring-error-content\/20{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.2))}.ring-error-content\/25{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.25))}.ring-error-content\/30{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.3))}.ring-error-content\/40{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.4))}.ring-error-content\/5{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.05))}.ring-error-content\/50{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.5))}.ring-error-content\/60{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.6))}.ring-error-content\/70{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.7))}.ring-error-content\/75{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.75))}.ring-error-content\/80{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.8))}.ring-error-content\/90{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.9))}.ring-error-content\/95{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.95))}.ring-error\/0{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0))}.ring-error\/10{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.1))}.ring-error\/100{--tw-ring-color:var(--fallback-er,oklch(var(--er)/1))}.ring-error\/20{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.2))}.ring-error\/25{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.25))}.ring-error\/30{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.3))}.ring-error\/40{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.4))}.ring-error\/5{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.05))}.ring-error\/50{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.5))}.ring-error\/60{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.6))}.ring-error\/70{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.7))}.ring-error\/75{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.75))}.ring-error\/80{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.8))}.ring-error\/90{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.9))}.ring-error\/95{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.95))}.ring-info{--tw-ring-color:var(--fallback-in,oklch(var(--in)/1))}.ring-info-content{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/1))}.ring-info-content\/0{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0))}.ring-info-content\/10{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.1))}.ring-info-content\/100{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/1))}.ring-info-content\/20{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.2))}.ring-info-content\/25{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.25))}.ring-info-content\/30{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.3))}.ring-info-content\/40{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.4))}.ring-info-content\/5{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.05))}.ring-info-content\/50{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.5))}.ring-info-content\/60{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.6))}.ring-info-content\/70{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.7))}.ring-info-content\/75{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.75))}.ring-info-content\/80{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.8))}.ring-info-content\/90{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.9))}.ring-info-content\/95{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.95))}.ring-info\/0{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0))}.ring-info\/10{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.1))}.ring-info\/100{--tw-ring-color:var(--fallback-in,oklch(var(--in)/1))}.ring-info\/20{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.2))}.ring-info\/25{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.25))}.ring-info\/30{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.3))}.ring-info\/40{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.4))}.ring-info\/5{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.05))}.ring-info\/50{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.5))}.ring-info\/60{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.6))}.ring-info\/70{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.7))}.ring-info\/75{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.75))}.ring-info\/80{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.8))}.ring-info\/90{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.9))}.ring-info\/95{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.95))}.ring-neutral{--tw-ring-color:var(--fallback-n,oklch(var(--n)/1))}.ring-neutral-content{--tw-ring-color:var(--fallback-nc,oklch(var(--nc)/1))}.ring-neutral-content\/0{--tw-ring-color:var(--fallback-nc,oklch(var(--nc)/0))}.ring-neutral-content\/10{--tw-ring-color:var(--fallback-nc,oklch(var(--nc)/0.1))}.ring-neutral-content\/100{--tw-ring-color:var(--fallback-nc,oklch(var(--nc)/1))}.ring-neutral-content\/20{--tw-ring-color:var(--fallback-nc,oklch(var(--nc)/0.2))}.ring-neutral-content\/25{--tw-ring-color:var(--fallback-nc,oklch(var(--nc)/0.25))}.ring-neutral-content\/30{--tw-ring-color:var(--fallback-nc,oklch(var(--nc)/0.3))}.ring-neutral-content\/40{--tw-ring-color:var(--fallback-nc,oklch(var(--nc)/0.4))}.ring-neutral-content\/5{--tw-ring-color:var(--fallback-nc,oklch(var(--nc)/0.05))}.ring-neutral-content\/50{--tw-ring-color:var(--fallback-nc,oklch(var(--nc)/0.5))}.ring-neutral-content\/60{--tw-ring-color:var(--fallback-nc,oklch(var(--nc)/0.6))}.ring-neutral-content\/70{--tw-ring-color:var(--fallback-nc,oklch(var(--nc)/0.7))}.ring-neutral-content\/75{--tw-ring-color:var(--fallback-nc,oklch(var(--nc)/0.75))}.ring-neutral-content\/80{--tw-ring-color:var(--fallback-nc,oklch(var(--nc)/0.8))}.ring-neutral-content\/90{--tw-ring-color:var(--fallback-nc,oklch(var(--nc)/0.9))}.ring-neutral-content\/95{--tw-ring-color:var(--fallback-nc,oklch(var(--nc)/0.95))}.ring-neutral\/0{--tw-ring-color:var(--fallback-n,oklch(var(--n)/0))}.ring-neutral\/10{--tw-ring-color:var(--fallback-n,oklch(var(--n)/0.1))}.ring-neutral\/100{--tw-ring-color:var(--fallback-n,oklch(var(--n)/1))}.ring-neutral\/20{--tw-ring-color:var(--fallback-n,oklch(var(--n)/0.2))}.ring-neutral\/25{--tw-ring-color:var(--fallback-n,oklch(var(--n)/0.25))}.ring-neutral\/30{--tw-ring-color:var(--fallback-n,oklch(var(--n)/0.3))}.ring-neutral\/40{--tw-ring-color:var(--fallback-n,oklch(var(--n)/0.4))}.ring-neutral\/5{--tw-ring-color:var(--fallback-n,oklch(var(--n)/0.05))}.ring-neutral\/50{--tw-ring-color:var(--fallback-n,oklch(var(--n)/0.5))}.ring-neutral\/60{--tw-ring-color:var(--fallback-n,oklch(var(--n)/0.6))}.ring-neutral\/70{--tw-ring-color:var(--fallback-n,oklch(var(--n)/0.7))}.ring-neutral\/75{--tw-ring-color:var(--fallback-n,oklch(var(--n)/0.75))}.ring-neutral\/80{--tw-ring-color:var(--fallback-n,oklch(var(--n)/0.8))}.ring-neutral\/90{--tw-ring-color:var(--fallback-n,oklch(var(--n)/0.9))}.ring-neutral\/95{--tw-ring-color:var(--fallback-n,oklch(var(--n)/0.95))}.ring-primary{--tw-ring-color:var(--fallback-p,oklch(var(--p)/1))}.ring-primary-content{--tw-ring-color:var(--fallback-pc,oklch(var(--pc)/1))}.ring-primary-content\/0{--tw-ring-color:var(--fallback-pc,oklch(var(--pc)/0))}.ring-primary-content\/10{--tw-ring-color:var(--fallback-pc,oklch(var(--pc)/0.1))}.ring-primary-content\/100{--tw-ring-color:var(--fallback-pc,oklch(var(--pc)/1))}.ring-primary-content\/20{--tw-ring-color:var(--fallback-pc,oklch(var(--pc)/0.2))}.ring-primary-content\/25{--tw-ring-color:var(--fallback-pc,oklch(var(--pc)/0.25))}.ring-primary-content\/30{--tw-ring-color:var(--fallback-pc,oklch(var(--pc)/0.3))}.ring-primary-content\/40{--tw-ring-color:var(--fallback-pc,oklch(var(--pc)/0.4))}.ring-primary-content\/5{--tw-ring-color:var(--fallback-pc,oklch(var(--pc)/0.05))}.ring-primary-content\/50{--tw-ring-color:var(--fallback-pc,oklch(var(--pc)/0.5))}.ring-primary-content\/60{--tw-ring-color:var(--fallback-pc,oklch(var(--pc)/0.6))}.ring-primary-content\/70{--tw-ring-color:var(--fallback-pc,oklch(var(--pc)/0.7))}.ring-primary-content\/75{--tw-ring-color:var(--fallback-pc,oklch(var(--pc)/0.75))}.ring-primary-content\/80{--tw-ring-color:var(--fallback-pc,oklch(var(--pc)/0.8))}.ring-primary-content\/90{--tw-ring-color:var(--fallback-pc,oklch(var(--pc)/0.9))}.ring-primary-content\/95{--tw-ring-color:var(--fallback-pc,oklch(var(--pc)/0.95))}.ring-primary\/0{--tw-ring-color:var(--fallback-p,oklch(var(--p)/0))}.ring-primary\/10{--tw-ring-color:var(--fallback-p,oklch(var(--p)/0.1))}.ring-primary\/100{--tw-ring-color:var(--fallback-p,oklch(var(--p)/1))}.ring-primary\/20{--tw-ring-color:var(--fallback-p,oklch(var(--p)/0.2))}.ring-primary\/25{--tw-ring-color:var(--fallback-p,oklch(var(--p)/0.25))}.ring-primary\/30{--tw-ring-color:var(--fallback-p,oklch(var(--p)/0.3))}.ring-primary\/40{--tw-ring-color:var(--fallback-p,oklch(var(--p)/0.4))}.ring-primary\/5{--tw-ring-color:var(--fallback-p,oklch(var(--p)/0.05))}.ring-primary\/50{--tw-ring-color:var(--fallback-p,oklch(var(--p)/0.5))}.ring-primary\/60{--tw-ring-color:var(--fallback-p,oklch(var(--p)/0.6))}.ring-primary\/70{--tw-ring-color:var(--fallback-p,oklch(var(--p)/0.7))}.ring-primary\/75{--tw-ring-color:var(--fallback-p,oklch(var(--p)/0.75))}.ring-primary\/80{--tw-ring-color:var(--fallback-p,oklch(var(--p)/0.8))}.ring-primary\/90{--tw-ring-color:var(--fallback-p,oklch(var(--p)/0.9))}.ring-primary\/95{--tw-ring-color:var(--fallback-p,oklch(var(--p)/0.95))}.ring-secondary{--tw-ring-color:var(--fallback-s,oklch(var(--s)/1))}.ring-secondary-content{--tw-ring-color:var(--fallback-sc,oklch(var(--sc)/1))}.ring-secondary-content\/0{--tw-ring-color:var(--fallback-sc,oklch(var(--sc)/0))}.ring-secondary-content\/10{--tw-ring-color:var(--fallback-sc,oklch(var(--sc)/0.1))}.ring-secondary-content\/100{--tw-ring-color:var(--fallback-sc,oklch(var(--sc)/1))}.ring-secondary-content\/20{--tw-ring-color:var(--fallback-sc,oklch(var(--sc)/0.2))}.ring-secondary-content\/25{--tw-ring-color:var(--fallback-sc,oklch(var(--sc)/0.25))}.ring-secondary-content\/30{--tw-ring-color:var(--fallback-sc,oklch(var(--sc)/0.3))}.ring-secondary-content\/40{--tw-ring-color:var(--fallback-sc,oklch(var(--sc)/0.4))}.ring-secondary-content\/5{--tw-ring-color:var(--fallback-sc,oklch(var(--sc)/0.05))}.ring-secondary-content\/50{--tw-ring-color:var(--fallback-sc,oklch(var(--sc)/0.5))}.ring-secondary-content\/60{--tw-ring-color:var(--fallback-sc,oklch(var(--sc)/0.6))}.ring-secondary-content\/70{--tw-ring-color:var(--fallback-sc,oklch(var(--sc)/0.7))}.ring-secondary-content\/75{--tw-ring-color:var(--fallback-sc,oklch(var(--sc)/0.75))}.ring-secondary-content\/80{--tw-ring-color:var(--fallback-sc,oklch(var(--sc)/0.8))}.ring-secondary-content\/90{--tw-ring-color:var(--fallback-sc,oklch(var(--sc)/0.9))}.ring-secondary-content\/95{--tw-ring-color:var(--fallback-sc,oklch(var(--sc)/0.95))}.ring-secondary\/0{--tw-ring-color:var(--fallback-s,oklch(var(--s)/0))}.ring-secondary\/10{--tw-ring-color:var(--fallback-s,oklch(var(--s)/0.1))}.ring-secondary\/100{--tw-ring-color:var(--fallback-s,oklch(var(--s)/1))}.ring-secondary\/20{--tw-ring-color:var(--fallback-s,oklch(var(--s)/0.2))}.ring-secondary\/25{--tw-ring-color:var(--fallback-s,oklch(var(--s)/0.25))}.ring-secondary\/30{--tw-ring-color:var(--fallback-s,oklch(var(--s)/0.3))}.ring-secondary\/40{--tw-ring-color:var(--fallback-s,oklch(var(--s)/0.4))}.ring-secondary\/5{--tw-ring-color:var(--fallback-s,oklch(var(--s)/0.05))}.ring-secondary\/50{--tw-ring-color:var(--fallback-s,oklch(var(--s)/0.5))}.ring-secondary\/60{--tw-ring-color:var(--fallback-s,oklch(var(--s)/0.6))}.ring-secondary\/70{--tw-ring-color:var(--fallback-s,oklch(var(--s)/0.7))}.ring-secondary\/75{--tw-ring-color:var(--fallback-s,oklch(var(--s)/0.75))}.ring-secondary\/80{--tw-ring-color:var(--fallback-s,oklch(var(--s)/0.8))}.ring-secondary\/90{--tw-ring-color:var(--fallback-s,oklch(var(--s)/0.9))}.ring-secondary\/95{--tw-ring-color:var(--fallback-s,oklch(var(--s)/0.95))}.ring-success{--tw-ring-color:var(--fallback-su,oklch(var(--su)/1))}.ring-success-content{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/1))}.ring-success-content\/0{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0))}.ring-success-content\/10{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.1))}.ring-success-content\/100{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/1))}.ring-success-content\/20{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.2))}.ring-success-content\/25{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.25))}.ring-success-content\/30{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.3))}.ring-success-content\/40{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.4))}.ring-success-content\/5{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.05))}.ring-success-content\/50{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.5))}.ring-success-content\/60{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.6))}.ring-success-content\/70{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.7))}.ring-success-content\/75{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.75))}.ring-success-content\/80{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.8))}.ring-success-content\/90{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.9))}.ring-success-content\/95{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.95))}.ring-success\/0{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0))}.ring-success\/10{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.1))}.ring-success\/100{--tw-ring-color:var(--fallback-su,oklch(var(--su)/1))}.ring-success\/20{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.2))}.ring-success\/25{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.25))}.ring-success\/30{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.3))}.ring-success\/40{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.4))}.ring-success\/5{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.05))}.ring-success\/50{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.5))}.ring-success\/60{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.6))}.ring-success\/70{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.7))}.ring-success\/75{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.75))}.ring-success\/80{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.8))}.ring-success\/90{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.9))}.ring-success\/95{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.95))}.ring-transparent{--tw-ring-color:transparent}.ring-transparent\/0{--tw-ring-color:rgb(0 0 0 / 0)}.ring-transparent\/10{--tw-ring-color:rgb(0 0 0 / 0.1)}.ring-transparent\/100{--tw-ring-color:rgb(0 0 0 / 1)}.ring-transparent\/20{--tw-ring-color:rgb(0 0 0 / 0.2)}.ring-transparent\/25{--tw-ring-color:rgb(0 0 0 / 0.25)}.ring-transparent\/30{--tw-ring-color:rgb(0 0 0 / 0.3)}.ring-transparent\/40{--tw-ring-color:rgb(0 0 0 / 0.4)}.ring-transparent\/5{--tw-ring-color:rgb(0 0 0 / 0.05)}.ring-transparent\/50{--tw-ring-color:rgb(0 0 0 / 0.5)}.ring-transparent\/60{--tw-ring-color:rgb(0 0 0 / 0.6)}.ring-transparent\/70{--tw-ring-color:rgb(0 0 0 / 0.7)}.ring-transparent\/75{--tw-ring-color:rgb(0 0 0 / 0.75)}.ring-transparent\/80{--tw-ring-color:rgb(0 0 0 / 0.8)}.ring-transparent\/90{--tw-ring-color:rgb(0 0 0 / 0.9)}.ring-transparent\/95{--tw-ring-color:rgb(0 0 0 / 0.95)}.ring-warning{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/1))}.ring-warning-content{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/1))}.ring-warning-content\/0{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0))}.ring-warning-content\/10{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.1))}.ring-warning-content\/100{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/1))}.ring-warning-content\/20{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.2))}.ring-warning-content\/25{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.25))}.ring-warning-content\/30{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.3))}.ring-warning-content\/40{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.4))}.ring-warning-content\/5{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.05))}.ring-warning-content\/50{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.5))}.ring-warning-content\/60{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.6))}.ring-warning-content\/70{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.7))}.ring-warning-content\/75{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.75))}.ring-warning-content\/80{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.8))}.ring-warning-content\/90{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.9))}.ring-warning-content\/95{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.95))}.ring-warning\/0{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0))}.ring-warning\/10{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.1))}.ring-warning\/100{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/1))}.ring-warning\/20{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.2))}.ring-warning\/25{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.25))}.ring-warning\/30{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.3))}.ring-warning\/40{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.4))}.ring-warning\/5{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.05))}.ring-warning\/50{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.5))}.ring-warning\/60{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.6))}.ring-warning\/70{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.7))}.ring-warning\/75{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.75))}.ring-warning\/80{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.8))}.ring-warning\/90{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.9))}.ring-warning\/95{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.95))}.ring-offset-0{--tw-ring-offset-width:0px}.ring-offset-1{--tw-ring-offset-width:1px}.ring-offset-2{--tw-ring-offset-width:2px}.ring-offset-4{--tw-ring-offset-width:4px}.ring-offset-8{--tw-ring-offset-width:8px}.ring-offset-accent{--tw-ring-offset-color:var(--fallback-a,oklch(var(--a)/1))}.ring-offset-accent-content{--tw-ring-offset-color:var(--fallback-ac,oklch(var(--ac)/1))}.ring-offset-accent-content\/0{--tw-ring-offset-color:var(--fallback-ac,oklch(var(--ac)/0))}.ring-offset-accent-content\/10{--tw-ring-offset-color:var(--fallback-ac,oklch(var(--ac)/0.1))}.ring-offset-accent-content\/100{--tw-ring-offset-color:var(--fallback-ac,oklch(var(--ac)/1))}.ring-offset-accent-content\/20{--tw-ring-offset-color:var(--fallback-ac,oklch(var(--ac)/0.2))}.ring-offset-accent-content\/25{--tw-ring-offset-color:var(--fallback-ac,oklch(var(--ac)/0.25))}.ring-offset-accent-content\/30{--tw-ring-offset-color:var(--fallback-ac,oklch(var(--ac)/0.3))}.ring-offset-accent-content\/40{--tw-ring-offset-color:var(--fallback-ac,oklch(var(--ac)/0.4))}.ring-offset-accent-content\/5{--tw-ring-offset-color:var(--fallback-ac,oklch(var(--ac)/0.05))}.ring-offset-accent-content\/50{--tw-ring-offset-color:var(--fallback-ac,oklch(var(--ac)/0.5))}.ring-offset-accent-content\/60{--tw-ring-offset-color:var(--fallback-ac,oklch(var(--ac)/0.6))}.ring-offset-accent-content\/70{--tw-ring-offset-color:var(--fallback-ac,oklch(var(--ac)/0.7))}.ring-offset-accent-content\/75{--tw-ring-offset-color:var(--fallback-ac,oklch(var(--ac)/0.75))}.ring-offset-accent-content\/80{--tw-ring-offset-color:var(--fallback-ac,oklch(var(--ac)/0.8))}.ring-offset-accent-content\/90{--tw-ring-offset-color:var(--fallback-ac,oklch(var(--ac)/0.9))}.ring-offset-accent-content\/95{--tw-ring-offset-color:var(--fallback-ac,oklch(var(--ac)/0.95))}.ring-offset-accent\/0{--tw-ring-offset-color:var(--fallback-a,oklch(var(--a)/0))}.ring-offset-accent\/10{--tw-ring-offset-color:var(--fallback-a,oklch(var(--a)/0.1))}.ring-offset-accent\/100{--tw-ring-offset-color:var(--fallback-a,oklch(var(--a)/1))}.ring-offset-accent\/20{--tw-ring-offset-color:var(--fallback-a,oklch(var(--a)/0.2))}.ring-offset-accent\/25{--tw-ring-offset-color:var(--fallback-a,oklch(var(--a)/0.25))}.ring-offset-accent\/30{--tw-ring-offset-color:var(--fallback-a,oklch(var(--a)/0.3))}.ring-offset-accent\/40{--tw-ring-offset-color:var(--fallback-a,oklch(var(--a)/0.4))}.ring-offset-accent\/5{--tw-ring-offset-color:var(--fallback-a,oklch(var(--a)/0.05))}.ring-offset-accent\/50{--tw-ring-offset-color:var(--fallback-a,oklch(var(--a)/0.5))}.ring-offset-accent\/60{--tw-ring-offset-color:var(--fallback-a,oklch(var(--a)/0.6))}.ring-offset-accent\/70{--tw-ring-offset-color:var(--fallback-a,oklch(var(--a)/0.7))}.ring-offset-accent\/75{--tw-ring-offset-color:var(--fallback-a,oklch(var(--a)/0.75))}.ring-offset-accent\/80{--tw-ring-offset-color:var(--fallback-a,oklch(var(--a)/0.8))}.ring-offset-accent\/90{--tw-ring-offset-color:var(--fallback-a,oklch(var(--a)/0.9))}.ring-offset-accent\/95{--tw-ring-offset-color:var(--fallback-a,oklch(var(--a)/0.95))}.ring-offset-base-100{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/1))}.ring-offset-base-100\/0{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0))}.ring-offset-base-100\/10{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.1))}.ring-offset-base-100\/100{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/1))}.ring-offset-base-100\/20{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.2))}.ring-offset-base-100\/25{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.25))}.ring-offset-base-100\/30{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.3))}.ring-offset-base-100\/40{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.4))}.ring-offset-base-100\/5{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.05))}.ring-offset-base-100\/50{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.5))}.ring-offset-base-100\/60{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.6))}.ring-offset-base-100\/70{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.7))}.ring-offset-base-100\/75{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.75))}.ring-offset-base-100\/80{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.8))}.ring-offset-base-100\/90{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.9))}.ring-offset-base-100\/95{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.95))}.ring-offset-base-200{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/1))}.ring-offset-base-200\/0{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0))}.ring-offset-base-200\/10{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.1))}.ring-offset-base-200\/100{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/1))}.ring-offset-base-200\/20{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.2))}.ring-offset-base-200\/25{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.25))}.ring-offset-base-200\/30{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.3))}.ring-offset-base-200\/40{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.4))}.ring-offset-base-200\/5{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.05))}.ring-offset-base-200\/50{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.5))}.ring-offset-base-200\/60{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.6))}.ring-offset-base-200\/70{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.7))}.ring-offset-base-200\/75{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.75))}.ring-offset-base-200\/80{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.8))}.ring-offset-base-200\/90{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.9))}.ring-offset-base-200\/95{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.95))}.ring-offset-base-300{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/1))}.ring-offset-base-300\/0{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0))}.ring-offset-base-300\/10{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.1))}.ring-offset-base-300\/100{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/1))}.ring-offset-base-300\/20{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.2))}.ring-offset-base-300\/25{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.25))}.ring-offset-base-300\/30{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.3))}.ring-offset-base-300\/40{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.4))}.ring-offset-base-300\/5{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.05))}.ring-offset-base-300\/50{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.5))}.ring-offset-base-300\/60{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.6))}.ring-offset-base-300\/70{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.7))}.ring-offset-base-300\/75{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.75))}.ring-offset-base-300\/80{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.8))}.ring-offset-base-300\/90{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.9))}.ring-offset-base-300\/95{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.95))}.ring-offset-base-content{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/1))}.ring-offset-base-content\/0{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0))}.ring-offset-base-content\/10{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.1))}.ring-offset-base-content\/100{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/1))}.ring-offset-base-content\/20{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.2))}.ring-offset-base-content\/25{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.25))}.ring-offset-base-content\/30{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.3))}.ring-offset-base-content\/40{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.4))}.ring-offset-base-content\/5{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.05))}.ring-offset-base-content\/50{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.5))}.ring-offset-base-content\/60{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.6))}.ring-offset-base-content\/70{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.7))}.ring-offset-base-content\/75{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.75))}.ring-offset-base-content\/80{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.8))}.ring-offset-base-content\/90{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.9))}.ring-offset-base-content\/95{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.95))}.ring-offset-current{--tw-ring-offset-color:currentColor}.ring-offset-error{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/1))}.ring-offset-error-content{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/1))}.ring-offset-error-content\/0{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0))}.ring-offset-error-content\/10{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.1))}.ring-offset-error-content\/100{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/1))}.ring-offset-error-content\/20{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.2))}.ring-offset-error-content\/25{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.25))}.ring-offset-error-content\/30{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.3))}.ring-offset-error-content\/40{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.4))}.ring-offset-error-content\/5{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.05))}.ring-offset-error-content\/50{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.5))}.ring-offset-error-content\/60{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.6))}.ring-offset-error-content\/70{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.7))}.ring-offset-error-content\/75{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.75))}.ring-offset-error-content\/80{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.8))}.ring-offset-error-content\/90{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.9))}.ring-offset-error-content\/95{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.95))}.ring-offset-error\/0{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0))}.ring-offset-error\/10{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.1))}.ring-offset-error\/100{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/1))}.ring-offset-error\/20{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.2))}.ring-offset-error\/25{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.25))}.ring-offset-error\/30{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.3))}.ring-offset-error\/40{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.4))}.ring-offset-error\/5{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.05))}.ring-offset-error\/50{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.5))}.ring-offset-error\/60{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.6))}.ring-offset-error\/70{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.7))}.ring-offset-error\/75{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.75))}.ring-offset-error\/80{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.8))}.ring-offset-error\/90{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.9))}.ring-offset-error\/95{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.95))}.ring-offset-info{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/1))}.ring-offset-info-content{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/1))}.ring-offset-info-content\/0{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0))}.ring-offset-info-content\/10{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.1))}.ring-offset-info-content\/100{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/1))}.ring-offset-info-content\/20{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.2))}.ring-offset-info-content\/25{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.25))}.ring-offset-info-content\/30{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.3))}.ring-offset-info-content\/40{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.4))}.ring-offset-info-content\/5{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.05))}.ring-offset-info-content\/50{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.5))}.ring-offset-info-content\/60{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.6))}.ring-offset-info-content\/70{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.7))}.ring-offset-info-content\/75{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.75))}.ring-offset-info-content\/80{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.8))}.ring-offset-info-content\/90{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.9))}.ring-offset-info-content\/95{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.95))}.ring-offset-info\/0{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0))}.ring-offset-info\/10{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.1))}.ring-offset-info\/100{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/1))}.ring-offset-info\/20{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.2))}.ring-offset-info\/25{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.25))}.ring-offset-info\/30{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.3))}.ring-offset-info\/40{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.4))}.ring-offset-info\/5{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.05))}.ring-offset-info\/50{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.5))}.ring-offset-info\/60{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.6))}.ring-offset-info\/70{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.7))}.ring-offset-info\/75{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.75))}.ring-offset-info\/80{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.8))}.ring-offset-info\/90{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.9))}.ring-offset-info\/95{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.95))}.ring-offset-neutral{--tw-ring-offset-color:var(--fallback-n,oklch(var(--n)/1))}.ring-offset-neutral-content{--tw-ring-offset-color:var(--fallback-nc,oklch(var(--nc)/1))}.ring-offset-neutral-content\/0{--tw-ring-offset-color:var(--fallback-nc,oklch(var(--nc)/0))}.ring-offset-neutral-content\/10{--tw-ring-offset-color:var(--fallback-nc,oklch(var(--nc)/0.1))}.ring-offset-neutral-content\/100{--tw-ring-offset-color:var(--fallback-nc,oklch(var(--nc)/1))}.ring-offset-neutral-content\/20{--tw-ring-offset-color:var(--fallback-nc,oklch(var(--nc)/0.2))}.ring-offset-neutral-content\/25{--tw-ring-offset-color:var(--fallback-nc,oklch(var(--nc)/0.25))}.ring-offset-neutral-content\/30{--tw-ring-offset-color:var(--fallback-nc,oklch(var(--nc)/0.3))}.ring-offset-neutral-content\/40{--tw-ring-offset-color:var(--fallback-nc,oklch(var(--nc)/0.4))}.ring-offset-neutral-content\/5{--tw-ring-offset-color:var(--fallback-nc,oklch(var(--nc)/0.05))}.ring-offset-neutral-content\/50{--tw-ring-offset-color:var(--fallback-nc,oklch(var(--nc)/0.5))}.ring-offset-neutral-content\/60{--tw-ring-offset-color:var(--fallback-nc,oklch(var(--nc)/0.6))}.ring-offset-neutral-content\/70{--tw-ring-offset-color:var(--fallback-nc,oklch(var(--nc)/0.7))}.ring-offset-neutral-content\/75{--tw-ring-offset-color:var(--fallback-nc,oklch(var(--nc)/0.75))}.ring-offset-neutral-content\/80{--tw-ring-offset-color:var(--fallback-nc,oklch(var(--nc)/0.8))}.ring-offset-neutral-content\/90{--tw-ring-offset-color:var(--fallback-nc,oklch(var(--nc)/0.9))}.ring-offset-neutral-content\/95{--tw-ring-offset-color:var(--fallback-nc,oklch(var(--nc)/0.95))}.ring-offset-neutral\/0{--tw-ring-offset-color:var(--fallback-n,oklch(var(--n)/0))}.ring-offset-neutral\/10{--tw-ring-offset-color:var(--fallback-n,oklch(var(--n)/0.1))}.ring-offset-neutral\/100{--tw-ring-offset-color:var(--fallback-n,oklch(var(--n)/1))}.ring-offset-neutral\/20{--tw-ring-offset-color:var(--fallback-n,oklch(var(--n)/0.2))}.ring-offset-neutral\/25{--tw-ring-offset-color:var(--fallback-n,oklch(var(--n)/0.25))}.ring-offset-neutral\/30{--tw-ring-offset-color:var(--fallback-n,oklch(var(--n)/0.3))}.ring-offset-neutral\/40{--tw-ring-offset-color:var(--fallback-n,oklch(var(--n)/0.4))}.ring-offset-neutral\/5{--tw-ring-offset-color:var(--fallback-n,oklch(var(--n)/0.05))}.ring-offset-neutral\/50{--tw-ring-offset-color:var(--fallback-n,oklch(var(--n)/0.5))}.ring-offset-neutral\/60{--tw-ring-offset-color:var(--fallback-n,oklch(var(--n)/0.6))}.ring-offset-neutral\/70{--tw-ring-offset-color:var(--fallback-n,oklch(var(--n)/0.7))}.ring-offset-neutral\/75{--tw-ring-offset-color:var(--fallback-n,oklch(var(--n)/0.75))}.ring-offset-neutral\/80{--tw-ring-offset-color:var(--fallback-n,oklch(var(--n)/0.8))}.ring-offset-neutral\/90{--tw-ring-offset-color:var(--fallback-n,oklch(var(--n)/0.9))}.ring-offset-neutral\/95{--tw-ring-offset-color:var(--fallback-n,oklch(var(--n)/0.95))}.ring-offset-primary{--tw-ring-offset-color:var(--fallback-p,oklch(var(--p)/1))}.ring-offset-primary-content{--tw-ring-offset-color:var(--fallback-pc,oklch(var(--pc)/1))}.ring-offset-primary-content\/0{--tw-ring-offset-color:var(--fallback-pc,oklch(var(--pc)/0))}.ring-offset-primary-content\/10{--tw-ring-offset-color:var(--fallback-pc,oklch(var(--pc)/0.1))}.ring-offset-primary-content\/100{--tw-ring-offset-color:var(--fallback-pc,oklch(var(--pc)/1))}.ring-offset-primary-content\/20{--tw-ring-offset-color:var(--fallback-pc,oklch(var(--pc)/0.2))}.ring-offset-primary-content\/25{--tw-ring-offset-color:var(--fallback-pc,oklch(var(--pc)/0.25))}.ring-offset-primary-content\/30{--tw-ring-offset-color:var(--fallback-pc,oklch(var(--pc)/0.3))}.ring-offset-primary-content\/40{--tw-ring-offset-color:var(--fallback-pc,oklch(var(--pc)/0.4))}.ring-offset-primary-content\/5{--tw-ring-offset-color:var(--fallback-pc,oklch(var(--pc)/0.05))}.ring-offset-primary-content\/50{--tw-ring-offset-color:var(--fallback-pc,oklch(var(--pc)/0.5))}.ring-offset-primary-content\/60{--tw-ring-offset-color:var(--fallback-pc,oklch(var(--pc)/0.6))}.ring-offset-primary-content\/70{--tw-ring-offset-color:var(--fallback-pc,oklch(var(--pc)/0.7))}.ring-offset-primary-content\/75{--tw-ring-offset-color:var(--fallback-pc,oklch(var(--pc)/0.75))}.ring-offset-primary-content\/80{--tw-ring-offset-color:var(--fallback-pc,oklch(var(--pc)/0.8))}.ring-offset-primary-content\/90{--tw-ring-offset-color:var(--fallback-pc,oklch(var(--pc)/0.9))}.ring-offset-primary-content\/95{--tw-ring-offset-color:var(--fallback-pc,oklch(var(--pc)/0.95))}.ring-offset-primary\/0{--tw-ring-offset-color:var(--fallback-p,oklch(var(--p)/0))}.ring-offset-primary\/10{--tw-ring-offset-color:var(--fallback-p,oklch(var(--p)/0.1))}.ring-offset-primary\/100{--tw-ring-offset-color:var(--fallback-p,oklch(var(--p)/1))}.ring-offset-primary\/20{--tw-ring-offset-color:var(--fallback-p,oklch(var(--p)/0.2))}.ring-offset-primary\/25{--tw-ring-offset-color:var(--fallback-p,oklch(var(--p)/0.25))}.ring-offset-primary\/30{--tw-ring-offset-color:var(--fallback-p,oklch(var(--p)/0.3))}.ring-offset-primary\/40{--tw-ring-offset-color:var(--fallback-p,oklch(var(--p)/0.4))}.ring-offset-primary\/5{--tw-ring-offset-color:var(--fallback-p,oklch(var(--p)/0.05))}.ring-offset-primary\/50{--tw-ring-offset-color:var(--fallback-p,oklch(var(--p)/0.5))}.ring-offset-primary\/60{--tw-ring-offset-color:var(--fallback-p,oklch(var(--p)/0.6))}.ring-offset-primary\/70{--tw-ring-offset-color:var(--fallback-p,oklch(var(--p)/0.7))}.ring-offset-primary\/75{--tw-ring-offset-color:var(--fallback-p,oklch(var(--p)/0.75))}.ring-offset-primary\/80{--tw-ring-offset-color:var(--fallback-p,oklch(var(--p)/0.8))}.ring-offset-primary\/90{--tw-ring-offset-color:var(--fallback-p,oklch(var(--p)/0.9))}.ring-offset-primary\/95{--tw-ring-offset-color:var(--fallback-p,oklch(var(--p)/0.95))}.ring-offset-secondary{--tw-ring-offset-color:var(--fallback-s,oklch(var(--s)/1))}.ring-offset-secondary-content{--tw-ring-offset-color:var(--fallback-sc,oklch(var(--sc)/1))}.ring-offset-secondary-content\/0{--tw-ring-offset-color:var(--fallback-sc,oklch(var(--sc)/0))}.ring-offset-secondary-content\/10{--tw-ring-offset-color:var(--fallback-sc,oklch(var(--sc)/0.1))}.ring-offset-secondary-content\/100{--tw-ring-offset-color:var(--fallback-sc,oklch(var(--sc)/1))}.ring-offset-secondary-content\/20{--tw-ring-offset-color:var(--fallback-sc,oklch(var(--sc)/0.2))}.ring-offset-secondary-content\/25{--tw-ring-offset-color:var(--fallback-sc,oklch(var(--sc)/0.25))}.ring-offset-secondary-content\/30{--tw-ring-offset-color:var(--fallback-sc,oklch(var(--sc)/0.3))}.ring-offset-secondary-content\/40{--tw-ring-offset-color:var(--fallback-sc,oklch(var(--sc)/0.4))}.ring-offset-secondary-content\/5{--tw-ring-offset-color:var(--fallback-sc,oklch(var(--sc)/0.05))}.ring-offset-secondary-content\/50{--tw-ring-offset-color:var(--fallback-sc,oklch(var(--sc)/0.5))}.ring-offset-secondary-content\/60{--tw-ring-offset-color:var(--fallback-sc,oklch(var(--sc)/0.6))}.ring-offset-secondary-content\/70{--tw-ring-offset-color:var(--fallback-sc,oklch(var(--sc)/0.7))}.ring-offset-secondary-content\/75{--tw-ring-offset-color:var(--fallback-sc,oklch(var(--sc)/0.75))}.ring-offset-secondary-content\/80{--tw-ring-offset-color:var(--fallback-sc,oklch(var(--sc)/0.8))}.ring-offset-secondary-content\/90{--tw-ring-offset-color:var(--fallback-sc,oklch(var(--sc)/0.9))}.ring-offset-secondary-content\/95{--tw-ring-offset-color:var(--fallback-sc,oklch(var(--sc)/0.95))}.ring-offset-secondary\/0{--tw-ring-offset-color:var(--fallback-s,oklch(var(--s)/0))}.ring-offset-secondary\/10{--tw-ring-offset-color:var(--fallback-s,oklch(var(--s)/0.1))}.ring-offset-secondary\/100{--tw-ring-offset-color:var(--fallback-s,oklch(var(--s)/1))}.ring-offset-secondary\/20{--tw-ring-offset-color:var(--fallback-s,oklch(var(--s)/0.2))}.ring-offset-secondary\/25{--tw-ring-offset-color:var(--fallback-s,oklch(var(--s)/0.25))}.ring-offset-secondary\/30{--tw-ring-offset-color:var(--fallback-s,oklch(var(--s)/0.3))}.ring-offset-secondary\/40{--tw-ring-offset-color:var(--fallback-s,oklch(var(--s)/0.4))}.ring-offset-secondary\/5{--tw-ring-offset-color:var(--fallback-s,oklch(var(--s)/0.05))}.ring-offset-secondary\/50{--tw-ring-offset-color:var(--fallback-s,oklch(var(--s)/0.5))}.ring-offset-secondary\/60{--tw-ring-offset-color:var(--fallback-s,oklch(var(--s)/0.6))}.ring-offset-secondary\/70{--tw-ring-offset-color:var(--fallback-s,oklch(var(--s)/0.7))}.ring-offset-secondary\/75{--tw-ring-offset-color:var(--fallback-s,oklch(var(--s)/0.75))}.ring-offset-secondary\/80{--tw-ring-offset-color:var(--fallback-s,oklch(var(--s)/0.8))}.ring-offset-secondary\/90{--tw-ring-offset-color:var(--fallback-s,oklch(var(--s)/0.9))}.ring-offset-secondary\/95{--tw-ring-offset-color:var(--fallback-s,oklch(var(--s)/0.95))}.ring-offset-success{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/1))}.ring-offset-success-content{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/1))}.ring-offset-success-content\/0{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0))}.ring-offset-success-content\/10{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.1))}.ring-offset-success-content\/100{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/1))}.ring-offset-success-content\/20{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.2))}.ring-offset-success-content\/25{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.25))}.ring-offset-success-content\/30{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.3))}.ring-offset-success-content\/40{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.4))}.ring-offset-success-content\/5{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.05))}.ring-offset-success-content\/50{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.5))}.ring-offset-success-content\/60{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.6))}.ring-offset-success-content\/70{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.7))}.ring-offset-success-content\/75{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.75))}.ring-offset-success-content\/80{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.8))}.ring-offset-success-content\/90{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.9))}.ring-offset-success-content\/95{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.95))}.ring-offset-success\/0{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0))}.ring-offset-success\/10{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.1))}.ring-offset-success\/100{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/1))}.ring-offset-success\/20{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.2))}.ring-offset-success\/25{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.25))}.ring-offset-success\/30{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.3))}.ring-offset-success\/40{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.4))}.ring-offset-success\/5{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.05))}.ring-offset-success\/50{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.5))}.ring-offset-success\/60{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.6))}.ring-offset-success\/70{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.7))}.ring-offset-success\/75{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.75))}.ring-offset-success\/80{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.8))}.ring-offset-success\/90{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.9))}.ring-offset-success\/95{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.95))}.ring-offset-transparent{--tw-ring-offset-color:transparent}.ring-offset-transparent\/0{--tw-ring-offset-color:rgb(0 0 0 / 0)}.ring-offset-transparent\/10{--tw-ring-offset-color:rgb(0 0 0 / 0.1)}.ring-offset-transparent\/100{--tw-ring-offset-color:rgb(0 0 0 / 1)}.ring-offset-transparent\/20{--tw-ring-offset-color:rgb(0 0 0 / 0.2)}.ring-offset-transparent\/25{--tw-ring-offset-color:rgb(0 0 0 / 0.25)}.ring-offset-transparent\/30{--tw-ring-offset-color:rgb(0 0 0 / 0.3)}.ring-offset-transparent\/40{--tw-ring-offset-color:rgb(0 0 0 / 0.4)}.ring-offset-transparent\/5{--tw-ring-offset-color:rgb(0 0 0 / 0.05)}.ring-offset-transparent\/50{--tw-ring-offset-color:rgb(0 0 0 / 0.5)}.ring-offset-transparent\/60{--tw-ring-offset-color:rgb(0 0 0 / 0.6)}.ring-offset-transparent\/70{--tw-ring-offset-color:rgb(0 0 0 / 0.7)}.ring-offset-transparent\/75{--tw-ring-offset-color:rgb(0 0 0 / 0.75)}.ring-offset-transparent\/80{--tw-ring-offset-color:rgb(0 0 0 / 0.8)}.ring-offset-transparent\/90{--tw-ring-offset-color:rgb(0 0 0 / 0.9)}.ring-offset-transparent\/95{--tw-ring-offset-color:rgb(0 0 0 / 0.95)}.ring-offset-warning{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/1))}.ring-offset-warning-content{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/1))}.ring-offset-warning-content\/0{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0))}.ring-offset-warning-content\/10{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.1))}.ring-offset-warning-content\/100{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/1))}.ring-offset-warning-content\/20{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.2))}.ring-offset-warning-content\/25{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.25))}.ring-offset-warning-content\/30{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.3))}.ring-offset-warning-content\/40{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.4))}.ring-offset-warning-content\/5{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.05))}.ring-offset-warning-content\/50{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.5))}.ring-offset-warning-content\/60{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.6))}.ring-offset-warning-content\/70{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.7))}.ring-offset-warning-content\/75{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.75))}.ring-offset-warning-content\/80{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.8))}.ring-offset-warning-content\/90{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.9))}.ring-offset-warning-content\/95{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.95))}.ring-offset-warning\/0{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0))}.ring-offset-warning\/10{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.1))}.ring-offset-warning\/100{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/1))}.ring-offset-warning\/20{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.2))}.ring-offset-warning\/25{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.25))}.ring-offset-warning\/30{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.3))}.ring-offset-warning\/40{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.4))}.ring-offset-warning\/5{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.05))}.ring-offset-warning\/50{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.5))}.ring-offset-warning\/60{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.6))}.ring-offset-warning\/70{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.7))}.ring-offset-warning\/75{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.75))}.ring-offset-warning\/80{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.8))}.ring-offset-warning\/90{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.9))}.ring-offset-warning\/95{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.95))}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-duration:150ms}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-duration:150ms}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-duration:150ms}.transition-none{transition-property:none}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-duration:150ms}.transition-shadow{transition-property:box-shadow;transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-duration:150ms}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-duration:150ms}.glass,.glass.btn-active{border:none;-webkit-backdrop-filter:blur(var(--glass-blur,40px));backdrop-filter:blur(var(--glass-blur,40px));background-color:transparent;background-image:linear-gradient(135deg,rgb(255 255 255 / var(--glass-opacity,30%)) 0,rgb(0 0 0 / 0%) 100%),linear-gradient(var(--glass-reflex-degree,100deg),rgb(255 255 255 / var(--glass-reflex-opacity,10%)) 25%,rgb(0 0 0 / 0%) 25%);box-shadow:0 0 0 1px rgb(255 255 255 / var(--glass-border-opacity,10%)) inset,0 0 0 2px rgb(0 0 0 / 5%);text-shadow:0 1px rgb(0 0 0 / var(--glass-text-shadow-opacity,5%))}@media (hover:hover){.glass.btn-active{border:none;-webkit-backdrop-filter:blur(var(--glass-blur,40px));backdrop-filter:blur(var(--glass-blur,40px));background-color:transparent;background-image:linear-gradient(135deg,rgb(255 255 255 / var(--glass-opacity,30%)) 0,rgb(0 0 0 / 0%) 100%),linear-gradient(var(--glass-reflex-degree,100deg),rgb(255 255 255 / var(--glass-reflex-opacity,10%)) 25%,rgb(0 0 0 / 0%) 25%);box-shadow:0 0 0 1px rgb(255 255 255 / var(--glass-border-opacity,10%)) inset,0 0 0 2px rgb(0 0 0 / 5%);text-shadow:0 1px rgb(0 0 0 / var(--glass-text-shadow-opacity,5%))}}.no-animation{--btn-focus-scale:1;--animation-btn:0;--animation-input:0}.tab-border-none{--tab-border:0px}.tab-border{--tab-border:1px}.tab-border-2{--tab-border:2px}.tab-border-3{--tab-border:3px}.tab-rounded-none{--tab-radius:0}.tab-rounded-lg{--tab-radius:0.5rem}.artboard-demo{display:flex;flex:none;flex-direction:column;align-items:center;justify-content:center}.artboard.phone{width:320px}.artboard.phone-1{width:320px;height:568px}.artboard.phone-1.artboard-horizontal,.artboard.phone-1.horizontal{width:568px;height:320px}.artboard.phone-2{width:375px;height:667px}.artboard.phone-2.artboard-horizontal,.artboard.phone-2.horizontal{width:667px;height:375px}.artboard.phone-3{width:414px;height:736px}.artboard.phone-3.artboard-horizontal,.artboard.phone-3.horizontal{width:736px;height:414px}.artboard.phone-4{width:375px;height:812px}.artboard.phone-4.artboard-horizontal,.artboard.phone-4.horizontal{width:812px;height:375px}.artboard.phone-5{width:414px;height:896px}.artboard.phone-5.artboard-horizontal,.artboard.phone-5.horizontal{width:896px;height:414px}.artboard.phone-6{width:320px;height:1024px}.artboard.phone-6.artboard-horizontal,.artboard.phone-6.horizontal{width:1024px;height:320px}.badge-xs{height:.75rem;font-size:.75rem;line-height:.75rem;padding-left:.313rem;padding-right:.313rem}.badge-sm{height:1rem;font-size:.75rem;line-height:1rem;padding-left:.438rem;padding-right:.438rem}.badge-md{height:1.25rem;font-size:.875rem;line-height:1.25rem;padding-left:.563rem;padding-right:.563rem}.badge-lg{height:1.5rem;font-size:1rem;line-height:1.5rem;padding-left:.688rem;padding-right:.688rem}.btm-nav-xs{height:2.5rem}.btm-nav-xs>:where(.active){border-top-width:1px}.btm-nav-xs .btm-nav-label{font-size:.75rem;line-height:1rem}.btm-nav-sm{height:3rem}.btm-nav-sm>:where(.active){border-top-width:2px}.btm-nav-sm .btm-nav-label{font-size:.75rem;line-height:1rem}.btm-nav-md{height:4rem}.btm-nav-md>:where(.active){border-top-width:2px}.btm-nav-md .btm-nav-label{font-size:.875rem;line-height:1.25rem}.btm-nav-lg{height:5rem}.btm-nav-lg>:where(.active){border-top-width:4px}.btm-nav-lg .btm-nav-label{font-size:1rem;line-height:1.5rem}.btn-xs{height:1.5rem;min-height:1.5rem;padding-left:.5rem;padding-right:.5rem;font-size:.75rem}.btn-sm{height:2rem;min-height:2rem;padding-left:.75rem;padding-right:.75rem;font-size:.875rem}.btn-md{height:3rem;min-height:3rem;padding-left:1rem;padding-right:1rem;font-size:.875rem}.btn-lg{height:4rem;min-height:4rem;padding-left:1.5rem;padding-right:1.5rem;font-size:1.125rem}.btn-wide{width:16rem}.btn-block{width:100%}.btn-square:where(.btn-xs){height:1.5rem;width:1.5rem;padding:0}.btn-square:where(.btn-sm){height:2rem;width:2rem;padding:0}.btn-square:where(.btn-md){height:3rem;width:3rem;padding:0}.btn-square:where(.btn-lg){height:4rem;width:4rem;padding:0}.btn-circle:where(.btn-xs){height:1.5rem;width:1.5rem;border-radius:9999px;padding:0}.btn-circle:where(.btn-sm){height:2rem;width:2rem;border-radius:9999px;padding:0}.btn-circle:where(.btn-md){height:3rem;width:3rem;border-radius:9999px;padding:0}.btn-circle:where(.btn-lg){height:4rem;width:4rem;border-radius:9999px;padding:0}.card-side{align-items:stretch;flex-direction:row}.card-side :where(figure:first-child){overflow:hidden;border-start-start-radius:inherit;border-start-end-radius:unset;border-end-start-radius:inherit;border-end-end-radius:unset}.card-side :where(figure:last-child){overflow:hidden;border-start-start-radius:unset;border-start-end-radius:inherit;border-end-start-radius:unset;border-end-end-radius:inherit}.card-side figure>*{max-width:unset}:where(.card-side figure > *){width:100%;height:100%;object-fit:cover}[type=checkbox].checkbox-xs{height:1rem;width:1rem}[type=checkbox].checkbox-sm{height:1.25rem;width:1.25rem}[type=checkbox].checkbox-md{height:1.5rem;width:1.5rem}[type=checkbox].checkbox-lg{height:2rem;width:2rem}.divider-horizontal{flex-direction:column}.divider-horizontal:before{height:100%;width:.125rem}.divider-horizontal:after{height:100%;width:.125rem}.divider-vertical{flex-direction:row}.divider-vertical:before{height:.125rem;width:100%}.divider-vertical:after{height:.125rem;width:100%}.drawer-open>.drawer-toggle{display:none}.drawer-open>.drawer-toggle~.drawer-side{pointer-events:auto;visibility:visible;position:sticky;display:block;width:auto;overscroll-behavior:auto}.drawer-open>.drawer-toggle~.drawer-side>:not(.drawer-overlay){transform:translateX(0)}[dir=rtl] .drawer-open>.drawer-toggle~.drawer-side>:not(.drawer-overlay){transform:translateX(0)}.drawer-open>.drawer-toggle:checked~.drawer-side{pointer-events:auto;visibility:visible}.drawer-open>.drawer-side{overflow-y:auto}html:has(.drawer-toggle:checked){overflow-y:hidden;scrollbar-gutter:stable}html:has(.drawer-open.drawer-open){overflow-y:auto;scrollbar-gutter:auto}.file-input-xs{height:1.5rem;padding-inline-end:0.5rem;font-size:.75rem;line-height:1rem;line-height:1.625}.file-input-xs::file-selector-button{margin-right:.5rem;font-size:.75rem}.file-input-sm{height:2rem;padding-inline-end:0.75rem;font-size:.875rem;line-height:1.25rem;line-height:2}.file-input-sm::file-selector-button{margin-right:.75rem;font-size:.875rem}.file-input-md{height:3rem;padding-inline-end:1rem;font-size:.875rem;line-height:1.25rem;line-height:2}.file-input-md::file-selector-button{margin-right:1rem;font-size:.875rem}.file-input-lg{height:4rem;padding-inline-end:1.5rem;font-size:1.125rem;line-height:1.75rem;line-height:2}.file-input-lg::file-selector-button{margin-right:1.5rem;font-size:1.125rem}.indicator :where(.indicator-item){bottom:auto;inset-inline-end:0px;inset-inline-start:auto;top:0;--tw-translate-y:-50%;--tw-translate-x:50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}:is([dir=rtl] .indicator :where(.indicator-item)){--tw-translate-x:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.indicator :where(.indicator-item.indicator-start){inset-inline-end:auto;inset-inline-start:0px;--tw-translate-x:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}:is([dir=rtl] .indicator :where(.indicator-item.indicator-start)){--tw-translate-x:50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.indicator :where(.indicator-item.indicator-center){inset-inline-end:50%;inset-inline-start:50%;--tw-translate-x:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}:is([dir=rtl] .indicator :where(.indicator-item.indicator-center)){--tw-translate-x:50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.indicator :where(.indicator-item.indicator-end){inset-inline-end:0px;inset-inline-start:auto;--tw-translate-x:50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}:is([dir=rtl] .indicator :where(.indicator-item.indicator-end)){--tw-translate-x:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.indicator :where(.indicator-item.indicator-bottom){bottom:0;top:auto;--tw-translate-y:50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.indicator :where(.indicator-item.indicator-middle){bottom:50%;top:50%;--tw-translate-y:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.indicator :where(.indicator-item.indicator-top){bottom:auto;top:0;--tw-translate-y:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.input-xs{height:1.5rem;padding-left:.5rem;padding-right:.5rem;font-size:.75rem;line-height:1rem;line-height:1.625}.input-md{height:3rem;padding-left:1rem;padding-right:1rem;font-size:.875rem;line-height:1.25rem;line-height:2}.input-lg{height:4rem;padding-left:1.5rem;padding-right:1.5rem;font-size:1.125rem;line-height:1.75rem;line-height:2}.input-sm{height:2rem;padding-left:.75rem;padding-right:.75rem;font-size:.875rem;line-height:2rem}.join.join-vertical{flex-direction:column}.join.join-vertical .join-item:first-child:not(:last-child),.join.join-vertical :first-child:not(:last-child) .join-item{border-end-start-radius:0;border-end-end-radius:0;border-start-start-radius:inherit;border-start-end-radius:inherit}.join.join-vertical .join-item:last-child:not(:first-child),.join.join-vertical :last-child:not(:first-child) .join-item{border-start-start-radius:0;border-start-end-radius:0;border-end-start-radius:inherit;border-end-end-radius:inherit}.join.join-horizontal{flex-direction:row}.join.join-horizontal .join-item:first-child:not(:last-child),.join.join-horizontal :first-child:not(:last-child) .join-item{border-end-end-radius:0;border-start-end-radius:0;border-end-start-radius:inherit;border-start-start-radius:inherit}.join.join-horizontal .join-item:last-child:not(:first-child),.join.join-horizontal :last-child:not(:first-child) .join-item{border-end-start-radius:0;border-start-start-radius:0;border-end-end-radius:inherit;border-start-end-radius:inherit}.kbd-xs{padding-left:.25rem;padding-right:.25rem;font-size:.75rem;line-height:1rem;min-height:1.2em;min-width:1.2em}.kbd-sm{padding-left:.25rem;padding-right:.25rem;font-size:.875rem;line-height:1.25rem;min-height:1.6em;min-width:1.6em}.kbd-md{padding-left:.5rem;padding-right:.5rem;font-size:1rem;line-height:1.5rem;min-height:2.2em;min-width:2.2em}.kbd-lg{padding-left:1rem;padding-right:1rem;font-size:1.125rem;line-height:1.75rem;min-height:2.5em;min-width:2.5em}.menu-horizontal{display:inline-flex;flex-direction:row}.menu-horizontal>li:not(.menu-title)>details>ul{position:absolute}.menu-vertical{display:flex;flex-direction:column}.menu-vertical>li:not(.menu-title)>details>ul{position:relative}.modal-top{place-items:start}.modal-middle{place-items:center}.modal-bottom{place-items:end}[type=radio].radio-xs{height:1rem;width:1rem}[type=radio].radio-sm{height:1.25rem;width:1.25rem}[type=radio].radio-md{height:1.5rem;width:1.5rem}[type=radio].radio-lg{height:2rem;width:2rem}.range-xs{height:1rem}.range-xs::-webkit-slider-runnable-track{height:.25rem}.range-xs::-moz-range-track{height:.25rem}.range-xs::-webkit-slider-thumb{height:1rem;width:1rem;--filler-offset:0.4rem}.range-xs::-moz-range-thumb{height:1rem;width:1rem;--filler-offset:0.4rem}.range-sm{height:1.25rem}.range-sm::-webkit-slider-runnable-track{height:.25rem}.range-sm::-moz-range-track{height:.25rem}.range-sm::-webkit-slider-thumb{height:1.25rem;width:1.25rem;--filler-offset:0.5rem}.range-sm::-moz-range-thumb{height:1.25rem;width:1.25rem;--filler-offset:0.5rem}.range-md{height:1.5rem}.range-md::-webkit-slider-runnable-track{height:.5rem}.range-md::-moz-range-track{height:.5rem}.range-md::-webkit-slider-thumb{height:1.5rem;width:1.5rem;--filler-offset:0.6rem}.range-md::-moz-range-thumb{height:1.5rem;width:1.5rem;--filler-offset:0.6rem}.range-lg{height:2rem}.range-lg::-webkit-slider-runnable-track{height:1rem}.range-lg::-moz-range-track{height:1rem}.range-lg::-webkit-slider-thumb{height:2rem;width:2rem;--filler-offset:1rem}.range-lg::-moz-range-thumb{height:2rem;width:2rem;--filler-offset:1rem}.rating-xs input{height:.75rem;width:.75rem}.rating-sm input{height:1rem;width:1rem}.rating-md input{height:1.5rem;width:1.5rem}.rating-lg input{height:2.5rem;width:2.5rem}.rating-half.rating-xs input:not(.rating-hidden){width:.375rem}.rating-half.rating-sm input:not(.rating-hidden){width:.5rem}.rating-half.rating-md input:not(.rating-hidden){width:.75rem}.rating-half.rating-lg input:not(.rating-hidden){width:1.25rem}.select-md{height:3rem;min-height:3rem;padding-left:1rem;padding-right:2.5rem;font-size:.875rem;line-height:1.25rem;line-height:2}[dir=rtl] .select-md{padding-left:2.5rem;padding-right:1rem}.select-lg{height:4rem;min-height:4rem;padding-left:1.5rem;padding-right:2rem;font-size:1.125rem;line-height:1.75rem;line-height:2}[dir=rtl] .select-lg{padding-left:2rem;padding-right:1.5rem}.select-sm{height:2rem;min-height:2rem;padding-left:.75rem;padding-right:2rem;font-size:.875rem;line-height:2rem}[dir=rtl] .select-sm{padding-left:2rem;padding-right:.75rem}.select-xs{height:1.5rem;min-height:1.5rem;padding-left:.5rem;padding-right:2rem;font-size:.75rem;line-height:1rem;line-height:1.625}[dir=rtl] .select-xs{padding-left:2rem;padding-right:.5rem}.stats-horizontal{grid-auto-flow:column}.stats-vertical{grid-auto-flow:row}.steps-horizontal{grid-auto-columns:1fr;display:inline-grid;grid-auto-flow:column;overflow:hidden;overflow-x:auto}.steps-horizontal .step{display:grid;grid-template-columns:repeat(1,minmax(0,1fr));grid-template-rows:repeat(2,minmax(0,1fr));place-items:center;text-align:center}.steps-vertical{grid-auto-rows:1fr;grid-auto-flow:row}.steps-vertical .step{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));grid-template-rows:repeat(1,minmax(0,1fr))}.tabs-md :where(.tab){height:2rem;font-size:.875rem;line-height:1.25rem;line-height:2;--tab-padding:1rem}.tabs-lg :where(.tab){height:3rem;font-size:1.125rem;line-height:1.75rem;line-height:2;--tab-padding:1.25rem}.tabs-sm :where(.tab){height:1.5rem;font-size:.875rem;line-height:.75rem;--tab-padding:0.75rem}.tabs-xs :where(.tab){height:1.25rem;font-size:.75rem;line-height:.75rem;--tab-padding:0.5rem}.textarea-xs{padding-left:.5rem;padding-right:.5rem;padding-top:.25rem;padding-bottom:.25rem;font-size:.75rem;line-height:1rem;line-height:1.625}.textarea-sm{padding-left:.75rem;padding-right:.75rem;padding-top:.25rem;padding-bottom:.25rem;font-size:.875rem;line-height:2rem}.textarea-md{padding-left:1rem;padding-right:1rem;padding-top:.75rem;padding-bottom:.75rem;font-size:.875rem;line-height:1.25rem;line-height:2}.textarea-lg{padding-left:1.5rem;padding-right:1.5rem;padding-top:1rem;padding-bottom:1rem;font-size:1.125rem;line-height:1.75rem;line-height:2}.timeline-vertical{flex-direction:column}.timeline-compact,.timeline-horizontal.timeline-compact{--timeline-row-start:0}.timeline-compact .timeline-start,.timeline-horizontal.timeline-compact .timeline-start{grid-column-start:1;grid-column-end:4;grid-row-start:3;grid-row-end:4;margin:.25rem;align-self:flex-start;justify-self:center}.timeline-compact li:has(.timeline-start) .timeline-end,.timeline-horizontal.timeline-compact li:has(.timeline-start) .timeline-end{grid-column-start:none;grid-row-start:auto}.timeline-vertical.timeline-compact>li{--timeline-col-start:0}.timeline-vertical.timeline-compact .timeline-start{grid-column-start:3;grid-column-end:4;grid-row-start:1;grid-row-end:4;align-self:center;justify-self:start}.timeline-vertical.timeline-compact li:has(.timeline-start) .timeline-end{grid-column-start:auto;grid-row-start:none}:where(.timeline-vertical > li){--timeline-row-start:minmax(0, 1fr);--timeline-row-end:minmax(0, 1fr);justify-items:center}.timeline-vertical>li>hr{height:100%}:where(.timeline-vertical > li > hr):first-child{grid-column-start:2;grid-row-start:1}:where(.timeline-vertical > li > hr):last-child{grid-column-start:2;grid-column-end:auto;grid-row-start:3;grid-row-end:none}.timeline-vertical .timeline-start{grid-column-start:1;grid-column-end:2;grid-row-start:1;grid-row-end:4;align-self:center;justify-self:end}.timeline-vertical .timeline-end{grid-column-start:3;grid-column-end:4;grid-row-start:1;grid-row-end:4;align-self:center;justify-self:start}.timeline-vertical:where(.timeline-snap-icon)>li{--timeline-col-start:minmax(0, 1fr);--timeline-row-start:0.5rem}.timeline-horizontal{flex-direction:row}.timeline-horizontal>li>hr{width:100%}:where(.timeline-horizontal > li){align-items:center}:where(.timeline-horizontal > li > hr):first-child{grid-column-start:1;grid-row-start:2}:where(.timeline-horizontal > li > hr):last-child{grid-column-start:3;grid-column-end:none;grid-row-start:2;grid-row-end:auto}.timeline-horizontal .timeline-start{grid-column-start:1;grid-column-end:4;grid-row-start:1;grid-row-end:2;align-self:flex-end;justify-self:center}.timeline-horizontal .timeline-end{grid-column-start:1;grid-column-end:4;grid-row-start:3;grid-row-end:4;align-self:flex-start;justify-self:center}.timeline-horizontal:where(.timeline-snap-icon)>li,:where(.timeline-snap-icon)>li{--timeline-col-start:0.5rem;--timeline-row-start:minmax(0, 1fr)}:where(.toast){bottom:0;inset-inline-end:0px;inset-inline-start:auto;top:auto;--tw-translate-x:0px;--tw-translate-y:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.toast:where(.toast-start){inset-inline-end:auto;inset-inline-start:0px;--tw-translate-x:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.toast:where(.toast-center){inset-inline-end:50%;inset-inline-start:50%;--tw-translate-x:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}:is([dir=rtl] .toast:where(.toast-center)){--tw-translate-x:50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.toast:where(.toast-end){inset-inline-end:0px;inset-inline-start:auto;--tw-translate-x:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.toast:where(.toast-bottom){bottom:0;top:auto;--tw-translate-y:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.toast:where(.toast-middle){bottom:auto;top:50%;--tw-translate-y:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.toast:where(.toast-top){bottom:auto;top:0;--tw-translate-y:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}[type=checkbox].toggle-xs{--handleoffset:0.5rem;height:1rem;width:1.5rem}[type=checkbox].toggle-sm{--handleoffset:0.75rem;height:1.25rem;width:2rem}[type=checkbox].toggle-md{--handleoffset:1.5rem;height:1.5rem;width:3rem}[type=checkbox].toggle-lg{--handleoffset:2rem;height:2rem;width:4rem}.tooltip{position:relative;display:inline-block;--tooltip-offset:calc(100% + 1px + var(--tooltip-tail, 0px))}.tooltip:before{position:absolute;pointer-events:none;z-index:1;content:var(--tw-content);--tw-content:attr(data-tip)}.tooltip-top:before,.tooltip:before{transform:translateX(-50%);top:auto;left:50%;right:auto;bottom:var(--tooltip-offset)}.tooltip-bottom:before{transform:translateX(-50%);top:var(--tooltip-offset);left:50%;right:auto;bottom:auto}.tooltip-left:before{transform:translateY(-50%);top:50%;left:auto;right:var(--tooltip-offset);bottom:auto}.tooltip-right:before{transform:translateY(-50%);top:50%;left:var(--tooltip-offset);right:auto;bottom:auto}.artboard-demo{border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-bc,oklch(var(--bc)/var(--tw-text-opacity)));box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.avatar.online:before{content:"";position:absolute;z-index:10;display:block;border-radius:9999px;--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));outline-style:solid;outline-width:2px;outline-color:var(--fallback-b1,oklch(var(--b1)/1));width:15%;height:15%;top:7%;right:7%}.avatar.offline:before{content:"";position:absolute;z-index:10;display:block;border-radius:9999px;--tw-bg-opacity:1;background-color:var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));outline-style:solid;outline-width:2px;outline-color:var(--fallback-b1,oklch(var(--b1)/1));width:15%;height:15%;top:7%;right:7%}.card-compact .card-body{padding:1rem;font-size:.875rem;line-height:1.25rem}.card-compact .card-title{margin-bottom:.25rem}.card-normal .card-body{padding:var(--padding-card,2rem);font-size:1rem;line-height:1.5rem}.card-normal .card-title{margin-bottom:.75rem}.divider-horizontal{margin-left:1rem;margin-right:1rem;margin-top:0;margin-bottom:0;height:auto;width:1rem}.divider-vertical{margin-left:0;margin-right:0;margin-top:1rem;margin-bottom:1rem;height:1rem;width:auto}.drawer-open>.drawer-toggle~.drawer-side>.drawer-overlay{cursor:default;background-color:transparent}.join.join-vertical>:where(:not(:first-child)){margin-left:0;margin-right:0;margin-top:-1px}.join.join-horizontal>:where(:not(:first-child)){margin-top:0;margin-bottom:0;margin-inline-start:-1px}.menu-horizontal>li:not(.menu-title)>details>ul{margin-inline-start:0;margin-top:1rem;padding-top:.5rem;padding-bottom:.5rem;padding-inline-end:0.5rem}.menu-horizontal>li>details>ul:before{content:none}:where(.menu-horizontal > li:not(.menu-title) > details > ul){border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-b1,oklch(var(--b1)/var(--tw-bg-opacity)));--tw-shadow:0 20px 25px -5px rgb(0 0 0 / 0.1),0 8px 10px -6px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.menu-vertical>li:not(.menu-title)>details>ul{margin-inline-start:1rem;margin-top:0;padding-top:0;padding-bottom:0;padding-inline-end:0px}.menu-xs :where(li:not(.menu-title) > :not(ul,details,.menu-title)),.menu-xs :where(li:not(.menu-title) > details > summary:not(.menu-title)){border-radius:.25rem;padding-left:.5rem;padding-right:.5rem;padding-top:.25rem;padding-bottom:.25rem;font-size:.75rem;line-height:1rem}.menu-xs .menu-title{padding-left:.5rem;padding-right:.5rem;padding-top:.25rem;padding-bottom:.25rem}.menu-sm :where(li:not(.menu-title) > :not(ul,details,.menu-title)),.menu-sm :where(li:not(.menu-title) > details > summary:not(.menu-title)){border-radius:var(--rounded-btn,.5rem);padding-left:.75rem;padding-right:.75rem;padding-top:.25rem;padding-bottom:.25rem;font-size:.875rem;line-height:1.25rem}.menu-sm .menu-title{padding-left:.75rem;padding-right:.75rem;padding-top:.5rem;padding-bottom:.5rem}.menu-md :where(li:not(.menu-title) > :not(ul,details,.menu-title)),.menu-md :where(li:not(.menu-title) > details > summary:not(.menu-title)){border-radius:var(--rounded-btn,.5rem);padding-left:1rem;padding-right:1rem;padding-top:.5rem;padding-bottom:.5rem;font-size:.875rem;line-height:1.25rem}.menu-md .menu-title{padding-left:1rem;padding-right:1rem;padding-top:.5rem;padding-bottom:.5rem}.menu-lg :where(li:not(.menu-title) > :not(ul,details,.menu-title)),.menu-lg :where(li:not(.menu-title) > details > summary:not(.menu-title)){border-radius:var(--rounded-btn,.5rem);padding-left:1.5rem;padding-right:1.5rem;padding-top:.75rem;padding-bottom:.75rem;font-size:1.125rem;line-height:1.75rem}.menu-lg .menu-title{padding-left:1.5rem;padding-right:1.5rem;padding-top:.75rem;padding-bottom:.75rem}.modal-top :where(.modal-box){width:100%;max-width:none;--tw-translate-y:-2.5rem;--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-bottom-right-radius:var(--rounded-box,1rem);border-bottom-left-radius:var(--rounded-box,1rem);border-top-left-radius:0;border-top-right-radius:0}.modal-middle :where(.modal-box){width:91.666667%;max-width:32rem;--tw-translate-y:0px;--tw-scale-x:.9;--tw-scale-y:.9;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-top-left-radius:var(--rounded-box,1rem);border-top-right-radius:var(--rounded-box,1rem);border-bottom-right-radius:var(--rounded-box,1rem);border-bottom-left-radius:var(--rounded-box,1rem)}.modal-bottom :where(.modal-box){width:100%;max-width:none;--tw-translate-y:2.5rem;--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-top-left-radius:var(--rounded-box,1rem);border-top-right-radius:var(--rounded-box,1rem);border-bottom-right-radius:0;border-bottom-left-radius:0}.stats-horizontal>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-right-width:calc(1px * var(--tw-divide-x-reverse));border-left-width:calc(1px * calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-top-width:calc(0px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(0px * var(--tw-divide-y-reverse))}.stats-horizontal{overflow-x:auto}:is([dir=rtl] .stats-horizontal){--tw-divide-x-reverse:1}.stats-vertical>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-right-width:calc(0px * var(--tw-divide-x-reverse));border-left-width:calc(0px * calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px * var(--tw-divide-y-reverse))}.stats-vertical{overflow-y:auto}.steps-horizontal .step{grid-template-rows:40px 1fr;grid-template-columns:auto;min-width:4rem}.steps-horizontal .step:before{height:.5rem;width:100%;--tw-translate-x:0px;--tw-translate-y:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));content:"";margin-inline-start:-100%}:is([dir=rtl] .steps-horizontal .step):before{--tw-translate-x:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.steps-vertical .step{gap:.5rem;grid-template-columns:40px 1fr;grid-template-rows:auto;min-height:4rem;justify-items:start}.steps-vertical .step:before{height:100%;width:.5rem;--tw-translate-x:-50%;--tw-translate-y:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));margin-inline-start:50%}:is([dir=rtl] .steps-vertical .step):before{--tw-translate-x:50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.table-xs :not(thead):not(tfoot) tr{font-size:.75rem;line-height:1rem}.table-xs :where(th,td){padding-left:.5rem;padding-right:.5rem;padding-top:.25rem;padding-bottom:.25rem}.table-sm :not(thead):not(tfoot) tr{font-size:.875rem;line-height:1.25rem}.table-sm :where(th,td){padding-left:.75rem;padding-right:.75rem;padding-top:.5rem;padding-bottom:.5rem}.table-md :not(thead):not(tfoot) tr{font-size:.875rem;line-height:1.25rem}.table-md :where(th,td){padding-left:1rem;padding-right:1rem;padding-top:.75rem;padding-bottom:.75rem}.table-lg :not(thead):not(tfoot) tr{font-size:1rem;line-height:1.5rem}.table-lg :where(th,td){padding-left:1.5rem;padding-right:1.5rem;padding-top:1rem;padding-bottom:1rem}.timeline-vertical>li>hr{width:.25rem}:where(.timeline-vertical:has(.timeline-middle) > li > hr):first-child{border-bottom-right-radius:var(--rounded-badge,1.9rem);border-bottom-left-radius:var(--rounded-badge,1.9rem);border-top-left-radius:0;border-top-right-radius:0}:where(.timeline-vertical:has(.timeline-middle) > li > hr):last-child{border-top-left-radius:var(--rounded-badge,1.9rem);border-top-right-radius:var(--rounded-badge,1.9rem);border-bottom-right-radius:0;border-bottom-left-radius:0}:where(.timeline-vertical:not(:has(.timeline-middle)) :first-child > hr:last-child){border-top-left-radius:var(--rounded-badge,1.9rem);border-top-right-radius:var(--rounded-badge,1.9rem);border-bottom-right-radius:0;border-bottom-left-radius:0}:where(.timeline-vertical:not(:has(.timeline-middle)) :last-child > hr:first-child){border-bottom-right-radius:var(--rounded-badge,1.9rem);border-bottom-left-radius:var(--rounded-badge,1.9rem);border-top-left-radius:0;border-top-right-radius:0}.timeline-horizontal>li>hr{height:.25rem}:where(.timeline-horizontal:has(.timeline-middle) > li > hr):first-child{border-start-end-radius:var(--rounded-badge,1.9rem);border-end-end-radius:var(--rounded-badge,1.9rem);border-start-start-radius:0px;border-end-start-radius:0px}:where(.timeline-horizontal:has(.timeline-middle) > li > hr):last-child{border-start-start-radius:var(--rounded-badge,1.9rem);border-end-start-radius:var(--rounded-badge,1.9rem);border-start-end-radius:0px;border-end-end-radius:0px}:where(.timeline-horizontal:not(:has(.timeline-middle)) :first-child > hr:last-child){border-start-start-radius:var(--rounded-badge,1.9rem);border-end-start-radius:var(--rounded-badge,1.9rem);border-start-end-radius:0px;border-end-end-radius:0px}:where(.timeline-horizontal:not(:has(.timeline-middle)) :last-child > hr:first-child){border-start-end-radius:var(--rounded-badge,1.9rem);border-end-end-radius:var(--rounded-badge,1.9rem);border-start-start-radius:0px;border-end-start-radius:0px}.tooltip{position:relative;display:inline-block;text-align:center;--tooltip-tail:0.1875rem;--tooltip-color:var(--fallback-n,oklch(var(--n)/1));--tooltip-text-color:var(--fallback-nc,oklch(var(--nc)/1));--tooltip-tail-offset:calc(100% + 0.0625rem - var(--tooltip-tail))}.tooltip:after,.tooltip:before{opacity:0;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-delay:0.1s;transition-duration:.2s;transition-timing-function:cubic-bezier(0.4,0,0.2,1)}.tooltip:after{position:absolute;content:"";border-style:solid;border-width:var(--tooltip-tail,0);width:0;height:0;display:block}.tooltip:before{max-width:20rem;border-radius:.25rem;padding-left:.5rem;padding-right:.5rem;padding-top:.25rem;padding-bottom:.25rem;font-size:.875rem;line-height:1.25rem;background-color:var(--tooltip-color);color:var(--tooltip-text-color);width:max-content}.tooltip.tooltip-open:before{opacity:1;transition-delay:75ms}.tooltip.tooltip-open:after{opacity:1;transition-delay:75ms}.tooltip:hover:before{opacity:1;transition-delay:75ms}.tooltip:hover:after{opacity:1;transition-delay:75ms}.tooltip:has(:focus-visible):after,.tooltip:has(:focus-visible):before{opacity:1;transition-delay:75ms}.tooltip:not([data-tip]):hover:after,.tooltip:not([data-tip]):hover:before{visibility:hidden;opacity:0}.tooltip-top:after,.tooltip:after{transform:translateX(-50%);border-color:var(--tooltip-color) transparent transparent transparent;top:auto;left:50%;right:auto;bottom:var(--tooltip-tail-offset)}.tooltip-bottom:after{transform:translateX(-50%);border-color:transparent transparent var(--tooltip-color) transparent;top:var(--tooltip-tail-offset);left:50%;right:auto;bottom:auto}.tooltip-left:after{transform:translateY(-50%);border-color:transparent transparent transparent var(--tooltip-color);top:50%;left:auto;right:calc(var(--tooltip-tail-offset) + .0625rem);bottom:auto}.tooltip-right:after{transform:translateY(-50%);border-color:transparent var(--tooltip-color) transparent transparent;top:50%;left:calc(var(--tooltip-tail-offset) + .0625rem);right:auto;bottom:auto}.tooltip-primary{--tooltip-color:var(--fallback-p,oklch(var(--p)/1));--tooltip-text-color:var(--fallback-pc,oklch(var(--pc)/1))}.tooltip-secondary{--tooltip-color:var(--fallback-s,oklch(var(--s)/1));--tooltip-text-color:var(--fallback-sc,oklch(var(--sc)/1))}.tooltip-accent{--tooltip-color:var(--fallback-a,oklch(var(--a)/1));--tooltip-text-color:var(--fallback-ac,oklch(var(--ac)/1))}.tooltip-info{--tooltip-color:var(--fallback-in,oklch(var(--in)/1));--tooltip-text-color:var(--fallback-inc,oklch(var(--inc)/1))}.tooltip-success{--tooltip-color:var(--fallback-su,oklch(var(--su)/1));--tooltip-text-color:var(--fallback-suc,oklch(var(--suc)/1))}.tooltip-warning{--tooltip-color:var(--fallback-wa,oklch(var(--wa)/1));--tooltip-text-color:var(--fallback-wac,oklch(var(--wac)/1))}.tooltip-error{--tooltip-color:var(--fallback-er,oklch(var(--er)/1));--tooltip-text-color:var(--fallback-erc,oklch(var(--erc)/1))}@media (hover:hover){.hover\:checkbox-success:hover:hover{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.hover\:checkbox-warning:hover:hover{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.hover\:checkbox-info:hover:hover{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.hover\:checkbox-error:hover:hover{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.hover\:radio-success:hover:hover{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.hover\:radio-warning:hover:hover{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.hover\:radio-info:hover:hover{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.hover\:radio-error:hover:hover{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}}@media (hover:hover){.hover\:btn-success:hover.btn-outline:hover{--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.hover\:btn-success:hover.btn-outline:hover{background-color:color-mix(in oklab,var(--fallback-su,oklch(var(--su)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-su,oklch(var(--su)/1)) 90%,#000)}}.hover\:btn-success:hover.btn-outline:hover{--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.hover\:btn-success:hover.btn-outline:hover{background-color:color-mix(in oklab,var(--fallback-su,oklch(var(--su)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-su,oklch(var(--su)/1)) 90%,#000)}}.hover\:btn-info:hover.btn-outline:hover{--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.hover\:btn-info:hover.btn-outline:hover{background-color:color-mix(in oklab,var(--fallback-in,oklch(var(--in)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-in,oklch(var(--in)/1)) 90%,#000)}}.hover\:btn-info:hover.btn-outline:hover{--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.hover\:btn-info:hover.btn-outline:hover{background-color:color-mix(in oklab,var(--fallback-in,oklch(var(--in)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-in,oklch(var(--in)/1)) 90%,#000)}}.hover\:btn-warning:hover.btn-outline:hover{--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.hover\:btn-warning:hover.btn-outline:hover{background-color:color-mix(in oklab,var(--fallback-wa,oklch(var(--wa)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-wa,oklch(var(--wa)/1)) 90%,#000)}}.hover\:btn-warning:hover.btn-outline:hover{--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.hover\:btn-warning:hover.btn-outline:hover{background-color:color-mix(in oklab,var(--fallback-wa,oklch(var(--wa)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-wa,oklch(var(--wa)/1)) 90%,#000)}}.hover\:btn-error:hover.btn-outline:hover{--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.hover\:btn-error:hover.btn-outline:hover{background-color:color-mix(in oklab,var(--fallback-er,oklch(var(--er)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-er,oklch(var(--er)/1)) 90%,#000)}}.hover\:btn-error:hover.btn-outline:hover{--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.hover\:btn-error:hover.btn-outline:hover{background-color:color-mix(in oklab,var(--fallback-er,oklch(var(--er)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-er,oklch(var(--er)/1)) 90%,#000)}}}.hover\:alert-info:hover{border-color:var(--fallback-in,oklch(var(--in)/.2));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));--alert-bg:var(--fallback-in,oklch(var(--in)/1));--alert-bg-mix:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:alert-success:hover{border-color:var(--fallback-su,oklch(var(--su)/.2));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));--alert-bg:var(--fallback-su,oklch(var(--su)/1));--alert-bg-mix:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:alert-warning:hover{border-color:var(--fallback-wa,oklch(var(--wa)/.2));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));--alert-bg:var(--fallback-wa,oklch(var(--wa)/1));--alert-bg-mix:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:alert-error:hover{border-color:var(--fallback-er,oklch(var(--er)/.2));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));--alert-bg:var(--fallback-er,oklch(var(--er)/1));--alert-bg-mix:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:badge-info:hover{border-color:transparent;--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.hover\:badge-success:hover{border-color:transparent;--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.hover\:badge-warning:hover{border-color:transparent;--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.hover\:badge-error:hover{border-color:transparent;--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}.hover\:badge-info:hover.badge-outline{--tw-text-opacity:1;color:var(--fallback-in,oklch(var(--in)/var(--tw-text-opacity)))}.hover\:badge-success:hover.badge-outline{--tw-text-opacity:1;color:var(--fallback-su,oklch(var(--su)/var(--tw-text-opacity)))}.hover\:badge-warning:hover.badge-outline{--tw-text-opacity:1;color:var(--fallback-wa,oklch(var(--wa)/var(--tw-text-opacity)))}.hover\:badge-error:hover.badge-outline{--tw-text-opacity:1;color:var(--fallback-er,oklch(var(--er)/var(--tw-text-opacity)))}@supports not (color:oklch(0% 0 0)){.hover\:btn-info:hover{--btn-color:var(--fallback-in)}.hover\:btn-success:hover{--btn-color:var(--fallback-su)}.hover\:btn-warning:hover{--btn-color:var(--fallback-wa)}.hover\:btn-error:hover{--btn-color:var(--fallback-er)}}@supports (color:color-mix(in oklab,black,black)){.hover\:btn-success:hover.btn-outline.btn-active{background-color:color-mix(in oklab,var(--fallback-su,oklch(var(--su)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-su,oklch(var(--su)/1)) 90%,#000)}.hover\:btn-info:hover.btn-outline.btn-active{background-color:color-mix(in oklab,var(--fallback-in,oklch(var(--in)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-in,oklch(var(--in)/1)) 90%,#000)}.hover\:btn-warning:hover.btn-outline.btn-active{background-color:color-mix(in oklab,var(--fallback-wa,oklch(var(--wa)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-wa,oklch(var(--wa)/1)) 90%,#000)}.hover\:btn-error:hover.btn-outline.btn-active{background-color:color-mix(in oklab,var(--fallback-er,oklch(var(--er)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-er,oklch(var(--er)/1)) 90%,#000)}}@supports (color:oklch(0% 0 0)){.hover\:btn-info:hover{--btn-color:var(--in)}.hover\:btn-success:hover{--btn-color:var(--su)}.hover\:btn-warning:hover{--btn-color:var(--wa)}.hover\:btn-error:hover{--btn-color:var(--er)}}.hover\:btn-info:hover{--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));outline-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:btn-success:hover{--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));outline-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:btn-warning:hover{--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:btn-error:hover{--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));outline-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:btn-success:hover.btn-outline{--tw-text-opacity:1;color:var(--fallback-su,oklch(var(--su)/var(--tw-text-opacity)))}.hover\:btn-success:hover.btn-outline.btn-active{--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.hover\:btn-info:hover.btn-outline{--tw-text-opacity:1;color:var(--fallback-in,oklch(var(--in)/var(--tw-text-opacity)))}.hover\:btn-info:hover.btn-outline.btn-active{--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.hover\:btn-warning:hover.btn-outline{--tw-text-opacity:1;color:var(--fallback-wa,oklch(var(--wa)/var(--tw-text-opacity)))}.hover\:btn-warning:hover.btn-outline.btn-active{--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.hover\:btn-error:hover.btn-outline{--tw-text-opacity:1;color:var(--fallback-er,oklch(var(--er)/var(--tw-text-opacity)))}.hover\:btn-error:hover.btn-outline.btn-active{--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}.hover\:chat-bubble-info:hover{--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.hover\:chat-bubble-success:hover{--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.hover\:chat-bubble-warning:hover{--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.hover\:chat-bubble-error:hover{--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}.hover\:checkbox-success:hover{--chkbg:var(--fallback-su,oklch(var(--su)/1));--chkfg:var(--fallback-suc,oklch(var(--suc)/1));--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.hover\:checkbox-success:hover:focus-visible{outline-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:checkbox-success:hover:checked,.hover\:checkbox-success:hover[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.hover\:checkbox-warning:hover{--chkbg:var(--fallback-wa,oklch(var(--wa)/1));--chkfg:var(--fallback-wac,oklch(var(--wac)/1));--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.hover\:checkbox-warning:hover:focus-visible{outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:checkbox-warning:hover:checked,.hover\:checkbox-warning:hover[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.hover\:checkbox-info:hover{--chkbg:var(--fallback-in,oklch(var(--in)/1));--chkfg:var(--fallback-inc,oklch(var(--inc)/1));--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.hover\:checkbox-info:hover:focus-visible{outline-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:checkbox-info:hover:checked,.hover\:checkbox-info:hover[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.hover\:checkbox-error:hover{--chkbg:var(--fallback-er,oklch(var(--er)/1));--chkfg:var(--fallback-erc,oklch(var(--erc)/1));--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.hover\:checkbox-error:hover:focus-visible{outline-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:checkbox-error:hover:checked,.hover\:checkbox-error:hover[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}.hover\:divider-success:hover:after,.hover\:divider-success:hover:before{--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)))}.hover\:divider-warning:hover:after,.hover\:divider-warning:hover:before{--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)))}.hover\:divider-info:hover:after,.hover\:divider-info:hover:before{--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)))}.hover\:divider-error:hover:after,.hover\:divider-error:hover:before{--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)))}.hover\:file-input-info:hover{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.hover\:file-input-info:hover:focus{outline-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:file-input-info:hover::file-selector-button{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.hover\:file-input-success:hover{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.hover\:file-input-success:hover:focus{outline-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:file-input-success:hover::file-selector-button{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.hover\:file-input-warning:hover{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.hover\:file-input-warning:hover:focus{outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:file-input-warning:hover::file-selector-button{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.hover\:file-input-error:hover{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.hover\:file-input-error:hover:focus{outline-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:file-input-error:hover::file-selector-button{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}.hover\:input-info:hover{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.hover\:input-info:hover:focus,.hover\:input-info:hover:focus-within{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)));outline-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:input-success:hover{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.hover\:input-success:hover:focus,.hover\:input-success:hover:focus-within{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)));outline-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:input-warning:hover{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.hover\:input-warning:hover:focus,.hover\:input-warning:hover:focus-within{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)));outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:input-error:hover{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.hover\:input-error:hover:focus,.hover\:input-error:hover:focus-within{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));outline-color:var(--fallback-er,oklch(var(--er)/1))}@supports (color:color-mix(in oklab,black,black)){@media (hover:hover){.hover\:link-success:hover:hover{color:color-mix(in oklab,var(--fallback-su,oklch(var(--su)/1)) 80%,#000)}.hover\:link-info:hover:hover{color:color-mix(in oklab,var(--fallback-in,oklch(var(--in)/1)) 80%,#000)}.hover\:link-warning:hover:hover{color:color-mix(in oklab,var(--fallback-wa,oklch(var(--wa)/1)) 80%,#000)}.hover\:link-error:hover:hover{color:color-mix(in oklab,var(--fallback-er,oklch(var(--er)/1)) 80%,#000)}}}.hover\:link-success:hover{--tw-text-opacity:1;color:var(--fallback-su,oklch(var(--su)/var(--tw-text-opacity)))}.hover\:link-info:hover{--tw-text-opacity:1;color:var(--fallback-in,oklch(var(--in)/var(--tw-text-opacity)))}.hover\:link-warning:hover{--tw-text-opacity:1;color:var(--fallback-wa,oklch(var(--wa)/var(--tw-text-opacity)))}.hover\:link-error:hover{--tw-text-opacity:1;color:var(--fallback-er,oklch(var(--er)/var(--tw-text-opacity)))}.hover\:progress-info:hover::-moz-progress-bar{border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)))}.hover\:progress-success:hover::-moz-progress-bar{border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)))}.hover\:progress-warning:hover::-moz-progress-bar{border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)))}.hover\:progress-error:hover::-moz-progress-bar{border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)))}.hover\:progress-info:hover:indeterminate{--progress-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:progress-success:hover:indeterminate{--progress-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:progress-warning:hover:indeterminate{--progress-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:progress-error:hover:indeterminate{--progress-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:progress-info:hover::-webkit-progress-value{--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)))}.hover\:progress-success:hover::-webkit-progress-value{--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)))}.hover\:progress-warning:hover::-webkit-progress-value{--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)))}.hover\:progress-error:hover::-webkit-progress-value{--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)))}.hover\:radio-success:hover{--chkbg:var(--su);--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.hover\:radio-success:hover:focus-visible{outline-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:radio-success:hover:checked,.hover\:radio-success:hover[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.hover\:radio-warning:hover{--chkbg:var(--wa);--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.hover\:radio-warning:hover:focus-visible{outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:radio-warning:hover:checked,.hover\:radio-warning:hover[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.hover\:radio-info:hover{--chkbg:var(--in);--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.hover\:radio-info:hover:focus-visible{outline-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:radio-info:hover:checked,.hover\:radio-info:hover[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.hover\:radio-error:hover{--chkbg:var(--er);--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.hover\:radio-error:hover:focus-visible{outline-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:radio-error:hover:checked,.hover\:radio-error:hover[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}.hover\:range-success:hover{--range-shdw:var(--fallback-su,oklch(var(--su)/1))}.hover\:range-warning:hover{--range-shdw:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:range-info:hover{--range-shdw:var(--fallback-in,oklch(var(--in)/1))}.hover\:range-error:hover{--range-shdw:var(--fallback-er,oklch(var(--er)/1))}.hover\:select-info:hover{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.hover\:select-info:hover:focus{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)));outline-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:select-success:hover{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.hover\:select-success:hover:focus{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)));outline-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:select-warning:hover{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.hover\:select-warning:hover:focus{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)));outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:select-error:hover{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.hover\:select-error:hover:focus{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));outline-color:var(--fallback-er,oklch(var(--er)/1))}.steps .hover\:step-info:hover+.hover\:step-info:hover:before{--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)))}.steps .hover\:step-info:hover:after{--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.steps .hover\:step-success:hover+.hover\:step-success:hover:before{--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)))}.steps .hover\:step-success:hover:after{--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.steps .hover\:step-warning:hover+.hover\:step-warning:hover:before{--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)))}.steps .hover\:step-warning:hover:after{--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.steps .hover\:step-error:hover+.hover\:step-error:hover:before{--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)))}.steps .hover\:step-error:hover:after{--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}.hover\:textarea-info:hover{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.hover\:textarea-info:hover:focus{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)));outline-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:textarea-success:hover{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.hover\:textarea-success:hover:focus{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)));outline-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:textarea-warning:hover{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.hover\:textarea-warning:hover:focus{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)));outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:textarea-error:hover{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.hover\:textarea-error:hover:focus{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));outline-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:toggle-success:hover:focus-visible{outline-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:toggle-success:hover:checked,.hover\:toggle-success:hover[aria-checked=true]{border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)));--tw-border-opacity:0.1;--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.hover\:toggle-warning:hover:focus-visible{outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:toggle-warning:hover:checked,.hover\:toggle-warning:hover[aria-checked=true]{border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)));--tw-border-opacity:0.1;--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.hover\:toggle-info:hover:focus-visible{outline-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:toggle-info:hover:checked,.hover\:toggle-info:hover[aria-checked=true]{border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)));--tw-border-opacity:0.1;--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.hover\:toggle-error:hover:focus-visible{outline-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:toggle-error:hover:checked,.hover\:toggle-error:hover[aria-checked=true]{border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));--tw-border-opacity:0.1;--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}@media (hover:hover){.focus\:checkbox-success:focus:hover{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.focus\:checkbox-warning:focus:hover{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.focus\:checkbox-info:focus:hover{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.focus\:checkbox-error:focus:hover{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.focus\:radio-success:focus:hover{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.focus\:radio-warning:focus:hover{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.focus\:radio-info:focus:hover{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.focus\:radio-error:focus:hover{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}}@media (hover:hover){.focus\:btn-success:focus.btn-outline:hover{--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.focus\:btn-success:focus.btn-outline:hover{background-color:color-mix(in oklab,var(--fallback-su,oklch(var(--su)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-su,oklch(var(--su)/1)) 90%,#000)}}.focus\:btn-success:focus.btn-outline:hover{--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.focus\:btn-success:focus.btn-outline:hover{background-color:color-mix(in oklab,var(--fallback-su,oklch(var(--su)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-su,oklch(var(--su)/1)) 90%,#000)}}.focus\:btn-info:focus.btn-outline:hover{--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.focus\:btn-info:focus.btn-outline:hover{background-color:color-mix(in oklab,var(--fallback-in,oklch(var(--in)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-in,oklch(var(--in)/1)) 90%,#000)}}.focus\:btn-info:focus.btn-outline:hover{--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.focus\:btn-info:focus.btn-outline:hover{background-color:color-mix(in oklab,var(--fallback-in,oklch(var(--in)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-in,oklch(var(--in)/1)) 90%,#000)}}.focus\:btn-warning:focus.btn-outline:hover{--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.focus\:btn-warning:focus.btn-outline:hover{background-color:color-mix(in oklab,var(--fallback-wa,oklch(var(--wa)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-wa,oklch(var(--wa)/1)) 90%,#000)}}.focus\:btn-warning:focus.btn-outline:hover{--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.focus\:btn-warning:focus.btn-outline:hover{background-color:color-mix(in oklab,var(--fallback-wa,oklch(var(--wa)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-wa,oklch(var(--wa)/1)) 90%,#000)}}.focus\:btn-error:focus.btn-outline:hover{--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.focus\:btn-error:focus.btn-outline:hover{background-color:color-mix(in oklab,var(--fallback-er,oklch(var(--er)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-er,oklch(var(--er)/1)) 90%,#000)}}.focus\:btn-error:focus.btn-outline:hover{--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}@supports (color:color-mix(in oklab,black,black)){.focus\:btn-error:focus.btn-outline:hover{background-color:color-mix(in oklab,var(--fallback-er,oklch(var(--er)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-er,oklch(var(--er)/1)) 90%,#000)}}}.focus\:alert-info:focus{border-color:var(--fallback-in,oklch(var(--in)/.2));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));--alert-bg:var(--fallback-in,oklch(var(--in)/1));--alert-bg-mix:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:alert-success:focus{border-color:var(--fallback-su,oklch(var(--su)/.2));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));--alert-bg:var(--fallback-su,oklch(var(--su)/1));--alert-bg-mix:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:alert-warning:focus{border-color:var(--fallback-wa,oklch(var(--wa)/.2));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));--alert-bg:var(--fallback-wa,oklch(var(--wa)/1));--alert-bg-mix:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:alert-error:focus{border-color:var(--fallback-er,oklch(var(--er)/.2));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));--alert-bg:var(--fallback-er,oklch(var(--er)/1));--alert-bg-mix:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:badge-info:focus{border-color:transparent;--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.focus\:badge-success:focus{border-color:transparent;--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.focus\:badge-warning:focus{border-color:transparent;--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.focus\:badge-error:focus{border-color:transparent;--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}.focus\:badge-info:focus.badge-outline{--tw-text-opacity:1;color:var(--fallback-in,oklch(var(--in)/var(--tw-text-opacity)))}.focus\:badge-success:focus.badge-outline{--tw-text-opacity:1;color:var(--fallback-su,oklch(var(--su)/var(--tw-text-opacity)))}.focus\:badge-warning:focus.badge-outline{--tw-text-opacity:1;color:var(--fallback-wa,oklch(var(--wa)/var(--tw-text-opacity)))}.focus\:badge-error:focus.badge-outline{--tw-text-opacity:1;color:var(--fallback-er,oklch(var(--er)/var(--tw-text-opacity)))}@supports not (color:oklch(0% 0 0)){.focus\:btn-info:focus{--btn-color:var(--fallback-in)}.focus\:btn-success:focus{--btn-color:var(--fallback-su)}.focus\:btn-warning:focus{--btn-color:var(--fallback-wa)}.focus\:btn-error:focus{--btn-color:var(--fallback-er)}}@supports (color:color-mix(in oklab,black,black)){.focus\:btn-success:focus.btn-outline.btn-active{background-color:color-mix(in oklab,var(--fallback-su,oklch(var(--su)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-su,oklch(var(--su)/1)) 90%,#000)}.focus\:btn-info:focus.btn-outline.btn-active{background-color:color-mix(in oklab,var(--fallback-in,oklch(var(--in)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-in,oklch(var(--in)/1)) 90%,#000)}.focus\:btn-warning:focus.btn-outline.btn-active{background-color:color-mix(in oklab,var(--fallback-wa,oklch(var(--wa)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-wa,oklch(var(--wa)/1)) 90%,#000)}.focus\:btn-error:focus.btn-outline.btn-active{background-color:color-mix(in oklab,var(--fallback-er,oklch(var(--er)/1)) 90%,#000);border-color:color-mix(in oklab,var(--fallback-er,oklch(var(--er)/1)) 90%,#000)}}@supports (color:oklch(0% 0 0)){.focus\:btn-info:focus{--btn-color:var(--in)}.focus\:btn-success:focus{--btn-color:var(--su)}.focus\:btn-warning:focus{--btn-color:var(--wa)}.focus\:btn-error:focus{--btn-color:var(--er)}}.focus\:btn-info:focus{--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)));outline-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:btn-success:focus{--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)));outline-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:btn-warning:focus{--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)));outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:btn-error:focus{--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)));outline-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:btn-success:focus.btn-outline{--tw-text-opacity:1;color:var(--fallback-su,oklch(var(--su)/var(--tw-text-opacity)))}.focus\:btn-success:focus.btn-outline.btn-active{--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.focus\:btn-info:focus.btn-outline{--tw-text-opacity:1;color:var(--fallback-in,oklch(var(--in)/var(--tw-text-opacity)))}.focus\:btn-info:focus.btn-outline.btn-active{--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.focus\:btn-warning:focus.btn-outline{--tw-text-opacity:1;color:var(--fallback-wa,oklch(var(--wa)/var(--tw-text-opacity)))}.focus\:btn-warning:focus.btn-outline.btn-active{--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.focus\:btn-error:focus.btn-outline{--tw-text-opacity:1;color:var(--fallback-er,oklch(var(--er)/var(--tw-text-opacity)))}.focus\:btn-error:focus.btn-outline.btn-active{--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}.focus\:chat-bubble-info:focus{--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.focus\:chat-bubble-success:focus{--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.focus\:chat-bubble-warning:focus{--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.focus\:chat-bubble-error:focus{--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}.focus\:checkbox-success:focus{--chkbg:var(--fallback-su,oklch(var(--su)/1));--chkfg:var(--fallback-suc,oklch(var(--suc)/1));--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.focus\:checkbox-success:focus:focus-visible{outline-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:checkbox-success:focus:checked,.focus\:checkbox-success:focus[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.focus\:checkbox-warning:focus{--chkbg:var(--fallback-wa,oklch(var(--wa)/1));--chkfg:var(--fallback-wac,oklch(var(--wac)/1));--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.focus\:checkbox-warning:focus:focus-visible{outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:checkbox-warning:focus:checked,.focus\:checkbox-warning:focus[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.focus\:checkbox-info:focus{--chkbg:var(--fallback-in,oklch(var(--in)/1));--chkfg:var(--fallback-inc,oklch(var(--inc)/1));--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.focus\:checkbox-info:focus:focus-visible{outline-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:checkbox-info:focus:checked,.focus\:checkbox-info:focus[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.focus\:checkbox-error:focus{--chkbg:var(--fallback-er,oklch(var(--er)/1));--chkfg:var(--fallback-erc,oklch(var(--erc)/1));--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.focus\:checkbox-error:focus:focus-visible{outline-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:checkbox-error:focus:checked,.focus\:checkbox-error:focus[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}.focus\:divider-success:focus:after,.focus\:divider-success:focus:before{--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)))}.focus\:divider-warning:focus:after,.focus\:divider-warning:focus:before{--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)))}.focus\:divider-info:focus:after,.focus\:divider-info:focus:before{--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)))}.focus\:divider-error:focus:after,.focus\:divider-error:focus:before{--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)))}.focus\:file-input-info:focus{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.focus\:file-input-info:focus:focus{outline-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:file-input-info:focus::file-selector-button{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.focus\:file-input-success:focus{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.focus\:file-input-success:focus:focus{outline-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:file-input-success:focus::file-selector-button{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.focus\:file-input-warning:focus{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.focus\:file-input-warning:focus:focus{outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:file-input-warning:focus::file-selector-button{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.focus\:file-input-error:focus{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.focus\:file-input-error:focus:focus{outline-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:file-input-error:focus::file-selector-button{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}.focus\:input-info:focus{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.focus\:input-info:focus:focus,.focus\:input-info:focus:focus-within{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)));outline-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:input-success:focus{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.focus\:input-success:focus:focus,.focus\:input-success:focus:focus-within{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)));outline-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:input-warning:focus{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.focus\:input-warning:focus:focus,.focus\:input-warning:focus:focus-within{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)));outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:input-error:focus{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.focus\:input-error:focus:focus,.focus\:input-error:focus:focus-within{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));outline-color:var(--fallback-er,oklch(var(--er)/1))}@supports (color:color-mix(in oklab,black,black)){@media (hover:hover){.focus\:link-success:focus:hover{color:color-mix(in oklab,var(--fallback-su,oklch(var(--su)/1)) 80%,#000)}.focus\:link-info:focus:hover{color:color-mix(in oklab,var(--fallback-in,oklch(var(--in)/1)) 80%,#000)}.focus\:link-warning:focus:hover{color:color-mix(in oklab,var(--fallback-wa,oklch(var(--wa)/1)) 80%,#000)}.focus\:link-error:focus:hover{color:color-mix(in oklab,var(--fallback-er,oklch(var(--er)/1)) 80%,#000)}}}.focus\:link-success:focus{--tw-text-opacity:1;color:var(--fallback-su,oklch(var(--su)/var(--tw-text-opacity)))}.focus\:link-info:focus{--tw-text-opacity:1;color:var(--fallback-in,oklch(var(--in)/var(--tw-text-opacity)))}.focus\:link-warning:focus{--tw-text-opacity:1;color:var(--fallback-wa,oklch(var(--wa)/var(--tw-text-opacity)))}.focus\:link-error:focus{--tw-text-opacity:1;color:var(--fallback-er,oklch(var(--er)/var(--tw-text-opacity)))}.focus\:progress-info:focus::-moz-progress-bar{border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)))}.focus\:progress-success:focus::-moz-progress-bar{border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)))}.focus\:progress-warning:focus::-moz-progress-bar{border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)))}.focus\:progress-error:focus::-moz-progress-bar{border-radius:var(--rounded-box,1rem);--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)))}.focus\:progress-info:focus:indeterminate{--progress-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:progress-success:focus:indeterminate{--progress-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:progress-warning:focus:indeterminate{--progress-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:progress-error:focus:indeterminate{--progress-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:progress-info:focus::-webkit-progress-value{--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)))}.focus\:progress-success:focus::-webkit-progress-value{--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)))}.focus\:progress-warning:focus::-webkit-progress-value{--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)))}.focus\:progress-error:focus::-webkit-progress-value{--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)))}.focus\:radio-success:focus{--chkbg:var(--su);--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.focus\:radio-success:focus:focus-visible{outline-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:radio-success:focus:checked,.focus\:radio-success:focus[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.focus\:radio-warning:focus{--chkbg:var(--wa);--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.focus\:radio-warning:focus:focus-visible{outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:radio-warning:focus:checked,.focus\:radio-warning:focus[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.focus\:radio-info:focus{--chkbg:var(--in);--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.focus\:radio-info:focus:focus-visible{outline-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:radio-info:focus:checked,.focus\:radio-info:focus[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.focus\:radio-error:focus{--chkbg:var(--er);--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.focus\:radio-error:focus:focus-visible{outline-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:radio-error:focus:checked,.focus\:radio-error:focus[aria-checked=true]{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}.focus\:range-success:focus{--range-shdw:var(--fallback-su,oklch(var(--su)/1))}.focus\:range-warning:focus{--range-shdw:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:range-info:focus{--range-shdw:var(--fallback-in,oklch(var(--in)/1))}.focus\:range-error:focus{--range-shdw:var(--fallback-er,oklch(var(--er)/1))}.focus\:select-info:focus{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.focus\:select-info:focus:focus{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)));outline-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:select-success:focus{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.focus\:select-success:focus:focus{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)));outline-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:select-warning:focus{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.focus\:select-warning:focus:focus{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)));outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:select-error:focus{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.focus\:select-error:focus:focus{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));outline-color:var(--fallback-er,oklch(var(--er)/1))}.steps .focus\:step-info:focus+.focus\:step-info:focus:before{--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)))}.steps .focus\:step-info:focus:after{--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.steps .focus\:step-success:focus+.focus\:step-success:focus:before{--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)))}.steps .focus\:step-success:focus:after{--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.steps .focus\:step-warning:focus+.focus\:step-warning:focus:before{--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)))}.steps .focus\:step-warning:focus:after{--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.steps .focus\:step-error:focus+.focus\:step-error:focus:before{--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)))}.steps .focus\:step-error:focus:after{--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}.focus\:textarea-info:focus{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)))}.focus\:textarea-info:focus:focus{--tw-border-opacity:1;border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)));outline-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:textarea-success:focus{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)))}.focus\:textarea-success:focus:focus{--tw-border-opacity:1;border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)));outline-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:textarea-warning:focus{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)))}.focus\:textarea-warning:focus:focus{--tw-border-opacity:1;border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)));outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:textarea-error:focus{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)))}.focus\:textarea-error:focus:focus{--tw-border-opacity:1;border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));outline-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:toggle-success:focus:focus-visible{outline-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:toggle-success:focus:checked,.focus\:toggle-success:focus[aria-checked=true]{border-color:var(--fallback-su,oklch(var(--su)/var(--tw-border-opacity)));--tw-border-opacity:0.1;--tw-bg-opacity:1;background-color:var(--fallback-su,oklch(var(--su)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-suc,oklch(var(--suc)/var(--tw-text-opacity)))}.focus\:toggle-warning:focus:focus-visible{outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:toggle-warning:focus:checked,.focus\:toggle-warning:focus[aria-checked=true]{border-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-border-opacity)));--tw-border-opacity:0.1;--tw-bg-opacity:1;background-color:var(--fallback-wa,oklch(var(--wa)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-wac,oklch(var(--wac)/var(--tw-text-opacity)))}.focus\:toggle-info:focus:focus-visible{outline-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:toggle-info:focus:checked,.focus\:toggle-info:focus[aria-checked=true]{border-color:var(--fallback-in,oklch(var(--in)/var(--tw-border-opacity)));--tw-border-opacity:0.1;--tw-bg-opacity:1;background-color:var(--fallback-in,oklch(var(--in)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-inc,oklch(var(--inc)/var(--tw-text-opacity)))}.focus\:toggle-error:focus:focus-visible{outline-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:toggle-error:focus:checked,.focus\:toggle-error:focus[aria-checked=true]{border-color:var(--fallback-er,oklch(var(--er)/var(--tw-border-opacity)));--tw-border-opacity:0.1;--tw-bg-opacity:1;background-color:var(--fallback-er,oklch(var(--er)/var(--tw-bg-opacity)));--tw-text-opacity:1;color:var(--fallback-erc,oklch(var(--erc)/var(--tw-text-opacity)))}@media (min-width:640px){.sm\:dropdown-end .dropdown-content{inset-inline-end:0px}.sm\:dropdown-left .dropdown-content{bottom:auto;inset-inline-end:100%;top:0;transform-origin:right}.sm\:dropdown-right .dropdown-content{bottom:auto;inset-inline-start:100%;top:0;transform-origin:left}.sm\:dropdown-bottom .dropdown-content{bottom:auto;top:100%;transform-origin:top}.sm\:dropdown-top .dropdown-content{bottom:100%;top:auto;transform-origin:bottom}.sm\:dropdown-end.dropdown-right .dropdown-content{bottom:0;top:auto}.sm\:dropdown-right.dropdown-end .dropdown-content{bottom:0;top:auto}.sm\:dropdown-end.dropdown-left .dropdown-content{bottom:0;top:auto}.sm\:dropdown-left.dropdown-end .dropdown-content{bottom:0;top:auto}.sm\:input-md[type=number]::-webkit-inner-spin-button{margin-top:-1rem;margin-bottom:-1rem;margin-inline-end:-1rem}.sm\:input-sm[type=number]::-webkit-inner-spin-button{margin-top:0;margin-bottom:0;margin-inline-end:0}.sm\:input-lg[type=number]::-webkit-inner-spin-button{margin-top:-1.5rem;margin-bottom:-1.5rem;margin-inline-end:-1.5rem}.sm\:loading-sm{width:1.25rem}.sm\:loading-md{width:1.5rem}.sm\:loading-lg{width:2.5rem}}@media (min-width:768px){.md\:dropdown-end .dropdown-content{inset-inline-end:0px}.md\:dropdown-left .dropdown-content{bottom:auto;inset-inline-end:100%;top:0;transform-origin:right}.md\:dropdown-right .dropdown-content{bottom:auto;inset-inline-start:100%;top:0;transform-origin:left}.md\:dropdown-bottom .dropdown-content{bottom:auto;top:100%;transform-origin:top}.md\:dropdown-top .dropdown-content{bottom:100%;top:auto;transform-origin:bottom}.md\:dropdown-end.dropdown-right .dropdown-content{bottom:0;top:auto}.md\:dropdown-right.dropdown-end .dropdown-content{bottom:0;top:auto}.md\:dropdown-end.dropdown-left .dropdown-content{bottom:0;top:auto}.md\:dropdown-left.dropdown-end .dropdown-content{bottom:0;top:auto}.md\:input-md[type=number]::-webkit-inner-spin-button{margin-top:-1rem;margin-bottom:-1rem;margin-inline-end:-1rem}.md\:input-sm[type=number]::-webkit-inner-spin-button{margin-top:0;margin-bottom:0;margin-inline-end:0}.md\:input-lg[type=number]::-webkit-inner-spin-button{margin-top:-1.5rem;margin-bottom:-1.5rem;margin-inline-end:-1.5rem}.md\:loading-sm{width:1.25rem}.md\:loading-md{width:1.5rem}.md\:loading-lg{width:2.5rem}}@media (min-width:1024px){.lg\:dropdown-end .dropdown-content{inset-inline-end:0px}.lg\:dropdown-left .dropdown-content{bottom:auto;inset-inline-end:100%;top:0;transform-origin:right}.lg\:dropdown-right .dropdown-content{bottom:auto;inset-inline-start:100%;top:0;transform-origin:left}.lg\:dropdown-bottom .dropdown-content{bottom:auto;top:100%;transform-origin:top}.lg\:dropdown-top .dropdown-content{bottom:100%;top:auto;transform-origin:bottom}.lg\:dropdown-end.dropdown-right .dropdown-content{bottom:0;top:auto}.lg\:dropdown-right.dropdown-end .dropdown-content{bottom:0;top:auto}.lg\:dropdown-end.dropdown-left .dropdown-content{bottom:0;top:auto}.lg\:dropdown-left.dropdown-end .dropdown-content{bottom:0;top:auto}.lg\:input-md[type=number]::-webkit-inner-spin-button{margin-top:-1rem;margin-bottom:-1rem;margin-inline-end:-1rem}.lg\:input-sm[type=number]::-webkit-inner-spin-button{margin-top:0;margin-bottom:0;margin-inline-end:0}.lg\:input-lg[type=number]::-webkit-inner-spin-button{margin-top:-1.5rem;margin-bottom:-1.5rem;margin-inline-end:-1.5rem}.lg\:loading-sm{width:1.25rem}.lg\:loading-md{width:1.5rem}.lg\:loading-lg{width:2.5rem}}@media (min-width:1280px){.xl\:dropdown-end .dropdown-content{inset-inline-end:0px}.xl\:dropdown-left .dropdown-content{bottom:auto;inset-inline-end:100%;top:0;transform-origin:right}.xl\:dropdown-right .dropdown-content{bottom:auto;inset-inline-start:100%;top:0;transform-origin:left}.xl\:dropdown-bottom .dropdown-content{bottom:auto;top:100%;transform-origin:top}.xl\:dropdown-top .dropdown-content{bottom:100%;top:auto;transform-origin:bottom}.xl\:dropdown-end.dropdown-right .dropdown-content{bottom:0;top:auto}.xl\:dropdown-right.dropdown-end .dropdown-content{bottom:0;top:auto}.xl\:dropdown-end.dropdown-left .dropdown-content{bottom:0;top:auto}.xl\:dropdown-left.dropdown-end .dropdown-content{bottom:0;top:auto}.xl\:input-md[type=number]::-webkit-inner-spin-button{margin-top:-1rem;margin-bottom:-1rem;margin-inline-end:-1rem}.xl\:input-sm[type=number]::-webkit-inner-spin-button{margin-top:0;margin-bottom:0;margin-inline-end:0}.xl\:input-lg[type=number]::-webkit-inner-spin-button{margin-top:-1.5rem;margin-bottom:-1.5rem;margin-inline-end:-1.5rem}.xl\:loading-sm{width:1.25rem}.xl\:loading-md{width:1.5rem}.xl\:loading-lg{width:2.5rem}}.hover\:divide-base-100:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:divide-base-100\/0:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/0))}.hover\:divide-base-100\/10:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.1))}.hover\:divide-base-100\/100:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:divide-base-100\/20:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.2))}.hover\:divide-base-100\/25:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.25))}.hover\:divide-base-100\/30:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.3))}.hover\:divide-base-100\/40:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.4))}.hover\:divide-base-100\/5:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.05))}.hover\:divide-base-100\/50:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.5))}.hover\:divide-base-100\/60:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.6))}.hover\:divide-base-100\/70:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.7))}.hover\:divide-base-100\/75:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.75))}.hover\:divide-base-100\/80:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.8))}.hover\:divide-base-100\/90:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.9))}.hover\:divide-base-100\/95:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.95))}.hover\:divide-base-200:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:divide-base-200\/0:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/0))}.hover\:divide-base-200\/10:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.1))}.hover\:divide-base-200\/100:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:divide-base-200\/20:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.2))}.hover\:divide-base-200\/25:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.25))}.hover\:divide-base-200\/30:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.3))}.hover\:divide-base-200\/40:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.4))}.hover\:divide-base-200\/5:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.05))}.hover\:divide-base-200\/50:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.5))}.hover\:divide-base-200\/60:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.6))}.hover\:divide-base-200\/70:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.7))}.hover\:divide-base-200\/75:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.75))}.hover\:divide-base-200\/80:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.8))}.hover\:divide-base-200\/90:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.9))}.hover\:divide-base-200\/95:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.95))}.hover\:divide-base-300:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:divide-base-300\/0:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/0))}.hover\:divide-base-300\/10:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.1))}.hover\:divide-base-300\/100:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:divide-base-300\/20:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.2))}.hover\:divide-base-300\/25:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.25))}.hover\:divide-base-300\/30:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.3))}.hover\:divide-base-300\/40:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.4))}.hover\:divide-base-300\/5:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.05))}.hover\:divide-base-300\/50:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.5))}.hover\:divide-base-300\/60:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.6))}.hover\:divide-base-300\/70:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.7))}.hover\:divide-base-300\/75:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.75))}.hover\:divide-base-300\/80:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.8))}.hover\:divide-base-300\/90:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.9))}.hover\:divide-base-300\/95:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.95))}.hover\:divide-base-content:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:divide-base-content\/0:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/0))}.hover\:divide-base-content\/10:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.1))}.hover\:divide-base-content\/100:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:divide-base-content\/20:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.2))}.hover\:divide-base-content\/25:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.25))}.hover\:divide-base-content\/30:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.3))}.hover\:divide-base-content\/40:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.4))}.hover\:divide-base-content\/5:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.05))}.hover\:divide-base-content\/50:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.5))}.hover\:divide-base-content\/60:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.6))}.hover\:divide-base-content\/70:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.7))}.hover\:divide-base-content\/75:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.75))}.hover\:divide-base-content\/80:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.8))}.hover\:divide-base-content\/90:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.9))}.hover\:divide-base-content\/95:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.95))}.hover\:divide-error:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:divide-error-content:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:divide-error-content\/0:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/0))}.hover\:divide-error-content\/10:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.1))}.hover\:divide-error-content\/100:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:divide-error-content\/20:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.2))}.hover\:divide-error-content\/25:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.25))}.hover\:divide-error-content\/30:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.3))}.hover\:divide-error-content\/40:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.4))}.hover\:divide-error-content\/5:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.05))}.hover\:divide-error-content\/50:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.5))}.hover\:divide-error-content\/60:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.6))}.hover\:divide-error-content\/70:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.7))}.hover\:divide-error-content\/75:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.75))}.hover\:divide-error-content\/80:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.8))}.hover\:divide-error-content\/90:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.9))}.hover\:divide-error-content\/95:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.95))}.hover\:divide-error\/0:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/0))}.hover\:divide-error\/10:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.1))}.hover\:divide-error\/100:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:divide-error\/20:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.2))}.hover\:divide-error\/25:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.25))}.hover\:divide-error\/30:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.3))}.hover\:divide-error\/40:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.4))}.hover\:divide-error\/5:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.05))}.hover\:divide-error\/50:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.5))}.hover\:divide-error\/60:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.6))}.hover\:divide-error\/70:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.7))}.hover\:divide-error\/75:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.75))}.hover\:divide-error\/80:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.8))}.hover\:divide-error\/90:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.9))}.hover\:divide-error\/95:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.95))}.hover\:divide-info:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:divide-info-content:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:divide-info-content\/0:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/0))}.hover\:divide-info-content\/10:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.1))}.hover\:divide-info-content\/100:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:divide-info-content\/20:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.2))}.hover\:divide-info-content\/25:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.25))}.hover\:divide-info-content\/30:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.3))}.hover\:divide-info-content\/40:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.4))}.hover\:divide-info-content\/5:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.05))}.hover\:divide-info-content\/50:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.5))}.hover\:divide-info-content\/60:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.6))}.hover\:divide-info-content\/70:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.7))}.hover\:divide-info-content\/75:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.75))}.hover\:divide-info-content\/80:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.8))}.hover\:divide-info-content\/90:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.9))}.hover\:divide-info-content\/95:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.95))}.hover\:divide-info\/0:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/0))}.hover\:divide-info\/10:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.1))}.hover\:divide-info\/100:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:divide-info\/20:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.2))}.hover\:divide-info\/25:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.25))}.hover\:divide-info\/30:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.3))}.hover\:divide-info\/40:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.4))}.hover\:divide-info\/5:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.05))}.hover\:divide-info\/50:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.5))}.hover\:divide-info\/60:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.6))}.hover\:divide-info\/70:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.7))}.hover\:divide-info\/75:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.75))}.hover\:divide-info\/80:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.8))}.hover\:divide-info\/90:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.9))}.hover\:divide-info\/95:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.95))}.hover\:divide-success:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:divide-success-content:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:divide-success-content\/0:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/0))}.hover\:divide-success-content\/10:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.1))}.hover\:divide-success-content\/100:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:divide-success-content\/20:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.2))}.hover\:divide-success-content\/25:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.25))}.hover\:divide-success-content\/30:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.3))}.hover\:divide-success-content\/40:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.4))}.hover\:divide-success-content\/5:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.05))}.hover\:divide-success-content\/50:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.5))}.hover\:divide-success-content\/60:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.6))}.hover\:divide-success-content\/70:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.7))}.hover\:divide-success-content\/75:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.75))}.hover\:divide-success-content\/80:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.8))}.hover\:divide-success-content\/90:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.9))}.hover\:divide-success-content\/95:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.95))}.hover\:divide-success\/0:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/0))}.hover\:divide-success\/10:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.1))}.hover\:divide-success\/100:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:divide-success\/20:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.2))}.hover\:divide-success\/25:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.25))}.hover\:divide-success\/30:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.3))}.hover\:divide-success\/40:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.4))}.hover\:divide-success\/5:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.05))}.hover\:divide-success\/50:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.5))}.hover\:divide-success\/60:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.6))}.hover\:divide-success\/70:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.7))}.hover\:divide-success\/75:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.75))}.hover\:divide-success\/80:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.8))}.hover\:divide-success\/90:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.9))}.hover\:divide-success\/95:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.95))}.hover\:divide-warning:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:divide-warning-content:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:divide-warning-content\/0:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/0))}.hover\:divide-warning-content\/10:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.1))}.hover\:divide-warning-content\/100:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:divide-warning-content\/20:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.2))}.hover\:divide-warning-content\/25:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.25))}.hover\:divide-warning-content\/30:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.3))}.hover\:divide-warning-content\/40:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.4))}.hover\:divide-warning-content\/5:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.05))}.hover\:divide-warning-content\/50:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.5))}.hover\:divide-warning-content\/60:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.6))}.hover\:divide-warning-content\/70:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.7))}.hover\:divide-warning-content\/75:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.75))}.hover\:divide-warning-content\/80:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.8))}.hover\:divide-warning-content\/90:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.9))}.hover\:divide-warning-content\/95:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.95))}.hover\:divide-warning\/0:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/0))}.hover\:divide-warning\/10:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.1))}.hover\:divide-warning\/100:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:divide-warning\/20:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.2))}.hover\:divide-warning\/25:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.25))}.hover\:divide-warning\/30:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.3))}.hover\:divide-warning\/40:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.4))}.hover\:divide-warning\/5:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.05))}.hover\:divide-warning\/50:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.5))}.hover\:divide-warning\/60:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.6))}.hover\:divide-warning\/70:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.7))}.hover\:divide-warning\/75:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.75))}.hover\:divide-warning\/80:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.8))}.hover\:divide-warning\/90:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.9))}.hover\:divide-warning\/95:hover>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.95))}.hover\:border-accent:hover{border-color:var(--fallback-a,oklch(var(--a)/1))}.hover\:border-accent-content:hover{border-color:var(--fallback-ac,oklch(var(--ac)/1))}.hover\:border-accent-content\/0:hover{border-color:var(--fallback-ac,oklch(var(--ac)/0))}.hover\:border-accent-content\/10:hover{border-color:var(--fallback-ac,oklch(var(--ac)/.1))}.hover\:border-accent-content\/100:hover{border-color:var(--fallback-ac,oklch(var(--ac)/1))}.hover\:border-accent-content\/20:hover{border-color:var(--fallback-ac,oklch(var(--ac)/.2))}.hover\:border-accent-content\/25:hover{border-color:var(--fallback-ac,oklch(var(--ac)/.25))}.hover\:border-accent-content\/30:hover{border-color:var(--fallback-ac,oklch(var(--ac)/.3))}.hover\:border-accent-content\/40:hover{border-color:var(--fallback-ac,oklch(var(--ac)/.4))}.hover\:border-accent-content\/5:hover{border-color:var(--fallback-ac,oklch(var(--ac)/.05))}.hover\:border-accent-content\/50:hover{border-color:var(--fallback-ac,oklch(var(--ac)/.5))}.hover\:border-accent-content\/60:hover{border-color:var(--fallback-ac,oklch(var(--ac)/.6))}.hover\:border-accent-content\/70:hover{border-color:var(--fallback-ac,oklch(var(--ac)/.7))}.hover\:border-accent-content\/75:hover{border-color:var(--fallback-ac,oklch(var(--ac)/.75))}.hover\:border-accent-content\/80:hover{border-color:var(--fallback-ac,oklch(var(--ac)/.8))}.hover\:border-accent-content\/90:hover{border-color:var(--fallback-ac,oklch(var(--ac)/.9))}.hover\:border-accent-content\/95:hover{border-color:var(--fallback-ac,oklch(var(--ac)/.95))}.hover\:border-accent\/0:hover{border-color:var(--fallback-a,oklch(var(--a)/0))}.hover\:border-accent\/10:hover{border-color:var(--fallback-a,oklch(var(--a)/.1))}.hover\:border-accent\/100:hover{border-color:var(--fallback-a,oklch(var(--a)/1))}.hover\:border-accent\/20:hover{border-color:var(--fallback-a,oklch(var(--a)/.2))}.hover\:border-accent\/25:hover{border-color:var(--fallback-a,oklch(var(--a)/.25))}.hover\:border-accent\/30:hover{border-color:var(--fallback-a,oklch(var(--a)/.3))}.hover\:border-accent\/40:hover{border-color:var(--fallback-a,oklch(var(--a)/.4))}.hover\:border-accent\/5:hover{border-color:var(--fallback-a,oklch(var(--a)/.05))}.hover\:border-accent\/50:hover{border-color:var(--fallback-a,oklch(var(--a)/.5))}.hover\:border-accent\/60:hover{border-color:var(--fallback-a,oklch(var(--a)/.6))}.hover\:border-accent\/70:hover{border-color:var(--fallback-a,oklch(var(--a)/.7))}.hover\:border-accent\/75:hover{border-color:var(--fallback-a,oklch(var(--a)/.75))}.hover\:border-accent\/80:hover{border-color:var(--fallback-a,oklch(var(--a)/.8))}.hover\:border-accent\/90:hover{border-color:var(--fallback-a,oklch(var(--a)/.9))}.hover\:border-accent\/95:hover{border-color:var(--fallback-a,oklch(var(--a)/.95))}.hover\:border-base-100:hover{border-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:border-base-100\/0:hover{border-color:var(--fallback-b1,oklch(var(--b1)/0))}.hover\:border-base-100\/10:hover{border-color:var(--fallback-b1,oklch(var(--b1)/.1))}.hover\:border-base-100\/100:hover{border-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:border-base-100\/20:hover{border-color:var(--fallback-b1,oklch(var(--b1)/.2))}.hover\:border-base-100\/25:hover{border-color:var(--fallback-b1,oklch(var(--b1)/.25))}.hover\:border-base-100\/30:hover{border-color:var(--fallback-b1,oklch(var(--b1)/.3))}.hover\:border-base-100\/40:hover{border-color:var(--fallback-b1,oklch(var(--b1)/.4))}.hover\:border-base-100\/5:hover{border-color:var(--fallback-b1,oklch(var(--b1)/.05))}.hover\:border-base-100\/50:hover{border-color:var(--fallback-b1,oklch(var(--b1)/.5))}.hover\:border-base-100\/60:hover{border-color:var(--fallback-b1,oklch(var(--b1)/.6))}.hover\:border-base-100\/70:hover{border-color:var(--fallback-b1,oklch(var(--b1)/.7))}.hover\:border-base-100\/75:hover{border-color:var(--fallback-b1,oklch(var(--b1)/.75))}.hover\:border-base-100\/80:hover{border-color:var(--fallback-b1,oklch(var(--b1)/.8))}.hover\:border-base-100\/90:hover{border-color:var(--fallback-b1,oklch(var(--b1)/.9))}.hover\:border-base-100\/95:hover{border-color:var(--fallback-b1,oklch(var(--b1)/.95))}.hover\:border-base-200:hover{border-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:border-base-200\/0:hover{border-color:var(--fallback-b2,oklch(var(--b2)/0))}.hover\:border-base-200\/10:hover{border-color:var(--fallback-b2,oklch(var(--b2)/.1))}.hover\:border-base-200\/100:hover{border-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:border-base-200\/20:hover{border-color:var(--fallback-b2,oklch(var(--b2)/.2))}.hover\:border-base-200\/25:hover{border-color:var(--fallback-b2,oklch(var(--b2)/.25))}.hover\:border-base-200\/30:hover{border-color:var(--fallback-b2,oklch(var(--b2)/.3))}.hover\:border-base-200\/40:hover{border-color:var(--fallback-b2,oklch(var(--b2)/.4))}.hover\:border-base-200\/5:hover{border-color:var(--fallback-b2,oklch(var(--b2)/.05))}.hover\:border-base-200\/50:hover{border-color:var(--fallback-b2,oklch(var(--b2)/.5))}.hover\:border-base-200\/60:hover{border-color:var(--fallback-b2,oklch(var(--b2)/.6))}.hover\:border-base-200\/70:hover{border-color:var(--fallback-b2,oklch(var(--b2)/.7))}.hover\:border-base-200\/75:hover{border-color:var(--fallback-b2,oklch(var(--b2)/.75))}.hover\:border-base-200\/80:hover{border-color:var(--fallback-b2,oklch(var(--b2)/.8))}.hover\:border-base-200\/90:hover{border-color:var(--fallback-b2,oklch(var(--b2)/.9))}.hover\:border-base-200\/95:hover{border-color:var(--fallback-b2,oklch(var(--b2)/.95))}.hover\:border-base-300:hover{border-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:border-base-300\/0:hover{border-color:var(--fallback-b3,oklch(var(--b3)/0))}.hover\:border-base-300\/10:hover{border-color:var(--fallback-b3,oklch(var(--b3)/.1))}.hover\:border-base-300\/100:hover{border-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:border-base-300\/20:hover{border-color:var(--fallback-b3,oklch(var(--b3)/.2))}.hover\:border-base-300\/25:hover{border-color:var(--fallback-b3,oklch(var(--b3)/.25))}.hover\:border-base-300\/30:hover{border-color:var(--fallback-b3,oklch(var(--b3)/.3))}.hover\:border-base-300\/40:hover{border-color:var(--fallback-b3,oklch(var(--b3)/.4))}.hover\:border-base-300\/5:hover{border-color:var(--fallback-b3,oklch(var(--b3)/.05))}.hover\:border-base-300\/50:hover{border-color:var(--fallback-b3,oklch(var(--b3)/.5))}.hover\:border-base-300\/60:hover{border-color:var(--fallback-b3,oklch(var(--b3)/.6))}.hover\:border-base-300\/70:hover{border-color:var(--fallback-b3,oklch(var(--b3)/.7))}.hover\:border-base-300\/75:hover{border-color:var(--fallback-b3,oklch(var(--b3)/.75))}.hover\:border-base-300\/80:hover{border-color:var(--fallback-b3,oklch(var(--b3)/.8))}.hover\:border-base-300\/90:hover{border-color:var(--fallback-b3,oklch(var(--b3)/.9))}.hover\:border-base-300\/95:hover{border-color:var(--fallback-b3,oklch(var(--b3)/.95))}.hover\:border-base-content:hover{border-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:border-base-content\/0:hover{border-color:var(--fallback-bc,oklch(var(--bc)/0))}.hover\:border-base-content\/10:hover{border-color:var(--fallback-bc,oklch(var(--bc)/.1))}.hover\:border-base-content\/100:hover{border-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:border-base-content\/20:hover{border-color:var(--fallback-bc,oklch(var(--bc)/.2))}.hover\:border-base-content\/25:hover{border-color:var(--fallback-bc,oklch(var(--bc)/.25))}.hover\:border-base-content\/30:hover{border-color:var(--fallback-bc,oklch(var(--bc)/.3))}.hover\:border-base-content\/40:hover{border-color:var(--fallback-bc,oklch(var(--bc)/.4))}.hover\:border-base-content\/5:hover{border-color:var(--fallback-bc,oklch(var(--bc)/.05))}.hover\:border-base-content\/50:hover{border-color:var(--fallback-bc,oklch(var(--bc)/.5))}.hover\:border-base-content\/60:hover{border-color:var(--fallback-bc,oklch(var(--bc)/.6))}.hover\:border-base-content\/70:hover{border-color:var(--fallback-bc,oklch(var(--bc)/.7))}.hover\:border-base-content\/75:hover{border-color:var(--fallback-bc,oklch(var(--bc)/.75))}.hover\:border-base-content\/80:hover{border-color:var(--fallback-bc,oklch(var(--bc)/.8))}.hover\:border-base-content\/90:hover{border-color:var(--fallback-bc,oklch(var(--bc)/.9))}.hover\:border-base-content\/95:hover{border-color:var(--fallback-bc,oklch(var(--bc)/.95))}.hover\:border-error:hover{border-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:border-error-content:hover{border-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:border-error-content\/0:hover{border-color:var(--fallback-erc,oklch(var(--erc)/0))}.hover\:border-error-content\/10:hover{border-color:var(--fallback-erc,oklch(var(--erc)/.1))}.hover\:border-error-content\/100:hover{border-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:border-error-content\/20:hover{border-color:var(--fallback-erc,oklch(var(--erc)/.2))}.hover\:border-error-content\/25:hover{border-color:var(--fallback-erc,oklch(var(--erc)/.25))}.hover\:border-error-content\/30:hover{border-color:var(--fallback-erc,oklch(var(--erc)/.3))}.hover\:border-error-content\/40:hover{border-color:var(--fallback-erc,oklch(var(--erc)/.4))}.hover\:border-error-content\/5:hover{border-color:var(--fallback-erc,oklch(var(--erc)/.05))}.hover\:border-error-content\/50:hover{border-color:var(--fallback-erc,oklch(var(--erc)/.5))}.hover\:border-error-content\/60:hover{border-color:var(--fallback-erc,oklch(var(--erc)/.6))}.hover\:border-error-content\/70:hover{border-color:var(--fallback-erc,oklch(var(--erc)/.7))}.hover\:border-error-content\/75:hover{border-color:var(--fallback-erc,oklch(var(--erc)/.75))}.hover\:border-error-content\/80:hover{border-color:var(--fallback-erc,oklch(var(--erc)/.8))}.hover\:border-error-content\/90:hover{border-color:var(--fallback-erc,oklch(var(--erc)/.9))}.hover\:border-error-content\/95:hover{border-color:var(--fallback-erc,oklch(var(--erc)/.95))}.hover\:border-error\/0:hover{border-color:var(--fallback-er,oklch(var(--er)/0))}.hover\:border-error\/10:hover{border-color:var(--fallback-er,oklch(var(--er)/.1))}.hover\:border-error\/100:hover{border-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:border-error\/20:hover{border-color:var(--fallback-er,oklch(var(--er)/.2))}.hover\:border-error\/25:hover{border-color:var(--fallback-er,oklch(var(--er)/.25))}.hover\:border-error\/30:hover{border-color:var(--fallback-er,oklch(var(--er)/.3))}.hover\:border-error\/40:hover{border-color:var(--fallback-er,oklch(var(--er)/.4))}.hover\:border-error\/5:hover{border-color:var(--fallback-er,oklch(var(--er)/.05))}.hover\:border-error\/50:hover{border-color:var(--fallback-er,oklch(var(--er)/.5))}.hover\:border-error\/60:hover{border-color:var(--fallback-er,oklch(var(--er)/.6))}.hover\:border-error\/70:hover{border-color:var(--fallback-er,oklch(var(--er)/.7))}.hover\:border-error\/75:hover{border-color:var(--fallback-er,oklch(var(--er)/.75))}.hover\:border-error\/80:hover{border-color:var(--fallback-er,oklch(var(--er)/.8))}.hover\:border-error\/90:hover{border-color:var(--fallback-er,oklch(var(--er)/.9))}.hover\:border-error\/95:hover{border-color:var(--fallback-er,oklch(var(--er)/.95))}.hover\:border-info:hover{border-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:border-info-content:hover{border-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:border-info-content\/0:hover{border-color:var(--fallback-inc,oklch(var(--inc)/0))}.hover\:border-info-content\/10:hover{border-color:var(--fallback-inc,oklch(var(--inc)/.1))}.hover\:border-info-content\/100:hover{border-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:border-info-content\/20:hover{border-color:var(--fallback-inc,oklch(var(--inc)/.2))}.hover\:border-info-content\/25:hover{border-color:var(--fallback-inc,oklch(var(--inc)/.25))}.hover\:border-info-content\/30:hover{border-color:var(--fallback-inc,oklch(var(--inc)/.3))}.hover\:border-info-content\/40:hover{border-color:var(--fallback-inc,oklch(var(--inc)/.4))}.hover\:border-info-content\/5:hover{border-color:var(--fallback-inc,oklch(var(--inc)/.05))}.hover\:border-info-content\/50:hover{border-color:var(--fallback-inc,oklch(var(--inc)/.5))}.hover\:border-info-content\/60:hover{border-color:var(--fallback-inc,oklch(var(--inc)/.6))}.hover\:border-info-content\/70:hover{border-color:var(--fallback-inc,oklch(var(--inc)/.7))}.hover\:border-info-content\/75:hover{border-color:var(--fallback-inc,oklch(var(--inc)/.75))}.hover\:border-info-content\/80:hover{border-color:var(--fallback-inc,oklch(var(--inc)/.8))}.hover\:border-info-content\/90:hover{border-color:var(--fallback-inc,oklch(var(--inc)/.9))}.hover\:border-info-content\/95:hover{border-color:var(--fallback-inc,oklch(var(--inc)/.95))}.hover\:border-info\/0:hover{border-color:var(--fallback-in,oklch(var(--in)/0))}.hover\:border-info\/10:hover{border-color:var(--fallback-in,oklch(var(--in)/.1))}.hover\:border-info\/100:hover{border-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:border-info\/20:hover{border-color:var(--fallback-in,oklch(var(--in)/.2))}.hover\:border-info\/25:hover{border-color:var(--fallback-in,oklch(var(--in)/.25))}.hover\:border-info\/30:hover{border-color:var(--fallback-in,oklch(var(--in)/.3))}.hover\:border-info\/40:hover{border-color:var(--fallback-in,oklch(var(--in)/.4))}.hover\:border-info\/5:hover{border-color:var(--fallback-in,oklch(var(--in)/.05))}.hover\:border-info\/50:hover{border-color:var(--fallback-in,oklch(var(--in)/.5))}.hover\:border-info\/60:hover{border-color:var(--fallback-in,oklch(var(--in)/.6))}.hover\:border-info\/70:hover{border-color:var(--fallback-in,oklch(var(--in)/.7))}.hover\:border-info\/75:hover{border-color:var(--fallback-in,oklch(var(--in)/.75))}.hover\:border-info\/80:hover{border-color:var(--fallback-in,oklch(var(--in)/.8))}.hover\:border-info\/90:hover{border-color:var(--fallback-in,oklch(var(--in)/.9))}.hover\:border-info\/95:hover{border-color:var(--fallback-in,oklch(var(--in)/.95))}.hover\:border-neutral:hover{border-color:var(--fallback-n,oklch(var(--n)/1))}.hover\:border-neutral-content:hover{border-color:var(--fallback-nc,oklch(var(--nc)/1))}.hover\:border-neutral-content\/0:hover{border-color:var(--fallback-nc,oklch(var(--nc)/0))}.hover\:border-neutral-content\/10:hover{border-color:var(--fallback-nc,oklch(var(--nc)/.1))}.hover\:border-neutral-content\/100:hover{border-color:var(--fallback-nc,oklch(var(--nc)/1))}.hover\:border-neutral-content\/20:hover{border-color:var(--fallback-nc,oklch(var(--nc)/.2))}.hover\:border-neutral-content\/25:hover{border-color:var(--fallback-nc,oklch(var(--nc)/.25))}.hover\:border-neutral-content\/30:hover{border-color:var(--fallback-nc,oklch(var(--nc)/.3))}.hover\:border-neutral-content\/40:hover{border-color:var(--fallback-nc,oklch(var(--nc)/.4))}.hover\:border-neutral-content\/5:hover{border-color:var(--fallback-nc,oklch(var(--nc)/.05))}.hover\:border-neutral-content\/50:hover{border-color:var(--fallback-nc,oklch(var(--nc)/.5))}.hover\:border-neutral-content\/60:hover{border-color:var(--fallback-nc,oklch(var(--nc)/.6))}.hover\:border-neutral-content\/70:hover{border-color:var(--fallback-nc,oklch(var(--nc)/.7))}.hover\:border-neutral-content\/75:hover{border-color:var(--fallback-nc,oklch(var(--nc)/.75))}.hover\:border-neutral-content\/80:hover{border-color:var(--fallback-nc,oklch(var(--nc)/.8))}.hover\:border-neutral-content\/90:hover{border-color:var(--fallback-nc,oklch(var(--nc)/.9))}.hover\:border-neutral-content\/95:hover{border-color:var(--fallback-nc,oklch(var(--nc)/.95))}.hover\:border-neutral\/0:hover{border-color:var(--fallback-n,oklch(var(--n)/0))}.hover\:border-neutral\/10:hover{border-color:var(--fallback-n,oklch(var(--n)/.1))}.hover\:border-neutral\/100:hover{border-color:var(--fallback-n,oklch(var(--n)/1))}.hover\:border-neutral\/20:hover{border-color:var(--fallback-n,oklch(var(--n)/.2))}.hover\:border-neutral\/25:hover{border-color:var(--fallback-n,oklch(var(--n)/.25))}.hover\:border-neutral\/30:hover{border-color:var(--fallback-n,oklch(var(--n)/.3))}.hover\:border-neutral\/40:hover{border-color:var(--fallback-n,oklch(var(--n)/.4))}.hover\:border-neutral\/5:hover{border-color:var(--fallback-n,oklch(var(--n)/.05))}.hover\:border-neutral\/50:hover{border-color:var(--fallback-n,oklch(var(--n)/.5))}.hover\:border-neutral\/60:hover{border-color:var(--fallback-n,oklch(var(--n)/.6))}.hover\:border-neutral\/70:hover{border-color:var(--fallback-n,oklch(var(--n)/.7))}.hover\:border-neutral\/75:hover{border-color:var(--fallback-n,oklch(var(--n)/.75))}.hover\:border-neutral\/80:hover{border-color:var(--fallback-n,oklch(var(--n)/.8))}.hover\:border-neutral\/90:hover{border-color:var(--fallback-n,oklch(var(--n)/.9))}.hover\:border-neutral\/95:hover{border-color:var(--fallback-n,oklch(var(--n)/.95))}.hover\:border-primary:hover{border-color:var(--fallback-p,oklch(var(--p)/1))}.hover\:border-primary-content:hover{border-color:var(--fallback-pc,oklch(var(--pc)/1))}.hover\:border-primary-content\/0:hover{border-color:var(--fallback-pc,oklch(var(--pc)/0))}.hover\:border-primary-content\/10:hover{border-color:var(--fallback-pc,oklch(var(--pc)/.1))}.hover\:border-primary-content\/100:hover{border-color:var(--fallback-pc,oklch(var(--pc)/1))}.hover\:border-primary-content\/20:hover{border-color:var(--fallback-pc,oklch(var(--pc)/.2))}.hover\:border-primary-content\/25:hover{border-color:var(--fallback-pc,oklch(var(--pc)/.25))}.hover\:border-primary-content\/30:hover{border-color:var(--fallback-pc,oklch(var(--pc)/.3))}.hover\:border-primary-content\/40:hover{border-color:var(--fallback-pc,oklch(var(--pc)/.4))}.hover\:border-primary-content\/5:hover{border-color:var(--fallback-pc,oklch(var(--pc)/.05))}.hover\:border-primary-content\/50:hover{border-color:var(--fallback-pc,oklch(var(--pc)/.5))}.hover\:border-primary-content\/60:hover{border-color:var(--fallback-pc,oklch(var(--pc)/.6))}.hover\:border-primary-content\/70:hover{border-color:var(--fallback-pc,oklch(var(--pc)/.7))}.hover\:border-primary-content\/75:hover{border-color:var(--fallback-pc,oklch(var(--pc)/.75))}.hover\:border-primary-content\/80:hover{border-color:var(--fallback-pc,oklch(var(--pc)/.8))}.hover\:border-primary-content\/90:hover{border-color:var(--fallback-pc,oklch(var(--pc)/.9))}.hover\:border-primary-content\/95:hover{border-color:var(--fallback-pc,oklch(var(--pc)/.95))}.hover\:border-primary\/0:hover{border-color:var(--fallback-p,oklch(var(--p)/0))}.hover\:border-primary\/10:hover{border-color:var(--fallback-p,oklch(var(--p)/.1))}.hover\:border-primary\/100:hover{border-color:var(--fallback-p,oklch(var(--p)/1))}.hover\:border-primary\/20:hover{border-color:var(--fallback-p,oklch(var(--p)/.2))}.hover\:border-primary\/25:hover{border-color:var(--fallback-p,oklch(var(--p)/.25))}.hover\:border-primary\/30:hover{border-color:var(--fallback-p,oklch(var(--p)/.3))}.hover\:border-primary\/40:hover{border-color:var(--fallback-p,oklch(var(--p)/.4))}.hover\:border-primary\/5:hover{border-color:var(--fallback-p,oklch(var(--p)/.05))}.hover\:border-primary\/50:hover{border-color:var(--fallback-p,oklch(var(--p)/.5))}.hover\:border-primary\/60:hover{border-color:var(--fallback-p,oklch(var(--p)/.6))}.hover\:border-primary\/70:hover{border-color:var(--fallback-p,oklch(var(--p)/.7))}.hover\:border-primary\/75:hover{border-color:var(--fallback-p,oklch(var(--p)/.75))}.hover\:border-primary\/80:hover{border-color:var(--fallback-p,oklch(var(--p)/.8))}.hover\:border-primary\/90:hover{border-color:var(--fallback-p,oklch(var(--p)/.9))}.hover\:border-primary\/95:hover{border-color:var(--fallback-p,oklch(var(--p)/.95))}.hover\:border-secondary:hover{border-color:var(--fallback-s,oklch(var(--s)/1))}.hover\:border-secondary-content:hover{border-color:var(--fallback-sc,oklch(var(--sc)/1))}.hover\:border-secondary-content\/0:hover{border-color:var(--fallback-sc,oklch(var(--sc)/0))}.hover\:border-secondary-content\/10:hover{border-color:var(--fallback-sc,oklch(var(--sc)/.1))}.hover\:border-secondary-content\/100:hover{border-color:var(--fallback-sc,oklch(var(--sc)/1))}.hover\:border-secondary-content\/20:hover{border-color:var(--fallback-sc,oklch(var(--sc)/.2))}.hover\:border-secondary-content\/25:hover{border-color:var(--fallback-sc,oklch(var(--sc)/.25))}.hover\:border-secondary-content\/30:hover{border-color:var(--fallback-sc,oklch(var(--sc)/.3))}.hover\:border-secondary-content\/40:hover{border-color:var(--fallback-sc,oklch(var(--sc)/.4))}.hover\:border-secondary-content\/5:hover{border-color:var(--fallback-sc,oklch(var(--sc)/.05))}.hover\:border-secondary-content\/50:hover{border-color:var(--fallback-sc,oklch(var(--sc)/.5))}.hover\:border-secondary-content\/60:hover{border-color:var(--fallback-sc,oklch(var(--sc)/.6))}.hover\:border-secondary-content\/70:hover{border-color:var(--fallback-sc,oklch(var(--sc)/.7))}.hover\:border-secondary-content\/75:hover{border-color:var(--fallback-sc,oklch(var(--sc)/.75))}.hover\:border-secondary-content\/80:hover{border-color:var(--fallback-sc,oklch(var(--sc)/.8))}.hover\:border-secondary-content\/90:hover{border-color:var(--fallback-sc,oklch(var(--sc)/.9))}.hover\:border-secondary-content\/95:hover{border-color:var(--fallback-sc,oklch(var(--sc)/.95))}.hover\:border-secondary\/0:hover{border-color:var(--fallback-s,oklch(var(--s)/0))}.hover\:border-secondary\/10:hover{border-color:var(--fallback-s,oklch(var(--s)/.1))}.hover\:border-secondary\/100:hover{border-color:var(--fallback-s,oklch(var(--s)/1))}.hover\:border-secondary\/20:hover{border-color:var(--fallback-s,oklch(var(--s)/.2))}.hover\:border-secondary\/25:hover{border-color:var(--fallback-s,oklch(var(--s)/.25))}.hover\:border-secondary\/30:hover{border-color:var(--fallback-s,oklch(var(--s)/.3))}.hover\:border-secondary\/40:hover{border-color:var(--fallback-s,oklch(var(--s)/.4))}.hover\:border-secondary\/5:hover{border-color:var(--fallback-s,oklch(var(--s)/.05))}.hover\:border-secondary\/50:hover{border-color:var(--fallback-s,oklch(var(--s)/.5))}.hover\:border-secondary\/60:hover{border-color:var(--fallback-s,oklch(var(--s)/.6))}.hover\:border-secondary\/70:hover{border-color:var(--fallback-s,oklch(var(--s)/.7))}.hover\:border-secondary\/75:hover{border-color:var(--fallback-s,oklch(var(--s)/.75))}.hover\:border-secondary\/80:hover{border-color:var(--fallback-s,oklch(var(--s)/.8))}.hover\:border-secondary\/90:hover{border-color:var(--fallback-s,oklch(var(--s)/.9))}.hover\:border-secondary\/95:hover{border-color:var(--fallback-s,oklch(var(--s)/.95))}.hover\:border-success:hover{border-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:border-success-content:hover{border-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:border-success-content\/0:hover{border-color:var(--fallback-suc,oklch(var(--suc)/0))}.hover\:border-success-content\/10:hover{border-color:var(--fallback-suc,oklch(var(--suc)/.1))}.hover\:border-success-content\/100:hover{border-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:border-success-content\/20:hover{border-color:var(--fallback-suc,oklch(var(--suc)/.2))}.hover\:border-success-content\/25:hover{border-color:var(--fallback-suc,oklch(var(--suc)/.25))}.hover\:border-success-content\/30:hover{border-color:var(--fallback-suc,oklch(var(--suc)/.3))}.hover\:border-success-content\/40:hover{border-color:var(--fallback-suc,oklch(var(--suc)/.4))}.hover\:border-success-content\/5:hover{border-color:var(--fallback-suc,oklch(var(--suc)/.05))}.hover\:border-success-content\/50:hover{border-color:var(--fallback-suc,oklch(var(--suc)/.5))}.hover\:border-success-content\/60:hover{border-color:var(--fallback-suc,oklch(var(--suc)/.6))}.hover\:border-success-content\/70:hover{border-color:var(--fallback-suc,oklch(var(--suc)/.7))}.hover\:border-success-content\/75:hover{border-color:var(--fallback-suc,oklch(var(--suc)/.75))}.hover\:border-success-content\/80:hover{border-color:var(--fallback-suc,oklch(var(--suc)/.8))}.hover\:border-success-content\/90:hover{border-color:var(--fallback-suc,oklch(var(--suc)/.9))}.hover\:border-success-content\/95:hover{border-color:var(--fallback-suc,oklch(var(--suc)/.95))}.hover\:border-success\/0:hover{border-color:var(--fallback-su,oklch(var(--su)/0))}.hover\:border-success\/10:hover{border-color:var(--fallback-su,oklch(var(--su)/.1))}.hover\:border-success\/100:hover{border-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:border-success\/20:hover{border-color:var(--fallback-su,oklch(var(--su)/.2))}.hover\:border-success\/25:hover{border-color:var(--fallback-su,oklch(var(--su)/.25))}.hover\:border-success\/30:hover{border-color:var(--fallback-su,oklch(var(--su)/.3))}.hover\:border-success\/40:hover{border-color:var(--fallback-su,oklch(var(--su)/.4))}.hover\:border-success\/5:hover{border-color:var(--fallback-su,oklch(var(--su)/.05))}.hover\:border-success\/50:hover{border-color:var(--fallback-su,oklch(var(--su)/.5))}.hover\:border-success\/60:hover{border-color:var(--fallback-su,oklch(var(--su)/.6))}.hover\:border-success\/70:hover{border-color:var(--fallback-su,oklch(var(--su)/.7))}.hover\:border-success\/75:hover{border-color:var(--fallback-su,oklch(var(--su)/.75))}.hover\:border-success\/80:hover{border-color:var(--fallback-su,oklch(var(--su)/.8))}.hover\:border-success\/90:hover{border-color:var(--fallback-su,oklch(var(--su)/.9))}.hover\:border-success\/95:hover{border-color:var(--fallback-su,oklch(var(--su)/.95))}.hover\:border-warning:hover{border-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:border-warning-content:hover{border-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:border-warning-content\/0:hover{border-color:var(--fallback-wac,oklch(var(--wac)/0))}.hover\:border-warning-content\/10:hover{border-color:var(--fallback-wac,oklch(var(--wac)/.1))}.hover\:border-warning-content\/100:hover{border-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:border-warning-content\/20:hover{border-color:var(--fallback-wac,oklch(var(--wac)/.2))}.hover\:border-warning-content\/25:hover{border-color:var(--fallback-wac,oklch(var(--wac)/.25))}.hover\:border-warning-content\/30:hover{border-color:var(--fallback-wac,oklch(var(--wac)/.3))}.hover\:border-warning-content\/40:hover{border-color:var(--fallback-wac,oklch(var(--wac)/.4))}.hover\:border-warning-content\/5:hover{border-color:var(--fallback-wac,oklch(var(--wac)/.05))}.hover\:border-warning-content\/50:hover{border-color:var(--fallback-wac,oklch(var(--wac)/.5))}.hover\:border-warning-content\/60:hover{border-color:var(--fallback-wac,oklch(var(--wac)/.6))}.hover\:border-warning-content\/70:hover{border-color:var(--fallback-wac,oklch(var(--wac)/.7))}.hover\:border-warning-content\/75:hover{border-color:var(--fallback-wac,oklch(var(--wac)/.75))}.hover\:border-warning-content\/80:hover{border-color:var(--fallback-wac,oklch(var(--wac)/.8))}.hover\:border-warning-content\/90:hover{border-color:var(--fallback-wac,oklch(var(--wac)/.9))}.hover\:border-warning-content\/95:hover{border-color:var(--fallback-wac,oklch(var(--wac)/.95))}.hover\:border-warning\/0:hover{border-color:var(--fallback-wa,oklch(var(--wa)/0))}.hover\:border-warning\/10:hover{border-color:var(--fallback-wa,oklch(var(--wa)/.1))}.hover\:border-warning\/100:hover{border-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:border-warning\/20:hover{border-color:var(--fallback-wa,oklch(var(--wa)/.2))}.hover\:border-warning\/25:hover{border-color:var(--fallback-wa,oklch(var(--wa)/.25))}.hover\:border-warning\/30:hover{border-color:var(--fallback-wa,oklch(var(--wa)/.3))}.hover\:border-warning\/40:hover{border-color:var(--fallback-wa,oklch(var(--wa)/.4))}.hover\:border-warning\/5:hover{border-color:var(--fallback-wa,oklch(var(--wa)/.05))}.hover\:border-warning\/50:hover{border-color:var(--fallback-wa,oklch(var(--wa)/.5))}.hover\:border-warning\/60:hover{border-color:var(--fallback-wa,oklch(var(--wa)/.6))}.hover\:border-warning\/70:hover{border-color:var(--fallback-wa,oklch(var(--wa)/.7))}.hover\:border-warning\/75:hover{border-color:var(--fallback-wa,oklch(var(--wa)/.75))}.hover\:border-warning\/80:hover{border-color:var(--fallback-wa,oklch(var(--wa)/.8))}.hover\:border-warning\/90:hover{border-color:var(--fallback-wa,oklch(var(--wa)/.9))}.hover\:border-warning\/95:hover{border-color:var(--fallback-wa,oklch(var(--wa)/.95))}.hover\:border-x-base-100:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/1));border-right-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:border-x-base-100\/0:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/0));border-right-color:var(--fallback-b1,oklch(var(--b1)/0))}.hover\:border-x-base-100\/10:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.1));border-right-color:var(--fallback-b1,oklch(var(--b1)/.1))}.hover\:border-x-base-100\/100:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/1));border-right-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:border-x-base-100\/20:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.2));border-right-color:var(--fallback-b1,oklch(var(--b1)/.2))}.hover\:border-x-base-100\/25:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.25));border-right-color:var(--fallback-b1,oklch(var(--b1)/.25))}.hover\:border-x-base-100\/30:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.3));border-right-color:var(--fallback-b1,oklch(var(--b1)/.3))}.hover\:border-x-base-100\/40:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.4));border-right-color:var(--fallback-b1,oklch(var(--b1)/.4))}.hover\:border-x-base-100\/5:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.05));border-right-color:var(--fallback-b1,oklch(var(--b1)/.05))}.hover\:border-x-base-100\/50:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.5));border-right-color:var(--fallback-b1,oklch(var(--b1)/.5))}.hover\:border-x-base-100\/60:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.6));border-right-color:var(--fallback-b1,oklch(var(--b1)/.6))}.hover\:border-x-base-100\/70:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.7));border-right-color:var(--fallback-b1,oklch(var(--b1)/.7))}.hover\:border-x-base-100\/75:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.75));border-right-color:var(--fallback-b1,oklch(var(--b1)/.75))}.hover\:border-x-base-100\/80:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.8));border-right-color:var(--fallback-b1,oklch(var(--b1)/.8))}.hover\:border-x-base-100\/90:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.9));border-right-color:var(--fallback-b1,oklch(var(--b1)/.9))}.hover\:border-x-base-100\/95:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.95));border-right-color:var(--fallback-b1,oklch(var(--b1)/.95))}.hover\:border-x-base-200:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/1));border-right-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:border-x-base-200\/0:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/0));border-right-color:var(--fallback-b2,oklch(var(--b2)/0))}.hover\:border-x-base-200\/10:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.1));border-right-color:var(--fallback-b2,oklch(var(--b2)/.1))}.hover\:border-x-base-200\/100:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/1));border-right-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:border-x-base-200\/20:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.2));border-right-color:var(--fallback-b2,oklch(var(--b2)/.2))}.hover\:border-x-base-200\/25:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.25));border-right-color:var(--fallback-b2,oklch(var(--b2)/.25))}.hover\:border-x-base-200\/30:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.3));border-right-color:var(--fallback-b2,oklch(var(--b2)/.3))}.hover\:border-x-base-200\/40:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.4));border-right-color:var(--fallback-b2,oklch(var(--b2)/.4))}.hover\:border-x-base-200\/5:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.05));border-right-color:var(--fallback-b2,oklch(var(--b2)/.05))}.hover\:border-x-base-200\/50:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.5));border-right-color:var(--fallback-b2,oklch(var(--b2)/.5))}.hover\:border-x-base-200\/60:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.6));border-right-color:var(--fallback-b2,oklch(var(--b2)/.6))}.hover\:border-x-base-200\/70:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.7));border-right-color:var(--fallback-b2,oklch(var(--b2)/.7))}.hover\:border-x-base-200\/75:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.75));border-right-color:var(--fallback-b2,oklch(var(--b2)/.75))}.hover\:border-x-base-200\/80:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.8));border-right-color:var(--fallback-b2,oklch(var(--b2)/.8))}.hover\:border-x-base-200\/90:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.9));border-right-color:var(--fallback-b2,oklch(var(--b2)/.9))}.hover\:border-x-base-200\/95:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.95));border-right-color:var(--fallback-b2,oklch(var(--b2)/.95))}.hover\:border-x-base-300:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/1));border-right-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:border-x-base-300\/0:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/0));border-right-color:var(--fallback-b3,oklch(var(--b3)/0))}.hover\:border-x-base-300\/10:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.1));border-right-color:var(--fallback-b3,oklch(var(--b3)/.1))}.hover\:border-x-base-300\/100:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/1));border-right-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:border-x-base-300\/20:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.2));border-right-color:var(--fallback-b3,oklch(var(--b3)/.2))}.hover\:border-x-base-300\/25:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.25));border-right-color:var(--fallback-b3,oklch(var(--b3)/.25))}.hover\:border-x-base-300\/30:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.3));border-right-color:var(--fallback-b3,oklch(var(--b3)/.3))}.hover\:border-x-base-300\/40:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.4));border-right-color:var(--fallback-b3,oklch(var(--b3)/.4))}.hover\:border-x-base-300\/5:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.05));border-right-color:var(--fallback-b3,oklch(var(--b3)/.05))}.hover\:border-x-base-300\/50:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.5));border-right-color:var(--fallback-b3,oklch(var(--b3)/.5))}.hover\:border-x-base-300\/60:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.6));border-right-color:var(--fallback-b3,oklch(var(--b3)/.6))}.hover\:border-x-base-300\/70:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.7));border-right-color:var(--fallback-b3,oklch(var(--b3)/.7))}.hover\:border-x-base-300\/75:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.75));border-right-color:var(--fallback-b3,oklch(var(--b3)/.75))}.hover\:border-x-base-300\/80:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.8));border-right-color:var(--fallback-b3,oklch(var(--b3)/.8))}.hover\:border-x-base-300\/90:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.9));border-right-color:var(--fallback-b3,oklch(var(--b3)/.9))}.hover\:border-x-base-300\/95:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.95));border-right-color:var(--fallback-b3,oklch(var(--b3)/.95))}.hover\:border-x-base-content:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/1));border-right-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:border-x-base-content\/0:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/0));border-right-color:var(--fallback-bc,oklch(var(--bc)/0))}.hover\:border-x-base-content\/10:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.1));border-right-color:var(--fallback-bc,oklch(var(--bc)/.1))}.hover\:border-x-base-content\/100:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/1));border-right-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:border-x-base-content\/20:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.2));border-right-color:var(--fallback-bc,oklch(var(--bc)/.2))}.hover\:border-x-base-content\/25:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.25));border-right-color:var(--fallback-bc,oklch(var(--bc)/.25))}.hover\:border-x-base-content\/30:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.3));border-right-color:var(--fallback-bc,oklch(var(--bc)/.3))}.hover\:border-x-base-content\/40:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.4));border-right-color:var(--fallback-bc,oklch(var(--bc)/.4))}.hover\:border-x-base-content\/5:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.05));border-right-color:var(--fallback-bc,oklch(var(--bc)/.05))}.hover\:border-x-base-content\/50:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.5));border-right-color:var(--fallback-bc,oklch(var(--bc)/.5))}.hover\:border-x-base-content\/60:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.6));border-right-color:var(--fallback-bc,oklch(var(--bc)/.6))}.hover\:border-x-base-content\/70:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.7));border-right-color:var(--fallback-bc,oklch(var(--bc)/.7))}.hover\:border-x-base-content\/75:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.75));border-right-color:var(--fallback-bc,oklch(var(--bc)/.75))}.hover\:border-x-base-content\/80:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.8));border-right-color:var(--fallback-bc,oklch(var(--bc)/.8))}.hover\:border-x-base-content\/90:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.9));border-right-color:var(--fallback-bc,oklch(var(--bc)/.9))}.hover\:border-x-base-content\/95:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.95));border-right-color:var(--fallback-bc,oklch(var(--bc)/.95))}.hover\:border-x-error:hover{border-left-color:var(--fallback-er,oklch(var(--er)/1));border-right-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:border-x-error-content:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/1));border-right-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:border-x-error-content\/0:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/0));border-right-color:var(--fallback-erc,oklch(var(--erc)/0))}.hover\:border-x-error-content\/10:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.1));border-right-color:var(--fallback-erc,oklch(var(--erc)/.1))}.hover\:border-x-error-content\/100:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/1));border-right-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:border-x-error-content\/20:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.2));border-right-color:var(--fallback-erc,oklch(var(--erc)/.2))}.hover\:border-x-error-content\/25:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.25));border-right-color:var(--fallback-erc,oklch(var(--erc)/.25))}.hover\:border-x-error-content\/30:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.3));border-right-color:var(--fallback-erc,oklch(var(--erc)/.3))}.hover\:border-x-error-content\/40:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.4));border-right-color:var(--fallback-erc,oklch(var(--erc)/.4))}.hover\:border-x-error-content\/5:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.05));border-right-color:var(--fallback-erc,oklch(var(--erc)/.05))}.hover\:border-x-error-content\/50:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.5));border-right-color:var(--fallback-erc,oklch(var(--erc)/.5))}.hover\:border-x-error-content\/60:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.6));border-right-color:var(--fallback-erc,oklch(var(--erc)/.6))}.hover\:border-x-error-content\/70:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.7));border-right-color:var(--fallback-erc,oklch(var(--erc)/.7))}.hover\:border-x-error-content\/75:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.75));border-right-color:var(--fallback-erc,oklch(var(--erc)/.75))}.hover\:border-x-error-content\/80:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.8));border-right-color:var(--fallback-erc,oklch(var(--erc)/.8))}.hover\:border-x-error-content\/90:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.9));border-right-color:var(--fallback-erc,oklch(var(--erc)/.9))}.hover\:border-x-error-content\/95:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.95));border-right-color:var(--fallback-erc,oklch(var(--erc)/.95))}.hover\:border-x-error\/0:hover{border-left-color:var(--fallback-er,oklch(var(--er)/0));border-right-color:var(--fallback-er,oklch(var(--er)/0))}.hover\:border-x-error\/10:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.1));border-right-color:var(--fallback-er,oklch(var(--er)/.1))}.hover\:border-x-error\/100:hover{border-left-color:var(--fallback-er,oklch(var(--er)/1));border-right-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:border-x-error\/20:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.2));border-right-color:var(--fallback-er,oklch(var(--er)/.2))}.hover\:border-x-error\/25:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.25));border-right-color:var(--fallback-er,oklch(var(--er)/.25))}.hover\:border-x-error\/30:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.3));border-right-color:var(--fallback-er,oklch(var(--er)/.3))}.hover\:border-x-error\/40:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.4));border-right-color:var(--fallback-er,oklch(var(--er)/.4))}.hover\:border-x-error\/5:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.05));border-right-color:var(--fallback-er,oklch(var(--er)/.05))}.hover\:border-x-error\/50:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.5));border-right-color:var(--fallback-er,oklch(var(--er)/.5))}.hover\:border-x-error\/60:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.6));border-right-color:var(--fallback-er,oklch(var(--er)/.6))}.hover\:border-x-error\/70:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.7));border-right-color:var(--fallback-er,oklch(var(--er)/.7))}.hover\:border-x-error\/75:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.75));border-right-color:var(--fallback-er,oklch(var(--er)/.75))}.hover\:border-x-error\/80:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.8));border-right-color:var(--fallback-er,oklch(var(--er)/.8))}.hover\:border-x-error\/90:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.9));border-right-color:var(--fallback-er,oklch(var(--er)/.9))}.hover\:border-x-error\/95:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.95));border-right-color:var(--fallback-er,oklch(var(--er)/.95))}.hover\:border-x-info:hover{border-left-color:var(--fallback-in,oklch(var(--in)/1));border-right-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:border-x-info-content:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/1));border-right-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:border-x-info-content\/0:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/0));border-right-color:var(--fallback-inc,oklch(var(--inc)/0))}.hover\:border-x-info-content\/10:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.1));border-right-color:var(--fallback-inc,oklch(var(--inc)/.1))}.hover\:border-x-info-content\/100:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/1));border-right-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:border-x-info-content\/20:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.2));border-right-color:var(--fallback-inc,oklch(var(--inc)/.2))}.hover\:border-x-info-content\/25:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.25));border-right-color:var(--fallback-inc,oklch(var(--inc)/.25))}.hover\:border-x-info-content\/30:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.3));border-right-color:var(--fallback-inc,oklch(var(--inc)/.3))}.hover\:border-x-info-content\/40:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.4));border-right-color:var(--fallback-inc,oklch(var(--inc)/.4))}.hover\:border-x-info-content\/5:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.05));border-right-color:var(--fallback-inc,oklch(var(--inc)/.05))}.hover\:border-x-info-content\/50:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.5));border-right-color:var(--fallback-inc,oklch(var(--inc)/.5))}.hover\:border-x-info-content\/60:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.6));border-right-color:var(--fallback-inc,oklch(var(--inc)/.6))}.hover\:border-x-info-content\/70:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.7));border-right-color:var(--fallback-inc,oklch(var(--inc)/.7))}.hover\:border-x-info-content\/75:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.75));border-right-color:var(--fallback-inc,oklch(var(--inc)/.75))}.hover\:border-x-info-content\/80:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.8));border-right-color:var(--fallback-inc,oklch(var(--inc)/.8))}.hover\:border-x-info-content\/90:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.9));border-right-color:var(--fallback-inc,oklch(var(--inc)/.9))}.hover\:border-x-info-content\/95:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.95));border-right-color:var(--fallback-inc,oklch(var(--inc)/.95))}.hover\:border-x-info\/0:hover{border-left-color:var(--fallback-in,oklch(var(--in)/0));border-right-color:var(--fallback-in,oklch(var(--in)/0))}.hover\:border-x-info\/10:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.1));border-right-color:var(--fallback-in,oklch(var(--in)/.1))}.hover\:border-x-info\/100:hover{border-left-color:var(--fallback-in,oklch(var(--in)/1));border-right-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:border-x-info\/20:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.2));border-right-color:var(--fallback-in,oklch(var(--in)/.2))}.hover\:border-x-info\/25:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.25));border-right-color:var(--fallback-in,oklch(var(--in)/.25))}.hover\:border-x-info\/30:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.3));border-right-color:var(--fallback-in,oklch(var(--in)/.3))}.hover\:border-x-info\/40:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.4));border-right-color:var(--fallback-in,oklch(var(--in)/.4))}.hover\:border-x-info\/5:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.05));border-right-color:var(--fallback-in,oklch(var(--in)/.05))}.hover\:border-x-info\/50:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.5));border-right-color:var(--fallback-in,oklch(var(--in)/.5))}.hover\:border-x-info\/60:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.6));border-right-color:var(--fallback-in,oklch(var(--in)/.6))}.hover\:border-x-info\/70:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.7));border-right-color:var(--fallback-in,oklch(var(--in)/.7))}.hover\:border-x-info\/75:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.75));border-right-color:var(--fallback-in,oklch(var(--in)/.75))}.hover\:border-x-info\/80:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.8));border-right-color:var(--fallback-in,oklch(var(--in)/.8))}.hover\:border-x-info\/90:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.9));border-right-color:var(--fallback-in,oklch(var(--in)/.9))}.hover\:border-x-info\/95:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.95));border-right-color:var(--fallback-in,oklch(var(--in)/.95))}.hover\:border-x-success:hover{border-left-color:var(--fallback-su,oklch(var(--su)/1));border-right-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:border-x-success-content:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/1));border-right-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:border-x-success-content\/0:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/0));border-right-color:var(--fallback-suc,oklch(var(--suc)/0))}.hover\:border-x-success-content\/10:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.1));border-right-color:var(--fallback-suc,oklch(var(--suc)/.1))}.hover\:border-x-success-content\/100:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/1));border-right-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:border-x-success-content\/20:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.2));border-right-color:var(--fallback-suc,oklch(var(--suc)/.2))}.hover\:border-x-success-content\/25:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.25));border-right-color:var(--fallback-suc,oklch(var(--suc)/.25))}.hover\:border-x-success-content\/30:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.3));border-right-color:var(--fallback-suc,oklch(var(--suc)/.3))}.hover\:border-x-success-content\/40:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.4));border-right-color:var(--fallback-suc,oklch(var(--suc)/.4))}.hover\:border-x-success-content\/5:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.05));border-right-color:var(--fallback-suc,oklch(var(--suc)/.05))}.hover\:border-x-success-content\/50:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.5));border-right-color:var(--fallback-suc,oklch(var(--suc)/.5))}.hover\:border-x-success-content\/60:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.6));border-right-color:var(--fallback-suc,oklch(var(--suc)/.6))}.hover\:border-x-success-content\/70:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.7));border-right-color:var(--fallback-suc,oklch(var(--suc)/.7))}.hover\:border-x-success-content\/75:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.75));border-right-color:var(--fallback-suc,oklch(var(--suc)/.75))}.hover\:border-x-success-content\/80:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.8));border-right-color:var(--fallback-suc,oklch(var(--suc)/.8))}.hover\:border-x-success-content\/90:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.9));border-right-color:var(--fallback-suc,oklch(var(--suc)/.9))}.hover\:border-x-success-content\/95:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.95));border-right-color:var(--fallback-suc,oklch(var(--suc)/.95))}.hover\:border-x-success\/0:hover{border-left-color:var(--fallback-su,oklch(var(--su)/0));border-right-color:var(--fallback-su,oklch(var(--su)/0))}.hover\:border-x-success\/10:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.1));border-right-color:var(--fallback-su,oklch(var(--su)/.1))}.hover\:border-x-success\/100:hover{border-left-color:var(--fallback-su,oklch(var(--su)/1));border-right-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:border-x-success\/20:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.2));border-right-color:var(--fallback-su,oklch(var(--su)/.2))}.hover\:border-x-success\/25:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.25));border-right-color:var(--fallback-su,oklch(var(--su)/.25))}.hover\:border-x-success\/30:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.3));border-right-color:var(--fallback-su,oklch(var(--su)/.3))}.hover\:border-x-success\/40:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.4));border-right-color:var(--fallback-su,oklch(var(--su)/.4))}.hover\:border-x-success\/5:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.05));border-right-color:var(--fallback-su,oklch(var(--su)/.05))}.hover\:border-x-success\/50:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.5));border-right-color:var(--fallback-su,oklch(var(--su)/.5))}.hover\:border-x-success\/60:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.6));border-right-color:var(--fallback-su,oklch(var(--su)/.6))}.hover\:border-x-success\/70:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.7));border-right-color:var(--fallback-su,oklch(var(--su)/.7))}.hover\:border-x-success\/75:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.75));border-right-color:var(--fallback-su,oklch(var(--su)/.75))}.hover\:border-x-success\/80:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.8));border-right-color:var(--fallback-su,oklch(var(--su)/.8))}.hover\:border-x-success\/90:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.9));border-right-color:var(--fallback-su,oklch(var(--su)/.9))}.hover\:border-x-success\/95:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.95));border-right-color:var(--fallback-su,oklch(var(--su)/.95))}.hover\:border-x-warning:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/1));border-right-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:border-x-warning-content:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/1));border-right-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:border-x-warning-content\/0:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/0));border-right-color:var(--fallback-wac,oklch(var(--wac)/0))}.hover\:border-x-warning-content\/10:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.1));border-right-color:var(--fallback-wac,oklch(var(--wac)/.1))}.hover\:border-x-warning-content\/100:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/1));border-right-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:border-x-warning-content\/20:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.2));border-right-color:var(--fallback-wac,oklch(var(--wac)/.2))}.hover\:border-x-warning-content\/25:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.25));border-right-color:var(--fallback-wac,oklch(var(--wac)/.25))}.hover\:border-x-warning-content\/30:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.3));border-right-color:var(--fallback-wac,oklch(var(--wac)/.3))}.hover\:border-x-warning-content\/40:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.4));border-right-color:var(--fallback-wac,oklch(var(--wac)/.4))}.hover\:border-x-warning-content\/5:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.05));border-right-color:var(--fallback-wac,oklch(var(--wac)/.05))}.hover\:border-x-warning-content\/50:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.5));border-right-color:var(--fallback-wac,oklch(var(--wac)/.5))}.hover\:border-x-warning-content\/60:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.6));border-right-color:var(--fallback-wac,oklch(var(--wac)/.6))}.hover\:border-x-warning-content\/70:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.7));border-right-color:var(--fallback-wac,oklch(var(--wac)/.7))}.hover\:border-x-warning-content\/75:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.75));border-right-color:var(--fallback-wac,oklch(var(--wac)/.75))}.hover\:border-x-warning-content\/80:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.8));border-right-color:var(--fallback-wac,oklch(var(--wac)/.8))}.hover\:border-x-warning-content\/90:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.9));border-right-color:var(--fallback-wac,oklch(var(--wac)/.9))}.hover\:border-x-warning-content\/95:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.95));border-right-color:var(--fallback-wac,oklch(var(--wac)/.95))}.hover\:border-x-warning\/0:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/0));border-right-color:var(--fallback-wa,oklch(var(--wa)/0))}.hover\:border-x-warning\/10:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.1));border-right-color:var(--fallback-wa,oklch(var(--wa)/.1))}.hover\:border-x-warning\/100:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/1));border-right-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:border-x-warning\/20:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.2));border-right-color:var(--fallback-wa,oklch(var(--wa)/.2))}.hover\:border-x-warning\/25:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.25));border-right-color:var(--fallback-wa,oklch(var(--wa)/.25))}.hover\:border-x-warning\/30:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.3));border-right-color:var(--fallback-wa,oklch(var(--wa)/.3))}.hover\:border-x-warning\/40:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.4));border-right-color:var(--fallback-wa,oklch(var(--wa)/.4))}.hover\:border-x-warning\/5:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.05));border-right-color:var(--fallback-wa,oklch(var(--wa)/.05))}.hover\:border-x-warning\/50:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.5));border-right-color:var(--fallback-wa,oklch(var(--wa)/.5))}.hover\:border-x-warning\/60:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.6));border-right-color:var(--fallback-wa,oklch(var(--wa)/.6))}.hover\:border-x-warning\/70:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.7));border-right-color:var(--fallback-wa,oklch(var(--wa)/.7))}.hover\:border-x-warning\/75:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.75));border-right-color:var(--fallback-wa,oklch(var(--wa)/.75))}.hover\:border-x-warning\/80:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.8));border-right-color:var(--fallback-wa,oklch(var(--wa)/.8))}.hover\:border-x-warning\/90:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.9));border-right-color:var(--fallback-wa,oklch(var(--wa)/.9))}.hover\:border-x-warning\/95:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.95));border-right-color:var(--fallback-wa,oklch(var(--wa)/.95))}.hover\:border-y-base-100:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/1));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:border-y-base-100\/0:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/0));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/0))}.hover\:border-y-base-100\/10:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.1));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.1))}.hover\:border-y-base-100\/100:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/1));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:border-y-base-100\/20:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.2));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.2))}.hover\:border-y-base-100\/25:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.25));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.25))}.hover\:border-y-base-100\/30:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.3));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.3))}.hover\:border-y-base-100\/40:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.4));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.4))}.hover\:border-y-base-100\/5:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.05));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.05))}.hover\:border-y-base-100\/50:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.5));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.5))}.hover\:border-y-base-100\/60:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.6));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.6))}.hover\:border-y-base-100\/70:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.7));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.7))}.hover\:border-y-base-100\/75:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.75));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.75))}.hover\:border-y-base-100\/80:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.8));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.8))}.hover\:border-y-base-100\/90:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.9));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.9))}.hover\:border-y-base-100\/95:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.95));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.95))}.hover\:border-y-base-200:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/1));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:border-y-base-200\/0:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/0));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/0))}.hover\:border-y-base-200\/10:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.1));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.1))}.hover\:border-y-base-200\/100:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/1));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:border-y-base-200\/20:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.2));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.2))}.hover\:border-y-base-200\/25:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.25));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.25))}.hover\:border-y-base-200\/30:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.3));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.3))}.hover\:border-y-base-200\/40:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.4));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.4))}.hover\:border-y-base-200\/5:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.05));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.05))}.hover\:border-y-base-200\/50:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.5));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.5))}.hover\:border-y-base-200\/60:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.6));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.6))}.hover\:border-y-base-200\/70:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.7));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.7))}.hover\:border-y-base-200\/75:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.75));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.75))}.hover\:border-y-base-200\/80:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.8));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.8))}.hover\:border-y-base-200\/90:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.9));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.9))}.hover\:border-y-base-200\/95:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.95));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.95))}.hover\:border-y-base-300:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/1));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:border-y-base-300\/0:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/0));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/0))}.hover\:border-y-base-300\/10:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.1));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.1))}.hover\:border-y-base-300\/100:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/1));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:border-y-base-300\/20:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.2));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.2))}.hover\:border-y-base-300\/25:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.25));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.25))}.hover\:border-y-base-300\/30:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.3));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.3))}.hover\:border-y-base-300\/40:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.4));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.4))}.hover\:border-y-base-300\/5:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.05));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.05))}.hover\:border-y-base-300\/50:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.5));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.5))}.hover\:border-y-base-300\/60:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.6));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.6))}.hover\:border-y-base-300\/70:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.7));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.7))}.hover\:border-y-base-300\/75:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.75));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.75))}.hover\:border-y-base-300\/80:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.8));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.8))}.hover\:border-y-base-300\/90:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.9));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.9))}.hover\:border-y-base-300\/95:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.95));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.95))}.hover\:border-y-base-content:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/1));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:border-y-base-content\/0:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/0));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/0))}.hover\:border-y-base-content\/10:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.1));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.1))}.hover\:border-y-base-content\/100:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/1));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:border-y-base-content\/20:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.2));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.2))}.hover\:border-y-base-content\/25:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.25));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.25))}.hover\:border-y-base-content\/30:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.3));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.3))}.hover\:border-y-base-content\/40:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.4));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.4))}.hover\:border-y-base-content\/5:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.05));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.05))}.hover\:border-y-base-content\/50:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.5));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.5))}.hover\:border-y-base-content\/60:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.6));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.6))}.hover\:border-y-base-content\/70:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.7));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.7))}.hover\:border-y-base-content\/75:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.75));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.75))}.hover\:border-y-base-content\/80:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.8));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.8))}.hover\:border-y-base-content\/90:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.9));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.9))}.hover\:border-y-base-content\/95:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.95));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.95))}.hover\:border-y-error:hover{border-top-color:var(--fallback-er,oklch(var(--er)/1));border-bottom-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:border-y-error-content:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/1));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:border-y-error-content\/0:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/0));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/0))}.hover\:border-y-error-content\/10:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.1));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.1))}.hover\:border-y-error-content\/100:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/1));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:border-y-error-content\/20:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.2));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.2))}.hover\:border-y-error-content\/25:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.25));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.25))}.hover\:border-y-error-content\/30:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.3));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.3))}.hover\:border-y-error-content\/40:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.4));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.4))}.hover\:border-y-error-content\/5:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.05));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.05))}.hover\:border-y-error-content\/50:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.5));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.5))}.hover\:border-y-error-content\/60:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.6));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.6))}.hover\:border-y-error-content\/70:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.7));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.7))}.hover\:border-y-error-content\/75:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.75));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.75))}.hover\:border-y-error-content\/80:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.8));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.8))}.hover\:border-y-error-content\/90:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.9));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.9))}.hover\:border-y-error-content\/95:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.95));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.95))}.hover\:border-y-error\/0:hover{border-top-color:var(--fallback-er,oklch(var(--er)/0));border-bottom-color:var(--fallback-er,oklch(var(--er)/0))}.hover\:border-y-error\/10:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.1));border-bottom-color:var(--fallback-er,oklch(var(--er)/.1))}.hover\:border-y-error\/100:hover{border-top-color:var(--fallback-er,oklch(var(--er)/1));border-bottom-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:border-y-error\/20:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.2));border-bottom-color:var(--fallback-er,oklch(var(--er)/.2))}.hover\:border-y-error\/25:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.25));border-bottom-color:var(--fallback-er,oklch(var(--er)/.25))}.hover\:border-y-error\/30:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.3));border-bottom-color:var(--fallback-er,oklch(var(--er)/.3))}.hover\:border-y-error\/40:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.4));border-bottom-color:var(--fallback-er,oklch(var(--er)/.4))}.hover\:border-y-error\/5:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.05));border-bottom-color:var(--fallback-er,oklch(var(--er)/.05))}.hover\:border-y-error\/50:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.5));border-bottom-color:var(--fallback-er,oklch(var(--er)/.5))}.hover\:border-y-error\/60:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.6));border-bottom-color:var(--fallback-er,oklch(var(--er)/.6))}.hover\:border-y-error\/70:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.7));border-bottom-color:var(--fallback-er,oklch(var(--er)/.7))}.hover\:border-y-error\/75:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.75));border-bottom-color:var(--fallback-er,oklch(var(--er)/.75))}.hover\:border-y-error\/80:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.8));border-bottom-color:var(--fallback-er,oklch(var(--er)/.8))}.hover\:border-y-error\/90:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.9));border-bottom-color:var(--fallback-er,oklch(var(--er)/.9))}.hover\:border-y-error\/95:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.95));border-bottom-color:var(--fallback-er,oklch(var(--er)/.95))}.hover\:border-y-info:hover{border-top-color:var(--fallback-in,oklch(var(--in)/1));border-bottom-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:border-y-info-content:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/1));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:border-y-info-content\/0:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/0));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/0))}.hover\:border-y-info-content\/10:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.1));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.1))}.hover\:border-y-info-content\/100:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/1));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:border-y-info-content\/20:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.2));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.2))}.hover\:border-y-info-content\/25:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.25));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.25))}.hover\:border-y-info-content\/30:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.3));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.3))}.hover\:border-y-info-content\/40:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.4));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.4))}.hover\:border-y-info-content\/5:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.05));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.05))}.hover\:border-y-info-content\/50:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.5));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.5))}.hover\:border-y-info-content\/60:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.6));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.6))}.hover\:border-y-info-content\/70:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.7));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.7))}.hover\:border-y-info-content\/75:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.75));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.75))}.hover\:border-y-info-content\/80:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.8));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.8))}.hover\:border-y-info-content\/90:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.9));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.9))}.hover\:border-y-info-content\/95:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.95));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.95))}.hover\:border-y-info\/0:hover{border-top-color:var(--fallback-in,oklch(var(--in)/0));border-bottom-color:var(--fallback-in,oklch(var(--in)/0))}.hover\:border-y-info\/10:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.1));border-bottom-color:var(--fallback-in,oklch(var(--in)/.1))}.hover\:border-y-info\/100:hover{border-top-color:var(--fallback-in,oklch(var(--in)/1));border-bottom-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:border-y-info\/20:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.2));border-bottom-color:var(--fallback-in,oklch(var(--in)/.2))}.hover\:border-y-info\/25:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.25));border-bottom-color:var(--fallback-in,oklch(var(--in)/.25))}.hover\:border-y-info\/30:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.3));border-bottom-color:var(--fallback-in,oklch(var(--in)/.3))}.hover\:border-y-info\/40:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.4));border-bottom-color:var(--fallback-in,oklch(var(--in)/.4))}.hover\:border-y-info\/5:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.05));border-bottom-color:var(--fallback-in,oklch(var(--in)/.05))}.hover\:border-y-info\/50:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.5));border-bottom-color:var(--fallback-in,oklch(var(--in)/.5))}.hover\:border-y-info\/60:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.6));border-bottom-color:var(--fallback-in,oklch(var(--in)/.6))}.hover\:border-y-info\/70:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.7));border-bottom-color:var(--fallback-in,oklch(var(--in)/.7))}.hover\:border-y-info\/75:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.75));border-bottom-color:var(--fallback-in,oklch(var(--in)/.75))}.hover\:border-y-info\/80:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.8));border-bottom-color:var(--fallback-in,oklch(var(--in)/.8))}.hover\:border-y-info\/90:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.9));border-bottom-color:var(--fallback-in,oklch(var(--in)/.9))}.hover\:border-y-info\/95:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.95));border-bottom-color:var(--fallback-in,oklch(var(--in)/.95))}.hover\:border-y-success:hover{border-top-color:var(--fallback-su,oklch(var(--su)/1));border-bottom-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:border-y-success-content:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/1));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:border-y-success-content\/0:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/0));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/0))}.hover\:border-y-success-content\/10:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.1));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.1))}.hover\:border-y-success-content\/100:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/1));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:border-y-success-content\/20:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.2));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.2))}.hover\:border-y-success-content\/25:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.25));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.25))}.hover\:border-y-success-content\/30:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.3));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.3))}.hover\:border-y-success-content\/40:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.4));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.4))}.hover\:border-y-success-content\/5:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.05));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.05))}.hover\:border-y-success-content\/50:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.5));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.5))}.hover\:border-y-success-content\/60:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.6));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.6))}.hover\:border-y-success-content\/70:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.7));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.7))}.hover\:border-y-success-content\/75:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.75));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.75))}.hover\:border-y-success-content\/80:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.8));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.8))}.hover\:border-y-success-content\/90:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.9));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.9))}.hover\:border-y-success-content\/95:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.95));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.95))}.hover\:border-y-success\/0:hover{border-top-color:var(--fallback-su,oklch(var(--su)/0));border-bottom-color:var(--fallback-su,oklch(var(--su)/0))}.hover\:border-y-success\/10:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.1));border-bottom-color:var(--fallback-su,oklch(var(--su)/.1))}.hover\:border-y-success\/100:hover{border-top-color:var(--fallback-su,oklch(var(--su)/1));border-bottom-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:border-y-success\/20:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.2));border-bottom-color:var(--fallback-su,oklch(var(--su)/.2))}.hover\:border-y-success\/25:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.25));border-bottom-color:var(--fallback-su,oklch(var(--su)/.25))}.hover\:border-y-success\/30:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.3));border-bottom-color:var(--fallback-su,oklch(var(--su)/.3))}.hover\:border-y-success\/40:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.4));border-bottom-color:var(--fallback-su,oklch(var(--su)/.4))}.hover\:border-y-success\/5:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.05));border-bottom-color:var(--fallback-su,oklch(var(--su)/.05))}.hover\:border-y-success\/50:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.5));border-bottom-color:var(--fallback-su,oklch(var(--su)/.5))}.hover\:border-y-success\/60:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.6));border-bottom-color:var(--fallback-su,oklch(var(--su)/.6))}.hover\:border-y-success\/70:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.7));border-bottom-color:var(--fallback-su,oklch(var(--su)/.7))}.hover\:border-y-success\/75:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.75));border-bottom-color:var(--fallback-su,oklch(var(--su)/.75))}.hover\:border-y-success\/80:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.8));border-bottom-color:var(--fallback-su,oklch(var(--su)/.8))}.hover\:border-y-success\/90:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.9));border-bottom-color:var(--fallback-su,oklch(var(--su)/.9))}.hover\:border-y-success\/95:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.95));border-bottom-color:var(--fallback-su,oklch(var(--su)/.95))}.hover\:border-y-warning:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/1));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:border-y-warning-content:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/1));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:border-y-warning-content\/0:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/0));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/0))}.hover\:border-y-warning-content\/10:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.1));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.1))}.hover\:border-y-warning-content\/100:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/1));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:border-y-warning-content\/20:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.2));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.2))}.hover\:border-y-warning-content\/25:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.25));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.25))}.hover\:border-y-warning-content\/30:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.3));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.3))}.hover\:border-y-warning-content\/40:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.4));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.4))}.hover\:border-y-warning-content\/5:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.05));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.05))}.hover\:border-y-warning-content\/50:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.5));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.5))}.hover\:border-y-warning-content\/60:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.6));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.6))}.hover\:border-y-warning-content\/70:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.7));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.7))}.hover\:border-y-warning-content\/75:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.75));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.75))}.hover\:border-y-warning-content\/80:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.8));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.8))}.hover\:border-y-warning-content\/90:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.9));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.9))}.hover\:border-y-warning-content\/95:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.95));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.95))}.hover\:border-y-warning\/0:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/0));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/0))}.hover\:border-y-warning\/10:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.1));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.1))}.hover\:border-y-warning\/100:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/1));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:border-y-warning\/20:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.2));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.2))}.hover\:border-y-warning\/25:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.25));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.25))}.hover\:border-y-warning\/30:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.3));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.3))}.hover\:border-y-warning\/40:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.4));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.4))}.hover\:border-y-warning\/5:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.05));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.05))}.hover\:border-y-warning\/50:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.5));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.5))}.hover\:border-y-warning\/60:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.6));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.6))}.hover\:border-y-warning\/70:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.7));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.7))}.hover\:border-y-warning\/75:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.75));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.75))}.hover\:border-y-warning\/80:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.8));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.8))}.hover\:border-y-warning\/90:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.9));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.9))}.hover\:border-y-warning\/95:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.95));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.95))}.hover\:border-b-base-100:hover{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:border-b-base-100\/0:hover{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/0))}.hover\:border-b-base-100\/10:hover{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.1))}.hover\:border-b-base-100\/100:hover{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:border-b-base-100\/20:hover{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.2))}.hover\:border-b-base-100\/25:hover{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.25))}.hover\:border-b-base-100\/30:hover{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.3))}.hover\:border-b-base-100\/40:hover{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.4))}.hover\:border-b-base-100\/5:hover{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.05))}.hover\:border-b-base-100\/50:hover{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.5))}.hover\:border-b-base-100\/60:hover{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.6))}.hover\:border-b-base-100\/70:hover{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.7))}.hover\:border-b-base-100\/75:hover{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.75))}.hover\:border-b-base-100\/80:hover{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.8))}.hover\:border-b-base-100\/90:hover{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.9))}.hover\:border-b-base-100\/95:hover{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.95))}.hover\:border-b-base-200:hover{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:border-b-base-200\/0:hover{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/0))}.hover\:border-b-base-200\/10:hover{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.1))}.hover\:border-b-base-200\/100:hover{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:border-b-base-200\/20:hover{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.2))}.hover\:border-b-base-200\/25:hover{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.25))}.hover\:border-b-base-200\/30:hover{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.3))}.hover\:border-b-base-200\/40:hover{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.4))}.hover\:border-b-base-200\/5:hover{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.05))}.hover\:border-b-base-200\/50:hover{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.5))}.hover\:border-b-base-200\/60:hover{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.6))}.hover\:border-b-base-200\/70:hover{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.7))}.hover\:border-b-base-200\/75:hover{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.75))}.hover\:border-b-base-200\/80:hover{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.8))}.hover\:border-b-base-200\/90:hover{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.9))}.hover\:border-b-base-200\/95:hover{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.95))}.hover\:border-b-base-300:hover{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:border-b-base-300\/0:hover{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/0))}.hover\:border-b-base-300\/10:hover{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.1))}.hover\:border-b-base-300\/100:hover{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:border-b-base-300\/20:hover{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.2))}.hover\:border-b-base-300\/25:hover{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.25))}.hover\:border-b-base-300\/30:hover{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.3))}.hover\:border-b-base-300\/40:hover{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.4))}.hover\:border-b-base-300\/5:hover{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.05))}.hover\:border-b-base-300\/50:hover{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.5))}.hover\:border-b-base-300\/60:hover{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.6))}.hover\:border-b-base-300\/70:hover{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.7))}.hover\:border-b-base-300\/75:hover{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.75))}.hover\:border-b-base-300\/80:hover{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.8))}.hover\:border-b-base-300\/90:hover{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.9))}.hover\:border-b-base-300\/95:hover{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.95))}.hover\:border-b-base-content:hover{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:border-b-base-content\/0:hover{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/0))}.hover\:border-b-base-content\/10:hover{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.1))}.hover\:border-b-base-content\/100:hover{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:border-b-base-content\/20:hover{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.2))}.hover\:border-b-base-content\/25:hover{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.25))}.hover\:border-b-base-content\/30:hover{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.3))}.hover\:border-b-base-content\/40:hover{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.4))}.hover\:border-b-base-content\/5:hover{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.05))}.hover\:border-b-base-content\/50:hover{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.5))}.hover\:border-b-base-content\/60:hover{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.6))}.hover\:border-b-base-content\/70:hover{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.7))}.hover\:border-b-base-content\/75:hover{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.75))}.hover\:border-b-base-content\/80:hover{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.8))}.hover\:border-b-base-content\/90:hover{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.9))}.hover\:border-b-base-content\/95:hover{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.95))}.hover\:border-b-error:hover{border-bottom-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:border-b-error-content:hover{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:border-b-error-content\/0:hover{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/0))}.hover\:border-b-error-content\/10:hover{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.1))}.hover\:border-b-error-content\/100:hover{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:border-b-error-content\/20:hover{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.2))}.hover\:border-b-error-content\/25:hover{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.25))}.hover\:border-b-error-content\/30:hover{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.3))}.hover\:border-b-error-content\/40:hover{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.4))}.hover\:border-b-error-content\/5:hover{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.05))}.hover\:border-b-error-content\/50:hover{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.5))}.hover\:border-b-error-content\/60:hover{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.6))}.hover\:border-b-error-content\/70:hover{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.7))}.hover\:border-b-error-content\/75:hover{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.75))}.hover\:border-b-error-content\/80:hover{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.8))}.hover\:border-b-error-content\/90:hover{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.9))}.hover\:border-b-error-content\/95:hover{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.95))}.hover\:border-b-error\/0:hover{border-bottom-color:var(--fallback-er,oklch(var(--er)/0))}.hover\:border-b-error\/10:hover{border-bottom-color:var(--fallback-er,oklch(var(--er)/.1))}.hover\:border-b-error\/100:hover{border-bottom-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:border-b-error\/20:hover{border-bottom-color:var(--fallback-er,oklch(var(--er)/.2))}.hover\:border-b-error\/25:hover{border-bottom-color:var(--fallback-er,oklch(var(--er)/.25))}.hover\:border-b-error\/30:hover{border-bottom-color:var(--fallback-er,oklch(var(--er)/.3))}.hover\:border-b-error\/40:hover{border-bottom-color:var(--fallback-er,oklch(var(--er)/.4))}.hover\:border-b-error\/5:hover{border-bottom-color:var(--fallback-er,oklch(var(--er)/.05))}.hover\:border-b-error\/50:hover{border-bottom-color:var(--fallback-er,oklch(var(--er)/.5))}.hover\:border-b-error\/60:hover{border-bottom-color:var(--fallback-er,oklch(var(--er)/.6))}.hover\:border-b-error\/70:hover{border-bottom-color:var(--fallback-er,oklch(var(--er)/.7))}.hover\:border-b-error\/75:hover{border-bottom-color:var(--fallback-er,oklch(var(--er)/.75))}.hover\:border-b-error\/80:hover{border-bottom-color:var(--fallback-er,oklch(var(--er)/.8))}.hover\:border-b-error\/90:hover{border-bottom-color:var(--fallback-er,oklch(var(--er)/.9))}.hover\:border-b-error\/95:hover{border-bottom-color:var(--fallback-er,oklch(var(--er)/.95))}.hover\:border-b-info:hover{border-bottom-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:border-b-info-content:hover{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:border-b-info-content\/0:hover{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/0))}.hover\:border-b-info-content\/10:hover{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.1))}.hover\:border-b-info-content\/100:hover{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:border-b-info-content\/20:hover{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.2))}.hover\:border-b-info-content\/25:hover{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.25))}.hover\:border-b-info-content\/30:hover{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.3))}.hover\:border-b-info-content\/40:hover{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.4))}.hover\:border-b-info-content\/5:hover{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.05))}.hover\:border-b-info-content\/50:hover{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.5))}.hover\:border-b-info-content\/60:hover{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.6))}.hover\:border-b-info-content\/70:hover{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.7))}.hover\:border-b-info-content\/75:hover{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.75))}.hover\:border-b-info-content\/80:hover{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.8))}.hover\:border-b-info-content\/90:hover{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.9))}.hover\:border-b-info-content\/95:hover{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.95))}.hover\:border-b-info\/0:hover{border-bottom-color:var(--fallback-in,oklch(var(--in)/0))}.hover\:border-b-info\/10:hover{border-bottom-color:var(--fallback-in,oklch(var(--in)/.1))}.hover\:border-b-info\/100:hover{border-bottom-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:border-b-info\/20:hover{border-bottom-color:var(--fallback-in,oklch(var(--in)/.2))}.hover\:border-b-info\/25:hover{border-bottom-color:var(--fallback-in,oklch(var(--in)/.25))}.hover\:border-b-info\/30:hover{border-bottom-color:var(--fallback-in,oklch(var(--in)/.3))}.hover\:border-b-info\/40:hover{border-bottom-color:var(--fallback-in,oklch(var(--in)/.4))}.hover\:border-b-info\/5:hover{border-bottom-color:var(--fallback-in,oklch(var(--in)/.05))}.hover\:border-b-info\/50:hover{border-bottom-color:var(--fallback-in,oklch(var(--in)/.5))}.hover\:border-b-info\/60:hover{border-bottom-color:var(--fallback-in,oklch(var(--in)/.6))}.hover\:border-b-info\/70:hover{border-bottom-color:var(--fallback-in,oklch(var(--in)/.7))}.hover\:border-b-info\/75:hover{border-bottom-color:var(--fallback-in,oklch(var(--in)/.75))}.hover\:border-b-info\/80:hover{border-bottom-color:var(--fallback-in,oklch(var(--in)/.8))}.hover\:border-b-info\/90:hover{border-bottom-color:var(--fallback-in,oklch(var(--in)/.9))}.hover\:border-b-info\/95:hover{border-bottom-color:var(--fallback-in,oklch(var(--in)/.95))}.hover\:border-b-success:hover{border-bottom-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:border-b-success-content:hover{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:border-b-success-content\/0:hover{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/0))}.hover\:border-b-success-content\/10:hover{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.1))}.hover\:border-b-success-content\/100:hover{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:border-b-success-content\/20:hover{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.2))}.hover\:border-b-success-content\/25:hover{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.25))}.hover\:border-b-success-content\/30:hover{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.3))}.hover\:border-b-success-content\/40:hover{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.4))}.hover\:border-b-success-content\/5:hover{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.05))}.hover\:border-b-success-content\/50:hover{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.5))}.hover\:border-b-success-content\/60:hover{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.6))}.hover\:border-b-success-content\/70:hover{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.7))}.hover\:border-b-success-content\/75:hover{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.75))}.hover\:border-b-success-content\/80:hover{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.8))}.hover\:border-b-success-content\/90:hover{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.9))}.hover\:border-b-success-content\/95:hover{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.95))}.hover\:border-b-success\/0:hover{border-bottom-color:var(--fallback-su,oklch(var(--su)/0))}.hover\:border-b-success\/10:hover{border-bottom-color:var(--fallback-su,oklch(var(--su)/.1))}.hover\:border-b-success\/100:hover{border-bottom-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:border-b-success\/20:hover{border-bottom-color:var(--fallback-su,oklch(var(--su)/.2))}.hover\:border-b-success\/25:hover{border-bottom-color:var(--fallback-su,oklch(var(--su)/.25))}.hover\:border-b-success\/30:hover{border-bottom-color:var(--fallback-su,oklch(var(--su)/.3))}.hover\:border-b-success\/40:hover{border-bottom-color:var(--fallback-su,oklch(var(--su)/.4))}.hover\:border-b-success\/5:hover{border-bottom-color:var(--fallback-su,oklch(var(--su)/.05))}.hover\:border-b-success\/50:hover{border-bottom-color:var(--fallback-su,oklch(var(--su)/.5))}.hover\:border-b-success\/60:hover{border-bottom-color:var(--fallback-su,oklch(var(--su)/.6))}.hover\:border-b-success\/70:hover{border-bottom-color:var(--fallback-su,oklch(var(--su)/.7))}.hover\:border-b-success\/75:hover{border-bottom-color:var(--fallback-su,oklch(var(--su)/.75))}.hover\:border-b-success\/80:hover{border-bottom-color:var(--fallback-su,oklch(var(--su)/.8))}.hover\:border-b-success\/90:hover{border-bottom-color:var(--fallback-su,oklch(var(--su)/.9))}.hover\:border-b-success\/95:hover{border-bottom-color:var(--fallback-su,oklch(var(--su)/.95))}.hover\:border-b-warning:hover{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:border-b-warning-content:hover{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:border-b-warning-content\/0:hover{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/0))}.hover\:border-b-warning-content\/10:hover{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.1))}.hover\:border-b-warning-content\/100:hover{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:border-b-warning-content\/20:hover{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.2))}.hover\:border-b-warning-content\/25:hover{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.25))}.hover\:border-b-warning-content\/30:hover{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.3))}.hover\:border-b-warning-content\/40:hover{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.4))}.hover\:border-b-warning-content\/5:hover{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.05))}.hover\:border-b-warning-content\/50:hover{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.5))}.hover\:border-b-warning-content\/60:hover{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.6))}.hover\:border-b-warning-content\/70:hover{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.7))}.hover\:border-b-warning-content\/75:hover{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.75))}.hover\:border-b-warning-content\/80:hover{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.8))}.hover\:border-b-warning-content\/90:hover{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.9))}.hover\:border-b-warning-content\/95:hover{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.95))}.hover\:border-b-warning\/0:hover{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/0))}.hover\:border-b-warning\/10:hover{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.1))}.hover\:border-b-warning\/100:hover{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:border-b-warning\/20:hover{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.2))}.hover\:border-b-warning\/25:hover{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.25))}.hover\:border-b-warning\/30:hover{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.3))}.hover\:border-b-warning\/40:hover{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.4))}.hover\:border-b-warning\/5:hover{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.05))}.hover\:border-b-warning\/50:hover{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.5))}.hover\:border-b-warning\/60:hover{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.6))}.hover\:border-b-warning\/70:hover{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.7))}.hover\:border-b-warning\/75:hover{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.75))}.hover\:border-b-warning\/80:hover{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.8))}.hover\:border-b-warning\/90:hover{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.9))}.hover\:border-b-warning\/95:hover{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.95))}.hover\:border-e-base-100:hover{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:border-e-base-100\/0:hover{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0))}.hover\:border-e-base-100\/10:hover{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.1))}.hover\:border-e-base-100\/100:hover{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:border-e-base-100\/20:hover{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.2))}.hover\:border-e-base-100\/25:hover{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.25))}.hover\:border-e-base-100\/30:hover{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.3))}.hover\:border-e-base-100\/40:hover{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.4))}.hover\:border-e-base-100\/5:hover{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.05))}.hover\:border-e-base-100\/50:hover{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.5))}.hover\:border-e-base-100\/60:hover{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.6))}.hover\:border-e-base-100\/70:hover{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.7))}.hover\:border-e-base-100\/75:hover{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.75))}.hover\:border-e-base-100\/80:hover{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.8))}.hover\:border-e-base-100\/90:hover{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.9))}.hover\:border-e-base-100\/95:hover{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.95))}.hover\:border-e-base-200:hover{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:border-e-base-200\/0:hover{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0))}.hover\:border-e-base-200\/10:hover{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.1))}.hover\:border-e-base-200\/100:hover{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:border-e-base-200\/20:hover{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.2))}.hover\:border-e-base-200\/25:hover{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.25))}.hover\:border-e-base-200\/30:hover{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.3))}.hover\:border-e-base-200\/40:hover{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.4))}.hover\:border-e-base-200\/5:hover{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.05))}.hover\:border-e-base-200\/50:hover{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.5))}.hover\:border-e-base-200\/60:hover{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.6))}.hover\:border-e-base-200\/70:hover{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.7))}.hover\:border-e-base-200\/75:hover{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.75))}.hover\:border-e-base-200\/80:hover{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.8))}.hover\:border-e-base-200\/90:hover{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.9))}.hover\:border-e-base-200\/95:hover{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.95))}.hover\:border-e-base-300:hover{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:border-e-base-300\/0:hover{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0))}.hover\:border-e-base-300\/10:hover{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.1))}.hover\:border-e-base-300\/100:hover{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:border-e-base-300\/20:hover{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.2))}.hover\:border-e-base-300\/25:hover{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.25))}.hover\:border-e-base-300\/30:hover{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.3))}.hover\:border-e-base-300\/40:hover{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.4))}.hover\:border-e-base-300\/5:hover{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.05))}.hover\:border-e-base-300\/50:hover{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.5))}.hover\:border-e-base-300\/60:hover{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.6))}.hover\:border-e-base-300\/70:hover{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.7))}.hover\:border-e-base-300\/75:hover{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.75))}.hover\:border-e-base-300\/80:hover{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.8))}.hover\:border-e-base-300\/90:hover{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.9))}.hover\:border-e-base-300\/95:hover{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.95))}.hover\:border-e-base-content:hover{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:border-e-base-content\/0:hover{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0))}.hover\:border-e-base-content\/10:hover{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.1))}.hover\:border-e-base-content\/100:hover{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:border-e-base-content\/20:hover{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.2))}.hover\:border-e-base-content\/25:hover{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.25))}.hover\:border-e-base-content\/30:hover{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.3))}.hover\:border-e-base-content\/40:hover{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.4))}.hover\:border-e-base-content\/5:hover{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.05))}.hover\:border-e-base-content\/50:hover{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.5))}.hover\:border-e-base-content\/60:hover{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.6))}.hover\:border-e-base-content\/70:hover{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.7))}.hover\:border-e-base-content\/75:hover{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.75))}.hover\:border-e-base-content\/80:hover{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.8))}.hover\:border-e-base-content\/90:hover{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.9))}.hover\:border-e-base-content\/95:hover{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.95))}.hover\:border-e-error:hover{border-inline-end-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:border-e-error-content:hover{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:border-e-error-content\/0:hover{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0))}.hover\:border-e-error-content\/10:hover{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.1))}.hover\:border-e-error-content\/100:hover{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:border-e-error-content\/20:hover{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.2))}.hover\:border-e-error-content\/25:hover{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.25))}.hover\:border-e-error-content\/30:hover{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.3))}.hover\:border-e-error-content\/40:hover{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.4))}.hover\:border-e-error-content\/5:hover{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.05))}.hover\:border-e-error-content\/50:hover{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.5))}.hover\:border-e-error-content\/60:hover{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.6))}.hover\:border-e-error-content\/70:hover{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.7))}.hover\:border-e-error-content\/75:hover{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.75))}.hover\:border-e-error-content\/80:hover{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.8))}.hover\:border-e-error-content\/90:hover{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.9))}.hover\:border-e-error-content\/95:hover{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.95))}.hover\:border-e-error\/0:hover{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0))}.hover\:border-e-error\/10:hover{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.1))}.hover\:border-e-error\/100:hover{border-inline-end-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:border-e-error\/20:hover{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.2))}.hover\:border-e-error\/25:hover{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.25))}.hover\:border-e-error\/30:hover{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.3))}.hover\:border-e-error\/40:hover{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.4))}.hover\:border-e-error\/5:hover{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.05))}.hover\:border-e-error\/50:hover{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.5))}.hover\:border-e-error\/60:hover{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.6))}.hover\:border-e-error\/70:hover{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.7))}.hover\:border-e-error\/75:hover{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.75))}.hover\:border-e-error\/80:hover{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.8))}.hover\:border-e-error\/90:hover{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.9))}.hover\:border-e-error\/95:hover{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.95))}.hover\:border-e-info:hover{border-inline-end-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:border-e-info-content:hover{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:border-e-info-content\/0:hover{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0))}.hover\:border-e-info-content\/10:hover{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.1))}.hover\:border-e-info-content\/100:hover{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:border-e-info-content\/20:hover{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.2))}.hover\:border-e-info-content\/25:hover{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.25))}.hover\:border-e-info-content\/30:hover{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.3))}.hover\:border-e-info-content\/40:hover{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.4))}.hover\:border-e-info-content\/5:hover{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.05))}.hover\:border-e-info-content\/50:hover{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.5))}.hover\:border-e-info-content\/60:hover{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.6))}.hover\:border-e-info-content\/70:hover{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.7))}.hover\:border-e-info-content\/75:hover{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.75))}.hover\:border-e-info-content\/80:hover{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.8))}.hover\:border-e-info-content\/90:hover{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.9))}.hover\:border-e-info-content\/95:hover{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.95))}.hover\:border-e-info\/0:hover{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0))}.hover\:border-e-info\/10:hover{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.1))}.hover\:border-e-info\/100:hover{border-inline-end-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:border-e-info\/20:hover{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.2))}.hover\:border-e-info\/25:hover{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.25))}.hover\:border-e-info\/30:hover{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.3))}.hover\:border-e-info\/40:hover{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.4))}.hover\:border-e-info\/5:hover{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.05))}.hover\:border-e-info\/50:hover{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.5))}.hover\:border-e-info\/60:hover{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.6))}.hover\:border-e-info\/70:hover{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.7))}.hover\:border-e-info\/75:hover{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.75))}.hover\:border-e-info\/80:hover{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.8))}.hover\:border-e-info\/90:hover{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.9))}.hover\:border-e-info\/95:hover{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.95))}.hover\:border-e-success:hover{border-inline-end-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:border-e-success-content:hover{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:border-e-success-content\/0:hover{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0))}.hover\:border-e-success-content\/10:hover{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.1))}.hover\:border-e-success-content\/100:hover{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:border-e-success-content\/20:hover{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.2))}.hover\:border-e-success-content\/25:hover{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.25))}.hover\:border-e-success-content\/30:hover{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.3))}.hover\:border-e-success-content\/40:hover{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.4))}.hover\:border-e-success-content\/5:hover{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.05))}.hover\:border-e-success-content\/50:hover{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.5))}.hover\:border-e-success-content\/60:hover{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.6))}.hover\:border-e-success-content\/70:hover{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.7))}.hover\:border-e-success-content\/75:hover{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.75))}.hover\:border-e-success-content\/80:hover{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.8))}.hover\:border-e-success-content\/90:hover{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.9))}.hover\:border-e-success-content\/95:hover{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.95))}.hover\:border-e-success\/0:hover{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0))}.hover\:border-e-success\/10:hover{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.1))}.hover\:border-e-success\/100:hover{border-inline-end-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:border-e-success\/20:hover{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.2))}.hover\:border-e-success\/25:hover{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.25))}.hover\:border-e-success\/30:hover{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.3))}.hover\:border-e-success\/40:hover{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.4))}.hover\:border-e-success\/5:hover{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.05))}.hover\:border-e-success\/50:hover{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.5))}.hover\:border-e-success\/60:hover{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.6))}.hover\:border-e-success\/70:hover{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.7))}.hover\:border-e-success\/75:hover{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.75))}.hover\:border-e-success\/80:hover{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.8))}.hover\:border-e-success\/90:hover{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.9))}.hover\:border-e-success\/95:hover{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.95))}.hover\:border-e-warning:hover{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:border-e-warning-content:hover{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:border-e-warning-content\/0:hover{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0))}.hover\:border-e-warning-content\/10:hover{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.1))}.hover\:border-e-warning-content\/100:hover{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:border-e-warning-content\/20:hover{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.2))}.hover\:border-e-warning-content\/25:hover{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.25))}.hover\:border-e-warning-content\/30:hover{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.3))}.hover\:border-e-warning-content\/40:hover{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.4))}.hover\:border-e-warning-content\/5:hover{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.05))}.hover\:border-e-warning-content\/50:hover{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.5))}.hover\:border-e-warning-content\/60:hover{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.6))}.hover\:border-e-warning-content\/70:hover{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.7))}.hover\:border-e-warning-content\/75:hover{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.75))}.hover\:border-e-warning-content\/80:hover{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.8))}.hover\:border-e-warning-content\/90:hover{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.9))}.hover\:border-e-warning-content\/95:hover{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.95))}.hover\:border-e-warning\/0:hover{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0))}.hover\:border-e-warning\/10:hover{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.1))}.hover\:border-e-warning\/100:hover{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:border-e-warning\/20:hover{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.2))}.hover\:border-e-warning\/25:hover{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.25))}.hover\:border-e-warning\/30:hover{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.3))}.hover\:border-e-warning\/40:hover{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.4))}.hover\:border-e-warning\/5:hover{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.05))}.hover\:border-e-warning\/50:hover{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.5))}.hover\:border-e-warning\/60:hover{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.6))}.hover\:border-e-warning\/70:hover{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.7))}.hover\:border-e-warning\/75:hover{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.75))}.hover\:border-e-warning\/80:hover{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.8))}.hover\:border-e-warning\/90:hover{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.9))}.hover\:border-e-warning\/95:hover{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.95))}.hover\:border-l-base-100:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:border-l-base-100\/0:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/0))}.hover\:border-l-base-100\/10:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.1))}.hover\:border-l-base-100\/100:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:border-l-base-100\/20:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.2))}.hover\:border-l-base-100\/25:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.25))}.hover\:border-l-base-100\/30:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.3))}.hover\:border-l-base-100\/40:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.4))}.hover\:border-l-base-100\/5:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.05))}.hover\:border-l-base-100\/50:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.5))}.hover\:border-l-base-100\/60:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.6))}.hover\:border-l-base-100\/70:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.7))}.hover\:border-l-base-100\/75:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.75))}.hover\:border-l-base-100\/80:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.8))}.hover\:border-l-base-100\/90:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.9))}.hover\:border-l-base-100\/95:hover{border-left-color:var(--fallback-b1,oklch(var(--b1)/.95))}.hover\:border-l-base-200:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:border-l-base-200\/0:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/0))}.hover\:border-l-base-200\/10:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.1))}.hover\:border-l-base-200\/100:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:border-l-base-200\/20:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.2))}.hover\:border-l-base-200\/25:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.25))}.hover\:border-l-base-200\/30:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.3))}.hover\:border-l-base-200\/40:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.4))}.hover\:border-l-base-200\/5:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.05))}.hover\:border-l-base-200\/50:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.5))}.hover\:border-l-base-200\/60:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.6))}.hover\:border-l-base-200\/70:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.7))}.hover\:border-l-base-200\/75:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.75))}.hover\:border-l-base-200\/80:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.8))}.hover\:border-l-base-200\/90:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.9))}.hover\:border-l-base-200\/95:hover{border-left-color:var(--fallback-b2,oklch(var(--b2)/.95))}.hover\:border-l-base-300:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:border-l-base-300\/0:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/0))}.hover\:border-l-base-300\/10:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.1))}.hover\:border-l-base-300\/100:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:border-l-base-300\/20:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.2))}.hover\:border-l-base-300\/25:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.25))}.hover\:border-l-base-300\/30:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.3))}.hover\:border-l-base-300\/40:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.4))}.hover\:border-l-base-300\/5:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.05))}.hover\:border-l-base-300\/50:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.5))}.hover\:border-l-base-300\/60:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.6))}.hover\:border-l-base-300\/70:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.7))}.hover\:border-l-base-300\/75:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.75))}.hover\:border-l-base-300\/80:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.8))}.hover\:border-l-base-300\/90:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.9))}.hover\:border-l-base-300\/95:hover{border-left-color:var(--fallback-b3,oklch(var(--b3)/.95))}.hover\:border-l-base-content:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:border-l-base-content\/0:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/0))}.hover\:border-l-base-content\/10:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.1))}.hover\:border-l-base-content\/100:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:border-l-base-content\/20:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.2))}.hover\:border-l-base-content\/25:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.25))}.hover\:border-l-base-content\/30:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.3))}.hover\:border-l-base-content\/40:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.4))}.hover\:border-l-base-content\/5:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.05))}.hover\:border-l-base-content\/50:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.5))}.hover\:border-l-base-content\/60:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.6))}.hover\:border-l-base-content\/70:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.7))}.hover\:border-l-base-content\/75:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.75))}.hover\:border-l-base-content\/80:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.8))}.hover\:border-l-base-content\/90:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.9))}.hover\:border-l-base-content\/95:hover{border-left-color:var(--fallback-bc,oklch(var(--bc)/.95))}.hover\:border-l-error:hover{border-left-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:border-l-error-content:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:border-l-error-content\/0:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/0))}.hover\:border-l-error-content\/10:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.1))}.hover\:border-l-error-content\/100:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:border-l-error-content\/20:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.2))}.hover\:border-l-error-content\/25:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.25))}.hover\:border-l-error-content\/30:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.3))}.hover\:border-l-error-content\/40:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.4))}.hover\:border-l-error-content\/5:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.05))}.hover\:border-l-error-content\/50:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.5))}.hover\:border-l-error-content\/60:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.6))}.hover\:border-l-error-content\/70:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.7))}.hover\:border-l-error-content\/75:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.75))}.hover\:border-l-error-content\/80:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.8))}.hover\:border-l-error-content\/90:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.9))}.hover\:border-l-error-content\/95:hover{border-left-color:var(--fallback-erc,oklch(var(--erc)/.95))}.hover\:border-l-error\/0:hover{border-left-color:var(--fallback-er,oklch(var(--er)/0))}.hover\:border-l-error\/10:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.1))}.hover\:border-l-error\/100:hover{border-left-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:border-l-error\/20:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.2))}.hover\:border-l-error\/25:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.25))}.hover\:border-l-error\/30:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.3))}.hover\:border-l-error\/40:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.4))}.hover\:border-l-error\/5:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.05))}.hover\:border-l-error\/50:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.5))}.hover\:border-l-error\/60:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.6))}.hover\:border-l-error\/70:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.7))}.hover\:border-l-error\/75:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.75))}.hover\:border-l-error\/80:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.8))}.hover\:border-l-error\/90:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.9))}.hover\:border-l-error\/95:hover{border-left-color:var(--fallback-er,oklch(var(--er)/.95))}.hover\:border-l-info:hover{border-left-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:border-l-info-content:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:border-l-info-content\/0:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/0))}.hover\:border-l-info-content\/10:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.1))}.hover\:border-l-info-content\/100:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:border-l-info-content\/20:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.2))}.hover\:border-l-info-content\/25:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.25))}.hover\:border-l-info-content\/30:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.3))}.hover\:border-l-info-content\/40:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.4))}.hover\:border-l-info-content\/5:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.05))}.hover\:border-l-info-content\/50:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.5))}.hover\:border-l-info-content\/60:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.6))}.hover\:border-l-info-content\/70:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.7))}.hover\:border-l-info-content\/75:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.75))}.hover\:border-l-info-content\/80:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.8))}.hover\:border-l-info-content\/90:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.9))}.hover\:border-l-info-content\/95:hover{border-left-color:var(--fallback-inc,oklch(var(--inc)/.95))}.hover\:border-l-info\/0:hover{border-left-color:var(--fallback-in,oklch(var(--in)/0))}.hover\:border-l-info\/10:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.1))}.hover\:border-l-info\/100:hover{border-left-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:border-l-info\/20:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.2))}.hover\:border-l-info\/25:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.25))}.hover\:border-l-info\/30:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.3))}.hover\:border-l-info\/40:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.4))}.hover\:border-l-info\/5:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.05))}.hover\:border-l-info\/50:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.5))}.hover\:border-l-info\/60:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.6))}.hover\:border-l-info\/70:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.7))}.hover\:border-l-info\/75:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.75))}.hover\:border-l-info\/80:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.8))}.hover\:border-l-info\/90:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.9))}.hover\:border-l-info\/95:hover{border-left-color:var(--fallback-in,oklch(var(--in)/.95))}.hover\:border-l-success:hover{border-left-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:border-l-success-content:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:border-l-success-content\/0:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/0))}.hover\:border-l-success-content\/10:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.1))}.hover\:border-l-success-content\/100:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:border-l-success-content\/20:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.2))}.hover\:border-l-success-content\/25:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.25))}.hover\:border-l-success-content\/30:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.3))}.hover\:border-l-success-content\/40:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.4))}.hover\:border-l-success-content\/5:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.05))}.hover\:border-l-success-content\/50:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.5))}.hover\:border-l-success-content\/60:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.6))}.hover\:border-l-success-content\/70:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.7))}.hover\:border-l-success-content\/75:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.75))}.hover\:border-l-success-content\/80:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.8))}.hover\:border-l-success-content\/90:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.9))}.hover\:border-l-success-content\/95:hover{border-left-color:var(--fallback-suc,oklch(var(--suc)/.95))}.hover\:border-l-success\/0:hover{border-left-color:var(--fallback-su,oklch(var(--su)/0))}.hover\:border-l-success\/10:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.1))}.hover\:border-l-success\/100:hover{border-left-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:border-l-success\/20:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.2))}.hover\:border-l-success\/25:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.25))}.hover\:border-l-success\/30:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.3))}.hover\:border-l-success\/40:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.4))}.hover\:border-l-success\/5:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.05))}.hover\:border-l-success\/50:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.5))}.hover\:border-l-success\/60:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.6))}.hover\:border-l-success\/70:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.7))}.hover\:border-l-success\/75:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.75))}.hover\:border-l-success\/80:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.8))}.hover\:border-l-success\/90:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.9))}.hover\:border-l-success\/95:hover{border-left-color:var(--fallback-su,oklch(var(--su)/.95))}.hover\:border-l-warning:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:border-l-warning-content:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:border-l-warning-content\/0:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/0))}.hover\:border-l-warning-content\/10:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.1))}.hover\:border-l-warning-content\/100:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:border-l-warning-content\/20:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.2))}.hover\:border-l-warning-content\/25:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.25))}.hover\:border-l-warning-content\/30:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.3))}.hover\:border-l-warning-content\/40:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.4))}.hover\:border-l-warning-content\/5:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.05))}.hover\:border-l-warning-content\/50:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.5))}.hover\:border-l-warning-content\/60:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.6))}.hover\:border-l-warning-content\/70:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.7))}.hover\:border-l-warning-content\/75:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.75))}.hover\:border-l-warning-content\/80:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.8))}.hover\:border-l-warning-content\/90:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.9))}.hover\:border-l-warning-content\/95:hover{border-left-color:var(--fallback-wac,oklch(var(--wac)/.95))}.hover\:border-l-warning\/0:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/0))}.hover\:border-l-warning\/10:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.1))}.hover\:border-l-warning\/100:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:border-l-warning\/20:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.2))}.hover\:border-l-warning\/25:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.25))}.hover\:border-l-warning\/30:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.3))}.hover\:border-l-warning\/40:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.4))}.hover\:border-l-warning\/5:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.05))}.hover\:border-l-warning\/50:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.5))}.hover\:border-l-warning\/60:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.6))}.hover\:border-l-warning\/70:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.7))}.hover\:border-l-warning\/75:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.75))}.hover\:border-l-warning\/80:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.8))}.hover\:border-l-warning\/90:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.9))}.hover\:border-l-warning\/95:hover{border-left-color:var(--fallback-wa,oklch(var(--wa)/.95))}.hover\:border-r-base-100:hover{border-right-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:border-r-base-100\/0:hover{border-right-color:var(--fallback-b1,oklch(var(--b1)/0))}.hover\:border-r-base-100\/10:hover{border-right-color:var(--fallback-b1,oklch(var(--b1)/.1))}.hover\:border-r-base-100\/100:hover{border-right-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:border-r-base-100\/20:hover{border-right-color:var(--fallback-b1,oklch(var(--b1)/.2))}.hover\:border-r-base-100\/25:hover{border-right-color:var(--fallback-b1,oklch(var(--b1)/.25))}.hover\:border-r-base-100\/30:hover{border-right-color:var(--fallback-b1,oklch(var(--b1)/.3))}.hover\:border-r-base-100\/40:hover{border-right-color:var(--fallback-b1,oklch(var(--b1)/.4))}.hover\:border-r-base-100\/5:hover{border-right-color:var(--fallback-b1,oklch(var(--b1)/.05))}.hover\:border-r-base-100\/50:hover{border-right-color:var(--fallback-b1,oklch(var(--b1)/.5))}.hover\:border-r-base-100\/60:hover{border-right-color:var(--fallback-b1,oklch(var(--b1)/.6))}.hover\:border-r-base-100\/70:hover{border-right-color:var(--fallback-b1,oklch(var(--b1)/.7))}.hover\:border-r-base-100\/75:hover{border-right-color:var(--fallback-b1,oklch(var(--b1)/.75))}.hover\:border-r-base-100\/80:hover{border-right-color:var(--fallback-b1,oklch(var(--b1)/.8))}.hover\:border-r-base-100\/90:hover{border-right-color:var(--fallback-b1,oklch(var(--b1)/.9))}.hover\:border-r-base-100\/95:hover{border-right-color:var(--fallback-b1,oklch(var(--b1)/.95))}.hover\:border-r-base-200:hover{border-right-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:border-r-base-200\/0:hover{border-right-color:var(--fallback-b2,oklch(var(--b2)/0))}.hover\:border-r-base-200\/10:hover{border-right-color:var(--fallback-b2,oklch(var(--b2)/.1))}.hover\:border-r-base-200\/100:hover{border-right-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:border-r-base-200\/20:hover{border-right-color:var(--fallback-b2,oklch(var(--b2)/.2))}.hover\:border-r-base-200\/25:hover{border-right-color:var(--fallback-b2,oklch(var(--b2)/.25))}.hover\:border-r-base-200\/30:hover{border-right-color:var(--fallback-b2,oklch(var(--b2)/.3))}.hover\:border-r-base-200\/40:hover{border-right-color:var(--fallback-b2,oklch(var(--b2)/.4))}.hover\:border-r-base-200\/5:hover{border-right-color:var(--fallback-b2,oklch(var(--b2)/.05))}.hover\:border-r-base-200\/50:hover{border-right-color:var(--fallback-b2,oklch(var(--b2)/.5))}.hover\:border-r-base-200\/60:hover{border-right-color:var(--fallback-b2,oklch(var(--b2)/.6))}.hover\:border-r-base-200\/70:hover{border-right-color:var(--fallback-b2,oklch(var(--b2)/.7))}.hover\:border-r-base-200\/75:hover{border-right-color:var(--fallback-b2,oklch(var(--b2)/.75))}.hover\:border-r-base-200\/80:hover{border-right-color:var(--fallback-b2,oklch(var(--b2)/.8))}.hover\:border-r-base-200\/90:hover{border-right-color:var(--fallback-b2,oklch(var(--b2)/.9))}.hover\:border-r-base-200\/95:hover{border-right-color:var(--fallback-b2,oklch(var(--b2)/.95))}.hover\:border-r-base-300:hover{border-right-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:border-r-base-300\/0:hover{border-right-color:var(--fallback-b3,oklch(var(--b3)/0))}.hover\:border-r-base-300\/10:hover{border-right-color:var(--fallback-b3,oklch(var(--b3)/.1))}.hover\:border-r-base-300\/100:hover{border-right-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:border-r-base-300\/20:hover{border-right-color:var(--fallback-b3,oklch(var(--b3)/.2))}.hover\:border-r-base-300\/25:hover{border-right-color:var(--fallback-b3,oklch(var(--b3)/.25))}.hover\:border-r-base-300\/30:hover{border-right-color:var(--fallback-b3,oklch(var(--b3)/.3))}.hover\:border-r-base-300\/40:hover{border-right-color:var(--fallback-b3,oklch(var(--b3)/.4))}.hover\:border-r-base-300\/5:hover{border-right-color:var(--fallback-b3,oklch(var(--b3)/.05))}.hover\:border-r-base-300\/50:hover{border-right-color:var(--fallback-b3,oklch(var(--b3)/.5))}.hover\:border-r-base-300\/60:hover{border-right-color:var(--fallback-b3,oklch(var(--b3)/.6))}.hover\:border-r-base-300\/70:hover{border-right-color:var(--fallback-b3,oklch(var(--b3)/.7))}.hover\:border-r-base-300\/75:hover{border-right-color:var(--fallback-b3,oklch(var(--b3)/.75))}.hover\:border-r-base-300\/80:hover{border-right-color:var(--fallback-b3,oklch(var(--b3)/.8))}.hover\:border-r-base-300\/90:hover{border-right-color:var(--fallback-b3,oklch(var(--b3)/.9))}.hover\:border-r-base-300\/95:hover{border-right-color:var(--fallback-b3,oklch(var(--b3)/.95))}.hover\:border-r-base-content:hover{border-right-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:border-r-base-content\/0:hover{border-right-color:var(--fallback-bc,oklch(var(--bc)/0))}.hover\:border-r-base-content\/10:hover{border-right-color:var(--fallback-bc,oklch(var(--bc)/.1))}.hover\:border-r-base-content\/100:hover{border-right-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:border-r-base-content\/20:hover{border-right-color:var(--fallback-bc,oklch(var(--bc)/.2))}.hover\:border-r-base-content\/25:hover{border-right-color:var(--fallback-bc,oklch(var(--bc)/.25))}.hover\:border-r-base-content\/30:hover{border-right-color:var(--fallback-bc,oklch(var(--bc)/.3))}.hover\:border-r-base-content\/40:hover{border-right-color:var(--fallback-bc,oklch(var(--bc)/.4))}.hover\:border-r-base-content\/5:hover{border-right-color:var(--fallback-bc,oklch(var(--bc)/.05))}.hover\:border-r-base-content\/50:hover{border-right-color:var(--fallback-bc,oklch(var(--bc)/.5))}.hover\:border-r-base-content\/60:hover{border-right-color:var(--fallback-bc,oklch(var(--bc)/.6))}.hover\:border-r-base-content\/70:hover{border-right-color:var(--fallback-bc,oklch(var(--bc)/.7))}.hover\:border-r-base-content\/75:hover{border-right-color:var(--fallback-bc,oklch(var(--bc)/.75))}.hover\:border-r-base-content\/80:hover{border-right-color:var(--fallback-bc,oklch(var(--bc)/.8))}.hover\:border-r-base-content\/90:hover{border-right-color:var(--fallback-bc,oklch(var(--bc)/.9))}.hover\:border-r-base-content\/95:hover{border-right-color:var(--fallback-bc,oklch(var(--bc)/.95))}.hover\:border-r-error:hover{border-right-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:border-r-error-content:hover{border-right-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:border-r-error-content\/0:hover{border-right-color:var(--fallback-erc,oklch(var(--erc)/0))}.hover\:border-r-error-content\/10:hover{border-right-color:var(--fallback-erc,oklch(var(--erc)/.1))}.hover\:border-r-error-content\/100:hover{border-right-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:border-r-error-content\/20:hover{border-right-color:var(--fallback-erc,oklch(var(--erc)/.2))}.hover\:border-r-error-content\/25:hover{border-right-color:var(--fallback-erc,oklch(var(--erc)/.25))}.hover\:border-r-error-content\/30:hover{border-right-color:var(--fallback-erc,oklch(var(--erc)/.3))}.hover\:border-r-error-content\/40:hover{border-right-color:var(--fallback-erc,oklch(var(--erc)/.4))}.hover\:border-r-error-content\/5:hover{border-right-color:var(--fallback-erc,oklch(var(--erc)/.05))}.hover\:border-r-error-content\/50:hover{border-right-color:var(--fallback-erc,oklch(var(--erc)/.5))}.hover\:border-r-error-content\/60:hover{border-right-color:var(--fallback-erc,oklch(var(--erc)/.6))}.hover\:border-r-error-content\/70:hover{border-right-color:var(--fallback-erc,oklch(var(--erc)/.7))}.hover\:border-r-error-content\/75:hover{border-right-color:var(--fallback-erc,oklch(var(--erc)/.75))}.hover\:border-r-error-content\/80:hover{border-right-color:var(--fallback-erc,oklch(var(--erc)/.8))}.hover\:border-r-error-content\/90:hover{border-right-color:var(--fallback-erc,oklch(var(--erc)/.9))}.hover\:border-r-error-content\/95:hover{border-right-color:var(--fallback-erc,oklch(var(--erc)/.95))}.hover\:border-r-error\/0:hover{border-right-color:var(--fallback-er,oklch(var(--er)/0))}.hover\:border-r-error\/10:hover{border-right-color:var(--fallback-er,oklch(var(--er)/.1))}.hover\:border-r-error\/100:hover{border-right-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:border-r-error\/20:hover{border-right-color:var(--fallback-er,oklch(var(--er)/.2))}.hover\:border-r-error\/25:hover{border-right-color:var(--fallback-er,oklch(var(--er)/.25))}.hover\:border-r-error\/30:hover{border-right-color:var(--fallback-er,oklch(var(--er)/.3))}.hover\:border-r-error\/40:hover{border-right-color:var(--fallback-er,oklch(var(--er)/.4))}.hover\:border-r-error\/5:hover{border-right-color:var(--fallback-er,oklch(var(--er)/.05))}.hover\:border-r-error\/50:hover{border-right-color:var(--fallback-er,oklch(var(--er)/.5))}.hover\:border-r-error\/60:hover{border-right-color:var(--fallback-er,oklch(var(--er)/.6))}.hover\:border-r-error\/70:hover{border-right-color:var(--fallback-er,oklch(var(--er)/.7))}.hover\:border-r-error\/75:hover{border-right-color:var(--fallback-er,oklch(var(--er)/.75))}.hover\:border-r-error\/80:hover{border-right-color:var(--fallback-er,oklch(var(--er)/.8))}.hover\:border-r-error\/90:hover{border-right-color:var(--fallback-er,oklch(var(--er)/.9))}.hover\:border-r-error\/95:hover{border-right-color:var(--fallback-er,oklch(var(--er)/.95))}.hover\:border-r-info:hover{border-right-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:border-r-info-content:hover{border-right-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:border-r-info-content\/0:hover{border-right-color:var(--fallback-inc,oklch(var(--inc)/0))}.hover\:border-r-info-content\/10:hover{border-right-color:var(--fallback-inc,oklch(var(--inc)/.1))}.hover\:border-r-info-content\/100:hover{border-right-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:border-r-info-content\/20:hover{border-right-color:var(--fallback-inc,oklch(var(--inc)/.2))}.hover\:border-r-info-content\/25:hover{border-right-color:var(--fallback-inc,oklch(var(--inc)/.25))}.hover\:border-r-info-content\/30:hover{border-right-color:var(--fallback-inc,oklch(var(--inc)/.3))}.hover\:border-r-info-content\/40:hover{border-right-color:var(--fallback-inc,oklch(var(--inc)/.4))}.hover\:border-r-info-content\/5:hover{border-right-color:var(--fallback-inc,oklch(var(--inc)/.05))}.hover\:border-r-info-content\/50:hover{border-right-color:var(--fallback-inc,oklch(var(--inc)/.5))}.hover\:border-r-info-content\/60:hover{border-right-color:var(--fallback-inc,oklch(var(--inc)/.6))}.hover\:border-r-info-content\/70:hover{border-right-color:var(--fallback-inc,oklch(var(--inc)/.7))}.hover\:border-r-info-content\/75:hover{border-right-color:var(--fallback-inc,oklch(var(--inc)/.75))}.hover\:border-r-info-content\/80:hover{border-right-color:var(--fallback-inc,oklch(var(--inc)/.8))}.hover\:border-r-info-content\/90:hover{border-right-color:var(--fallback-inc,oklch(var(--inc)/.9))}.hover\:border-r-info-content\/95:hover{border-right-color:var(--fallback-inc,oklch(var(--inc)/.95))}.hover\:border-r-info\/0:hover{border-right-color:var(--fallback-in,oklch(var(--in)/0))}.hover\:border-r-info\/10:hover{border-right-color:var(--fallback-in,oklch(var(--in)/.1))}.hover\:border-r-info\/100:hover{border-right-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:border-r-info\/20:hover{border-right-color:var(--fallback-in,oklch(var(--in)/.2))}.hover\:border-r-info\/25:hover{border-right-color:var(--fallback-in,oklch(var(--in)/.25))}.hover\:border-r-info\/30:hover{border-right-color:var(--fallback-in,oklch(var(--in)/.3))}.hover\:border-r-info\/40:hover{border-right-color:var(--fallback-in,oklch(var(--in)/.4))}.hover\:border-r-info\/5:hover{border-right-color:var(--fallback-in,oklch(var(--in)/.05))}.hover\:border-r-info\/50:hover{border-right-color:var(--fallback-in,oklch(var(--in)/.5))}.hover\:border-r-info\/60:hover{border-right-color:var(--fallback-in,oklch(var(--in)/.6))}.hover\:border-r-info\/70:hover{border-right-color:var(--fallback-in,oklch(var(--in)/.7))}.hover\:border-r-info\/75:hover{border-right-color:var(--fallback-in,oklch(var(--in)/.75))}.hover\:border-r-info\/80:hover{border-right-color:var(--fallback-in,oklch(var(--in)/.8))}.hover\:border-r-info\/90:hover{border-right-color:var(--fallback-in,oklch(var(--in)/.9))}.hover\:border-r-info\/95:hover{border-right-color:var(--fallback-in,oklch(var(--in)/.95))}.hover\:border-r-success:hover{border-right-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:border-r-success-content:hover{border-right-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:border-r-success-content\/0:hover{border-right-color:var(--fallback-suc,oklch(var(--suc)/0))}.hover\:border-r-success-content\/10:hover{border-right-color:var(--fallback-suc,oklch(var(--suc)/.1))}.hover\:border-r-success-content\/100:hover{border-right-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:border-r-success-content\/20:hover{border-right-color:var(--fallback-suc,oklch(var(--suc)/.2))}.hover\:border-r-success-content\/25:hover{border-right-color:var(--fallback-suc,oklch(var(--suc)/.25))}.hover\:border-r-success-content\/30:hover{border-right-color:var(--fallback-suc,oklch(var(--suc)/.3))}.hover\:border-r-success-content\/40:hover{border-right-color:var(--fallback-suc,oklch(var(--suc)/.4))}.hover\:border-r-success-content\/5:hover{border-right-color:var(--fallback-suc,oklch(var(--suc)/.05))}.hover\:border-r-success-content\/50:hover{border-right-color:var(--fallback-suc,oklch(var(--suc)/.5))}.hover\:border-r-success-content\/60:hover{border-right-color:var(--fallback-suc,oklch(var(--suc)/.6))}.hover\:border-r-success-content\/70:hover{border-right-color:var(--fallback-suc,oklch(var(--suc)/.7))}.hover\:border-r-success-content\/75:hover{border-right-color:var(--fallback-suc,oklch(var(--suc)/.75))}.hover\:border-r-success-content\/80:hover{border-right-color:var(--fallback-suc,oklch(var(--suc)/.8))}.hover\:border-r-success-content\/90:hover{border-right-color:var(--fallback-suc,oklch(var(--suc)/.9))}.hover\:border-r-success-content\/95:hover{border-right-color:var(--fallback-suc,oklch(var(--suc)/.95))}.hover\:border-r-success\/0:hover{border-right-color:var(--fallback-su,oklch(var(--su)/0))}.hover\:border-r-success\/10:hover{border-right-color:var(--fallback-su,oklch(var(--su)/.1))}.hover\:border-r-success\/100:hover{border-right-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:border-r-success\/20:hover{border-right-color:var(--fallback-su,oklch(var(--su)/.2))}.hover\:border-r-success\/25:hover{border-right-color:var(--fallback-su,oklch(var(--su)/.25))}.hover\:border-r-success\/30:hover{border-right-color:var(--fallback-su,oklch(var(--su)/.3))}.hover\:border-r-success\/40:hover{border-right-color:var(--fallback-su,oklch(var(--su)/.4))}.hover\:border-r-success\/5:hover{border-right-color:var(--fallback-su,oklch(var(--su)/.05))}.hover\:border-r-success\/50:hover{border-right-color:var(--fallback-su,oklch(var(--su)/.5))}.hover\:border-r-success\/60:hover{border-right-color:var(--fallback-su,oklch(var(--su)/.6))}.hover\:border-r-success\/70:hover{border-right-color:var(--fallback-su,oklch(var(--su)/.7))}.hover\:border-r-success\/75:hover{border-right-color:var(--fallback-su,oklch(var(--su)/.75))}.hover\:border-r-success\/80:hover{border-right-color:var(--fallback-su,oklch(var(--su)/.8))}.hover\:border-r-success\/90:hover{border-right-color:var(--fallback-su,oklch(var(--su)/.9))}.hover\:border-r-success\/95:hover{border-right-color:var(--fallback-su,oklch(var(--su)/.95))}.hover\:border-r-warning:hover{border-right-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:border-r-warning-content:hover{border-right-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:border-r-warning-content\/0:hover{border-right-color:var(--fallback-wac,oklch(var(--wac)/0))}.hover\:border-r-warning-content\/10:hover{border-right-color:var(--fallback-wac,oklch(var(--wac)/.1))}.hover\:border-r-warning-content\/100:hover{border-right-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:border-r-warning-content\/20:hover{border-right-color:var(--fallback-wac,oklch(var(--wac)/.2))}.hover\:border-r-warning-content\/25:hover{border-right-color:var(--fallback-wac,oklch(var(--wac)/.25))}.hover\:border-r-warning-content\/30:hover{border-right-color:var(--fallback-wac,oklch(var(--wac)/.3))}.hover\:border-r-warning-content\/40:hover{border-right-color:var(--fallback-wac,oklch(var(--wac)/.4))}.hover\:border-r-warning-content\/5:hover{border-right-color:var(--fallback-wac,oklch(var(--wac)/.05))}.hover\:border-r-warning-content\/50:hover{border-right-color:var(--fallback-wac,oklch(var(--wac)/.5))}.hover\:border-r-warning-content\/60:hover{border-right-color:var(--fallback-wac,oklch(var(--wac)/.6))}.hover\:border-r-warning-content\/70:hover{border-right-color:var(--fallback-wac,oklch(var(--wac)/.7))}.hover\:border-r-warning-content\/75:hover{border-right-color:var(--fallback-wac,oklch(var(--wac)/.75))}.hover\:border-r-warning-content\/80:hover{border-right-color:var(--fallback-wac,oklch(var(--wac)/.8))}.hover\:border-r-warning-content\/90:hover{border-right-color:var(--fallback-wac,oklch(var(--wac)/.9))}.hover\:border-r-warning-content\/95:hover{border-right-color:var(--fallback-wac,oklch(var(--wac)/.95))}.hover\:border-r-warning\/0:hover{border-right-color:var(--fallback-wa,oklch(var(--wa)/0))}.hover\:border-r-warning\/10:hover{border-right-color:var(--fallback-wa,oklch(var(--wa)/.1))}.hover\:border-r-warning\/100:hover{border-right-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:border-r-warning\/20:hover{border-right-color:var(--fallback-wa,oklch(var(--wa)/.2))}.hover\:border-r-warning\/25:hover{border-right-color:var(--fallback-wa,oklch(var(--wa)/.25))}.hover\:border-r-warning\/30:hover{border-right-color:var(--fallback-wa,oklch(var(--wa)/.3))}.hover\:border-r-warning\/40:hover{border-right-color:var(--fallback-wa,oklch(var(--wa)/.4))}.hover\:border-r-warning\/5:hover{border-right-color:var(--fallback-wa,oklch(var(--wa)/.05))}.hover\:border-r-warning\/50:hover{border-right-color:var(--fallback-wa,oklch(var(--wa)/.5))}.hover\:border-r-warning\/60:hover{border-right-color:var(--fallback-wa,oklch(var(--wa)/.6))}.hover\:border-r-warning\/70:hover{border-right-color:var(--fallback-wa,oklch(var(--wa)/.7))}.hover\:border-r-warning\/75:hover{border-right-color:var(--fallback-wa,oklch(var(--wa)/.75))}.hover\:border-r-warning\/80:hover{border-right-color:var(--fallback-wa,oklch(var(--wa)/.8))}.hover\:border-r-warning\/90:hover{border-right-color:var(--fallback-wa,oklch(var(--wa)/.9))}.hover\:border-r-warning\/95:hover{border-right-color:var(--fallback-wa,oklch(var(--wa)/.95))}.hover\:border-s-base-100:hover{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:border-s-base-100\/0:hover{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0))}.hover\:border-s-base-100\/10:hover{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.1))}.hover\:border-s-base-100\/100:hover{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:border-s-base-100\/20:hover{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.2))}.hover\:border-s-base-100\/25:hover{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.25))}.hover\:border-s-base-100\/30:hover{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.3))}.hover\:border-s-base-100\/40:hover{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.4))}.hover\:border-s-base-100\/5:hover{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.05))}.hover\:border-s-base-100\/50:hover{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.5))}.hover\:border-s-base-100\/60:hover{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.6))}.hover\:border-s-base-100\/70:hover{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.7))}.hover\:border-s-base-100\/75:hover{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.75))}.hover\:border-s-base-100\/80:hover{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.8))}.hover\:border-s-base-100\/90:hover{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.9))}.hover\:border-s-base-100\/95:hover{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.95))}.hover\:border-s-base-200:hover{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:border-s-base-200\/0:hover{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0))}.hover\:border-s-base-200\/10:hover{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.1))}.hover\:border-s-base-200\/100:hover{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:border-s-base-200\/20:hover{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.2))}.hover\:border-s-base-200\/25:hover{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.25))}.hover\:border-s-base-200\/30:hover{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.3))}.hover\:border-s-base-200\/40:hover{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.4))}.hover\:border-s-base-200\/5:hover{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.05))}.hover\:border-s-base-200\/50:hover{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.5))}.hover\:border-s-base-200\/60:hover{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.6))}.hover\:border-s-base-200\/70:hover{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.7))}.hover\:border-s-base-200\/75:hover{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.75))}.hover\:border-s-base-200\/80:hover{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.8))}.hover\:border-s-base-200\/90:hover{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.9))}.hover\:border-s-base-200\/95:hover{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.95))}.hover\:border-s-base-300:hover{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:border-s-base-300\/0:hover{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0))}.hover\:border-s-base-300\/10:hover{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.1))}.hover\:border-s-base-300\/100:hover{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:border-s-base-300\/20:hover{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.2))}.hover\:border-s-base-300\/25:hover{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.25))}.hover\:border-s-base-300\/30:hover{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.3))}.hover\:border-s-base-300\/40:hover{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.4))}.hover\:border-s-base-300\/5:hover{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.05))}.hover\:border-s-base-300\/50:hover{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.5))}.hover\:border-s-base-300\/60:hover{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.6))}.hover\:border-s-base-300\/70:hover{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.7))}.hover\:border-s-base-300\/75:hover{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.75))}.hover\:border-s-base-300\/80:hover{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.8))}.hover\:border-s-base-300\/90:hover{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.9))}.hover\:border-s-base-300\/95:hover{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.95))}.hover\:border-s-base-content:hover{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:border-s-base-content\/0:hover{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0))}.hover\:border-s-base-content\/10:hover{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.1))}.hover\:border-s-base-content\/100:hover{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:border-s-base-content\/20:hover{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.2))}.hover\:border-s-base-content\/25:hover{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.25))}.hover\:border-s-base-content\/30:hover{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.3))}.hover\:border-s-base-content\/40:hover{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.4))}.hover\:border-s-base-content\/5:hover{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.05))}.hover\:border-s-base-content\/50:hover{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.5))}.hover\:border-s-base-content\/60:hover{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.6))}.hover\:border-s-base-content\/70:hover{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.7))}.hover\:border-s-base-content\/75:hover{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.75))}.hover\:border-s-base-content\/80:hover{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.8))}.hover\:border-s-base-content\/90:hover{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.9))}.hover\:border-s-base-content\/95:hover{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.95))}.hover\:border-s-error:hover{border-inline-start-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:border-s-error-content:hover{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:border-s-error-content\/0:hover{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0))}.hover\:border-s-error-content\/10:hover{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.1))}.hover\:border-s-error-content\/100:hover{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:border-s-error-content\/20:hover{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.2))}.hover\:border-s-error-content\/25:hover{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.25))}.hover\:border-s-error-content\/30:hover{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.3))}.hover\:border-s-error-content\/40:hover{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.4))}.hover\:border-s-error-content\/5:hover{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.05))}.hover\:border-s-error-content\/50:hover{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.5))}.hover\:border-s-error-content\/60:hover{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.6))}.hover\:border-s-error-content\/70:hover{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.7))}.hover\:border-s-error-content\/75:hover{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.75))}.hover\:border-s-error-content\/80:hover{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.8))}.hover\:border-s-error-content\/90:hover{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.9))}.hover\:border-s-error-content\/95:hover{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.95))}.hover\:border-s-error\/0:hover{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0))}.hover\:border-s-error\/10:hover{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.1))}.hover\:border-s-error\/100:hover{border-inline-start-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:border-s-error\/20:hover{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.2))}.hover\:border-s-error\/25:hover{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.25))}.hover\:border-s-error\/30:hover{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.3))}.hover\:border-s-error\/40:hover{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.4))}.hover\:border-s-error\/5:hover{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.05))}.hover\:border-s-error\/50:hover{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.5))}.hover\:border-s-error\/60:hover{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.6))}.hover\:border-s-error\/70:hover{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.7))}.hover\:border-s-error\/75:hover{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.75))}.hover\:border-s-error\/80:hover{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.8))}.hover\:border-s-error\/90:hover{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.9))}.hover\:border-s-error\/95:hover{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.95))}.hover\:border-s-info:hover{border-inline-start-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:border-s-info-content:hover{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:border-s-info-content\/0:hover{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0))}.hover\:border-s-info-content\/10:hover{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.1))}.hover\:border-s-info-content\/100:hover{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:border-s-info-content\/20:hover{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.2))}.hover\:border-s-info-content\/25:hover{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.25))}.hover\:border-s-info-content\/30:hover{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.3))}.hover\:border-s-info-content\/40:hover{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.4))}.hover\:border-s-info-content\/5:hover{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.05))}.hover\:border-s-info-content\/50:hover{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.5))}.hover\:border-s-info-content\/60:hover{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.6))}.hover\:border-s-info-content\/70:hover{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.7))}.hover\:border-s-info-content\/75:hover{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.75))}.hover\:border-s-info-content\/80:hover{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.8))}.hover\:border-s-info-content\/90:hover{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.9))}.hover\:border-s-info-content\/95:hover{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.95))}.hover\:border-s-info\/0:hover{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0))}.hover\:border-s-info\/10:hover{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.1))}.hover\:border-s-info\/100:hover{border-inline-start-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:border-s-info\/20:hover{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.2))}.hover\:border-s-info\/25:hover{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.25))}.hover\:border-s-info\/30:hover{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.3))}.hover\:border-s-info\/40:hover{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.4))}.hover\:border-s-info\/5:hover{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.05))}.hover\:border-s-info\/50:hover{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.5))}.hover\:border-s-info\/60:hover{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.6))}.hover\:border-s-info\/70:hover{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.7))}.hover\:border-s-info\/75:hover{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.75))}.hover\:border-s-info\/80:hover{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.8))}.hover\:border-s-info\/90:hover{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.9))}.hover\:border-s-info\/95:hover{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.95))}.hover\:border-s-success:hover{border-inline-start-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:border-s-success-content:hover{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:border-s-success-content\/0:hover{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0))}.hover\:border-s-success-content\/10:hover{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.1))}.hover\:border-s-success-content\/100:hover{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:border-s-success-content\/20:hover{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.2))}.hover\:border-s-success-content\/25:hover{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.25))}.hover\:border-s-success-content\/30:hover{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.3))}.hover\:border-s-success-content\/40:hover{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.4))}.hover\:border-s-success-content\/5:hover{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.05))}.hover\:border-s-success-content\/50:hover{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.5))}.hover\:border-s-success-content\/60:hover{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.6))}.hover\:border-s-success-content\/70:hover{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.7))}.hover\:border-s-success-content\/75:hover{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.75))}.hover\:border-s-success-content\/80:hover{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.8))}.hover\:border-s-success-content\/90:hover{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.9))}.hover\:border-s-success-content\/95:hover{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.95))}.hover\:border-s-success\/0:hover{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0))}.hover\:border-s-success\/10:hover{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.1))}.hover\:border-s-success\/100:hover{border-inline-start-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:border-s-success\/20:hover{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.2))}.hover\:border-s-success\/25:hover{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.25))}.hover\:border-s-success\/30:hover{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.3))}.hover\:border-s-success\/40:hover{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.4))}.hover\:border-s-success\/5:hover{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.05))}.hover\:border-s-success\/50:hover{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.5))}.hover\:border-s-success\/60:hover{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.6))}.hover\:border-s-success\/70:hover{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.7))}.hover\:border-s-success\/75:hover{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.75))}.hover\:border-s-success\/80:hover{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.8))}.hover\:border-s-success\/90:hover{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.9))}.hover\:border-s-success\/95:hover{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.95))}.hover\:border-s-warning:hover{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:border-s-warning-content:hover{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:border-s-warning-content\/0:hover{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0))}.hover\:border-s-warning-content\/10:hover{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.1))}.hover\:border-s-warning-content\/100:hover{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:border-s-warning-content\/20:hover{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.2))}.hover\:border-s-warning-content\/25:hover{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.25))}.hover\:border-s-warning-content\/30:hover{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.3))}.hover\:border-s-warning-content\/40:hover{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.4))}.hover\:border-s-warning-content\/5:hover{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.05))}.hover\:border-s-warning-content\/50:hover{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.5))}.hover\:border-s-warning-content\/60:hover{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.6))}.hover\:border-s-warning-content\/70:hover{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.7))}.hover\:border-s-warning-content\/75:hover{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.75))}.hover\:border-s-warning-content\/80:hover{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.8))}.hover\:border-s-warning-content\/90:hover{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.9))}.hover\:border-s-warning-content\/95:hover{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.95))}.hover\:border-s-warning\/0:hover{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0))}.hover\:border-s-warning\/10:hover{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.1))}.hover\:border-s-warning\/100:hover{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:border-s-warning\/20:hover{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.2))}.hover\:border-s-warning\/25:hover{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.25))}.hover\:border-s-warning\/30:hover{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.3))}.hover\:border-s-warning\/40:hover{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.4))}.hover\:border-s-warning\/5:hover{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.05))}.hover\:border-s-warning\/50:hover{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.5))}.hover\:border-s-warning\/60:hover{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.6))}.hover\:border-s-warning\/70:hover{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.7))}.hover\:border-s-warning\/75:hover{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.75))}.hover\:border-s-warning\/80:hover{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.8))}.hover\:border-s-warning\/90:hover{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.9))}.hover\:border-s-warning\/95:hover{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.95))}.hover\:border-t-base-100:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:border-t-base-100\/0:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/0))}.hover\:border-t-base-100\/10:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.1))}.hover\:border-t-base-100\/100:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:border-t-base-100\/20:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.2))}.hover\:border-t-base-100\/25:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.25))}.hover\:border-t-base-100\/30:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.3))}.hover\:border-t-base-100\/40:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.4))}.hover\:border-t-base-100\/5:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.05))}.hover\:border-t-base-100\/50:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.5))}.hover\:border-t-base-100\/60:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.6))}.hover\:border-t-base-100\/70:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.7))}.hover\:border-t-base-100\/75:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.75))}.hover\:border-t-base-100\/80:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.8))}.hover\:border-t-base-100\/90:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.9))}.hover\:border-t-base-100\/95:hover{border-top-color:var(--fallback-b1,oklch(var(--b1)/.95))}.hover\:border-t-base-200:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:border-t-base-200\/0:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/0))}.hover\:border-t-base-200\/10:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.1))}.hover\:border-t-base-200\/100:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:border-t-base-200\/20:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.2))}.hover\:border-t-base-200\/25:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.25))}.hover\:border-t-base-200\/30:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.3))}.hover\:border-t-base-200\/40:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.4))}.hover\:border-t-base-200\/5:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.05))}.hover\:border-t-base-200\/50:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.5))}.hover\:border-t-base-200\/60:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.6))}.hover\:border-t-base-200\/70:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.7))}.hover\:border-t-base-200\/75:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.75))}.hover\:border-t-base-200\/80:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.8))}.hover\:border-t-base-200\/90:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.9))}.hover\:border-t-base-200\/95:hover{border-top-color:var(--fallback-b2,oklch(var(--b2)/.95))}.hover\:border-t-base-300:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:border-t-base-300\/0:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/0))}.hover\:border-t-base-300\/10:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.1))}.hover\:border-t-base-300\/100:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:border-t-base-300\/20:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.2))}.hover\:border-t-base-300\/25:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.25))}.hover\:border-t-base-300\/30:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.3))}.hover\:border-t-base-300\/40:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.4))}.hover\:border-t-base-300\/5:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.05))}.hover\:border-t-base-300\/50:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.5))}.hover\:border-t-base-300\/60:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.6))}.hover\:border-t-base-300\/70:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.7))}.hover\:border-t-base-300\/75:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.75))}.hover\:border-t-base-300\/80:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.8))}.hover\:border-t-base-300\/90:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.9))}.hover\:border-t-base-300\/95:hover{border-top-color:var(--fallback-b3,oklch(var(--b3)/.95))}.hover\:border-t-base-content:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:border-t-base-content\/0:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/0))}.hover\:border-t-base-content\/10:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.1))}.hover\:border-t-base-content\/100:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:border-t-base-content\/20:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.2))}.hover\:border-t-base-content\/25:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.25))}.hover\:border-t-base-content\/30:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.3))}.hover\:border-t-base-content\/40:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.4))}.hover\:border-t-base-content\/5:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.05))}.hover\:border-t-base-content\/50:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.5))}.hover\:border-t-base-content\/60:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.6))}.hover\:border-t-base-content\/70:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.7))}.hover\:border-t-base-content\/75:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.75))}.hover\:border-t-base-content\/80:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.8))}.hover\:border-t-base-content\/90:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.9))}.hover\:border-t-base-content\/95:hover{border-top-color:var(--fallback-bc,oklch(var(--bc)/.95))}.hover\:border-t-error:hover{border-top-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:border-t-error-content:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:border-t-error-content\/0:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/0))}.hover\:border-t-error-content\/10:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.1))}.hover\:border-t-error-content\/100:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:border-t-error-content\/20:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.2))}.hover\:border-t-error-content\/25:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.25))}.hover\:border-t-error-content\/30:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.3))}.hover\:border-t-error-content\/40:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.4))}.hover\:border-t-error-content\/5:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.05))}.hover\:border-t-error-content\/50:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.5))}.hover\:border-t-error-content\/60:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.6))}.hover\:border-t-error-content\/70:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.7))}.hover\:border-t-error-content\/75:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.75))}.hover\:border-t-error-content\/80:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.8))}.hover\:border-t-error-content\/90:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.9))}.hover\:border-t-error-content\/95:hover{border-top-color:var(--fallback-erc,oklch(var(--erc)/.95))}.hover\:border-t-error\/0:hover{border-top-color:var(--fallback-er,oklch(var(--er)/0))}.hover\:border-t-error\/10:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.1))}.hover\:border-t-error\/100:hover{border-top-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:border-t-error\/20:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.2))}.hover\:border-t-error\/25:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.25))}.hover\:border-t-error\/30:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.3))}.hover\:border-t-error\/40:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.4))}.hover\:border-t-error\/5:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.05))}.hover\:border-t-error\/50:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.5))}.hover\:border-t-error\/60:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.6))}.hover\:border-t-error\/70:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.7))}.hover\:border-t-error\/75:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.75))}.hover\:border-t-error\/80:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.8))}.hover\:border-t-error\/90:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.9))}.hover\:border-t-error\/95:hover{border-top-color:var(--fallback-er,oklch(var(--er)/.95))}.hover\:border-t-info:hover{border-top-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:border-t-info-content:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:border-t-info-content\/0:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/0))}.hover\:border-t-info-content\/10:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.1))}.hover\:border-t-info-content\/100:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:border-t-info-content\/20:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.2))}.hover\:border-t-info-content\/25:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.25))}.hover\:border-t-info-content\/30:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.3))}.hover\:border-t-info-content\/40:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.4))}.hover\:border-t-info-content\/5:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.05))}.hover\:border-t-info-content\/50:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.5))}.hover\:border-t-info-content\/60:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.6))}.hover\:border-t-info-content\/70:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.7))}.hover\:border-t-info-content\/75:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.75))}.hover\:border-t-info-content\/80:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.8))}.hover\:border-t-info-content\/90:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.9))}.hover\:border-t-info-content\/95:hover{border-top-color:var(--fallback-inc,oklch(var(--inc)/.95))}.hover\:border-t-info\/0:hover{border-top-color:var(--fallback-in,oklch(var(--in)/0))}.hover\:border-t-info\/10:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.1))}.hover\:border-t-info\/100:hover{border-top-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:border-t-info\/20:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.2))}.hover\:border-t-info\/25:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.25))}.hover\:border-t-info\/30:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.3))}.hover\:border-t-info\/40:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.4))}.hover\:border-t-info\/5:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.05))}.hover\:border-t-info\/50:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.5))}.hover\:border-t-info\/60:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.6))}.hover\:border-t-info\/70:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.7))}.hover\:border-t-info\/75:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.75))}.hover\:border-t-info\/80:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.8))}.hover\:border-t-info\/90:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.9))}.hover\:border-t-info\/95:hover{border-top-color:var(--fallback-in,oklch(var(--in)/.95))}.hover\:border-t-success:hover{border-top-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:border-t-success-content:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:border-t-success-content\/0:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/0))}.hover\:border-t-success-content\/10:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.1))}.hover\:border-t-success-content\/100:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:border-t-success-content\/20:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.2))}.hover\:border-t-success-content\/25:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.25))}.hover\:border-t-success-content\/30:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.3))}.hover\:border-t-success-content\/40:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.4))}.hover\:border-t-success-content\/5:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.05))}.hover\:border-t-success-content\/50:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.5))}.hover\:border-t-success-content\/60:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.6))}.hover\:border-t-success-content\/70:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.7))}.hover\:border-t-success-content\/75:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.75))}.hover\:border-t-success-content\/80:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.8))}.hover\:border-t-success-content\/90:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.9))}.hover\:border-t-success-content\/95:hover{border-top-color:var(--fallback-suc,oklch(var(--suc)/.95))}.hover\:border-t-success\/0:hover{border-top-color:var(--fallback-su,oklch(var(--su)/0))}.hover\:border-t-success\/10:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.1))}.hover\:border-t-success\/100:hover{border-top-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:border-t-success\/20:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.2))}.hover\:border-t-success\/25:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.25))}.hover\:border-t-success\/30:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.3))}.hover\:border-t-success\/40:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.4))}.hover\:border-t-success\/5:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.05))}.hover\:border-t-success\/50:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.5))}.hover\:border-t-success\/60:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.6))}.hover\:border-t-success\/70:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.7))}.hover\:border-t-success\/75:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.75))}.hover\:border-t-success\/80:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.8))}.hover\:border-t-success\/90:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.9))}.hover\:border-t-success\/95:hover{border-top-color:var(--fallback-su,oklch(var(--su)/.95))}.hover\:border-t-warning:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:border-t-warning-content:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:border-t-warning-content\/0:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/0))}.hover\:border-t-warning-content\/10:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.1))}.hover\:border-t-warning-content\/100:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:border-t-warning-content\/20:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.2))}.hover\:border-t-warning-content\/25:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.25))}.hover\:border-t-warning-content\/30:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.3))}.hover\:border-t-warning-content\/40:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.4))}.hover\:border-t-warning-content\/5:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.05))}.hover\:border-t-warning-content\/50:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.5))}.hover\:border-t-warning-content\/60:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.6))}.hover\:border-t-warning-content\/70:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.7))}.hover\:border-t-warning-content\/75:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.75))}.hover\:border-t-warning-content\/80:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.8))}.hover\:border-t-warning-content\/90:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.9))}.hover\:border-t-warning-content\/95:hover{border-top-color:var(--fallback-wac,oklch(var(--wac)/.95))}.hover\:border-t-warning\/0:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/0))}.hover\:border-t-warning\/10:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.1))}.hover\:border-t-warning\/100:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:border-t-warning\/20:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.2))}.hover\:border-t-warning\/25:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.25))}.hover\:border-t-warning\/30:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.3))}.hover\:border-t-warning\/40:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.4))}.hover\:border-t-warning\/5:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.05))}.hover\:border-t-warning\/50:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.5))}.hover\:border-t-warning\/60:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.6))}.hover\:border-t-warning\/70:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.7))}.hover\:border-t-warning\/75:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.75))}.hover\:border-t-warning\/80:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.8))}.hover\:border-t-warning\/90:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.9))}.hover\:border-t-warning\/95:hover{border-top-color:var(--fallback-wa,oklch(var(--wa)/.95))}.hover\:bg-accent:hover{background-color:var(--fallback-a,oklch(var(--a)/1))}.hover\:bg-accent-content:hover{background-color:var(--fallback-ac,oklch(var(--ac)/1))}.hover\:bg-accent-content\/0:hover{background-color:var(--fallback-ac,oklch(var(--ac)/0))}.hover\:bg-accent-content\/10:hover{background-color:var(--fallback-ac,oklch(var(--ac)/.1))}.hover\:bg-accent-content\/100:hover{background-color:var(--fallback-ac,oklch(var(--ac)/1))}.hover\:bg-accent-content\/20:hover{background-color:var(--fallback-ac,oklch(var(--ac)/.2))}.hover\:bg-accent-content\/25:hover{background-color:var(--fallback-ac,oklch(var(--ac)/.25))}.hover\:bg-accent-content\/30:hover{background-color:var(--fallback-ac,oklch(var(--ac)/.3))}.hover\:bg-accent-content\/40:hover{background-color:var(--fallback-ac,oklch(var(--ac)/.4))}.hover\:bg-accent-content\/5:hover{background-color:var(--fallback-ac,oklch(var(--ac)/.05))}.hover\:bg-accent-content\/50:hover{background-color:var(--fallback-ac,oklch(var(--ac)/.5))}.hover\:bg-accent-content\/60:hover{background-color:var(--fallback-ac,oklch(var(--ac)/.6))}.hover\:bg-accent-content\/70:hover{background-color:var(--fallback-ac,oklch(var(--ac)/.7))}.hover\:bg-accent-content\/75:hover{background-color:var(--fallback-ac,oklch(var(--ac)/.75))}.hover\:bg-accent-content\/80:hover{background-color:var(--fallback-ac,oklch(var(--ac)/.8))}.hover\:bg-accent-content\/90:hover{background-color:var(--fallback-ac,oklch(var(--ac)/.9))}.hover\:bg-accent-content\/95:hover{background-color:var(--fallback-ac,oklch(var(--ac)/.95))}.hover\:bg-accent\/0:hover{background-color:var(--fallback-a,oklch(var(--a)/0))}.hover\:bg-accent\/10:hover{background-color:var(--fallback-a,oklch(var(--a)/.1))}.hover\:bg-accent\/100:hover{background-color:var(--fallback-a,oklch(var(--a)/1))}.hover\:bg-accent\/20:hover{background-color:var(--fallback-a,oklch(var(--a)/.2))}.hover\:bg-accent\/25:hover{background-color:var(--fallback-a,oklch(var(--a)/.25))}.hover\:bg-accent\/30:hover{background-color:var(--fallback-a,oklch(var(--a)/.3))}.hover\:bg-accent\/40:hover{background-color:var(--fallback-a,oklch(var(--a)/.4))}.hover\:bg-accent\/5:hover{background-color:var(--fallback-a,oklch(var(--a)/.05))}.hover\:bg-accent\/50:hover{background-color:var(--fallback-a,oklch(var(--a)/.5))}.hover\:bg-accent\/60:hover{background-color:var(--fallback-a,oklch(var(--a)/.6))}.hover\:bg-accent\/70:hover{background-color:var(--fallback-a,oklch(var(--a)/.7))}.hover\:bg-accent\/75:hover{background-color:var(--fallback-a,oklch(var(--a)/.75))}.hover\:bg-accent\/80:hover{background-color:var(--fallback-a,oklch(var(--a)/.8))}.hover\:bg-accent\/90:hover{background-color:var(--fallback-a,oklch(var(--a)/.9))}.hover\:bg-accent\/95:hover{background-color:var(--fallback-a,oklch(var(--a)/.95))}.hover\:bg-base-100:hover{background-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:bg-base-100\/0:hover{background-color:var(--fallback-b1,oklch(var(--b1)/0))}.hover\:bg-base-100\/10:hover{background-color:var(--fallback-b1,oklch(var(--b1)/.1))}.hover\:bg-base-100\/100:hover{background-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:bg-base-100\/20:hover{background-color:var(--fallback-b1,oklch(var(--b1)/.2))}.hover\:bg-base-100\/25:hover{background-color:var(--fallback-b1,oklch(var(--b1)/.25))}.hover\:bg-base-100\/30:hover{background-color:var(--fallback-b1,oklch(var(--b1)/.3))}.hover\:bg-base-100\/40:hover{background-color:var(--fallback-b1,oklch(var(--b1)/.4))}.hover\:bg-base-100\/5:hover{background-color:var(--fallback-b1,oklch(var(--b1)/.05))}.hover\:bg-base-100\/50:hover{background-color:var(--fallback-b1,oklch(var(--b1)/.5))}.hover\:bg-base-100\/60:hover{background-color:var(--fallback-b1,oklch(var(--b1)/.6))}.hover\:bg-base-100\/70:hover{background-color:var(--fallback-b1,oklch(var(--b1)/.7))}.hover\:bg-base-100\/75:hover{background-color:var(--fallback-b1,oklch(var(--b1)/.75))}.hover\:bg-base-100\/80:hover{background-color:var(--fallback-b1,oklch(var(--b1)/.8))}.hover\:bg-base-100\/90:hover{background-color:var(--fallback-b1,oklch(var(--b1)/.9))}.hover\:bg-base-100\/95:hover{background-color:var(--fallback-b1,oklch(var(--b1)/.95))}.hover\:bg-base-200:hover{background-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:bg-base-200\/0:hover{background-color:var(--fallback-b2,oklch(var(--b2)/0))}.hover\:bg-base-200\/10:hover{background-color:var(--fallback-b2,oklch(var(--b2)/.1))}.hover\:bg-base-200\/100:hover{background-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:bg-base-200\/20:hover{background-color:var(--fallback-b2,oklch(var(--b2)/.2))}.hover\:bg-base-200\/25:hover{background-color:var(--fallback-b2,oklch(var(--b2)/.25))}.hover\:bg-base-200\/30:hover{background-color:var(--fallback-b2,oklch(var(--b2)/.3))}.hover\:bg-base-200\/40:hover{background-color:var(--fallback-b2,oklch(var(--b2)/.4))}.hover\:bg-base-200\/5:hover{background-color:var(--fallback-b2,oklch(var(--b2)/.05))}.hover\:bg-base-200\/50:hover{background-color:var(--fallback-b2,oklch(var(--b2)/.5))}.hover\:bg-base-200\/60:hover{background-color:var(--fallback-b2,oklch(var(--b2)/.6))}.hover\:bg-base-200\/70:hover{background-color:var(--fallback-b2,oklch(var(--b2)/.7))}.hover\:bg-base-200\/75:hover{background-color:var(--fallback-b2,oklch(var(--b2)/.75))}.hover\:bg-base-200\/80:hover{background-color:var(--fallback-b2,oklch(var(--b2)/.8))}.hover\:bg-base-200\/90:hover{background-color:var(--fallback-b2,oklch(var(--b2)/.9))}.hover\:bg-base-200\/95:hover{background-color:var(--fallback-b2,oklch(var(--b2)/.95))}.hover\:bg-base-300:hover{background-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:bg-base-300\/0:hover{background-color:var(--fallback-b3,oklch(var(--b3)/0))}.hover\:bg-base-300\/10:hover{background-color:var(--fallback-b3,oklch(var(--b3)/.1))}.hover\:bg-base-300\/100:hover{background-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:bg-base-300\/20:hover{background-color:var(--fallback-b3,oklch(var(--b3)/.2))}.hover\:bg-base-300\/25:hover{background-color:var(--fallback-b3,oklch(var(--b3)/.25))}.hover\:bg-base-300\/30:hover{background-color:var(--fallback-b3,oklch(var(--b3)/.3))}.hover\:bg-base-300\/40:hover{background-color:var(--fallback-b3,oklch(var(--b3)/.4))}.hover\:bg-base-300\/5:hover{background-color:var(--fallback-b3,oklch(var(--b3)/.05))}.hover\:bg-base-300\/50:hover{background-color:var(--fallback-b3,oklch(var(--b3)/.5))}.hover\:bg-base-300\/60:hover{background-color:var(--fallback-b3,oklch(var(--b3)/.6))}.hover\:bg-base-300\/70:hover{background-color:var(--fallback-b3,oklch(var(--b3)/.7))}.hover\:bg-base-300\/75:hover{background-color:var(--fallback-b3,oklch(var(--b3)/.75))}.hover\:bg-base-300\/80:hover{background-color:var(--fallback-b3,oklch(var(--b3)/.8))}.hover\:bg-base-300\/90:hover{background-color:var(--fallback-b3,oklch(var(--b3)/.9))}.hover\:bg-base-300\/95:hover{background-color:var(--fallback-b3,oklch(var(--b3)/.95))}.hover\:bg-base-content:hover{background-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:bg-base-content\/0:hover{background-color:var(--fallback-bc,oklch(var(--bc)/0))}.hover\:bg-base-content\/10:hover{background-color:var(--fallback-bc,oklch(var(--bc)/.1))}.hover\:bg-base-content\/100:hover{background-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:bg-base-content\/20:hover{background-color:var(--fallback-bc,oklch(var(--bc)/.2))}.hover\:bg-base-content\/25:hover{background-color:var(--fallback-bc,oklch(var(--bc)/.25))}.hover\:bg-base-content\/30:hover{background-color:var(--fallback-bc,oklch(var(--bc)/.3))}.hover\:bg-base-content\/40:hover{background-color:var(--fallback-bc,oklch(var(--bc)/.4))}.hover\:bg-base-content\/5:hover{background-color:var(--fallback-bc,oklch(var(--bc)/.05))}.hover\:bg-base-content\/50:hover{background-color:var(--fallback-bc,oklch(var(--bc)/.5))}.hover\:bg-base-content\/60:hover{background-color:var(--fallback-bc,oklch(var(--bc)/.6))}.hover\:bg-base-content\/70:hover{background-color:var(--fallback-bc,oklch(var(--bc)/.7))}.hover\:bg-base-content\/75:hover{background-color:var(--fallback-bc,oklch(var(--bc)/.75))}.hover\:bg-base-content\/80:hover{background-color:var(--fallback-bc,oklch(var(--bc)/.8))}.hover\:bg-base-content\/90:hover{background-color:var(--fallback-bc,oklch(var(--bc)/.9))}.hover\:bg-base-content\/95:hover{background-color:var(--fallback-bc,oklch(var(--bc)/.95))}.hover\:bg-error:hover{background-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:bg-error-content:hover{background-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:bg-error-content\/0:hover{background-color:var(--fallback-erc,oklch(var(--erc)/0))}.hover\:bg-error-content\/10:hover{background-color:var(--fallback-erc,oklch(var(--erc)/.1))}.hover\:bg-error-content\/100:hover{background-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:bg-error-content\/20:hover{background-color:var(--fallback-erc,oklch(var(--erc)/.2))}.hover\:bg-error-content\/25:hover{background-color:var(--fallback-erc,oklch(var(--erc)/.25))}.hover\:bg-error-content\/30:hover{background-color:var(--fallback-erc,oklch(var(--erc)/.3))}.hover\:bg-error-content\/40:hover{background-color:var(--fallback-erc,oklch(var(--erc)/.4))}.hover\:bg-error-content\/5:hover{background-color:var(--fallback-erc,oklch(var(--erc)/.05))}.hover\:bg-error-content\/50:hover{background-color:var(--fallback-erc,oklch(var(--erc)/.5))}.hover\:bg-error-content\/60:hover{background-color:var(--fallback-erc,oklch(var(--erc)/.6))}.hover\:bg-error-content\/70:hover{background-color:var(--fallback-erc,oklch(var(--erc)/.7))}.hover\:bg-error-content\/75:hover{background-color:var(--fallback-erc,oklch(var(--erc)/.75))}.hover\:bg-error-content\/80:hover{background-color:var(--fallback-erc,oklch(var(--erc)/.8))}.hover\:bg-error-content\/90:hover{background-color:var(--fallback-erc,oklch(var(--erc)/.9))}.hover\:bg-error-content\/95:hover{background-color:var(--fallback-erc,oklch(var(--erc)/.95))}.hover\:bg-error\/0:hover{background-color:var(--fallback-er,oklch(var(--er)/0))}.hover\:bg-error\/10:hover{background-color:var(--fallback-er,oklch(var(--er)/.1))}.hover\:bg-error\/100:hover{background-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:bg-error\/20:hover{background-color:var(--fallback-er,oklch(var(--er)/.2))}.hover\:bg-error\/25:hover{background-color:var(--fallback-er,oklch(var(--er)/.25))}.hover\:bg-error\/30:hover{background-color:var(--fallback-er,oklch(var(--er)/.3))}.hover\:bg-error\/40:hover{background-color:var(--fallback-er,oklch(var(--er)/.4))}.hover\:bg-error\/5:hover{background-color:var(--fallback-er,oklch(var(--er)/.05))}.hover\:bg-error\/50:hover{background-color:var(--fallback-er,oklch(var(--er)/.5))}.hover\:bg-error\/60:hover{background-color:var(--fallback-er,oklch(var(--er)/.6))}.hover\:bg-error\/70:hover{background-color:var(--fallback-er,oklch(var(--er)/.7))}.hover\:bg-error\/75:hover{background-color:var(--fallback-er,oklch(var(--er)/.75))}.hover\:bg-error\/80:hover{background-color:var(--fallback-er,oklch(var(--er)/.8))}.hover\:bg-error\/90:hover{background-color:var(--fallback-er,oklch(var(--er)/.9))}.hover\:bg-error\/95:hover{background-color:var(--fallback-er,oklch(var(--er)/.95))}.hover\:bg-info:hover{background-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:bg-info-content:hover{background-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:bg-info-content\/0:hover{background-color:var(--fallback-inc,oklch(var(--inc)/0))}.hover\:bg-info-content\/10:hover{background-color:var(--fallback-inc,oklch(var(--inc)/.1))}.hover\:bg-info-content\/100:hover{background-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:bg-info-content\/20:hover{background-color:var(--fallback-inc,oklch(var(--inc)/.2))}.hover\:bg-info-content\/25:hover{background-color:var(--fallback-inc,oklch(var(--inc)/.25))}.hover\:bg-info-content\/30:hover{background-color:var(--fallback-inc,oklch(var(--inc)/.3))}.hover\:bg-info-content\/40:hover{background-color:var(--fallback-inc,oklch(var(--inc)/.4))}.hover\:bg-info-content\/5:hover{background-color:var(--fallback-inc,oklch(var(--inc)/.05))}.hover\:bg-info-content\/50:hover{background-color:var(--fallback-inc,oklch(var(--inc)/.5))}.hover\:bg-info-content\/60:hover{background-color:var(--fallback-inc,oklch(var(--inc)/.6))}.hover\:bg-info-content\/70:hover{background-color:var(--fallback-inc,oklch(var(--inc)/.7))}.hover\:bg-info-content\/75:hover{background-color:var(--fallback-inc,oklch(var(--inc)/.75))}.hover\:bg-info-content\/80:hover{background-color:var(--fallback-inc,oklch(var(--inc)/.8))}.hover\:bg-info-content\/90:hover{background-color:var(--fallback-inc,oklch(var(--inc)/.9))}.hover\:bg-info-content\/95:hover{background-color:var(--fallback-inc,oklch(var(--inc)/.95))}.hover\:bg-info\/0:hover{background-color:var(--fallback-in,oklch(var(--in)/0))}.hover\:bg-info\/10:hover{background-color:var(--fallback-in,oklch(var(--in)/.1))}.hover\:bg-info\/100:hover{background-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:bg-info\/20:hover{background-color:var(--fallback-in,oklch(var(--in)/.2))}.hover\:bg-info\/25:hover{background-color:var(--fallback-in,oklch(var(--in)/.25))}.hover\:bg-info\/30:hover{background-color:var(--fallback-in,oklch(var(--in)/.3))}.hover\:bg-info\/40:hover{background-color:var(--fallback-in,oklch(var(--in)/.4))}.hover\:bg-info\/5:hover{background-color:var(--fallback-in,oklch(var(--in)/.05))}.hover\:bg-info\/50:hover{background-color:var(--fallback-in,oklch(var(--in)/.5))}.hover\:bg-info\/60:hover{background-color:var(--fallback-in,oklch(var(--in)/.6))}.hover\:bg-info\/70:hover{background-color:var(--fallback-in,oklch(var(--in)/.7))}.hover\:bg-info\/75:hover{background-color:var(--fallback-in,oklch(var(--in)/.75))}.hover\:bg-info\/80:hover{background-color:var(--fallback-in,oklch(var(--in)/.8))}.hover\:bg-info\/90:hover{background-color:var(--fallback-in,oklch(var(--in)/.9))}.hover\:bg-info\/95:hover{background-color:var(--fallback-in,oklch(var(--in)/.95))}.hover\:bg-neutral:hover{background-color:var(--fallback-n,oklch(var(--n)/1))}.hover\:bg-neutral-content:hover{background-color:var(--fallback-nc,oklch(var(--nc)/1))}.hover\:bg-neutral-content\/0:hover{background-color:var(--fallback-nc,oklch(var(--nc)/0))}.hover\:bg-neutral-content\/10:hover{background-color:var(--fallback-nc,oklch(var(--nc)/.1))}.hover\:bg-neutral-content\/100:hover{background-color:var(--fallback-nc,oklch(var(--nc)/1))}.hover\:bg-neutral-content\/20:hover{background-color:var(--fallback-nc,oklch(var(--nc)/.2))}.hover\:bg-neutral-content\/25:hover{background-color:var(--fallback-nc,oklch(var(--nc)/.25))}.hover\:bg-neutral-content\/30:hover{background-color:var(--fallback-nc,oklch(var(--nc)/.3))}.hover\:bg-neutral-content\/40:hover{background-color:var(--fallback-nc,oklch(var(--nc)/.4))}.hover\:bg-neutral-content\/5:hover{background-color:var(--fallback-nc,oklch(var(--nc)/.05))}.hover\:bg-neutral-content\/50:hover{background-color:var(--fallback-nc,oklch(var(--nc)/.5))}.hover\:bg-neutral-content\/60:hover{background-color:var(--fallback-nc,oklch(var(--nc)/.6))}.hover\:bg-neutral-content\/70:hover{background-color:var(--fallback-nc,oklch(var(--nc)/.7))}.hover\:bg-neutral-content\/75:hover{background-color:var(--fallback-nc,oklch(var(--nc)/.75))}.hover\:bg-neutral-content\/80:hover{background-color:var(--fallback-nc,oklch(var(--nc)/.8))}.hover\:bg-neutral-content\/90:hover{background-color:var(--fallback-nc,oklch(var(--nc)/.9))}.hover\:bg-neutral-content\/95:hover{background-color:var(--fallback-nc,oklch(var(--nc)/.95))}.hover\:bg-neutral\/0:hover{background-color:var(--fallback-n,oklch(var(--n)/0))}.hover\:bg-neutral\/10:hover{background-color:var(--fallback-n,oklch(var(--n)/.1))}.hover\:bg-neutral\/100:hover{background-color:var(--fallback-n,oklch(var(--n)/1))}.hover\:bg-neutral\/20:hover{background-color:var(--fallback-n,oklch(var(--n)/.2))}.hover\:bg-neutral\/25:hover{background-color:var(--fallback-n,oklch(var(--n)/.25))}.hover\:bg-neutral\/30:hover{background-color:var(--fallback-n,oklch(var(--n)/.3))}.hover\:bg-neutral\/40:hover{background-color:var(--fallback-n,oklch(var(--n)/.4))}.hover\:bg-neutral\/5:hover{background-color:var(--fallback-n,oklch(var(--n)/.05))}.hover\:bg-neutral\/50:hover{background-color:var(--fallback-n,oklch(var(--n)/.5))}.hover\:bg-neutral\/60:hover{background-color:var(--fallback-n,oklch(var(--n)/.6))}.hover\:bg-neutral\/70:hover{background-color:var(--fallback-n,oklch(var(--n)/.7))}.hover\:bg-neutral\/75:hover{background-color:var(--fallback-n,oklch(var(--n)/.75))}.hover\:bg-neutral\/80:hover{background-color:var(--fallback-n,oklch(var(--n)/.8))}.hover\:bg-neutral\/90:hover{background-color:var(--fallback-n,oklch(var(--n)/.9))}.hover\:bg-neutral\/95:hover{background-color:var(--fallback-n,oklch(var(--n)/.95))}.hover\:bg-primary:hover{background-color:var(--fallback-p,oklch(var(--p)/1))}.hover\:bg-primary-content:hover{background-color:var(--fallback-pc,oklch(var(--pc)/1))}.hover\:bg-primary-content\/0:hover{background-color:var(--fallback-pc,oklch(var(--pc)/0))}.hover\:bg-primary-content\/10:hover{background-color:var(--fallback-pc,oklch(var(--pc)/.1))}.hover\:bg-primary-content\/100:hover{background-color:var(--fallback-pc,oklch(var(--pc)/1))}.hover\:bg-primary-content\/20:hover{background-color:var(--fallback-pc,oklch(var(--pc)/.2))}.hover\:bg-primary-content\/25:hover{background-color:var(--fallback-pc,oklch(var(--pc)/.25))}.hover\:bg-primary-content\/30:hover{background-color:var(--fallback-pc,oklch(var(--pc)/.3))}.hover\:bg-primary-content\/40:hover{background-color:var(--fallback-pc,oklch(var(--pc)/.4))}.hover\:bg-primary-content\/5:hover{background-color:var(--fallback-pc,oklch(var(--pc)/.05))}.hover\:bg-primary-content\/50:hover{background-color:var(--fallback-pc,oklch(var(--pc)/.5))}.hover\:bg-primary-content\/60:hover{background-color:var(--fallback-pc,oklch(var(--pc)/.6))}.hover\:bg-primary-content\/70:hover{background-color:var(--fallback-pc,oklch(var(--pc)/.7))}.hover\:bg-primary-content\/75:hover{background-color:var(--fallback-pc,oklch(var(--pc)/.75))}.hover\:bg-primary-content\/80:hover{background-color:var(--fallback-pc,oklch(var(--pc)/.8))}.hover\:bg-primary-content\/90:hover{background-color:var(--fallback-pc,oklch(var(--pc)/.9))}.hover\:bg-primary-content\/95:hover{background-color:var(--fallback-pc,oklch(var(--pc)/.95))}.hover\:bg-primary\/0:hover{background-color:var(--fallback-p,oklch(var(--p)/0))}.hover\:bg-primary\/10:hover{background-color:var(--fallback-p,oklch(var(--p)/.1))}.hover\:bg-primary\/100:hover{background-color:var(--fallback-p,oklch(var(--p)/1))}.hover\:bg-primary\/20:hover{background-color:var(--fallback-p,oklch(var(--p)/.2))}.hover\:bg-primary\/25:hover{background-color:var(--fallback-p,oklch(var(--p)/.25))}.hover\:bg-primary\/30:hover{background-color:var(--fallback-p,oklch(var(--p)/.3))}.hover\:bg-primary\/40:hover{background-color:var(--fallback-p,oklch(var(--p)/.4))}.hover\:bg-primary\/5:hover{background-color:var(--fallback-p,oklch(var(--p)/.05))}.hover\:bg-primary\/50:hover{background-color:var(--fallback-p,oklch(var(--p)/.5))}.hover\:bg-primary\/60:hover{background-color:var(--fallback-p,oklch(var(--p)/.6))}.hover\:bg-primary\/70:hover{background-color:var(--fallback-p,oklch(var(--p)/.7))}.hover\:bg-primary\/75:hover{background-color:var(--fallback-p,oklch(var(--p)/.75))}.hover\:bg-primary\/80:hover{background-color:var(--fallback-p,oklch(var(--p)/.8))}.hover\:bg-primary\/90:hover{background-color:var(--fallback-p,oklch(var(--p)/.9))}.hover\:bg-primary\/95:hover{background-color:var(--fallback-p,oklch(var(--p)/.95))}.hover\:bg-secondary:hover{background-color:var(--fallback-s,oklch(var(--s)/1))}.hover\:bg-secondary-content:hover{background-color:var(--fallback-sc,oklch(var(--sc)/1))}.hover\:bg-secondary-content\/0:hover{background-color:var(--fallback-sc,oklch(var(--sc)/0))}.hover\:bg-secondary-content\/10:hover{background-color:var(--fallback-sc,oklch(var(--sc)/.1))}.hover\:bg-secondary-content\/100:hover{background-color:var(--fallback-sc,oklch(var(--sc)/1))}.hover\:bg-secondary-content\/20:hover{background-color:var(--fallback-sc,oklch(var(--sc)/.2))}.hover\:bg-secondary-content\/25:hover{background-color:var(--fallback-sc,oklch(var(--sc)/.25))}.hover\:bg-secondary-content\/30:hover{background-color:var(--fallback-sc,oklch(var(--sc)/.3))}.hover\:bg-secondary-content\/40:hover{background-color:var(--fallback-sc,oklch(var(--sc)/.4))}.hover\:bg-secondary-content\/5:hover{background-color:var(--fallback-sc,oklch(var(--sc)/.05))}.hover\:bg-secondary-content\/50:hover{background-color:var(--fallback-sc,oklch(var(--sc)/.5))}.hover\:bg-secondary-content\/60:hover{background-color:var(--fallback-sc,oklch(var(--sc)/.6))}.hover\:bg-secondary-content\/70:hover{background-color:var(--fallback-sc,oklch(var(--sc)/.7))}.hover\:bg-secondary-content\/75:hover{background-color:var(--fallback-sc,oklch(var(--sc)/.75))}.hover\:bg-secondary-content\/80:hover{background-color:var(--fallback-sc,oklch(var(--sc)/.8))}.hover\:bg-secondary-content\/90:hover{background-color:var(--fallback-sc,oklch(var(--sc)/.9))}.hover\:bg-secondary-content\/95:hover{background-color:var(--fallback-sc,oklch(var(--sc)/.95))}.hover\:bg-secondary\/0:hover{background-color:var(--fallback-s,oklch(var(--s)/0))}.hover\:bg-secondary\/10:hover{background-color:var(--fallback-s,oklch(var(--s)/.1))}.hover\:bg-secondary\/100:hover{background-color:var(--fallback-s,oklch(var(--s)/1))}.hover\:bg-secondary\/20:hover{background-color:var(--fallback-s,oklch(var(--s)/.2))}.hover\:bg-secondary\/25:hover{background-color:var(--fallback-s,oklch(var(--s)/.25))}.hover\:bg-secondary\/30:hover{background-color:var(--fallback-s,oklch(var(--s)/.3))}.hover\:bg-secondary\/40:hover{background-color:var(--fallback-s,oklch(var(--s)/.4))}.hover\:bg-secondary\/5:hover{background-color:var(--fallback-s,oklch(var(--s)/.05))}.hover\:bg-secondary\/50:hover{background-color:var(--fallback-s,oklch(var(--s)/.5))}.hover\:bg-secondary\/60:hover{background-color:var(--fallback-s,oklch(var(--s)/.6))}.hover\:bg-secondary\/70:hover{background-color:var(--fallback-s,oklch(var(--s)/.7))}.hover\:bg-secondary\/75:hover{background-color:var(--fallback-s,oklch(var(--s)/.75))}.hover\:bg-secondary\/80:hover{background-color:var(--fallback-s,oklch(var(--s)/.8))}.hover\:bg-secondary\/90:hover{background-color:var(--fallback-s,oklch(var(--s)/.9))}.hover\:bg-secondary\/95:hover{background-color:var(--fallback-s,oklch(var(--s)/.95))}.hover\:bg-success:hover{background-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:bg-success-content:hover{background-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:bg-success-content\/0:hover{background-color:var(--fallback-suc,oklch(var(--suc)/0))}.hover\:bg-success-content\/10:hover{background-color:var(--fallback-suc,oklch(var(--suc)/.1))}.hover\:bg-success-content\/100:hover{background-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:bg-success-content\/20:hover{background-color:var(--fallback-suc,oklch(var(--suc)/.2))}.hover\:bg-success-content\/25:hover{background-color:var(--fallback-suc,oklch(var(--suc)/.25))}.hover\:bg-success-content\/30:hover{background-color:var(--fallback-suc,oklch(var(--suc)/.3))}.hover\:bg-success-content\/40:hover{background-color:var(--fallback-suc,oklch(var(--suc)/.4))}.hover\:bg-success-content\/5:hover{background-color:var(--fallback-suc,oklch(var(--suc)/.05))}.hover\:bg-success-content\/50:hover{background-color:var(--fallback-suc,oklch(var(--suc)/.5))}.hover\:bg-success-content\/60:hover{background-color:var(--fallback-suc,oklch(var(--suc)/.6))}.hover\:bg-success-content\/70:hover{background-color:var(--fallback-suc,oklch(var(--suc)/.7))}.hover\:bg-success-content\/75:hover{background-color:var(--fallback-suc,oklch(var(--suc)/.75))}.hover\:bg-success-content\/80:hover{background-color:var(--fallback-suc,oklch(var(--suc)/.8))}.hover\:bg-success-content\/90:hover{background-color:var(--fallback-suc,oklch(var(--suc)/.9))}.hover\:bg-success-content\/95:hover{background-color:var(--fallback-suc,oklch(var(--suc)/.95))}.hover\:bg-success\/0:hover{background-color:var(--fallback-su,oklch(var(--su)/0))}.hover\:bg-success\/10:hover{background-color:var(--fallback-su,oklch(var(--su)/.1))}.hover\:bg-success\/100:hover{background-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:bg-success\/20:hover{background-color:var(--fallback-su,oklch(var(--su)/.2))}.hover\:bg-success\/25:hover{background-color:var(--fallback-su,oklch(var(--su)/.25))}.hover\:bg-success\/30:hover{background-color:var(--fallback-su,oklch(var(--su)/.3))}.hover\:bg-success\/40:hover{background-color:var(--fallback-su,oklch(var(--su)/.4))}.hover\:bg-success\/5:hover{background-color:var(--fallback-su,oklch(var(--su)/.05))}.hover\:bg-success\/50:hover{background-color:var(--fallback-su,oklch(var(--su)/.5))}.hover\:bg-success\/60:hover{background-color:var(--fallback-su,oklch(var(--su)/.6))}.hover\:bg-success\/70:hover{background-color:var(--fallback-su,oklch(var(--su)/.7))}.hover\:bg-success\/75:hover{background-color:var(--fallback-su,oklch(var(--su)/.75))}.hover\:bg-success\/80:hover{background-color:var(--fallback-su,oklch(var(--su)/.8))}.hover\:bg-success\/90:hover{background-color:var(--fallback-su,oklch(var(--su)/.9))}.hover\:bg-success\/95:hover{background-color:var(--fallback-su,oklch(var(--su)/.95))}.hover\:bg-warning:hover{background-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:bg-warning-content:hover{background-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:bg-warning-content\/0:hover{background-color:var(--fallback-wac,oklch(var(--wac)/0))}.hover\:bg-warning-content\/10:hover{background-color:var(--fallback-wac,oklch(var(--wac)/.1))}.hover\:bg-warning-content\/100:hover{background-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:bg-warning-content\/20:hover{background-color:var(--fallback-wac,oklch(var(--wac)/.2))}.hover\:bg-warning-content\/25:hover{background-color:var(--fallback-wac,oklch(var(--wac)/.25))}.hover\:bg-warning-content\/30:hover{background-color:var(--fallback-wac,oklch(var(--wac)/.3))}.hover\:bg-warning-content\/40:hover{background-color:var(--fallback-wac,oklch(var(--wac)/.4))}.hover\:bg-warning-content\/5:hover{background-color:var(--fallback-wac,oklch(var(--wac)/.05))}.hover\:bg-warning-content\/50:hover{background-color:var(--fallback-wac,oklch(var(--wac)/.5))}.hover\:bg-warning-content\/60:hover{background-color:var(--fallback-wac,oklch(var(--wac)/.6))}.hover\:bg-warning-content\/70:hover{background-color:var(--fallback-wac,oklch(var(--wac)/.7))}.hover\:bg-warning-content\/75:hover{background-color:var(--fallback-wac,oklch(var(--wac)/.75))}.hover\:bg-warning-content\/80:hover{background-color:var(--fallback-wac,oklch(var(--wac)/.8))}.hover\:bg-warning-content\/90:hover{background-color:var(--fallback-wac,oklch(var(--wac)/.9))}.hover\:bg-warning-content\/95:hover{background-color:var(--fallback-wac,oklch(var(--wac)/.95))}.hover\:bg-warning\/0:hover{background-color:var(--fallback-wa,oklch(var(--wa)/0))}.hover\:bg-warning\/10:hover{background-color:var(--fallback-wa,oklch(var(--wa)/.1))}.hover\:bg-warning\/100:hover{background-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:bg-warning\/20:hover{background-color:var(--fallback-wa,oklch(var(--wa)/.2))}.hover\:bg-warning\/25:hover{background-color:var(--fallback-wa,oklch(var(--wa)/.25))}.hover\:bg-warning\/30:hover{background-color:var(--fallback-wa,oklch(var(--wa)/.3))}.hover\:bg-warning\/40:hover{background-color:var(--fallback-wa,oklch(var(--wa)/.4))}.hover\:bg-warning\/5:hover{background-color:var(--fallback-wa,oklch(var(--wa)/.05))}.hover\:bg-warning\/50:hover{background-color:var(--fallback-wa,oklch(var(--wa)/.5))}.hover\:bg-warning\/60:hover{background-color:var(--fallback-wa,oklch(var(--wa)/.6))}.hover\:bg-warning\/70:hover{background-color:var(--fallback-wa,oklch(var(--wa)/.7))}.hover\:bg-warning\/75:hover{background-color:var(--fallback-wa,oklch(var(--wa)/.75))}.hover\:bg-warning\/80:hover{background-color:var(--fallback-wa,oklch(var(--wa)/.8))}.hover\:bg-warning\/90:hover{background-color:var(--fallback-wa,oklch(var(--wa)/.9))}.hover\:bg-warning\/95:hover{background-color:var(--fallback-wa,oklch(var(--wa)/.95))}.hover\:from-accent:hover{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent-content:hover{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent-content\/0:hover{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent-content\/10:hover{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent-content\/100:hover{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent-content\/20:hover{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent-content\/25:hover{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent-content\/30:hover{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent-content\/40:hover{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent-content\/5:hover{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent-content\/50:hover{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent-content\/60:hover{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent-content\/70:hover{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent-content\/75:hover{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent-content\/80:hover{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent-content\/90:hover{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent-content\/95:hover{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent\/0:hover{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent\/10:hover{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent\/100:hover{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent\/20:hover{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent\/25:hover{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent\/30:hover{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent\/40:hover{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent\/5:hover{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent\/50:hover{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent\/60:hover{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent\/70:hover{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent\/75:hover{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent\/80:hover{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent\/90:hover{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-accent\/95:hover{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-100:hover{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-100\/0:hover{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-100\/10:hover{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-100\/100:hover{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-100\/20:hover{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-100\/25:hover{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-100\/30:hover{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-100\/40:hover{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-100\/5:hover{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-100\/50:hover{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-100\/60:hover{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-100\/70:hover{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-100\/75:hover{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-100\/80:hover{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-100\/90:hover{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-100\/95:hover{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-200:hover{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-200\/0:hover{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-200\/10:hover{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-200\/100:hover{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-200\/20:hover{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-200\/25:hover{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-200\/30:hover{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-200\/40:hover{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-200\/5:hover{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-200\/50:hover{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-200\/60:hover{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-200\/70:hover{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-200\/75:hover{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-200\/80:hover{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-200\/90:hover{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-200\/95:hover{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-300:hover{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-300\/0:hover{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-300\/10:hover{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-300\/100:hover{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-300\/20:hover{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-300\/25:hover{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-300\/30:hover{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-300\/40:hover{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-300\/5:hover{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-300\/50:hover{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-300\/60:hover{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-300\/70:hover{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-300\/75:hover{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-300\/80:hover{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-300\/90:hover{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-300\/95:hover{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-content:hover{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-content\/0:hover{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-content\/10:hover{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-content\/100:hover{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-content\/20:hover{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-content\/25:hover{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-content\/30:hover{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-content\/40:hover{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-content\/5:hover{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-content\/50:hover{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-content\/60:hover{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-content\/70:hover{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-content\/75:hover{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-content\/80:hover{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-content\/90:hover{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-base-content\/95:hover{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error:hover{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error-content:hover{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error-content\/0:hover{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error-content\/10:hover{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error-content\/100:hover{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error-content\/20:hover{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error-content\/25:hover{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error-content\/30:hover{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error-content\/40:hover{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error-content\/5:hover{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error-content\/50:hover{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error-content\/60:hover{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error-content\/70:hover{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error-content\/75:hover{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error-content\/80:hover{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error-content\/90:hover{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error-content\/95:hover{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/0:hover{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/10:hover{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/100:hover{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/20:hover{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/25:hover{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/30:hover{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/40:hover{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/5:hover{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/50:hover{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/60:hover{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/70:hover{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/75:hover{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/80:hover{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/90:hover{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-error\/95:hover{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info:hover{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info-content:hover{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info-content\/0:hover{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info-content\/10:hover{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info-content\/100:hover{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info-content\/20:hover{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info-content\/25:hover{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info-content\/30:hover{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info-content\/40:hover{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info-content\/5:hover{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info-content\/50:hover{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info-content\/60:hover{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info-content\/70:hover{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info-content\/75:hover{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info-content\/80:hover{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info-content\/90:hover{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info-content\/95:hover{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info\/0:hover{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info\/10:hover{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info\/100:hover{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info\/20:hover{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info\/25:hover{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info\/30:hover{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info\/40:hover{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info\/5:hover{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info\/50:hover{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info\/60:hover{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info\/70:hover{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info\/75:hover{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info\/80:hover{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info\/90:hover{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-info\/95:hover{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral:hover{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral-content:hover{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral-content\/0:hover{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral-content\/10:hover{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral-content\/100:hover{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral-content\/20:hover{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral-content\/25:hover{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral-content\/30:hover{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral-content\/40:hover{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral-content\/5:hover{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral-content\/50:hover{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral-content\/60:hover{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral-content\/70:hover{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral-content\/75:hover{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral-content\/80:hover{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral-content\/90:hover{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral-content\/95:hover{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral\/0:hover{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral\/10:hover{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral\/100:hover{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral\/20:hover{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral\/25:hover{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral\/30:hover{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral\/40:hover{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral\/5:hover{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral\/50:hover{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral\/60:hover{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral\/70:hover{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral\/75:hover{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral\/80:hover{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral\/90:hover{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-neutral\/95:hover{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary:hover{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary-content:hover{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary-content\/0:hover{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary-content\/10:hover{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary-content\/100:hover{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary-content\/20:hover{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary-content\/25:hover{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary-content\/30:hover{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary-content\/40:hover{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary-content\/5:hover{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary-content\/50:hover{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary-content\/60:hover{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary-content\/70:hover{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary-content\/75:hover{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary-content\/80:hover{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary-content\/90:hover{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary-content\/95:hover{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/0:hover{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/10:hover{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/100:hover{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/20:hover{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/25:hover{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/30:hover{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/40:hover{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/5:hover{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/50:hover{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/60:hover{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/70:hover{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/75:hover{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/80:hover{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/90:hover{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-primary\/95:hover{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary:hover{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary-content:hover{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary-content\/0:hover{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary-content\/10:hover{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary-content\/100:hover{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary-content\/20:hover{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary-content\/25:hover{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary-content\/30:hover{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary-content\/40:hover{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary-content\/5:hover{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary-content\/50:hover{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary-content\/60:hover{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary-content\/70:hover{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary-content\/75:hover{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary-content\/80:hover{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary-content\/90:hover{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary-content\/95:hover{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/0:hover{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/10:hover{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/100:hover{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/20:hover{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/25:hover{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/30:hover{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/40:hover{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/5:hover{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/50:hover{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/60:hover{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/70:hover{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/75:hover{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/80:hover{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/90:hover{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-secondary\/95:hover{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success:hover{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success-content:hover{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success-content\/0:hover{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success-content\/10:hover{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success-content\/100:hover{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success-content\/20:hover{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success-content\/25:hover{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success-content\/30:hover{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success-content\/40:hover{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success-content\/5:hover{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success-content\/50:hover{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success-content\/60:hover{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success-content\/70:hover{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success-content\/75:hover{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success-content\/80:hover{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success-content\/90:hover{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success-content\/95:hover{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/0:hover{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/10:hover{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/100:hover{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/20:hover{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/25:hover{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/30:hover{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/40:hover{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/5:hover{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/50:hover{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/60:hover{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/70:hover{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/75:hover{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/80:hover{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/90:hover{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-success\/95:hover{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning:hover{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning-content:hover{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning-content\/0:hover{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning-content\/10:hover{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning-content\/100:hover{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning-content\/20:hover{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning-content\/25:hover{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning-content\/30:hover{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning-content\/40:hover{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning-content\/5:hover{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning-content\/50:hover{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning-content\/60:hover{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning-content\/70:hover{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning-content\/75:hover{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning-content\/80:hover{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning-content\/90:hover{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning-content\/95:hover{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/0:hover{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/10:hover{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/100:hover{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/20:hover{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/25:hover{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/30:hover{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/40:hover{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/5:hover{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/50:hover{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/60:hover{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/70:hover{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/75:hover{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/80:hover{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/90:hover{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:from-warning\/95:hover{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:via-accent:hover{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent-content:hover{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent-content\/0:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent-content\/10:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent-content\/100:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent-content\/20:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent-content\/25:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent-content\/30:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent-content\/40:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent-content\/5:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent-content\/50:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent-content\/60:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent-content\/70:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent-content\/75:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent-content\/80:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent-content\/90:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent-content\/95:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent\/0:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent\/10:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent\/100:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent\/20:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent\/25:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent\/30:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent\/40:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent\/5:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent\/50:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent\/60:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent\/70:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent\/75:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent\/80:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent\/90:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-accent\/95:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-100:hover{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-100\/0:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-100\/10:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-100\/100:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-100\/20:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-100\/25:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-100\/30:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-100\/40:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-100\/5:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-100\/50:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-100\/60:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-100\/70:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-100\/75:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-100\/80:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-100\/90:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-100\/95:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-200:hover{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-200\/0:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-200\/10:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-200\/100:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-200\/20:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-200\/25:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-200\/30:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-200\/40:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-200\/5:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-200\/50:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-200\/60:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-200\/70:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-200\/75:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-200\/80:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-200\/90:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-200\/95:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-300:hover{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-300\/0:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-300\/10:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-300\/100:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-300\/20:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-300\/25:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-300\/30:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-300\/40:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-300\/5:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-300\/50:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-300\/60:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-300\/70:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-300\/75:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-300\/80:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-300\/90:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-300\/95:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-content:hover{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-content\/0:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-content\/10:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-content\/100:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-content\/20:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-content\/25:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-content\/30:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-content\/40:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-content\/5:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-content\/50:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-content\/60:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-content\/70:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-content\/75:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-content\/80:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-content\/90:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-base-content\/95:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error:hover{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error-content:hover{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error-content\/0:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error-content\/10:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error-content\/100:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error-content\/20:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error-content\/25:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error-content\/30:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error-content\/40:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error-content\/5:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error-content\/50:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error-content\/60:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error-content\/70:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error-content\/75:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error-content\/80:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error-content\/90:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error-content\/95:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/0:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/10:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/100:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/20:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/25:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/30:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/40:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/5:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/50:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/60:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/70:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/75:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/80:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/90:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-error\/95:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info:hover{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info-content:hover{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info-content\/0:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info-content\/10:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info-content\/100:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info-content\/20:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info-content\/25:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info-content\/30:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info-content\/40:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info-content\/5:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info-content\/50:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info-content\/60:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info-content\/70:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info-content\/75:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info-content\/80:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info-content\/90:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info-content\/95:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info\/0:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info\/10:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info\/100:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info\/20:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info\/25:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info\/30:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info\/40:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info\/5:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info\/50:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info\/60:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info\/70:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info\/75:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info\/80:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info\/90:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-info\/95:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral:hover{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral-content:hover{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral-content\/0:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral-content\/10:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral-content\/100:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral-content\/20:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral-content\/25:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral-content\/30:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral-content\/40:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral-content\/5:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral-content\/50:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral-content\/60:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral-content\/70:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral-content\/75:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral-content\/80:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral-content\/90:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral-content\/95:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral\/0:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral\/10:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral\/100:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral\/20:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral\/25:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral\/30:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral\/40:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral\/5:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral\/50:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral\/60:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral\/70:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral\/75:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral\/80:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral\/90:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-neutral\/95:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary:hover{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary-content:hover{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary-content\/0:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary-content\/10:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary-content\/100:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary-content\/20:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary-content\/25:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary-content\/30:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary-content\/40:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary-content\/5:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary-content\/50:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary-content\/60:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary-content\/70:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary-content\/75:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary-content\/80:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary-content\/90:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary-content\/95:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/0:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/10:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/100:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/20:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/25:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/30:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/40:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/5:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/50:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/60:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/70:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/75:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/80:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/90:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-primary\/95:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary:hover{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary-content:hover{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary-content\/0:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary-content\/10:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary-content\/100:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary-content\/20:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary-content\/25:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary-content\/30:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary-content\/40:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary-content\/5:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary-content\/50:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary-content\/60:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary-content\/70:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary-content\/75:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary-content\/80:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary-content\/90:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary-content\/95:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/0:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/10:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/100:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/20:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/25:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/30:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/40:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/5:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/50:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/60:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/70:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/75:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/80:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/90:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-secondary\/95:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success:hover{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success-content:hover{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success-content\/0:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success-content\/10:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success-content\/100:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success-content\/20:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success-content\/25:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success-content\/30:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success-content\/40:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success-content\/5:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success-content\/50:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success-content\/60:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success-content\/70:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success-content\/75:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success-content\/80:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success-content\/90:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success-content\/95:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/0:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/10:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/100:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/20:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/25:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/30:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/40:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/5:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/50:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/60:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/70:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/75:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/80:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/90:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-success\/95:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning:hover{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning-content:hover{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning-content\/0:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning-content\/10:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning-content\/100:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning-content\/20:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning-content\/25:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning-content\/30:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning-content\/40:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning-content\/5:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning-content\/50:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning-content\/60:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning-content\/70:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning-content\/75:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning-content\/80:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning-content\/90:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning-content\/95:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/0:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/10:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/100:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/20:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/25:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/30:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/40:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/5:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/50:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/60:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/70:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/75:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/80:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/90:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:via-warning\/95:hover{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.hover\:to-accent:hover{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/1)) var(--tw-gradient-to-position)}.hover\:to-accent-content:hover{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/1)) var(--tw-gradient-to-position)}.hover\:to-accent-content\/0:hover{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0)) var(--tw-gradient-to-position)}.hover\:to-accent-content\/10:hover{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.1)) var(--tw-gradient-to-position)}.hover\:to-accent-content\/100:hover{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/1)) var(--tw-gradient-to-position)}.hover\:to-accent-content\/20:hover{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.2)) var(--tw-gradient-to-position)}.hover\:to-accent-content\/25:hover{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.25)) var(--tw-gradient-to-position)}.hover\:to-accent-content\/30:hover{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.3)) var(--tw-gradient-to-position)}.hover\:to-accent-content\/40:hover{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.4)) var(--tw-gradient-to-position)}.hover\:to-accent-content\/5:hover{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.05)) var(--tw-gradient-to-position)}.hover\:to-accent-content\/50:hover{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.5)) var(--tw-gradient-to-position)}.hover\:to-accent-content\/60:hover{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.6)) var(--tw-gradient-to-position)}.hover\:to-accent-content\/70:hover{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.7)) var(--tw-gradient-to-position)}.hover\:to-accent-content\/75:hover{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.75)) var(--tw-gradient-to-position)}.hover\:to-accent-content\/80:hover{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.8)) var(--tw-gradient-to-position)}.hover\:to-accent-content\/90:hover{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.9)) var(--tw-gradient-to-position)}.hover\:to-accent-content\/95:hover{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.95)) var(--tw-gradient-to-position)}.hover\:to-accent\/0:hover{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0)) var(--tw-gradient-to-position)}.hover\:to-accent\/10:hover{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.1)) var(--tw-gradient-to-position)}.hover\:to-accent\/100:hover{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/1)) var(--tw-gradient-to-position)}.hover\:to-accent\/20:hover{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.2)) var(--tw-gradient-to-position)}.hover\:to-accent\/25:hover{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.25)) var(--tw-gradient-to-position)}.hover\:to-accent\/30:hover{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.3)) var(--tw-gradient-to-position)}.hover\:to-accent\/40:hover{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.4)) var(--tw-gradient-to-position)}.hover\:to-accent\/5:hover{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.05)) var(--tw-gradient-to-position)}.hover\:to-accent\/50:hover{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.5)) var(--tw-gradient-to-position)}.hover\:to-accent\/60:hover{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.6)) var(--tw-gradient-to-position)}.hover\:to-accent\/70:hover{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.7)) var(--tw-gradient-to-position)}.hover\:to-accent\/75:hover{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.75)) var(--tw-gradient-to-position)}.hover\:to-accent\/80:hover{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.8)) var(--tw-gradient-to-position)}.hover\:to-accent\/90:hover{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.9)) var(--tw-gradient-to-position)}.hover\:to-accent\/95:hover{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.95)) var(--tw-gradient-to-position)}.hover\:to-base-100:hover{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/1)) var(--tw-gradient-to-position)}.hover\:to-base-100\/0:hover{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0)) var(--tw-gradient-to-position)}.hover\:to-base-100\/10:hover{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.1)) var(--tw-gradient-to-position)}.hover\:to-base-100\/100:hover{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/1)) var(--tw-gradient-to-position)}.hover\:to-base-100\/20:hover{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.2)) var(--tw-gradient-to-position)}.hover\:to-base-100\/25:hover{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.25)) var(--tw-gradient-to-position)}.hover\:to-base-100\/30:hover{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.3)) var(--tw-gradient-to-position)}.hover\:to-base-100\/40:hover{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.4)) var(--tw-gradient-to-position)}.hover\:to-base-100\/5:hover{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.05)) var(--tw-gradient-to-position)}.hover\:to-base-100\/50:hover{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.5)) var(--tw-gradient-to-position)}.hover\:to-base-100\/60:hover{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.6)) var(--tw-gradient-to-position)}.hover\:to-base-100\/70:hover{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.7)) var(--tw-gradient-to-position)}.hover\:to-base-100\/75:hover{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.75)) var(--tw-gradient-to-position)}.hover\:to-base-100\/80:hover{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.8)) var(--tw-gradient-to-position)}.hover\:to-base-100\/90:hover{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.9)) var(--tw-gradient-to-position)}.hover\:to-base-100\/95:hover{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.95)) var(--tw-gradient-to-position)}.hover\:to-base-200:hover{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/1)) var(--tw-gradient-to-position)}.hover\:to-base-200\/0:hover{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0)) var(--tw-gradient-to-position)}.hover\:to-base-200\/10:hover{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.1)) var(--tw-gradient-to-position)}.hover\:to-base-200\/100:hover{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/1)) var(--tw-gradient-to-position)}.hover\:to-base-200\/20:hover{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.2)) var(--tw-gradient-to-position)}.hover\:to-base-200\/25:hover{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.25)) var(--tw-gradient-to-position)}.hover\:to-base-200\/30:hover{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.3)) var(--tw-gradient-to-position)}.hover\:to-base-200\/40:hover{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.4)) var(--tw-gradient-to-position)}.hover\:to-base-200\/5:hover{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.05)) var(--tw-gradient-to-position)}.hover\:to-base-200\/50:hover{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.5)) var(--tw-gradient-to-position)}.hover\:to-base-200\/60:hover{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.6)) var(--tw-gradient-to-position)}.hover\:to-base-200\/70:hover{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.7)) var(--tw-gradient-to-position)}.hover\:to-base-200\/75:hover{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.75)) var(--tw-gradient-to-position)}.hover\:to-base-200\/80:hover{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.8)) var(--tw-gradient-to-position)}.hover\:to-base-200\/90:hover{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.9)) var(--tw-gradient-to-position)}.hover\:to-base-200\/95:hover{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.95)) var(--tw-gradient-to-position)}.hover\:to-base-300:hover{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/1)) var(--tw-gradient-to-position)}.hover\:to-base-300\/0:hover{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0)) var(--tw-gradient-to-position)}.hover\:to-base-300\/10:hover{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.1)) var(--tw-gradient-to-position)}.hover\:to-base-300\/100:hover{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/1)) var(--tw-gradient-to-position)}.hover\:to-base-300\/20:hover{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.2)) var(--tw-gradient-to-position)}.hover\:to-base-300\/25:hover{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.25)) var(--tw-gradient-to-position)}.hover\:to-base-300\/30:hover{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.3)) var(--tw-gradient-to-position)}.hover\:to-base-300\/40:hover{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.4)) var(--tw-gradient-to-position)}.hover\:to-base-300\/5:hover{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.05)) var(--tw-gradient-to-position)}.hover\:to-base-300\/50:hover{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.5)) var(--tw-gradient-to-position)}.hover\:to-base-300\/60:hover{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.6)) var(--tw-gradient-to-position)}.hover\:to-base-300\/70:hover{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.7)) var(--tw-gradient-to-position)}.hover\:to-base-300\/75:hover{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.75)) var(--tw-gradient-to-position)}.hover\:to-base-300\/80:hover{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.8)) var(--tw-gradient-to-position)}.hover\:to-base-300\/90:hover{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.9)) var(--tw-gradient-to-position)}.hover\:to-base-300\/95:hover{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.95)) var(--tw-gradient-to-position)}.hover\:to-base-content:hover{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/1)) var(--tw-gradient-to-position)}.hover\:to-base-content\/0:hover{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0)) var(--tw-gradient-to-position)}.hover\:to-base-content\/10:hover{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.1)) var(--tw-gradient-to-position)}.hover\:to-base-content\/100:hover{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/1)) var(--tw-gradient-to-position)}.hover\:to-base-content\/20:hover{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.2)) var(--tw-gradient-to-position)}.hover\:to-base-content\/25:hover{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.25)) var(--tw-gradient-to-position)}.hover\:to-base-content\/30:hover{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.3)) var(--tw-gradient-to-position)}.hover\:to-base-content\/40:hover{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.4)) var(--tw-gradient-to-position)}.hover\:to-base-content\/5:hover{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.05)) var(--tw-gradient-to-position)}.hover\:to-base-content\/50:hover{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.5)) var(--tw-gradient-to-position)}.hover\:to-base-content\/60:hover{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.6)) var(--tw-gradient-to-position)}.hover\:to-base-content\/70:hover{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.7)) var(--tw-gradient-to-position)}.hover\:to-base-content\/75:hover{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.75)) var(--tw-gradient-to-position)}.hover\:to-base-content\/80:hover{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.8)) var(--tw-gradient-to-position)}.hover\:to-base-content\/90:hover{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.9)) var(--tw-gradient-to-position)}.hover\:to-base-content\/95:hover{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.95)) var(--tw-gradient-to-position)}.hover\:to-error:hover{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/1)) var(--tw-gradient-to-position)}.hover\:to-error-content:hover{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/1)) var(--tw-gradient-to-position)}.hover\:to-error-content\/0:hover{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0)) var(--tw-gradient-to-position)}.hover\:to-error-content\/10:hover{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.1)) var(--tw-gradient-to-position)}.hover\:to-error-content\/100:hover{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/1)) var(--tw-gradient-to-position)}.hover\:to-error-content\/20:hover{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.2)) var(--tw-gradient-to-position)}.hover\:to-error-content\/25:hover{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.25)) var(--tw-gradient-to-position)}.hover\:to-error-content\/30:hover{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.3)) var(--tw-gradient-to-position)}.hover\:to-error-content\/40:hover{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.4)) var(--tw-gradient-to-position)}.hover\:to-error-content\/5:hover{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.05)) var(--tw-gradient-to-position)}.hover\:to-error-content\/50:hover{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.5)) var(--tw-gradient-to-position)}.hover\:to-error-content\/60:hover{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.6)) var(--tw-gradient-to-position)}.hover\:to-error-content\/70:hover{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.7)) var(--tw-gradient-to-position)}.hover\:to-error-content\/75:hover{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.75)) var(--tw-gradient-to-position)}.hover\:to-error-content\/80:hover{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.8)) var(--tw-gradient-to-position)}.hover\:to-error-content\/90:hover{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.9)) var(--tw-gradient-to-position)}.hover\:to-error-content\/95:hover{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.95)) var(--tw-gradient-to-position)}.hover\:to-error\/0:hover{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0)) var(--tw-gradient-to-position)}.hover\:to-error\/10:hover{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.1)) var(--tw-gradient-to-position)}.hover\:to-error\/100:hover{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/1)) var(--tw-gradient-to-position)}.hover\:to-error\/20:hover{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.2)) var(--tw-gradient-to-position)}.hover\:to-error\/25:hover{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.25)) var(--tw-gradient-to-position)}.hover\:to-error\/30:hover{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.3)) var(--tw-gradient-to-position)}.hover\:to-error\/40:hover{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.4)) var(--tw-gradient-to-position)}.hover\:to-error\/5:hover{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.05)) var(--tw-gradient-to-position)}.hover\:to-error\/50:hover{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.5)) var(--tw-gradient-to-position)}.hover\:to-error\/60:hover{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.6)) var(--tw-gradient-to-position)}.hover\:to-error\/70:hover{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.7)) var(--tw-gradient-to-position)}.hover\:to-error\/75:hover{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.75)) var(--tw-gradient-to-position)}.hover\:to-error\/80:hover{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.8)) var(--tw-gradient-to-position)}.hover\:to-error\/90:hover{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.9)) var(--tw-gradient-to-position)}.hover\:to-error\/95:hover{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.95)) var(--tw-gradient-to-position)}.hover\:to-info:hover{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/1)) var(--tw-gradient-to-position)}.hover\:to-info-content:hover{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/1)) var(--tw-gradient-to-position)}.hover\:to-info-content\/0:hover{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0)) var(--tw-gradient-to-position)}.hover\:to-info-content\/10:hover{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.1)) var(--tw-gradient-to-position)}.hover\:to-info-content\/100:hover{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/1)) var(--tw-gradient-to-position)}.hover\:to-info-content\/20:hover{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.2)) var(--tw-gradient-to-position)}.hover\:to-info-content\/25:hover{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.25)) var(--tw-gradient-to-position)}.hover\:to-info-content\/30:hover{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.3)) var(--tw-gradient-to-position)}.hover\:to-info-content\/40:hover{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.4)) var(--tw-gradient-to-position)}.hover\:to-info-content\/5:hover{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.05)) var(--tw-gradient-to-position)}.hover\:to-info-content\/50:hover{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.5)) var(--tw-gradient-to-position)}.hover\:to-info-content\/60:hover{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.6)) var(--tw-gradient-to-position)}.hover\:to-info-content\/70:hover{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.7)) var(--tw-gradient-to-position)}.hover\:to-info-content\/75:hover{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.75)) var(--tw-gradient-to-position)}.hover\:to-info-content\/80:hover{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.8)) var(--tw-gradient-to-position)}.hover\:to-info-content\/90:hover{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.9)) var(--tw-gradient-to-position)}.hover\:to-info-content\/95:hover{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.95)) var(--tw-gradient-to-position)}.hover\:to-info\/0:hover{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0)) var(--tw-gradient-to-position)}.hover\:to-info\/10:hover{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.1)) var(--tw-gradient-to-position)}.hover\:to-info\/100:hover{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/1)) var(--tw-gradient-to-position)}.hover\:to-info\/20:hover{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.2)) var(--tw-gradient-to-position)}.hover\:to-info\/25:hover{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.25)) var(--tw-gradient-to-position)}.hover\:to-info\/30:hover{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.3)) var(--tw-gradient-to-position)}.hover\:to-info\/40:hover{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.4)) var(--tw-gradient-to-position)}.hover\:to-info\/5:hover{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.05)) var(--tw-gradient-to-position)}.hover\:to-info\/50:hover{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.5)) var(--tw-gradient-to-position)}.hover\:to-info\/60:hover{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.6)) var(--tw-gradient-to-position)}.hover\:to-info\/70:hover{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.7)) var(--tw-gradient-to-position)}.hover\:to-info\/75:hover{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.75)) var(--tw-gradient-to-position)}.hover\:to-info\/80:hover{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.8)) var(--tw-gradient-to-position)}.hover\:to-info\/90:hover{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.9)) var(--tw-gradient-to-position)}.hover\:to-info\/95:hover{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.95)) var(--tw-gradient-to-position)}.hover\:to-neutral:hover{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/1)) var(--tw-gradient-to-position)}.hover\:to-neutral-content:hover{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/1)) var(--tw-gradient-to-position)}.hover\:to-neutral-content\/0:hover{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0)) var(--tw-gradient-to-position)}.hover\:to-neutral-content\/10:hover{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.1)) var(--tw-gradient-to-position)}.hover\:to-neutral-content\/100:hover{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/1)) var(--tw-gradient-to-position)}.hover\:to-neutral-content\/20:hover{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.2)) var(--tw-gradient-to-position)}.hover\:to-neutral-content\/25:hover{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.25)) var(--tw-gradient-to-position)}.hover\:to-neutral-content\/30:hover{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.3)) var(--tw-gradient-to-position)}.hover\:to-neutral-content\/40:hover{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.4)) var(--tw-gradient-to-position)}.hover\:to-neutral-content\/5:hover{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.05)) var(--tw-gradient-to-position)}.hover\:to-neutral-content\/50:hover{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.5)) var(--tw-gradient-to-position)}.hover\:to-neutral-content\/60:hover{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.6)) var(--tw-gradient-to-position)}.hover\:to-neutral-content\/70:hover{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.7)) var(--tw-gradient-to-position)}.hover\:to-neutral-content\/75:hover{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.75)) var(--tw-gradient-to-position)}.hover\:to-neutral-content\/80:hover{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.8)) var(--tw-gradient-to-position)}.hover\:to-neutral-content\/90:hover{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.9)) var(--tw-gradient-to-position)}.hover\:to-neutral-content\/95:hover{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.95)) var(--tw-gradient-to-position)}.hover\:to-neutral\/0:hover{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0)) var(--tw-gradient-to-position)}.hover\:to-neutral\/10:hover{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.1)) var(--tw-gradient-to-position)}.hover\:to-neutral\/100:hover{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/1)) var(--tw-gradient-to-position)}.hover\:to-neutral\/20:hover{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.2)) var(--tw-gradient-to-position)}.hover\:to-neutral\/25:hover{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.25)) var(--tw-gradient-to-position)}.hover\:to-neutral\/30:hover{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.3)) var(--tw-gradient-to-position)}.hover\:to-neutral\/40:hover{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.4)) var(--tw-gradient-to-position)}.hover\:to-neutral\/5:hover{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.05)) var(--tw-gradient-to-position)}.hover\:to-neutral\/50:hover{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.5)) var(--tw-gradient-to-position)}.hover\:to-neutral\/60:hover{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.6)) var(--tw-gradient-to-position)}.hover\:to-neutral\/70:hover{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.7)) var(--tw-gradient-to-position)}.hover\:to-neutral\/75:hover{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.75)) var(--tw-gradient-to-position)}.hover\:to-neutral\/80:hover{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.8)) var(--tw-gradient-to-position)}.hover\:to-neutral\/90:hover{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.9)) var(--tw-gradient-to-position)}.hover\:to-neutral\/95:hover{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.95)) var(--tw-gradient-to-position)}.hover\:to-primary:hover{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/1)) var(--tw-gradient-to-position)}.hover\:to-primary-content:hover{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/1)) var(--tw-gradient-to-position)}.hover\:to-primary-content\/0:hover{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0)) var(--tw-gradient-to-position)}.hover\:to-primary-content\/10:hover{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.1)) var(--tw-gradient-to-position)}.hover\:to-primary-content\/100:hover{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/1)) var(--tw-gradient-to-position)}.hover\:to-primary-content\/20:hover{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.2)) var(--tw-gradient-to-position)}.hover\:to-primary-content\/25:hover{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.25)) var(--tw-gradient-to-position)}.hover\:to-primary-content\/30:hover{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.3)) var(--tw-gradient-to-position)}.hover\:to-primary-content\/40:hover{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.4)) var(--tw-gradient-to-position)}.hover\:to-primary-content\/5:hover{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.05)) var(--tw-gradient-to-position)}.hover\:to-primary-content\/50:hover{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.5)) var(--tw-gradient-to-position)}.hover\:to-primary-content\/60:hover{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.6)) var(--tw-gradient-to-position)}.hover\:to-primary-content\/70:hover{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.7)) var(--tw-gradient-to-position)}.hover\:to-primary-content\/75:hover{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.75)) var(--tw-gradient-to-position)}.hover\:to-primary-content\/80:hover{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.8)) var(--tw-gradient-to-position)}.hover\:to-primary-content\/90:hover{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.9)) var(--tw-gradient-to-position)}.hover\:to-primary-content\/95:hover{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.95)) var(--tw-gradient-to-position)}.hover\:to-primary\/0:hover{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0)) var(--tw-gradient-to-position)}.hover\:to-primary\/10:hover{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.1)) var(--tw-gradient-to-position)}.hover\:to-primary\/100:hover{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/1)) var(--tw-gradient-to-position)}.hover\:to-primary\/20:hover{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.2)) var(--tw-gradient-to-position)}.hover\:to-primary\/25:hover{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.25)) var(--tw-gradient-to-position)}.hover\:to-primary\/30:hover{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.3)) var(--tw-gradient-to-position)}.hover\:to-primary\/40:hover{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.4)) var(--tw-gradient-to-position)}.hover\:to-primary\/5:hover{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.05)) var(--tw-gradient-to-position)}.hover\:to-primary\/50:hover{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.5)) var(--tw-gradient-to-position)}.hover\:to-primary\/60:hover{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.6)) var(--tw-gradient-to-position)}.hover\:to-primary\/70:hover{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.7)) var(--tw-gradient-to-position)}.hover\:to-primary\/75:hover{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.75)) var(--tw-gradient-to-position)}.hover\:to-primary\/80:hover{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.8)) var(--tw-gradient-to-position)}.hover\:to-primary\/90:hover{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.9)) var(--tw-gradient-to-position)}.hover\:to-primary\/95:hover{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.95)) var(--tw-gradient-to-position)}.hover\:to-secondary:hover{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/1)) var(--tw-gradient-to-position)}.hover\:to-secondary-content:hover{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/1)) var(--tw-gradient-to-position)}.hover\:to-secondary-content\/0:hover{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0)) var(--tw-gradient-to-position)}.hover\:to-secondary-content\/10:hover{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.1)) var(--tw-gradient-to-position)}.hover\:to-secondary-content\/100:hover{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/1)) var(--tw-gradient-to-position)}.hover\:to-secondary-content\/20:hover{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.2)) var(--tw-gradient-to-position)}.hover\:to-secondary-content\/25:hover{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.25)) var(--tw-gradient-to-position)}.hover\:to-secondary-content\/30:hover{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.3)) var(--tw-gradient-to-position)}.hover\:to-secondary-content\/40:hover{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.4)) var(--tw-gradient-to-position)}.hover\:to-secondary-content\/5:hover{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.05)) var(--tw-gradient-to-position)}.hover\:to-secondary-content\/50:hover{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.5)) var(--tw-gradient-to-position)}.hover\:to-secondary-content\/60:hover{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.6)) var(--tw-gradient-to-position)}.hover\:to-secondary-content\/70:hover{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.7)) var(--tw-gradient-to-position)}.hover\:to-secondary-content\/75:hover{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.75)) var(--tw-gradient-to-position)}.hover\:to-secondary-content\/80:hover{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.8)) var(--tw-gradient-to-position)}.hover\:to-secondary-content\/90:hover{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.9)) var(--tw-gradient-to-position)}.hover\:to-secondary-content\/95:hover{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.95)) var(--tw-gradient-to-position)}.hover\:to-secondary\/0:hover{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0)) var(--tw-gradient-to-position)}.hover\:to-secondary\/10:hover{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.1)) var(--tw-gradient-to-position)}.hover\:to-secondary\/100:hover{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/1)) var(--tw-gradient-to-position)}.hover\:to-secondary\/20:hover{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.2)) var(--tw-gradient-to-position)}.hover\:to-secondary\/25:hover{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.25)) var(--tw-gradient-to-position)}.hover\:to-secondary\/30:hover{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.3)) var(--tw-gradient-to-position)}.hover\:to-secondary\/40:hover{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.4)) var(--tw-gradient-to-position)}.hover\:to-secondary\/5:hover{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.05)) var(--tw-gradient-to-position)}.hover\:to-secondary\/50:hover{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.5)) var(--tw-gradient-to-position)}.hover\:to-secondary\/60:hover{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.6)) var(--tw-gradient-to-position)}.hover\:to-secondary\/70:hover{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.7)) var(--tw-gradient-to-position)}.hover\:to-secondary\/75:hover{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.75)) var(--tw-gradient-to-position)}.hover\:to-secondary\/80:hover{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.8)) var(--tw-gradient-to-position)}.hover\:to-secondary\/90:hover{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.9)) var(--tw-gradient-to-position)}.hover\:to-secondary\/95:hover{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.95)) var(--tw-gradient-to-position)}.hover\:to-success:hover{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/1)) var(--tw-gradient-to-position)}.hover\:to-success-content:hover{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/1)) var(--tw-gradient-to-position)}.hover\:to-success-content\/0:hover{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0)) var(--tw-gradient-to-position)}.hover\:to-success-content\/10:hover{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.1)) var(--tw-gradient-to-position)}.hover\:to-success-content\/100:hover{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/1)) var(--tw-gradient-to-position)}.hover\:to-success-content\/20:hover{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.2)) var(--tw-gradient-to-position)}.hover\:to-success-content\/25:hover{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.25)) var(--tw-gradient-to-position)}.hover\:to-success-content\/30:hover{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.3)) var(--tw-gradient-to-position)}.hover\:to-success-content\/40:hover{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.4)) var(--tw-gradient-to-position)}.hover\:to-success-content\/5:hover{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.05)) var(--tw-gradient-to-position)}.hover\:to-success-content\/50:hover{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.5)) var(--tw-gradient-to-position)}.hover\:to-success-content\/60:hover{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.6)) var(--tw-gradient-to-position)}.hover\:to-success-content\/70:hover{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.7)) var(--tw-gradient-to-position)}.hover\:to-success-content\/75:hover{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.75)) var(--tw-gradient-to-position)}.hover\:to-success-content\/80:hover{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.8)) var(--tw-gradient-to-position)}.hover\:to-success-content\/90:hover{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.9)) var(--tw-gradient-to-position)}.hover\:to-success-content\/95:hover{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.95)) var(--tw-gradient-to-position)}.hover\:to-success\/0:hover{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0)) var(--tw-gradient-to-position)}.hover\:to-success\/10:hover{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.1)) var(--tw-gradient-to-position)}.hover\:to-success\/100:hover{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/1)) var(--tw-gradient-to-position)}.hover\:to-success\/20:hover{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.2)) var(--tw-gradient-to-position)}.hover\:to-success\/25:hover{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.25)) var(--tw-gradient-to-position)}.hover\:to-success\/30:hover{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.3)) var(--tw-gradient-to-position)}.hover\:to-success\/40:hover{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.4)) var(--tw-gradient-to-position)}.hover\:to-success\/5:hover{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.05)) var(--tw-gradient-to-position)}.hover\:to-success\/50:hover{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.5)) var(--tw-gradient-to-position)}.hover\:to-success\/60:hover{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.6)) var(--tw-gradient-to-position)}.hover\:to-success\/70:hover{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.7)) var(--tw-gradient-to-position)}.hover\:to-success\/75:hover{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.75)) var(--tw-gradient-to-position)}.hover\:to-success\/80:hover{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.8)) var(--tw-gradient-to-position)}.hover\:to-success\/90:hover{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.9)) var(--tw-gradient-to-position)}.hover\:to-success\/95:hover{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.95)) var(--tw-gradient-to-position)}.hover\:to-warning:hover{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/1)) var(--tw-gradient-to-position)}.hover\:to-warning-content:hover{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/1)) var(--tw-gradient-to-position)}.hover\:to-warning-content\/0:hover{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0)) var(--tw-gradient-to-position)}.hover\:to-warning-content\/10:hover{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.1)) var(--tw-gradient-to-position)}.hover\:to-warning-content\/100:hover{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/1)) var(--tw-gradient-to-position)}.hover\:to-warning-content\/20:hover{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.2)) var(--tw-gradient-to-position)}.hover\:to-warning-content\/25:hover{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.25)) var(--tw-gradient-to-position)}.hover\:to-warning-content\/30:hover{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.3)) var(--tw-gradient-to-position)}.hover\:to-warning-content\/40:hover{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.4)) var(--tw-gradient-to-position)}.hover\:to-warning-content\/5:hover{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.05)) var(--tw-gradient-to-position)}.hover\:to-warning-content\/50:hover{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.5)) var(--tw-gradient-to-position)}.hover\:to-warning-content\/60:hover{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.6)) var(--tw-gradient-to-position)}.hover\:to-warning-content\/70:hover{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.7)) var(--tw-gradient-to-position)}.hover\:to-warning-content\/75:hover{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.75)) var(--tw-gradient-to-position)}.hover\:to-warning-content\/80:hover{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.8)) var(--tw-gradient-to-position)}.hover\:to-warning-content\/90:hover{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.9)) var(--tw-gradient-to-position)}.hover\:to-warning-content\/95:hover{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.95)) var(--tw-gradient-to-position)}.hover\:to-warning\/0:hover{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0)) var(--tw-gradient-to-position)}.hover\:to-warning\/10:hover{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.1)) var(--tw-gradient-to-position)}.hover\:to-warning\/100:hover{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/1)) var(--tw-gradient-to-position)}.hover\:to-warning\/20:hover{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.2)) var(--tw-gradient-to-position)}.hover\:to-warning\/25:hover{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.25)) var(--tw-gradient-to-position)}.hover\:to-warning\/30:hover{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.3)) var(--tw-gradient-to-position)}.hover\:to-warning\/40:hover{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.4)) var(--tw-gradient-to-position)}.hover\:to-warning\/5:hover{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.05)) var(--tw-gradient-to-position)}.hover\:to-warning\/50:hover{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.5)) var(--tw-gradient-to-position)}.hover\:to-warning\/60:hover{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.6)) var(--tw-gradient-to-position)}.hover\:to-warning\/70:hover{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.7)) var(--tw-gradient-to-position)}.hover\:to-warning\/75:hover{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.75)) var(--tw-gradient-to-position)}.hover\:to-warning\/80:hover{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.8)) var(--tw-gradient-to-position)}.hover\:to-warning\/90:hover{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.9)) var(--tw-gradient-to-position)}.hover\:to-warning\/95:hover{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.95)) var(--tw-gradient-to-position)}.hover\:stroke-accent:hover{stroke:var(--fallback-a,oklch(var(--a)/1))}.hover\:stroke-accent-content:hover{stroke:var(--fallback-ac,oklch(var(--ac)/1))}.hover\:stroke-accent-content\/0:hover{stroke:var(--fallback-ac,oklch(var(--ac)/0))}.hover\:stroke-accent-content\/10:hover{stroke:var(--fallback-ac,oklch(var(--ac)/0.1))}.hover\:stroke-accent-content\/100:hover{stroke:var(--fallback-ac,oklch(var(--ac)/1))}.hover\:stroke-accent-content\/20:hover{stroke:var(--fallback-ac,oklch(var(--ac)/0.2))}.hover\:stroke-accent-content\/25:hover{stroke:var(--fallback-ac,oklch(var(--ac)/0.25))}.hover\:stroke-accent-content\/30:hover{stroke:var(--fallback-ac,oklch(var(--ac)/0.3))}.hover\:stroke-accent-content\/40:hover{stroke:var(--fallback-ac,oklch(var(--ac)/0.4))}.hover\:stroke-accent-content\/5:hover{stroke:var(--fallback-ac,oklch(var(--ac)/0.05))}.hover\:stroke-accent-content\/50:hover{stroke:var(--fallback-ac,oklch(var(--ac)/0.5))}.hover\:stroke-accent-content\/60:hover{stroke:var(--fallback-ac,oklch(var(--ac)/0.6))}.hover\:stroke-accent-content\/70:hover{stroke:var(--fallback-ac,oklch(var(--ac)/0.7))}.hover\:stroke-accent-content\/75:hover{stroke:var(--fallback-ac,oklch(var(--ac)/0.75))}.hover\:stroke-accent-content\/80:hover{stroke:var(--fallback-ac,oklch(var(--ac)/0.8))}.hover\:stroke-accent-content\/90:hover{stroke:var(--fallback-ac,oklch(var(--ac)/0.9))}.hover\:stroke-accent-content\/95:hover{stroke:var(--fallback-ac,oklch(var(--ac)/0.95))}.hover\:stroke-accent\/0:hover{stroke:var(--fallback-a,oklch(var(--a)/0))}.hover\:stroke-accent\/10:hover{stroke:var(--fallback-a,oklch(var(--a)/0.1))}.hover\:stroke-accent\/100:hover{stroke:var(--fallback-a,oklch(var(--a)/1))}.hover\:stroke-accent\/20:hover{stroke:var(--fallback-a,oklch(var(--a)/0.2))}.hover\:stroke-accent\/25:hover{stroke:var(--fallback-a,oklch(var(--a)/0.25))}.hover\:stroke-accent\/30:hover{stroke:var(--fallback-a,oklch(var(--a)/0.3))}.hover\:stroke-accent\/40:hover{stroke:var(--fallback-a,oklch(var(--a)/0.4))}.hover\:stroke-accent\/5:hover{stroke:var(--fallback-a,oklch(var(--a)/0.05))}.hover\:stroke-accent\/50:hover{stroke:var(--fallback-a,oklch(var(--a)/0.5))}.hover\:stroke-accent\/60:hover{stroke:var(--fallback-a,oklch(var(--a)/0.6))}.hover\:stroke-accent\/70:hover{stroke:var(--fallback-a,oklch(var(--a)/0.7))}.hover\:stroke-accent\/75:hover{stroke:var(--fallback-a,oklch(var(--a)/0.75))}.hover\:stroke-accent\/80:hover{stroke:var(--fallback-a,oklch(var(--a)/0.8))}.hover\:stroke-accent\/90:hover{stroke:var(--fallback-a,oklch(var(--a)/0.9))}.hover\:stroke-accent\/95:hover{stroke:var(--fallback-a,oklch(var(--a)/0.95))}.hover\:stroke-base-100:hover{stroke:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:stroke-base-100\/0:hover{stroke:var(--fallback-b1,oklch(var(--b1)/0))}.hover\:stroke-base-100\/10:hover{stroke:var(--fallback-b1,oklch(var(--b1)/0.1))}.hover\:stroke-base-100\/100:hover{stroke:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:stroke-base-100\/20:hover{stroke:var(--fallback-b1,oklch(var(--b1)/0.2))}.hover\:stroke-base-100\/25:hover{stroke:var(--fallback-b1,oklch(var(--b1)/0.25))}.hover\:stroke-base-100\/30:hover{stroke:var(--fallback-b1,oklch(var(--b1)/0.3))}.hover\:stroke-base-100\/40:hover{stroke:var(--fallback-b1,oklch(var(--b1)/0.4))}.hover\:stroke-base-100\/5:hover{stroke:var(--fallback-b1,oklch(var(--b1)/0.05))}.hover\:stroke-base-100\/50:hover{stroke:var(--fallback-b1,oklch(var(--b1)/0.5))}.hover\:stroke-base-100\/60:hover{stroke:var(--fallback-b1,oklch(var(--b1)/0.6))}.hover\:stroke-base-100\/70:hover{stroke:var(--fallback-b1,oklch(var(--b1)/0.7))}.hover\:stroke-base-100\/75:hover{stroke:var(--fallback-b1,oklch(var(--b1)/0.75))}.hover\:stroke-base-100\/80:hover{stroke:var(--fallback-b1,oklch(var(--b1)/0.8))}.hover\:stroke-base-100\/90:hover{stroke:var(--fallback-b1,oklch(var(--b1)/0.9))}.hover\:stroke-base-100\/95:hover{stroke:var(--fallback-b1,oklch(var(--b1)/0.95))}.hover\:stroke-base-200:hover{stroke:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:stroke-base-200\/0:hover{stroke:var(--fallback-b2,oklch(var(--b2)/0))}.hover\:stroke-base-200\/10:hover{stroke:var(--fallback-b2,oklch(var(--b2)/0.1))}.hover\:stroke-base-200\/100:hover{stroke:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:stroke-base-200\/20:hover{stroke:var(--fallback-b2,oklch(var(--b2)/0.2))}.hover\:stroke-base-200\/25:hover{stroke:var(--fallback-b2,oklch(var(--b2)/0.25))}.hover\:stroke-base-200\/30:hover{stroke:var(--fallback-b2,oklch(var(--b2)/0.3))}.hover\:stroke-base-200\/40:hover{stroke:var(--fallback-b2,oklch(var(--b2)/0.4))}.hover\:stroke-base-200\/5:hover{stroke:var(--fallback-b2,oklch(var(--b2)/0.05))}.hover\:stroke-base-200\/50:hover{stroke:var(--fallback-b2,oklch(var(--b2)/0.5))}.hover\:stroke-base-200\/60:hover{stroke:var(--fallback-b2,oklch(var(--b2)/0.6))}.hover\:stroke-base-200\/70:hover{stroke:var(--fallback-b2,oklch(var(--b2)/0.7))}.hover\:stroke-base-200\/75:hover{stroke:var(--fallback-b2,oklch(var(--b2)/0.75))}.hover\:stroke-base-200\/80:hover{stroke:var(--fallback-b2,oklch(var(--b2)/0.8))}.hover\:stroke-base-200\/90:hover{stroke:var(--fallback-b2,oklch(var(--b2)/0.9))}.hover\:stroke-base-200\/95:hover{stroke:var(--fallback-b2,oklch(var(--b2)/0.95))}.hover\:stroke-base-300:hover{stroke:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:stroke-base-300\/0:hover{stroke:var(--fallback-b3,oklch(var(--b3)/0))}.hover\:stroke-base-300\/10:hover{stroke:var(--fallback-b3,oklch(var(--b3)/0.1))}.hover\:stroke-base-300\/100:hover{stroke:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:stroke-base-300\/20:hover{stroke:var(--fallback-b3,oklch(var(--b3)/0.2))}.hover\:stroke-base-300\/25:hover{stroke:var(--fallback-b3,oklch(var(--b3)/0.25))}.hover\:stroke-base-300\/30:hover{stroke:var(--fallback-b3,oklch(var(--b3)/0.3))}.hover\:stroke-base-300\/40:hover{stroke:var(--fallback-b3,oklch(var(--b3)/0.4))}.hover\:stroke-base-300\/5:hover{stroke:var(--fallback-b3,oklch(var(--b3)/0.05))}.hover\:stroke-base-300\/50:hover{stroke:var(--fallback-b3,oklch(var(--b3)/0.5))}.hover\:stroke-base-300\/60:hover{stroke:var(--fallback-b3,oklch(var(--b3)/0.6))}.hover\:stroke-base-300\/70:hover{stroke:var(--fallback-b3,oklch(var(--b3)/0.7))}.hover\:stroke-base-300\/75:hover{stroke:var(--fallback-b3,oklch(var(--b3)/0.75))}.hover\:stroke-base-300\/80:hover{stroke:var(--fallback-b3,oklch(var(--b3)/0.8))}.hover\:stroke-base-300\/90:hover{stroke:var(--fallback-b3,oklch(var(--b3)/0.9))}.hover\:stroke-base-300\/95:hover{stroke:var(--fallback-b3,oklch(var(--b3)/0.95))}.hover\:stroke-base-content:hover{stroke:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:stroke-base-content\/0:hover{stroke:var(--fallback-bc,oklch(var(--bc)/0))}.hover\:stroke-base-content\/10:hover{stroke:var(--fallback-bc,oklch(var(--bc)/0.1))}.hover\:stroke-base-content\/100:hover{stroke:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:stroke-base-content\/20:hover{stroke:var(--fallback-bc,oklch(var(--bc)/0.2))}.hover\:stroke-base-content\/25:hover{stroke:var(--fallback-bc,oklch(var(--bc)/0.25))}.hover\:stroke-base-content\/30:hover{stroke:var(--fallback-bc,oklch(var(--bc)/0.3))}.hover\:stroke-base-content\/40:hover{stroke:var(--fallback-bc,oklch(var(--bc)/0.4))}.hover\:stroke-base-content\/5:hover{stroke:var(--fallback-bc,oklch(var(--bc)/0.05))}.hover\:stroke-base-content\/50:hover{stroke:var(--fallback-bc,oklch(var(--bc)/0.5))}.hover\:stroke-base-content\/60:hover{stroke:var(--fallback-bc,oklch(var(--bc)/0.6))}.hover\:stroke-base-content\/70:hover{stroke:var(--fallback-bc,oklch(var(--bc)/0.7))}.hover\:stroke-base-content\/75:hover{stroke:var(--fallback-bc,oklch(var(--bc)/0.75))}.hover\:stroke-base-content\/80:hover{stroke:var(--fallback-bc,oklch(var(--bc)/0.8))}.hover\:stroke-base-content\/90:hover{stroke:var(--fallback-bc,oklch(var(--bc)/0.9))}.hover\:stroke-base-content\/95:hover{stroke:var(--fallback-bc,oklch(var(--bc)/0.95))}.hover\:stroke-error:hover{stroke:var(--fallback-er,oklch(var(--er)/1))}.hover\:stroke-error-content:hover{stroke:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:stroke-error-content\/0:hover{stroke:var(--fallback-erc,oklch(var(--erc)/0))}.hover\:stroke-error-content\/10:hover{stroke:var(--fallback-erc,oklch(var(--erc)/0.1))}.hover\:stroke-error-content\/100:hover{stroke:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:stroke-error-content\/20:hover{stroke:var(--fallback-erc,oklch(var(--erc)/0.2))}.hover\:stroke-error-content\/25:hover{stroke:var(--fallback-erc,oklch(var(--erc)/0.25))}.hover\:stroke-error-content\/30:hover{stroke:var(--fallback-erc,oklch(var(--erc)/0.3))}.hover\:stroke-error-content\/40:hover{stroke:var(--fallback-erc,oklch(var(--erc)/0.4))}.hover\:stroke-error-content\/5:hover{stroke:var(--fallback-erc,oklch(var(--erc)/0.05))}.hover\:stroke-error-content\/50:hover{stroke:var(--fallback-erc,oklch(var(--erc)/0.5))}.hover\:stroke-error-content\/60:hover{stroke:var(--fallback-erc,oklch(var(--erc)/0.6))}.hover\:stroke-error-content\/70:hover{stroke:var(--fallback-erc,oklch(var(--erc)/0.7))}.hover\:stroke-error-content\/75:hover{stroke:var(--fallback-erc,oklch(var(--erc)/0.75))}.hover\:stroke-error-content\/80:hover{stroke:var(--fallback-erc,oklch(var(--erc)/0.8))}.hover\:stroke-error-content\/90:hover{stroke:var(--fallback-erc,oklch(var(--erc)/0.9))}.hover\:stroke-error-content\/95:hover{stroke:var(--fallback-erc,oklch(var(--erc)/0.95))}.hover\:stroke-error\/0:hover{stroke:var(--fallback-er,oklch(var(--er)/0))}.hover\:stroke-error\/10:hover{stroke:var(--fallback-er,oklch(var(--er)/0.1))}.hover\:stroke-error\/100:hover{stroke:var(--fallback-er,oklch(var(--er)/1))}.hover\:stroke-error\/20:hover{stroke:var(--fallback-er,oklch(var(--er)/0.2))}.hover\:stroke-error\/25:hover{stroke:var(--fallback-er,oklch(var(--er)/0.25))}.hover\:stroke-error\/30:hover{stroke:var(--fallback-er,oklch(var(--er)/0.3))}.hover\:stroke-error\/40:hover{stroke:var(--fallback-er,oklch(var(--er)/0.4))}.hover\:stroke-error\/5:hover{stroke:var(--fallback-er,oklch(var(--er)/0.05))}.hover\:stroke-error\/50:hover{stroke:var(--fallback-er,oklch(var(--er)/0.5))}.hover\:stroke-error\/60:hover{stroke:var(--fallback-er,oklch(var(--er)/0.6))}.hover\:stroke-error\/70:hover{stroke:var(--fallback-er,oklch(var(--er)/0.7))}.hover\:stroke-error\/75:hover{stroke:var(--fallback-er,oklch(var(--er)/0.75))}.hover\:stroke-error\/80:hover{stroke:var(--fallback-er,oklch(var(--er)/0.8))}.hover\:stroke-error\/90:hover{stroke:var(--fallback-er,oklch(var(--er)/0.9))}.hover\:stroke-error\/95:hover{stroke:var(--fallback-er,oklch(var(--er)/0.95))}.hover\:stroke-info:hover{stroke:var(--fallback-in,oklch(var(--in)/1))}.hover\:stroke-info-content:hover{stroke:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:stroke-info-content\/0:hover{stroke:var(--fallback-inc,oklch(var(--inc)/0))}.hover\:stroke-info-content\/10:hover{stroke:var(--fallback-inc,oklch(var(--inc)/0.1))}.hover\:stroke-info-content\/100:hover{stroke:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:stroke-info-content\/20:hover{stroke:var(--fallback-inc,oklch(var(--inc)/0.2))}.hover\:stroke-info-content\/25:hover{stroke:var(--fallback-inc,oklch(var(--inc)/0.25))}.hover\:stroke-info-content\/30:hover{stroke:var(--fallback-inc,oklch(var(--inc)/0.3))}.hover\:stroke-info-content\/40:hover{stroke:var(--fallback-inc,oklch(var(--inc)/0.4))}.hover\:stroke-info-content\/5:hover{stroke:var(--fallback-inc,oklch(var(--inc)/0.05))}.hover\:stroke-info-content\/50:hover{stroke:var(--fallback-inc,oklch(var(--inc)/0.5))}.hover\:stroke-info-content\/60:hover{stroke:var(--fallback-inc,oklch(var(--inc)/0.6))}.hover\:stroke-info-content\/70:hover{stroke:var(--fallback-inc,oklch(var(--inc)/0.7))}.hover\:stroke-info-content\/75:hover{stroke:var(--fallback-inc,oklch(var(--inc)/0.75))}.hover\:stroke-info-content\/80:hover{stroke:var(--fallback-inc,oklch(var(--inc)/0.8))}.hover\:stroke-info-content\/90:hover{stroke:var(--fallback-inc,oklch(var(--inc)/0.9))}.hover\:stroke-info-content\/95:hover{stroke:var(--fallback-inc,oklch(var(--inc)/0.95))}.hover\:stroke-info\/0:hover{stroke:var(--fallback-in,oklch(var(--in)/0))}.hover\:stroke-info\/10:hover{stroke:var(--fallback-in,oklch(var(--in)/0.1))}.hover\:stroke-info\/100:hover{stroke:var(--fallback-in,oklch(var(--in)/1))}.hover\:stroke-info\/20:hover{stroke:var(--fallback-in,oklch(var(--in)/0.2))}.hover\:stroke-info\/25:hover{stroke:var(--fallback-in,oklch(var(--in)/0.25))}.hover\:stroke-info\/30:hover{stroke:var(--fallback-in,oklch(var(--in)/0.3))}.hover\:stroke-info\/40:hover{stroke:var(--fallback-in,oklch(var(--in)/0.4))}.hover\:stroke-info\/5:hover{stroke:var(--fallback-in,oklch(var(--in)/0.05))}.hover\:stroke-info\/50:hover{stroke:var(--fallback-in,oklch(var(--in)/0.5))}.hover\:stroke-info\/60:hover{stroke:var(--fallback-in,oklch(var(--in)/0.6))}.hover\:stroke-info\/70:hover{stroke:var(--fallback-in,oklch(var(--in)/0.7))}.hover\:stroke-info\/75:hover{stroke:var(--fallback-in,oklch(var(--in)/0.75))}.hover\:stroke-info\/80:hover{stroke:var(--fallback-in,oklch(var(--in)/0.8))}.hover\:stroke-info\/90:hover{stroke:var(--fallback-in,oklch(var(--in)/0.9))}.hover\:stroke-info\/95:hover{stroke:var(--fallback-in,oklch(var(--in)/0.95))}.hover\:stroke-neutral:hover{stroke:var(--fallback-n,oklch(var(--n)/1))}.hover\:stroke-neutral-content:hover{stroke:var(--fallback-nc,oklch(var(--nc)/1))}.hover\:stroke-neutral-content\/0:hover{stroke:var(--fallback-nc,oklch(var(--nc)/0))}.hover\:stroke-neutral-content\/10:hover{stroke:var(--fallback-nc,oklch(var(--nc)/0.1))}.hover\:stroke-neutral-content\/100:hover{stroke:var(--fallback-nc,oklch(var(--nc)/1))}.hover\:stroke-neutral-content\/20:hover{stroke:var(--fallback-nc,oklch(var(--nc)/0.2))}.hover\:stroke-neutral-content\/25:hover{stroke:var(--fallback-nc,oklch(var(--nc)/0.25))}.hover\:stroke-neutral-content\/30:hover{stroke:var(--fallback-nc,oklch(var(--nc)/0.3))}.hover\:stroke-neutral-content\/40:hover{stroke:var(--fallback-nc,oklch(var(--nc)/0.4))}.hover\:stroke-neutral-content\/5:hover{stroke:var(--fallback-nc,oklch(var(--nc)/0.05))}.hover\:stroke-neutral-content\/50:hover{stroke:var(--fallback-nc,oklch(var(--nc)/0.5))}.hover\:stroke-neutral-content\/60:hover{stroke:var(--fallback-nc,oklch(var(--nc)/0.6))}.hover\:stroke-neutral-content\/70:hover{stroke:var(--fallback-nc,oklch(var(--nc)/0.7))}.hover\:stroke-neutral-content\/75:hover{stroke:var(--fallback-nc,oklch(var(--nc)/0.75))}.hover\:stroke-neutral-content\/80:hover{stroke:var(--fallback-nc,oklch(var(--nc)/0.8))}.hover\:stroke-neutral-content\/90:hover{stroke:var(--fallback-nc,oklch(var(--nc)/0.9))}.hover\:stroke-neutral-content\/95:hover{stroke:var(--fallback-nc,oklch(var(--nc)/0.95))}.hover\:stroke-neutral\/0:hover{stroke:var(--fallback-n,oklch(var(--n)/0))}.hover\:stroke-neutral\/10:hover{stroke:var(--fallback-n,oklch(var(--n)/0.1))}.hover\:stroke-neutral\/100:hover{stroke:var(--fallback-n,oklch(var(--n)/1))}.hover\:stroke-neutral\/20:hover{stroke:var(--fallback-n,oklch(var(--n)/0.2))}.hover\:stroke-neutral\/25:hover{stroke:var(--fallback-n,oklch(var(--n)/0.25))}.hover\:stroke-neutral\/30:hover{stroke:var(--fallback-n,oklch(var(--n)/0.3))}.hover\:stroke-neutral\/40:hover{stroke:var(--fallback-n,oklch(var(--n)/0.4))}.hover\:stroke-neutral\/5:hover{stroke:var(--fallback-n,oklch(var(--n)/0.05))}.hover\:stroke-neutral\/50:hover{stroke:var(--fallback-n,oklch(var(--n)/0.5))}.hover\:stroke-neutral\/60:hover{stroke:var(--fallback-n,oklch(var(--n)/0.6))}.hover\:stroke-neutral\/70:hover{stroke:var(--fallback-n,oklch(var(--n)/0.7))}.hover\:stroke-neutral\/75:hover{stroke:var(--fallback-n,oklch(var(--n)/0.75))}.hover\:stroke-neutral\/80:hover{stroke:var(--fallback-n,oklch(var(--n)/0.8))}.hover\:stroke-neutral\/90:hover{stroke:var(--fallback-n,oklch(var(--n)/0.9))}.hover\:stroke-neutral\/95:hover{stroke:var(--fallback-n,oklch(var(--n)/0.95))}.hover\:stroke-primary:hover{stroke:var(--fallback-p,oklch(var(--p)/1))}.hover\:stroke-primary-content:hover{stroke:var(--fallback-pc,oklch(var(--pc)/1))}.hover\:stroke-primary-content\/0:hover{stroke:var(--fallback-pc,oklch(var(--pc)/0))}.hover\:stroke-primary-content\/10:hover{stroke:var(--fallback-pc,oklch(var(--pc)/0.1))}.hover\:stroke-primary-content\/100:hover{stroke:var(--fallback-pc,oklch(var(--pc)/1))}.hover\:stroke-primary-content\/20:hover{stroke:var(--fallback-pc,oklch(var(--pc)/0.2))}.hover\:stroke-primary-content\/25:hover{stroke:var(--fallback-pc,oklch(var(--pc)/0.25))}.hover\:stroke-primary-content\/30:hover{stroke:var(--fallback-pc,oklch(var(--pc)/0.3))}.hover\:stroke-primary-content\/40:hover{stroke:var(--fallback-pc,oklch(var(--pc)/0.4))}.hover\:stroke-primary-content\/5:hover{stroke:var(--fallback-pc,oklch(var(--pc)/0.05))}.hover\:stroke-primary-content\/50:hover{stroke:var(--fallback-pc,oklch(var(--pc)/0.5))}.hover\:stroke-primary-content\/60:hover{stroke:var(--fallback-pc,oklch(var(--pc)/0.6))}.hover\:stroke-primary-content\/70:hover{stroke:var(--fallback-pc,oklch(var(--pc)/0.7))}.hover\:stroke-primary-content\/75:hover{stroke:var(--fallback-pc,oklch(var(--pc)/0.75))}.hover\:stroke-primary-content\/80:hover{stroke:var(--fallback-pc,oklch(var(--pc)/0.8))}.hover\:stroke-primary-content\/90:hover{stroke:var(--fallback-pc,oklch(var(--pc)/0.9))}.hover\:stroke-primary-content\/95:hover{stroke:var(--fallback-pc,oklch(var(--pc)/0.95))}.hover\:stroke-primary\/0:hover{stroke:var(--fallback-p,oklch(var(--p)/0))}.hover\:stroke-primary\/10:hover{stroke:var(--fallback-p,oklch(var(--p)/0.1))}.hover\:stroke-primary\/100:hover{stroke:var(--fallback-p,oklch(var(--p)/1))}.hover\:stroke-primary\/20:hover{stroke:var(--fallback-p,oklch(var(--p)/0.2))}.hover\:stroke-primary\/25:hover{stroke:var(--fallback-p,oklch(var(--p)/0.25))}.hover\:stroke-primary\/30:hover{stroke:var(--fallback-p,oklch(var(--p)/0.3))}.hover\:stroke-primary\/40:hover{stroke:var(--fallback-p,oklch(var(--p)/0.4))}.hover\:stroke-primary\/5:hover{stroke:var(--fallback-p,oklch(var(--p)/0.05))}.hover\:stroke-primary\/50:hover{stroke:var(--fallback-p,oklch(var(--p)/0.5))}.hover\:stroke-primary\/60:hover{stroke:var(--fallback-p,oklch(var(--p)/0.6))}.hover\:stroke-primary\/70:hover{stroke:var(--fallback-p,oklch(var(--p)/0.7))}.hover\:stroke-primary\/75:hover{stroke:var(--fallback-p,oklch(var(--p)/0.75))}.hover\:stroke-primary\/80:hover{stroke:var(--fallback-p,oklch(var(--p)/0.8))}.hover\:stroke-primary\/90:hover{stroke:var(--fallback-p,oklch(var(--p)/0.9))}.hover\:stroke-primary\/95:hover{stroke:var(--fallback-p,oklch(var(--p)/0.95))}.hover\:stroke-secondary:hover{stroke:var(--fallback-s,oklch(var(--s)/1))}.hover\:stroke-secondary-content:hover{stroke:var(--fallback-sc,oklch(var(--sc)/1))}.hover\:stroke-secondary-content\/0:hover{stroke:var(--fallback-sc,oklch(var(--sc)/0))}.hover\:stroke-secondary-content\/10:hover{stroke:var(--fallback-sc,oklch(var(--sc)/0.1))}.hover\:stroke-secondary-content\/100:hover{stroke:var(--fallback-sc,oklch(var(--sc)/1))}.hover\:stroke-secondary-content\/20:hover{stroke:var(--fallback-sc,oklch(var(--sc)/0.2))}.hover\:stroke-secondary-content\/25:hover{stroke:var(--fallback-sc,oklch(var(--sc)/0.25))}.hover\:stroke-secondary-content\/30:hover{stroke:var(--fallback-sc,oklch(var(--sc)/0.3))}.hover\:stroke-secondary-content\/40:hover{stroke:var(--fallback-sc,oklch(var(--sc)/0.4))}.hover\:stroke-secondary-content\/5:hover{stroke:var(--fallback-sc,oklch(var(--sc)/0.05))}.hover\:stroke-secondary-content\/50:hover{stroke:var(--fallback-sc,oklch(var(--sc)/0.5))}.hover\:stroke-secondary-content\/60:hover{stroke:var(--fallback-sc,oklch(var(--sc)/0.6))}.hover\:stroke-secondary-content\/70:hover{stroke:var(--fallback-sc,oklch(var(--sc)/0.7))}.hover\:stroke-secondary-content\/75:hover{stroke:var(--fallback-sc,oklch(var(--sc)/0.75))}.hover\:stroke-secondary-content\/80:hover{stroke:var(--fallback-sc,oklch(var(--sc)/0.8))}.hover\:stroke-secondary-content\/90:hover{stroke:var(--fallback-sc,oklch(var(--sc)/0.9))}.hover\:stroke-secondary-content\/95:hover{stroke:var(--fallback-sc,oklch(var(--sc)/0.95))}.hover\:stroke-secondary\/0:hover{stroke:var(--fallback-s,oklch(var(--s)/0))}.hover\:stroke-secondary\/10:hover{stroke:var(--fallback-s,oklch(var(--s)/0.1))}.hover\:stroke-secondary\/100:hover{stroke:var(--fallback-s,oklch(var(--s)/1))}.hover\:stroke-secondary\/20:hover{stroke:var(--fallback-s,oklch(var(--s)/0.2))}.hover\:stroke-secondary\/25:hover{stroke:var(--fallback-s,oklch(var(--s)/0.25))}.hover\:stroke-secondary\/30:hover{stroke:var(--fallback-s,oklch(var(--s)/0.3))}.hover\:stroke-secondary\/40:hover{stroke:var(--fallback-s,oklch(var(--s)/0.4))}.hover\:stroke-secondary\/5:hover{stroke:var(--fallback-s,oklch(var(--s)/0.05))}.hover\:stroke-secondary\/50:hover{stroke:var(--fallback-s,oklch(var(--s)/0.5))}.hover\:stroke-secondary\/60:hover{stroke:var(--fallback-s,oklch(var(--s)/0.6))}.hover\:stroke-secondary\/70:hover{stroke:var(--fallback-s,oklch(var(--s)/0.7))}.hover\:stroke-secondary\/75:hover{stroke:var(--fallback-s,oklch(var(--s)/0.75))}.hover\:stroke-secondary\/80:hover{stroke:var(--fallback-s,oklch(var(--s)/0.8))}.hover\:stroke-secondary\/90:hover{stroke:var(--fallback-s,oklch(var(--s)/0.9))}.hover\:stroke-secondary\/95:hover{stroke:var(--fallback-s,oklch(var(--s)/0.95))}.hover\:stroke-success:hover{stroke:var(--fallback-su,oklch(var(--su)/1))}.hover\:stroke-success-content:hover{stroke:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:stroke-success-content\/0:hover{stroke:var(--fallback-suc,oklch(var(--suc)/0))}.hover\:stroke-success-content\/10:hover{stroke:var(--fallback-suc,oklch(var(--suc)/0.1))}.hover\:stroke-success-content\/100:hover{stroke:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:stroke-success-content\/20:hover{stroke:var(--fallback-suc,oklch(var(--suc)/0.2))}.hover\:stroke-success-content\/25:hover{stroke:var(--fallback-suc,oklch(var(--suc)/0.25))}.hover\:stroke-success-content\/30:hover{stroke:var(--fallback-suc,oklch(var(--suc)/0.3))}.hover\:stroke-success-content\/40:hover{stroke:var(--fallback-suc,oklch(var(--suc)/0.4))}.hover\:stroke-success-content\/5:hover{stroke:var(--fallback-suc,oklch(var(--suc)/0.05))}.hover\:stroke-success-content\/50:hover{stroke:var(--fallback-suc,oklch(var(--suc)/0.5))}.hover\:stroke-success-content\/60:hover{stroke:var(--fallback-suc,oklch(var(--suc)/0.6))}.hover\:stroke-success-content\/70:hover{stroke:var(--fallback-suc,oklch(var(--suc)/0.7))}.hover\:stroke-success-content\/75:hover{stroke:var(--fallback-suc,oklch(var(--suc)/0.75))}.hover\:stroke-success-content\/80:hover{stroke:var(--fallback-suc,oklch(var(--suc)/0.8))}.hover\:stroke-success-content\/90:hover{stroke:var(--fallback-suc,oklch(var(--suc)/0.9))}.hover\:stroke-success-content\/95:hover{stroke:var(--fallback-suc,oklch(var(--suc)/0.95))}.hover\:stroke-success\/0:hover{stroke:var(--fallback-su,oklch(var(--su)/0))}.hover\:stroke-success\/10:hover{stroke:var(--fallback-su,oklch(var(--su)/0.1))}.hover\:stroke-success\/100:hover{stroke:var(--fallback-su,oklch(var(--su)/1))}.hover\:stroke-success\/20:hover{stroke:var(--fallback-su,oklch(var(--su)/0.2))}.hover\:stroke-success\/25:hover{stroke:var(--fallback-su,oklch(var(--su)/0.25))}.hover\:stroke-success\/30:hover{stroke:var(--fallback-su,oklch(var(--su)/0.3))}.hover\:stroke-success\/40:hover{stroke:var(--fallback-su,oklch(var(--su)/0.4))}.hover\:stroke-success\/5:hover{stroke:var(--fallback-su,oklch(var(--su)/0.05))}.hover\:stroke-success\/50:hover{stroke:var(--fallback-su,oklch(var(--su)/0.5))}.hover\:stroke-success\/60:hover{stroke:var(--fallback-su,oklch(var(--su)/0.6))}.hover\:stroke-success\/70:hover{stroke:var(--fallback-su,oklch(var(--su)/0.7))}.hover\:stroke-success\/75:hover{stroke:var(--fallback-su,oklch(var(--su)/0.75))}.hover\:stroke-success\/80:hover{stroke:var(--fallback-su,oklch(var(--su)/0.8))}.hover\:stroke-success\/90:hover{stroke:var(--fallback-su,oklch(var(--su)/0.9))}.hover\:stroke-success\/95:hover{stroke:var(--fallback-su,oklch(var(--su)/0.95))}.hover\:stroke-warning:hover{stroke:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:stroke-warning-content:hover{stroke:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:stroke-warning-content\/0:hover{stroke:var(--fallback-wac,oklch(var(--wac)/0))}.hover\:stroke-warning-content\/10:hover{stroke:var(--fallback-wac,oklch(var(--wac)/0.1))}.hover\:stroke-warning-content\/100:hover{stroke:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:stroke-warning-content\/20:hover{stroke:var(--fallback-wac,oklch(var(--wac)/0.2))}.hover\:stroke-warning-content\/25:hover{stroke:var(--fallback-wac,oklch(var(--wac)/0.25))}.hover\:stroke-warning-content\/30:hover{stroke:var(--fallback-wac,oklch(var(--wac)/0.3))}.hover\:stroke-warning-content\/40:hover{stroke:var(--fallback-wac,oklch(var(--wac)/0.4))}.hover\:stroke-warning-content\/5:hover{stroke:var(--fallback-wac,oklch(var(--wac)/0.05))}.hover\:stroke-warning-content\/50:hover{stroke:var(--fallback-wac,oklch(var(--wac)/0.5))}.hover\:stroke-warning-content\/60:hover{stroke:var(--fallback-wac,oklch(var(--wac)/0.6))}.hover\:stroke-warning-content\/70:hover{stroke:var(--fallback-wac,oklch(var(--wac)/0.7))}.hover\:stroke-warning-content\/75:hover{stroke:var(--fallback-wac,oklch(var(--wac)/0.75))}.hover\:stroke-warning-content\/80:hover{stroke:var(--fallback-wac,oklch(var(--wac)/0.8))}.hover\:stroke-warning-content\/90:hover{stroke:var(--fallback-wac,oklch(var(--wac)/0.9))}.hover\:stroke-warning-content\/95:hover{stroke:var(--fallback-wac,oklch(var(--wac)/0.95))}.hover\:stroke-warning\/0:hover{stroke:var(--fallback-wa,oklch(var(--wa)/0))}.hover\:stroke-warning\/10:hover{stroke:var(--fallback-wa,oklch(var(--wa)/0.1))}.hover\:stroke-warning\/100:hover{stroke:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:stroke-warning\/20:hover{stroke:var(--fallback-wa,oklch(var(--wa)/0.2))}.hover\:stroke-warning\/25:hover{stroke:var(--fallback-wa,oklch(var(--wa)/0.25))}.hover\:stroke-warning\/30:hover{stroke:var(--fallback-wa,oklch(var(--wa)/0.3))}.hover\:stroke-warning\/40:hover{stroke:var(--fallback-wa,oklch(var(--wa)/0.4))}.hover\:stroke-warning\/5:hover{stroke:var(--fallback-wa,oklch(var(--wa)/0.05))}.hover\:stroke-warning\/50:hover{stroke:var(--fallback-wa,oklch(var(--wa)/0.5))}.hover\:stroke-warning\/60:hover{stroke:var(--fallback-wa,oklch(var(--wa)/0.6))}.hover\:stroke-warning\/70:hover{stroke:var(--fallback-wa,oklch(var(--wa)/0.7))}.hover\:stroke-warning\/75:hover{stroke:var(--fallback-wa,oklch(var(--wa)/0.75))}.hover\:stroke-warning\/80:hover{stroke:var(--fallback-wa,oklch(var(--wa)/0.8))}.hover\:stroke-warning\/90:hover{stroke:var(--fallback-wa,oklch(var(--wa)/0.9))}.hover\:stroke-warning\/95:hover{stroke:var(--fallback-wa,oklch(var(--wa)/0.95))}.hover\:text-accent:hover{color:var(--fallback-a,oklch(var(--a)/1))}.hover\:text-accent-content:hover{color:var(--fallback-ac,oklch(var(--ac)/1))}.hover\:text-accent-content\/0:hover{color:var(--fallback-ac,oklch(var(--ac)/0))}.hover\:text-accent-content\/10:hover{color:var(--fallback-ac,oklch(var(--ac)/.1))}.hover\:text-accent-content\/100:hover{color:var(--fallback-ac,oklch(var(--ac)/1))}.hover\:text-accent-content\/20:hover{color:var(--fallback-ac,oklch(var(--ac)/.2))}.hover\:text-accent-content\/25:hover{color:var(--fallback-ac,oklch(var(--ac)/.25))}.hover\:text-accent-content\/30:hover{color:var(--fallback-ac,oklch(var(--ac)/.3))}.hover\:text-accent-content\/40:hover{color:var(--fallback-ac,oklch(var(--ac)/.4))}.hover\:text-accent-content\/5:hover{color:var(--fallback-ac,oklch(var(--ac)/.05))}.hover\:text-accent-content\/50:hover{color:var(--fallback-ac,oklch(var(--ac)/.5))}.hover\:text-accent-content\/60:hover{color:var(--fallback-ac,oklch(var(--ac)/.6))}.hover\:text-accent-content\/70:hover{color:var(--fallback-ac,oklch(var(--ac)/.7))}.hover\:text-accent-content\/75:hover{color:var(--fallback-ac,oklch(var(--ac)/.75))}.hover\:text-accent-content\/80:hover{color:var(--fallback-ac,oklch(var(--ac)/.8))}.hover\:text-accent-content\/90:hover{color:var(--fallback-ac,oklch(var(--ac)/.9))}.hover\:text-accent-content\/95:hover{color:var(--fallback-ac,oklch(var(--ac)/.95))}.hover\:text-accent\/0:hover{color:var(--fallback-a,oklch(var(--a)/0))}.hover\:text-accent\/10:hover{color:var(--fallback-a,oklch(var(--a)/.1))}.hover\:text-accent\/100:hover{color:var(--fallback-a,oklch(var(--a)/1))}.hover\:text-accent\/20:hover{color:var(--fallback-a,oklch(var(--a)/.2))}.hover\:text-accent\/25:hover{color:var(--fallback-a,oklch(var(--a)/.25))}.hover\:text-accent\/30:hover{color:var(--fallback-a,oklch(var(--a)/.3))}.hover\:text-accent\/40:hover{color:var(--fallback-a,oklch(var(--a)/.4))}.hover\:text-accent\/5:hover{color:var(--fallback-a,oklch(var(--a)/.05))}.hover\:text-accent\/50:hover{color:var(--fallback-a,oklch(var(--a)/.5))}.hover\:text-accent\/60:hover{color:var(--fallback-a,oklch(var(--a)/.6))}.hover\:text-accent\/70:hover{color:var(--fallback-a,oklch(var(--a)/.7))}.hover\:text-accent\/75:hover{color:var(--fallback-a,oklch(var(--a)/.75))}.hover\:text-accent\/80:hover{color:var(--fallback-a,oklch(var(--a)/.8))}.hover\:text-accent\/90:hover{color:var(--fallback-a,oklch(var(--a)/.9))}.hover\:text-accent\/95:hover{color:var(--fallback-a,oklch(var(--a)/.95))}.hover\:text-base-100:hover{color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:text-base-100\/0:hover{color:var(--fallback-b1,oklch(var(--b1)/0))}.hover\:text-base-100\/10:hover{color:var(--fallback-b1,oklch(var(--b1)/.1))}.hover\:text-base-100\/100:hover{color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:text-base-100\/20:hover{color:var(--fallback-b1,oklch(var(--b1)/.2))}.hover\:text-base-100\/25:hover{color:var(--fallback-b1,oklch(var(--b1)/.25))}.hover\:text-base-100\/30:hover{color:var(--fallback-b1,oklch(var(--b1)/.3))}.hover\:text-base-100\/40:hover{color:var(--fallback-b1,oklch(var(--b1)/.4))}.hover\:text-base-100\/5:hover{color:var(--fallback-b1,oklch(var(--b1)/.05))}.hover\:text-base-100\/50:hover{color:var(--fallback-b1,oklch(var(--b1)/.5))}.hover\:text-base-100\/60:hover{color:var(--fallback-b1,oklch(var(--b1)/.6))}.hover\:text-base-100\/70:hover{color:var(--fallback-b1,oklch(var(--b1)/.7))}.hover\:text-base-100\/75:hover{color:var(--fallback-b1,oklch(var(--b1)/.75))}.hover\:text-base-100\/80:hover{color:var(--fallback-b1,oklch(var(--b1)/.8))}.hover\:text-base-100\/90:hover{color:var(--fallback-b1,oklch(var(--b1)/.9))}.hover\:text-base-100\/95:hover{color:var(--fallback-b1,oklch(var(--b1)/.95))}.hover\:text-base-200:hover{color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:text-base-200\/0:hover{color:var(--fallback-b2,oklch(var(--b2)/0))}.hover\:text-base-200\/10:hover{color:var(--fallback-b2,oklch(var(--b2)/.1))}.hover\:text-base-200\/100:hover{color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:text-base-200\/20:hover{color:var(--fallback-b2,oklch(var(--b2)/.2))}.hover\:text-base-200\/25:hover{color:var(--fallback-b2,oklch(var(--b2)/.25))}.hover\:text-base-200\/30:hover{color:var(--fallback-b2,oklch(var(--b2)/.3))}.hover\:text-base-200\/40:hover{color:var(--fallback-b2,oklch(var(--b2)/.4))}.hover\:text-base-200\/5:hover{color:var(--fallback-b2,oklch(var(--b2)/.05))}.hover\:text-base-200\/50:hover{color:var(--fallback-b2,oklch(var(--b2)/.5))}.hover\:text-base-200\/60:hover{color:var(--fallback-b2,oklch(var(--b2)/.6))}.hover\:text-base-200\/70:hover{color:var(--fallback-b2,oklch(var(--b2)/.7))}.hover\:text-base-200\/75:hover{color:var(--fallback-b2,oklch(var(--b2)/.75))}.hover\:text-base-200\/80:hover{color:var(--fallback-b2,oklch(var(--b2)/.8))}.hover\:text-base-200\/90:hover{color:var(--fallback-b2,oklch(var(--b2)/.9))}.hover\:text-base-200\/95:hover{color:var(--fallback-b2,oklch(var(--b2)/.95))}.hover\:text-base-300:hover{color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:text-base-300\/0:hover{color:var(--fallback-b3,oklch(var(--b3)/0))}.hover\:text-base-300\/10:hover{color:var(--fallback-b3,oklch(var(--b3)/.1))}.hover\:text-base-300\/100:hover{color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:text-base-300\/20:hover{color:var(--fallback-b3,oklch(var(--b3)/.2))}.hover\:text-base-300\/25:hover{color:var(--fallback-b3,oklch(var(--b3)/.25))}.hover\:text-base-300\/30:hover{color:var(--fallback-b3,oklch(var(--b3)/.3))}.hover\:text-base-300\/40:hover{color:var(--fallback-b3,oklch(var(--b3)/.4))}.hover\:text-base-300\/5:hover{color:var(--fallback-b3,oklch(var(--b3)/.05))}.hover\:text-base-300\/50:hover{color:var(--fallback-b3,oklch(var(--b3)/.5))}.hover\:text-base-300\/60:hover{color:var(--fallback-b3,oklch(var(--b3)/.6))}.hover\:text-base-300\/70:hover{color:var(--fallback-b3,oklch(var(--b3)/.7))}.hover\:text-base-300\/75:hover{color:var(--fallback-b3,oklch(var(--b3)/.75))}.hover\:text-base-300\/80:hover{color:var(--fallback-b3,oklch(var(--b3)/.8))}.hover\:text-base-300\/90:hover{color:var(--fallback-b3,oklch(var(--b3)/.9))}.hover\:text-base-300\/95:hover{color:var(--fallback-b3,oklch(var(--b3)/.95))}.hover\:text-base-content:hover{color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:text-base-content\/0:hover{color:var(--fallback-bc,oklch(var(--bc)/0))}.hover\:text-base-content\/10:hover{color:var(--fallback-bc,oklch(var(--bc)/.1))}.hover\:text-base-content\/100:hover{color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:text-base-content\/20:hover{color:var(--fallback-bc,oklch(var(--bc)/.2))}.hover\:text-base-content\/25:hover{color:var(--fallback-bc,oklch(var(--bc)/.25))}.hover\:text-base-content\/30:hover{color:var(--fallback-bc,oklch(var(--bc)/.3))}.hover\:text-base-content\/40:hover{color:var(--fallback-bc,oklch(var(--bc)/.4))}.hover\:text-base-content\/5:hover{color:var(--fallback-bc,oklch(var(--bc)/.05))}.hover\:text-base-content\/50:hover{color:var(--fallback-bc,oklch(var(--bc)/.5))}.hover\:text-base-content\/60:hover{color:var(--fallback-bc,oklch(var(--bc)/.6))}.hover\:text-base-content\/70:hover{color:var(--fallback-bc,oklch(var(--bc)/.7))}.hover\:text-base-content\/75:hover{color:var(--fallback-bc,oklch(var(--bc)/.75))}.hover\:text-base-content\/80:hover{color:var(--fallback-bc,oklch(var(--bc)/.8))}.hover\:text-base-content\/90:hover{color:var(--fallback-bc,oklch(var(--bc)/.9))}.hover\:text-base-content\/95:hover{color:var(--fallback-bc,oklch(var(--bc)/.95))}.hover\:text-error:hover{color:var(--fallback-er,oklch(var(--er)/1))}.hover\:text-error-content:hover{color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:text-error-content\/0:hover{color:var(--fallback-erc,oklch(var(--erc)/0))}.hover\:text-error-content\/10:hover{color:var(--fallback-erc,oklch(var(--erc)/.1))}.hover\:text-error-content\/100:hover{color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:text-error-content\/20:hover{color:var(--fallback-erc,oklch(var(--erc)/.2))}.hover\:text-error-content\/25:hover{color:var(--fallback-erc,oklch(var(--erc)/.25))}.hover\:text-error-content\/30:hover{color:var(--fallback-erc,oklch(var(--erc)/.3))}.hover\:text-error-content\/40:hover{color:var(--fallback-erc,oklch(var(--erc)/.4))}.hover\:text-error-content\/5:hover{color:var(--fallback-erc,oklch(var(--erc)/.05))}.hover\:text-error-content\/50:hover{color:var(--fallback-erc,oklch(var(--erc)/.5))}.hover\:text-error-content\/60:hover{color:var(--fallback-erc,oklch(var(--erc)/.6))}.hover\:text-error-content\/70:hover{color:var(--fallback-erc,oklch(var(--erc)/.7))}.hover\:text-error-content\/75:hover{color:var(--fallback-erc,oklch(var(--erc)/.75))}.hover\:text-error-content\/80:hover{color:var(--fallback-erc,oklch(var(--erc)/.8))}.hover\:text-error-content\/90:hover{color:var(--fallback-erc,oklch(var(--erc)/.9))}.hover\:text-error-content\/95:hover{color:var(--fallback-erc,oklch(var(--erc)/.95))}.hover\:text-error\/0:hover{color:var(--fallback-er,oklch(var(--er)/0))}.hover\:text-error\/10:hover{color:var(--fallback-er,oklch(var(--er)/.1))}.hover\:text-error\/100:hover{color:var(--fallback-er,oklch(var(--er)/1))}.hover\:text-error\/20:hover{color:var(--fallback-er,oklch(var(--er)/.2))}.hover\:text-error\/25:hover{color:var(--fallback-er,oklch(var(--er)/.25))}.hover\:text-error\/30:hover{color:var(--fallback-er,oklch(var(--er)/.3))}.hover\:text-error\/40:hover{color:var(--fallback-er,oklch(var(--er)/.4))}.hover\:text-error\/5:hover{color:var(--fallback-er,oklch(var(--er)/.05))}.hover\:text-error\/50:hover{color:var(--fallback-er,oklch(var(--er)/.5))}.hover\:text-error\/60:hover{color:var(--fallback-er,oklch(var(--er)/.6))}.hover\:text-error\/70:hover{color:var(--fallback-er,oklch(var(--er)/.7))}.hover\:text-error\/75:hover{color:var(--fallback-er,oklch(var(--er)/.75))}.hover\:text-error\/80:hover{color:var(--fallback-er,oklch(var(--er)/.8))}.hover\:text-error\/90:hover{color:var(--fallback-er,oklch(var(--er)/.9))}.hover\:text-error\/95:hover{color:var(--fallback-er,oklch(var(--er)/.95))}.hover\:text-info:hover{color:var(--fallback-in,oklch(var(--in)/1))}.hover\:text-info-content:hover{color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:text-info-content\/0:hover{color:var(--fallback-inc,oklch(var(--inc)/0))}.hover\:text-info-content\/10:hover{color:var(--fallback-inc,oklch(var(--inc)/.1))}.hover\:text-info-content\/100:hover{color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:text-info-content\/20:hover{color:var(--fallback-inc,oklch(var(--inc)/.2))}.hover\:text-info-content\/25:hover{color:var(--fallback-inc,oklch(var(--inc)/.25))}.hover\:text-info-content\/30:hover{color:var(--fallback-inc,oklch(var(--inc)/.3))}.hover\:text-info-content\/40:hover{color:var(--fallback-inc,oklch(var(--inc)/.4))}.hover\:text-info-content\/5:hover{color:var(--fallback-inc,oklch(var(--inc)/.05))}.hover\:text-info-content\/50:hover{color:var(--fallback-inc,oklch(var(--inc)/.5))}.hover\:text-info-content\/60:hover{color:var(--fallback-inc,oklch(var(--inc)/.6))}.hover\:text-info-content\/70:hover{color:var(--fallback-inc,oklch(var(--inc)/.7))}.hover\:text-info-content\/75:hover{color:var(--fallback-inc,oklch(var(--inc)/.75))}.hover\:text-info-content\/80:hover{color:var(--fallback-inc,oklch(var(--inc)/.8))}.hover\:text-info-content\/90:hover{color:var(--fallback-inc,oklch(var(--inc)/.9))}.hover\:text-info-content\/95:hover{color:var(--fallback-inc,oklch(var(--inc)/.95))}.hover\:text-info\/0:hover{color:var(--fallback-in,oklch(var(--in)/0))}.hover\:text-info\/10:hover{color:var(--fallback-in,oklch(var(--in)/.1))}.hover\:text-info\/100:hover{color:var(--fallback-in,oklch(var(--in)/1))}.hover\:text-info\/20:hover{color:var(--fallback-in,oklch(var(--in)/.2))}.hover\:text-info\/25:hover{color:var(--fallback-in,oklch(var(--in)/.25))}.hover\:text-info\/30:hover{color:var(--fallback-in,oklch(var(--in)/.3))}.hover\:text-info\/40:hover{color:var(--fallback-in,oklch(var(--in)/.4))}.hover\:text-info\/5:hover{color:var(--fallback-in,oklch(var(--in)/.05))}.hover\:text-info\/50:hover{color:var(--fallback-in,oklch(var(--in)/.5))}.hover\:text-info\/60:hover{color:var(--fallback-in,oklch(var(--in)/.6))}.hover\:text-info\/70:hover{color:var(--fallback-in,oklch(var(--in)/.7))}.hover\:text-info\/75:hover{color:var(--fallback-in,oklch(var(--in)/.75))}.hover\:text-info\/80:hover{color:var(--fallback-in,oklch(var(--in)/.8))}.hover\:text-info\/90:hover{color:var(--fallback-in,oklch(var(--in)/.9))}.hover\:text-info\/95:hover{color:var(--fallback-in,oklch(var(--in)/.95))}.hover\:text-neutral:hover{color:var(--fallback-n,oklch(var(--n)/1))}.hover\:text-neutral-content:hover{color:var(--fallback-nc,oklch(var(--nc)/1))}.hover\:text-neutral-content\/0:hover{color:var(--fallback-nc,oklch(var(--nc)/0))}.hover\:text-neutral-content\/10:hover{color:var(--fallback-nc,oklch(var(--nc)/.1))}.hover\:text-neutral-content\/100:hover{color:var(--fallback-nc,oklch(var(--nc)/1))}.hover\:text-neutral-content\/20:hover{color:var(--fallback-nc,oklch(var(--nc)/.2))}.hover\:text-neutral-content\/25:hover{color:var(--fallback-nc,oklch(var(--nc)/.25))}.hover\:text-neutral-content\/30:hover{color:var(--fallback-nc,oklch(var(--nc)/.3))}.hover\:text-neutral-content\/40:hover{color:var(--fallback-nc,oklch(var(--nc)/.4))}.hover\:text-neutral-content\/5:hover{color:var(--fallback-nc,oklch(var(--nc)/.05))}.hover\:text-neutral-content\/50:hover{color:var(--fallback-nc,oklch(var(--nc)/.5))}.hover\:text-neutral-content\/60:hover{color:var(--fallback-nc,oklch(var(--nc)/.6))}.hover\:text-neutral-content\/70:hover{color:var(--fallback-nc,oklch(var(--nc)/.7))}.hover\:text-neutral-content\/75:hover{color:var(--fallback-nc,oklch(var(--nc)/.75))}.hover\:text-neutral-content\/80:hover{color:var(--fallback-nc,oklch(var(--nc)/.8))}.hover\:text-neutral-content\/90:hover{color:var(--fallback-nc,oklch(var(--nc)/.9))}.hover\:text-neutral-content\/95:hover{color:var(--fallback-nc,oklch(var(--nc)/.95))}.hover\:text-neutral\/0:hover{color:var(--fallback-n,oklch(var(--n)/0))}.hover\:text-neutral\/10:hover{color:var(--fallback-n,oklch(var(--n)/.1))}.hover\:text-neutral\/100:hover{color:var(--fallback-n,oklch(var(--n)/1))}.hover\:text-neutral\/20:hover{color:var(--fallback-n,oklch(var(--n)/.2))}.hover\:text-neutral\/25:hover{color:var(--fallback-n,oklch(var(--n)/.25))}.hover\:text-neutral\/30:hover{color:var(--fallback-n,oklch(var(--n)/.3))}.hover\:text-neutral\/40:hover{color:var(--fallback-n,oklch(var(--n)/.4))}.hover\:text-neutral\/5:hover{color:var(--fallback-n,oklch(var(--n)/.05))}.hover\:text-neutral\/50:hover{color:var(--fallback-n,oklch(var(--n)/.5))}.hover\:text-neutral\/60:hover{color:var(--fallback-n,oklch(var(--n)/.6))}.hover\:text-neutral\/70:hover{color:var(--fallback-n,oklch(var(--n)/.7))}.hover\:text-neutral\/75:hover{color:var(--fallback-n,oklch(var(--n)/.75))}.hover\:text-neutral\/80:hover{color:var(--fallback-n,oklch(var(--n)/.8))}.hover\:text-neutral\/90:hover{color:var(--fallback-n,oklch(var(--n)/.9))}.hover\:text-neutral\/95:hover{color:var(--fallback-n,oklch(var(--n)/.95))}.hover\:text-primary:hover{color:var(--fallback-p,oklch(var(--p)/1))}.hover\:text-primary-content:hover{color:var(--fallback-pc,oklch(var(--pc)/1))}.hover\:text-primary-content\/0:hover{color:var(--fallback-pc,oklch(var(--pc)/0))}.hover\:text-primary-content\/10:hover{color:var(--fallback-pc,oklch(var(--pc)/.1))}.hover\:text-primary-content\/100:hover{color:var(--fallback-pc,oklch(var(--pc)/1))}.hover\:text-primary-content\/20:hover{color:var(--fallback-pc,oklch(var(--pc)/.2))}.hover\:text-primary-content\/25:hover{color:var(--fallback-pc,oklch(var(--pc)/.25))}.hover\:text-primary-content\/30:hover{color:var(--fallback-pc,oklch(var(--pc)/.3))}.hover\:text-primary-content\/40:hover{color:var(--fallback-pc,oklch(var(--pc)/.4))}.hover\:text-primary-content\/5:hover{color:var(--fallback-pc,oklch(var(--pc)/.05))}.hover\:text-primary-content\/50:hover{color:var(--fallback-pc,oklch(var(--pc)/.5))}.hover\:text-primary-content\/60:hover{color:var(--fallback-pc,oklch(var(--pc)/.6))}.hover\:text-primary-content\/70:hover{color:var(--fallback-pc,oklch(var(--pc)/.7))}.hover\:text-primary-content\/75:hover{color:var(--fallback-pc,oklch(var(--pc)/.75))}.hover\:text-primary-content\/80:hover{color:var(--fallback-pc,oklch(var(--pc)/.8))}.hover\:text-primary-content\/90:hover{color:var(--fallback-pc,oklch(var(--pc)/.9))}.hover\:text-primary-content\/95:hover{color:var(--fallback-pc,oklch(var(--pc)/.95))}.hover\:text-primary\/0:hover{color:var(--fallback-p,oklch(var(--p)/0))}.hover\:text-primary\/10:hover{color:var(--fallback-p,oklch(var(--p)/.1))}.hover\:text-primary\/100:hover{color:var(--fallback-p,oklch(var(--p)/1))}.hover\:text-primary\/20:hover{color:var(--fallback-p,oklch(var(--p)/.2))}.hover\:text-primary\/25:hover{color:var(--fallback-p,oklch(var(--p)/.25))}.hover\:text-primary\/30:hover{color:var(--fallback-p,oklch(var(--p)/.3))}.hover\:text-primary\/40:hover{color:var(--fallback-p,oklch(var(--p)/.4))}.hover\:text-primary\/5:hover{color:var(--fallback-p,oklch(var(--p)/.05))}.hover\:text-primary\/50:hover{color:var(--fallback-p,oklch(var(--p)/.5))}.hover\:text-primary\/60:hover{color:var(--fallback-p,oklch(var(--p)/.6))}.hover\:text-primary\/70:hover{color:var(--fallback-p,oklch(var(--p)/.7))}.hover\:text-primary\/75:hover{color:var(--fallback-p,oklch(var(--p)/.75))}.hover\:text-primary\/80:hover{color:var(--fallback-p,oklch(var(--p)/.8))}.hover\:text-primary\/90:hover{color:var(--fallback-p,oklch(var(--p)/.9))}.hover\:text-primary\/95:hover{color:var(--fallback-p,oklch(var(--p)/.95))}.hover\:text-secondary:hover{color:var(--fallback-s,oklch(var(--s)/1))}.hover\:text-secondary-content:hover{color:var(--fallback-sc,oklch(var(--sc)/1))}.hover\:text-secondary-content\/0:hover{color:var(--fallback-sc,oklch(var(--sc)/0))}.hover\:text-secondary-content\/10:hover{color:var(--fallback-sc,oklch(var(--sc)/.1))}.hover\:text-secondary-content\/100:hover{color:var(--fallback-sc,oklch(var(--sc)/1))}.hover\:text-secondary-content\/20:hover{color:var(--fallback-sc,oklch(var(--sc)/.2))}.hover\:text-secondary-content\/25:hover{color:var(--fallback-sc,oklch(var(--sc)/.25))}.hover\:text-secondary-content\/30:hover{color:var(--fallback-sc,oklch(var(--sc)/.3))}.hover\:text-secondary-content\/40:hover{color:var(--fallback-sc,oklch(var(--sc)/.4))}.hover\:text-secondary-content\/5:hover{color:var(--fallback-sc,oklch(var(--sc)/.05))}.hover\:text-secondary-content\/50:hover{color:var(--fallback-sc,oklch(var(--sc)/.5))}.hover\:text-secondary-content\/60:hover{color:var(--fallback-sc,oklch(var(--sc)/.6))}.hover\:text-secondary-content\/70:hover{color:var(--fallback-sc,oklch(var(--sc)/.7))}.hover\:text-secondary-content\/75:hover{color:var(--fallback-sc,oklch(var(--sc)/.75))}.hover\:text-secondary-content\/80:hover{color:var(--fallback-sc,oklch(var(--sc)/.8))}.hover\:text-secondary-content\/90:hover{color:var(--fallback-sc,oklch(var(--sc)/.9))}.hover\:text-secondary-content\/95:hover{color:var(--fallback-sc,oklch(var(--sc)/.95))}.hover\:text-secondary\/0:hover{color:var(--fallback-s,oklch(var(--s)/0))}.hover\:text-secondary\/10:hover{color:var(--fallback-s,oklch(var(--s)/.1))}.hover\:text-secondary\/100:hover{color:var(--fallback-s,oklch(var(--s)/1))}.hover\:text-secondary\/20:hover{color:var(--fallback-s,oklch(var(--s)/.2))}.hover\:text-secondary\/25:hover{color:var(--fallback-s,oklch(var(--s)/.25))}.hover\:text-secondary\/30:hover{color:var(--fallback-s,oklch(var(--s)/.3))}.hover\:text-secondary\/40:hover{color:var(--fallback-s,oklch(var(--s)/.4))}.hover\:text-secondary\/5:hover{color:var(--fallback-s,oklch(var(--s)/.05))}.hover\:text-secondary\/50:hover{color:var(--fallback-s,oklch(var(--s)/.5))}.hover\:text-secondary\/60:hover{color:var(--fallback-s,oklch(var(--s)/.6))}.hover\:text-secondary\/70:hover{color:var(--fallback-s,oklch(var(--s)/.7))}.hover\:text-secondary\/75:hover{color:var(--fallback-s,oklch(var(--s)/.75))}.hover\:text-secondary\/80:hover{color:var(--fallback-s,oklch(var(--s)/.8))}.hover\:text-secondary\/90:hover{color:var(--fallback-s,oklch(var(--s)/.9))}.hover\:text-secondary\/95:hover{color:var(--fallback-s,oklch(var(--s)/.95))}.hover\:text-success:hover{color:var(--fallback-su,oklch(var(--su)/1))}.hover\:text-success-content:hover{color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:text-success-content\/0:hover{color:var(--fallback-suc,oklch(var(--suc)/0))}.hover\:text-success-content\/10:hover{color:var(--fallback-suc,oklch(var(--suc)/.1))}.hover\:text-success-content\/100:hover{color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:text-success-content\/20:hover{color:var(--fallback-suc,oklch(var(--suc)/.2))}.hover\:text-success-content\/25:hover{color:var(--fallback-suc,oklch(var(--suc)/.25))}.hover\:text-success-content\/30:hover{color:var(--fallback-suc,oklch(var(--suc)/.3))}.hover\:text-success-content\/40:hover{color:var(--fallback-suc,oklch(var(--suc)/.4))}.hover\:text-success-content\/5:hover{color:var(--fallback-suc,oklch(var(--suc)/.05))}.hover\:text-success-content\/50:hover{color:var(--fallback-suc,oklch(var(--suc)/.5))}.hover\:text-success-content\/60:hover{color:var(--fallback-suc,oklch(var(--suc)/.6))}.hover\:text-success-content\/70:hover{color:var(--fallback-suc,oklch(var(--suc)/.7))}.hover\:text-success-content\/75:hover{color:var(--fallback-suc,oklch(var(--suc)/.75))}.hover\:text-success-content\/80:hover{color:var(--fallback-suc,oklch(var(--suc)/.8))}.hover\:text-success-content\/90:hover{color:var(--fallback-suc,oklch(var(--suc)/.9))}.hover\:text-success-content\/95:hover{color:var(--fallback-suc,oklch(var(--suc)/.95))}.hover\:text-success\/0:hover{color:var(--fallback-su,oklch(var(--su)/0))}.hover\:text-success\/10:hover{color:var(--fallback-su,oklch(var(--su)/.1))}.hover\:text-success\/100:hover{color:var(--fallback-su,oklch(var(--su)/1))}.hover\:text-success\/20:hover{color:var(--fallback-su,oklch(var(--su)/.2))}.hover\:text-success\/25:hover{color:var(--fallback-su,oklch(var(--su)/.25))}.hover\:text-success\/30:hover{color:var(--fallback-su,oklch(var(--su)/.3))}.hover\:text-success\/40:hover{color:var(--fallback-su,oklch(var(--su)/.4))}.hover\:text-success\/5:hover{color:var(--fallback-su,oklch(var(--su)/.05))}.hover\:text-success\/50:hover{color:var(--fallback-su,oklch(var(--su)/.5))}.hover\:text-success\/60:hover{color:var(--fallback-su,oklch(var(--su)/.6))}.hover\:text-success\/70:hover{color:var(--fallback-su,oklch(var(--su)/.7))}.hover\:text-success\/75:hover{color:var(--fallback-su,oklch(var(--su)/.75))}.hover\:text-success\/80:hover{color:var(--fallback-su,oklch(var(--su)/.8))}.hover\:text-success\/90:hover{color:var(--fallback-su,oklch(var(--su)/.9))}.hover\:text-success\/95:hover{color:var(--fallback-su,oklch(var(--su)/.95))}.hover\:text-warning:hover{color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:text-warning-content:hover{color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:text-warning-content\/0:hover{color:var(--fallback-wac,oklch(var(--wac)/0))}.hover\:text-warning-content\/10:hover{color:var(--fallback-wac,oklch(var(--wac)/.1))}.hover\:text-warning-content\/100:hover{color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:text-warning-content\/20:hover{color:var(--fallback-wac,oklch(var(--wac)/.2))}.hover\:text-warning-content\/25:hover{color:var(--fallback-wac,oklch(var(--wac)/.25))}.hover\:text-warning-content\/30:hover{color:var(--fallback-wac,oklch(var(--wac)/.3))}.hover\:text-warning-content\/40:hover{color:var(--fallback-wac,oklch(var(--wac)/.4))}.hover\:text-warning-content\/5:hover{color:var(--fallback-wac,oklch(var(--wac)/.05))}.hover\:text-warning-content\/50:hover{color:var(--fallback-wac,oklch(var(--wac)/.5))}.hover\:text-warning-content\/60:hover{color:var(--fallback-wac,oklch(var(--wac)/.6))}.hover\:text-warning-content\/70:hover{color:var(--fallback-wac,oklch(var(--wac)/.7))}.hover\:text-warning-content\/75:hover{color:var(--fallback-wac,oklch(var(--wac)/.75))}.hover\:text-warning-content\/80:hover{color:var(--fallback-wac,oklch(var(--wac)/.8))}.hover\:text-warning-content\/90:hover{color:var(--fallback-wac,oklch(var(--wac)/.9))}.hover\:text-warning-content\/95:hover{color:var(--fallback-wac,oklch(var(--wac)/.95))}.hover\:text-warning\/0:hover{color:var(--fallback-wa,oklch(var(--wa)/0))}.hover\:text-warning\/10:hover{color:var(--fallback-wa,oklch(var(--wa)/.1))}.hover\:text-warning\/100:hover{color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:text-warning\/20:hover{color:var(--fallback-wa,oklch(var(--wa)/.2))}.hover\:text-warning\/25:hover{color:var(--fallback-wa,oklch(var(--wa)/.25))}.hover\:text-warning\/30:hover{color:var(--fallback-wa,oklch(var(--wa)/.3))}.hover\:text-warning\/40:hover{color:var(--fallback-wa,oklch(var(--wa)/.4))}.hover\:text-warning\/5:hover{color:var(--fallback-wa,oklch(var(--wa)/.05))}.hover\:text-warning\/50:hover{color:var(--fallback-wa,oklch(var(--wa)/.5))}.hover\:text-warning\/60:hover{color:var(--fallback-wa,oklch(var(--wa)/.6))}.hover\:text-warning\/70:hover{color:var(--fallback-wa,oklch(var(--wa)/.7))}.hover\:text-warning\/75:hover{color:var(--fallback-wa,oklch(var(--wa)/.75))}.hover\:text-warning\/80:hover{color:var(--fallback-wa,oklch(var(--wa)/.8))}.hover\:text-warning\/90:hover{color:var(--fallback-wa,oklch(var(--wa)/.9))}.hover\:text-warning\/95:hover{color:var(--fallback-wa,oklch(var(--wa)/.95))}.hover\:placeholder-base-100:hover::placeholder{color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:placeholder-base-100\/0:hover::placeholder{color:var(--fallback-b1,oklch(var(--b1)/0))}.hover\:placeholder-base-100\/10:hover::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.1))}.hover\:placeholder-base-100\/100:hover::placeholder{color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:placeholder-base-100\/20:hover::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.2))}.hover\:placeholder-base-100\/25:hover::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.25))}.hover\:placeholder-base-100\/30:hover::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.3))}.hover\:placeholder-base-100\/40:hover::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.4))}.hover\:placeholder-base-100\/5:hover::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.05))}.hover\:placeholder-base-100\/50:hover::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.5))}.hover\:placeholder-base-100\/60:hover::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.6))}.hover\:placeholder-base-100\/70:hover::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.7))}.hover\:placeholder-base-100\/75:hover::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.75))}.hover\:placeholder-base-100\/80:hover::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.8))}.hover\:placeholder-base-100\/90:hover::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.9))}.hover\:placeholder-base-100\/95:hover::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.95))}.hover\:placeholder-base-200:hover::placeholder{color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:placeholder-base-200\/0:hover::placeholder{color:var(--fallback-b2,oklch(var(--b2)/0))}.hover\:placeholder-base-200\/10:hover::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.1))}.hover\:placeholder-base-200\/100:hover::placeholder{color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:placeholder-base-200\/20:hover::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.2))}.hover\:placeholder-base-200\/25:hover::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.25))}.hover\:placeholder-base-200\/30:hover::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.3))}.hover\:placeholder-base-200\/40:hover::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.4))}.hover\:placeholder-base-200\/5:hover::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.05))}.hover\:placeholder-base-200\/50:hover::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.5))}.hover\:placeholder-base-200\/60:hover::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.6))}.hover\:placeholder-base-200\/70:hover::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.7))}.hover\:placeholder-base-200\/75:hover::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.75))}.hover\:placeholder-base-200\/80:hover::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.8))}.hover\:placeholder-base-200\/90:hover::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.9))}.hover\:placeholder-base-200\/95:hover::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.95))}.hover\:placeholder-base-300:hover::placeholder{color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:placeholder-base-300\/0:hover::placeholder{color:var(--fallback-b3,oklch(var(--b3)/0))}.hover\:placeholder-base-300\/10:hover::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.1))}.hover\:placeholder-base-300\/100:hover::placeholder{color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:placeholder-base-300\/20:hover::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.2))}.hover\:placeholder-base-300\/25:hover::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.25))}.hover\:placeholder-base-300\/30:hover::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.3))}.hover\:placeholder-base-300\/40:hover::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.4))}.hover\:placeholder-base-300\/5:hover::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.05))}.hover\:placeholder-base-300\/50:hover::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.5))}.hover\:placeholder-base-300\/60:hover::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.6))}.hover\:placeholder-base-300\/70:hover::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.7))}.hover\:placeholder-base-300\/75:hover::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.75))}.hover\:placeholder-base-300\/80:hover::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.8))}.hover\:placeholder-base-300\/90:hover::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.9))}.hover\:placeholder-base-300\/95:hover::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.95))}.hover\:placeholder-base-content:hover::placeholder{color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:placeholder-base-content\/0:hover::placeholder{color:var(--fallback-bc,oklch(var(--bc)/0))}.hover\:placeholder-base-content\/10:hover::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.1))}.hover\:placeholder-base-content\/100:hover::placeholder{color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:placeholder-base-content\/20:hover::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.2))}.hover\:placeholder-base-content\/25:hover::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.25))}.hover\:placeholder-base-content\/30:hover::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.3))}.hover\:placeholder-base-content\/40:hover::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.4))}.hover\:placeholder-base-content\/5:hover::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.05))}.hover\:placeholder-base-content\/50:hover::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.5))}.hover\:placeholder-base-content\/60:hover::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.6))}.hover\:placeholder-base-content\/70:hover::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.7))}.hover\:placeholder-base-content\/75:hover::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.75))}.hover\:placeholder-base-content\/80:hover::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.8))}.hover\:placeholder-base-content\/90:hover::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.9))}.hover\:placeholder-base-content\/95:hover::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.95))}.hover\:placeholder-error:hover::placeholder{color:var(--fallback-er,oklch(var(--er)/1))}.hover\:placeholder-error-content:hover::placeholder{color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:placeholder-error-content\/0:hover::placeholder{color:var(--fallback-erc,oklch(var(--erc)/0))}.hover\:placeholder-error-content\/10:hover::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.1))}.hover\:placeholder-error-content\/100:hover::placeholder{color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:placeholder-error-content\/20:hover::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.2))}.hover\:placeholder-error-content\/25:hover::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.25))}.hover\:placeholder-error-content\/30:hover::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.3))}.hover\:placeholder-error-content\/40:hover::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.4))}.hover\:placeholder-error-content\/5:hover::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.05))}.hover\:placeholder-error-content\/50:hover::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.5))}.hover\:placeholder-error-content\/60:hover::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.6))}.hover\:placeholder-error-content\/70:hover::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.7))}.hover\:placeholder-error-content\/75:hover::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.75))}.hover\:placeholder-error-content\/80:hover::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.8))}.hover\:placeholder-error-content\/90:hover::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.9))}.hover\:placeholder-error-content\/95:hover::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.95))}.hover\:placeholder-error\/0:hover::placeholder{color:var(--fallback-er,oklch(var(--er)/0))}.hover\:placeholder-error\/10:hover::placeholder{color:var(--fallback-er,oklch(var(--er)/.1))}.hover\:placeholder-error\/100:hover::placeholder{color:var(--fallback-er,oklch(var(--er)/1))}.hover\:placeholder-error\/20:hover::placeholder{color:var(--fallback-er,oklch(var(--er)/.2))}.hover\:placeholder-error\/25:hover::placeholder{color:var(--fallback-er,oklch(var(--er)/.25))}.hover\:placeholder-error\/30:hover::placeholder{color:var(--fallback-er,oklch(var(--er)/.3))}.hover\:placeholder-error\/40:hover::placeholder{color:var(--fallback-er,oklch(var(--er)/.4))}.hover\:placeholder-error\/5:hover::placeholder{color:var(--fallback-er,oklch(var(--er)/.05))}.hover\:placeholder-error\/50:hover::placeholder{color:var(--fallback-er,oklch(var(--er)/.5))}.hover\:placeholder-error\/60:hover::placeholder{color:var(--fallback-er,oklch(var(--er)/.6))}.hover\:placeholder-error\/70:hover::placeholder{color:var(--fallback-er,oklch(var(--er)/.7))}.hover\:placeholder-error\/75:hover::placeholder{color:var(--fallback-er,oklch(var(--er)/.75))}.hover\:placeholder-error\/80:hover::placeholder{color:var(--fallback-er,oklch(var(--er)/.8))}.hover\:placeholder-error\/90:hover::placeholder{color:var(--fallback-er,oklch(var(--er)/.9))}.hover\:placeholder-error\/95:hover::placeholder{color:var(--fallback-er,oklch(var(--er)/.95))}.hover\:placeholder-info:hover::placeholder{color:var(--fallback-in,oklch(var(--in)/1))}.hover\:placeholder-info-content:hover::placeholder{color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:placeholder-info-content\/0:hover::placeholder{color:var(--fallback-inc,oklch(var(--inc)/0))}.hover\:placeholder-info-content\/10:hover::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.1))}.hover\:placeholder-info-content\/100:hover::placeholder{color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:placeholder-info-content\/20:hover::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.2))}.hover\:placeholder-info-content\/25:hover::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.25))}.hover\:placeholder-info-content\/30:hover::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.3))}.hover\:placeholder-info-content\/40:hover::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.4))}.hover\:placeholder-info-content\/5:hover::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.05))}.hover\:placeholder-info-content\/50:hover::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.5))}.hover\:placeholder-info-content\/60:hover::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.6))}.hover\:placeholder-info-content\/70:hover::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.7))}.hover\:placeholder-info-content\/75:hover::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.75))}.hover\:placeholder-info-content\/80:hover::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.8))}.hover\:placeholder-info-content\/90:hover::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.9))}.hover\:placeholder-info-content\/95:hover::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.95))}.hover\:placeholder-info\/0:hover::placeholder{color:var(--fallback-in,oklch(var(--in)/0))}.hover\:placeholder-info\/10:hover::placeholder{color:var(--fallback-in,oklch(var(--in)/.1))}.hover\:placeholder-info\/100:hover::placeholder{color:var(--fallback-in,oklch(var(--in)/1))}.hover\:placeholder-info\/20:hover::placeholder{color:var(--fallback-in,oklch(var(--in)/.2))}.hover\:placeholder-info\/25:hover::placeholder{color:var(--fallback-in,oklch(var(--in)/.25))}.hover\:placeholder-info\/30:hover::placeholder{color:var(--fallback-in,oklch(var(--in)/.3))}.hover\:placeholder-info\/40:hover::placeholder{color:var(--fallback-in,oklch(var(--in)/.4))}.hover\:placeholder-info\/5:hover::placeholder{color:var(--fallback-in,oklch(var(--in)/.05))}.hover\:placeholder-info\/50:hover::placeholder{color:var(--fallback-in,oklch(var(--in)/.5))}.hover\:placeholder-info\/60:hover::placeholder{color:var(--fallback-in,oklch(var(--in)/.6))}.hover\:placeholder-info\/70:hover::placeholder{color:var(--fallback-in,oklch(var(--in)/.7))}.hover\:placeholder-info\/75:hover::placeholder{color:var(--fallback-in,oklch(var(--in)/.75))}.hover\:placeholder-info\/80:hover::placeholder{color:var(--fallback-in,oklch(var(--in)/.8))}.hover\:placeholder-info\/90:hover::placeholder{color:var(--fallback-in,oklch(var(--in)/.9))}.hover\:placeholder-info\/95:hover::placeholder{color:var(--fallback-in,oklch(var(--in)/.95))}.hover\:placeholder-success:hover::placeholder{color:var(--fallback-su,oklch(var(--su)/1))}.hover\:placeholder-success-content:hover::placeholder{color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:placeholder-success-content\/0:hover::placeholder{color:var(--fallback-suc,oklch(var(--suc)/0))}.hover\:placeholder-success-content\/10:hover::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.1))}.hover\:placeholder-success-content\/100:hover::placeholder{color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:placeholder-success-content\/20:hover::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.2))}.hover\:placeholder-success-content\/25:hover::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.25))}.hover\:placeholder-success-content\/30:hover::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.3))}.hover\:placeholder-success-content\/40:hover::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.4))}.hover\:placeholder-success-content\/5:hover::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.05))}.hover\:placeholder-success-content\/50:hover::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.5))}.hover\:placeholder-success-content\/60:hover::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.6))}.hover\:placeholder-success-content\/70:hover::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.7))}.hover\:placeholder-success-content\/75:hover::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.75))}.hover\:placeholder-success-content\/80:hover::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.8))}.hover\:placeholder-success-content\/90:hover::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.9))}.hover\:placeholder-success-content\/95:hover::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.95))}.hover\:placeholder-success\/0:hover::placeholder{color:var(--fallback-su,oklch(var(--su)/0))}.hover\:placeholder-success\/10:hover::placeholder{color:var(--fallback-su,oklch(var(--su)/.1))}.hover\:placeholder-success\/100:hover::placeholder{color:var(--fallback-su,oklch(var(--su)/1))}.hover\:placeholder-success\/20:hover::placeholder{color:var(--fallback-su,oklch(var(--su)/.2))}.hover\:placeholder-success\/25:hover::placeholder{color:var(--fallback-su,oklch(var(--su)/.25))}.hover\:placeholder-success\/30:hover::placeholder{color:var(--fallback-su,oklch(var(--su)/.3))}.hover\:placeholder-success\/40:hover::placeholder{color:var(--fallback-su,oklch(var(--su)/.4))}.hover\:placeholder-success\/5:hover::placeholder{color:var(--fallback-su,oklch(var(--su)/.05))}.hover\:placeholder-success\/50:hover::placeholder{color:var(--fallback-su,oklch(var(--su)/.5))}.hover\:placeholder-success\/60:hover::placeholder{color:var(--fallback-su,oklch(var(--su)/.6))}.hover\:placeholder-success\/70:hover::placeholder{color:var(--fallback-su,oklch(var(--su)/.7))}.hover\:placeholder-success\/75:hover::placeholder{color:var(--fallback-su,oklch(var(--su)/.75))}.hover\:placeholder-success\/80:hover::placeholder{color:var(--fallback-su,oklch(var(--su)/.8))}.hover\:placeholder-success\/90:hover::placeholder{color:var(--fallback-su,oklch(var(--su)/.9))}.hover\:placeholder-success\/95:hover::placeholder{color:var(--fallback-su,oklch(var(--su)/.95))}.hover\:placeholder-warning:hover::placeholder{color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:placeholder-warning-content:hover::placeholder{color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:placeholder-warning-content\/0:hover::placeholder{color:var(--fallback-wac,oklch(var(--wac)/0))}.hover\:placeholder-warning-content\/10:hover::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.1))}.hover\:placeholder-warning-content\/100:hover::placeholder{color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:placeholder-warning-content\/20:hover::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.2))}.hover\:placeholder-warning-content\/25:hover::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.25))}.hover\:placeholder-warning-content\/30:hover::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.3))}.hover\:placeholder-warning-content\/40:hover::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.4))}.hover\:placeholder-warning-content\/5:hover::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.05))}.hover\:placeholder-warning-content\/50:hover::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.5))}.hover\:placeholder-warning-content\/60:hover::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.6))}.hover\:placeholder-warning-content\/70:hover::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.7))}.hover\:placeholder-warning-content\/75:hover::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.75))}.hover\:placeholder-warning-content\/80:hover::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.8))}.hover\:placeholder-warning-content\/90:hover::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.9))}.hover\:placeholder-warning-content\/95:hover::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.95))}.hover\:placeholder-warning\/0:hover::placeholder{color:var(--fallback-wa,oklch(var(--wa)/0))}.hover\:placeholder-warning\/10:hover::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.1))}.hover\:placeholder-warning\/100:hover::placeholder{color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:placeholder-warning\/20:hover::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.2))}.hover\:placeholder-warning\/25:hover::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.25))}.hover\:placeholder-warning\/30:hover::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.3))}.hover\:placeholder-warning\/40:hover::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.4))}.hover\:placeholder-warning\/5:hover::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.05))}.hover\:placeholder-warning\/50:hover::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.5))}.hover\:placeholder-warning\/60:hover::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.6))}.hover\:placeholder-warning\/70:hover::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.7))}.hover\:placeholder-warning\/75:hover::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.75))}.hover\:placeholder-warning\/80:hover::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.8))}.hover\:placeholder-warning\/90:hover::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.9))}.hover\:placeholder-warning\/95:hover::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.95))}.hover\:outline-accent:hover{outline-color:var(--fallback-a,oklch(var(--a)/1))}.hover\:outline-accent-content:hover{outline-color:var(--fallback-ac,oklch(var(--ac)/1))}.hover\:outline-accent-content\/0:hover{outline-color:var(--fallback-ac,oklch(var(--ac)/0))}.hover\:outline-accent-content\/10:hover{outline-color:var(--fallback-ac,oklch(var(--ac)/.1))}.hover\:outline-accent-content\/100:hover{outline-color:var(--fallback-ac,oklch(var(--ac)/1))}.hover\:outline-accent-content\/20:hover{outline-color:var(--fallback-ac,oklch(var(--ac)/.2))}.hover\:outline-accent-content\/25:hover{outline-color:var(--fallback-ac,oklch(var(--ac)/.25))}.hover\:outline-accent-content\/30:hover{outline-color:var(--fallback-ac,oklch(var(--ac)/.3))}.hover\:outline-accent-content\/40:hover{outline-color:var(--fallback-ac,oklch(var(--ac)/.4))}.hover\:outline-accent-content\/5:hover{outline-color:var(--fallback-ac,oklch(var(--ac)/.05))}.hover\:outline-accent-content\/50:hover{outline-color:var(--fallback-ac,oklch(var(--ac)/.5))}.hover\:outline-accent-content\/60:hover{outline-color:var(--fallback-ac,oklch(var(--ac)/.6))}.hover\:outline-accent-content\/70:hover{outline-color:var(--fallback-ac,oklch(var(--ac)/.7))}.hover\:outline-accent-content\/75:hover{outline-color:var(--fallback-ac,oklch(var(--ac)/.75))}.hover\:outline-accent-content\/80:hover{outline-color:var(--fallback-ac,oklch(var(--ac)/.8))}.hover\:outline-accent-content\/90:hover{outline-color:var(--fallback-ac,oklch(var(--ac)/.9))}.hover\:outline-accent-content\/95:hover{outline-color:var(--fallback-ac,oklch(var(--ac)/.95))}.hover\:outline-accent\/0:hover{outline-color:var(--fallback-a,oklch(var(--a)/0))}.hover\:outline-accent\/10:hover{outline-color:var(--fallback-a,oklch(var(--a)/.1))}.hover\:outline-accent\/100:hover{outline-color:var(--fallback-a,oklch(var(--a)/1))}.hover\:outline-accent\/20:hover{outline-color:var(--fallback-a,oklch(var(--a)/.2))}.hover\:outline-accent\/25:hover{outline-color:var(--fallback-a,oklch(var(--a)/.25))}.hover\:outline-accent\/30:hover{outline-color:var(--fallback-a,oklch(var(--a)/.3))}.hover\:outline-accent\/40:hover{outline-color:var(--fallback-a,oklch(var(--a)/.4))}.hover\:outline-accent\/5:hover{outline-color:var(--fallback-a,oklch(var(--a)/.05))}.hover\:outline-accent\/50:hover{outline-color:var(--fallback-a,oklch(var(--a)/.5))}.hover\:outline-accent\/60:hover{outline-color:var(--fallback-a,oklch(var(--a)/.6))}.hover\:outline-accent\/70:hover{outline-color:var(--fallback-a,oklch(var(--a)/.7))}.hover\:outline-accent\/75:hover{outline-color:var(--fallback-a,oklch(var(--a)/.75))}.hover\:outline-accent\/80:hover{outline-color:var(--fallback-a,oklch(var(--a)/.8))}.hover\:outline-accent\/90:hover{outline-color:var(--fallback-a,oklch(var(--a)/.9))}.hover\:outline-accent\/95:hover{outline-color:var(--fallback-a,oklch(var(--a)/.95))}.hover\:outline-base-100:hover{outline-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:outline-base-100\/0:hover{outline-color:var(--fallback-b1,oklch(var(--b1)/0))}.hover\:outline-base-100\/10:hover{outline-color:var(--fallback-b1,oklch(var(--b1)/.1))}.hover\:outline-base-100\/100:hover{outline-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:outline-base-100\/20:hover{outline-color:var(--fallback-b1,oklch(var(--b1)/.2))}.hover\:outline-base-100\/25:hover{outline-color:var(--fallback-b1,oklch(var(--b1)/.25))}.hover\:outline-base-100\/30:hover{outline-color:var(--fallback-b1,oklch(var(--b1)/.3))}.hover\:outline-base-100\/40:hover{outline-color:var(--fallback-b1,oklch(var(--b1)/.4))}.hover\:outline-base-100\/5:hover{outline-color:var(--fallback-b1,oklch(var(--b1)/.05))}.hover\:outline-base-100\/50:hover{outline-color:var(--fallback-b1,oklch(var(--b1)/.5))}.hover\:outline-base-100\/60:hover{outline-color:var(--fallback-b1,oklch(var(--b1)/.6))}.hover\:outline-base-100\/70:hover{outline-color:var(--fallback-b1,oklch(var(--b1)/.7))}.hover\:outline-base-100\/75:hover{outline-color:var(--fallback-b1,oklch(var(--b1)/.75))}.hover\:outline-base-100\/80:hover{outline-color:var(--fallback-b1,oklch(var(--b1)/.8))}.hover\:outline-base-100\/90:hover{outline-color:var(--fallback-b1,oklch(var(--b1)/.9))}.hover\:outline-base-100\/95:hover{outline-color:var(--fallback-b1,oklch(var(--b1)/.95))}.hover\:outline-base-200:hover{outline-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:outline-base-200\/0:hover{outline-color:var(--fallback-b2,oklch(var(--b2)/0))}.hover\:outline-base-200\/10:hover{outline-color:var(--fallback-b2,oklch(var(--b2)/.1))}.hover\:outline-base-200\/100:hover{outline-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:outline-base-200\/20:hover{outline-color:var(--fallback-b2,oklch(var(--b2)/.2))}.hover\:outline-base-200\/25:hover{outline-color:var(--fallback-b2,oklch(var(--b2)/.25))}.hover\:outline-base-200\/30:hover{outline-color:var(--fallback-b2,oklch(var(--b2)/.3))}.hover\:outline-base-200\/40:hover{outline-color:var(--fallback-b2,oklch(var(--b2)/.4))}.hover\:outline-base-200\/5:hover{outline-color:var(--fallback-b2,oklch(var(--b2)/.05))}.hover\:outline-base-200\/50:hover{outline-color:var(--fallback-b2,oklch(var(--b2)/.5))}.hover\:outline-base-200\/60:hover{outline-color:var(--fallback-b2,oklch(var(--b2)/.6))}.hover\:outline-base-200\/70:hover{outline-color:var(--fallback-b2,oklch(var(--b2)/.7))}.hover\:outline-base-200\/75:hover{outline-color:var(--fallback-b2,oklch(var(--b2)/.75))}.hover\:outline-base-200\/80:hover{outline-color:var(--fallback-b2,oklch(var(--b2)/.8))}.hover\:outline-base-200\/90:hover{outline-color:var(--fallback-b2,oklch(var(--b2)/.9))}.hover\:outline-base-200\/95:hover{outline-color:var(--fallback-b2,oklch(var(--b2)/.95))}.hover\:outline-base-300:hover{outline-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:outline-base-300\/0:hover{outline-color:var(--fallback-b3,oklch(var(--b3)/0))}.hover\:outline-base-300\/10:hover{outline-color:var(--fallback-b3,oklch(var(--b3)/.1))}.hover\:outline-base-300\/100:hover{outline-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:outline-base-300\/20:hover{outline-color:var(--fallback-b3,oklch(var(--b3)/.2))}.hover\:outline-base-300\/25:hover{outline-color:var(--fallback-b3,oklch(var(--b3)/.25))}.hover\:outline-base-300\/30:hover{outline-color:var(--fallback-b3,oklch(var(--b3)/.3))}.hover\:outline-base-300\/40:hover{outline-color:var(--fallback-b3,oklch(var(--b3)/.4))}.hover\:outline-base-300\/5:hover{outline-color:var(--fallback-b3,oklch(var(--b3)/.05))}.hover\:outline-base-300\/50:hover{outline-color:var(--fallback-b3,oklch(var(--b3)/.5))}.hover\:outline-base-300\/60:hover{outline-color:var(--fallback-b3,oklch(var(--b3)/.6))}.hover\:outline-base-300\/70:hover{outline-color:var(--fallback-b3,oklch(var(--b3)/.7))}.hover\:outline-base-300\/75:hover{outline-color:var(--fallback-b3,oklch(var(--b3)/.75))}.hover\:outline-base-300\/80:hover{outline-color:var(--fallback-b3,oklch(var(--b3)/.8))}.hover\:outline-base-300\/90:hover{outline-color:var(--fallback-b3,oklch(var(--b3)/.9))}.hover\:outline-base-300\/95:hover{outline-color:var(--fallback-b3,oklch(var(--b3)/.95))}.hover\:outline-base-content:hover{outline-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:outline-base-content\/0:hover{outline-color:var(--fallback-bc,oklch(var(--bc)/0))}.hover\:outline-base-content\/10:hover{outline-color:var(--fallback-bc,oklch(var(--bc)/.1))}.hover\:outline-base-content\/100:hover{outline-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:outline-base-content\/20:hover{outline-color:var(--fallback-bc,oklch(var(--bc)/.2))}.hover\:outline-base-content\/25:hover{outline-color:var(--fallback-bc,oklch(var(--bc)/.25))}.hover\:outline-base-content\/30:hover{outline-color:var(--fallback-bc,oklch(var(--bc)/.3))}.hover\:outline-base-content\/40:hover{outline-color:var(--fallback-bc,oklch(var(--bc)/.4))}.hover\:outline-base-content\/5:hover{outline-color:var(--fallback-bc,oklch(var(--bc)/.05))}.hover\:outline-base-content\/50:hover{outline-color:var(--fallback-bc,oklch(var(--bc)/.5))}.hover\:outline-base-content\/60:hover{outline-color:var(--fallback-bc,oklch(var(--bc)/.6))}.hover\:outline-base-content\/70:hover{outline-color:var(--fallback-bc,oklch(var(--bc)/.7))}.hover\:outline-base-content\/75:hover{outline-color:var(--fallback-bc,oklch(var(--bc)/.75))}.hover\:outline-base-content\/80:hover{outline-color:var(--fallback-bc,oklch(var(--bc)/.8))}.hover\:outline-base-content\/90:hover{outline-color:var(--fallback-bc,oklch(var(--bc)/.9))}.hover\:outline-base-content\/95:hover{outline-color:var(--fallback-bc,oklch(var(--bc)/.95))}.hover\:outline-error:hover{outline-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:outline-error-content:hover{outline-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:outline-error-content\/0:hover{outline-color:var(--fallback-erc,oklch(var(--erc)/0))}.hover\:outline-error-content\/10:hover{outline-color:var(--fallback-erc,oklch(var(--erc)/.1))}.hover\:outline-error-content\/100:hover{outline-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:outline-error-content\/20:hover{outline-color:var(--fallback-erc,oklch(var(--erc)/.2))}.hover\:outline-error-content\/25:hover{outline-color:var(--fallback-erc,oklch(var(--erc)/.25))}.hover\:outline-error-content\/30:hover{outline-color:var(--fallback-erc,oklch(var(--erc)/.3))}.hover\:outline-error-content\/40:hover{outline-color:var(--fallback-erc,oklch(var(--erc)/.4))}.hover\:outline-error-content\/5:hover{outline-color:var(--fallback-erc,oklch(var(--erc)/.05))}.hover\:outline-error-content\/50:hover{outline-color:var(--fallback-erc,oklch(var(--erc)/.5))}.hover\:outline-error-content\/60:hover{outline-color:var(--fallback-erc,oklch(var(--erc)/.6))}.hover\:outline-error-content\/70:hover{outline-color:var(--fallback-erc,oklch(var(--erc)/.7))}.hover\:outline-error-content\/75:hover{outline-color:var(--fallback-erc,oklch(var(--erc)/.75))}.hover\:outline-error-content\/80:hover{outline-color:var(--fallback-erc,oklch(var(--erc)/.8))}.hover\:outline-error-content\/90:hover{outline-color:var(--fallback-erc,oklch(var(--erc)/.9))}.hover\:outline-error-content\/95:hover{outline-color:var(--fallback-erc,oklch(var(--erc)/.95))}.hover\:outline-error\/0:hover{outline-color:var(--fallback-er,oklch(var(--er)/0))}.hover\:outline-error\/10:hover{outline-color:var(--fallback-er,oklch(var(--er)/.1))}.hover\:outline-error\/100:hover{outline-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:outline-error\/20:hover{outline-color:var(--fallback-er,oklch(var(--er)/.2))}.hover\:outline-error\/25:hover{outline-color:var(--fallback-er,oklch(var(--er)/.25))}.hover\:outline-error\/30:hover{outline-color:var(--fallback-er,oklch(var(--er)/.3))}.hover\:outline-error\/40:hover{outline-color:var(--fallback-er,oklch(var(--er)/.4))}.hover\:outline-error\/5:hover{outline-color:var(--fallback-er,oklch(var(--er)/.05))}.hover\:outline-error\/50:hover{outline-color:var(--fallback-er,oklch(var(--er)/.5))}.hover\:outline-error\/60:hover{outline-color:var(--fallback-er,oklch(var(--er)/.6))}.hover\:outline-error\/70:hover{outline-color:var(--fallback-er,oklch(var(--er)/.7))}.hover\:outline-error\/75:hover{outline-color:var(--fallback-er,oklch(var(--er)/.75))}.hover\:outline-error\/80:hover{outline-color:var(--fallback-er,oklch(var(--er)/.8))}.hover\:outline-error\/90:hover{outline-color:var(--fallback-er,oklch(var(--er)/.9))}.hover\:outline-error\/95:hover{outline-color:var(--fallback-er,oklch(var(--er)/.95))}.hover\:outline-info:hover{outline-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:outline-info-content:hover{outline-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:outline-info-content\/0:hover{outline-color:var(--fallback-inc,oklch(var(--inc)/0))}.hover\:outline-info-content\/10:hover{outline-color:var(--fallback-inc,oklch(var(--inc)/.1))}.hover\:outline-info-content\/100:hover{outline-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:outline-info-content\/20:hover{outline-color:var(--fallback-inc,oklch(var(--inc)/.2))}.hover\:outline-info-content\/25:hover{outline-color:var(--fallback-inc,oklch(var(--inc)/.25))}.hover\:outline-info-content\/30:hover{outline-color:var(--fallback-inc,oklch(var(--inc)/.3))}.hover\:outline-info-content\/40:hover{outline-color:var(--fallback-inc,oklch(var(--inc)/.4))}.hover\:outline-info-content\/5:hover{outline-color:var(--fallback-inc,oklch(var(--inc)/.05))}.hover\:outline-info-content\/50:hover{outline-color:var(--fallback-inc,oklch(var(--inc)/.5))}.hover\:outline-info-content\/60:hover{outline-color:var(--fallback-inc,oklch(var(--inc)/.6))}.hover\:outline-info-content\/70:hover{outline-color:var(--fallback-inc,oklch(var(--inc)/.7))}.hover\:outline-info-content\/75:hover{outline-color:var(--fallback-inc,oklch(var(--inc)/.75))}.hover\:outline-info-content\/80:hover{outline-color:var(--fallback-inc,oklch(var(--inc)/.8))}.hover\:outline-info-content\/90:hover{outline-color:var(--fallback-inc,oklch(var(--inc)/.9))}.hover\:outline-info-content\/95:hover{outline-color:var(--fallback-inc,oklch(var(--inc)/.95))}.hover\:outline-info\/0:hover{outline-color:var(--fallback-in,oklch(var(--in)/0))}.hover\:outline-info\/10:hover{outline-color:var(--fallback-in,oklch(var(--in)/.1))}.hover\:outline-info\/100:hover{outline-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:outline-info\/20:hover{outline-color:var(--fallback-in,oklch(var(--in)/.2))}.hover\:outline-info\/25:hover{outline-color:var(--fallback-in,oklch(var(--in)/.25))}.hover\:outline-info\/30:hover{outline-color:var(--fallback-in,oklch(var(--in)/.3))}.hover\:outline-info\/40:hover{outline-color:var(--fallback-in,oklch(var(--in)/.4))}.hover\:outline-info\/5:hover{outline-color:var(--fallback-in,oklch(var(--in)/.05))}.hover\:outline-info\/50:hover{outline-color:var(--fallback-in,oklch(var(--in)/.5))}.hover\:outline-info\/60:hover{outline-color:var(--fallback-in,oklch(var(--in)/.6))}.hover\:outline-info\/70:hover{outline-color:var(--fallback-in,oklch(var(--in)/.7))}.hover\:outline-info\/75:hover{outline-color:var(--fallback-in,oklch(var(--in)/.75))}.hover\:outline-info\/80:hover{outline-color:var(--fallback-in,oklch(var(--in)/.8))}.hover\:outline-info\/90:hover{outline-color:var(--fallback-in,oklch(var(--in)/.9))}.hover\:outline-info\/95:hover{outline-color:var(--fallback-in,oklch(var(--in)/.95))}.hover\:outline-neutral:hover{outline-color:var(--fallback-n,oklch(var(--n)/1))}.hover\:outline-neutral-content:hover{outline-color:var(--fallback-nc,oklch(var(--nc)/1))}.hover\:outline-neutral-content\/0:hover{outline-color:var(--fallback-nc,oklch(var(--nc)/0))}.hover\:outline-neutral-content\/10:hover{outline-color:var(--fallback-nc,oklch(var(--nc)/.1))}.hover\:outline-neutral-content\/100:hover{outline-color:var(--fallback-nc,oklch(var(--nc)/1))}.hover\:outline-neutral-content\/20:hover{outline-color:var(--fallback-nc,oklch(var(--nc)/.2))}.hover\:outline-neutral-content\/25:hover{outline-color:var(--fallback-nc,oklch(var(--nc)/.25))}.hover\:outline-neutral-content\/30:hover{outline-color:var(--fallback-nc,oklch(var(--nc)/.3))}.hover\:outline-neutral-content\/40:hover{outline-color:var(--fallback-nc,oklch(var(--nc)/.4))}.hover\:outline-neutral-content\/5:hover{outline-color:var(--fallback-nc,oklch(var(--nc)/.05))}.hover\:outline-neutral-content\/50:hover{outline-color:var(--fallback-nc,oklch(var(--nc)/.5))}.hover\:outline-neutral-content\/60:hover{outline-color:var(--fallback-nc,oklch(var(--nc)/.6))}.hover\:outline-neutral-content\/70:hover{outline-color:var(--fallback-nc,oklch(var(--nc)/.7))}.hover\:outline-neutral-content\/75:hover{outline-color:var(--fallback-nc,oklch(var(--nc)/.75))}.hover\:outline-neutral-content\/80:hover{outline-color:var(--fallback-nc,oklch(var(--nc)/.8))}.hover\:outline-neutral-content\/90:hover{outline-color:var(--fallback-nc,oklch(var(--nc)/.9))}.hover\:outline-neutral-content\/95:hover{outline-color:var(--fallback-nc,oklch(var(--nc)/.95))}.hover\:outline-neutral\/0:hover{outline-color:var(--fallback-n,oklch(var(--n)/0))}.hover\:outline-neutral\/10:hover{outline-color:var(--fallback-n,oklch(var(--n)/.1))}.hover\:outline-neutral\/100:hover{outline-color:var(--fallback-n,oklch(var(--n)/1))}.hover\:outline-neutral\/20:hover{outline-color:var(--fallback-n,oklch(var(--n)/.2))}.hover\:outline-neutral\/25:hover{outline-color:var(--fallback-n,oklch(var(--n)/.25))}.hover\:outline-neutral\/30:hover{outline-color:var(--fallback-n,oklch(var(--n)/.3))}.hover\:outline-neutral\/40:hover{outline-color:var(--fallback-n,oklch(var(--n)/.4))}.hover\:outline-neutral\/5:hover{outline-color:var(--fallback-n,oklch(var(--n)/.05))}.hover\:outline-neutral\/50:hover{outline-color:var(--fallback-n,oklch(var(--n)/.5))}.hover\:outline-neutral\/60:hover{outline-color:var(--fallback-n,oklch(var(--n)/.6))}.hover\:outline-neutral\/70:hover{outline-color:var(--fallback-n,oklch(var(--n)/.7))}.hover\:outline-neutral\/75:hover{outline-color:var(--fallback-n,oklch(var(--n)/.75))}.hover\:outline-neutral\/80:hover{outline-color:var(--fallback-n,oklch(var(--n)/.8))}.hover\:outline-neutral\/90:hover{outline-color:var(--fallback-n,oklch(var(--n)/.9))}.hover\:outline-neutral\/95:hover{outline-color:var(--fallback-n,oklch(var(--n)/.95))}.hover\:outline-primary:hover{outline-color:var(--fallback-p,oklch(var(--p)/1))}.hover\:outline-primary-content:hover{outline-color:var(--fallback-pc,oklch(var(--pc)/1))}.hover\:outline-primary-content\/0:hover{outline-color:var(--fallback-pc,oklch(var(--pc)/0))}.hover\:outline-primary-content\/10:hover{outline-color:var(--fallback-pc,oklch(var(--pc)/.1))}.hover\:outline-primary-content\/100:hover{outline-color:var(--fallback-pc,oklch(var(--pc)/1))}.hover\:outline-primary-content\/20:hover{outline-color:var(--fallback-pc,oklch(var(--pc)/.2))}.hover\:outline-primary-content\/25:hover{outline-color:var(--fallback-pc,oklch(var(--pc)/.25))}.hover\:outline-primary-content\/30:hover{outline-color:var(--fallback-pc,oklch(var(--pc)/.3))}.hover\:outline-primary-content\/40:hover{outline-color:var(--fallback-pc,oklch(var(--pc)/.4))}.hover\:outline-primary-content\/5:hover{outline-color:var(--fallback-pc,oklch(var(--pc)/.05))}.hover\:outline-primary-content\/50:hover{outline-color:var(--fallback-pc,oklch(var(--pc)/.5))}.hover\:outline-primary-content\/60:hover{outline-color:var(--fallback-pc,oklch(var(--pc)/.6))}.hover\:outline-primary-content\/70:hover{outline-color:var(--fallback-pc,oklch(var(--pc)/.7))}.hover\:outline-primary-content\/75:hover{outline-color:var(--fallback-pc,oklch(var(--pc)/.75))}.hover\:outline-primary-content\/80:hover{outline-color:var(--fallback-pc,oklch(var(--pc)/.8))}.hover\:outline-primary-content\/90:hover{outline-color:var(--fallback-pc,oklch(var(--pc)/.9))}.hover\:outline-primary-content\/95:hover{outline-color:var(--fallback-pc,oklch(var(--pc)/.95))}.hover\:outline-primary\/0:hover{outline-color:var(--fallback-p,oklch(var(--p)/0))}.hover\:outline-primary\/10:hover{outline-color:var(--fallback-p,oklch(var(--p)/.1))}.hover\:outline-primary\/100:hover{outline-color:var(--fallback-p,oklch(var(--p)/1))}.hover\:outline-primary\/20:hover{outline-color:var(--fallback-p,oklch(var(--p)/.2))}.hover\:outline-primary\/25:hover{outline-color:var(--fallback-p,oklch(var(--p)/.25))}.hover\:outline-primary\/30:hover{outline-color:var(--fallback-p,oklch(var(--p)/.3))}.hover\:outline-primary\/40:hover{outline-color:var(--fallback-p,oklch(var(--p)/.4))}.hover\:outline-primary\/5:hover{outline-color:var(--fallback-p,oklch(var(--p)/.05))}.hover\:outline-primary\/50:hover{outline-color:var(--fallback-p,oklch(var(--p)/.5))}.hover\:outline-primary\/60:hover{outline-color:var(--fallback-p,oklch(var(--p)/.6))}.hover\:outline-primary\/70:hover{outline-color:var(--fallback-p,oklch(var(--p)/.7))}.hover\:outline-primary\/75:hover{outline-color:var(--fallback-p,oklch(var(--p)/.75))}.hover\:outline-primary\/80:hover{outline-color:var(--fallback-p,oklch(var(--p)/.8))}.hover\:outline-primary\/90:hover{outline-color:var(--fallback-p,oklch(var(--p)/.9))}.hover\:outline-primary\/95:hover{outline-color:var(--fallback-p,oklch(var(--p)/.95))}.hover\:outline-secondary:hover{outline-color:var(--fallback-s,oklch(var(--s)/1))}.hover\:outline-secondary-content:hover{outline-color:var(--fallback-sc,oklch(var(--sc)/1))}.hover\:outline-secondary-content\/0:hover{outline-color:var(--fallback-sc,oklch(var(--sc)/0))}.hover\:outline-secondary-content\/10:hover{outline-color:var(--fallback-sc,oklch(var(--sc)/.1))}.hover\:outline-secondary-content\/100:hover{outline-color:var(--fallback-sc,oklch(var(--sc)/1))}.hover\:outline-secondary-content\/20:hover{outline-color:var(--fallback-sc,oklch(var(--sc)/.2))}.hover\:outline-secondary-content\/25:hover{outline-color:var(--fallback-sc,oklch(var(--sc)/.25))}.hover\:outline-secondary-content\/30:hover{outline-color:var(--fallback-sc,oklch(var(--sc)/.3))}.hover\:outline-secondary-content\/40:hover{outline-color:var(--fallback-sc,oklch(var(--sc)/.4))}.hover\:outline-secondary-content\/5:hover{outline-color:var(--fallback-sc,oklch(var(--sc)/.05))}.hover\:outline-secondary-content\/50:hover{outline-color:var(--fallback-sc,oklch(var(--sc)/.5))}.hover\:outline-secondary-content\/60:hover{outline-color:var(--fallback-sc,oklch(var(--sc)/.6))}.hover\:outline-secondary-content\/70:hover{outline-color:var(--fallback-sc,oklch(var(--sc)/.7))}.hover\:outline-secondary-content\/75:hover{outline-color:var(--fallback-sc,oklch(var(--sc)/.75))}.hover\:outline-secondary-content\/80:hover{outline-color:var(--fallback-sc,oklch(var(--sc)/.8))}.hover\:outline-secondary-content\/90:hover{outline-color:var(--fallback-sc,oklch(var(--sc)/.9))}.hover\:outline-secondary-content\/95:hover{outline-color:var(--fallback-sc,oklch(var(--sc)/.95))}.hover\:outline-secondary\/0:hover{outline-color:var(--fallback-s,oklch(var(--s)/0))}.hover\:outline-secondary\/10:hover{outline-color:var(--fallback-s,oklch(var(--s)/.1))}.hover\:outline-secondary\/100:hover{outline-color:var(--fallback-s,oklch(var(--s)/1))}.hover\:outline-secondary\/20:hover{outline-color:var(--fallback-s,oklch(var(--s)/.2))}.hover\:outline-secondary\/25:hover{outline-color:var(--fallback-s,oklch(var(--s)/.25))}.hover\:outline-secondary\/30:hover{outline-color:var(--fallback-s,oklch(var(--s)/.3))}.hover\:outline-secondary\/40:hover{outline-color:var(--fallback-s,oklch(var(--s)/.4))}.hover\:outline-secondary\/5:hover{outline-color:var(--fallback-s,oklch(var(--s)/.05))}.hover\:outline-secondary\/50:hover{outline-color:var(--fallback-s,oklch(var(--s)/.5))}.hover\:outline-secondary\/60:hover{outline-color:var(--fallback-s,oklch(var(--s)/.6))}.hover\:outline-secondary\/70:hover{outline-color:var(--fallback-s,oklch(var(--s)/.7))}.hover\:outline-secondary\/75:hover{outline-color:var(--fallback-s,oklch(var(--s)/.75))}.hover\:outline-secondary\/80:hover{outline-color:var(--fallback-s,oklch(var(--s)/.8))}.hover\:outline-secondary\/90:hover{outline-color:var(--fallback-s,oklch(var(--s)/.9))}.hover\:outline-secondary\/95:hover{outline-color:var(--fallback-s,oklch(var(--s)/.95))}.hover\:outline-success:hover{outline-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:outline-success-content:hover{outline-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:outline-success-content\/0:hover{outline-color:var(--fallback-suc,oklch(var(--suc)/0))}.hover\:outline-success-content\/10:hover{outline-color:var(--fallback-suc,oklch(var(--suc)/.1))}.hover\:outline-success-content\/100:hover{outline-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:outline-success-content\/20:hover{outline-color:var(--fallback-suc,oklch(var(--suc)/.2))}.hover\:outline-success-content\/25:hover{outline-color:var(--fallback-suc,oklch(var(--suc)/.25))}.hover\:outline-success-content\/30:hover{outline-color:var(--fallback-suc,oklch(var(--suc)/.3))}.hover\:outline-success-content\/40:hover{outline-color:var(--fallback-suc,oklch(var(--suc)/.4))}.hover\:outline-success-content\/5:hover{outline-color:var(--fallback-suc,oklch(var(--suc)/.05))}.hover\:outline-success-content\/50:hover{outline-color:var(--fallback-suc,oklch(var(--suc)/.5))}.hover\:outline-success-content\/60:hover{outline-color:var(--fallback-suc,oklch(var(--suc)/.6))}.hover\:outline-success-content\/70:hover{outline-color:var(--fallback-suc,oklch(var(--suc)/.7))}.hover\:outline-success-content\/75:hover{outline-color:var(--fallback-suc,oklch(var(--suc)/.75))}.hover\:outline-success-content\/80:hover{outline-color:var(--fallback-suc,oklch(var(--suc)/.8))}.hover\:outline-success-content\/90:hover{outline-color:var(--fallback-suc,oklch(var(--suc)/.9))}.hover\:outline-success-content\/95:hover{outline-color:var(--fallback-suc,oklch(var(--suc)/.95))}.hover\:outline-success\/0:hover{outline-color:var(--fallback-su,oklch(var(--su)/0))}.hover\:outline-success\/10:hover{outline-color:var(--fallback-su,oklch(var(--su)/.1))}.hover\:outline-success\/100:hover{outline-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:outline-success\/20:hover{outline-color:var(--fallback-su,oklch(var(--su)/.2))}.hover\:outline-success\/25:hover{outline-color:var(--fallback-su,oklch(var(--su)/.25))}.hover\:outline-success\/30:hover{outline-color:var(--fallback-su,oklch(var(--su)/.3))}.hover\:outline-success\/40:hover{outline-color:var(--fallback-su,oklch(var(--su)/.4))}.hover\:outline-success\/5:hover{outline-color:var(--fallback-su,oklch(var(--su)/.05))}.hover\:outline-success\/50:hover{outline-color:var(--fallback-su,oklch(var(--su)/.5))}.hover\:outline-success\/60:hover{outline-color:var(--fallback-su,oklch(var(--su)/.6))}.hover\:outline-success\/70:hover{outline-color:var(--fallback-su,oklch(var(--su)/.7))}.hover\:outline-success\/75:hover{outline-color:var(--fallback-su,oklch(var(--su)/.75))}.hover\:outline-success\/80:hover{outline-color:var(--fallback-su,oklch(var(--su)/.8))}.hover\:outline-success\/90:hover{outline-color:var(--fallback-su,oklch(var(--su)/.9))}.hover\:outline-success\/95:hover{outline-color:var(--fallback-su,oklch(var(--su)/.95))}.hover\:outline-warning:hover{outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:outline-warning-content:hover{outline-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:outline-warning-content\/0:hover{outline-color:var(--fallback-wac,oklch(var(--wac)/0))}.hover\:outline-warning-content\/10:hover{outline-color:var(--fallback-wac,oklch(var(--wac)/.1))}.hover\:outline-warning-content\/100:hover{outline-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:outline-warning-content\/20:hover{outline-color:var(--fallback-wac,oklch(var(--wac)/.2))}.hover\:outline-warning-content\/25:hover{outline-color:var(--fallback-wac,oklch(var(--wac)/.25))}.hover\:outline-warning-content\/30:hover{outline-color:var(--fallback-wac,oklch(var(--wac)/.3))}.hover\:outline-warning-content\/40:hover{outline-color:var(--fallback-wac,oklch(var(--wac)/.4))}.hover\:outline-warning-content\/5:hover{outline-color:var(--fallback-wac,oklch(var(--wac)/.05))}.hover\:outline-warning-content\/50:hover{outline-color:var(--fallback-wac,oklch(var(--wac)/.5))}.hover\:outline-warning-content\/60:hover{outline-color:var(--fallback-wac,oklch(var(--wac)/.6))}.hover\:outline-warning-content\/70:hover{outline-color:var(--fallback-wac,oklch(var(--wac)/.7))}.hover\:outline-warning-content\/75:hover{outline-color:var(--fallback-wac,oklch(var(--wac)/.75))}.hover\:outline-warning-content\/80:hover{outline-color:var(--fallback-wac,oklch(var(--wac)/.8))}.hover\:outline-warning-content\/90:hover{outline-color:var(--fallback-wac,oklch(var(--wac)/.9))}.hover\:outline-warning-content\/95:hover{outline-color:var(--fallback-wac,oklch(var(--wac)/.95))}.hover\:outline-warning\/0:hover{outline-color:var(--fallback-wa,oklch(var(--wa)/0))}.hover\:outline-warning\/10:hover{outline-color:var(--fallback-wa,oklch(var(--wa)/.1))}.hover\:outline-warning\/100:hover{outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:outline-warning\/20:hover{outline-color:var(--fallback-wa,oklch(var(--wa)/.2))}.hover\:outline-warning\/25:hover{outline-color:var(--fallback-wa,oklch(var(--wa)/.25))}.hover\:outline-warning\/30:hover{outline-color:var(--fallback-wa,oklch(var(--wa)/.3))}.hover\:outline-warning\/40:hover{outline-color:var(--fallback-wa,oklch(var(--wa)/.4))}.hover\:outline-warning\/5:hover{outline-color:var(--fallback-wa,oklch(var(--wa)/.05))}.hover\:outline-warning\/50:hover{outline-color:var(--fallback-wa,oklch(var(--wa)/.5))}.hover\:outline-warning\/60:hover{outline-color:var(--fallback-wa,oklch(var(--wa)/.6))}.hover\:outline-warning\/70:hover{outline-color:var(--fallback-wa,oklch(var(--wa)/.7))}.hover\:outline-warning\/75:hover{outline-color:var(--fallback-wa,oklch(var(--wa)/.75))}.hover\:outline-warning\/80:hover{outline-color:var(--fallback-wa,oklch(var(--wa)/.8))}.hover\:outline-warning\/90:hover{outline-color:var(--fallback-wa,oklch(var(--wa)/.9))}.hover\:outline-warning\/95:hover{outline-color:var(--fallback-wa,oklch(var(--wa)/.95))}.hover\:ring-base-100:hover{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:ring-base-100\/0:hover{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0))}.hover\:ring-base-100\/10:hover{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.1))}.hover\:ring-base-100\/100:hover{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:ring-base-100\/20:hover{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.2))}.hover\:ring-base-100\/25:hover{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.25))}.hover\:ring-base-100\/30:hover{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.3))}.hover\:ring-base-100\/40:hover{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.4))}.hover\:ring-base-100\/5:hover{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.05))}.hover\:ring-base-100\/50:hover{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.5))}.hover\:ring-base-100\/60:hover{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.6))}.hover\:ring-base-100\/70:hover{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.7))}.hover\:ring-base-100\/75:hover{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.75))}.hover\:ring-base-100\/80:hover{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.8))}.hover\:ring-base-100\/90:hover{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.9))}.hover\:ring-base-100\/95:hover{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.95))}.hover\:ring-base-200:hover{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:ring-base-200\/0:hover{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0))}.hover\:ring-base-200\/10:hover{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.1))}.hover\:ring-base-200\/100:hover{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:ring-base-200\/20:hover{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.2))}.hover\:ring-base-200\/25:hover{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.25))}.hover\:ring-base-200\/30:hover{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.3))}.hover\:ring-base-200\/40:hover{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.4))}.hover\:ring-base-200\/5:hover{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.05))}.hover\:ring-base-200\/50:hover{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.5))}.hover\:ring-base-200\/60:hover{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.6))}.hover\:ring-base-200\/70:hover{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.7))}.hover\:ring-base-200\/75:hover{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.75))}.hover\:ring-base-200\/80:hover{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.8))}.hover\:ring-base-200\/90:hover{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.9))}.hover\:ring-base-200\/95:hover{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.95))}.hover\:ring-base-300:hover{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:ring-base-300\/0:hover{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0))}.hover\:ring-base-300\/10:hover{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.1))}.hover\:ring-base-300\/100:hover{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:ring-base-300\/20:hover{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.2))}.hover\:ring-base-300\/25:hover{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.25))}.hover\:ring-base-300\/30:hover{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.3))}.hover\:ring-base-300\/40:hover{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.4))}.hover\:ring-base-300\/5:hover{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.05))}.hover\:ring-base-300\/50:hover{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.5))}.hover\:ring-base-300\/60:hover{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.6))}.hover\:ring-base-300\/70:hover{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.7))}.hover\:ring-base-300\/75:hover{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.75))}.hover\:ring-base-300\/80:hover{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.8))}.hover\:ring-base-300\/90:hover{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.9))}.hover\:ring-base-300\/95:hover{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.95))}.hover\:ring-base-content:hover{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:ring-base-content\/0:hover{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0))}.hover\:ring-base-content\/10:hover{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.1))}.hover\:ring-base-content\/100:hover{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:ring-base-content\/20:hover{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.2))}.hover\:ring-base-content\/25:hover{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.25))}.hover\:ring-base-content\/30:hover{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.3))}.hover\:ring-base-content\/40:hover{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.4))}.hover\:ring-base-content\/5:hover{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.05))}.hover\:ring-base-content\/50:hover{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.5))}.hover\:ring-base-content\/60:hover{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.6))}.hover\:ring-base-content\/70:hover{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.7))}.hover\:ring-base-content\/75:hover{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.75))}.hover\:ring-base-content\/80:hover{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.8))}.hover\:ring-base-content\/90:hover{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.9))}.hover\:ring-base-content\/95:hover{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.95))}.hover\:ring-error:hover{--tw-ring-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:ring-error-content:hover{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:ring-error-content\/0:hover{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0))}.hover\:ring-error-content\/10:hover{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.1))}.hover\:ring-error-content\/100:hover{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:ring-error-content\/20:hover{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.2))}.hover\:ring-error-content\/25:hover{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.25))}.hover\:ring-error-content\/30:hover{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.3))}.hover\:ring-error-content\/40:hover{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.4))}.hover\:ring-error-content\/5:hover{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.05))}.hover\:ring-error-content\/50:hover{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.5))}.hover\:ring-error-content\/60:hover{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.6))}.hover\:ring-error-content\/70:hover{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.7))}.hover\:ring-error-content\/75:hover{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.75))}.hover\:ring-error-content\/80:hover{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.8))}.hover\:ring-error-content\/90:hover{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.9))}.hover\:ring-error-content\/95:hover{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.95))}.hover\:ring-error\/0:hover{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0))}.hover\:ring-error\/10:hover{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.1))}.hover\:ring-error\/100:hover{--tw-ring-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:ring-error\/20:hover{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.2))}.hover\:ring-error\/25:hover{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.25))}.hover\:ring-error\/30:hover{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.3))}.hover\:ring-error\/40:hover{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.4))}.hover\:ring-error\/5:hover{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.05))}.hover\:ring-error\/50:hover{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.5))}.hover\:ring-error\/60:hover{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.6))}.hover\:ring-error\/70:hover{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.7))}.hover\:ring-error\/75:hover{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.75))}.hover\:ring-error\/80:hover{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.8))}.hover\:ring-error\/90:hover{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.9))}.hover\:ring-error\/95:hover{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.95))}.hover\:ring-info:hover{--tw-ring-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:ring-info-content:hover{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:ring-info-content\/0:hover{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0))}.hover\:ring-info-content\/10:hover{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.1))}.hover\:ring-info-content\/100:hover{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:ring-info-content\/20:hover{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.2))}.hover\:ring-info-content\/25:hover{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.25))}.hover\:ring-info-content\/30:hover{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.3))}.hover\:ring-info-content\/40:hover{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.4))}.hover\:ring-info-content\/5:hover{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.05))}.hover\:ring-info-content\/50:hover{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.5))}.hover\:ring-info-content\/60:hover{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.6))}.hover\:ring-info-content\/70:hover{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.7))}.hover\:ring-info-content\/75:hover{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.75))}.hover\:ring-info-content\/80:hover{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.8))}.hover\:ring-info-content\/90:hover{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.9))}.hover\:ring-info-content\/95:hover{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.95))}.hover\:ring-info\/0:hover{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0))}.hover\:ring-info\/10:hover{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.1))}.hover\:ring-info\/100:hover{--tw-ring-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:ring-info\/20:hover{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.2))}.hover\:ring-info\/25:hover{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.25))}.hover\:ring-info\/30:hover{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.3))}.hover\:ring-info\/40:hover{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.4))}.hover\:ring-info\/5:hover{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.05))}.hover\:ring-info\/50:hover{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.5))}.hover\:ring-info\/60:hover{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.6))}.hover\:ring-info\/70:hover{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.7))}.hover\:ring-info\/75:hover{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.75))}.hover\:ring-info\/80:hover{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.8))}.hover\:ring-info\/90:hover{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.9))}.hover\:ring-info\/95:hover{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.95))}.hover\:ring-success:hover{--tw-ring-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:ring-success-content:hover{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:ring-success-content\/0:hover{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0))}.hover\:ring-success-content\/10:hover{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.1))}.hover\:ring-success-content\/100:hover{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:ring-success-content\/20:hover{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.2))}.hover\:ring-success-content\/25:hover{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.25))}.hover\:ring-success-content\/30:hover{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.3))}.hover\:ring-success-content\/40:hover{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.4))}.hover\:ring-success-content\/5:hover{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.05))}.hover\:ring-success-content\/50:hover{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.5))}.hover\:ring-success-content\/60:hover{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.6))}.hover\:ring-success-content\/70:hover{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.7))}.hover\:ring-success-content\/75:hover{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.75))}.hover\:ring-success-content\/80:hover{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.8))}.hover\:ring-success-content\/90:hover{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.9))}.hover\:ring-success-content\/95:hover{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.95))}.hover\:ring-success\/0:hover{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0))}.hover\:ring-success\/10:hover{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.1))}.hover\:ring-success\/100:hover{--tw-ring-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:ring-success\/20:hover{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.2))}.hover\:ring-success\/25:hover{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.25))}.hover\:ring-success\/30:hover{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.3))}.hover\:ring-success\/40:hover{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.4))}.hover\:ring-success\/5:hover{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.05))}.hover\:ring-success\/50:hover{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.5))}.hover\:ring-success\/60:hover{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.6))}.hover\:ring-success\/70:hover{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.7))}.hover\:ring-success\/75:hover{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.75))}.hover\:ring-success\/80:hover{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.8))}.hover\:ring-success\/90:hover{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.9))}.hover\:ring-success\/95:hover{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.95))}.hover\:ring-warning:hover{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:ring-warning-content:hover{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:ring-warning-content\/0:hover{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0))}.hover\:ring-warning-content\/10:hover{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.1))}.hover\:ring-warning-content\/100:hover{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:ring-warning-content\/20:hover{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.2))}.hover\:ring-warning-content\/25:hover{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.25))}.hover\:ring-warning-content\/30:hover{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.3))}.hover\:ring-warning-content\/40:hover{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.4))}.hover\:ring-warning-content\/5:hover{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.05))}.hover\:ring-warning-content\/50:hover{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.5))}.hover\:ring-warning-content\/60:hover{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.6))}.hover\:ring-warning-content\/70:hover{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.7))}.hover\:ring-warning-content\/75:hover{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.75))}.hover\:ring-warning-content\/80:hover{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.8))}.hover\:ring-warning-content\/90:hover{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.9))}.hover\:ring-warning-content\/95:hover{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.95))}.hover\:ring-warning\/0:hover{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0))}.hover\:ring-warning\/10:hover{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.1))}.hover\:ring-warning\/100:hover{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:ring-warning\/20:hover{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.2))}.hover\:ring-warning\/25:hover{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.25))}.hover\:ring-warning\/30:hover{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.3))}.hover\:ring-warning\/40:hover{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.4))}.hover\:ring-warning\/5:hover{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.05))}.hover\:ring-warning\/50:hover{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.5))}.hover\:ring-warning\/60:hover{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.6))}.hover\:ring-warning\/70:hover{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.7))}.hover\:ring-warning\/75:hover{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.75))}.hover\:ring-warning\/80:hover{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.8))}.hover\:ring-warning\/90:hover{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.9))}.hover\:ring-warning\/95:hover{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.95))}.hover\:ring-offset-base-100:hover{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:ring-offset-base-100\/0:hover{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0))}.hover\:ring-offset-base-100\/10:hover{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.1))}.hover\:ring-offset-base-100\/100:hover{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/1))}.hover\:ring-offset-base-100\/20:hover{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.2))}.hover\:ring-offset-base-100\/25:hover{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.25))}.hover\:ring-offset-base-100\/30:hover{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.3))}.hover\:ring-offset-base-100\/40:hover{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.4))}.hover\:ring-offset-base-100\/5:hover{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.05))}.hover\:ring-offset-base-100\/50:hover{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.5))}.hover\:ring-offset-base-100\/60:hover{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.6))}.hover\:ring-offset-base-100\/70:hover{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.7))}.hover\:ring-offset-base-100\/75:hover{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.75))}.hover\:ring-offset-base-100\/80:hover{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.8))}.hover\:ring-offset-base-100\/90:hover{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.9))}.hover\:ring-offset-base-100\/95:hover{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.95))}.hover\:ring-offset-base-200:hover{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:ring-offset-base-200\/0:hover{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0))}.hover\:ring-offset-base-200\/10:hover{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.1))}.hover\:ring-offset-base-200\/100:hover{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/1))}.hover\:ring-offset-base-200\/20:hover{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.2))}.hover\:ring-offset-base-200\/25:hover{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.25))}.hover\:ring-offset-base-200\/30:hover{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.3))}.hover\:ring-offset-base-200\/40:hover{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.4))}.hover\:ring-offset-base-200\/5:hover{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.05))}.hover\:ring-offset-base-200\/50:hover{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.5))}.hover\:ring-offset-base-200\/60:hover{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.6))}.hover\:ring-offset-base-200\/70:hover{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.7))}.hover\:ring-offset-base-200\/75:hover{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.75))}.hover\:ring-offset-base-200\/80:hover{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.8))}.hover\:ring-offset-base-200\/90:hover{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.9))}.hover\:ring-offset-base-200\/95:hover{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.95))}.hover\:ring-offset-base-300:hover{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:ring-offset-base-300\/0:hover{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0))}.hover\:ring-offset-base-300\/10:hover{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.1))}.hover\:ring-offset-base-300\/100:hover{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/1))}.hover\:ring-offset-base-300\/20:hover{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.2))}.hover\:ring-offset-base-300\/25:hover{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.25))}.hover\:ring-offset-base-300\/30:hover{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.3))}.hover\:ring-offset-base-300\/40:hover{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.4))}.hover\:ring-offset-base-300\/5:hover{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.05))}.hover\:ring-offset-base-300\/50:hover{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.5))}.hover\:ring-offset-base-300\/60:hover{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.6))}.hover\:ring-offset-base-300\/70:hover{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.7))}.hover\:ring-offset-base-300\/75:hover{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.75))}.hover\:ring-offset-base-300\/80:hover{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.8))}.hover\:ring-offset-base-300\/90:hover{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.9))}.hover\:ring-offset-base-300\/95:hover{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.95))}.hover\:ring-offset-base-content:hover{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:ring-offset-base-content\/0:hover{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0))}.hover\:ring-offset-base-content\/10:hover{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.1))}.hover\:ring-offset-base-content\/100:hover{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/1))}.hover\:ring-offset-base-content\/20:hover{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.2))}.hover\:ring-offset-base-content\/25:hover{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.25))}.hover\:ring-offset-base-content\/30:hover{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.3))}.hover\:ring-offset-base-content\/40:hover{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.4))}.hover\:ring-offset-base-content\/5:hover{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.05))}.hover\:ring-offset-base-content\/50:hover{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.5))}.hover\:ring-offset-base-content\/60:hover{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.6))}.hover\:ring-offset-base-content\/70:hover{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.7))}.hover\:ring-offset-base-content\/75:hover{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.75))}.hover\:ring-offset-base-content\/80:hover{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.8))}.hover\:ring-offset-base-content\/90:hover{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.9))}.hover\:ring-offset-base-content\/95:hover{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.95))}.hover\:ring-offset-error:hover{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:ring-offset-error-content:hover{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:ring-offset-error-content\/0:hover{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0))}.hover\:ring-offset-error-content\/10:hover{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.1))}.hover\:ring-offset-error-content\/100:hover{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/1))}.hover\:ring-offset-error-content\/20:hover{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.2))}.hover\:ring-offset-error-content\/25:hover{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.25))}.hover\:ring-offset-error-content\/30:hover{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.3))}.hover\:ring-offset-error-content\/40:hover{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.4))}.hover\:ring-offset-error-content\/5:hover{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.05))}.hover\:ring-offset-error-content\/50:hover{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.5))}.hover\:ring-offset-error-content\/60:hover{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.6))}.hover\:ring-offset-error-content\/70:hover{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.7))}.hover\:ring-offset-error-content\/75:hover{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.75))}.hover\:ring-offset-error-content\/80:hover{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.8))}.hover\:ring-offset-error-content\/90:hover{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.9))}.hover\:ring-offset-error-content\/95:hover{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.95))}.hover\:ring-offset-error\/0:hover{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0))}.hover\:ring-offset-error\/10:hover{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.1))}.hover\:ring-offset-error\/100:hover{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/1))}.hover\:ring-offset-error\/20:hover{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.2))}.hover\:ring-offset-error\/25:hover{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.25))}.hover\:ring-offset-error\/30:hover{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.3))}.hover\:ring-offset-error\/40:hover{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.4))}.hover\:ring-offset-error\/5:hover{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.05))}.hover\:ring-offset-error\/50:hover{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.5))}.hover\:ring-offset-error\/60:hover{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.6))}.hover\:ring-offset-error\/70:hover{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.7))}.hover\:ring-offset-error\/75:hover{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.75))}.hover\:ring-offset-error\/80:hover{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.8))}.hover\:ring-offset-error\/90:hover{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.9))}.hover\:ring-offset-error\/95:hover{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.95))}.hover\:ring-offset-info:hover{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:ring-offset-info-content:hover{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:ring-offset-info-content\/0:hover{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0))}.hover\:ring-offset-info-content\/10:hover{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.1))}.hover\:ring-offset-info-content\/100:hover{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:ring-offset-info-content\/20:hover{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.2))}.hover\:ring-offset-info-content\/25:hover{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.25))}.hover\:ring-offset-info-content\/30:hover{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.3))}.hover\:ring-offset-info-content\/40:hover{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.4))}.hover\:ring-offset-info-content\/5:hover{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.05))}.hover\:ring-offset-info-content\/50:hover{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.5))}.hover\:ring-offset-info-content\/60:hover{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.6))}.hover\:ring-offset-info-content\/70:hover{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.7))}.hover\:ring-offset-info-content\/75:hover{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.75))}.hover\:ring-offset-info-content\/80:hover{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.8))}.hover\:ring-offset-info-content\/90:hover{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.9))}.hover\:ring-offset-info-content\/95:hover{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.95))}.hover\:ring-offset-info\/0:hover{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0))}.hover\:ring-offset-info\/10:hover{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.1))}.hover\:ring-offset-info\/100:hover{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/1))}.hover\:ring-offset-info\/20:hover{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.2))}.hover\:ring-offset-info\/25:hover{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.25))}.hover\:ring-offset-info\/30:hover{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.3))}.hover\:ring-offset-info\/40:hover{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.4))}.hover\:ring-offset-info\/5:hover{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.05))}.hover\:ring-offset-info\/50:hover{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.5))}.hover\:ring-offset-info\/60:hover{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.6))}.hover\:ring-offset-info\/70:hover{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.7))}.hover\:ring-offset-info\/75:hover{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.75))}.hover\:ring-offset-info\/80:hover{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.8))}.hover\:ring-offset-info\/90:hover{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.9))}.hover\:ring-offset-info\/95:hover{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.95))}.hover\:ring-offset-success:hover{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:ring-offset-success-content:hover{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:ring-offset-success-content\/0:hover{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0))}.hover\:ring-offset-success-content\/10:hover{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.1))}.hover\:ring-offset-success-content\/100:hover{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:ring-offset-success-content\/20:hover{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.2))}.hover\:ring-offset-success-content\/25:hover{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.25))}.hover\:ring-offset-success-content\/30:hover{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.3))}.hover\:ring-offset-success-content\/40:hover{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.4))}.hover\:ring-offset-success-content\/5:hover{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.05))}.hover\:ring-offset-success-content\/50:hover{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.5))}.hover\:ring-offset-success-content\/60:hover{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.6))}.hover\:ring-offset-success-content\/70:hover{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.7))}.hover\:ring-offset-success-content\/75:hover{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.75))}.hover\:ring-offset-success-content\/80:hover{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.8))}.hover\:ring-offset-success-content\/90:hover{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.9))}.hover\:ring-offset-success-content\/95:hover{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.95))}.hover\:ring-offset-success\/0:hover{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0))}.hover\:ring-offset-success\/10:hover{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.1))}.hover\:ring-offset-success\/100:hover{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/1))}.hover\:ring-offset-success\/20:hover{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.2))}.hover\:ring-offset-success\/25:hover{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.25))}.hover\:ring-offset-success\/30:hover{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.3))}.hover\:ring-offset-success\/40:hover{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.4))}.hover\:ring-offset-success\/5:hover{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.05))}.hover\:ring-offset-success\/50:hover{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.5))}.hover\:ring-offset-success\/60:hover{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.6))}.hover\:ring-offset-success\/70:hover{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.7))}.hover\:ring-offset-success\/75:hover{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.75))}.hover\:ring-offset-success\/80:hover{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.8))}.hover\:ring-offset-success\/90:hover{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.9))}.hover\:ring-offset-success\/95:hover{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.95))}.hover\:ring-offset-warning:hover{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:ring-offset-warning-content:hover{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:ring-offset-warning-content\/0:hover{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0))}.hover\:ring-offset-warning-content\/10:hover{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.1))}.hover\:ring-offset-warning-content\/100:hover{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:ring-offset-warning-content\/20:hover{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.2))}.hover\:ring-offset-warning-content\/25:hover{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.25))}.hover\:ring-offset-warning-content\/30:hover{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.3))}.hover\:ring-offset-warning-content\/40:hover{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.4))}.hover\:ring-offset-warning-content\/5:hover{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.05))}.hover\:ring-offset-warning-content\/50:hover{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.5))}.hover\:ring-offset-warning-content\/60:hover{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.6))}.hover\:ring-offset-warning-content\/70:hover{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.7))}.hover\:ring-offset-warning-content\/75:hover{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.75))}.hover\:ring-offset-warning-content\/80:hover{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.8))}.hover\:ring-offset-warning-content\/90:hover{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.9))}.hover\:ring-offset-warning-content\/95:hover{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.95))}.hover\:ring-offset-warning\/0:hover{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0))}.hover\:ring-offset-warning\/10:hover{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.1))}.hover\:ring-offset-warning\/100:hover{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/1))}.hover\:ring-offset-warning\/20:hover{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.2))}.hover\:ring-offset-warning\/25:hover{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.25))}.hover\:ring-offset-warning\/30:hover{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.3))}.hover\:ring-offset-warning\/40:hover{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.4))}.hover\:ring-offset-warning\/5:hover{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.05))}.hover\:ring-offset-warning\/50:hover{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.5))}.hover\:ring-offset-warning\/60:hover{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.6))}.hover\:ring-offset-warning\/70:hover{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.7))}.hover\:ring-offset-warning\/75:hover{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.75))}.hover\:ring-offset-warning\/80:hover{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.8))}.hover\:ring-offset-warning\/90:hover{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.9))}.hover\:ring-offset-warning\/95:hover{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.95))}.hover\:tooltip-info:hover{--tooltip-color:var(--fallback-in,oklch(var(--in)/1));--tooltip-text-color:var(--fallback-inc,oklch(var(--inc)/1))}.hover\:tooltip-success:hover{--tooltip-color:var(--fallback-su,oklch(var(--su)/1));--tooltip-text-color:var(--fallback-suc,oklch(var(--suc)/1))}.hover\:tooltip-warning:hover{--tooltip-color:var(--fallback-wa,oklch(var(--wa)/1));--tooltip-text-color:var(--fallback-wac,oklch(var(--wac)/1))}.hover\:tooltip-error:hover{--tooltip-color:var(--fallback-er,oklch(var(--er)/1));--tooltip-text-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:divide-base-100:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:divide-base-100\/0:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/0))}.focus\:divide-base-100\/10:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.1))}.focus\:divide-base-100\/100:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:divide-base-100\/20:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.2))}.focus\:divide-base-100\/25:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.25))}.focus\:divide-base-100\/30:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.3))}.focus\:divide-base-100\/40:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.4))}.focus\:divide-base-100\/5:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.05))}.focus\:divide-base-100\/50:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.5))}.focus\:divide-base-100\/60:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.6))}.focus\:divide-base-100\/70:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.7))}.focus\:divide-base-100\/75:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.75))}.focus\:divide-base-100\/80:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.8))}.focus\:divide-base-100\/90:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.9))}.focus\:divide-base-100\/95:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b1,oklch(var(--b1)/.95))}.focus\:divide-base-200:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:divide-base-200\/0:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/0))}.focus\:divide-base-200\/10:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.1))}.focus\:divide-base-200\/100:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:divide-base-200\/20:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.2))}.focus\:divide-base-200\/25:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.25))}.focus\:divide-base-200\/30:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.3))}.focus\:divide-base-200\/40:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.4))}.focus\:divide-base-200\/5:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.05))}.focus\:divide-base-200\/50:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.5))}.focus\:divide-base-200\/60:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.6))}.focus\:divide-base-200\/70:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.7))}.focus\:divide-base-200\/75:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.75))}.focus\:divide-base-200\/80:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.8))}.focus\:divide-base-200\/90:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.9))}.focus\:divide-base-200\/95:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b2,oklch(var(--b2)/.95))}.focus\:divide-base-300:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:divide-base-300\/0:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/0))}.focus\:divide-base-300\/10:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.1))}.focus\:divide-base-300\/100:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:divide-base-300\/20:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.2))}.focus\:divide-base-300\/25:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.25))}.focus\:divide-base-300\/30:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.3))}.focus\:divide-base-300\/40:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.4))}.focus\:divide-base-300\/5:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.05))}.focus\:divide-base-300\/50:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.5))}.focus\:divide-base-300\/60:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.6))}.focus\:divide-base-300\/70:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.7))}.focus\:divide-base-300\/75:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.75))}.focus\:divide-base-300\/80:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.8))}.focus\:divide-base-300\/90:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.9))}.focus\:divide-base-300\/95:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-b3,oklch(var(--b3)/.95))}.focus\:divide-base-content:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:divide-base-content\/0:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/0))}.focus\:divide-base-content\/10:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.1))}.focus\:divide-base-content\/100:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:divide-base-content\/20:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.2))}.focus\:divide-base-content\/25:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.25))}.focus\:divide-base-content\/30:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.3))}.focus\:divide-base-content\/40:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.4))}.focus\:divide-base-content\/5:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.05))}.focus\:divide-base-content\/50:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.5))}.focus\:divide-base-content\/60:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.6))}.focus\:divide-base-content\/70:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.7))}.focus\:divide-base-content\/75:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.75))}.focus\:divide-base-content\/80:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.8))}.focus\:divide-base-content\/90:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.9))}.focus\:divide-base-content\/95:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-bc,oklch(var(--bc)/.95))}.focus\:divide-error:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:divide-error-content:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:divide-error-content\/0:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/0))}.focus\:divide-error-content\/10:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.1))}.focus\:divide-error-content\/100:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:divide-error-content\/20:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.2))}.focus\:divide-error-content\/25:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.25))}.focus\:divide-error-content\/30:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.3))}.focus\:divide-error-content\/40:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.4))}.focus\:divide-error-content\/5:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.05))}.focus\:divide-error-content\/50:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.5))}.focus\:divide-error-content\/60:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.6))}.focus\:divide-error-content\/70:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.7))}.focus\:divide-error-content\/75:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.75))}.focus\:divide-error-content\/80:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.8))}.focus\:divide-error-content\/90:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.9))}.focus\:divide-error-content\/95:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-erc,oklch(var(--erc)/.95))}.focus\:divide-error\/0:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/0))}.focus\:divide-error\/10:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.1))}.focus\:divide-error\/100:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:divide-error\/20:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.2))}.focus\:divide-error\/25:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.25))}.focus\:divide-error\/30:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.3))}.focus\:divide-error\/40:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.4))}.focus\:divide-error\/5:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.05))}.focus\:divide-error\/50:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.5))}.focus\:divide-error\/60:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.6))}.focus\:divide-error\/70:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.7))}.focus\:divide-error\/75:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.75))}.focus\:divide-error\/80:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.8))}.focus\:divide-error\/90:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.9))}.focus\:divide-error\/95:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-er,oklch(var(--er)/.95))}.focus\:divide-info:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:divide-info-content:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:divide-info-content\/0:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/0))}.focus\:divide-info-content\/10:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.1))}.focus\:divide-info-content\/100:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:divide-info-content\/20:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.2))}.focus\:divide-info-content\/25:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.25))}.focus\:divide-info-content\/30:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.3))}.focus\:divide-info-content\/40:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.4))}.focus\:divide-info-content\/5:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.05))}.focus\:divide-info-content\/50:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.5))}.focus\:divide-info-content\/60:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.6))}.focus\:divide-info-content\/70:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.7))}.focus\:divide-info-content\/75:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.75))}.focus\:divide-info-content\/80:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.8))}.focus\:divide-info-content\/90:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.9))}.focus\:divide-info-content\/95:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-inc,oklch(var(--inc)/.95))}.focus\:divide-info\/0:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/0))}.focus\:divide-info\/10:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.1))}.focus\:divide-info\/100:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:divide-info\/20:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.2))}.focus\:divide-info\/25:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.25))}.focus\:divide-info\/30:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.3))}.focus\:divide-info\/40:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.4))}.focus\:divide-info\/5:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.05))}.focus\:divide-info\/50:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.5))}.focus\:divide-info\/60:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.6))}.focus\:divide-info\/70:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.7))}.focus\:divide-info\/75:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.75))}.focus\:divide-info\/80:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.8))}.focus\:divide-info\/90:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.9))}.focus\:divide-info\/95:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-in,oklch(var(--in)/.95))}.focus\:divide-success:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:divide-success-content:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:divide-success-content\/0:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/0))}.focus\:divide-success-content\/10:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.1))}.focus\:divide-success-content\/100:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:divide-success-content\/20:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.2))}.focus\:divide-success-content\/25:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.25))}.focus\:divide-success-content\/30:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.3))}.focus\:divide-success-content\/40:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.4))}.focus\:divide-success-content\/5:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.05))}.focus\:divide-success-content\/50:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.5))}.focus\:divide-success-content\/60:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.6))}.focus\:divide-success-content\/70:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.7))}.focus\:divide-success-content\/75:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.75))}.focus\:divide-success-content\/80:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.8))}.focus\:divide-success-content\/90:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.9))}.focus\:divide-success-content\/95:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-suc,oklch(var(--suc)/.95))}.focus\:divide-success\/0:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/0))}.focus\:divide-success\/10:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.1))}.focus\:divide-success\/100:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:divide-success\/20:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.2))}.focus\:divide-success\/25:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.25))}.focus\:divide-success\/30:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.3))}.focus\:divide-success\/40:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.4))}.focus\:divide-success\/5:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.05))}.focus\:divide-success\/50:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.5))}.focus\:divide-success\/60:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.6))}.focus\:divide-success\/70:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.7))}.focus\:divide-success\/75:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.75))}.focus\:divide-success\/80:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.8))}.focus\:divide-success\/90:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.9))}.focus\:divide-success\/95:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-su,oklch(var(--su)/.95))}.focus\:divide-warning:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:divide-warning-content:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:divide-warning-content\/0:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/0))}.focus\:divide-warning-content\/10:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.1))}.focus\:divide-warning-content\/100:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:divide-warning-content\/20:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.2))}.focus\:divide-warning-content\/25:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.25))}.focus\:divide-warning-content\/30:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.3))}.focus\:divide-warning-content\/40:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.4))}.focus\:divide-warning-content\/5:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.05))}.focus\:divide-warning-content\/50:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.5))}.focus\:divide-warning-content\/60:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.6))}.focus\:divide-warning-content\/70:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.7))}.focus\:divide-warning-content\/75:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.75))}.focus\:divide-warning-content\/80:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.8))}.focus\:divide-warning-content\/90:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.9))}.focus\:divide-warning-content\/95:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wac,oklch(var(--wac)/.95))}.focus\:divide-warning\/0:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/0))}.focus\:divide-warning\/10:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.1))}.focus\:divide-warning\/100:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:divide-warning\/20:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.2))}.focus\:divide-warning\/25:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.25))}.focus\:divide-warning\/30:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.3))}.focus\:divide-warning\/40:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.4))}.focus\:divide-warning\/5:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.05))}.focus\:divide-warning\/50:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.5))}.focus\:divide-warning\/60:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.6))}.focus\:divide-warning\/70:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.7))}.focus\:divide-warning\/75:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.75))}.focus\:divide-warning\/80:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.8))}.focus\:divide-warning\/90:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.9))}.focus\:divide-warning\/95:focus>:not([hidden])~:not([hidden]){border-color:var(--fallback-wa,oklch(var(--wa)/.95))}.focus\:border-accent:focus{border-color:var(--fallback-a,oklch(var(--a)/1))}.focus\:border-accent-content:focus{border-color:var(--fallback-ac,oklch(var(--ac)/1))}.focus\:border-accent-content\/0:focus{border-color:var(--fallback-ac,oklch(var(--ac)/0))}.focus\:border-accent-content\/10:focus{border-color:var(--fallback-ac,oklch(var(--ac)/.1))}.focus\:border-accent-content\/100:focus{border-color:var(--fallback-ac,oklch(var(--ac)/1))}.focus\:border-accent-content\/20:focus{border-color:var(--fallback-ac,oklch(var(--ac)/.2))}.focus\:border-accent-content\/25:focus{border-color:var(--fallback-ac,oklch(var(--ac)/.25))}.focus\:border-accent-content\/30:focus{border-color:var(--fallback-ac,oklch(var(--ac)/.3))}.focus\:border-accent-content\/40:focus{border-color:var(--fallback-ac,oklch(var(--ac)/.4))}.focus\:border-accent-content\/5:focus{border-color:var(--fallback-ac,oklch(var(--ac)/.05))}.focus\:border-accent-content\/50:focus{border-color:var(--fallback-ac,oklch(var(--ac)/.5))}.focus\:border-accent-content\/60:focus{border-color:var(--fallback-ac,oklch(var(--ac)/.6))}.focus\:border-accent-content\/70:focus{border-color:var(--fallback-ac,oklch(var(--ac)/.7))}.focus\:border-accent-content\/75:focus{border-color:var(--fallback-ac,oklch(var(--ac)/.75))}.focus\:border-accent-content\/80:focus{border-color:var(--fallback-ac,oklch(var(--ac)/.8))}.focus\:border-accent-content\/90:focus{border-color:var(--fallback-ac,oklch(var(--ac)/.9))}.focus\:border-accent-content\/95:focus{border-color:var(--fallback-ac,oklch(var(--ac)/.95))}.focus\:border-accent\/0:focus{border-color:var(--fallback-a,oklch(var(--a)/0))}.focus\:border-accent\/10:focus{border-color:var(--fallback-a,oklch(var(--a)/.1))}.focus\:border-accent\/100:focus{border-color:var(--fallback-a,oklch(var(--a)/1))}.focus\:border-accent\/20:focus{border-color:var(--fallback-a,oklch(var(--a)/.2))}.focus\:border-accent\/25:focus{border-color:var(--fallback-a,oklch(var(--a)/.25))}.focus\:border-accent\/30:focus{border-color:var(--fallback-a,oklch(var(--a)/.3))}.focus\:border-accent\/40:focus{border-color:var(--fallback-a,oklch(var(--a)/.4))}.focus\:border-accent\/5:focus{border-color:var(--fallback-a,oklch(var(--a)/.05))}.focus\:border-accent\/50:focus{border-color:var(--fallback-a,oklch(var(--a)/.5))}.focus\:border-accent\/60:focus{border-color:var(--fallback-a,oklch(var(--a)/.6))}.focus\:border-accent\/70:focus{border-color:var(--fallback-a,oklch(var(--a)/.7))}.focus\:border-accent\/75:focus{border-color:var(--fallback-a,oklch(var(--a)/.75))}.focus\:border-accent\/80:focus{border-color:var(--fallback-a,oklch(var(--a)/.8))}.focus\:border-accent\/90:focus{border-color:var(--fallback-a,oklch(var(--a)/.9))}.focus\:border-accent\/95:focus{border-color:var(--fallback-a,oklch(var(--a)/.95))}.focus\:border-base-100:focus{border-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:border-base-100\/0:focus{border-color:var(--fallback-b1,oklch(var(--b1)/0))}.focus\:border-base-100\/10:focus{border-color:var(--fallback-b1,oklch(var(--b1)/.1))}.focus\:border-base-100\/100:focus{border-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:border-base-100\/20:focus{border-color:var(--fallback-b1,oklch(var(--b1)/.2))}.focus\:border-base-100\/25:focus{border-color:var(--fallback-b1,oklch(var(--b1)/.25))}.focus\:border-base-100\/30:focus{border-color:var(--fallback-b1,oklch(var(--b1)/.3))}.focus\:border-base-100\/40:focus{border-color:var(--fallback-b1,oklch(var(--b1)/.4))}.focus\:border-base-100\/5:focus{border-color:var(--fallback-b1,oklch(var(--b1)/.05))}.focus\:border-base-100\/50:focus{border-color:var(--fallback-b1,oklch(var(--b1)/.5))}.focus\:border-base-100\/60:focus{border-color:var(--fallback-b1,oklch(var(--b1)/.6))}.focus\:border-base-100\/70:focus{border-color:var(--fallback-b1,oklch(var(--b1)/.7))}.focus\:border-base-100\/75:focus{border-color:var(--fallback-b1,oklch(var(--b1)/.75))}.focus\:border-base-100\/80:focus{border-color:var(--fallback-b1,oklch(var(--b1)/.8))}.focus\:border-base-100\/90:focus{border-color:var(--fallback-b1,oklch(var(--b1)/.9))}.focus\:border-base-100\/95:focus{border-color:var(--fallback-b1,oklch(var(--b1)/.95))}.focus\:border-base-200:focus{border-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:border-base-200\/0:focus{border-color:var(--fallback-b2,oklch(var(--b2)/0))}.focus\:border-base-200\/10:focus{border-color:var(--fallback-b2,oklch(var(--b2)/.1))}.focus\:border-base-200\/100:focus{border-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:border-base-200\/20:focus{border-color:var(--fallback-b2,oklch(var(--b2)/.2))}.focus\:border-base-200\/25:focus{border-color:var(--fallback-b2,oklch(var(--b2)/.25))}.focus\:border-base-200\/30:focus{border-color:var(--fallback-b2,oklch(var(--b2)/.3))}.focus\:border-base-200\/40:focus{border-color:var(--fallback-b2,oklch(var(--b2)/.4))}.focus\:border-base-200\/5:focus{border-color:var(--fallback-b2,oklch(var(--b2)/.05))}.focus\:border-base-200\/50:focus{border-color:var(--fallback-b2,oklch(var(--b2)/.5))}.focus\:border-base-200\/60:focus{border-color:var(--fallback-b2,oklch(var(--b2)/.6))}.focus\:border-base-200\/70:focus{border-color:var(--fallback-b2,oklch(var(--b2)/.7))}.focus\:border-base-200\/75:focus{border-color:var(--fallback-b2,oklch(var(--b2)/.75))}.focus\:border-base-200\/80:focus{border-color:var(--fallback-b2,oklch(var(--b2)/.8))}.focus\:border-base-200\/90:focus{border-color:var(--fallback-b2,oklch(var(--b2)/.9))}.focus\:border-base-200\/95:focus{border-color:var(--fallback-b2,oklch(var(--b2)/.95))}.focus\:border-base-300:focus{border-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:border-base-300\/0:focus{border-color:var(--fallback-b3,oklch(var(--b3)/0))}.focus\:border-base-300\/10:focus{border-color:var(--fallback-b3,oklch(var(--b3)/.1))}.focus\:border-base-300\/100:focus{border-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:border-base-300\/20:focus{border-color:var(--fallback-b3,oklch(var(--b3)/.2))}.focus\:border-base-300\/25:focus{border-color:var(--fallback-b3,oklch(var(--b3)/.25))}.focus\:border-base-300\/30:focus{border-color:var(--fallback-b3,oklch(var(--b3)/.3))}.focus\:border-base-300\/40:focus{border-color:var(--fallback-b3,oklch(var(--b3)/.4))}.focus\:border-base-300\/5:focus{border-color:var(--fallback-b3,oklch(var(--b3)/.05))}.focus\:border-base-300\/50:focus{border-color:var(--fallback-b3,oklch(var(--b3)/.5))}.focus\:border-base-300\/60:focus{border-color:var(--fallback-b3,oklch(var(--b3)/.6))}.focus\:border-base-300\/70:focus{border-color:var(--fallback-b3,oklch(var(--b3)/.7))}.focus\:border-base-300\/75:focus{border-color:var(--fallback-b3,oklch(var(--b3)/.75))}.focus\:border-base-300\/80:focus{border-color:var(--fallback-b3,oklch(var(--b3)/.8))}.focus\:border-base-300\/90:focus{border-color:var(--fallback-b3,oklch(var(--b3)/.9))}.focus\:border-base-300\/95:focus{border-color:var(--fallback-b3,oklch(var(--b3)/.95))}.focus\:border-base-content:focus{border-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:border-base-content\/0:focus{border-color:var(--fallback-bc,oklch(var(--bc)/0))}.focus\:border-base-content\/10:focus{border-color:var(--fallback-bc,oklch(var(--bc)/.1))}.focus\:border-base-content\/100:focus{border-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:border-base-content\/20:focus{border-color:var(--fallback-bc,oklch(var(--bc)/.2))}.focus\:border-base-content\/25:focus{border-color:var(--fallback-bc,oklch(var(--bc)/.25))}.focus\:border-base-content\/30:focus{border-color:var(--fallback-bc,oklch(var(--bc)/.3))}.focus\:border-base-content\/40:focus{border-color:var(--fallback-bc,oklch(var(--bc)/.4))}.focus\:border-base-content\/5:focus{border-color:var(--fallback-bc,oklch(var(--bc)/.05))}.focus\:border-base-content\/50:focus{border-color:var(--fallback-bc,oklch(var(--bc)/.5))}.focus\:border-base-content\/60:focus{border-color:var(--fallback-bc,oklch(var(--bc)/.6))}.focus\:border-base-content\/70:focus{border-color:var(--fallback-bc,oklch(var(--bc)/.7))}.focus\:border-base-content\/75:focus{border-color:var(--fallback-bc,oklch(var(--bc)/.75))}.focus\:border-base-content\/80:focus{border-color:var(--fallback-bc,oklch(var(--bc)/.8))}.focus\:border-base-content\/90:focus{border-color:var(--fallback-bc,oklch(var(--bc)/.9))}.focus\:border-base-content\/95:focus{border-color:var(--fallback-bc,oklch(var(--bc)/.95))}.focus\:border-error:focus{border-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:border-error-content:focus{border-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:border-error-content\/0:focus{border-color:var(--fallback-erc,oklch(var(--erc)/0))}.focus\:border-error-content\/10:focus{border-color:var(--fallback-erc,oklch(var(--erc)/.1))}.focus\:border-error-content\/100:focus{border-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:border-error-content\/20:focus{border-color:var(--fallback-erc,oklch(var(--erc)/.2))}.focus\:border-error-content\/25:focus{border-color:var(--fallback-erc,oklch(var(--erc)/.25))}.focus\:border-error-content\/30:focus{border-color:var(--fallback-erc,oklch(var(--erc)/.3))}.focus\:border-error-content\/40:focus{border-color:var(--fallback-erc,oklch(var(--erc)/.4))}.focus\:border-error-content\/5:focus{border-color:var(--fallback-erc,oklch(var(--erc)/.05))}.focus\:border-error-content\/50:focus{border-color:var(--fallback-erc,oklch(var(--erc)/.5))}.focus\:border-error-content\/60:focus{border-color:var(--fallback-erc,oklch(var(--erc)/.6))}.focus\:border-error-content\/70:focus{border-color:var(--fallback-erc,oklch(var(--erc)/.7))}.focus\:border-error-content\/75:focus{border-color:var(--fallback-erc,oklch(var(--erc)/.75))}.focus\:border-error-content\/80:focus{border-color:var(--fallback-erc,oklch(var(--erc)/.8))}.focus\:border-error-content\/90:focus{border-color:var(--fallback-erc,oklch(var(--erc)/.9))}.focus\:border-error-content\/95:focus{border-color:var(--fallback-erc,oklch(var(--erc)/.95))}.focus\:border-error\/0:focus{border-color:var(--fallback-er,oklch(var(--er)/0))}.focus\:border-error\/10:focus{border-color:var(--fallback-er,oklch(var(--er)/.1))}.focus\:border-error\/100:focus{border-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:border-error\/20:focus{border-color:var(--fallback-er,oklch(var(--er)/.2))}.focus\:border-error\/25:focus{border-color:var(--fallback-er,oklch(var(--er)/.25))}.focus\:border-error\/30:focus{border-color:var(--fallback-er,oklch(var(--er)/.3))}.focus\:border-error\/40:focus{border-color:var(--fallback-er,oklch(var(--er)/.4))}.focus\:border-error\/5:focus{border-color:var(--fallback-er,oklch(var(--er)/.05))}.focus\:border-error\/50:focus{border-color:var(--fallback-er,oklch(var(--er)/.5))}.focus\:border-error\/60:focus{border-color:var(--fallback-er,oklch(var(--er)/.6))}.focus\:border-error\/70:focus{border-color:var(--fallback-er,oklch(var(--er)/.7))}.focus\:border-error\/75:focus{border-color:var(--fallback-er,oklch(var(--er)/.75))}.focus\:border-error\/80:focus{border-color:var(--fallback-er,oklch(var(--er)/.8))}.focus\:border-error\/90:focus{border-color:var(--fallback-er,oklch(var(--er)/.9))}.focus\:border-error\/95:focus{border-color:var(--fallback-er,oklch(var(--er)/.95))}.focus\:border-info:focus{border-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:border-info-content:focus{border-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:border-info-content\/0:focus{border-color:var(--fallback-inc,oklch(var(--inc)/0))}.focus\:border-info-content\/10:focus{border-color:var(--fallback-inc,oklch(var(--inc)/.1))}.focus\:border-info-content\/100:focus{border-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:border-info-content\/20:focus{border-color:var(--fallback-inc,oklch(var(--inc)/.2))}.focus\:border-info-content\/25:focus{border-color:var(--fallback-inc,oklch(var(--inc)/.25))}.focus\:border-info-content\/30:focus{border-color:var(--fallback-inc,oklch(var(--inc)/.3))}.focus\:border-info-content\/40:focus{border-color:var(--fallback-inc,oklch(var(--inc)/.4))}.focus\:border-info-content\/5:focus{border-color:var(--fallback-inc,oklch(var(--inc)/.05))}.focus\:border-info-content\/50:focus{border-color:var(--fallback-inc,oklch(var(--inc)/.5))}.focus\:border-info-content\/60:focus{border-color:var(--fallback-inc,oklch(var(--inc)/.6))}.focus\:border-info-content\/70:focus{border-color:var(--fallback-inc,oklch(var(--inc)/.7))}.focus\:border-info-content\/75:focus{border-color:var(--fallback-inc,oklch(var(--inc)/.75))}.focus\:border-info-content\/80:focus{border-color:var(--fallback-inc,oklch(var(--inc)/.8))}.focus\:border-info-content\/90:focus{border-color:var(--fallback-inc,oklch(var(--inc)/.9))}.focus\:border-info-content\/95:focus{border-color:var(--fallback-inc,oklch(var(--inc)/.95))}.focus\:border-info\/0:focus{border-color:var(--fallback-in,oklch(var(--in)/0))}.focus\:border-info\/10:focus{border-color:var(--fallback-in,oklch(var(--in)/.1))}.focus\:border-info\/100:focus{border-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:border-info\/20:focus{border-color:var(--fallback-in,oklch(var(--in)/.2))}.focus\:border-info\/25:focus{border-color:var(--fallback-in,oklch(var(--in)/.25))}.focus\:border-info\/30:focus{border-color:var(--fallback-in,oklch(var(--in)/.3))}.focus\:border-info\/40:focus{border-color:var(--fallback-in,oklch(var(--in)/.4))}.focus\:border-info\/5:focus{border-color:var(--fallback-in,oklch(var(--in)/.05))}.focus\:border-info\/50:focus{border-color:var(--fallback-in,oklch(var(--in)/.5))}.focus\:border-info\/60:focus{border-color:var(--fallback-in,oklch(var(--in)/.6))}.focus\:border-info\/70:focus{border-color:var(--fallback-in,oklch(var(--in)/.7))}.focus\:border-info\/75:focus{border-color:var(--fallback-in,oklch(var(--in)/.75))}.focus\:border-info\/80:focus{border-color:var(--fallback-in,oklch(var(--in)/.8))}.focus\:border-info\/90:focus{border-color:var(--fallback-in,oklch(var(--in)/.9))}.focus\:border-info\/95:focus{border-color:var(--fallback-in,oklch(var(--in)/.95))}.focus\:border-neutral:focus{border-color:var(--fallback-n,oklch(var(--n)/1))}.focus\:border-neutral-content:focus{border-color:var(--fallback-nc,oklch(var(--nc)/1))}.focus\:border-neutral-content\/0:focus{border-color:var(--fallback-nc,oklch(var(--nc)/0))}.focus\:border-neutral-content\/10:focus{border-color:var(--fallback-nc,oklch(var(--nc)/.1))}.focus\:border-neutral-content\/100:focus{border-color:var(--fallback-nc,oklch(var(--nc)/1))}.focus\:border-neutral-content\/20:focus{border-color:var(--fallback-nc,oklch(var(--nc)/.2))}.focus\:border-neutral-content\/25:focus{border-color:var(--fallback-nc,oklch(var(--nc)/.25))}.focus\:border-neutral-content\/30:focus{border-color:var(--fallback-nc,oklch(var(--nc)/.3))}.focus\:border-neutral-content\/40:focus{border-color:var(--fallback-nc,oklch(var(--nc)/.4))}.focus\:border-neutral-content\/5:focus{border-color:var(--fallback-nc,oklch(var(--nc)/.05))}.focus\:border-neutral-content\/50:focus{border-color:var(--fallback-nc,oklch(var(--nc)/.5))}.focus\:border-neutral-content\/60:focus{border-color:var(--fallback-nc,oklch(var(--nc)/.6))}.focus\:border-neutral-content\/70:focus{border-color:var(--fallback-nc,oklch(var(--nc)/.7))}.focus\:border-neutral-content\/75:focus{border-color:var(--fallback-nc,oklch(var(--nc)/.75))}.focus\:border-neutral-content\/80:focus{border-color:var(--fallback-nc,oklch(var(--nc)/.8))}.focus\:border-neutral-content\/90:focus{border-color:var(--fallback-nc,oklch(var(--nc)/.9))}.focus\:border-neutral-content\/95:focus{border-color:var(--fallback-nc,oklch(var(--nc)/.95))}.focus\:border-neutral\/0:focus{border-color:var(--fallback-n,oklch(var(--n)/0))}.focus\:border-neutral\/10:focus{border-color:var(--fallback-n,oklch(var(--n)/.1))}.focus\:border-neutral\/100:focus{border-color:var(--fallback-n,oklch(var(--n)/1))}.focus\:border-neutral\/20:focus{border-color:var(--fallback-n,oklch(var(--n)/.2))}.focus\:border-neutral\/25:focus{border-color:var(--fallback-n,oklch(var(--n)/.25))}.focus\:border-neutral\/30:focus{border-color:var(--fallback-n,oklch(var(--n)/.3))}.focus\:border-neutral\/40:focus{border-color:var(--fallback-n,oklch(var(--n)/.4))}.focus\:border-neutral\/5:focus{border-color:var(--fallback-n,oklch(var(--n)/.05))}.focus\:border-neutral\/50:focus{border-color:var(--fallback-n,oklch(var(--n)/.5))}.focus\:border-neutral\/60:focus{border-color:var(--fallback-n,oklch(var(--n)/.6))}.focus\:border-neutral\/70:focus{border-color:var(--fallback-n,oklch(var(--n)/.7))}.focus\:border-neutral\/75:focus{border-color:var(--fallback-n,oklch(var(--n)/.75))}.focus\:border-neutral\/80:focus{border-color:var(--fallback-n,oklch(var(--n)/.8))}.focus\:border-neutral\/90:focus{border-color:var(--fallback-n,oklch(var(--n)/.9))}.focus\:border-neutral\/95:focus{border-color:var(--fallback-n,oklch(var(--n)/.95))}.focus\:border-primary:focus{border-color:var(--fallback-p,oklch(var(--p)/1))}.focus\:border-primary-content:focus{border-color:var(--fallback-pc,oklch(var(--pc)/1))}.focus\:border-primary-content\/0:focus{border-color:var(--fallback-pc,oklch(var(--pc)/0))}.focus\:border-primary-content\/10:focus{border-color:var(--fallback-pc,oklch(var(--pc)/.1))}.focus\:border-primary-content\/100:focus{border-color:var(--fallback-pc,oklch(var(--pc)/1))}.focus\:border-primary-content\/20:focus{border-color:var(--fallback-pc,oklch(var(--pc)/.2))}.focus\:border-primary-content\/25:focus{border-color:var(--fallback-pc,oklch(var(--pc)/.25))}.focus\:border-primary-content\/30:focus{border-color:var(--fallback-pc,oklch(var(--pc)/.3))}.focus\:border-primary-content\/40:focus{border-color:var(--fallback-pc,oklch(var(--pc)/.4))}.focus\:border-primary-content\/5:focus{border-color:var(--fallback-pc,oklch(var(--pc)/.05))}.focus\:border-primary-content\/50:focus{border-color:var(--fallback-pc,oklch(var(--pc)/.5))}.focus\:border-primary-content\/60:focus{border-color:var(--fallback-pc,oklch(var(--pc)/.6))}.focus\:border-primary-content\/70:focus{border-color:var(--fallback-pc,oklch(var(--pc)/.7))}.focus\:border-primary-content\/75:focus{border-color:var(--fallback-pc,oklch(var(--pc)/.75))}.focus\:border-primary-content\/80:focus{border-color:var(--fallback-pc,oklch(var(--pc)/.8))}.focus\:border-primary-content\/90:focus{border-color:var(--fallback-pc,oklch(var(--pc)/.9))}.focus\:border-primary-content\/95:focus{border-color:var(--fallback-pc,oklch(var(--pc)/.95))}.focus\:border-primary\/0:focus{border-color:var(--fallback-p,oklch(var(--p)/0))}.focus\:border-primary\/10:focus{border-color:var(--fallback-p,oklch(var(--p)/.1))}.focus\:border-primary\/100:focus{border-color:var(--fallback-p,oklch(var(--p)/1))}.focus\:border-primary\/20:focus{border-color:var(--fallback-p,oklch(var(--p)/.2))}.focus\:border-primary\/25:focus{border-color:var(--fallback-p,oklch(var(--p)/.25))}.focus\:border-primary\/30:focus{border-color:var(--fallback-p,oklch(var(--p)/.3))}.focus\:border-primary\/40:focus{border-color:var(--fallback-p,oklch(var(--p)/.4))}.focus\:border-primary\/5:focus{border-color:var(--fallback-p,oklch(var(--p)/.05))}.focus\:border-primary\/50:focus{border-color:var(--fallback-p,oklch(var(--p)/.5))}.focus\:border-primary\/60:focus{border-color:var(--fallback-p,oklch(var(--p)/.6))}.focus\:border-primary\/70:focus{border-color:var(--fallback-p,oklch(var(--p)/.7))}.focus\:border-primary\/75:focus{border-color:var(--fallback-p,oklch(var(--p)/.75))}.focus\:border-primary\/80:focus{border-color:var(--fallback-p,oklch(var(--p)/.8))}.focus\:border-primary\/90:focus{border-color:var(--fallback-p,oklch(var(--p)/.9))}.focus\:border-primary\/95:focus{border-color:var(--fallback-p,oklch(var(--p)/.95))}.focus\:border-secondary:focus{border-color:var(--fallback-s,oklch(var(--s)/1))}.focus\:border-secondary-content:focus{border-color:var(--fallback-sc,oklch(var(--sc)/1))}.focus\:border-secondary-content\/0:focus{border-color:var(--fallback-sc,oklch(var(--sc)/0))}.focus\:border-secondary-content\/10:focus{border-color:var(--fallback-sc,oklch(var(--sc)/.1))}.focus\:border-secondary-content\/100:focus{border-color:var(--fallback-sc,oklch(var(--sc)/1))}.focus\:border-secondary-content\/20:focus{border-color:var(--fallback-sc,oklch(var(--sc)/.2))}.focus\:border-secondary-content\/25:focus{border-color:var(--fallback-sc,oklch(var(--sc)/.25))}.focus\:border-secondary-content\/30:focus{border-color:var(--fallback-sc,oklch(var(--sc)/.3))}.focus\:border-secondary-content\/40:focus{border-color:var(--fallback-sc,oklch(var(--sc)/.4))}.focus\:border-secondary-content\/5:focus{border-color:var(--fallback-sc,oklch(var(--sc)/.05))}.focus\:border-secondary-content\/50:focus{border-color:var(--fallback-sc,oklch(var(--sc)/.5))}.focus\:border-secondary-content\/60:focus{border-color:var(--fallback-sc,oklch(var(--sc)/.6))}.focus\:border-secondary-content\/70:focus{border-color:var(--fallback-sc,oklch(var(--sc)/.7))}.focus\:border-secondary-content\/75:focus{border-color:var(--fallback-sc,oklch(var(--sc)/.75))}.focus\:border-secondary-content\/80:focus{border-color:var(--fallback-sc,oklch(var(--sc)/.8))}.focus\:border-secondary-content\/90:focus{border-color:var(--fallback-sc,oklch(var(--sc)/.9))}.focus\:border-secondary-content\/95:focus{border-color:var(--fallback-sc,oklch(var(--sc)/.95))}.focus\:border-secondary\/0:focus{border-color:var(--fallback-s,oklch(var(--s)/0))}.focus\:border-secondary\/10:focus{border-color:var(--fallback-s,oklch(var(--s)/.1))}.focus\:border-secondary\/100:focus{border-color:var(--fallback-s,oklch(var(--s)/1))}.focus\:border-secondary\/20:focus{border-color:var(--fallback-s,oklch(var(--s)/.2))}.focus\:border-secondary\/25:focus{border-color:var(--fallback-s,oklch(var(--s)/.25))}.focus\:border-secondary\/30:focus{border-color:var(--fallback-s,oklch(var(--s)/.3))}.focus\:border-secondary\/40:focus{border-color:var(--fallback-s,oklch(var(--s)/.4))}.focus\:border-secondary\/5:focus{border-color:var(--fallback-s,oklch(var(--s)/.05))}.focus\:border-secondary\/50:focus{border-color:var(--fallback-s,oklch(var(--s)/.5))}.focus\:border-secondary\/60:focus{border-color:var(--fallback-s,oklch(var(--s)/.6))}.focus\:border-secondary\/70:focus{border-color:var(--fallback-s,oklch(var(--s)/.7))}.focus\:border-secondary\/75:focus{border-color:var(--fallback-s,oklch(var(--s)/.75))}.focus\:border-secondary\/80:focus{border-color:var(--fallback-s,oklch(var(--s)/.8))}.focus\:border-secondary\/90:focus{border-color:var(--fallback-s,oklch(var(--s)/.9))}.focus\:border-secondary\/95:focus{border-color:var(--fallback-s,oklch(var(--s)/.95))}.focus\:border-success:focus{border-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:border-success-content:focus{border-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:border-success-content\/0:focus{border-color:var(--fallback-suc,oklch(var(--suc)/0))}.focus\:border-success-content\/10:focus{border-color:var(--fallback-suc,oklch(var(--suc)/.1))}.focus\:border-success-content\/100:focus{border-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:border-success-content\/20:focus{border-color:var(--fallback-suc,oklch(var(--suc)/.2))}.focus\:border-success-content\/25:focus{border-color:var(--fallback-suc,oklch(var(--suc)/.25))}.focus\:border-success-content\/30:focus{border-color:var(--fallback-suc,oklch(var(--suc)/.3))}.focus\:border-success-content\/40:focus{border-color:var(--fallback-suc,oklch(var(--suc)/.4))}.focus\:border-success-content\/5:focus{border-color:var(--fallback-suc,oklch(var(--suc)/.05))}.focus\:border-success-content\/50:focus{border-color:var(--fallback-suc,oklch(var(--suc)/.5))}.focus\:border-success-content\/60:focus{border-color:var(--fallback-suc,oklch(var(--suc)/.6))}.focus\:border-success-content\/70:focus{border-color:var(--fallback-suc,oklch(var(--suc)/.7))}.focus\:border-success-content\/75:focus{border-color:var(--fallback-suc,oklch(var(--suc)/.75))}.focus\:border-success-content\/80:focus{border-color:var(--fallback-suc,oklch(var(--suc)/.8))}.focus\:border-success-content\/90:focus{border-color:var(--fallback-suc,oklch(var(--suc)/.9))}.focus\:border-success-content\/95:focus{border-color:var(--fallback-suc,oklch(var(--suc)/.95))}.focus\:border-success\/0:focus{border-color:var(--fallback-su,oklch(var(--su)/0))}.focus\:border-success\/10:focus{border-color:var(--fallback-su,oklch(var(--su)/.1))}.focus\:border-success\/100:focus{border-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:border-success\/20:focus{border-color:var(--fallback-su,oklch(var(--su)/.2))}.focus\:border-success\/25:focus{border-color:var(--fallback-su,oklch(var(--su)/.25))}.focus\:border-success\/30:focus{border-color:var(--fallback-su,oklch(var(--su)/.3))}.focus\:border-success\/40:focus{border-color:var(--fallback-su,oklch(var(--su)/.4))}.focus\:border-success\/5:focus{border-color:var(--fallback-su,oklch(var(--su)/.05))}.focus\:border-success\/50:focus{border-color:var(--fallback-su,oklch(var(--su)/.5))}.focus\:border-success\/60:focus{border-color:var(--fallback-su,oklch(var(--su)/.6))}.focus\:border-success\/70:focus{border-color:var(--fallback-su,oklch(var(--su)/.7))}.focus\:border-success\/75:focus{border-color:var(--fallback-su,oklch(var(--su)/.75))}.focus\:border-success\/80:focus{border-color:var(--fallback-su,oklch(var(--su)/.8))}.focus\:border-success\/90:focus{border-color:var(--fallback-su,oklch(var(--su)/.9))}.focus\:border-success\/95:focus{border-color:var(--fallback-su,oklch(var(--su)/.95))}.focus\:border-warning:focus{border-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:border-warning-content:focus{border-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:border-warning-content\/0:focus{border-color:var(--fallback-wac,oklch(var(--wac)/0))}.focus\:border-warning-content\/10:focus{border-color:var(--fallback-wac,oklch(var(--wac)/.1))}.focus\:border-warning-content\/100:focus{border-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:border-warning-content\/20:focus{border-color:var(--fallback-wac,oklch(var(--wac)/.2))}.focus\:border-warning-content\/25:focus{border-color:var(--fallback-wac,oklch(var(--wac)/.25))}.focus\:border-warning-content\/30:focus{border-color:var(--fallback-wac,oklch(var(--wac)/.3))}.focus\:border-warning-content\/40:focus{border-color:var(--fallback-wac,oklch(var(--wac)/.4))}.focus\:border-warning-content\/5:focus{border-color:var(--fallback-wac,oklch(var(--wac)/.05))}.focus\:border-warning-content\/50:focus{border-color:var(--fallback-wac,oklch(var(--wac)/.5))}.focus\:border-warning-content\/60:focus{border-color:var(--fallback-wac,oklch(var(--wac)/.6))}.focus\:border-warning-content\/70:focus{border-color:var(--fallback-wac,oklch(var(--wac)/.7))}.focus\:border-warning-content\/75:focus{border-color:var(--fallback-wac,oklch(var(--wac)/.75))}.focus\:border-warning-content\/80:focus{border-color:var(--fallback-wac,oklch(var(--wac)/.8))}.focus\:border-warning-content\/90:focus{border-color:var(--fallback-wac,oklch(var(--wac)/.9))}.focus\:border-warning-content\/95:focus{border-color:var(--fallback-wac,oklch(var(--wac)/.95))}.focus\:border-warning\/0:focus{border-color:var(--fallback-wa,oklch(var(--wa)/0))}.focus\:border-warning\/10:focus{border-color:var(--fallback-wa,oklch(var(--wa)/.1))}.focus\:border-warning\/100:focus{border-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:border-warning\/20:focus{border-color:var(--fallback-wa,oklch(var(--wa)/.2))}.focus\:border-warning\/25:focus{border-color:var(--fallback-wa,oklch(var(--wa)/.25))}.focus\:border-warning\/30:focus{border-color:var(--fallback-wa,oklch(var(--wa)/.3))}.focus\:border-warning\/40:focus{border-color:var(--fallback-wa,oklch(var(--wa)/.4))}.focus\:border-warning\/5:focus{border-color:var(--fallback-wa,oklch(var(--wa)/.05))}.focus\:border-warning\/50:focus{border-color:var(--fallback-wa,oklch(var(--wa)/.5))}.focus\:border-warning\/60:focus{border-color:var(--fallback-wa,oklch(var(--wa)/.6))}.focus\:border-warning\/70:focus{border-color:var(--fallback-wa,oklch(var(--wa)/.7))}.focus\:border-warning\/75:focus{border-color:var(--fallback-wa,oklch(var(--wa)/.75))}.focus\:border-warning\/80:focus{border-color:var(--fallback-wa,oklch(var(--wa)/.8))}.focus\:border-warning\/90:focus{border-color:var(--fallback-wa,oklch(var(--wa)/.9))}.focus\:border-warning\/95:focus{border-color:var(--fallback-wa,oklch(var(--wa)/.95))}.focus\:border-x-base-100:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/1));border-right-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:border-x-base-100\/0:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/0));border-right-color:var(--fallback-b1,oklch(var(--b1)/0))}.focus\:border-x-base-100\/10:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.1));border-right-color:var(--fallback-b1,oklch(var(--b1)/.1))}.focus\:border-x-base-100\/100:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/1));border-right-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:border-x-base-100\/20:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.2));border-right-color:var(--fallback-b1,oklch(var(--b1)/.2))}.focus\:border-x-base-100\/25:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.25));border-right-color:var(--fallback-b1,oklch(var(--b1)/.25))}.focus\:border-x-base-100\/30:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.3));border-right-color:var(--fallback-b1,oklch(var(--b1)/.3))}.focus\:border-x-base-100\/40:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.4));border-right-color:var(--fallback-b1,oklch(var(--b1)/.4))}.focus\:border-x-base-100\/5:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.05));border-right-color:var(--fallback-b1,oklch(var(--b1)/.05))}.focus\:border-x-base-100\/50:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.5));border-right-color:var(--fallback-b1,oklch(var(--b1)/.5))}.focus\:border-x-base-100\/60:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.6));border-right-color:var(--fallback-b1,oklch(var(--b1)/.6))}.focus\:border-x-base-100\/70:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.7));border-right-color:var(--fallback-b1,oklch(var(--b1)/.7))}.focus\:border-x-base-100\/75:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.75));border-right-color:var(--fallback-b1,oklch(var(--b1)/.75))}.focus\:border-x-base-100\/80:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.8));border-right-color:var(--fallback-b1,oklch(var(--b1)/.8))}.focus\:border-x-base-100\/90:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.9));border-right-color:var(--fallback-b1,oklch(var(--b1)/.9))}.focus\:border-x-base-100\/95:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.95));border-right-color:var(--fallback-b1,oklch(var(--b1)/.95))}.focus\:border-x-base-200:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/1));border-right-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:border-x-base-200\/0:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/0));border-right-color:var(--fallback-b2,oklch(var(--b2)/0))}.focus\:border-x-base-200\/10:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.1));border-right-color:var(--fallback-b2,oklch(var(--b2)/.1))}.focus\:border-x-base-200\/100:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/1));border-right-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:border-x-base-200\/20:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.2));border-right-color:var(--fallback-b2,oklch(var(--b2)/.2))}.focus\:border-x-base-200\/25:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.25));border-right-color:var(--fallback-b2,oklch(var(--b2)/.25))}.focus\:border-x-base-200\/30:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.3));border-right-color:var(--fallback-b2,oklch(var(--b2)/.3))}.focus\:border-x-base-200\/40:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.4));border-right-color:var(--fallback-b2,oklch(var(--b2)/.4))}.focus\:border-x-base-200\/5:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.05));border-right-color:var(--fallback-b2,oklch(var(--b2)/.05))}.focus\:border-x-base-200\/50:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.5));border-right-color:var(--fallback-b2,oklch(var(--b2)/.5))}.focus\:border-x-base-200\/60:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.6));border-right-color:var(--fallback-b2,oklch(var(--b2)/.6))}.focus\:border-x-base-200\/70:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.7));border-right-color:var(--fallback-b2,oklch(var(--b2)/.7))}.focus\:border-x-base-200\/75:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.75));border-right-color:var(--fallback-b2,oklch(var(--b2)/.75))}.focus\:border-x-base-200\/80:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.8));border-right-color:var(--fallback-b2,oklch(var(--b2)/.8))}.focus\:border-x-base-200\/90:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.9));border-right-color:var(--fallback-b2,oklch(var(--b2)/.9))}.focus\:border-x-base-200\/95:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.95));border-right-color:var(--fallback-b2,oklch(var(--b2)/.95))}.focus\:border-x-base-300:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/1));border-right-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:border-x-base-300\/0:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/0));border-right-color:var(--fallback-b3,oklch(var(--b3)/0))}.focus\:border-x-base-300\/10:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.1));border-right-color:var(--fallback-b3,oklch(var(--b3)/.1))}.focus\:border-x-base-300\/100:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/1));border-right-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:border-x-base-300\/20:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.2));border-right-color:var(--fallback-b3,oklch(var(--b3)/.2))}.focus\:border-x-base-300\/25:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.25));border-right-color:var(--fallback-b3,oklch(var(--b3)/.25))}.focus\:border-x-base-300\/30:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.3));border-right-color:var(--fallback-b3,oklch(var(--b3)/.3))}.focus\:border-x-base-300\/40:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.4));border-right-color:var(--fallback-b3,oklch(var(--b3)/.4))}.focus\:border-x-base-300\/5:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.05));border-right-color:var(--fallback-b3,oklch(var(--b3)/.05))}.focus\:border-x-base-300\/50:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.5));border-right-color:var(--fallback-b3,oklch(var(--b3)/.5))}.focus\:border-x-base-300\/60:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.6));border-right-color:var(--fallback-b3,oklch(var(--b3)/.6))}.focus\:border-x-base-300\/70:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.7));border-right-color:var(--fallback-b3,oklch(var(--b3)/.7))}.focus\:border-x-base-300\/75:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.75));border-right-color:var(--fallback-b3,oklch(var(--b3)/.75))}.focus\:border-x-base-300\/80:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.8));border-right-color:var(--fallback-b3,oklch(var(--b3)/.8))}.focus\:border-x-base-300\/90:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.9));border-right-color:var(--fallback-b3,oklch(var(--b3)/.9))}.focus\:border-x-base-300\/95:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.95));border-right-color:var(--fallback-b3,oklch(var(--b3)/.95))}.focus\:border-x-base-content:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/1));border-right-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:border-x-base-content\/0:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/0));border-right-color:var(--fallback-bc,oklch(var(--bc)/0))}.focus\:border-x-base-content\/10:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.1));border-right-color:var(--fallback-bc,oklch(var(--bc)/.1))}.focus\:border-x-base-content\/100:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/1));border-right-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:border-x-base-content\/20:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.2));border-right-color:var(--fallback-bc,oklch(var(--bc)/.2))}.focus\:border-x-base-content\/25:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.25));border-right-color:var(--fallback-bc,oklch(var(--bc)/.25))}.focus\:border-x-base-content\/30:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.3));border-right-color:var(--fallback-bc,oklch(var(--bc)/.3))}.focus\:border-x-base-content\/40:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.4));border-right-color:var(--fallback-bc,oklch(var(--bc)/.4))}.focus\:border-x-base-content\/5:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.05));border-right-color:var(--fallback-bc,oklch(var(--bc)/.05))}.focus\:border-x-base-content\/50:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.5));border-right-color:var(--fallback-bc,oklch(var(--bc)/.5))}.focus\:border-x-base-content\/60:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.6));border-right-color:var(--fallback-bc,oklch(var(--bc)/.6))}.focus\:border-x-base-content\/70:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.7));border-right-color:var(--fallback-bc,oklch(var(--bc)/.7))}.focus\:border-x-base-content\/75:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.75));border-right-color:var(--fallback-bc,oklch(var(--bc)/.75))}.focus\:border-x-base-content\/80:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.8));border-right-color:var(--fallback-bc,oklch(var(--bc)/.8))}.focus\:border-x-base-content\/90:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.9));border-right-color:var(--fallback-bc,oklch(var(--bc)/.9))}.focus\:border-x-base-content\/95:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.95));border-right-color:var(--fallback-bc,oklch(var(--bc)/.95))}.focus\:border-x-error:focus{border-left-color:var(--fallback-er,oklch(var(--er)/1));border-right-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:border-x-error-content:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/1));border-right-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:border-x-error-content\/0:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/0));border-right-color:var(--fallback-erc,oklch(var(--erc)/0))}.focus\:border-x-error-content\/10:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.1));border-right-color:var(--fallback-erc,oklch(var(--erc)/.1))}.focus\:border-x-error-content\/100:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/1));border-right-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:border-x-error-content\/20:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.2));border-right-color:var(--fallback-erc,oklch(var(--erc)/.2))}.focus\:border-x-error-content\/25:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.25));border-right-color:var(--fallback-erc,oklch(var(--erc)/.25))}.focus\:border-x-error-content\/30:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.3));border-right-color:var(--fallback-erc,oklch(var(--erc)/.3))}.focus\:border-x-error-content\/40:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.4));border-right-color:var(--fallback-erc,oklch(var(--erc)/.4))}.focus\:border-x-error-content\/5:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.05));border-right-color:var(--fallback-erc,oklch(var(--erc)/.05))}.focus\:border-x-error-content\/50:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.5));border-right-color:var(--fallback-erc,oklch(var(--erc)/.5))}.focus\:border-x-error-content\/60:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.6));border-right-color:var(--fallback-erc,oklch(var(--erc)/.6))}.focus\:border-x-error-content\/70:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.7));border-right-color:var(--fallback-erc,oklch(var(--erc)/.7))}.focus\:border-x-error-content\/75:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.75));border-right-color:var(--fallback-erc,oklch(var(--erc)/.75))}.focus\:border-x-error-content\/80:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.8));border-right-color:var(--fallback-erc,oklch(var(--erc)/.8))}.focus\:border-x-error-content\/90:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.9));border-right-color:var(--fallback-erc,oklch(var(--erc)/.9))}.focus\:border-x-error-content\/95:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.95));border-right-color:var(--fallback-erc,oklch(var(--erc)/.95))}.focus\:border-x-error\/0:focus{border-left-color:var(--fallback-er,oklch(var(--er)/0));border-right-color:var(--fallback-er,oklch(var(--er)/0))}.focus\:border-x-error\/10:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.1));border-right-color:var(--fallback-er,oklch(var(--er)/.1))}.focus\:border-x-error\/100:focus{border-left-color:var(--fallback-er,oklch(var(--er)/1));border-right-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:border-x-error\/20:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.2));border-right-color:var(--fallback-er,oklch(var(--er)/.2))}.focus\:border-x-error\/25:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.25));border-right-color:var(--fallback-er,oklch(var(--er)/.25))}.focus\:border-x-error\/30:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.3));border-right-color:var(--fallback-er,oklch(var(--er)/.3))}.focus\:border-x-error\/40:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.4));border-right-color:var(--fallback-er,oklch(var(--er)/.4))}.focus\:border-x-error\/5:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.05));border-right-color:var(--fallback-er,oklch(var(--er)/.05))}.focus\:border-x-error\/50:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.5));border-right-color:var(--fallback-er,oklch(var(--er)/.5))}.focus\:border-x-error\/60:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.6));border-right-color:var(--fallback-er,oklch(var(--er)/.6))}.focus\:border-x-error\/70:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.7));border-right-color:var(--fallback-er,oklch(var(--er)/.7))}.focus\:border-x-error\/75:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.75));border-right-color:var(--fallback-er,oklch(var(--er)/.75))}.focus\:border-x-error\/80:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.8));border-right-color:var(--fallback-er,oklch(var(--er)/.8))}.focus\:border-x-error\/90:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.9));border-right-color:var(--fallback-er,oklch(var(--er)/.9))}.focus\:border-x-error\/95:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.95));border-right-color:var(--fallback-er,oklch(var(--er)/.95))}.focus\:border-x-info:focus{border-left-color:var(--fallback-in,oklch(var(--in)/1));border-right-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:border-x-info-content:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/1));border-right-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:border-x-info-content\/0:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/0));border-right-color:var(--fallback-inc,oklch(var(--inc)/0))}.focus\:border-x-info-content\/10:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.1));border-right-color:var(--fallback-inc,oklch(var(--inc)/.1))}.focus\:border-x-info-content\/100:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/1));border-right-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:border-x-info-content\/20:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.2));border-right-color:var(--fallback-inc,oklch(var(--inc)/.2))}.focus\:border-x-info-content\/25:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.25));border-right-color:var(--fallback-inc,oklch(var(--inc)/.25))}.focus\:border-x-info-content\/30:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.3));border-right-color:var(--fallback-inc,oklch(var(--inc)/.3))}.focus\:border-x-info-content\/40:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.4));border-right-color:var(--fallback-inc,oklch(var(--inc)/.4))}.focus\:border-x-info-content\/5:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.05));border-right-color:var(--fallback-inc,oklch(var(--inc)/.05))}.focus\:border-x-info-content\/50:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.5));border-right-color:var(--fallback-inc,oklch(var(--inc)/.5))}.focus\:border-x-info-content\/60:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.6));border-right-color:var(--fallback-inc,oklch(var(--inc)/.6))}.focus\:border-x-info-content\/70:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.7));border-right-color:var(--fallback-inc,oklch(var(--inc)/.7))}.focus\:border-x-info-content\/75:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.75));border-right-color:var(--fallback-inc,oklch(var(--inc)/.75))}.focus\:border-x-info-content\/80:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.8));border-right-color:var(--fallback-inc,oklch(var(--inc)/.8))}.focus\:border-x-info-content\/90:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.9));border-right-color:var(--fallback-inc,oklch(var(--inc)/.9))}.focus\:border-x-info-content\/95:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.95));border-right-color:var(--fallback-inc,oklch(var(--inc)/.95))}.focus\:border-x-info\/0:focus{border-left-color:var(--fallback-in,oklch(var(--in)/0));border-right-color:var(--fallback-in,oklch(var(--in)/0))}.focus\:border-x-info\/10:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.1));border-right-color:var(--fallback-in,oklch(var(--in)/.1))}.focus\:border-x-info\/100:focus{border-left-color:var(--fallback-in,oklch(var(--in)/1));border-right-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:border-x-info\/20:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.2));border-right-color:var(--fallback-in,oklch(var(--in)/.2))}.focus\:border-x-info\/25:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.25));border-right-color:var(--fallback-in,oklch(var(--in)/.25))}.focus\:border-x-info\/30:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.3));border-right-color:var(--fallback-in,oklch(var(--in)/.3))}.focus\:border-x-info\/40:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.4));border-right-color:var(--fallback-in,oklch(var(--in)/.4))}.focus\:border-x-info\/5:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.05));border-right-color:var(--fallback-in,oklch(var(--in)/.05))}.focus\:border-x-info\/50:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.5));border-right-color:var(--fallback-in,oklch(var(--in)/.5))}.focus\:border-x-info\/60:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.6));border-right-color:var(--fallback-in,oklch(var(--in)/.6))}.focus\:border-x-info\/70:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.7));border-right-color:var(--fallback-in,oklch(var(--in)/.7))}.focus\:border-x-info\/75:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.75));border-right-color:var(--fallback-in,oklch(var(--in)/.75))}.focus\:border-x-info\/80:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.8));border-right-color:var(--fallback-in,oklch(var(--in)/.8))}.focus\:border-x-info\/90:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.9));border-right-color:var(--fallback-in,oklch(var(--in)/.9))}.focus\:border-x-info\/95:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.95));border-right-color:var(--fallback-in,oklch(var(--in)/.95))}.focus\:border-x-success:focus{border-left-color:var(--fallback-su,oklch(var(--su)/1));border-right-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:border-x-success-content:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/1));border-right-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:border-x-success-content\/0:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/0));border-right-color:var(--fallback-suc,oklch(var(--suc)/0))}.focus\:border-x-success-content\/10:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.1));border-right-color:var(--fallback-suc,oklch(var(--suc)/.1))}.focus\:border-x-success-content\/100:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/1));border-right-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:border-x-success-content\/20:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.2));border-right-color:var(--fallback-suc,oklch(var(--suc)/.2))}.focus\:border-x-success-content\/25:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.25));border-right-color:var(--fallback-suc,oklch(var(--suc)/.25))}.focus\:border-x-success-content\/30:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.3));border-right-color:var(--fallback-suc,oklch(var(--suc)/.3))}.focus\:border-x-success-content\/40:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.4));border-right-color:var(--fallback-suc,oklch(var(--suc)/.4))}.focus\:border-x-success-content\/5:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.05));border-right-color:var(--fallback-suc,oklch(var(--suc)/.05))}.focus\:border-x-success-content\/50:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.5));border-right-color:var(--fallback-suc,oklch(var(--suc)/.5))}.focus\:border-x-success-content\/60:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.6));border-right-color:var(--fallback-suc,oklch(var(--suc)/.6))}.focus\:border-x-success-content\/70:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.7));border-right-color:var(--fallback-suc,oklch(var(--suc)/.7))}.focus\:border-x-success-content\/75:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.75));border-right-color:var(--fallback-suc,oklch(var(--suc)/.75))}.focus\:border-x-success-content\/80:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.8));border-right-color:var(--fallback-suc,oklch(var(--suc)/.8))}.focus\:border-x-success-content\/90:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.9));border-right-color:var(--fallback-suc,oklch(var(--suc)/.9))}.focus\:border-x-success-content\/95:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.95));border-right-color:var(--fallback-suc,oklch(var(--suc)/.95))}.focus\:border-x-success\/0:focus{border-left-color:var(--fallback-su,oklch(var(--su)/0));border-right-color:var(--fallback-su,oklch(var(--su)/0))}.focus\:border-x-success\/10:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.1));border-right-color:var(--fallback-su,oklch(var(--su)/.1))}.focus\:border-x-success\/100:focus{border-left-color:var(--fallback-su,oklch(var(--su)/1));border-right-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:border-x-success\/20:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.2));border-right-color:var(--fallback-su,oklch(var(--su)/.2))}.focus\:border-x-success\/25:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.25));border-right-color:var(--fallback-su,oklch(var(--su)/.25))}.focus\:border-x-success\/30:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.3));border-right-color:var(--fallback-su,oklch(var(--su)/.3))}.focus\:border-x-success\/40:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.4));border-right-color:var(--fallback-su,oklch(var(--su)/.4))}.focus\:border-x-success\/5:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.05));border-right-color:var(--fallback-su,oklch(var(--su)/.05))}.focus\:border-x-success\/50:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.5));border-right-color:var(--fallback-su,oklch(var(--su)/.5))}.focus\:border-x-success\/60:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.6));border-right-color:var(--fallback-su,oklch(var(--su)/.6))}.focus\:border-x-success\/70:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.7));border-right-color:var(--fallback-su,oklch(var(--su)/.7))}.focus\:border-x-success\/75:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.75));border-right-color:var(--fallback-su,oklch(var(--su)/.75))}.focus\:border-x-success\/80:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.8));border-right-color:var(--fallback-su,oklch(var(--su)/.8))}.focus\:border-x-success\/90:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.9));border-right-color:var(--fallback-su,oklch(var(--su)/.9))}.focus\:border-x-success\/95:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.95));border-right-color:var(--fallback-su,oklch(var(--su)/.95))}.focus\:border-x-warning:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/1));border-right-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:border-x-warning-content:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/1));border-right-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:border-x-warning-content\/0:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/0));border-right-color:var(--fallback-wac,oklch(var(--wac)/0))}.focus\:border-x-warning-content\/10:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.1));border-right-color:var(--fallback-wac,oklch(var(--wac)/.1))}.focus\:border-x-warning-content\/100:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/1));border-right-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:border-x-warning-content\/20:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.2));border-right-color:var(--fallback-wac,oklch(var(--wac)/.2))}.focus\:border-x-warning-content\/25:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.25));border-right-color:var(--fallback-wac,oklch(var(--wac)/.25))}.focus\:border-x-warning-content\/30:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.3));border-right-color:var(--fallback-wac,oklch(var(--wac)/.3))}.focus\:border-x-warning-content\/40:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.4));border-right-color:var(--fallback-wac,oklch(var(--wac)/.4))}.focus\:border-x-warning-content\/5:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.05));border-right-color:var(--fallback-wac,oklch(var(--wac)/.05))}.focus\:border-x-warning-content\/50:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.5));border-right-color:var(--fallback-wac,oklch(var(--wac)/.5))}.focus\:border-x-warning-content\/60:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.6));border-right-color:var(--fallback-wac,oklch(var(--wac)/.6))}.focus\:border-x-warning-content\/70:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.7));border-right-color:var(--fallback-wac,oklch(var(--wac)/.7))}.focus\:border-x-warning-content\/75:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.75));border-right-color:var(--fallback-wac,oklch(var(--wac)/.75))}.focus\:border-x-warning-content\/80:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.8));border-right-color:var(--fallback-wac,oklch(var(--wac)/.8))}.focus\:border-x-warning-content\/90:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.9));border-right-color:var(--fallback-wac,oklch(var(--wac)/.9))}.focus\:border-x-warning-content\/95:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.95));border-right-color:var(--fallback-wac,oklch(var(--wac)/.95))}.focus\:border-x-warning\/0:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/0));border-right-color:var(--fallback-wa,oklch(var(--wa)/0))}.focus\:border-x-warning\/10:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.1));border-right-color:var(--fallback-wa,oklch(var(--wa)/.1))}.focus\:border-x-warning\/100:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/1));border-right-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:border-x-warning\/20:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.2));border-right-color:var(--fallback-wa,oklch(var(--wa)/.2))}.focus\:border-x-warning\/25:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.25));border-right-color:var(--fallback-wa,oklch(var(--wa)/.25))}.focus\:border-x-warning\/30:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.3));border-right-color:var(--fallback-wa,oklch(var(--wa)/.3))}.focus\:border-x-warning\/40:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.4));border-right-color:var(--fallback-wa,oklch(var(--wa)/.4))}.focus\:border-x-warning\/5:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.05));border-right-color:var(--fallback-wa,oklch(var(--wa)/.05))}.focus\:border-x-warning\/50:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.5));border-right-color:var(--fallback-wa,oklch(var(--wa)/.5))}.focus\:border-x-warning\/60:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.6));border-right-color:var(--fallback-wa,oklch(var(--wa)/.6))}.focus\:border-x-warning\/70:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.7));border-right-color:var(--fallback-wa,oklch(var(--wa)/.7))}.focus\:border-x-warning\/75:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.75));border-right-color:var(--fallback-wa,oklch(var(--wa)/.75))}.focus\:border-x-warning\/80:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.8));border-right-color:var(--fallback-wa,oklch(var(--wa)/.8))}.focus\:border-x-warning\/90:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.9));border-right-color:var(--fallback-wa,oklch(var(--wa)/.9))}.focus\:border-x-warning\/95:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.95));border-right-color:var(--fallback-wa,oklch(var(--wa)/.95))}.focus\:border-y-base-100:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/1));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:border-y-base-100\/0:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/0));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/0))}.focus\:border-y-base-100\/10:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.1));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.1))}.focus\:border-y-base-100\/100:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/1));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:border-y-base-100\/20:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.2));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.2))}.focus\:border-y-base-100\/25:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.25));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.25))}.focus\:border-y-base-100\/30:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.3));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.3))}.focus\:border-y-base-100\/40:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.4));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.4))}.focus\:border-y-base-100\/5:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.05));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.05))}.focus\:border-y-base-100\/50:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.5));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.5))}.focus\:border-y-base-100\/60:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.6));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.6))}.focus\:border-y-base-100\/70:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.7));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.7))}.focus\:border-y-base-100\/75:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.75));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.75))}.focus\:border-y-base-100\/80:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.8));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.8))}.focus\:border-y-base-100\/90:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.9));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.9))}.focus\:border-y-base-100\/95:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.95));border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.95))}.focus\:border-y-base-200:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/1));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:border-y-base-200\/0:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/0));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/0))}.focus\:border-y-base-200\/10:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.1));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.1))}.focus\:border-y-base-200\/100:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/1));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:border-y-base-200\/20:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.2));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.2))}.focus\:border-y-base-200\/25:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.25));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.25))}.focus\:border-y-base-200\/30:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.3));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.3))}.focus\:border-y-base-200\/40:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.4));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.4))}.focus\:border-y-base-200\/5:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.05));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.05))}.focus\:border-y-base-200\/50:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.5));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.5))}.focus\:border-y-base-200\/60:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.6));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.6))}.focus\:border-y-base-200\/70:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.7));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.7))}.focus\:border-y-base-200\/75:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.75));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.75))}.focus\:border-y-base-200\/80:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.8));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.8))}.focus\:border-y-base-200\/90:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.9));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.9))}.focus\:border-y-base-200\/95:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.95));border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.95))}.focus\:border-y-base-300:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/1));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:border-y-base-300\/0:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/0));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/0))}.focus\:border-y-base-300\/10:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.1));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.1))}.focus\:border-y-base-300\/100:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/1));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:border-y-base-300\/20:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.2));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.2))}.focus\:border-y-base-300\/25:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.25));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.25))}.focus\:border-y-base-300\/30:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.3));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.3))}.focus\:border-y-base-300\/40:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.4));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.4))}.focus\:border-y-base-300\/5:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.05));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.05))}.focus\:border-y-base-300\/50:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.5));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.5))}.focus\:border-y-base-300\/60:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.6));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.6))}.focus\:border-y-base-300\/70:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.7));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.7))}.focus\:border-y-base-300\/75:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.75));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.75))}.focus\:border-y-base-300\/80:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.8));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.8))}.focus\:border-y-base-300\/90:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.9));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.9))}.focus\:border-y-base-300\/95:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.95));border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.95))}.focus\:border-y-base-content:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/1));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:border-y-base-content\/0:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/0));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/0))}.focus\:border-y-base-content\/10:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.1));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.1))}.focus\:border-y-base-content\/100:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/1));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:border-y-base-content\/20:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.2));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.2))}.focus\:border-y-base-content\/25:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.25));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.25))}.focus\:border-y-base-content\/30:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.3));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.3))}.focus\:border-y-base-content\/40:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.4));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.4))}.focus\:border-y-base-content\/5:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.05));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.05))}.focus\:border-y-base-content\/50:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.5));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.5))}.focus\:border-y-base-content\/60:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.6));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.6))}.focus\:border-y-base-content\/70:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.7));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.7))}.focus\:border-y-base-content\/75:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.75));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.75))}.focus\:border-y-base-content\/80:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.8));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.8))}.focus\:border-y-base-content\/90:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.9));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.9))}.focus\:border-y-base-content\/95:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.95));border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.95))}.focus\:border-y-error:focus{border-top-color:var(--fallback-er,oklch(var(--er)/1));border-bottom-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:border-y-error-content:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/1));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:border-y-error-content\/0:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/0));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/0))}.focus\:border-y-error-content\/10:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.1));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.1))}.focus\:border-y-error-content\/100:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/1));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:border-y-error-content\/20:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.2));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.2))}.focus\:border-y-error-content\/25:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.25));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.25))}.focus\:border-y-error-content\/30:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.3));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.3))}.focus\:border-y-error-content\/40:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.4));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.4))}.focus\:border-y-error-content\/5:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.05));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.05))}.focus\:border-y-error-content\/50:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.5));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.5))}.focus\:border-y-error-content\/60:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.6));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.6))}.focus\:border-y-error-content\/70:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.7));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.7))}.focus\:border-y-error-content\/75:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.75));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.75))}.focus\:border-y-error-content\/80:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.8));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.8))}.focus\:border-y-error-content\/90:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.9));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.9))}.focus\:border-y-error-content\/95:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.95));border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.95))}.focus\:border-y-error\/0:focus{border-top-color:var(--fallback-er,oklch(var(--er)/0));border-bottom-color:var(--fallback-er,oklch(var(--er)/0))}.focus\:border-y-error\/10:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.1));border-bottom-color:var(--fallback-er,oklch(var(--er)/.1))}.focus\:border-y-error\/100:focus{border-top-color:var(--fallback-er,oklch(var(--er)/1));border-bottom-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:border-y-error\/20:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.2));border-bottom-color:var(--fallback-er,oklch(var(--er)/.2))}.focus\:border-y-error\/25:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.25));border-bottom-color:var(--fallback-er,oklch(var(--er)/.25))}.focus\:border-y-error\/30:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.3));border-bottom-color:var(--fallback-er,oklch(var(--er)/.3))}.focus\:border-y-error\/40:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.4));border-bottom-color:var(--fallback-er,oklch(var(--er)/.4))}.focus\:border-y-error\/5:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.05));border-bottom-color:var(--fallback-er,oklch(var(--er)/.05))}.focus\:border-y-error\/50:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.5));border-bottom-color:var(--fallback-er,oklch(var(--er)/.5))}.focus\:border-y-error\/60:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.6));border-bottom-color:var(--fallback-er,oklch(var(--er)/.6))}.focus\:border-y-error\/70:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.7));border-bottom-color:var(--fallback-er,oklch(var(--er)/.7))}.focus\:border-y-error\/75:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.75));border-bottom-color:var(--fallback-er,oklch(var(--er)/.75))}.focus\:border-y-error\/80:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.8));border-bottom-color:var(--fallback-er,oklch(var(--er)/.8))}.focus\:border-y-error\/90:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.9));border-bottom-color:var(--fallback-er,oklch(var(--er)/.9))}.focus\:border-y-error\/95:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.95));border-bottom-color:var(--fallback-er,oklch(var(--er)/.95))}.focus\:border-y-info:focus{border-top-color:var(--fallback-in,oklch(var(--in)/1));border-bottom-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:border-y-info-content:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/1));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:border-y-info-content\/0:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/0));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/0))}.focus\:border-y-info-content\/10:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.1));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.1))}.focus\:border-y-info-content\/100:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/1));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:border-y-info-content\/20:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.2));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.2))}.focus\:border-y-info-content\/25:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.25));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.25))}.focus\:border-y-info-content\/30:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.3));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.3))}.focus\:border-y-info-content\/40:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.4));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.4))}.focus\:border-y-info-content\/5:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.05));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.05))}.focus\:border-y-info-content\/50:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.5));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.5))}.focus\:border-y-info-content\/60:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.6));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.6))}.focus\:border-y-info-content\/70:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.7));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.7))}.focus\:border-y-info-content\/75:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.75));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.75))}.focus\:border-y-info-content\/80:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.8));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.8))}.focus\:border-y-info-content\/90:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.9));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.9))}.focus\:border-y-info-content\/95:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.95));border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.95))}.focus\:border-y-info\/0:focus{border-top-color:var(--fallback-in,oklch(var(--in)/0));border-bottom-color:var(--fallback-in,oklch(var(--in)/0))}.focus\:border-y-info\/10:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.1));border-bottom-color:var(--fallback-in,oklch(var(--in)/.1))}.focus\:border-y-info\/100:focus{border-top-color:var(--fallback-in,oklch(var(--in)/1));border-bottom-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:border-y-info\/20:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.2));border-bottom-color:var(--fallback-in,oklch(var(--in)/.2))}.focus\:border-y-info\/25:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.25));border-bottom-color:var(--fallback-in,oklch(var(--in)/.25))}.focus\:border-y-info\/30:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.3));border-bottom-color:var(--fallback-in,oklch(var(--in)/.3))}.focus\:border-y-info\/40:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.4));border-bottom-color:var(--fallback-in,oklch(var(--in)/.4))}.focus\:border-y-info\/5:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.05));border-bottom-color:var(--fallback-in,oklch(var(--in)/.05))}.focus\:border-y-info\/50:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.5));border-bottom-color:var(--fallback-in,oklch(var(--in)/.5))}.focus\:border-y-info\/60:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.6));border-bottom-color:var(--fallback-in,oklch(var(--in)/.6))}.focus\:border-y-info\/70:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.7));border-bottom-color:var(--fallback-in,oklch(var(--in)/.7))}.focus\:border-y-info\/75:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.75));border-bottom-color:var(--fallback-in,oklch(var(--in)/.75))}.focus\:border-y-info\/80:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.8));border-bottom-color:var(--fallback-in,oklch(var(--in)/.8))}.focus\:border-y-info\/90:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.9));border-bottom-color:var(--fallback-in,oklch(var(--in)/.9))}.focus\:border-y-info\/95:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.95));border-bottom-color:var(--fallback-in,oklch(var(--in)/.95))}.focus\:border-y-success:focus{border-top-color:var(--fallback-su,oklch(var(--su)/1));border-bottom-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:border-y-success-content:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/1));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:border-y-success-content\/0:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/0));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/0))}.focus\:border-y-success-content\/10:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.1));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.1))}.focus\:border-y-success-content\/100:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/1));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:border-y-success-content\/20:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.2));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.2))}.focus\:border-y-success-content\/25:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.25));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.25))}.focus\:border-y-success-content\/30:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.3));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.3))}.focus\:border-y-success-content\/40:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.4));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.4))}.focus\:border-y-success-content\/5:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.05));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.05))}.focus\:border-y-success-content\/50:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.5));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.5))}.focus\:border-y-success-content\/60:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.6));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.6))}.focus\:border-y-success-content\/70:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.7));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.7))}.focus\:border-y-success-content\/75:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.75));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.75))}.focus\:border-y-success-content\/80:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.8));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.8))}.focus\:border-y-success-content\/90:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.9));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.9))}.focus\:border-y-success-content\/95:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.95));border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.95))}.focus\:border-y-success\/0:focus{border-top-color:var(--fallback-su,oklch(var(--su)/0));border-bottom-color:var(--fallback-su,oklch(var(--su)/0))}.focus\:border-y-success\/10:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.1));border-bottom-color:var(--fallback-su,oklch(var(--su)/.1))}.focus\:border-y-success\/100:focus{border-top-color:var(--fallback-su,oklch(var(--su)/1));border-bottom-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:border-y-success\/20:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.2));border-bottom-color:var(--fallback-su,oklch(var(--su)/.2))}.focus\:border-y-success\/25:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.25));border-bottom-color:var(--fallback-su,oklch(var(--su)/.25))}.focus\:border-y-success\/30:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.3));border-bottom-color:var(--fallback-su,oklch(var(--su)/.3))}.focus\:border-y-success\/40:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.4));border-bottom-color:var(--fallback-su,oklch(var(--su)/.4))}.focus\:border-y-success\/5:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.05));border-bottom-color:var(--fallback-su,oklch(var(--su)/.05))}.focus\:border-y-success\/50:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.5));border-bottom-color:var(--fallback-su,oklch(var(--su)/.5))}.focus\:border-y-success\/60:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.6));border-bottom-color:var(--fallback-su,oklch(var(--su)/.6))}.focus\:border-y-success\/70:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.7));border-bottom-color:var(--fallback-su,oklch(var(--su)/.7))}.focus\:border-y-success\/75:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.75));border-bottom-color:var(--fallback-su,oklch(var(--su)/.75))}.focus\:border-y-success\/80:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.8));border-bottom-color:var(--fallback-su,oklch(var(--su)/.8))}.focus\:border-y-success\/90:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.9));border-bottom-color:var(--fallback-su,oklch(var(--su)/.9))}.focus\:border-y-success\/95:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.95));border-bottom-color:var(--fallback-su,oklch(var(--su)/.95))}.focus\:border-y-warning:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/1));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:border-y-warning-content:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/1));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:border-y-warning-content\/0:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/0));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/0))}.focus\:border-y-warning-content\/10:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.1));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.1))}.focus\:border-y-warning-content\/100:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/1));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:border-y-warning-content\/20:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.2));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.2))}.focus\:border-y-warning-content\/25:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.25));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.25))}.focus\:border-y-warning-content\/30:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.3));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.3))}.focus\:border-y-warning-content\/40:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.4));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.4))}.focus\:border-y-warning-content\/5:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.05));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.05))}.focus\:border-y-warning-content\/50:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.5));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.5))}.focus\:border-y-warning-content\/60:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.6));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.6))}.focus\:border-y-warning-content\/70:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.7));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.7))}.focus\:border-y-warning-content\/75:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.75));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.75))}.focus\:border-y-warning-content\/80:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.8));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.8))}.focus\:border-y-warning-content\/90:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.9));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.9))}.focus\:border-y-warning-content\/95:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.95));border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.95))}.focus\:border-y-warning\/0:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/0));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/0))}.focus\:border-y-warning\/10:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.1));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.1))}.focus\:border-y-warning\/100:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/1));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:border-y-warning\/20:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.2));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.2))}.focus\:border-y-warning\/25:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.25));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.25))}.focus\:border-y-warning\/30:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.3));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.3))}.focus\:border-y-warning\/40:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.4));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.4))}.focus\:border-y-warning\/5:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.05));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.05))}.focus\:border-y-warning\/50:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.5));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.5))}.focus\:border-y-warning\/60:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.6));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.6))}.focus\:border-y-warning\/70:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.7));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.7))}.focus\:border-y-warning\/75:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.75));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.75))}.focus\:border-y-warning\/80:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.8));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.8))}.focus\:border-y-warning\/90:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.9));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.9))}.focus\:border-y-warning\/95:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.95));border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.95))}.focus\:border-b-base-100:focus{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:border-b-base-100\/0:focus{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/0))}.focus\:border-b-base-100\/10:focus{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.1))}.focus\:border-b-base-100\/100:focus{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:border-b-base-100\/20:focus{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.2))}.focus\:border-b-base-100\/25:focus{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.25))}.focus\:border-b-base-100\/30:focus{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.3))}.focus\:border-b-base-100\/40:focus{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.4))}.focus\:border-b-base-100\/5:focus{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.05))}.focus\:border-b-base-100\/50:focus{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.5))}.focus\:border-b-base-100\/60:focus{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.6))}.focus\:border-b-base-100\/70:focus{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.7))}.focus\:border-b-base-100\/75:focus{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.75))}.focus\:border-b-base-100\/80:focus{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.8))}.focus\:border-b-base-100\/90:focus{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.9))}.focus\:border-b-base-100\/95:focus{border-bottom-color:var(--fallback-b1,oklch(var(--b1)/.95))}.focus\:border-b-base-200:focus{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:border-b-base-200\/0:focus{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/0))}.focus\:border-b-base-200\/10:focus{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.1))}.focus\:border-b-base-200\/100:focus{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:border-b-base-200\/20:focus{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.2))}.focus\:border-b-base-200\/25:focus{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.25))}.focus\:border-b-base-200\/30:focus{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.3))}.focus\:border-b-base-200\/40:focus{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.4))}.focus\:border-b-base-200\/5:focus{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.05))}.focus\:border-b-base-200\/50:focus{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.5))}.focus\:border-b-base-200\/60:focus{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.6))}.focus\:border-b-base-200\/70:focus{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.7))}.focus\:border-b-base-200\/75:focus{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.75))}.focus\:border-b-base-200\/80:focus{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.8))}.focus\:border-b-base-200\/90:focus{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.9))}.focus\:border-b-base-200\/95:focus{border-bottom-color:var(--fallback-b2,oklch(var(--b2)/.95))}.focus\:border-b-base-300:focus{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:border-b-base-300\/0:focus{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/0))}.focus\:border-b-base-300\/10:focus{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.1))}.focus\:border-b-base-300\/100:focus{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:border-b-base-300\/20:focus{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.2))}.focus\:border-b-base-300\/25:focus{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.25))}.focus\:border-b-base-300\/30:focus{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.3))}.focus\:border-b-base-300\/40:focus{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.4))}.focus\:border-b-base-300\/5:focus{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.05))}.focus\:border-b-base-300\/50:focus{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.5))}.focus\:border-b-base-300\/60:focus{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.6))}.focus\:border-b-base-300\/70:focus{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.7))}.focus\:border-b-base-300\/75:focus{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.75))}.focus\:border-b-base-300\/80:focus{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.8))}.focus\:border-b-base-300\/90:focus{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.9))}.focus\:border-b-base-300\/95:focus{border-bottom-color:var(--fallback-b3,oklch(var(--b3)/.95))}.focus\:border-b-base-content:focus{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:border-b-base-content\/0:focus{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/0))}.focus\:border-b-base-content\/10:focus{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.1))}.focus\:border-b-base-content\/100:focus{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:border-b-base-content\/20:focus{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.2))}.focus\:border-b-base-content\/25:focus{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.25))}.focus\:border-b-base-content\/30:focus{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.3))}.focus\:border-b-base-content\/40:focus{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.4))}.focus\:border-b-base-content\/5:focus{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.05))}.focus\:border-b-base-content\/50:focus{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.5))}.focus\:border-b-base-content\/60:focus{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.6))}.focus\:border-b-base-content\/70:focus{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.7))}.focus\:border-b-base-content\/75:focus{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.75))}.focus\:border-b-base-content\/80:focus{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.8))}.focus\:border-b-base-content\/90:focus{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.9))}.focus\:border-b-base-content\/95:focus{border-bottom-color:var(--fallback-bc,oklch(var(--bc)/.95))}.focus\:border-b-error:focus{border-bottom-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:border-b-error-content:focus{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:border-b-error-content\/0:focus{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/0))}.focus\:border-b-error-content\/10:focus{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.1))}.focus\:border-b-error-content\/100:focus{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:border-b-error-content\/20:focus{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.2))}.focus\:border-b-error-content\/25:focus{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.25))}.focus\:border-b-error-content\/30:focus{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.3))}.focus\:border-b-error-content\/40:focus{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.4))}.focus\:border-b-error-content\/5:focus{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.05))}.focus\:border-b-error-content\/50:focus{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.5))}.focus\:border-b-error-content\/60:focus{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.6))}.focus\:border-b-error-content\/70:focus{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.7))}.focus\:border-b-error-content\/75:focus{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.75))}.focus\:border-b-error-content\/80:focus{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.8))}.focus\:border-b-error-content\/90:focus{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.9))}.focus\:border-b-error-content\/95:focus{border-bottom-color:var(--fallback-erc,oklch(var(--erc)/.95))}.focus\:border-b-error\/0:focus{border-bottom-color:var(--fallback-er,oklch(var(--er)/0))}.focus\:border-b-error\/10:focus{border-bottom-color:var(--fallback-er,oklch(var(--er)/.1))}.focus\:border-b-error\/100:focus{border-bottom-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:border-b-error\/20:focus{border-bottom-color:var(--fallback-er,oklch(var(--er)/.2))}.focus\:border-b-error\/25:focus{border-bottom-color:var(--fallback-er,oklch(var(--er)/.25))}.focus\:border-b-error\/30:focus{border-bottom-color:var(--fallback-er,oklch(var(--er)/.3))}.focus\:border-b-error\/40:focus{border-bottom-color:var(--fallback-er,oklch(var(--er)/.4))}.focus\:border-b-error\/5:focus{border-bottom-color:var(--fallback-er,oklch(var(--er)/.05))}.focus\:border-b-error\/50:focus{border-bottom-color:var(--fallback-er,oklch(var(--er)/.5))}.focus\:border-b-error\/60:focus{border-bottom-color:var(--fallback-er,oklch(var(--er)/.6))}.focus\:border-b-error\/70:focus{border-bottom-color:var(--fallback-er,oklch(var(--er)/.7))}.focus\:border-b-error\/75:focus{border-bottom-color:var(--fallback-er,oklch(var(--er)/.75))}.focus\:border-b-error\/80:focus{border-bottom-color:var(--fallback-er,oklch(var(--er)/.8))}.focus\:border-b-error\/90:focus{border-bottom-color:var(--fallback-er,oklch(var(--er)/.9))}.focus\:border-b-error\/95:focus{border-bottom-color:var(--fallback-er,oklch(var(--er)/.95))}.focus\:border-b-info:focus{border-bottom-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:border-b-info-content:focus{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:border-b-info-content\/0:focus{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/0))}.focus\:border-b-info-content\/10:focus{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.1))}.focus\:border-b-info-content\/100:focus{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:border-b-info-content\/20:focus{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.2))}.focus\:border-b-info-content\/25:focus{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.25))}.focus\:border-b-info-content\/30:focus{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.3))}.focus\:border-b-info-content\/40:focus{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.4))}.focus\:border-b-info-content\/5:focus{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.05))}.focus\:border-b-info-content\/50:focus{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.5))}.focus\:border-b-info-content\/60:focus{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.6))}.focus\:border-b-info-content\/70:focus{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.7))}.focus\:border-b-info-content\/75:focus{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.75))}.focus\:border-b-info-content\/80:focus{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.8))}.focus\:border-b-info-content\/90:focus{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.9))}.focus\:border-b-info-content\/95:focus{border-bottom-color:var(--fallback-inc,oklch(var(--inc)/.95))}.focus\:border-b-info\/0:focus{border-bottom-color:var(--fallback-in,oklch(var(--in)/0))}.focus\:border-b-info\/10:focus{border-bottom-color:var(--fallback-in,oklch(var(--in)/.1))}.focus\:border-b-info\/100:focus{border-bottom-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:border-b-info\/20:focus{border-bottom-color:var(--fallback-in,oklch(var(--in)/.2))}.focus\:border-b-info\/25:focus{border-bottom-color:var(--fallback-in,oklch(var(--in)/.25))}.focus\:border-b-info\/30:focus{border-bottom-color:var(--fallback-in,oklch(var(--in)/.3))}.focus\:border-b-info\/40:focus{border-bottom-color:var(--fallback-in,oklch(var(--in)/.4))}.focus\:border-b-info\/5:focus{border-bottom-color:var(--fallback-in,oklch(var(--in)/.05))}.focus\:border-b-info\/50:focus{border-bottom-color:var(--fallback-in,oklch(var(--in)/.5))}.focus\:border-b-info\/60:focus{border-bottom-color:var(--fallback-in,oklch(var(--in)/.6))}.focus\:border-b-info\/70:focus{border-bottom-color:var(--fallback-in,oklch(var(--in)/.7))}.focus\:border-b-info\/75:focus{border-bottom-color:var(--fallback-in,oklch(var(--in)/.75))}.focus\:border-b-info\/80:focus{border-bottom-color:var(--fallback-in,oklch(var(--in)/.8))}.focus\:border-b-info\/90:focus{border-bottom-color:var(--fallback-in,oklch(var(--in)/.9))}.focus\:border-b-info\/95:focus{border-bottom-color:var(--fallback-in,oklch(var(--in)/.95))}.focus\:border-b-success:focus{border-bottom-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:border-b-success-content:focus{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:border-b-success-content\/0:focus{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/0))}.focus\:border-b-success-content\/10:focus{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.1))}.focus\:border-b-success-content\/100:focus{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:border-b-success-content\/20:focus{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.2))}.focus\:border-b-success-content\/25:focus{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.25))}.focus\:border-b-success-content\/30:focus{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.3))}.focus\:border-b-success-content\/40:focus{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.4))}.focus\:border-b-success-content\/5:focus{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.05))}.focus\:border-b-success-content\/50:focus{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.5))}.focus\:border-b-success-content\/60:focus{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.6))}.focus\:border-b-success-content\/70:focus{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.7))}.focus\:border-b-success-content\/75:focus{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.75))}.focus\:border-b-success-content\/80:focus{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.8))}.focus\:border-b-success-content\/90:focus{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.9))}.focus\:border-b-success-content\/95:focus{border-bottom-color:var(--fallback-suc,oklch(var(--suc)/.95))}.focus\:border-b-success\/0:focus{border-bottom-color:var(--fallback-su,oklch(var(--su)/0))}.focus\:border-b-success\/10:focus{border-bottom-color:var(--fallback-su,oklch(var(--su)/.1))}.focus\:border-b-success\/100:focus{border-bottom-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:border-b-success\/20:focus{border-bottom-color:var(--fallback-su,oklch(var(--su)/.2))}.focus\:border-b-success\/25:focus{border-bottom-color:var(--fallback-su,oklch(var(--su)/.25))}.focus\:border-b-success\/30:focus{border-bottom-color:var(--fallback-su,oklch(var(--su)/.3))}.focus\:border-b-success\/40:focus{border-bottom-color:var(--fallback-su,oklch(var(--su)/.4))}.focus\:border-b-success\/5:focus{border-bottom-color:var(--fallback-su,oklch(var(--su)/.05))}.focus\:border-b-success\/50:focus{border-bottom-color:var(--fallback-su,oklch(var(--su)/.5))}.focus\:border-b-success\/60:focus{border-bottom-color:var(--fallback-su,oklch(var(--su)/.6))}.focus\:border-b-success\/70:focus{border-bottom-color:var(--fallback-su,oklch(var(--su)/.7))}.focus\:border-b-success\/75:focus{border-bottom-color:var(--fallback-su,oklch(var(--su)/.75))}.focus\:border-b-success\/80:focus{border-bottom-color:var(--fallback-su,oklch(var(--su)/.8))}.focus\:border-b-success\/90:focus{border-bottom-color:var(--fallback-su,oklch(var(--su)/.9))}.focus\:border-b-success\/95:focus{border-bottom-color:var(--fallback-su,oklch(var(--su)/.95))}.focus\:border-b-warning:focus{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:border-b-warning-content:focus{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:border-b-warning-content\/0:focus{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/0))}.focus\:border-b-warning-content\/10:focus{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.1))}.focus\:border-b-warning-content\/100:focus{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:border-b-warning-content\/20:focus{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.2))}.focus\:border-b-warning-content\/25:focus{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.25))}.focus\:border-b-warning-content\/30:focus{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.3))}.focus\:border-b-warning-content\/40:focus{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.4))}.focus\:border-b-warning-content\/5:focus{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.05))}.focus\:border-b-warning-content\/50:focus{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.5))}.focus\:border-b-warning-content\/60:focus{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.6))}.focus\:border-b-warning-content\/70:focus{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.7))}.focus\:border-b-warning-content\/75:focus{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.75))}.focus\:border-b-warning-content\/80:focus{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.8))}.focus\:border-b-warning-content\/90:focus{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.9))}.focus\:border-b-warning-content\/95:focus{border-bottom-color:var(--fallback-wac,oklch(var(--wac)/.95))}.focus\:border-b-warning\/0:focus{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/0))}.focus\:border-b-warning\/10:focus{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.1))}.focus\:border-b-warning\/100:focus{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:border-b-warning\/20:focus{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.2))}.focus\:border-b-warning\/25:focus{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.25))}.focus\:border-b-warning\/30:focus{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.3))}.focus\:border-b-warning\/40:focus{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.4))}.focus\:border-b-warning\/5:focus{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.05))}.focus\:border-b-warning\/50:focus{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.5))}.focus\:border-b-warning\/60:focus{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.6))}.focus\:border-b-warning\/70:focus{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.7))}.focus\:border-b-warning\/75:focus{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.75))}.focus\:border-b-warning\/80:focus{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.8))}.focus\:border-b-warning\/90:focus{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.9))}.focus\:border-b-warning\/95:focus{border-bottom-color:var(--fallback-wa,oklch(var(--wa)/.95))}.focus\:border-e-base-100:focus{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:border-e-base-100\/0:focus{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0))}.focus\:border-e-base-100\/10:focus{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.1))}.focus\:border-e-base-100\/100:focus{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:border-e-base-100\/20:focus{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.2))}.focus\:border-e-base-100\/25:focus{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.25))}.focus\:border-e-base-100\/30:focus{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.3))}.focus\:border-e-base-100\/40:focus{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.4))}.focus\:border-e-base-100\/5:focus{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.05))}.focus\:border-e-base-100\/50:focus{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.5))}.focus\:border-e-base-100\/60:focus{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.6))}.focus\:border-e-base-100\/70:focus{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.7))}.focus\:border-e-base-100\/75:focus{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.75))}.focus\:border-e-base-100\/80:focus{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.8))}.focus\:border-e-base-100\/90:focus{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.9))}.focus\:border-e-base-100\/95:focus{border-inline-end-color:var(--fallback-b1,oklch(var(--b1)/0.95))}.focus\:border-e-base-200:focus{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:border-e-base-200\/0:focus{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0))}.focus\:border-e-base-200\/10:focus{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.1))}.focus\:border-e-base-200\/100:focus{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:border-e-base-200\/20:focus{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.2))}.focus\:border-e-base-200\/25:focus{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.25))}.focus\:border-e-base-200\/30:focus{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.3))}.focus\:border-e-base-200\/40:focus{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.4))}.focus\:border-e-base-200\/5:focus{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.05))}.focus\:border-e-base-200\/50:focus{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.5))}.focus\:border-e-base-200\/60:focus{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.6))}.focus\:border-e-base-200\/70:focus{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.7))}.focus\:border-e-base-200\/75:focus{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.75))}.focus\:border-e-base-200\/80:focus{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.8))}.focus\:border-e-base-200\/90:focus{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.9))}.focus\:border-e-base-200\/95:focus{border-inline-end-color:var(--fallback-b2,oklch(var(--b2)/0.95))}.focus\:border-e-base-300:focus{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:border-e-base-300\/0:focus{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0))}.focus\:border-e-base-300\/10:focus{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.1))}.focus\:border-e-base-300\/100:focus{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:border-e-base-300\/20:focus{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.2))}.focus\:border-e-base-300\/25:focus{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.25))}.focus\:border-e-base-300\/30:focus{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.3))}.focus\:border-e-base-300\/40:focus{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.4))}.focus\:border-e-base-300\/5:focus{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.05))}.focus\:border-e-base-300\/50:focus{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.5))}.focus\:border-e-base-300\/60:focus{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.6))}.focus\:border-e-base-300\/70:focus{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.7))}.focus\:border-e-base-300\/75:focus{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.75))}.focus\:border-e-base-300\/80:focus{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.8))}.focus\:border-e-base-300\/90:focus{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.9))}.focus\:border-e-base-300\/95:focus{border-inline-end-color:var(--fallback-b3,oklch(var(--b3)/0.95))}.focus\:border-e-base-content:focus{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:border-e-base-content\/0:focus{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0))}.focus\:border-e-base-content\/10:focus{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.1))}.focus\:border-e-base-content\/100:focus{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:border-e-base-content\/20:focus{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.2))}.focus\:border-e-base-content\/25:focus{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.25))}.focus\:border-e-base-content\/30:focus{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.3))}.focus\:border-e-base-content\/40:focus{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.4))}.focus\:border-e-base-content\/5:focus{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.05))}.focus\:border-e-base-content\/50:focus{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.5))}.focus\:border-e-base-content\/60:focus{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.6))}.focus\:border-e-base-content\/70:focus{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.7))}.focus\:border-e-base-content\/75:focus{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.75))}.focus\:border-e-base-content\/80:focus{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.8))}.focus\:border-e-base-content\/90:focus{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.9))}.focus\:border-e-base-content\/95:focus{border-inline-end-color:var(--fallback-bc,oklch(var(--bc)/0.95))}.focus\:border-e-error:focus{border-inline-end-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:border-e-error-content:focus{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:border-e-error-content\/0:focus{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0))}.focus\:border-e-error-content\/10:focus{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.1))}.focus\:border-e-error-content\/100:focus{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:border-e-error-content\/20:focus{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.2))}.focus\:border-e-error-content\/25:focus{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.25))}.focus\:border-e-error-content\/30:focus{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.3))}.focus\:border-e-error-content\/40:focus{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.4))}.focus\:border-e-error-content\/5:focus{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.05))}.focus\:border-e-error-content\/50:focus{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.5))}.focus\:border-e-error-content\/60:focus{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.6))}.focus\:border-e-error-content\/70:focus{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.7))}.focus\:border-e-error-content\/75:focus{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.75))}.focus\:border-e-error-content\/80:focus{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.8))}.focus\:border-e-error-content\/90:focus{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.9))}.focus\:border-e-error-content\/95:focus{border-inline-end-color:var(--fallback-erc,oklch(var(--erc)/0.95))}.focus\:border-e-error\/0:focus{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0))}.focus\:border-e-error\/10:focus{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.1))}.focus\:border-e-error\/100:focus{border-inline-end-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:border-e-error\/20:focus{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.2))}.focus\:border-e-error\/25:focus{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.25))}.focus\:border-e-error\/30:focus{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.3))}.focus\:border-e-error\/40:focus{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.4))}.focus\:border-e-error\/5:focus{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.05))}.focus\:border-e-error\/50:focus{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.5))}.focus\:border-e-error\/60:focus{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.6))}.focus\:border-e-error\/70:focus{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.7))}.focus\:border-e-error\/75:focus{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.75))}.focus\:border-e-error\/80:focus{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.8))}.focus\:border-e-error\/90:focus{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.9))}.focus\:border-e-error\/95:focus{border-inline-end-color:var(--fallback-er,oklch(var(--er)/0.95))}.focus\:border-e-info:focus{border-inline-end-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:border-e-info-content:focus{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:border-e-info-content\/0:focus{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0))}.focus\:border-e-info-content\/10:focus{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.1))}.focus\:border-e-info-content\/100:focus{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:border-e-info-content\/20:focus{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.2))}.focus\:border-e-info-content\/25:focus{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.25))}.focus\:border-e-info-content\/30:focus{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.3))}.focus\:border-e-info-content\/40:focus{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.4))}.focus\:border-e-info-content\/5:focus{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.05))}.focus\:border-e-info-content\/50:focus{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.5))}.focus\:border-e-info-content\/60:focus{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.6))}.focus\:border-e-info-content\/70:focus{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.7))}.focus\:border-e-info-content\/75:focus{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.75))}.focus\:border-e-info-content\/80:focus{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.8))}.focus\:border-e-info-content\/90:focus{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.9))}.focus\:border-e-info-content\/95:focus{border-inline-end-color:var(--fallback-inc,oklch(var(--inc)/0.95))}.focus\:border-e-info\/0:focus{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0))}.focus\:border-e-info\/10:focus{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.1))}.focus\:border-e-info\/100:focus{border-inline-end-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:border-e-info\/20:focus{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.2))}.focus\:border-e-info\/25:focus{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.25))}.focus\:border-e-info\/30:focus{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.3))}.focus\:border-e-info\/40:focus{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.4))}.focus\:border-e-info\/5:focus{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.05))}.focus\:border-e-info\/50:focus{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.5))}.focus\:border-e-info\/60:focus{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.6))}.focus\:border-e-info\/70:focus{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.7))}.focus\:border-e-info\/75:focus{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.75))}.focus\:border-e-info\/80:focus{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.8))}.focus\:border-e-info\/90:focus{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.9))}.focus\:border-e-info\/95:focus{border-inline-end-color:var(--fallback-in,oklch(var(--in)/0.95))}.focus\:border-e-success:focus{border-inline-end-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:border-e-success-content:focus{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:border-e-success-content\/0:focus{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0))}.focus\:border-e-success-content\/10:focus{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.1))}.focus\:border-e-success-content\/100:focus{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:border-e-success-content\/20:focus{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.2))}.focus\:border-e-success-content\/25:focus{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.25))}.focus\:border-e-success-content\/30:focus{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.3))}.focus\:border-e-success-content\/40:focus{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.4))}.focus\:border-e-success-content\/5:focus{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.05))}.focus\:border-e-success-content\/50:focus{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.5))}.focus\:border-e-success-content\/60:focus{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.6))}.focus\:border-e-success-content\/70:focus{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.7))}.focus\:border-e-success-content\/75:focus{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.75))}.focus\:border-e-success-content\/80:focus{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.8))}.focus\:border-e-success-content\/90:focus{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.9))}.focus\:border-e-success-content\/95:focus{border-inline-end-color:var(--fallback-suc,oklch(var(--suc)/0.95))}.focus\:border-e-success\/0:focus{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0))}.focus\:border-e-success\/10:focus{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.1))}.focus\:border-e-success\/100:focus{border-inline-end-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:border-e-success\/20:focus{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.2))}.focus\:border-e-success\/25:focus{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.25))}.focus\:border-e-success\/30:focus{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.3))}.focus\:border-e-success\/40:focus{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.4))}.focus\:border-e-success\/5:focus{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.05))}.focus\:border-e-success\/50:focus{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.5))}.focus\:border-e-success\/60:focus{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.6))}.focus\:border-e-success\/70:focus{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.7))}.focus\:border-e-success\/75:focus{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.75))}.focus\:border-e-success\/80:focus{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.8))}.focus\:border-e-success\/90:focus{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.9))}.focus\:border-e-success\/95:focus{border-inline-end-color:var(--fallback-su,oklch(var(--su)/0.95))}.focus\:border-e-warning:focus{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:border-e-warning-content:focus{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:border-e-warning-content\/0:focus{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0))}.focus\:border-e-warning-content\/10:focus{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.1))}.focus\:border-e-warning-content\/100:focus{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:border-e-warning-content\/20:focus{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.2))}.focus\:border-e-warning-content\/25:focus{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.25))}.focus\:border-e-warning-content\/30:focus{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.3))}.focus\:border-e-warning-content\/40:focus{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.4))}.focus\:border-e-warning-content\/5:focus{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.05))}.focus\:border-e-warning-content\/50:focus{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.5))}.focus\:border-e-warning-content\/60:focus{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.6))}.focus\:border-e-warning-content\/70:focus{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.7))}.focus\:border-e-warning-content\/75:focus{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.75))}.focus\:border-e-warning-content\/80:focus{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.8))}.focus\:border-e-warning-content\/90:focus{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.9))}.focus\:border-e-warning-content\/95:focus{border-inline-end-color:var(--fallback-wac,oklch(var(--wac)/0.95))}.focus\:border-e-warning\/0:focus{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0))}.focus\:border-e-warning\/10:focus{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.1))}.focus\:border-e-warning\/100:focus{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:border-e-warning\/20:focus{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.2))}.focus\:border-e-warning\/25:focus{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.25))}.focus\:border-e-warning\/30:focus{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.3))}.focus\:border-e-warning\/40:focus{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.4))}.focus\:border-e-warning\/5:focus{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.05))}.focus\:border-e-warning\/50:focus{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.5))}.focus\:border-e-warning\/60:focus{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.6))}.focus\:border-e-warning\/70:focus{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.7))}.focus\:border-e-warning\/75:focus{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.75))}.focus\:border-e-warning\/80:focus{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.8))}.focus\:border-e-warning\/90:focus{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.9))}.focus\:border-e-warning\/95:focus{border-inline-end-color:var(--fallback-wa,oklch(var(--wa)/0.95))}.focus\:border-l-base-100:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:border-l-base-100\/0:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/0))}.focus\:border-l-base-100\/10:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.1))}.focus\:border-l-base-100\/100:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:border-l-base-100\/20:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.2))}.focus\:border-l-base-100\/25:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.25))}.focus\:border-l-base-100\/30:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.3))}.focus\:border-l-base-100\/40:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.4))}.focus\:border-l-base-100\/5:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.05))}.focus\:border-l-base-100\/50:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.5))}.focus\:border-l-base-100\/60:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.6))}.focus\:border-l-base-100\/70:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.7))}.focus\:border-l-base-100\/75:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.75))}.focus\:border-l-base-100\/80:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.8))}.focus\:border-l-base-100\/90:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.9))}.focus\:border-l-base-100\/95:focus{border-left-color:var(--fallback-b1,oklch(var(--b1)/.95))}.focus\:border-l-base-200:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:border-l-base-200\/0:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/0))}.focus\:border-l-base-200\/10:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.1))}.focus\:border-l-base-200\/100:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:border-l-base-200\/20:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.2))}.focus\:border-l-base-200\/25:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.25))}.focus\:border-l-base-200\/30:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.3))}.focus\:border-l-base-200\/40:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.4))}.focus\:border-l-base-200\/5:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.05))}.focus\:border-l-base-200\/50:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.5))}.focus\:border-l-base-200\/60:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.6))}.focus\:border-l-base-200\/70:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.7))}.focus\:border-l-base-200\/75:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.75))}.focus\:border-l-base-200\/80:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.8))}.focus\:border-l-base-200\/90:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.9))}.focus\:border-l-base-200\/95:focus{border-left-color:var(--fallback-b2,oklch(var(--b2)/.95))}.focus\:border-l-base-300:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:border-l-base-300\/0:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/0))}.focus\:border-l-base-300\/10:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.1))}.focus\:border-l-base-300\/100:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:border-l-base-300\/20:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.2))}.focus\:border-l-base-300\/25:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.25))}.focus\:border-l-base-300\/30:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.3))}.focus\:border-l-base-300\/40:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.4))}.focus\:border-l-base-300\/5:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.05))}.focus\:border-l-base-300\/50:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.5))}.focus\:border-l-base-300\/60:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.6))}.focus\:border-l-base-300\/70:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.7))}.focus\:border-l-base-300\/75:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.75))}.focus\:border-l-base-300\/80:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.8))}.focus\:border-l-base-300\/90:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.9))}.focus\:border-l-base-300\/95:focus{border-left-color:var(--fallback-b3,oklch(var(--b3)/.95))}.focus\:border-l-base-content:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:border-l-base-content\/0:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/0))}.focus\:border-l-base-content\/10:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.1))}.focus\:border-l-base-content\/100:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:border-l-base-content\/20:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.2))}.focus\:border-l-base-content\/25:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.25))}.focus\:border-l-base-content\/30:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.3))}.focus\:border-l-base-content\/40:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.4))}.focus\:border-l-base-content\/5:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.05))}.focus\:border-l-base-content\/50:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.5))}.focus\:border-l-base-content\/60:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.6))}.focus\:border-l-base-content\/70:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.7))}.focus\:border-l-base-content\/75:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.75))}.focus\:border-l-base-content\/80:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.8))}.focus\:border-l-base-content\/90:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.9))}.focus\:border-l-base-content\/95:focus{border-left-color:var(--fallback-bc,oklch(var(--bc)/.95))}.focus\:border-l-error:focus{border-left-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:border-l-error-content:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:border-l-error-content\/0:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/0))}.focus\:border-l-error-content\/10:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.1))}.focus\:border-l-error-content\/100:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:border-l-error-content\/20:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.2))}.focus\:border-l-error-content\/25:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.25))}.focus\:border-l-error-content\/30:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.3))}.focus\:border-l-error-content\/40:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.4))}.focus\:border-l-error-content\/5:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.05))}.focus\:border-l-error-content\/50:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.5))}.focus\:border-l-error-content\/60:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.6))}.focus\:border-l-error-content\/70:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.7))}.focus\:border-l-error-content\/75:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.75))}.focus\:border-l-error-content\/80:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.8))}.focus\:border-l-error-content\/90:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.9))}.focus\:border-l-error-content\/95:focus{border-left-color:var(--fallback-erc,oklch(var(--erc)/.95))}.focus\:border-l-error\/0:focus{border-left-color:var(--fallback-er,oklch(var(--er)/0))}.focus\:border-l-error\/10:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.1))}.focus\:border-l-error\/100:focus{border-left-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:border-l-error\/20:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.2))}.focus\:border-l-error\/25:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.25))}.focus\:border-l-error\/30:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.3))}.focus\:border-l-error\/40:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.4))}.focus\:border-l-error\/5:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.05))}.focus\:border-l-error\/50:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.5))}.focus\:border-l-error\/60:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.6))}.focus\:border-l-error\/70:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.7))}.focus\:border-l-error\/75:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.75))}.focus\:border-l-error\/80:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.8))}.focus\:border-l-error\/90:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.9))}.focus\:border-l-error\/95:focus{border-left-color:var(--fallback-er,oklch(var(--er)/.95))}.focus\:border-l-info:focus{border-left-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:border-l-info-content:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:border-l-info-content\/0:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/0))}.focus\:border-l-info-content\/10:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.1))}.focus\:border-l-info-content\/100:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:border-l-info-content\/20:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.2))}.focus\:border-l-info-content\/25:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.25))}.focus\:border-l-info-content\/30:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.3))}.focus\:border-l-info-content\/40:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.4))}.focus\:border-l-info-content\/5:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.05))}.focus\:border-l-info-content\/50:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.5))}.focus\:border-l-info-content\/60:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.6))}.focus\:border-l-info-content\/70:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.7))}.focus\:border-l-info-content\/75:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.75))}.focus\:border-l-info-content\/80:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.8))}.focus\:border-l-info-content\/90:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.9))}.focus\:border-l-info-content\/95:focus{border-left-color:var(--fallback-inc,oklch(var(--inc)/.95))}.focus\:border-l-info\/0:focus{border-left-color:var(--fallback-in,oklch(var(--in)/0))}.focus\:border-l-info\/10:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.1))}.focus\:border-l-info\/100:focus{border-left-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:border-l-info\/20:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.2))}.focus\:border-l-info\/25:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.25))}.focus\:border-l-info\/30:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.3))}.focus\:border-l-info\/40:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.4))}.focus\:border-l-info\/5:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.05))}.focus\:border-l-info\/50:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.5))}.focus\:border-l-info\/60:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.6))}.focus\:border-l-info\/70:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.7))}.focus\:border-l-info\/75:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.75))}.focus\:border-l-info\/80:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.8))}.focus\:border-l-info\/90:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.9))}.focus\:border-l-info\/95:focus{border-left-color:var(--fallback-in,oklch(var(--in)/.95))}.focus\:border-l-success:focus{border-left-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:border-l-success-content:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:border-l-success-content\/0:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/0))}.focus\:border-l-success-content\/10:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.1))}.focus\:border-l-success-content\/100:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:border-l-success-content\/20:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.2))}.focus\:border-l-success-content\/25:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.25))}.focus\:border-l-success-content\/30:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.3))}.focus\:border-l-success-content\/40:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.4))}.focus\:border-l-success-content\/5:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.05))}.focus\:border-l-success-content\/50:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.5))}.focus\:border-l-success-content\/60:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.6))}.focus\:border-l-success-content\/70:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.7))}.focus\:border-l-success-content\/75:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.75))}.focus\:border-l-success-content\/80:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.8))}.focus\:border-l-success-content\/90:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.9))}.focus\:border-l-success-content\/95:focus{border-left-color:var(--fallback-suc,oklch(var(--suc)/.95))}.focus\:border-l-success\/0:focus{border-left-color:var(--fallback-su,oklch(var(--su)/0))}.focus\:border-l-success\/10:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.1))}.focus\:border-l-success\/100:focus{border-left-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:border-l-success\/20:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.2))}.focus\:border-l-success\/25:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.25))}.focus\:border-l-success\/30:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.3))}.focus\:border-l-success\/40:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.4))}.focus\:border-l-success\/5:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.05))}.focus\:border-l-success\/50:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.5))}.focus\:border-l-success\/60:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.6))}.focus\:border-l-success\/70:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.7))}.focus\:border-l-success\/75:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.75))}.focus\:border-l-success\/80:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.8))}.focus\:border-l-success\/90:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.9))}.focus\:border-l-success\/95:focus{border-left-color:var(--fallback-su,oklch(var(--su)/.95))}.focus\:border-l-warning:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:border-l-warning-content:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:border-l-warning-content\/0:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/0))}.focus\:border-l-warning-content\/10:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.1))}.focus\:border-l-warning-content\/100:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:border-l-warning-content\/20:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.2))}.focus\:border-l-warning-content\/25:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.25))}.focus\:border-l-warning-content\/30:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.3))}.focus\:border-l-warning-content\/40:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.4))}.focus\:border-l-warning-content\/5:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.05))}.focus\:border-l-warning-content\/50:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.5))}.focus\:border-l-warning-content\/60:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.6))}.focus\:border-l-warning-content\/70:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.7))}.focus\:border-l-warning-content\/75:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.75))}.focus\:border-l-warning-content\/80:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.8))}.focus\:border-l-warning-content\/90:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.9))}.focus\:border-l-warning-content\/95:focus{border-left-color:var(--fallback-wac,oklch(var(--wac)/.95))}.focus\:border-l-warning\/0:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/0))}.focus\:border-l-warning\/10:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.1))}.focus\:border-l-warning\/100:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:border-l-warning\/20:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.2))}.focus\:border-l-warning\/25:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.25))}.focus\:border-l-warning\/30:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.3))}.focus\:border-l-warning\/40:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.4))}.focus\:border-l-warning\/5:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.05))}.focus\:border-l-warning\/50:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.5))}.focus\:border-l-warning\/60:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.6))}.focus\:border-l-warning\/70:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.7))}.focus\:border-l-warning\/75:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.75))}.focus\:border-l-warning\/80:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.8))}.focus\:border-l-warning\/90:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.9))}.focus\:border-l-warning\/95:focus{border-left-color:var(--fallback-wa,oklch(var(--wa)/.95))}.focus\:border-r-base-100:focus{border-right-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:border-r-base-100\/0:focus{border-right-color:var(--fallback-b1,oklch(var(--b1)/0))}.focus\:border-r-base-100\/10:focus{border-right-color:var(--fallback-b1,oklch(var(--b1)/.1))}.focus\:border-r-base-100\/100:focus{border-right-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:border-r-base-100\/20:focus{border-right-color:var(--fallback-b1,oklch(var(--b1)/.2))}.focus\:border-r-base-100\/25:focus{border-right-color:var(--fallback-b1,oklch(var(--b1)/.25))}.focus\:border-r-base-100\/30:focus{border-right-color:var(--fallback-b1,oklch(var(--b1)/.3))}.focus\:border-r-base-100\/40:focus{border-right-color:var(--fallback-b1,oklch(var(--b1)/.4))}.focus\:border-r-base-100\/5:focus{border-right-color:var(--fallback-b1,oklch(var(--b1)/.05))}.focus\:border-r-base-100\/50:focus{border-right-color:var(--fallback-b1,oklch(var(--b1)/.5))}.focus\:border-r-base-100\/60:focus{border-right-color:var(--fallback-b1,oklch(var(--b1)/.6))}.focus\:border-r-base-100\/70:focus{border-right-color:var(--fallback-b1,oklch(var(--b1)/.7))}.focus\:border-r-base-100\/75:focus{border-right-color:var(--fallback-b1,oklch(var(--b1)/.75))}.focus\:border-r-base-100\/80:focus{border-right-color:var(--fallback-b1,oklch(var(--b1)/.8))}.focus\:border-r-base-100\/90:focus{border-right-color:var(--fallback-b1,oklch(var(--b1)/.9))}.focus\:border-r-base-100\/95:focus{border-right-color:var(--fallback-b1,oklch(var(--b1)/.95))}.focus\:border-r-base-200:focus{border-right-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:border-r-base-200\/0:focus{border-right-color:var(--fallback-b2,oklch(var(--b2)/0))}.focus\:border-r-base-200\/10:focus{border-right-color:var(--fallback-b2,oklch(var(--b2)/.1))}.focus\:border-r-base-200\/100:focus{border-right-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:border-r-base-200\/20:focus{border-right-color:var(--fallback-b2,oklch(var(--b2)/.2))}.focus\:border-r-base-200\/25:focus{border-right-color:var(--fallback-b2,oklch(var(--b2)/.25))}.focus\:border-r-base-200\/30:focus{border-right-color:var(--fallback-b2,oklch(var(--b2)/.3))}.focus\:border-r-base-200\/40:focus{border-right-color:var(--fallback-b2,oklch(var(--b2)/.4))}.focus\:border-r-base-200\/5:focus{border-right-color:var(--fallback-b2,oklch(var(--b2)/.05))}.focus\:border-r-base-200\/50:focus{border-right-color:var(--fallback-b2,oklch(var(--b2)/.5))}.focus\:border-r-base-200\/60:focus{border-right-color:var(--fallback-b2,oklch(var(--b2)/.6))}.focus\:border-r-base-200\/70:focus{border-right-color:var(--fallback-b2,oklch(var(--b2)/.7))}.focus\:border-r-base-200\/75:focus{border-right-color:var(--fallback-b2,oklch(var(--b2)/.75))}.focus\:border-r-base-200\/80:focus{border-right-color:var(--fallback-b2,oklch(var(--b2)/.8))}.focus\:border-r-base-200\/90:focus{border-right-color:var(--fallback-b2,oklch(var(--b2)/.9))}.focus\:border-r-base-200\/95:focus{border-right-color:var(--fallback-b2,oklch(var(--b2)/.95))}.focus\:border-r-base-300:focus{border-right-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:border-r-base-300\/0:focus{border-right-color:var(--fallback-b3,oklch(var(--b3)/0))}.focus\:border-r-base-300\/10:focus{border-right-color:var(--fallback-b3,oklch(var(--b3)/.1))}.focus\:border-r-base-300\/100:focus{border-right-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:border-r-base-300\/20:focus{border-right-color:var(--fallback-b3,oklch(var(--b3)/.2))}.focus\:border-r-base-300\/25:focus{border-right-color:var(--fallback-b3,oklch(var(--b3)/.25))}.focus\:border-r-base-300\/30:focus{border-right-color:var(--fallback-b3,oklch(var(--b3)/.3))}.focus\:border-r-base-300\/40:focus{border-right-color:var(--fallback-b3,oklch(var(--b3)/.4))}.focus\:border-r-base-300\/5:focus{border-right-color:var(--fallback-b3,oklch(var(--b3)/.05))}.focus\:border-r-base-300\/50:focus{border-right-color:var(--fallback-b3,oklch(var(--b3)/.5))}.focus\:border-r-base-300\/60:focus{border-right-color:var(--fallback-b3,oklch(var(--b3)/.6))}.focus\:border-r-base-300\/70:focus{border-right-color:var(--fallback-b3,oklch(var(--b3)/.7))}.focus\:border-r-base-300\/75:focus{border-right-color:var(--fallback-b3,oklch(var(--b3)/.75))}.focus\:border-r-base-300\/80:focus{border-right-color:var(--fallback-b3,oklch(var(--b3)/.8))}.focus\:border-r-base-300\/90:focus{border-right-color:var(--fallback-b3,oklch(var(--b3)/.9))}.focus\:border-r-base-300\/95:focus{border-right-color:var(--fallback-b3,oklch(var(--b3)/.95))}.focus\:border-r-base-content:focus{border-right-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:border-r-base-content\/0:focus{border-right-color:var(--fallback-bc,oklch(var(--bc)/0))}.focus\:border-r-base-content\/10:focus{border-right-color:var(--fallback-bc,oklch(var(--bc)/.1))}.focus\:border-r-base-content\/100:focus{border-right-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:border-r-base-content\/20:focus{border-right-color:var(--fallback-bc,oklch(var(--bc)/.2))}.focus\:border-r-base-content\/25:focus{border-right-color:var(--fallback-bc,oklch(var(--bc)/.25))}.focus\:border-r-base-content\/30:focus{border-right-color:var(--fallback-bc,oklch(var(--bc)/.3))}.focus\:border-r-base-content\/40:focus{border-right-color:var(--fallback-bc,oklch(var(--bc)/.4))}.focus\:border-r-base-content\/5:focus{border-right-color:var(--fallback-bc,oklch(var(--bc)/.05))}.focus\:border-r-base-content\/50:focus{border-right-color:var(--fallback-bc,oklch(var(--bc)/.5))}.focus\:border-r-base-content\/60:focus{border-right-color:var(--fallback-bc,oklch(var(--bc)/.6))}.focus\:border-r-base-content\/70:focus{border-right-color:var(--fallback-bc,oklch(var(--bc)/.7))}.focus\:border-r-base-content\/75:focus{border-right-color:var(--fallback-bc,oklch(var(--bc)/.75))}.focus\:border-r-base-content\/80:focus{border-right-color:var(--fallback-bc,oklch(var(--bc)/.8))}.focus\:border-r-base-content\/90:focus{border-right-color:var(--fallback-bc,oklch(var(--bc)/.9))}.focus\:border-r-base-content\/95:focus{border-right-color:var(--fallback-bc,oklch(var(--bc)/.95))}.focus\:border-r-error:focus{border-right-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:border-r-error-content:focus{border-right-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:border-r-error-content\/0:focus{border-right-color:var(--fallback-erc,oklch(var(--erc)/0))}.focus\:border-r-error-content\/10:focus{border-right-color:var(--fallback-erc,oklch(var(--erc)/.1))}.focus\:border-r-error-content\/100:focus{border-right-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:border-r-error-content\/20:focus{border-right-color:var(--fallback-erc,oklch(var(--erc)/.2))}.focus\:border-r-error-content\/25:focus{border-right-color:var(--fallback-erc,oklch(var(--erc)/.25))}.focus\:border-r-error-content\/30:focus{border-right-color:var(--fallback-erc,oklch(var(--erc)/.3))}.focus\:border-r-error-content\/40:focus{border-right-color:var(--fallback-erc,oklch(var(--erc)/.4))}.focus\:border-r-error-content\/5:focus{border-right-color:var(--fallback-erc,oklch(var(--erc)/.05))}.focus\:border-r-error-content\/50:focus{border-right-color:var(--fallback-erc,oklch(var(--erc)/.5))}.focus\:border-r-error-content\/60:focus{border-right-color:var(--fallback-erc,oklch(var(--erc)/.6))}.focus\:border-r-error-content\/70:focus{border-right-color:var(--fallback-erc,oklch(var(--erc)/.7))}.focus\:border-r-error-content\/75:focus{border-right-color:var(--fallback-erc,oklch(var(--erc)/.75))}.focus\:border-r-error-content\/80:focus{border-right-color:var(--fallback-erc,oklch(var(--erc)/.8))}.focus\:border-r-error-content\/90:focus{border-right-color:var(--fallback-erc,oklch(var(--erc)/.9))}.focus\:border-r-error-content\/95:focus{border-right-color:var(--fallback-erc,oklch(var(--erc)/.95))}.focus\:border-r-error\/0:focus{border-right-color:var(--fallback-er,oklch(var(--er)/0))}.focus\:border-r-error\/10:focus{border-right-color:var(--fallback-er,oklch(var(--er)/.1))}.focus\:border-r-error\/100:focus{border-right-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:border-r-error\/20:focus{border-right-color:var(--fallback-er,oklch(var(--er)/.2))}.focus\:border-r-error\/25:focus{border-right-color:var(--fallback-er,oklch(var(--er)/.25))}.focus\:border-r-error\/30:focus{border-right-color:var(--fallback-er,oklch(var(--er)/.3))}.focus\:border-r-error\/40:focus{border-right-color:var(--fallback-er,oklch(var(--er)/.4))}.focus\:border-r-error\/5:focus{border-right-color:var(--fallback-er,oklch(var(--er)/.05))}.focus\:border-r-error\/50:focus{border-right-color:var(--fallback-er,oklch(var(--er)/.5))}.focus\:border-r-error\/60:focus{border-right-color:var(--fallback-er,oklch(var(--er)/.6))}.focus\:border-r-error\/70:focus{border-right-color:var(--fallback-er,oklch(var(--er)/.7))}.focus\:border-r-error\/75:focus{border-right-color:var(--fallback-er,oklch(var(--er)/.75))}.focus\:border-r-error\/80:focus{border-right-color:var(--fallback-er,oklch(var(--er)/.8))}.focus\:border-r-error\/90:focus{border-right-color:var(--fallback-er,oklch(var(--er)/.9))}.focus\:border-r-error\/95:focus{border-right-color:var(--fallback-er,oklch(var(--er)/.95))}.focus\:border-r-info:focus{border-right-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:border-r-info-content:focus{border-right-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:border-r-info-content\/0:focus{border-right-color:var(--fallback-inc,oklch(var(--inc)/0))}.focus\:border-r-info-content\/10:focus{border-right-color:var(--fallback-inc,oklch(var(--inc)/.1))}.focus\:border-r-info-content\/100:focus{border-right-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:border-r-info-content\/20:focus{border-right-color:var(--fallback-inc,oklch(var(--inc)/.2))}.focus\:border-r-info-content\/25:focus{border-right-color:var(--fallback-inc,oklch(var(--inc)/.25))}.focus\:border-r-info-content\/30:focus{border-right-color:var(--fallback-inc,oklch(var(--inc)/.3))}.focus\:border-r-info-content\/40:focus{border-right-color:var(--fallback-inc,oklch(var(--inc)/.4))}.focus\:border-r-info-content\/5:focus{border-right-color:var(--fallback-inc,oklch(var(--inc)/.05))}.focus\:border-r-info-content\/50:focus{border-right-color:var(--fallback-inc,oklch(var(--inc)/.5))}.focus\:border-r-info-content\/60:focus{border-right-color:var(--fallback-inc,oklch(var(--inc)/.6))}.focus\:border-r-info-content\/70:focus{border-right-color:var(--fallback-inc,oklch(var(--inc)/.7))}.focus\:border-r-info-content\/75:focus{border-right-color:var(--fallback-inc,oklch(var(--inc)/.75))}.focus\:border-r-info-content\/80:focus{border-right-color:var(--fallback-inc,oklch(var(--inc)/.8))}.focus\:border-r-info-content\/90:focus{border-right-color:var(--fallback-inc,oklch(var(--inc)/.9))}.focus\:border-r-info-content\/95:focus{border-right-color:var(--fallback-inc,oklch(var(--inc)/.95))}.focus\:border-r-info\/0:focus{border-right-color:var(--fallback-in,oklch(var(--in)/0))}.focus\:border-r-info\/10:focus{border-right-color:var(--fallback-in,oklch(var(--in)/.1))}.focus\:border-r-info\/100:focus{border-right-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:border-r-info\/20:focus{border-right-color:var(--fallback-in,oklch(var(--in)/.2))}.focus\:border-r-info\/25:focus{border-right-color:var(--fallback-in,oklch(var(--in)/.25))}.focus\:border-r-info\/30:focus{border-right-color:var(--fallback-in,oklch(var(--in)/.3))}.focus\:border-r-info\/40:focus{border-right-color:var(--fallback-in,oklch(var(--in)/.4))}.focus\:border-r-info\/5:focus{border-right-color:var(--fallback-in,oklch(var(--in)/.05))}.focus\:border-r-info\/50:focus{border-right-color:var(--fallback-in,oklch(var(--in)/.5))}.focus\:border-r-info\/60:focus{border-right-color:var(--fallback-in,oklch(var(--in)/.6))}.focus\:border-r-info\/70:focus{border-right-color:var(--fallback-in,oklch(var(--in)/.7))}.focus\:border-r-info\/75:focus{border-right-color:var(--fallback-in,oklch(var(--in)/.75))}.focus\:border-r-info\/80:focus{border-right-color:var(--fallback-in,oklch(var(--in)/.8))}.focus\:border-r-info\/90:focus{border-right-color:var(--fallback-in,oklch(var(--in)/.9))}.focus\:border-r-info\/95:focus{border-right-color:var(--fallback-in,oklch(var(--in)/.95))}.focus\:border-r-success:focus{border-right-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:border-r-success-content:focus{border-right-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:border-r-success-content\/0:focus{border-right-color:var(--fallback-suc,oklch(var(--suc)/0))}.focus\:border-r-success-content\/10:focus{border-right-color:var(--fallback-suc,oklch(var(--suc)/.1))}.focus\:border-r-success-content\/100:focus{border-right-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:border-r-success-content\/20:focus{border-right-color:var(--fallback-suc,oklch(var(--suc)/.2))}.focus\:border-r-success-content\/25:focus{border-right-color:var(--fallback-suc,oklch(var(--suc)/.25))}.focus\:border-r-success-content\/30:focus{border-right-color:var(--fallback-suc,oklch(var(--suc)/.3))}.focus\:border-r-success-content\/40:focus{border-right-color:var(--fallback-suc,oklch(var(--suc)/.4))}.focus\:border-r-success-content\/5:focus{border-right-color:var(--fallback-suc,oklch(var(--suc)/.05))}.focus\:border-r-success-content\/50:focus{border-right-color:var(--fallback-suc,oklch(var(--suc)/.5))}.focus\:border-r-success-content\/60:focus{border-right-color:var(--fallback-suc,oklch(var(--suc)/.6))}.focus\:border-r-success-content\/70:focus{border-right-color:var(--fallback-suc,oklch(var(--suc)/.7))}.focus\:border-r-success-content\/75:focus{border-right-color:var(--fallback-suc,oklch(var(--suc)/.75))}.focus\:border-r-success-content\/80:focus{border-right-color:var(--fallback-suc,oklch(var(--suc)/.8))}.focus\:border-r-success-content\/90:focus{border-right-color:var(--fallback-suc,oklch(var(--suc)/.9))}.focus\:border-r-success-content\/95:focus{border-right-color:var(--fallback-suc,oklch(var(--suc)/.95))}.focus\:border-r-success\/0:focus{border-right-color:var(--fallback-su,oklch(var(--su)/0))}.focus\:border-r-success\/10:focus{border-right-color:var(--fallback-su,oklch(var(--su)/.1))}.focus\:border-r-success\/100:focus{border-right-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:border-r-success\/20:focus{border-right-color:var(--fallback-su,oklch(var(--su)/.2))}.focus\:border-r-success\/25:focus{border-right-color:var(--fallback-su,oklch(var(--su)/.25))}.focus\:border-r-success\/30:focus{border-right-color:var(--fallback-su,oklch(var(--su)/.3))}.focus\:border-r-success\/40:focus{border-right-color:var(--fallback-su,oklch(var(--su)/.4))}.focus\:border-r-success\/5:focus{border-right-color:var(--fallback-su,oklch(var(--su)/.05))}.focus\:border-r-success\/50:focus{border-right-color:var(--fallback-su,oklch(var(--su)/.5))}.focus\:border-r-success\/60:focus{border-right-color:var(--fallback-su,oklch(var(--su)/.6))}.focus\:border-r-success\/70:focus{border-right-color:var(--fallback-su,oklch(var(--su)/.7))}.focus\:border-r-success\/75:focus{border-right-color:var(--fallback-su,oklch(var(--su)/.75))}.focus\:border-r-success\/80:focus{border-right-color:var(--fallback-su,oklch(var(--su)/.8))}.focus\:border-r-success\/90:focus{border-right-color:var(--fallback-su,oklch(var(--su)/.9))}.focus\:border-r-success\/95:focus{border-right-color:var(--fallback-su,oklch(var(--su)/.95))}.focus\:border-r-warning:focus{border-right-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:border-r-warning-content:focus{border-right-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:border-r-warning-content\/0:focus{border-right-color:var(--fallback-wac,oklch(var(--wac)/0))}.focus\:border-r-warning-content\/10:focus{border-right-color:var(--fallback-wac,oklch(var(--wac)/.1))}.focus\:border-r-warning-content\/100:focus{border-right-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:border-r-warning-content\/20:focus{border-right-color:var(--fallback-wac,oklch(var(--wac)/.2))}.focus\:border-r-warning-content\/25:focus{border-right-color:var(--fallback-wac,oklch(var(--wac)/.25))}.focus\:border-r-warning-content\/30:focus{border-right-color:var(--fallback-wac,oklch(var(--wac)/.3))}.focus\:border-r-warning-content\/40:focus{border-right-color:var(--fallback-wac,oklch(var(--wac)/.4))}.focus\:border-r-warning-content\/5:focus{border-right-color:var(--fallback-wac,oklch(var(--wac)/.05))}.focus\:border-r-warning-content\/50:focus{border-right-color:var(--fallback-wac,oklch(var(--wac)/.5))}.focus\:border-r-warning-content\/60:focus{border-right-color:var(--fallback-wac,oklch(var(--wac)/.6))}.focus\:border-r-warning-content\/70:focus{border-right-color:var(--fallback-wac,oklch(var(--wac)/.7))}.focus\:border-r-warning-content\/75:focus{border-right-color:var(--fallback-wac,oklch(var(--wac)/.75))}.focus\:border-r-warning-content\/80:focus{border-right-color:var(--fallback-wac,oklch(var(--wac)/.8))}.focus\:border-r-warning-content\/90:focus{border-right-color:var(--fallback-wac,oklch(var(--wac)/.9))}.focus\:border-r-warning-content\/95:focus{border-right-color:var(--fallback-wac,oklch(var(--wac)/.95))}.focus\:border-r-warning\/0:focus{border-right-color:var(--fallback-wa,oklch(var(--wa)/0))}.focus\:border-r-warning\/10:focus{border-right-color:var(--fallback-wa,oklch(var(--wa)/.1))}.focus\:border-r-warning\/100:focus{border-right-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:border-r-warning\/20:focus{border-right-color:var(--fallback-wa,oklch(var(--wa)/.2))}.focus\:border-r-warning\/25:focus{border-right-color:var(--fallback-wa,oklch(var(--wa)/.25))}.focus\:border-r-warning\/30:focus{border-right-color:var(--fallback-wa,oklch(var(--wa)/.3))}.focus\:border-r-warning\/40:focus{border-right-color:var(--fallback-wa,oklch(var(--wa)/.4))}.focus\:border-r-warning\/5:focus{border-right-color:var(--fallback-wa,oklch(var(--wa)/.05))}.focus\:border-r-warning\/50:focus{border-right-color:var(--fallback-wa,oklch(var(--wa)/.5))}.focus\:border-r-warning\/60:focus{border-right-color:var(--fallback-wa,oklch(var(--wa)/.6))}.focus\:border-r-warning\/70:focus{border-right-color:var(--fallback-wa,oklch(var(--wa)/.7))}.focus\:border-r-warning\/75:focus{border-right-color:var(--fallback-wa,oklch(var(--wa)/.75))}.focus\:border-r-warning\/80:focus{border-right-color:var(--fallback-wa,oklch(var(--wa)/.8))}.focus\:border-r-warning\/90:focus{border-right-color:var(--fallback-wa,oklch(var(--wa)/.9))}.focus\:border-r-warning\/95:focus{border-right-color:var(--fallback-wa,oklch(var(--wa)/.95))}.focus\:border-s-base-100:focus{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:border-s-base-100\/0:focus{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0))}.focus\:border-s-base-100\/10:focus{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.1))}.focus\:border-s-base-100\/100:focus{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:border-s-base-100\/20:focus{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.2))}.focus\:border-s-base-100\/25:focus{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.25))}.focus\:border-s-base-100\/30:focus{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.3))}.focus\:border-s-base-100\/40:focus{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.4))}.focus\:border-s-base-100\/5:focus{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.05))}.focus\:border-s-base-100\/50:focus{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.5))}.focus\:border-s-base-100\/60:focus{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.6))}.focus\:border-s-base-100\/70:focus{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.7))}.focus\:border-s-base-100\/75:focus{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.75))}.focus\:border-s-base-100\/80:focus{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.8))}.focus\:border-s-base-100\/90:focus{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.9))}.focus\:border-s-base-100\/95:focus{border-inline-start-color:var(--fallback-b1,oklch(var(--b1)/0.95))}.focus\:border-s-base-200:focus{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:border-s-base-200\/0:focus{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0))}.focus\:border-s-base-200\/10:focus{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.1))}.focus\:border-s-base-200\/100:focus{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:border-s-base-200\/20:focus{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.2))}.focus\:border-s-base-200\/25:focus{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.25))}.focus\:border-s-base-200\/30:focus{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.3))}.focus\:border-s-base-200\/40:focus{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.4))}.focus\:border-s-base-200\/5:focus{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.05))}.focus\:border-s-base-200\/50:focus{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.5))}.focus\:border-s-base-200\/60:focus{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.6))}.focus\:border-s-base-200\/70:focus{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.7))}.focus\:border-s-base-200\/75:focus{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.75))}.focus\:border-s-base-200\/80:focus{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.8))}.focus\:border-s-base-200\/90:focus{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.9))}.focus\:border-s-base-200\/95:focus{border-inline-start-color:var(--fallback-b2,oklch(var(--b2)/0.95))}.focus\:border-s-base-300:focus{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:border-s-base-300\/0:focus{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0))}.focus\:border-s-base-300\/10:focus{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.1))}.focus\:border-s-base-300\/100:focus{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:border-s-base-300\/20:focus{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.2))}.focus\:border-s-base-300\/25:focus{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.25))}.focus\:border-s-base-300\/30:focus{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.3))}.focus\:border-s-base-300\/40:focus{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.4))}.focus\:border-s-base-300\/5:focus{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.05))}.focus\:border-s-base-300\/50:focus{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.5))}.focus\:border-s-base-300\/60:focus{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.6))}.focus\:border-s-base-300\/70:focus{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.7))}.focus\:border-s-base-300\/75:focus{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.75))}.focus\:border-s-base-300\/80:focus{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.8))}.focus\:border-s-base-300\/90:focus{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.9))}.focus\:border-s-base-300\/95:focus{border-inline-start-color:var(--fallback-b3,oklch(var(--b3)/0.95))}.focus\:border-s-base-content:focus{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:border-s-base-content\/0:focus{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0))}.focus\:border-s-base-content\/10:focus{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.1))}.focus\:border-s-base-content\/100:focus{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:border-s-base-content\/20:focus{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.2))}.focus\:border-s-base-content\/25:focus{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.25))}.focus\:border-s-base-content\/30:focus{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.3))}.focus\:border-s-base-content\/40:focus{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.4))}.focus\:border-s-base-content\/5:focus{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.05))}.focus\:border-s-base-content\/50:focus{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.5))}.focus\:border-s-base-content\/60:focus{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.6))}.focus\:border-s-base-content\/70:focus{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.7))}.focus\:border-s-base-content\/75:focus{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.75))}.focus\:border-s-base-content\/80:focus{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.8))}.focus\:border-s-base-content\/90:focus{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.9))}.focus\:border-s-base-content\/95:focus{border-inline-start-color:var(--fallback-bc,oklch(var(--bc)/0.95))}.focus\:border-s-error:focus{border-inline-start-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:border-s-error-content:focus{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:border-s-error-content\/0:focus{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0))}.focus\:border-s-error-content\/10:focus{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.1))}.focus\:border-s-error-content\/100:focus{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:border-s-error-content\/20:focus{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.2))}.focus\:border-s-error-content\/25:focus{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.25))}.focus\:border-s-error-content\/30:focus{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.3))}.focus\:border-s-error-content\/40:focus{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.4))}.focus\:border-s-error-content\/5:focus{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.05))}.focus\:border-s-error-content\/50:focus{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.5))}.focus\:border-s-error-content\/60:focus{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.6))}.focus\:border-s-error-content\/70:focus{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.7))}.focus\:border-s-error-content\/75:focus{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.75))}.focus\:border-s-error-content\/80:focus{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.8))}.focus\:border-s-error-content\/90:focus{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.9))}.focus\:border-s-error-content\/95:focus{border-inline-start-color:var(--fallback-erc,oklch(var(--erc)/0.95))}.focus\:border-s-error\/0:focus{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0))}.focus\:border-s-error\/10:focus{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.1))}.focus\:border-s-error\/100:focus{border-inline-start-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:border-s-error\/20:focus{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.2))}.focus\:border-s-error\/25:focus{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.25))}.focus\:border-s-error\/30:focus{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.3))}.focus\:border-s-error\/40:focus{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.4))}.focus\:border-s-error\/5:focus{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.05))}.focus\:border-s-error\/50:focus{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.5))}.focus\:border-s-error\/60:focus{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.6))}.focus\:border-s-error\/70:focus{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.7))}.focus\:border-s-error\/75:focus{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.75))}.focus\:border-s-error\/80:focus{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.8))}.focus\:border-s-error\/90:focus{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.9))}.focus\:border-s-error\/95:focus{border-inline-start-color:var(--fallback-er,oklch(var(--er)/0.95))}.focus\:border-s-info:focus{border-inline-start-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:border-s-info-content:focus{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:border-s-info-content\/0:focus{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0))}.focus\:border-s-info-content\/10:focus{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.1))}.focus\:border-s-info-content\/100:focus{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:border-s-info-content\/20:focus{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.2))}.focus\:border-s-info-content\/25:focus{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.25))}.focus\:border-s-info-content\/30:focus{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.3))}.focus\:border-s-info-content\/40:focus{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.4))}.focus\:border-s-info-content\/5:focus{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.05))}.focus\:border-s-info-content\/50:focus{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.5))}.focus\:border-s-info-content\/60:focus{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.6))}.focus\:border-s-info-content\/70:focus{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.7))}.focus\:border-s-info-content\/75:focus{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.75))}.focus\:border-s-info-content\/80:focus{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.8))}.focus\:border-s-info-content\/90:focus{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.9))}.focus\:border-s-info-content\/95:focus{border-inline-start-color:var(--fallback-inc,oklch(var(--inc)/0.95))}.focus\:border-s-info\/0:focus{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0))}.focus\:border-s-info\/10:focus{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.1))}.focus\:border-s-info\/100:focus{border-inline-start-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:border-s-info\/20:focus{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.2))}.focus\:border-s-info\/25:focus{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.25))}.focus\:border-s-info\/30:focus{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.3))}.focus\:border-s-info\/40:focus{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.4))}.focus\:border-s-info\/5:focus{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.05))}.focus\:border-s-info\/50:focus{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.5))}.focus\:border-s-info\/60:focus{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.6))}.focus\:border-s-info\/70:focus{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.7))}.focus\:border-s-info\/75:focus{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.75))}.focus\:border-s-info\/80:focus{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.8))}.focus\:border-s-info\/90:focus{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.9))}.focus\:border-s-info\/95:focus{border-inline-start-color:var(--fallback-in,oklch(var(--in)/0.95))}.focus\:border-s-success:focus{border-inline-start-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:border-s-success-content:focus{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:border-s-success-content\/0:focus{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0))}.focus\:border-s-success-content\/10:focus{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.1))}.focus\:border-s-success-content\/100:focus{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:border-s-success-content\/20:focus{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.2))}.focus\:border-s-success-content\/25:focus{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.25))}.focus\:border-s-success-content\/30:focus{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.3))}.focus\:border-s-success-content\/40:focus{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.4))}.focus\:border-s-success-content\/5:focus{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.05))}.focus\:border-s-success-content\/50:focus{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.5))}.focus\:border-s-success-content\/60:focus{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.6))}.focus\:border-s-success-content\/70:focus{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.7))}.focus\:border-s-success-content\/75:focus{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.75))}.focus\:border-s-success-content\/80:focus{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.8))}.focus\:border-s-success-content\/90:focus{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.9))}.focus\:border-s-success-content\/95:focus{border-inline-start-color:var(--fallback-suc,oklch(var(--suc)/0.95))}.focus\:border-s-success\/0:focus{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0))}.focus\:border-s-success\/10:focus{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.1))}.focus\:border-s-success\/100:focus{border-inline-start-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:border-s-success\/20:focus{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.2))}.focus\:border-s-success\/25:focus{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.25))}.focus\:border-s-success\/30:focus{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.3))}.focus\:border-s-success\/40:focus{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.4))}.focus\:border-s-success\/5:focus{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.05))}.focus\:border-s-success\/50:focus{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.5))}.focus\:border-s-success\/60:focus{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.6))}.focus\:border-s-success\/70:focus{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.7))}.focus\:border-s-success\/75:focus{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.75))}.focus\:border-s-success\/80:focus{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.8))}.focus\:border-s-success\/90:focus{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.9))}.focus\:border-s-success\/95:focus{border-inline-start-color:var(--fallback-su,oklch(var(--su)/0.95))}.focus\:border-s-warning:focus{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:border-s-warning-content:focus{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:border-s-warning-content\/0:focus{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0))}.focus\:border-s-warning-content\/10:focus{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.1))}.focus\:border-s-warning-content\/100:focus{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:border-s-warning-content\/20:focus{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.2))}.focus\:border-s-warning-content\/25:focus{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.25))}.focus\:border-s-warning-content\/30:focus{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.3))}.focus\:border-s-warning-content\/40:focus{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.4))}.focus\:border-s-warning-content\/5:focus{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.05))}.focus\:border-s-warning-content\/50:focus{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.5))}.focus\:border-s-warning-content\/60:focus{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.6))}.focus\:border-s-warning-content\/70:focus{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.7))}.focus\:border-s-warning-content\/75:focus{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.75))}.focus\:border-s-warning-content\/80:focus{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.8))}.focus\:border-s-warning-content\/90:focus{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.9))}.focus\:border-s-warning-content\/95:focus{border-inline-start-color:var(--fallback-wac,oklch(var(--wac)/0.95))}.focus\:border-s-warning\/0:focus{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0))}.focus\:border-s-warning\/10:focus{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.1))}.focus\:border-s-warning\/100:focus{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:border-s-warning\/20:focus{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.2))}.focus\:border-s-warning\/25:focus{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.25))}.focus\:border-s-warning\/30:focus{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.3))}.focus\:border-s-warning\/40:focus{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.4))}.focus\:border-s-warning\/5:focus{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.05))}.focus\:border-s-warning\/50:focus{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.5))}.focus\:border-s-warning\/60:focus{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.6))}.focus\:border-s-warning\/70:focus{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.7))}.focus\:border-s-warning\/75:focus{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.75))}.focus\:border-s-warning\/80:focus{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.8))}.focus\:border-s-warning\/90:focus{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.9))}.focus\:border-s-warning\/95:focus{border-inline-start-color:var(--fallback-wa,oklch(var(--wa)/0.95))}.focus\:border-t-base-100:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:border-t-base-100\/0:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/0))}.focus\:border-t-base-100\/10:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.1))}.focus\:border-t-base-100\/100:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:border-t-base-100\/20:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.2))}.focus\:border-t-base-100\/25:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.25))}.focus\:border-t-base-100\/30:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.3))}.focus\:border-t-base-100\/40:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.4))}.focus\:border-t-base-100\/5:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.05))}.focus\:border-t-base-100\/50:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.5))}.focus\:border-t-base-100\/60:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.6))}.focus\:border-t-base-100\/70:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.7))}.focus\:border-t-base-100\/75:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.75))}.focus\:border-t-base-100\/80:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.8))}.focus\:border-t-base-100\/90:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.9))}.focus\:border-t-base-100\/95:focus{border-top-color:var(--fallback-b1,oklch(var(--b1)/.95))}.focus\:border-t-base-200:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:border-t-base-200\/0:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/0))}.focus\:border-t-base-200\/10:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.1))}.focus\:border-t-base-200\/100:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:border-t-base-200\/20:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.2))}.focus\:border-t-base-200\/25:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.25))}.focus\:border-t-base-200\/30:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.3))}.focus\:border-t-base-200\/40:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.4))}.focus\:border-t-base-200\/5:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.05))}.focus\:border-t-base-200\/50:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.5))}.focus\:border-t-base-200\/60:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.6))}.focus\:border-t-base-200\/70:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.7))}.focus\:border-t-base-200\/75:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.75))}.focus\:border-t-base-200\/80:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.8))}.focus\:border-t-base-200\/90:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.9))}.focus\:border-t-base-200\/95:focus{border-top-color:var(--fallback-b2,oklch(var(--b2)/.95))}.focus\:border-t-base-300:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:border-t-base-300\/0:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/0))}.focus\:border-t-base-300\/10:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.1))}.focus\:border-t-base-300\/100:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:border-t-base-300\/20:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.2))}.focus\:border-t-base-300\/25:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.25))}.focus\:border-t-base-300\/30:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.3))}.focus\:border-t-base-300\/40:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.4))}.focus\:border-t-base-300\/5:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.05))}.focus\:border-t-base-300\/50:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.5))}.focus\:border-t-base-300\/60:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.6))}.focus\:border-t-base-300\/70:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.7))}.focus\:border-t-base-300\/75:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.75))}.focus\:border-t-base-300\/80:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.8))}.focus\:border-t-base-300\/90:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.9))}.focus\:border-t-base-300\/95:focus{border-top-color:var(--fallback-b3,oklch(var(--b3)/.95))}.focus\:border-t-base-content:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:border-t-base-content\/0:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/0))}.focus\:border-t-base-content\/10:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.1))}.focus\:border-t-base-content\/100:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:border-t-base-content\/20:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.2))}.focus\:border-t-base-content\/25:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.25))}.focus\:border-t-base-content\/30:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.3))}.focus\:border-t-base-content\/40:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.4))}.focus\:border-t-base-content\/5:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.05))}.focus\:border-t-base-content\/50:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.5))}.focus\:border-t-base-content\/60:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.6))}.focus\:border-t-base-content\/70:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.7))}.focus\:border-t-base-content\/75:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.75))}.focus\:border-t-base-content\/80:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.8))}.focus\:border-t-base-content\/90:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.9))}.focus\:border-t-base-content\/95:focus{border-top-color:var(--fallback-bc,oklch(var(--bc)/.95))}.focus\:border-t-error:focus{border-top-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:border-t-error-content:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:border-t-error-content\/0:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/0))}.focus\:border-t-error-content\/10:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.1))}.focus\:border-t-error-content\/100:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:border-t-error-content\/20:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.2))}.focus\:border-t-error-content\/25:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.25))}.focus\:border-t-error-content\/30:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.3))}.focus\:border-t-error-content\/40:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.4))}.focus\:border-t-error-content\/5:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.05))}.focus\:border-t-error-content\/50:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.5))}.focus\:border-t-error-content\/60:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.6))}.focus\:border-t-error-content\/70:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.7))}.focus\:border-t-error-content\/75:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.75))}.focus\:border-t-error-content\/80:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.8))}.focus\:border-t-error-content\/90:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.9))}.focus\:border-t-error-content\/95:focus{border-top-color:var(--fallback-erc,oklch(var(--erc)/.95))}.focus\:border-t-error\/0:focus{border-top-color:var(--fallback-er,oklch(var(--er)/0))}.focus\:border-t-error\/10:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.1))}.focus\:border-t-error\/100:focus{border-top-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:border-t-error\/20:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.2))}.focus\:border-t-error\/25:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.25))}.focus\:border-t-error\/30:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.3))}.focus\:border-t-error\/40:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.4))}.focus\:border-t-error\/5:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.05))}.focus\:border-t-error\/50:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.5))}.focus\:border-t-error\/60:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.6))}.focus\:border-t-error\/70:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.7))}.focus\:border-t-error\/75:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.75))}.focus\:border-t-error\/80:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.8))}.focus\:border-t-error\/90:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.9))}.focus\:border-t-error\/95:focus{border-top-color:var(--fallback-er,oklch(var(--er)/.95))}.focus\:border-t-info:focus{border-top-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:border-t-info-content:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:border-t-info-content\/0:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/0))}.focus\:border-t-info-content\/10:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.1))}.focus\:border-t-info-content\/100:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:border-t-info-content\/20:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.2))}.focus\:border-t-info-content\/25:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.25))}.focus\:border-t-info-content\/30:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.3))}.focus\:border-t-info-content\/40:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.4))}.focus\:border-t-info-content\/5:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.05))}.focus\:border-t-info-content\/50:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.5))}.focus\:border-t-info-content\/60:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.6))}.focus\:border-t-info-content\/70:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.7))}.focus\:border-t-info-content\/75:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.75))}.focus\:border-t-info-content\/80:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.8))}.focus\:border-t-info-content\/90:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.9))}.focus\:border-t-info-content\/95:focus{border-top-color:var(--fallback-inc,oklch(var(--inc)/.95))}.focus\:border-t-info\/0:focus{border-top-color:var(--fallback-in,oklch(var(--in)/0))}.focus\:border-t-info\/10:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.1))}.focus\:border-t-info\/100:focus{border-top-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:border-t-info\/20:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.2))}.focus\:border-t-info\/25:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.25))}.focus\:border-t-info\/30:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.3))}.focus\:border-t-info\/40:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.4))}.focus\:border-t-info\/5:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.05))}.focus\:border-t-info\/50:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.5))}.focus\:border-t-info\/60:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.6))}.focus\:border-t-info\/70:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.7))}.focus\:border-t-info\/75:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.75))}.focus\:border-t-info\/80:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.8))}.focus\:border-t-info\/90:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.9))}.focus\:border-t-info\/95:focus{border-top-color:var(--fallback-in,oklch(var(--in)/.95))}.focus\:border-t-success:focus{border-top-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:border-t-success-content:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:border-t-success-content\/0:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/0))}.focus\:border-t-success-content\/10:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.1))}.focus\:border-t-success-content\/100:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:border-t-success-content\/20:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.2))}.focus\:border-t-success-content\/25:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.25))}.focus\:border-t-success-content\/30:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.3))}.focus\:border-t-success-content\/40:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.4))}.focus\:border-t-success-content\/5:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.05))}.focus\:border-t-success-content\/50:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.5))}.focus\:border-t-success-content\/60:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.6))}.focus\:border-t-success-content\/70:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.7))}.focus\:border-t-success-content\/75:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.75))}.focus\:border-t-success-content\/80:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.8))}.focus\:border-t-success-content\/90:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.9))}.focus\:border-t-success-content\/95:focus{border-top-color:var(--fallback-suc,oklch(var(--suc)/.95))}.focus\:border-t-success\/0:focus{border-top-color:var(--fallback-su,oklch(var(--su)/0))}.focus\:border-t-success\/10:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.1))}.focus\:border-t-success\/100:focus{border-top-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:border-t-success\/20:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.2))}.focus\:border-t-success\/25:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.25))}.focus\:border-t-success\/30:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.3))}.focus\:border-t-success\/40:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.4))}.focus\:border-t-success\/5:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.05))}.focus\:border-t-success\/50:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.5))}.focus\:border-t-success\/60:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.6))}.focus\:border-t-success\/70:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.7))}.focus\:border-t-success\/75:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.75))}.focus\:border-t-success\/80:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.8))}.focus\:border-t-success\/90:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.9))}.focus\:border-t-success\/95:focus{border-top-color:var(--fallback-su,oklch(var(--su)/.95))}.focus\:border-t-warning:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:border-t-warning-content:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:border-t-warning-content\/0:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/0))}.focus\:border-t-warning-content\/10:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.1))}.focus\:border-t-warning-content\/100:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:border-t-warning-content\/20:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.2))}.focus\:border-t-warning-content\/25:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.25))}.focus\:border-t-warning-content\/30:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.3))}.focus\:border-t-warning-content\/40:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.4))}.focus\:border-t-warning-content\/5:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.05))}.focus\:border-t-warning-content\/50:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.5))}.focus\:border-t-warning-content\/60:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.6))}.focus\:border-t-warning-content\/70:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.7))}.focus\:border-t-warning-content\/75:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.75))}.focus\:border-t-warning-content\/80:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.8))}.focus\:border-t-warning-content\/90:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.9))}.focus\:border-t-warning-content\/95:focus{border-top-color:var(--fallback-wac,oklch(var(--wac)/.95))}.focus\:border-t-warning\/0:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/0))}.focus\:border-t-warning\/10:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.1))}.focus\:border-t-warning\/100:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:border-t-warning\/20:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.2))}.focus\:border-t-warning\/25:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.25))}.focus\:border-t-warning\/30:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.3))}.focus\:border-t-warning\/40:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.4))}.focus\:border-t-warning\/5:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.05))}.focus\:border-t-warning\/50:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.5))}.focus\:border-t-warning\/60:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.6))}.focus\:border-t-warning\/70:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.7))}.focus\:border-t-warning\/75:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.75))}.focus\:border-t-warning\/80:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.8))}.focus\:border-t-warning\/90:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.9))}.focus\:border-t-warning\/95:focus{border-top-color:var(--fallback-wa,oklch(var(--wa)/.95))}.focus\:bg-accent:focus{background-color:var(--fallback-a,oklch(var(--a)/1))}.focus\:bg-accent-content:focus{background-color:var(--fallback-ac,oklch(var(--ac)/1))}.focus\:bg-accent-content\/0:focus{background-color:var(--fallback-ac,oklch(var(--ac)/0))}.focus\:bg-accent-content\/10:focus{background-color:var(--fallback-ac,oklch(var(--ac)/.1))}.focus\:bg-accent-content\/100:focus{background-color:var(--fallback-ac,oklch(var(--ac)/1))}.focus\:bg-accent-content\/20:focus{background-color:var(--fallback-ac,oklch(var(--ac)/.2))}.focus\:bg-accent-content\/25:focus{background-color:var(--fallback-ac,oklch(var(--ac)/.25))}.focus\:bg-accent-content\/30:focus{background-color:var(--fallback-ac,oklch(var(--ac)/.3))}.focus\:bg-accent-content\/40:focus{background-color:var(--fallback-ac,oklch(var(--ac)/.4))}.focus\:bg-accent-content\/5:focus{background-color:var(--fallback-ac,oklch(var(--ac)/.05))}.focus\:bg-accent-content\/50:focus{background-color:var(--fallback-ac,oklch(var(--ac)/.5))}.focus\:bg-accent-content\/60:focus{background-color:var(--fallback-ac,oklch(var(--ac)/.6))}.focus\:bg-accent-content\/70:focus{background-color:var(--fallback-ac,oklch(var(--ac)/.7))}.focus\:bg-accent-content\/75:focus{background-color:var(--fallback-ac,oklch(var(--ac)/.75))}.focus\:bg-accent-content\/80:focus{background-color:var(--fallback-ac,oklch(var(--ac)/.8))}.focus\:bg-accent-content\/90:focus{background-color:var(--fallback-ac,oklch(var(--ac)/.9))}.focus\:bg-accent-content\/95:focus{background-color:var(--fallback-ac,oklch(var(--ac)/.95))}.focus\:bg-accent\/0:focus{background-color:var(--fallback-a,oklch(var(--a)/0))}.focus\:bg-accent\/10:focus{background-color:var(--fallback-a,oklch(var(--a)/.1))}.focus\:bg-accent\/100:focus{background-color:var(--fallback-a,oklch(var(--a)/1))}.focus\:bg-accent\/20:focus{background-color:var(--fallback-a,oklch(var(--a)/.2))}.focus\:bg-accent\/25:focus{background-color:var(--fallback-a,oklch(var(--a)/.25))}.focus\:bg-accent\/30:focus{background-color:var(--fallback-a,oklch(var(--a)/.3))}.focus\:bg-accent\/40:focus{background-color:var(--fallback-a,oklch(var(--a)/.4))}.focus\:bg-accent\/5:focus{background-color:var(--fallback-a,oklch(var(--a)/.05))}.focus\:bg-accent\/50:focus{background-color:var(--fallback-a,oklch(var(--a)/.5))}.focus\:bg-accent\/60:focus{background-color:var(--fallback-a,oklch(var(--a)/.6))}.focus\:bg-accent\/70:focus{background-color:var(--fallback-a,oklch(var(--a)/.7))}.focus\:bg-accent\/75:focus{background-color:var(--fallback-a,oklch(var(--a)/.75))}.focus\:bg-accent\/80:focus{background-color:var(--fallback-a,oklch(var(--a)/.8))}.focus\:bg-accent\/90:focus{background-color:var(--fallback-a,oklch(var(--a)/.9))}.focus\:bg-accent\/95:focus{background-color:var(--fallback-a,oklch(var(--a)/.95))}.focus\:bg-base-100:focus{background-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:bg-base-100\/0:focus{background-color:var(--fallback-b1,oklch(var(--b1)/0))}.focus\:bg-base-100\/10:focus{background-color:var(--fallback-b1,oklch(var(--b1)/.1))}.focus\:bg-base-100\/100:focus{background-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:bg-base-100\/20:focus{background-color:var(--fallback-b1,oklch(var(--b1)/.2))}.focus\:bg-base-100\/25:focus{background-color:var(--fallback-b1,oklch(var(--b1)/.25))}.focus\:bg-base-100\/30:focus{background-color:var(--fallback-b1,oklch(var(--b1)/.3))}.focus\:bg-base-100\/40:focus{background-color:var(--fallback-b1,oklch(var(--b1)/.4))}.focus\:bg-base-100\/5:focus{background-color:var(--fallback-b1,oklch(var(--b1)/.05))}.focus\:bg-base-100\/50:focus{background-color:var(--fallback-b1,oklch(var(--b1)/.5))}.focus\:bg-base-100\/60:focus{background-color:var(--fallback-b1,oklch(var(--b1)/.6))}.focus\:bg-base-100\/70:focus{background-color:var(--fallback-b1,oklch(var(--b1)/.7))}.focus\:bg-base-100\/75:focus{background-color:var(--fallback-b1,oklch(var(--b1)/.75))}.focus\:bg-base-100\/80:focus{background-color:var(--fallback-b1,oklch(var(--b1)/.8))}.focus\:bg-base-100\/90:focus{background-color:var(--fallback-b1,oklch(var(--b1)/.9))}.focus\:bg-base-100\/95:focus{background-color:var(--fallback-b1,oklch(var(--b1)/.95))}.focus\:bg-base-200:focus{background-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:bg-base-200\/0:focus{background-color:var(--fallback-b2,oklch(var(--b2)/0))}.focus\:bg-base-200\/10:focus{background-color:var(--fallback-b2,oklch(var(--b2)/.1))}.focus\:bg-base-200\/100:focus{background-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:bg-base-200\/20:focus{background-color:var(--fallback-b2,oklch(var(--b2)/.2))}.focus\:bg-base-200\/25:focus{background-color:var(--fallback-b2,oklch(var(--b2)/.25))}.focus\:bg-base-200\/30:focus{background-color:var(--fallback-b2,oklch(var(--b2)/.3))}.focus\:bg-base-200\/40:focus{background-color:var(--fallback-b2,oklch(var(--b2)/.4))}.focus\:bg-base-200\/5:focus{background-color:var(--fallback-b2,oklch(var(--b2)/.05))}.focus\:bg-base-200\/50:focus{background-color:var(--fallback-b2,oklch(var(--b2)/.5))}.focus\:bg-base-200\/60:focus{background-color:var(--fallback-b2,oklch(var(--b2)/.6))}.focus\:bg-base-200\/70:focus{background-color:var(--fallback-b2,oklch(var(--b2)/.7))}.focus\:bg-base-200\/75:focus{background-color:var(--fallback-b2,oklch(var(--b2)/.75))}.focus\:bg-base-200\/80:focus{background-color:var(--fallback-b2,oklch(var(--b2)/.8))}.focus\:bg-base-200\/90:focus{background-color:var(--fallback-b2,oklch(var(--b2)/.9))}.focus\:bg-base-200\/95:focus{background-color:var(--fallback-b2,oklch(var(--b2)/.95))}.focus\:bg-base-300:focus{background-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:bg-base-300\/0:focus{background-color:var(--fallback-b3,oklch(var(--b3)/0))}.focus\:bg-base-300\/10:focus{background-color:var(--fallback-b3,oklch(var(--b3)/.1))}.focus\:bg-base-300\/100:focus{background-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:bg-base-300\/20:focus{background-color:var(--fallback-b3,oklch(var(--b3)/.2))}.focus\:bg-base-300\/25:focus{background-color:var(--fallback-b3,oklch(var(--b3)/.25))}.focus\:bg-base-300\/30:focus{background-color:var(--fallback-b3,oklch(var(--b3)/.3))}.focus\:bg-base-300\/40:focus{background-color:var(--fallback-b3,oklch(var(--b3)/.4))}.focus\:bg-base-300\/5:focus{background-color:var(--fallback-b3,oklch(var(--b3)/.05))}.focus\:bg-base-300\/50:focus{background-color:var(--fallback-b3,oklch(var(--b3)/.5))}.focus\:bg-base-300\/60:focus{background-color:var(--fallback-b3,oklch(var(--b3)/.6))}.focus\:bg-base-300\/70:focus{background-color:var(--fallback-b3,oklch(var(--b3)/.7))}.focus\:bg-base-300\/75:focus{background-color:var(--fallback-b3,oklch(var(--b3)/.75))}.focus\:bg-base-300\/80:focus{background-color:var(--fallback-b3,oklch(var(--b3)/.8))}.focus\:bg-base-300\/90:focus{background-color:var(--fallback-b3,oklch(var(--b3)/.9))}.focus\:bg-base-300\/95:focus{background-color:var(--fallback-b3,oklch(var(--b3)/.95))}.focus\:bg-base-content:focus{background-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:bg-base-content\/0:focus{background-color:var(--fallback-bc,oklch(var(--bc)/0))}.focus\:bg-base-content\/10:focus{background-color:var(--fallback-bc,oklch(var(--bc)/.1))}.focus\:bg-base-content\/100:focus{background-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:bg-base-content\/20:focus{background-color:var(--fallback-bc,oklch(var(--bc)/.2))}.focus\:bg-base-content\/25:focus{background-color:var(--fallback-bc,oklch(var(--bc)/.25))}.focus\:bg-base-content\/30:focus{background-color:var(--fallback-bc,oklch(var(--bc)/.3))}.focus\:bg-base-content\/40:focus{background-color:var(--fallback-bc,oklch(var(--bc)/.4))}.focus\:bg-base-content\/5:focus{background-color:var(--fallback-bc,oklch(var(--bc)/.05))}.focus\:bg-base-content\/50:focus{background-color:var(--fallback-bc,oklch(var(--bc)/.5))}.focus\:bg-base-content\/60:focus{background-color:var(--fallback-bc,oklch(var(--bc)/.6))}.focus\:bg-base-content\/70:focus{background-color:var(--fallback-bc,oklch(var(--bc)/.7))}.focus\:bg-base-content\/75:focus{background-color:var(--fallback-bc,oklch(var(--bc)/.75))}.focus\:bg-base-content\/80:focus{background-color:var(--fallback-bc,oklch(var(--bc)/.8))}.focus\:bg-base-content\/90:focus{background-color:var(--fallback-bc,oklch(var(--bc)/.9))}.focus\:bg-base-content\/95:focus{background-color:var(--fallback-bc,oklch(var(--bc)/.95))}.focus\:bg-error:focus{background-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:bg-error-content:focus{background-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:bg-error-content\/0:focus{background-color:var(--fallback-erc,oklch(var(--erc)/0))}.focus\:bg-error-content\/10:focus{background-color:var(--fallback-erc,oklch(var(--erc)/.1))}.focus\:bg-error-content\/100:focus{background-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:bg-error-content\/20:focus{background-color:var(--fallback-erc,oklch(var(--erc)/.2))}.focus\:bg-error-content\/25:focus{background-color:var(--fallback-erc,oklch(var(--erc)/.25))}.focus\:bg-error-content\/30:focus{background-color:var(--fallback-erc,oklch(var(--erc)/.3))}.focus\:bg-error-content\/40:focus{background-color:var(--fallback-erc,oklch(var(--erc)/.4))}.focus\:bg-error-content\/5:focus{background-color:var(--fallback-erc,oklch(var(--erc)/.05))}.focus\:bg-error-content\/50:focus{background-color:var(--fallback-erc,oklch(var(--erc)/.5))}.focus\:bg-error-content\/60:focus{background-color:var(--fallback-erc,oklch(var(--erc)/.6))}.focus\:bg-error-content\/70:focus{background-color:var(--fallback-erc,oklch(var(--erc)/.7))}.focus\:bg-error-content\/75:focus{background-color:var(--fallback-erc,oklch(var(--erc)/.75))}.focus\:bg-error-content\/80:focus{background-color:var(--fallback-erc,oklch(var(--erc)/.8))}.focus\:bg-error-content\/90:focus{background-color:var(--fallback-erc,oklch(var(--erc)/.9))}.focus\:bg-error-content\/95:focus{background-color:var(--fallback-erc,oklch(var(--erc)/.95))}.focus\:bg-error\/0:focus{background-color:var(--fallback-er,oklch(var(--er)/0))}.focus\:bg-error\/10:focus{background-color:var(--fallback-er,oklch(var(--er)/.1))}.focus\:bg-error\/100:focus{background-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:bg-error\/20:focus{background-color:var(--fallback-er,oklch(var(--er)/.2))}.focus\:bg-error\/25:focus{background-color:var(--fallback-er,oklch(var(--er)/.25))}.focus\:bg-error\/30:focus{background-color:var(--fallback-er,oklch(var(--er)/.3))}.focus\:bg-error\/40:focus{background-color:var(--fallback-er,oklch(var(--er)/.4))}.focus\:bg-error\/5:focus{background-color:var(--fallback-er,oklch(var(--er)/.05))}.focus\:bg-error\/50:focus{background-color:var(--fallback-er,oklch(var(--er)/.5))}.focus\:bg-error\/60:focus{background-color:var(--fallback-er,oklch(var(--er)/.6))}.focus\:bg-error\/70:focus{background-color:var(--fallback-er,oklch(var(--er)/.7))}.focus\:bg-error\/75:focus{background-color:var(--fallback-er,oklch(var(--er)/.75))}.focus\:bg-error\/80:focus{background-color:var(--fallback-er,oklch(var(--er)/.8))}.focus\:bg-error\/90:focus{background-color:var(--fallback-er,oklch(var(--er)/.9))}.focus\:bg-error\/95:focus{background-color:var(--fallback-er,oklch(var(--er)/.95))}.focus\:bg-info:focus{background-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:bg-info-content:focus{background-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:bg-info-content\/0:focus{background-color:var(--fallback-inc,oklch(var(--inc)/0))}.focus\:bg-info-content\/10:focus{background-color:var(--fallback-inc,oklch(var(--inc)/.1))}.focus\:bg-info-content\/100:focus{background-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:bg-info-content\/20:focus{background-color:var(--fallback-inc,oklch(var(--inc)/.2))}.focus\:bg-info-content\/25:focus{background-color:var(--fallback-inc,oklch(var(--inc)/.25))}.focus\:bg-info-content\/30:focus{background-color:var(--fallback-inc,oklch(var(--inc)/.3))}.focus\:bg-info-content\/40:focus{background-color:var(--fallback-inc,oklch(var(--inc)/.4))}.focus\:bg-info-content\/5:focus{background-color:var(--fallback-inc,oklch(var(--inc)/.05))}.focus\:bg-info-content\/50:focus{background-color:var(--fallback-inc,oklch(var(--inc)/.5))}.focus\:bg-info-content\/60:focus{background-color:var(--fallback-inc,oklch(var(--inc)/.6))}.focus\:bg-info-content\/70:focus{background-color:var(--fallback-inc,oklch(var(--inc)/.7))}.focus\:bg-info-content\/75:focus{background-color:var(--fallback-inc,oklch(var(--inc)/.75))}.focus\:bg-info-content\/80:focus{background-color:var(--fallback-inc,oklch(var(--inc)/.8))}.focus\:bg-info-content\/90:focus{background-color:var(--fallback-inc,oklch(var(--inc)/.9))}.focus\:bg-info-content\/95:focus{background-color:var(--fallback-inc,oklch(var(--inc)/.95))}.focus\:bg-info\/0:focus{background-color:var(--fallback-in,oklch(var(--in)/0))}.focus\:bg-info\/10:focus{background-color:var(--fallback-in,oklch(var(--in)/.1))}.focus\:bg-info\/100:focus{background-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:bg-info\/20:focus{background-color:var(--fallback-in,oklch(var(--in)/.2))}.focus\:bg-info\/25:focus{background-color:var(--fallback-in,oklch(var(--in)/.25))}.focus\:bg-info\/30:focus{background-color:var(--fallback-in,oklch(var(--in)/.3))}.focus\:bg-info\/40:focus{background-color:var(--fallback-in,oklch(var(--in)/.4))}.focus\:bg-info\/5:focus{background-color:var(--fallback-in,oklch(var(--in)/.05))}.focus\:bg-info\/50:focus{background-color:var(--fallback-in,oklch(var(--in)/.5))}.focus\:bg-info\/60:focus{background-color:var(--fallback-in,oklch(var(--in)/.6))}.focus\:bg-info\/70:focus{background-color:var(--fallback-in,oklch(var(--in)/.7))}.focus\:bg-info\/75:focus{background-color:var(--fallback-in,oklch(var(--in)/.75))}.focus\:bg-info\/80:focus{background-color:var(--fallback-in,oklch(var(--in)/.8))}.focus\:bg-info\/90:focus{background-color:var(--fallback-in,oklch(var(--in)/.9))}.focus\:bg-info\/95:focus{background-color:var(--fallback-in,oklch(var(--in)/.95))}.focus\:bg-neutral:focus{background-color:var(--fallback-n,oklch(var(--n)/1))}.focus\:bg-neutral-content:focus{background-color:var(--fallback-nc,oklch(var(--nc)/1))}.focus\:bg-neutral-content\/0:focus{background-color:var(--fallback-nc,oklch(var(--nc)/0))}.focus\:bg-neutral-content\/10:focus{background-color:var(--fallback-nc,oklch(var(--nc)/.1))}.focus\:bg-neutral-content\/100:focus{background-color:var(--fallback-nc,oklch(var(--nc)/1))}.focus\:bg-neutral-content\/20:focus{background-color:var(--fallback-nc,oklch(var(--nc)/.2))}.focus\:bg-neutral-content\/25:focus{background-color:var(--fallback-nc,oklch(var(--nc)/.25))}.focus\:bg-neutral-content\/30:focus{background-color:var(--fallback-nc,oklch(var(--nc)/.3))}.focus\:bg-neutral-content\/40:focus{background-color:var(--fallback-nc,oklch(var(--nc)/.4))}.focus\:bg-neutral-content\/5:focus{background-color:var(--fallback-nc,oklch(var(--nc)/.05))}.focus\:bg-neutral-content\/50:focus{background-color:var(--fallback-nc,oklch(var(--nc)/.5))}.focus\:bg-neutral-content\/60:focus{background-color:var(--fallback-nc,oklch(var(--nc)/.6))}.focus\:bg-neutral-content\/70:focus{background-color:var(--fallback-nc,oklch(var(--nc)/.7))}.focus\:bg-neutral-content\/75:focus{background-color:var(--fallback-nc,oklch(var(--nc)/.75))}.focus\:bg-neutral-content\/80:focus{background-color:var(--fallback-nc,oklch(var(--nc)/.8))}.focus\:bg-neutral-content\/90:focus{background-color:var(--fallback-nc,oklch(var(--nc)/.9))}.focus\:bg-neutral-content\/95:focus{background-color:var(--fallback-nc,oklch(var(--nc)/.95))}.focus\:bg-neutral\/0:focus{background-color:var(--fallback-n,oklch(var(--n)/0))}.focus\:bg-neutral\/10:focus{background-color:var(--fallback-n,oklch(var(--n)/.1))}.focus\:bg-neutral\/100:focus{background-color:var(--fallback-n,oklch(var(--n)/1))}.focus\:bg-neutral\/20:focus{background-color:var(--fallback-n,oklch(var(--n)/.2))}.focus\:bg-neutral\/25:focus{background-color:var(--fallback-n,oklch(var(--n)/.25))}.focus\:bg-neutral\/30:focus{background-color:var(--fallback-n,oklch(var(--n)/.3))}.focus\:bg-neutral\/40:focus{background-color:var(--fallback-n,oklch(var(--n)/.4))}.focus\:bg-neutral\/5:focus{background-color:var(--fallback-n,oklch(var(--n)/.05))}.focus\:bg-neutral\/50:focus{background-color:var(--fallback-n,oklch(var(--n)/.5))}.focus\:bg-neutral\/60:focus{background-color:var(--fallback-n,oklch(var(--n)/.6))}.focus\:bg-neutral\/70:focus{background-color:var(--fallback-n,oklch(var(--n)/.7))}.focus\:bg-neutral\/75:focus{background-color:var(--fallback-n,oklch(var(--n)/.75))}.focus\:bg-neutral\/80:focus{background-color:var(--fallback-n,oklch(var(--n)/.8))}.focus\:bg-neutral\/90:focus{background-color:var(--fallback-n,oklch(var(--n)/.9))}.focus\:bg-neutral\/95:focus{background-color:var(--fallback-n,oklch(var(--n)/.95))}.focus\:bg-primary:focus{background-color:var(--fallback-p,oklch(var(--p)/1))}.focus\:bg-primary-content:focus{background-color:var(--fallback-pc,oklch(var(--pc)/1))}.focus\:bg-primary-content\/0:focus{background-color:var(--fallback-pc,oklch(var(--pc)/0))}.focus\:bg-primary-content\/10:focus{background-color:var(--fallback-pc,oklch(var(--pc)/.1))}.focus\:bg-primary-content\/100:focus{background-color:var(--fallback-pc,oklch(var(--pc)/1))}.focus\:bg-primary-content\/20:focus{background-color:var(--fallback-pc,oklch(var(--pc)/.2))}.focus\:bg-primary-content\/25:focus{background-color:var(--fallback-pc,oklch(var(--pc)/.25))}.focus\:bg-primary-content\/30:focus{background-color:var(--fallback-pc,oklch(var(--pc)/.3))}.focus\:bg-primary-content\/40:focus{background-color:var(--fallback-pc,oklch(var(--pc)/.4))}.focus\:bg-primary-content\/5:focus{background-color:var(--fallback-pc,oklch(var(--pc)/.05))}.focus\:bg-primary-content\/50:focus{background-color:var(--fallback-pc,oklch(var(--pc)/.5))}.focus\:bg-primary-content\/60:focus{background-color:var(--fallback-pc,oklch(var(--pc)/.6))}.focus\:bg-primary-content\/70:focus{background-color:var(--fallback-pc,oklch(var(--pc)/.7))}.focus\:bg-primary-content\/75:focus{background-color:var(--fallback-pc,oklch(var(--pc)/.75))}.focus\:bg-primary-content\/80:focus{background-color:var(--fallback-pc,oklch(var(--pc)/.8))}.focus\:bg-primary-content\/90:focus{background-color:var(--fallback-pc,oklch(var(--pc)/.9))}.focus\:bg-primary-content\/95:focus{background-color:var(--fallback-pc,oklch(var(--pc)/.95))}.focus\:bg-primary\/0:focus{background-color:var(--fallback-p,oklch(var(--p)/0))}.focus\:bg-primary\/10:focus{background-color:var(--fallback-p,oklch(var(--p)/.1))}.focus\:bg-primary\/100:focus{background-color:var(--fallback-p,oklch(var(--p)/1))}.focus\:bg-primary\/20:focus{background-color:var(--fallback-p,oklch(var(--p)/.2))}.focus\:bg-primary\/25:focus{background-color:var(--fallback-p,oklch(var(--p)/.25))}.focus\:bg-primary\/30:focus{background-color:var(--fallback-p,oklch(var(--p)/.3))}.focus\:bg-primary\/40:focus{background-color:var(--fallback-p,oklch(var(--p)/.4))}.focus\:bg-primary\/5:focus{background-color:var(--fallback-p,oklch(var(--p)/.05))}.focus\:bg-primary\/50:focus{background-color:var(--fallback-p,oklch(var(--p)/.5))}.focus\:bg-primary\/60:focus{background-color:var(--fallback-p,oklch(var(--p)/.6))}.focus\:bg-primary\/70:focus{background-color:var(--fallback-p,oklch(var(--p)/.7))}.focus\:bg-primary\/75:focus{background-color:var(--fallback-p,oklch(var(--p)/.75))}.focus\:bg-primary\/80:focus{background-color:var(--fallback-p,oklch(var(--p)/.8))}.focus\:bg-primary\/90:focus{background-color:var(--fallback-p,oklch(var(--p)/.9))}.focus\:bg-primary\/95:focus{background-color:var(--fallback-p,oklch(var(--p)/.95))}.focus\:bg-secondary:focus{background-color:var(--fallback-s,oklch(var(--s)/1))}.focus\:bg-secondary-content:focus{background-color:var(--fallback-sc,oklch(var(--sc)/1))}.focus\:bg-secondary-content\/0:focus{background-color:var(--fallback-sc,oklch(var(--sc)/0))}.focus\:bg-secondary-content\/10:focus{background-color:var(--fallback-sc,oklch(var(--sc)/.1))}.focus\:bg-secondary-content\/100:focus{background-color:var(--fallback-sc,oklch(var(--sc)/1))}.focus\:bg-secondary-content\/20:focus{background-color:var(--fallback-sc,oklch(var(--sc)/.2))}.focus\:bg-secondary-content\/25:focus{background-color:var(--fallback-sc,oklch(var(--sc)/.25))}.focus\:bg-secondary-content\/30:focus{background-color:var(--fallback-sc,oklch(var(--sc)/.3))}.focus\:bg-secondary-content\/40:focus{background-color:var(--fallback-sc,oklch(var(--sc)/.4))}.focus\:bg-secondary-content\/5:focus{background-color:var(--fallback-sc,oklch(var(--sc)/.05))}.focus\:bg-secondary-content\/50:focus{background-color:var(--fallback-sc,oklch(var(--sc)/.5))}.focus\:bg-secondary-content\/60:focus{background-color:var(--fallback-sc,oklch(var(--sc)/.6))}.focus\:bg-secondary-content\/70:focus{background-color:var(--fallback-sc,oklch(var(--sc)/.7))}.focus\:bg-secondary-content\/75:focus{background-color:var(--fallback-sc,oklch(var(--sc)/.75))}.focus\:bg-secondary-content\/80:focus{background-color:var(--fallback-sc,oklch(var(--sc)/.8))}.focus\:bg-secondary-content\/90:focus{background-color:var(--fallback-sc,oklch(var(--sc)/.9))}.focus\:bg-secondary-content\/95:focus{background-color:var(--fallback-sc,oklch(var(--sc)/.95))}.focus\:bg-secondary\/0:focus{background-color:var(--fallback-s,oklch(var(--s)/0))}.focus\:bg-secondary\/10:focus{background-color:var(--fallback-s,oklch(var(--s)/.1))}.focus\:bg-secondary\/100:focus{background-color:var(--fallback-s,oklch(var(--s)/1))}.focus\:bg-secondary\/20:focus{background-color:var(--fallback-s,oklch(var(--s)/.2))}.focus\:bg-secondary\/25:focus{background-color:var(--fallback-s,oklch(var(--s)/.25))}.focus\:bg-secondary\/30:focus{background-color:var(--fallback-s,oklch(var(--s)/.3))}.focus\:bg-secondary\/40:focus{background-color:var(--fallback-s,oklch(var(--s)/.4))}.focus\:bg-secondary\/5:focus{background-color:var(--fallback-s,oklch(var(--s)/.05))}.focus\:bg-secondary\/50:focus{background-color:var(--fallback-s,oklch(var(--s)/.5))}.focus\:bg-secondary\/60:focus{background-color:var(--fallback-s,oklch(var(--s)/.6))}.focus\:bg-secondary\/70:focus{background-color:var(--fallback-s,oklch(var(--s)/.7))}.focus\:bg-secondary\/75:focus{background-color:var(--fallback-s,oklch(var(--s)/.75))}.focus\:bg-secondary\/80:focus{background-color:var(--fallback-s,oklch(var(--s)/.8))}.focus\:bg-secondary\/90:focus{background-color:var(--fallback-s,oklch(var(--s)/.9))}.focus\:bg-secondary\/95:focus{background-color:var(--fallback-s,oklch(var(--s)/.95))}.focus\:bg-success:focus{background-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:bg-success-content:focus{background-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:bg-success-content\/0:focus{background-color:var(--fallback-suc,oklch(var(--suc)/0))}.focus\:bg-success-content\/10:focus{background-color:var(--fallback-suc,oklch(var(--suc)/.1))}.focus\:bg-success-content\/100:focus{background-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:bg-success-content\/20:focus{background-color:var(--fallback-suc,oklch(var(--suc)/.2))}.focus\:bg-success-content\/25:focus{background-color:var(--fallback-suc,oklch(var(--suc)/.25))}.focus\:bg-success-content\/30:focus{background-color:var(--fallback-suc,oklch(var(--suc)/.3))}.focus\:bg-success-content\/40:focus{background-color:var(--fallback-suc,oklch(var(--suc)/.4))}.focus\:bg-success-content\/5:focus{background-color:var(--fallback-suc,oklch(var(--suc)/.05))}.focus\:bg-success-content\/50:focus{background-color:var(--fallback-suc,oklch(var(--suc)/.5))}.focus\:bg-success-content\/60:focus{background-color:var(--fallback-suc,oklch(var(--suc)/.6))}.focus\:bg-success-content\/70:focus{background-color:var(--fallback-suc,oklch(var(--suc)/.7))}.focus\:bg-success-content\/75:focus{background-color:var(--fallback-suc,oklch(var(--suc)/.75))}.focus\:bg-success-content\/80:focus{background-color:var(--fallback-suc,oklch(var(--suc)/.8))}.focus\:bg-success-content\/90:focus{background-color:var(--fallback-suc,oklch(var(--suc)/.9))}.focus\:bg-success-content\/95:focus{background-color:var(--fallback-suc,oklch(var(--suc)/.95))}.focus\:bg-success\/0:focus{background-color:var(--fallback-su,oklch(var(--su)/0))}.focus\:bg-success\/10:focus{background-color:var(--fallback-su,oklch(var(--su)/.1))}.focus\:bg-success\/100:focus{background-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:bg-success\/20:focus{background-color:var(--fallback-su,oklch(var(--su)/.2))}.focus\:bg-success\/25:focus{background-color:var(--fallback-su,oklch(var(--su)/.25))}.focus\:bg-success\/30:focus{background-color:var(--fallback-su,oklch(var(--su)/.3))}.focus\:bg-success\/40:focus{background-color:var(--fallback-su,oklch(var(--su)/.4))}.focus\:bg-success\/5:focus{background-color:var(--fallback-su,oklch(var(--su)/.05))}.focus\:bg-success\/50:focus{background-color:var(--fallback-su,oklch(var(--su)/.5))}.focus\:bg-success\/60:focus{background-color:var(--fallback-su,oklch(var(--su)/.6))}.focus\:bg-success\/70:focus{background-color:var(--fallback-su,oklch(var(--su)/.7))}.focus\:bg-success\/75:focus{background-color:var(--fallback-su,oklch(var(--su)/.75))}.focus\:bg-success\/80:focus{background-color:var(--fallback-su,oklch(var(--su)/.8))}.focus\:bg-success\/90:focus{background-color:var(--fallback-su,oklch(var(--su)/.9))}.focus\:bg-success\/95:focus{background-color:var(--fallback-su,oklch(var(--su)/.95))}.focus\:bg-warning:focus{background-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:bg-warning-content:focus{background-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:bg-warning-content\/0:focus{background-color:var(--fallback-wac,oklch(var(--wac)/0))}.focus\:bg-warning-content\/10:focus{background-color:var(--fallback-wac,oklch(var(--wac)/.1))}.focus\:bg-warning-content\/100:focus{background-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:bg-warning-content\/20:focus{background-color:var(--fallback-wac,oklch(var(--wac)/.2))}.focus\:bg-warning-content\/25:focus{background-color:var(--fallback-wac,oklch(var(--wac)/.25))}.focus\:bg-warning-content\/30:focus{background-color:var(--fallback-wac,oklch(var(--wac)/.3))}.focus\:bg-warning-content\/40:focus{background-color:var(--fallback-wac,oklch(var(--wac)/.4))}.focus\:bg-warning-content\/5:focus{background-color:var(--fallback-wac,oklch(var(--wac)/.05))}.focus\:bg-warning-content\/50:focus{background-color:var(--fallback-wac,oklch(var(--wac)/.5))}.focus\:bg-warning-content\/60:focus{background-color:var(--fallback-wac,oklch(var(--wac)/.6))}.focus\:bg-warning-content\/70:focus{background-color:var(--fallback-wac,oklch(var(--wac)/.7))}.focus\:bg-warning-content\/75:focus{background-color:var(--fallback-wac,oklch(var(--wac)/.75))}.focus\:bg-warning-content\/80:focus{background-color:var(--fallback-wac,oklch(var(--wac)/.8))}.focus\:bg-warning-content\/90:focus{background-color:var(--fallback-wac,oklch(var(--wac)/.9))}.focus\:bg-warning-content\/95:focus{background-color:var(--fallback-wac,oklch(var(--wac)/.95))}.focus\:bg-warning\/0:focus{background-color:var(--fallback-wa,oklch(var(--wa)/0))}.focus\:bg-warning\/10:focus{background-color:var(--fallback-wa,oklch(var(--wa)/.1))}.focus\:bg-warning\/100:focus{background-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:bg-warning\/20:focus{background-color:var(--fallback-wa,oklch(var(--wa)/.2))}.focus\:bg-warning\/25:focus{background-color:var(--fallback-wa,oklch(var(--wa)/.25))}.focus\:bg-warning\/30:focus{background-color:var(--fallback-wa,oklch(var(--wa)/.3))}.focus\:bg-warning\/40:focus{background-color:var(--fallback-wa,oklch(var(--wa)/.4))}.focus\:bg-warning\/5:focus{background-color:var(--fallback-wa,oklch(var(--wa)/.05))}.focus\:bg-warning\/50:focus{background-color:var(--fallback-wa,oklch(var(--wa)/.5))}.focus\:bg-warning\/60:focus{background-color:var(--fallback-wa,oklch(var(--wa)/.6))}.focus\:bg-warning\/70:focus{background-color:var(--fallback-wa,oklch(var(--wa)/.7))}.focus\:bg-warning\/75:focus{background-color:var(--fallback-wa,oklch(var(--wa)/.75))}.focus\:bg-warning\/80:focus{background-color:var(--fallback-wa,oklch(var(--wa)/.8))}.focus\:bg-warning\/90:focus{background-color:var(--fallback-wa,oklch(var(--wa)/.9))}.focus\:bg-warning\/95:focus{background-color:var(--fallback-wa,oklch(var(--wa)/.95))}.focus\:from-accent:focus{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent-content:focus{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent-content\/0:focus{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent-content\/10:focus{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent-content\/100:focus{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent-content\/20:focus{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent-content\/25:focus{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent-content\/30:focus{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent-content\/40:focus{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent-content\/5:focus{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent-content\/50:focus{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent-content\/60:focus{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent-content\/70:focus{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent-content\/75:focus{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent-content\/80:focus{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent-content\/90:focus{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent-content\/95:focus{--tw-gradient-from:var(--fallback-ac,oklch(var(--ac)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent\/0:focus{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent\/10:focus{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent\/100:focus{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent\/20:focus{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent\/25:focus{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent\/30:focus{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent\/40:focus{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent\/5:focus{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent\/50:focus{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent\/60:focus{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent\/70:focus{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent\/75:focus{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent\/80:focus{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent\/90:focus{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-accent\/95:focus{--tw-gradient-from:var(--fallback-a,oklch(var(--a)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-100:focus{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-100\/0:focus{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-100\/10:focus{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-100\/100:focus{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-100\/20:focus{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-100\/25:focus{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-100\/30:focus{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-100\/40:focus{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-100\/5:focus{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-100\/50:focus{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-100\/60:focus{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-100\/70:focus{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-100\/75:focus{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-100\/80:focus{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-100\/90:focus{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-100\/95:focus{--tw-gradient-from:var(--fallback-b1,oklch(var(--b1)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-200:focus{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-200\/0:focus{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-200\/10:focus{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-200\/100:focus{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-200\/20:focus{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-200\/25:focus{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-200\/30:focus{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-200\/40:focus{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-200\/5:focus{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-200\/50:focus{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-200\/60:focus{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-200\/70:focus{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-200\/75:focus{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-200\/80:focus{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-200\/90:focus{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-200\/95:focus{--tw-gradient-from:var(--fallback-b2,oklch(var(--b2)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-300:focus{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-300\/0:focus{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-300\/10:focus{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-300\/100:focus{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-300\/20:focus{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-300\/25:focus{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-300\/30:focus{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-300\/40:focus{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-300\/5:focus{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-300\/50:focus{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-300\/60:focus{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-300\/70:focus{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-300\/75:focus{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-300\/80:focus{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-300\/90:focus{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-300\/95:focus{--tw-gradient-from:var(--fallback-b3,oklch(var(--b3)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-content:focus{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-content\/0:focus{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-content\/10:focus{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-content\/100:focus{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-content\/20:focus{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-content\/25:focus{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-content\/30:focus{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-content\/40:focus{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-content\/5:focus{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-content\/50:focus{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-content\/60:focus{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-content\/70:focus{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-content\/75:focus{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-content\/80:focus{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-content\/90:focus{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-base-content\/95:focus{--tw-gradient-from:var(--fallback-bc,oklch(var(--bc)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error:focus{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error-content:focus{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error-content\/0:focus{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error-content\/10:focus{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error-content\/100:focus{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error-content\/20:focus{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error-content\/25:focus{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error-content\/30:focus{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error-content\/40:focus{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error-content\/5:focus{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error-content\/50:focus{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error-content\/60:focus{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error-content\/70:focus{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error-content\/75:focus{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error-content\/80:focus{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error-content\/90:focus{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error-content\/95:focus{--tw-gradient-from:var(--fallback-erc,oklch(var(--erc)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/0:focus{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/10:focus{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/100:focus{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/20:focus{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/25:focus{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/30:focus{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/40:focus{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/5:focus{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/50:focus{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/60:focus{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/70:focus{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/75:focus{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/80:focus{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/90:focus{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-error\/95:focus{--tw-gradient-from:var(--fallback-er,oklch(var(--er)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info:focus{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info-content:focus{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info-content\/0:focus{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info-content\/10:focus{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info-content\/100:focus{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info-content\/20:focus{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info-content\/25:focus{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info-content\/30:focus{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info-content\/40:focus{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info-content\/5:focus{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info-content\/50:focus{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info-content\/60:focus{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info-content\/70:focus{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info-content\/75:focus{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info-content\/80:focus{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info-content\/90:focus{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info-content\/95:focus{--tw-gradient-from:var(--fallback-inc,oklch(var(--inc)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info\/0:focus{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info\/10:focus{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info\/100:focus{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info\/20:focus{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info\/25:focus{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info\/30:focus{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info\/40:focus{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info\/5:focus{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info\/50:focus{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info\/60:focus{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info\/70:focus{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info\/75:focus{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info\/80:focus{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info\/90:focus{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-info\/95:focus{--tw-gradient-from:var(--fallback-in,oklch(var(--in)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral:focus{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral-content:focus{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral-content\/0:focus{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral-content\/10:focus{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral-content\/100:focus{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral-content\/20:focus{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral-content\/25:focus{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral-content\/30:focus{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral-content\/40:focus{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral-content\/5:focus{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral-content\/50:focus{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral-content\/60:focus{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral-content\/70:focus{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral-content\/75:focus{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral-content\/80:focus{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral-content\/90:focus{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral-content\/95:focus{--tw-gradient-from:var(--fallback-nc,oklch(var(--nc)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral\/0:focus{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral\/10:focus{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral\/100:focus{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral\/20:focus{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral\/25:focus{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral\/30:focus{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral\/40:focus{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral\/5:focus{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral\/50:focus{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral\/60:focus{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral\/70:focus{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral\/75:focus{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral\/80:focus{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral\/90:focus{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-neutral\/95:focus{--tw-gradient-from:var(--fallback-n,oklch(var(--n)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary:focus{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary-content:focus{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary-content\/0:focus{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary-content\/10:focus{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary-content\/100:focus{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary-content\/20:focus{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary-content\/25:focus{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary-content\/30:focus{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary-content\/40:focus{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary-content\/5:focus{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary-content\/50:focus{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary-content\/60:focus{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary-content\/70:focus{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary-content\/75:focus{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary-content\/80:focus{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary-content\/90:focus{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary-content\/95:focus{--tw-gradient-from:var(--fallback-pc,oklch(var(--pc)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/0:focus{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/10:focus{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/100:focus{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/20:focus{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/25:focus{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/30:focus{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/40:focus{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/5:focus{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/50:focus{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/60:focus{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/70:focus{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/75:focus{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/80:focus{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/90:focus{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-primary\/95:focus{--tw-gradient-from:var(--fallback-p,oklch(var(--p)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary:focus{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary-content:focus{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary-content\/0:focus{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary-content\/10:focus{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary-content\/100:focus{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary-content\/20:focus{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary-content\/25:focus{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary-content\/30:focus{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary-content\/40:focus{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary-content\/5:focus{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary-content\/50:focus{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary-content\/60:focus{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary-content\/70:focus{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary-content\/75:focus{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary-content\/80:focus{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary-content\/90:focus{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary-content\/95:focus{--tw-gradient-from:var(--fallback-sc,oklch(var(--sc)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/0:focus{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/10:focus{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/100:focus{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/20:focus{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/25:focus{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/30:focus{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/40:focus{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/5:focus{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/50:focus{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/60:focus{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/70:focus{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/75:focus{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/80:focus{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/90:focus{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-secondary\/95:focus{--tw-gradient-from:var(--fallback-s,oklch(var(--s)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success:focus{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success-content:focus{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success-content\/0:focus{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success-content\/10:focus{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success-content\/100:focus{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success-content\/20:focus{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success-content\/25:focus{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success-content\/30:focus{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success-content\/40:focus{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success-content\/5:focus{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success-content\/50:focus{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success-content\/60:focus{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success-content\/70:focus{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success-content\/75:focus{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success-content\/80:focus{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success-content\/90:focus{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success-content\/95:focus{--tw-gradient-from:var(--fallback-suc,oklch(var(--suc)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/0:focus{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/10:focus{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/100:focus{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/20:focus{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/25:focus{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/30:focus{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/40:focus{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/5:focus{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/50:focus{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/60:focus{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/70:focus{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/75:focus{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/80:focus{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/90:focus{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-success\/95:focus{--tw-gradient-from:var(--fallback-su,oklch(var(--su)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning:focus{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning-content:focus{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/1)) var(--tw-gradient-from-position);--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning-content\/0:focus{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning-content\/10:focus{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning-content\/100:focus{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning-content\/20:focus{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning-content\/25:focus{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning-content\/30:focus{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning-content\/40:focus{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning-content\/5:focus{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning-content\/50:focus{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning-content\/60:focus{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning-content\/70:focus{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning-content\/75:focus{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning-content\/80:focus{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning-content\/90:focus{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning-content\/95:focus{--tw-gradient-from:var(--fallback-wac,oklch(var(--wac)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/0:focus{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/10:focus{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/100:focus{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/1)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/20:focus{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.2)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/25:focus{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.25)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/30:focus{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.3)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/40:focus{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.4)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/5:focus{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.05)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/50:focus{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.5)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/60:focus{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.6)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/70:focus{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.7)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/75:focus{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.75)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/80:focus{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.8)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/90:focus{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.9)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:from-warning\/95:focus{--tw-gradient-from:var(--fallback-wa,oklch(var(--wa)/0.95)) var(--tw-gradient-from-position);--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.focus\:via-accent:focus{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent-content:focus{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent-content\/0:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent-content\/10:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent-content\/100:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent-content\/20:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent-content\/25:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent-content\/30:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent-content\/40:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent-content\/5:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent-content\/50:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent-content\/60:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent-content\/70:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent-content\/75:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent-content\/80:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent-content\/90:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent-content\/95:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-ac,oklch(var(--ac)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent\/0:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent\/10:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent\/100:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent\/20:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent\/25:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent\/30:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent\/40:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent\/5:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent\/50:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent\/60:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent\/70:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent\/75:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent\/80:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent\/90:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-accent\/95:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-a,oklch(var(--a)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-100:focus{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-100\/0:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-100\/10:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-100\/100:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-100\/20:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-100\/25:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-100\/30:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-100\/40:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-100\/5:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-100\/50:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-100\/60:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-100\/70:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-100\/75:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-100\/80:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-100\/90:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-100\/95:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b1,oklch(var(--b1)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-200:focus{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-200\/0:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-200\/10:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-200\/100:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-200\/20:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-200\/25:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-200\/30:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-200\/40:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-200\/5:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-200\/50:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-200\/60:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-200\/70:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-200\/75:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-200\/80:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-200\/90:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-200\/95:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b2,oklch(var(--b2)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-300:focus{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-300\/0:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-300\/10:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-300\/100:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-300\/20:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-300\/25:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-300\/30:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-300\/40:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-300\/5:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-300\/50:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-300\/60:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-300\/70:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-300\/75:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-300\/80:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-300\/90:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-300\/95:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-b3,oklch(var(--b3)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-content:focus{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-content\/0:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-content\/10:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-content\/100:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-content\/20:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-content\/25:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-content\/30:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-content\/40:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-content\/5:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-content\/50:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-content\/60:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-content\/70:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-content\/75:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-content\/80:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-content\/90:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-base-content\/95:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-bc,oklch(var(--bc)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error:focus{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error-content:focus{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error-content\/0:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error-content\/10:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error-content\/100:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error-content\/20:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error-content\/25:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error-content\/30:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error-content\/40:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error-content\/5:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error-content\/50:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error-content\/60:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error-content\/70:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error-content\/75:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error-content\/80:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error-content\/90:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error-content\/95:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-erc,oklch(var(--erc)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/0:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/10:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/100:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/20:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/25:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/30:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/40:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/5:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/50:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/60:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/70:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/75:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/80:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/90:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-error\/95:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-er,oklch(var(--er)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info:focus{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info-content:focus{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info-content\/0:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info-content\/10:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info-content\/100:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info-content\/20:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info-content\/25:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info-content\/30:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info-content\/40:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info-content\/5:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info-content\/50:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info-content\/60:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info-content\/70:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info-content\/75:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info-content\/80:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info-content\/90:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info-content\/95:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-inc,oklch(var(--inc)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info\/0:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info\/10:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info\/100:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info\/20:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info\/25:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info\/30:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info\/40:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info\/5:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info\/50:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info\/60:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info\/70:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info\/75:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info\/80:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info\/90:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-info\/95:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-in,oklch(var(--in)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral:focus{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral-content:focus{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral-content\/0:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral-content\/10:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral-content\/100:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral-content\/20:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral-content\/25:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral-content\/30:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral-content\/40:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral-content\/5:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral-content\/50:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral-content\/60:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral-content\/70:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral-content\/75:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral-content\/80:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral-content\/90:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral-content\/95:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-nc,oklch(var(--nc)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral\/0:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral\/10:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral\/100:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral\/20:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral\/25:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral\/30:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral\/40:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral\/5:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral\/50:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral\/60:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral\/70:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral\/75:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral\/80:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral\/90:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-neutral\/95:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-n,oklch(var(--n)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary:focus{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary-content:focus{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary-content\/0:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary-content\/10:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary-content\/100:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary-content\/20:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary-content\/25:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary-content\/30:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary-content\/40:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary-content\/5:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary-content\/50:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary-content\/60:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary-content\/70:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary-content\/75:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary-content\/80:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary-content\/90:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary-content\/95:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-pc,oklch(var(--pc)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/0:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/10:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/100:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/20:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/25:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/30:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/40:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/5:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/50:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/60:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/70:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/75:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/80:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/90:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-primary\/95:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-p,oklch(var(--p)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary:focus{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary-content:focus{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary-content\/0:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary-content\/10:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary-content\/100:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary-content\/20:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary-content\/25:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary-content\/30:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary-content\/40:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary-content\/5:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary-content\/50:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary-content\/60:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary-content\/70:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary-content\/75:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary-content\/80:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary-content\/90:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary-content\/95:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-sc,oklch(var(--sc)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/0:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/10:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/100:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/20:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/25:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/30:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/40:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/5:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/50:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/60:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/70:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/75:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/80:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/90:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-secondary\/95:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-s,oklch(var(--s)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success:focus{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success-content:focus{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success-content\/0:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success-content\/10:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success-content\/100:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success-content\/20:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success-content\/25:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success-content\/30:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success-content\/40:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success-content\/5:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success-content\/50:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success-content\/60:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success-content\/70:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success-content\/75:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success-content\/80:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success-content\/90:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success-content\/95:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-suc,oklch(var(--suc)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/0:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/10:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/100:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/20:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/25:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/30:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/40:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/5:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/50:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/60:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/70:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/75:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/80:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/90:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-success\/95:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-su,oklch(var(--su)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning:focus{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning-content:focus{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0)) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning-content\/0:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning-content\/10:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning-content\/100:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning-content\/20:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning-content\/25:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning-content\/30:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning-content\/40:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning-content\/5:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning-content\/50:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning-content\/60:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning-content\/70:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning-content\/75:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning-content\/80:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning-content\/90:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning-content\/95:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wac,oklch(var(--wac)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/0:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/10:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/100:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/1)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/20:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.2)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/25:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.25)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/30:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.3)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/40:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.4)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/5:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.05)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/50:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.5)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/60:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.6)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/70:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.7)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/75:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.75)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/80:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.8)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/90:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.9)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:via-warning\/95:focus{--tw-gradient-to:rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--fallback-wa,oklch(var(--wa)/0.95)) var(--tw-gradient-via-position),var(--tw-gradient-to)}.focus\:to-accent:focus{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/1)) var(--tw-gradient-to-position)}.focus\:to-accent-content:focus{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/1)) var(--tw-gradient-to-position)}.focus\:to-accent-content\/0:focus{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0)) var(--tw-gradient-to-position)}.focus\:to-accent-content\/10:focus{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.1)) var(--tw-gradient-to-position)}.focus\:to-accent-content\/100:focus{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/1)) var(--tw-gradient-to-position)}.focus\:to-accent-content\/20:focus{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.2)) var(--tw-gradient-to-position)}.focus\:to-accent-content\/25:focus{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.25)) var(--tw-gradient-to-position)}.focus\:to-accent-content\/30:focus{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.3)) var(--tw-gradient-to-position)}.focus\:to-accent-content\/40:focus{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.4)) var(--tw-gradient-to-position)}.focus\:to-accent-content\/5:focus{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.05)) var(--tw-gradient-to-position)}.focus\:to-accent-content\/50:focus{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.5)) var(--tw-gradient-to-position)}.focus\:to-accent-content\/60:focus{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.6)) var(--tw-gradient-to-position)}.focus\:to-accent-content\/70:focus{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.7)) var(--tw-gradient-to-position)}.focus\:to-accent-content\/75:focus{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.75)) var(--tw-gradient-to-position)}.focus\:to-accent-content\/80:focus{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.8)) var(--tw-gradient-to-position)}.focus\:to-accent-content\/90:focus{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.9)) var(--tw-gradient-to-position)}.focus\:to-accent-content\/95:focus{--tw-gradient-to:var(--fallback-ac,oklch(var(--ac)/0.95)) var(--tw-gradient-to-position)}.focus\:to-accent\/0:focus{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0)) var(--tw-gradient-to-position)}.focus\:to-accent\/10:focus{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.1)) var(--tw-gradient-to-position)}.focus\:to-accent\/100:focus{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/1)) var(--tw-gradient-to-position)}.focus\:to-accent\/20:focus{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.2)) var(--tw-gradient-to-position)}.focus\:to-accent\/25:focus{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.25)) var(--tw-gradient-to-position)}.focus\:to-accent\/30:focus{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.3)) var(--tw-gradient-to-position)}.focus\:to-accent\/40:focus{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.4)) var(--tw-gradient-to-position)}.focus\:to-accent\/5:focus{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.05)) var(--tw-gradient-to-position)}.focus\:to-accent\/50:focus{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.5)) var(--tw-gradient-to-position)}.focus\:to-accent\/60:focus{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.6)) var(--tw-gradient-to-position)}.focus\:to-accent\/70:focus{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.7)) var(--tw-gradient-to-position)}.focus\:to-accent\/75:focus{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.75)) var(--tw-gradient-to-position)}.focus\:to-accent\/80:focus{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.8)) var(--tw-gradient-to-position)}.focus\:to-accent\/90:focus{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.9)) var(--tw-gradient-to-position)}.focus\:to-accent\/95:focus{--tw-gradient-to:var(--fallback-a,oklch(var(--a)/0.95)) var(--tw-gradient-to-position)}.focus\:to-base-100:focus{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/1)) var(--tw-gradient-to-position)}.focus\:to-base-100\/0:focus{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0)) var(--tw-gradient-to-position)}.focus\:to-base-100\/10:focus{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.1)) var(--tw-gradient-to-position)}.focus\:to-base-100\/100:focus{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/1)) var(--tw-gradient-to-position)}.focus\:to-base-100\/20:focus{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.2)) var(--tw-gradient-to-position)}.focus\:to-base-100\/25:focus{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.25)) var(--tw-gradient-to-position)}.focus\:to-base-100\/30:focus{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.3)) var(--tw-gradient-to-position)}.focus\:to-base-100\/40:focus{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.4)) var(--tw-gradient-to-position)}.focus\:to-base-100\/5:focus{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.05)) var(--tw-gradient-to-position)}.focus\:to-base-100\/50:focus{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.5)) var(--tw-gradient-to-position)}.focus\:to-base-100\/60:focus{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.6)) var(--tw-gradient-to-position)}.focus\:to-base-100\/70:focus{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.7)) var(--tw-gradient-to-position)}.focus\:to-base-100\/75:focus{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.75)) var(--tw-gradient-to-position)}.focus\:to-base-100\/80:focus{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.8)) var(--tw-gradient-to-position)}.focus\:to-base-100\/90:focus{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.9)) var(--tw-gradient-to-position)}.focus\:to-base-100\/95:focus{--tw-gradient-to:var(--fallback-b1,oklch(var(--b1)/0.95)) var(--tw-gradient-to-position)}.focus\:to-base-200:focus{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/1)) var(--tw-gradient-to-position)}.focus\:to-base-200\/0:focus{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0)) var(--tw-gradient-to-position)}.focus\:to-base-200\/10:focus{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.1)) var(--tw-gradient-to-position)}.focus\:to-base-200\/100:focus{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/1)) var(--tw-gradient-to-position)}.focus\:to-base-200\/20:focus{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.2)) var(--tw-gradient-to-position)}.focus\:to-base-200\/25:focus{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.25)) var(--tw-gradient-to-position)}.focus\:to-base-200\/30:focus{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.3)) var(--tw-gradient-to-position)}.focus\:to-base-200\/40:focus{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.4)) var(--tw-gradient-to-position)}.focus\:to-base-200\/5:focus{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.05)) var(--tw-gradient-to-position)}.focus\:to-base-200\/50:focus{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.5)) var(--tw-gradient-to-position)}.focus\:to-base-200\/60:focus{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.6)) var(--tw-gradient-to-position)}.focus\:to-base-200\/70:focus{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.7)) var(--tw-gradient-to-position)}.focus\:to-base-200\/75:focus{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.75)) var(--tw-gradient-to-position)}.focus\:to-base-200\/80:focus{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.8)) var(--tw-gradient-to-position)}.focus\:to-base-200\/90:focus{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.9)) var(--tw-gradient-to-position)}.focus\:to-base-200\/95:focus{--tw-gradient-to:var(--fallback-b2,oklch(var(--b2)/0.95)) var(--tw-gradient-to-position)}.focus\:to-base-300:focus{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/1)) var(--tw-gradient-to-position)}.focus\:to-base-300\/0:focus{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0)) var(--tw-gradient-to-position)}.focus\:to-base-300\/10:focus{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.1)) var(--tw-gradient-to-position)}.focus\:to-base-300\/100:focus{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/1)) var(--tw-gradient-to-position)}.focus\:to-base-300\/20:focus{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.2)) var(--tw-gradient-to-position)}.focus\:to-base-300\/25:focus{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.25)) var(--tw-gradient-to-position)}.focus\:to-base-300\/30:focus{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.3)) var(--tw-gradient-to-position)}.focus\:to-base-300\/40:focus{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.4)) var(--tw-gradient-to-position)}.focus\:to-base-300\/5:focus{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.05)) var(--tw-gradient-to-position)}.focus\:to-base-300\/50:focus{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.5)) var(--tw-gradient-to-position)}.focus\:to-base-300\/60:focus{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.6)) var(--tw-gradient-to-position)}.focus\:to-base-300\/70:focus{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.7)) var(--tw-gradient-to-position)}.focus\:to-base-300\/75:focus{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.75)) var(--tw-gradient-to-position)}.focus\:to-base-300\/80:focus{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.8)) var(--tw-gradient-to-position)}.focus\:to-base-300\/90:focus{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.9)) var(--tw-gradient-to-position)}.focus\:to-base-300\/95:focus{--tw-gradient-to:var(--fallback-b3,oklch(var(--b3)/0.95)) var(--tw-gradient-to-position)}.focus\:to-base-content:focus{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/1)) var(--tw-gradient-to-position)}.focus\:to-base-content\/0:focus{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0)) var(--tw-gradient-to-position)}.focus\:to-base-content\/10:focus{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.1)) var(--tw-gradient-to-position)}.focus\:to-base-content\/100:focus{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/1)) var(--tw-gradient-to-position)}.focus\:to-base-content\/20:focus{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.2)) var(--tw-gradient-to-position)}.focus\:to-base-content\/25:focus{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.25)) var(--tw-gradient-to-position)}.focus\:to-base-content\/30:focus{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.3)) var(--tw-gradient-to-position)}.focus\:to-base-content\/40:focus{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.4)) var(--tw-gradient-to-position)}.focus\:to-base-content\/5:focus{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.05)) var(--tw-gradient-to-position)}.focus\:to-base-content\/50:focus{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.5)) var(--tw-gradient-to-position)}.focus\:to-base-content\/60:focus{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.6)) var(--tw-gradient-to-position)}.focus\:to-base-content\/70:focus{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.7)) var(--tw-gradient-to-position)}.focus\:to-base-content\/75:focus{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.75)) var(--tw-gradient-to-position)}.focus\:to-base-content\/80:focus{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.8)) var(--tw-gradient-to-position)}.focus\:to-base-content\/90:focus{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.9)) var(--tw-gradient-to-position)}.focus\:to-base-content\/95:focus{--tw-gradient-to:var(--fallback-bc,oklch(var(--bc)/0.95)) var(--tw-gradient-to-position)}.focus\:to-error:focus{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/1)) var(--tw-gradient-to-position)}.focus\:to-error-content:focus{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/1)) var(--tw-gradient-to-position)}.focus\:to-error-content\/0:focus{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0)) var(--tw-gradient-to-position)}.focus\:to-error-content\/10:focus{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.1)) var(--tw-gradient-to-position)}.focus\:to-error-content\/100:focus{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/1)) var(--tw-gradient-to-position)}.focus\:to-error-content\/20:focus{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.2)) var(--tw-gradient-to-position)}.focus\:to-error-content\/25:focus{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.25)) var(--tw-gradient-to-position)}.focus\:to-error-content\/30:focus{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.3)) var(--tw-gradient-to-position)}.focus\:to-error-content\/40:focus{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.4)) var(--tw-gradient-to-position)}.focus\:to-error-content\/5:focus{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.05)) var(--tw-gradient-to-position)}.focus\:to-error-content\/50:focus{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.5)) var(--tw-gradient-to-position)}.focus\:to-error-content\/60:focus{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.6)) var(--tw-gradient-to-position)}.focus\:to-error-content\/70:focus{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.7)) var(--tw-gradient-to-position)}.focus\:to-error-content\/75:focus{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.75)) var(--tw-gradient-to-position)}.focus\:to-error-content\/80:focus{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.8)) var(--tw-gradient-to-position)}.focus\:to-error-content\/90:focus{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.9)) var(--tw-gradient-to-position)}.focus\:to-error-content\/95:focus{--tw-gradient-to:var(--fallback-erc,oklch(var(--erc)/0.95)) var(--tw-gradient-to-position)}.focus\:to-error\/0:focus{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0)) var(--tw-gradient-to-position)}.focus\:to-error\/10:focus{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.1)) var(--tw-gradient-to-position)}.focus\:to-error\/100:focus{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/1)) var(--tw-gradient-to-position)}.focus\:to-error\/20:focus{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.2)) var(--tw-gradient-to-position)}.focus\:to-error\/25:focus{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.25)) var(--tw-gradient-to-position)}.focus\:to-error\/30:focus{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.3)) var(--tw-gradient-to-position)}.focus\:to-error\/40:focus{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.4)) var(--tw-gradient-to-position)}.focus\:to-error\/5:focus{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.05)) var(--tw-gradient-to-position)}.focus\:to-error\/50:focus{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.5)) var(--tw-gradient-to-position)}.focus\:to-error\/60:focus{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.6)) var(--tw-gradient-to-position)}.focus\:to-error\/70:focus{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.7)) var(--tw-gradient-to-position)}.focus\:to-error\/75:focus{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.75)) var(--tw-gradient-to-position)}.focus\:to-error\/80:focus{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.8)) var(--tw-gradient-to-position)}.focus\:to-error\/90:focus{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.9)) var(--tw-gradient-to-position)}.focus\:to-error\/95:focus{--tw-gradient-to:var(--fallback-er,oklch(var(--er)/0.95)) var(--tw-gradient-to-position)}.focus\:to-info:focus{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/1)) var(--tw-gradient-to-position)}.focus\:to-info-content:focus{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/1)) var(--tw-gradient-to-position)}.focus\:to-info-content\/0:focus{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0)) var(--tw-gradient-to-position)}.focus\:to-info-content\/10:focus{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.1)) var(--tw-gradient-to-position)}.focus\:to-info-content\/100:focus{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/1)) var(--tw-gradient-to-position)}.focus\:to-info-content\/20:focus{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.2)) var(--tw-gradient-to-position)}.focus\:to-info-content\/25:focus{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.25)) var(--tw-gradient-to-position)}.focus\:to-info-content\/30:focus{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.3)) var(--tw-gradient-to-position)}.focus\:to-info-content\/40:focus{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.4)) var(--tw-gradient-to-position)}.focus\:to-info-content\/5:focus{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.05)) var(--tw-gradient-to-position)}.focus\:to-info-content\/50:focus{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.5)) var(--tw-gradient-to-position)}.focus\:to-info-content\/60:focus{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.6)) var(--tw-gradient-to-position)}.focus\:to-info-content\/70:focus{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.7)) var(--tw-gradient-to-position)}.focus\:to-info-content\/75:focus{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.75)) var(--tw-gradient-to-position)}.focus\:to-info-content\/80:focus{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.8)) var(--tw-gradient-to-position)}.focus\:to-info-content\/90:focus{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.9)) var(--tw-gradient-to-position)}.focus\:to-info-content\/95:focus{--tw-gradient-to:var(--fallback-inc,oklch(var(--inc)/0.95)) var(--tw-gradient-to-position)}.focus\:to-info\/0:focus{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0)) var(--tw-gradient-to-position)}.focus\:to-info\/10:focus{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.1)) var(--tw-gradient-to-position)}.focus\:to-info\/100:focus{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/1)) var(--tw-gradient-to-position)}.focus\:to-info\/20:focus{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.2)) var(--tw-gradient-to-position)}.focus\:to-info\/25:focus{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.25)) var(--tw-gradient-to-position)}.focus\:to-info\/30:focus{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.3)) var(--tw-gradient-to-position)}.focus\:to-info\/40:focus{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.4)) var(--tw-gradient-to-position)}.focus\:to-info\/5:focus{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.05)) var(--tw-gradient-to-position)}.focus\:to-info\/50:focus{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.5)) var(--tw-gradient-to-position)}.focus\:to-info\/60:focus{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.6)) var(--tw-gradient-to-position)}.focus\:to-info\/70:focus{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.7)) var(--tw-gradient-to-position)}.focus\:to-info\/75:focus{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.75)) var(--tw-gradient-to-position)}.focus\:to-info\/80:focus{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.8)) var(--tw-gradient-to-position)}.focus\:to-info\/90:focus{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.9)) var(--tw-gradient-to-position)}.focus\:to-info\/95:focus{--tw-gradient-to:var(--fallback-in,oklch(var(--in)/0.95)) var(--tw-gradient-to-position)}.focus\:to-neutral:focus{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/1)) var(--tw-gradient-to-position)}.focus\:to-neutral-content:focus{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/1)) var(--tw-gradient-to-position)}.focus\:to-neutral-content\/0:focus{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0)) var(--tw-gradient-to-position)}.focus\:to-neutral-content\/10:focus{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.1)) var(--tw-gradient-to-position)}.focus\:to-neutral-content\/100:focus{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/1)) var(--tw-gradient-to-position)}.focus\:to-neutral-content\/20:focus{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.2)) var(--tw-gradient-to-position)}.focus\:to-neutral-content\/25:focus{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.25)) var(--tw-gradient-to-position)}.focus\:to-neutral-content\/30:focus{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.3)) var(--tw-gradient-to-position)}.focus\:to-neutral-content\/40:focus{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.4)) var(--tw-gradient-to-position)}.focus\:to-neutral-content\/5:focus{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.05)) var(--tw-gradient-to-position)}.focus\:to-neutral-content\/50:focus{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.5)) var(--tw-gradient-to-position)}.focus\:to-neutral-content\/60:focus{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.6)) var(--tw-gradient-to-position)}.focus\:to-neutral-content\/70:focus{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.7)) var(--tw-gradient-to-position)}.focus\:to-neutral-content\/75:focus{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.75)) var(--tw-gradient-to-position)}.focus\:to-neutral-content\/80:focus{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.8)) var(--tw-gradient-to-position)}.focus\:to-neutral-content\/90:focus{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.9)) var(--tw-gradient-to-position)}.focus\:to-neutral-content\/95:focus{--tw-gradient-to:var(--fallback-nc,oklch(var(--nc)/0.95)) var(--tw-gradient-to-position)}.focus\:to-neutral\/0:focus{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0)) var(--tw-gradient-to-position)}.focus\:to-neutral\/10:focus{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.1)) var(--tw-gradient-to-position)}.focus\:to-neutral\/100:focus{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/1)) var(--tw-gradient-to-position)}.focus\:to-neutral\/20:focus{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.2)) var(--tw-gradient-to-position)}.focus\:to-neutral\/25:focus{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.25)) var(--tw-gradient-to-position)}.focus\:to-neutral\/30:focus{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.3)) var(--tw-gradient-to-position)}.focus\:to-neutral\/40:focus{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.4)) var(--tw-gradient-to-position)}.focus\:to-neutral\/5:focus{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.05)) var(--tw-gradient-to-position)}.focus\:to-neutral\/50:focus{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.5)) var(--tw-gradient-to-position)}.focus\:to-neutral\/60:focus{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.6)) var(--tw-gradient-to-position)}.focus\:to-neutral\/70:focus{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.7)) var(--tw-gradient-to-position)}.focus\:to-neutral\/75:focus{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.75)) var(--tw-gradient-to-position)}.focus\:to-neutral\/80:focus{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.8)) var(--tw-gradient-to-position)}.focus\:to-neutral\/90:focus{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.9)) var(--tw-gradient-to-position)}.focus\:to-neutral\/95:focus{--tw-gradient-to:var(--fallback-n,oklch(var(--n)/0.95)) var(--tw-gradient-to-position)}.focus\:to-primary:focus{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/1)) var(--tw-gradient-to-position)}.focus\:to-primary-content:focus{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/1)) var(--tw-gradient-to-position)}.focus\:to-primary-content\/0:focus{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0)) var(--tw-gradient-to-position)}.focus\:to-primary-content\/10:focus{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.1)) var(--tw-gradient-to-position)}.focus\:to-primary-content\/100:focus{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/1)) var(--tw-gradient-to-position)}.focus\:to-primary-content\/20:focus{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.2)) var(--tw-gradient-to-position)}.focus\:to-primary-content\/25:focus{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.25)) var(--tw-gradient-to-position)}.focus\:to-primary-content\/30:focus{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.3)) var(--tw-gradient-to-position)}.focus\:to-primary-content\/40:focus{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.4)) var(--tw-gradient-to-position)}.focus\:to-primary-content\/5:focus{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.05)) var(--tw-gradient-to-position)}.focus\:to-primary-content\/50:focus{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.5)) var(--tw-gradient-to-position)}.focus\:to-primary-content\/60:focus{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.6)) var(--tw-gradient-to-position)}.focus\:to-primary-content\/70:focus{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.7)) var(--tw-gradient-to-position)}.focus\:to-primary-content\/75:focus{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.75)) var(--tw-gradient-to-position)}.focus\:to-primary-content\/80:focus{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.8)) var(--tw-gradient-to-position)}.focus\:to-primary-content\/90:focus{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.9)) var(--tw-gradient-to-position)}.focus\:to-primary-content\/95:focus{--tw-gradient-to:var(--fallback-pc,oklch(var(--pc)/0.95)) var(--tw-gradient-to-position)}.focus\:to-primary\/0:focus{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0)) var(--tw-gradient-to-position)}.focus\:to-primary\/10:focus{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.1)) var(--tw-gradient-to-position)}.focus\:to-primary\/100:focus{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/1)) var(--tw-gradient-to-position)}.focus\:to-primary\/20:focus{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.2)) var(--tw-gradient-to-position)}.focus\:to-primary\/25:focus{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.25)) var(--tw-gradient-to-position)}.focus\:to-primary\/30:focus{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.3)) var(--tw-gradient-to-position)}.focus\:to-primary\/40:focus{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.4)) var(--tw-gradient-to-position)}.focus\:to-primary\/5:focus{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.05)) var(--tw-gradient-to-position)}.focus\:to-primary\/50:focus{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.5)) var(--tw-gradient-to-position)}.focus\:to-primary\/60:focus{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.6)) var(--tw-gradient-to-position)}.focus\:to-primary\/70:focus{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.7)) var(--tw-gradient-to-position)}.focus\:to-primary\/75:focus{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.75)) var(--tw-gradient-to-position)}.focus\:to-primary\/80:focus{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.8)) var(--tw-gradient-to-position)}.focus\:to-primary\/90:focus{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.9)) var(--tw-gradient-to-position)}.focus\:to-primary\/95:focus{--tw-gradient-to:var(--fallback-p,oklch(var(--p)/0.95)) var(--tw-gradient-to-position)}.focus\:to-secondary:focus{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/1)) var(--tw-gradient-to-position)}.focus\:to-secondary-content:focus{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/1)) var(--tw-gradient-to-position)}.focus\:to-secondary-content\/0:focus{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0)) var(--tw-gradient-to-position)}.focus\:to-secondary-content\/10:focus{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.1)) var(--tw-gradient-to-position)}.focus\:to-secondary-content\/100:focus{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/1)) var(--tw-gradient-to-position)}.focus\:to-secondary-content\/20:focus{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.2)) var(--tw-gradient-to-position)}.focus\:to-secondary-content\/25:focus{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.25)) var(--tw-gradient-to-position)}.focus\:to-secondary-content\/30:focus{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.3)) var(--tw-gradient-to-position)}.focus\:to-secondary-content\/40:focus{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.4)) var(--tw-gradient-to-position)}.focus\:to-secondary-content\/5:focus{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.05)) var(--tw-gradient-to-position)}.focus\:to-secondary-content\/50:focus{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.5)) var(--tw-gradient-to-position)}.focus\:to-secondary-content\/60:focus{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.6)) var(--tw-gradient-to-position)}.focus\:to-secondary-content\/70:focus{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.7)) var(--tw-gradient-to-position)}.focus\:to-secondary-content\/75:focus{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.75)) var(--tw-gradient-to-position)}.focus\:to-secondary-content\/80:focus{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.8)) var(--tw-gradient-to-position)}.focus\:to-secondary-content\/90:focus{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.9)) var(--tw-gradient-to-position)}.focus\:to-secondary-content\/95:focus{--tw-gradient-to:var(--fallback-sc,oklch(var(--sc)/0.95)) var(--tw-gradient-to-position)}.focus\:to-secondary\/0:focus{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0)) var(--tw-gradient-to-position)}.focus\:to-secondary\/10:focus{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.1)) var(--tw-gradient-to-position)}.focus\:to-secondary\/100:focus{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/1)) var(--tw-gradient-to-position)}.focus\:to-secondary\/20:focus{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.2)) var(--tw-gradient-to-position)}.focus\:to-secondary\/25:focus{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.25)) var(--tw-gradient-to-position)}.focus\:to-secondary\/30:focus{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.3)) var(--tw-gradient-to-position)}.focus\:to-secondary\/40:focus{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.4)) var(--tw-gradient-to-position)}.focus\:to-secondary\/5:focus{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.05)) var(--tw-gradient-to-position)}.focus\:to-secondary\/50:focus{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.5)) var(--tw-gradient-to-position)}.focus\:to-secondary\/60:focus{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.6)) var(--tw-gradient-to-position)}.focus\:to-secondary\/70:focus{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.7)) var(--tw-gradient-to-position)}.focus\:to-secondary\/75:focus{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.75)) var(--tw-gradient-to-position)}.focus\:to-secondary\/80:focus{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.8)) var(--tw-gradient-to-position)}.focus\:to-secondary\/90:focus{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.9)) var(--tw-gradient-to-position)}.focus\:to-secondary\/95:focus{--tw-gradient-to:var(--fallback-s,oklch(var(--s)/0.95)) var(--tw-gradient-to-position)}.focus\:to-success:focus{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/1)) var(--tw-gradient-to-position)}.focus\:to-success-content:focus{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/1)) var(--tw-gradient-to-position)}.focus\:to-success-content\/0:focus{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0)) var(--tw-gradient-to-position)}.focus\:to-success-content\/10:focus{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.1)) var(--tw-gradient-to-position)}.focus\:to-success-content\/100:focus{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/1)) var(--tw-gradient-to-position)}.focus\:to-success-content\/20:focus{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.2)) var(--tw-gradient-to-position)}.focus\:to-success-content\/25:focus{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.25)) var(--tw-gradient-to-position)}.focus\:to-success-content\/30:focus{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.3)) var(--tw-gradient-to-position)}.focus\:to-success-content\/40:focus{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.4)) var(--tw-gradient-to-position)}.focus\:to-success-content\/5:focus{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.05)) var(--tw-gradient-to-position)}.focus\:to-success-content\/50:focus{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.5)) var(--tw-gradient-to-position)}.focus\:to-success-content\/60:focus{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.6)) var(--tw-gradient-to-position)}.focus\:to-success-content\/70:focus{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.7)) var(--tw-gradient-to-position)}.focus\:to-success-content\/75:focus{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.75)) var(--tw-gradient-to-position)}.focus\:to-success-content\/80:focus{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.8)) var(--tw-gradient-to-position)}.focus\:to-success-content\/90:focus{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.9)) var(--tw-gradient-to-position)}.focus\:to-success-content\/95:focus{--tw-gradient-to:var(--fallback-suc,oklch(var(--suc)/0.95)) var(--tw-gradient-to-position)}.focus\:to-success\/0:focus{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0)) var(--tw-gradient-to-position)}.focus\:to-success\/10:focus{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.1)) var(--tw-gradient-to-position)}.focus\:to-success\/100:focus{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/1)) var(--tw-gradient-to-position)}.focus\:to-success\/20:focus{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.2)) var(--tw-gradient-to-position)}.focus\:to-success\/25:focus{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.25)) var(--tw-gradient-to-position)}.focus\:to-success\/30:focus{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.3)) var(--tw-gradient-to-position)}.focus\:to-success\/40:focus{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.4)) var(--tw-gradient-to-position)}.focus\:to-success\/5:focus{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.05)) var(--tw-gradient-to-position)}.focus\:to-success\/50:focus{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.5)) var(--tw-gradient-to-position)}.focus\:to-success\/60:focus{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.6)) var(--tw-gradient-to-position)}.focus\:to-success\/70:focus{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.7)) var(--tw-gradient-to-position)}.focus\:to-success\/75:focus{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.75)) var(--tw-gradient-to-position)}.focus\:to-success\/80:focus{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.8)) var(--tw-gradient-to-position)}.focus\:to-success\/90:focus{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.9)) var(--tw-gradient-to-position)}.focus\:to-success\/95:focus{--tw-gradient-to:var(--fallback-su,oklch(var(--su)/0.95)) var(--tw-gradient-to-position)}.focus\:to-warning:focus{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/1)) var(--tw-gradient-to-position)}.focus\:to-warning-content:focus{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/1)) var(--tw-gradient-to-position)}.focus\:to-warning-content\/0:focus{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0)) var(--tw-gradient-to-position)}.focus\:to-warning-content\/10:focus{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.1)) var(--tw-gradient-to-position)}.focus\:to-warning-content\/100:focus{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/1)) var(--tw-gradient-to-position)}.focus\:to-warning-content\/20:focus{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.2)) var(--tw-gradient-to-position)}.focus\:to-warning-content\/25:focus{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.25)) var(--tw-gradient-to-position)}.focus\:to-warning-content\/30:focus{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.3)) var(--tw-gradient-to-position)}.focus\:to-warning-content\/40:focus{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.4)) var(--tw-gradient-to-position)}.focus\:to-warning-content\/5:focus{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.05)) var(--tw-gradient-to-position)}.focus\:to-warning-content\/50:focus{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.5)) var(--tw-gradient-to-position)}.focus\:to-warning-content\/60:focus{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.6)) var(--tw-gradient-to-position)}.focus\:to-warning-content\/70:focus{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.7)) var(--tw-gradient-to-position)}.focus\:to-warning-content\/75:focus{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.75)) var(--tw-gradient-to-position)}.focus\:to-warning-content\/80:focus{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.8)) var(--tw-gradient-to-position)}.focus\:to-warning-content\/90:focus{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.9)) var(--tw-gradient-to-position)}.focus\:to-warning-content\/95:focus{--tw-gradient-to:var(--fallback-wac,oklch(var(--wac)/0.95)) var(--tw-gradient-to-position)}.focus\:to-warning\/0:focus{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0)) var(--tw-gradient-to-position)}.focus\:to-warning\/10:focus{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.1)) var(--tw-gradient-to-position)}.focus\:to-warning\/100:focus{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/1)) var(--tw-gradient-to-position)}.focus\:to-warning\/20:focus{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.2)) var(--tw-gradient-to-position)}.focus\:to-warning\/25:focus{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.25)) var(--tw-gradient-to-position)}.focus\:to-warning\/30:focus{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.3)) var(--tw-gradient-to-position)}.focus\:to-warning\/40:focus{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.4)) var(--tw-gradient-to-position)}.focus\:to-warning\/5:focus{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.05)) var(--tw-gradient-to-position)}.focus\:to-warning\/50:focus{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.5)) var(--tw-gradient-to-position)}.focus\:to-warning\/60:focus{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.6)) var(--tw-gradient-to-position)}.focus\:to-warning\/70:focus{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.7)) var(--tw-gradient-to-position)}.focus\:to-warning\/75:focus{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.75)) var(--tw-gradient-to-position)}.focus\:to-warning\/80:focus{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.8)) var(--tw-gradient-to-position)}.focus\:to-warning\/90:focus{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.9)) var(--tw-gradient-to-position)}.focus\:to-warning\/95:focus{--tw-gradient-to:var(--fallback-wa,oklch(var(--wa)/0.95)) var(--tw-gradient-to-position)}.focus\:stroke-accent:focus{stroke:var(--fallback-a,oklch(var(--a)/1))}.focus\:stroke-accent-content:focus{stroke:var(--fallback-ac,oklch(var(--ac)/1))}.focus\:stroke-accent-content\/0:focus{stroke:var(--fallback-ac,oklch(var(--ac)/0))}.focus\:stroke-accent-content\/10:focus{stroke:var(--fallback-ac,oklch(var(--ac)/0.1))}.focus\:stroke-accent-content\/100:focus{stroke:var(--fallback-ac,oklch(var(--ac)/1))}.focus\:stroke-accent-content\/20:focus{stroke:var(--fallback-ac,oklch(var(--ac)/0.2))}.focus\:stroke-accent-content\/25:focus{stroke:var(--fallback-ac,oklch(var(--ac)/0.25))}.focus\:stroke-accent-content\/30:focus{stroke:var(--fallback-ac,oklch(var(--ac)/0.3))}.focus\:stroke-accent-content\/40:focus{stroke:var(--fallback-ac,oklch(var(--ac)/0.4))}.focus\:stroke-accent-content\/5:focus{stroke:var(--fallback-ac,oklch(var(--ac)/0.05))}.focus\:stroke-accent-content\/50:focus{stroke:var(--fallback-ac,oklch(var(--ac)/0.5))}.focus\:stroke-accent-content\/60:focus{stroke:var(--fallback-ac,oklch(var(--ac)/0.6))}.focus\:stroke-accent-content\/70:focus{stroke:var(--fallback-ac,oklch(var(--ac)/0.7))}.focus\:stroke-accent-content\/75:focus{stroke:var(--fallback-ac,oklch(var(--ac)/0.75))}.focus\:stroke-accent-content\/80:focus{stroke:var(--fallback-ac,oklch(var(--ac)/0.8))}.focus\:stroke-accent-content\/90:focus{stroke:var(--fallback-ac,oklch(var(--ac)/0.9))}.focus\:stroke-accent-content\/95:focus{stroke:var(--fallback-ac,oklch(var(--ac)/0.95))}.focus\:stroke-accent\/0:focus{stroke:var(--fallback-a,oklch(var(--a)/0))}.focus\:stroke-accent\/10:focus{stroke:var(--fallback-a,oklch(var(--a)/0.1))}.focus\:stroke-accent\/100:focus{stroke:var(--fallback-a,oklch(var(--a)/1))}.focus\:stroke-accent\/20:focus{stroke:var(--fallback-a,oklch(var(--a)/0.2))}.focus\:stroke-accent\/25:focus{stroke:var(--fallback-a,oklch(var(--a)/0.25))}.focus\:stroke-accent\/30:focus{stroke:var(--fallback-a,oklch(var(--a)/0.3))}.focus\:stroke-accent\/40:focus{stroke:var(--fallback-a,oklch(var(--a)/0.4))}.focus\:stroke-accent\/5:focus{stroke:var(--fallback-a,oklch(var(--a)/0.05))}.focus\:stroke-accent\/50:focus{stroke:var(--fallback-a,oklch(var(--a)/0.5))}.focus\:stroke-accent\/60:focus{stroke:var(--fallback-a,oklch(var(--a)/0.6))}.focus\:stroke-accent\/70:focus{stroke:var(--fallback-a,oklch(var(--a)/0.7))}.focus\:stroke-accent\/75:focus{stroke:var(--fallback-a,oklch(var(--a)/0.75))}.focus\:stroke-accent\/80:focus{stroke:var(--fallback-a,oklch(var(--a)/0.8))}.focus\:stroke-accent\/90:focus{stroke:var(--fallback-a,oklch(var(--a)/0.9))}.focus\:stroke-accent\/95:focus{stroke:var(--fallback-a,oklch(var(--a)/0.95))}.focus\:stroke-base-100:focus{stroke:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:stroke-base-100\/0:focus{stroke:var(--fallback-b1,oklch(var(--b1)/0))}.focus\:stroke-base-100\/10:focus{stroke:var(--fallback-b1,oklch(var(--b1)/0.1))}.focus\:stroke-base-100\/100:focus{stroke:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:stroke-base-100\/20:focus{stroke:var(--fallback-b1,oklch(var(--b1)/0.2))}.focus\:stroke-base-100\/25:focus{stroke:var(--fallback-b1,oklch(var(--b1)/0.25))}.focus\:stroke-base-100\/30:focus{stroke:var(--fallback-b1,oklch(var(--b1)/0.3))}.focus\:stroke-base-100\/40:focus{stroke:var(--fallback-b1,oklch(var(--b1)/0.4))}.focus\:stroke-base-100\/5:focus{stroke:var(--fallback-b1,oklch(var(--b1)/0.05))}.focus\:stroke-base-100\/50:focus{stroke:var(--fallback-b1,oklch(var(--b1)/0.5))}.focus\:stroke-base-100\/60:focus{stroke:var(--fallback-b1,oklch(var(--b1)/0.6))}.focus\:stroke-base-100\/70:focus{stroke:var(--fallback-b1,oklch(var(--b1)/0.7))}.focus\:stroke-base-100\/75:focus{stroke:var(--fallback-b1,oklch(var(--b1)/0.75))}.focus\:stroke-base-100\/80:focus{stroke:var(--fallback-b1,oklch(var(--b1)/0.8))}.focus\:stroke-base-100\/90:focus{stroke:var(--fallback-b1,oklch(var(--b1)/0.9))}.focus\:stroke-base-100\/95:focus{stroke:var(--fallback-b1,oklch(var(--b1)/0.95))}.focus\:stroke-base-200:focus{stroke:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:stroke-base-200\/0:focus{stroke:var(--fallback-b2,oklch(var(--b2)/0))}.focus\:stroke-base-200\/10:focus{stroke:var(--fallback-b2,oklch(var(--b2)/0.1))}.focus\:stroke-base-200\/100:focus{stroke:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:stroke-base-200\/20:focus{stroke:var(--fallback-b2,oklch(var(--b2)/0.2))}.focus\:stroke-base-200\/25:focus{stroke:var(--fallback-b2,oklch(var(--b2)/0.25))}.focus\:stroke-base-200\/30:focus{stroke:var(--fallback-b2,oklch(var(--b2)/0.3))}.focus\:stroke-base-200\/40:focus{stroke:var(--fallback-b2,oklch(var(--b2)/0.4))}.focus\:stroke-base-200\/5:focus{stroke:var(--fallback-b2,oklch(var(--b2)/0.05))}.focus\:stroke-base-200\/50:focus{stroke:var(--fallback-b2,oklch(var(--b2)/0.5))}.focus\:stroke-base-200\/60:focus{stroke:var(--fallback-b2,oklch(var(--b2)/0.6))}.focus\:stroke-base-200\/70:focus{stroke:var(--fallback-b2,oklch(var(--b2)/0.7))}.focus\:stroke-base-200\/75:focus{stroke:var(--fallback-b2,oklch(var(--b2)/0.75))}.focus\:stroke-base-200\/80:focus{stroke:var(--fallback-b2,oklch(var(--b2)/0.8))}.focus\:stroke-base-200\/90:focus{stroke:var(--fallback-b2,oklch(var(--b2)/0.9))}.focus\:stroke-base-200\/95:focus{stroke:var(--fallback-b2,oklch(var(--b2)/0.95))}.focus\:stroke-base-300:focus{stroke:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:stroke-base-300\/0:focus{stroke:var(--fallback-b3,oklch(var(--b3)/0))}.focus\:stroke-base-300\/10:focus{stroke:var(--fallback-b3,oklch(var(--b3)/0.1))}.focus\:stroke-base-300\/100:focus{stroke:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:stroke-base-300\/20:focus{stroke:var(--fallback-b3,oklch(var(--b3)/0.2))}.focus\:stroke-base-300\/25:focus{stroke:var(--fallback-b3,oklch(var(--b3)/0.25))}.focus\:stroke-base-300\/30:focus{stroke:var(--fallback-b3,oklch(var(--b3)/0.3))}.focus\:stroke-base-300\/40:focus{stroke:var(--fallback-b3,oklch(var(--b3)/0.4))}.focus\:stroke-base-300\/5:focus{stroke:var(--fallback-b3,oklch(var(--b3)/0.05))}.focus\:stroke-base-300\/50:focus{stroke:var(--fallback-b3,oklch(var(--b3)/0.5))}.focus\:stroke-base-300\/60:focus{stroke:var(--fallback-b3,oklch(var(--b3)/0.6))}.focus\:stroke-base-300\/70:focus{stroke:var(--fallback-b3,oklch(var(--b3)/0.7))}.focus\:stroke-base-300\/75:focus{stroke:var(--fallback-b3,oklch(var(--b3)/0.75))}.focus\:stroke-base-300\/80:focus{stroke:var(--fallback-b3,oklch(var(--b3)/0.8))}.focus\:stroke-base-300\/90:focus{stroke:var(--fallback-b3,oklch(var(--b3)/0.9))}.focus\:stroke-base-300\/95:focus{stroke:var(--fallback-b3,oklch(var(--b3)/0.95))}.focus\:stroke-base-content:focus{stroke:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:stroke-base-content\/0:focus{stroke:var(--fallback-bc,oklch(var(--bc)/0))}.focus\:stroke-base-content\/10:focus{stroke:var(--fallback-bc,oklch(var(--bc)/0.1))}.focus\:stroke-base-content\/100:focus{stroke:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:stroke-base-content\/20:focus{stroke:var(--fallback-bc,oklch(var(--bc)/0.2))}.focus\:stroke-base-content\/25:focus{stroke:var(--fallback-bc,oklch(var(--bc)/0.25))}.focus\:stroke-base-content\/30:focus{stroke:var(--fallback-bc,oklch(var(--bc)/0.3))}.focus\:stroke-base-content\/40:focus{stroke:var(--fallback-bc,oklch(var(--bc)/0.4))}.focus\:stroke-base-content\/5:focus{stroke:var(--fallback-bc,oklch(var(--bc)/0.05))}.focus\:stroke-base-content\/50:focus{stroke:var(--fallback-bc,oklch(var(--bc)/0.5))}.focus\:stroke-base-content\/60:focus{stroke:var(--fallback-bc,oklch(var(--bc)/0.6))}.focus\:stroke-base-content\/70:focus{stroke:var(--fallback-bc,oklch(var(--bc)/0.7))}.focus\:stroke-base-content\/75:focus{stroke:var(--fallback-bc,oklch(var(--bc)/0.75))}.focus\:stroke-base-content\/80:focus{stroke:var(--fallback-bc,oklch(var(--bc)/0.8))}.focus\:stroke-base-content\/90:focus{stroke:var(--fallback-bc,oklch(var(--bc)/0.9))}.focus\:stroke-base-content\/95:focus{stroke:var(--fallback-bc,oklch(var(--bc)/0.95))}.focus\:stroke-error:focus{stroke:var(--fallback-er,oklch(var(--er)/1))}.focus\:stroke-error-content:focus{stroke:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:stroke-error-content\/0:focus{stroke:var(--fallback-erc,oklch(var(--erc)/0))}.focus\:stroke-error-content\/10:focus{stroke:var(--fallback-erc,oklch(var(--erc)/0.1))}.focus\:stroke-error-content\/100:focus{stroke:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:stroke-error-content\/20:focus{stroke:var(--fallback-erc,oklch(var(--erc)/0.2))}.focus\:stroke-error-content\/25:focus{stroke:var(--fallback-erc,oklch(var(--erc)/0.25))}.focus\:stroke-error-content\/30:focus{stroke:var(--fallback-erc,oklch(var(--erc)/0.3))}.focus\:stroke-error-content\/40:focus{stroke:var(--fallback-erc,oklch(var(--erc)/0.4))}.focus\:stroke-error-content\/5:focus{stroke:var(--fallback-erc,oklch(var(--erc)/0.05))}.focus\:stroke-error-content\/50:focus{stroke:var(--fallback-erc,oklch(var(--erc)/0.5))}.focus\:stroke-error-content\/60:focus{stroke:var(--fallback-erc,oklch(var(--erc)/0.6))}.focus\:stroke-error-content\/70:focus{stroke:var(--fallback-erc,oklch(var(--erc)/0.7))}.focus\:stroke-error-content\/75:focus{stroke:var(--fallback-erc,oklch(var(--erc)/0.75))}.focus\:stroke-error-content\/80:focus{stroke:var(--fallback-erc,oklch(var(--erc)/0.8))}.focus\:stroke-error-content\/90:focus{stroke:var(--fallback-erc,oklch(var(--erc)/0.9))}.focus\:stroke-error-content\/95:focus{stroke:var(--fallback-erc,oklch(var(--erc)/0.95))}.focus\:stroke-error\/0:focus{stroke:var(--fallback-er,oklch(var(--er)/0))}.focus\:stroke-error\/10:focus{stroke:var(--fallback-er,oklch(var(--er)/0.1))}.focus\:stroke-error\/100:focus{stroke:var(--fallback-er,oklch(var(--er)/1))}.focus\:stroke-error\/20:focus{stroke:var(--fallback-er,oklch(var(--er)/0.2))}.focus\:stroke-error\/25:focus{stroke:var(--fallback-er,oklch(var(--er)/0.25))}.focus\:stroke-error\/30:focus{stroke:var(--fallback-er,oklch(var(--er)/0.3))}.focus\:stroke-error\/40:focus{stroke:var(--fallback-er,oklch(var(--er)/0.4))}.focus\:stroke-error\/5:focus{stroke:var(--fallback-er,oklch(var(--er)/0.05))}.focus\:stroke-error\/50:focus{stroke:var(--fallback-er,oklch(var(--er)/0.5))}.focus\:stroke-error\/60:focus{stroke:var(--fallback-er,oklch(var(--er)/0.6))}.focus\:stroke-error\/70:focus{stroke:var(--fallback-er,oklch(var(--er)/0.7))}.focus\:stroke-error\/75:focus{stroke:var(--fallback-er,oklch(var(--er)/0.75))}.focus\:stroke-error\/80:focus{stroke:var(--fallback-er,oklch(var(--er)/0.8))}.focus\:stroke-error\/90:focus{stroke:var(--fallback-er,oklch(var(--er)/0.9))}.focus\:stroke-error\/95:focus{stroke:var(--fallback-er,oklch(var(--er)/0.95))}.focus\:stroke-info:focus{stroke:var(--fallback-in,oklch(var(--in)/1))}.focus\:stroke-info-content:focus{stroke:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:stroke-info-content\/0:focus{stroke:var(--fallback-inc,oklch(var(--inc)/0))}.focus\:stroke-info-content\/10:focus{stroke:var(--fallback-inc,oklch(var(--inc)/0.1))}.focus\:stroke-info-content\/100:focus{stroke:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:stroke-info-content\/20:focus{stroke:var(--fallback-inc,oklch(var(--inc)/0.2))}.focus\:stroke-info-content\/25:focus{stroke:var(--fallback-inc,oklch(var(--inc)/0.25))}.focus\:stroke-info-content\/30:focus{stroke:var(--fallback-inc,oklch(var(--inc)/0.3))}.focus\:stroke-info-content\/40:focus{stroke:var(--fallback-inc,oklch(var(--inc)/0.4))}.focus\:stroke-info-content\/5:focus{stroke:var(--fallback-inc,oklch(var(--inc)/0.05))}.focus\:stroke-info-content\/50:focus{stroke:var(--fallback-inc,oklch(var(--inc)/0.5))}.focus\:stroke-info-content\/60:focus{stroke:var(--fallback-inc,oklch(var(--inc)/0.6))}.focus\:stroke-info-content\/70:focus{stroke:var(--fallback-inc,oklch(var(--inc)/0.7))}.focus\:stroke-info-content\/75:focus{stroke:var(--fallback-inc,oklch(var(--inc)/0.75))}.focus\:stroke-info-content\/80:focus{stroke:var(--fallback-inc,oklch(var(--inc)/0.8))}.focus\:stroke-info-content\/90:focus{stroke:var(--fallback-inc,oklch(var(--inc)/0.9))}.focus\:stroke-info-content\/95:focus{stroke:var(--fallback-inc,oklch(var(--inc)/0.95))}.focus\:stroke-info\/0:focus{stroke:var(--fallback-in,oklch(var(--in)/0))}.focus\:stroke-info\/10:focus{stroke:var(--fallback-in,oklch(var(--in)/0.1))}.focus\:stroke-info\/100:focus{stroke:var(--fallback-in,oklch(var(--in)/1))}.focus\:stroke-info\/20:focus{stroke:var(--fallback-in,oklch(var(--in)/0.2))}.focus\:stroke-info\/25:focus{stroke:var(--fallback-in,oklch(var(--in)/0.25))}.focus\:stroke-info\/30:focus{stroke:var(--fallback-in,oklch(var(--in)/0.3))}.focus\:stroke-info\/40:focus{stroke:var(--fallback-in,oklch(var(--in)/0.4))}.focus\:stroke-info\/5:focus{stroke:var(--fallback-in,oklch(var(--in)/0.05))}.focus\:stroke-info\/50:focus{stroke:var(--fallback-in,oklch(var(--in)/0.5))}.focus\:stroke-info\/60:focus{stroke:var(--fallback-in,oklch(var(--in)/0.6))}.focus\:stroke-info\/70:focus{stroke:var(--fallback-in,oklch(var(--in)/0.7))}.focus\:stroke-info\/75:focus{stroke:var(--fallback-in,oklch(var(--in)/0.75))}.focus\:stroke-info\/80:focus{stroke:var(--fallback-in,oklch(var(--in)/0.8))}.focus\:stroke-info\/90:focus{stroke:var(--fallback-in,oklch(var(--in)/0.9))}.focus\:stroke-info\/95:focus{stroke:var(--fallback-in,oklch(var(--in)/0.95))}.focus\:stroke-neutral:focus{stroke:var(--fallback-n,oklch(var(--n)/1))}.focus\:stroke-neutral-content:focus{stroke:var(--fallback-nc,oklch(var(--nc)/1))}.focus\:stroke-neutral-content\/0:focus{stroke:var(--fallback-nc,oklch(var(--nc)/0))}.focus\:stroke-neutral-content\/10:focus{stroke:var(--fallback-nc,oklch(var(--nc)/0.1))}.focus\:stroke-neutral-content\/100:focus{stroke:var(--fallback-nc,oklch(var(--nc)/1))}.focus\:stroke-neutral-content\/20:focus{stroke:var(--fallback-nc,oklch(var(--nc)/0.2))}.focus\:stroke-neutral-content\/25:focus{stroke:var(--fallback-nc,oklch(var(--nc)/0.25))}.focus\:stroke-neutral-content\/30:focus{stroke:var(--fallback-nc,oklch(var(--nc)/0.3))}.focus\:stroke-neutral-content\/40:focus{stroke:var(--fallback-nc,oklch(var(--nc)/0.4))}.focus\:stroke-neutral-content\/5:focus{stroke:var(--fallback-nc,oklch(var(--nc)/0.05))}.focus\:stroke-neutral-content\/50:focus{stroke:var(--fallback-nc,oklch(var(--nc)/0.5))}.focus\:stroke-neutral-content\/60:focus{stroke:var(--fallback-nc,oklch(var(--nc)/0.6))}.focus\:stroke-neutral-content\/70:focus{stroke:var(--fallback-nc,oklch(var(--nc)/0.7))}.focus\:stroke-neutral-content\/75:focus{stroke:var(--fallback-nc,oklch(var(--nc)/0.75))}.focus\:stroke-neutral-content\/80:focus{stroke:var(--fallback-nc,oklch(var(--nc)/0.8))}.focus\:stroke-neutral-content\/90:focus{stroke:var(--fallback-nc,oklch(var(--nc)/0.9))}.focus\:stroke-neutral-content\/95:focus{stroke:var(--fallback-nc,oklch(var(--nc)/0.95))}.focus\:stroke-neutral\/0:focus{stroke:var(--fallback-n,oklch(var(--n)/0))}.focus\:stroke-neutral\/10:focus{stroke:var(--fallback-n,oklch(var(--n)/0.1))}.focus\:stroke-neutral\/100:focus{stroke:var(--fallback-n,oklch(var(--n)/1))}.focus\:stroke-neutral\/20:focus{stroke:var(--fallback-n,oklch(var(--n)/0.2))}.focus\:stroke-neutral\/25:focus{stroke:var(--fallback-n,oklch(var(--n)/0.25))}.focus\:stroke-neutral\/30:focus{stroke:var(--fallback-n,oklch(var(--n)/0.3))}.focus\:stroke-neutral\/40:focus{stroke:var(--fallback-n,oklch(var(--n)/0.4))}.focus\:stroke-neutral\/5:focus{stroke:var(--fallback-n,oklch(var(--n)/0.05))}.focus\:stroke-neutral\/50:focus{stroke:var(--fallback-n,oklch(var(--n)/0.5))}.focus\:stroke-neutral\/60:focus{stroke:var(--fallback-n,oklch(var(--n)/0.6))}.focus\:stroke-neutral\/70:focus{stroke:var(--fallback-n,oklch(var(--n)/0.7))}.focus\:stroke-neutral\/75:focus{stroke:var(--fallback-n,oklch(var(--n)/0.75))}.focus\:stroke-neutral\/80:focus{stroke:var(--fallback-n,oklch(var(--n)/0.8))}.focus\:stroke-neutral\/90:focus{stroke:var(--fallback-n,oklch(var(--n)/0.9))}.focus\:stroke-neutral\/95:focus{stroke:var(--fallback-n,oklch(var(--n)/0.95))}.focus\:stroke-primary:focus{stroke:var(--fallback-p,oklch(var(--p)/1))}.focus\:stroke-primary-content:focus{stroke:var(--fallback-pc,oklch(var(--pc)/1))}.focus\:stroke-primary-content\/0:focus{stroke:var(--fallback-pc,oklch(var(--pc)/0))}.focus\:stroke-primary-content\/10:focus{stroke:var(--fallback-pc,oklch(var(--pc)/0.1))}.focus\:stroke-primary-content\/100:focus{stroke:var(--fallback-pc,oklch(var(--pc)/1))}.focus\:stroke-primary-content\/20:focus{stroke:var(--fallback-pc,oklch(var(--pc)/0.2))}.focus\:stroke-primary-content\/25:focus{stroke:var(--fallback-pc,oklch(var(--pc)/0.25))}.focus\:stroke-primary-content\/30:focus{stroke:var(--fallback-pc,oklch(var(--pc)/0.3))}.focus\:stroke-primary-content\/40:focus{stroke:var(--fallback-pc,oklch(var(--pc)/0.4))}.focus\:stroke-primary-content\/5:focus{stroke:var(--fallback-pc,oklch(var(--pc)/0.05))}.focus\:stroke-primary-content\/50:focus{stroke:var(--fallback-pc,oklch(var(--pc)/0.5))}.focus\:stroke-primary-content\/60:focus{stroke:var(--fallback-pc,oklch(var(--pc)/0.6))}.focus\:stroke-primary-content\/70:focus{stroke:var(--fallback-pc,oklch(var(--pc)/0.7))}.focus\:stroke-primary-content\/75:focus{stroke:var(--fallback-pc,oklch(var(--pc)/0.75))}.focus\:stroke-primary-content\/80:focus{stroke:var(--fallback-pc,oklch(var(--pc)/0.8))}.focus\:stroke-primary-content\/90:focus{stroke:var(--fallback-pc,oklch(var(--pc)/0.9))}.focus\:stroke-primary-content\/95:focus{stroke:var(--fallback-pc,oklch(var(--pc)/0.95))}.focus\:stroke-primary\/0:focus{stroke:var(--fallback-p,oklch(var(--p)/0))}.focus\:stroke-primary\/10:focus{stroke:var(--fallback-p,oklch(var(--p)/0.1))}.focus\:stroke-primary\/100:focus{stroke:var(--fallback-p,oklch(var(--p)/1))}.focus\:stroke-primary\/20:focus{stroke:var(--fallback-p,oklch(var(--p)/0.2))}.focus\:stroke-primary\/25:focus{stroke:var(--fallback-p,oklch(var(--p)/0.25))}.focus\:stroke-primary\/30:focus{stroke:var(--fallback-p,oklch(var(--p)/0.3))}.focus\:stroke-primary\/40:focus{stroke:var(--fallback-p,oklch(var(--p)/0.4))}.focus\:stroke-primary\/5:focus{stroke:var(--fallback-p,oklch(var(--p)/0.05))}.focus\:stroke-primary\/50:focus{stroke:var(--fallback-p,oklch(var(--p)/0.5))}.focus\:stroke-primary\/60:focus{stroke:var(--fallback-p,oklch(var(--p)/0.6))}.focus\:stroke-primary\/70:focus{stroke:var(--fallback-p,oklch(var(--p)/0.7))}.focus\:stroke-primary\/75:focus{stroke:var(--fallback-p,oklch(var(--p)/0.75))}.focus\:stroke-primary\/80:focus{stroke:var(--fallback-p,oklch(var(--p)/0.8))}.focus\:stroke-primary\/90:focus{stroke:var(--fallback-p,oklch(var(--p)/0.9))}.focus\:stroke-primary\/95:focus{stroke:var(--fallback-p,oklch(var(--p)/0.95))}.focus\:stroke-secondary:focus{stroke:var(--fallback-s,oklch(var(--s)/1))}.focus\:stroke-secondary-content:focus{stroke:var(--fallback-sc,oklch(var(--sc)/1))}.focus\:stroke-secondary-content\/0:focus{stroke:var(--fallback-sc,oklch(var(--sc)/0))}.focus\:stroke-secondary-content\/10:focus{stroke:var(--fallback-sc,oklch(var(--sc)/0.1))}.focus\:stroke-secondary-content\/100:focus{stroke:var(--fallback-sc,oklch(var(--sc)/1))}.focus\:stroke-secondary-content\/20:focus{stroke:var(--fallback-sc,oklch(var(--sc)/0.2))}.focus\:stroke-secondary-content\/25:focus{stroke:var(--fallback-sc,oklch(var(--sc)/0.25))}.focus\:stroke-secondary-content\/30:focus{stroke:var(--fallback-sc,oklch(var(--sc)/0.3))}.focus\:stroke-secondary-content\/40:focus{stroke:var(--fallback-sc,oklch(var(--sc)/0.4))}.focus\:stroke-secondary-content\/5:focus{stroke:var(--fallback-sc,oklch(var(--sc)/0.05))}.focus\:stroke-secondary-content\/50:focus{stroke:var(--fallback-sc,oklch(var(--sc)/0.5))}.focus\:stroke-secondary-content\/60:focus{stroke:var(--fallback-sc,oklch(var(--sc)/0.6))}.focus\:stroke-secondary-content\/70:focus{stroke:var(--fallback-sc,oklch(var(--sc)/0.7))}.focus\:stroke-secondary-content\/75:focus{stroke:var(--fallback-sc,oklch(var(--sc)/0.75))}.focus\:stroke-secondary-content\/80:focus{stroke:var(--fallback-sc,oklch(var(--sc)/0.8))}.focus\:stroke-secondary-content\/90:focus{stroke:var(--fallback-sc,oklch(var(--sc)/0.9))}.focus\:stroke-secondary-content\/95:focus{stroke:var(--fallback-sc,oklch(var(--sc)/0.95))}.focus\:stroke-secondary\/0:focus{stroke:var(--fallback-s,oklch(var(--s)/0))}.focus\:stroke-secondary\/10:focus{stroke:var(--fallback-s,oklch(var(--s)/0.1))}.focus\:stroke-secondary\/100:focus{stroke:var(--fallback-s,oklch(var(--s)/1))}.focus\:stroke-secondary\/20:focus{stroke:var(--fallback-s,oklch(var(--s)/0.2))}.focus\:stroke-secondary\/25:focus{stroke:var(--fallback-s,oklch(var(--s)/0.25))}.focus\:stroke-secondary\/30:focus{stroke:var(--fallback-s,oklch(var(--s)/0.3))}.focus\:stroke-secondary\/40:focus{stroke:var(--fallback-s,oklch(var(--s)/0.4))}.focus\:stroke-secondary\/5:focus{stroke:var(--fallback-s,oklch(var(--s)/0.05))}.focus\:stroke-secondary\/50:focus{stroke:var(--fallback-s,oklch(var(--s)/0.5))}.focus\:stroke-secondary\/60:focus{stroke:var(--fallback-s,oklch(var(--s)/0.6))}.focus\:stroke-secondary\/70:focus{stroke:var(--fallback-s,oklch(var(--s)/0.7))}.focus\:stroke-secondary\/75:focus{stroke:var(--fallback-s,oklch(var(--s)/0.75))}.focus\:stroke-secondary\/80:focus{stroke:var(--fallback-s,oklch(var(--s)/0.8))}.focus\:stroke-secondary\/90:focus{stroke:var(--fallback-s,oklch(var(--s)/0.9))}.focus\:stroke-secondary\/95:focus{stroke:var(--fallback-s,oklch(var(--s)/0.95))}.focus\:stroke-success:focus{stroke:var(--fallback-su,oklch(var(--su)/1))}.focus\:stroke-success-content:focus{stroke:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:stroke-success-content\/0:focus{stroke:var(--fallback-suc,oklch(var(--suc)/0))}.focus\:stroke-success-content\/10:focus{stroke:var(--fallback-suc,oklch(var(--suc)/0.1))}.focus\:stroke-success-content\/100:focus{stroke:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:stroke-success-content\/20:focus{stroke:var(--fallback-suc,oklch(var(--suc)/0.2))}.focus\:stroke-success-content\/25:focus{stroke:var(--fallback-suc,oklch(var(--suc)/0.25))}.focus\:stroke-success-content\/30:focus{stroke:var(--fallback-suc,oklch(var(--suc)/0.3))}.focus\:stroke-success-content\/40:focus{stroke:var(--fallback-suc,oklch(var(--suc)/0.4))}.focus\:stroke-success-content\/5:focus{stroke:var(--fallback-suc,oklch(var(--suc)/0.05))}.focus\:stroke-success-content\/50:focus{stroke:var(--fallback-suc,oklch(var(--suc)/0.5))}.focus\:stroke-success-content\/60:focus{stroke:var(--fallback-suc,oklch(var(--suc)/0.6))}.focus\:stroke-success-content\/70:focus{stroke:var(--fallback-suc,oklch(var(--suc)/0.7))}.focus\:stroke-success-content\/75:focus{stroke:var(--fallback-suc,oklch(var(--suc)/0.75))}.focus\:stroke-success-content\/80:focus{stroke:var(--fallback-suc,oklch(var(--suc)/0.8))}.focus\:stroke-success-content\/90:focus{stroke:var(--fallback-suc,oklch(var(--suc)/0.9))}.focus\:stroke-success-content\/95:focus{stroke:var(--fallback-suc,oklch(var(--suc)/0.95))}.focus\:stroke-success\/0:focus{stroke:var(--fallback-su,oklch(var(--su)/0))}.focus\:stroke-success\/10:focus{stroke:var(--fallback-su,oklch(var(--su)/0.1))}.focus\:stroke-success\/100:focus{stroke:var(--fallback-su,oklch(var(--su)/1))}.focus\:stroke-success\/20:focus{stroke:var(--fallback-su,oklch(var(--su)/0.2))}.focus\:stroke-success\/25:focus{stroke:var(--fallback-su,oklch(var(--su)/0.25))}.focus\:stroke-success\/30:focus{stroke:var(--fallback-su,oklch(var(--su)/0.3))}.focus\:stroke-success\/40:focus{stroke:var(--fallback-su,oklch(var(--su)/0.4))}.focus\:stroke-success\/5:focus{stroke:var(--fallback-su,oklch(var(--su)/0.05))}.focus\:stroke-success\/50:focus{stroke:var(--fallback-su,oklch(var(--su)/0.5))}.focus\:stroke-success\/60:focus{stroke:var(--fallback-su,oklch(var(--su)/0.6))}.focus\:stroke-success\/70:focus{stroke:var(--fallback-su,oklch(var(--su)/0.7))}.focus\:stroke-success\/75:focus{stroke:var(--fallback-su,oklch(var(--su)/0.75))}.focus\:stroke-success\/80:focus{stroke:var(--fallback-su,oklch(var(--su)/0.8))}.focus\:stroke-success\/90:focus{stroke:var(--fallback-su,oklch(var(--su)/0.9))}.focus\:stroke-success\/95:focus{stroke:var(--fallback-su,oklch(var(--su)/0.95))}.focus\:stroke-warning:focus{stroke:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:stroke-warning-content:focus{stroke:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:stroke-warning-content\/0:focus{stroke:var(--fallback-wac,oklch(var(--wac)/0))}.focus\:stroke-warning-content\/10:focus{stroke:var(--fallback-wac,oklch(var(--wac)/0.1))}.focus\:stroke-warning-content\/100:focus{stroke:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:stroke-warning-content\/20:focus{stroke:var(--fallback-wac,oklch(var(--wac)/0.2))}.focus\:stroke-warning-content\/25:focus{stroke:var(--fallback-wac,oklch(var(--wac)/0.25))}.focus\:stroke-warning-content\/30:focus{stroke:var(--fallback-wac,oklch(var(--wac)/0.3))}.focus\:stroke-warning-content\/40:focus{stroke:var(--fallback-wac,oklch(var(--wac)/0.4))}.focus\:stroke-warning-content\/5:focus{stroke:var(--fallback-wac,oklch(var(--wac)/0.05))}.focus\:stroke-warning-content\/50:focus{stroke:var(--fallback-wac,oklch(var(--wac)/0.5))}.focus\:stroke-warning-content\/60:focus{stroke:var(--fallback-wac,oklch(var(--wac)/0.6))}.focus\:stroke-warning-content\/70:focus{stroke:var(--fallback-wac,oklch(var(--wac)/0.7))}.focus\:stroke-warning-content\/75:focus{stroke:var(--fallback-wac,oklch(var(--wac)/0.75))}.focus\:stroke-warning-content\/80:focus{stroke:var(--fallback-wac,oklch(var(--wac)/0.8))}.focus\:stroke-warning-content\/90:focus{stroke:var(--fallback-wac,oklch(var(--wac)/0.9))}.focus\:stroke-warning-content\/95:focus{stroke:var(--fallback-wac,oklch(var(--wac)/0.95))}.focus\:stroke-warning\/0:focus{stroke:var(--fallback-wa,oklch(var(--wa)/0))}.focus\:stroke-warning\/10:focus{stroke:var(--fallback-wa,oklch(var(--wa)/0.1))}.focus\:stroke-warning\/100:focus{stroke:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:stroke-warning\/20:focus{stroke:var(--fallback-wa,oklch(var(--wa)/0.2))}.focus\:stroke-warning\/25:focus{stroke:var(--fallback-wa,oklch(var(--wa)/0.25))}.focus\:stroke-warning\/30:focus{stroke:var(--fallback-wa,oklch(var(--wa)/0.3))}.focus\:stroke-warning\/40:focus{stroke:var(--fallback-wa,oklch(var(--wa)/0.4))}.focus\:stroke-warning\/5:focus{stroke:var(--fallback-wa,oklch(var(--wa)/0.05))}.focus\:stroke-warning\/50:focus{stroke:var(--fallback-wa,oklch(var(--wa)/0.5))}.focus\:stroke-warning\/60:focus{stroke:var(--fallback-wa,oklch(var(--wa)/0.6))}.focus\:stroke-warning\/70:focus{stroke:var(--fallback-wa,oklch(var(--wa)/0.7))}.focus\:stroke-warning\/75:focus{stroke:var(--fallback-wa,oklch(var(--wa)/0.75))}.focus\:stroke-warning\/80:focus{stroke:var(--fallback-wa,oklch(var(--wa)/0.8))}.focus\:stroke-warning\/90:focus{stroke:var(--fallback-wa,oklch(var(--wa)/0.9))}.focus\:stroke-warning\/95:focus{stroke:var(--fallback-wa,oklch(var(--wa)/0.95))}.focus\:text-accent:focus{color:var(--fallback-a,oklch(var(--a)/1))}.focus\:text-accent-content:focus{color:var(--fallback-ac,oklch(var(--ac)/1))}.focus\:text-accent-content\/0:focus{color:var(--fallback-ac,oklch(var(--ac)/0))}.focus\:text-accent-content\/10:focus{color:var(--fallback-ac,oklch(var(--ac)/.1))}.focus\:text-accent-content\/100:focus{color:var(--fallback-ac,oklch(var(--ac)/1))}.focus\:text-accent-content\/20:focus{color:var(--fallback-ac,oklch(var(--ac)/.2))}.focus\:text-accent-content\/25:focus{color:var(--fallback-ac,oklch(var(--ac)/.25))}.focus\:text-accent-content\/30:focus{color:var(--fallback-ac,oklch(var(--ac)/.3))}.focus\:text-accent-content\/40:focus{color:var(--fallback-ac,oklch(var(--ac)/.4))}.focus\:text-accent-content\/5:focus{color:var(--fallback-ac,oklch(var(--ac)/.05))}.focus\:text-accent-content\/50:focus{color:var(--fallback-ac,oklch(var(--ac)/.5))}.focus\:text-accent-content\/60:focus{color:var(--fallback-ac,oklch(var(--ac)/.6))}.focus\:text-accent-content\/70:focus{color:var(--fallback-ac,oklch(var(--ac)/.7))}.focus\:text-accent-content\/75:focus{color:var(--fallback-ac,oklch(var(--ac)/.75))}.focus\:text-accent-content\/80:focus{color:var(--fallback-ac,oklch(var(--ac)/.8))}.focus\:text-accent-content\/90:focus{color:var(--fallback-ac,oklch(var(--ac)/.9))}.focus\:text-accent-content\/95:focus{color:var(--fallback-ac,oklch(var(--ac)/.95))}.focus\:text-accent\/0:focus{color:var(--fallback-a,oklch(var(--a)/0))}.focus\:text-accent\/10:focus{color:var(--fallback-a,oklch(var(--a)/.1))}.focus\:text-accent\/100:focus{color:var(--fallback-a,oklch(var(--a)/1))}.focus\:text-accent\/20:focus{color:var(--fallback-a,oklch(var(--a)/.2))}.focus\:text-accent\/25:focus{color:var(--fallback-a,oklch(var(--a)/.25))}.focus\:text-accent\/30:focus{color:var(--fallback-a,oklch(var(--a)/.3))}.focus\:text-accent\/40:focus{color:var(--fallback-a,oklch(var(--a)/.4))}.focus\:text-accent\/5:focus{color:var(--fallback-a,oklch(var(--a)/.05))}.focus\:text-accent\/50:focus{color:var(--fallback-a,oklch(var(--a)/.5))}.focus\:text-accent\/60:focus{color:var(--fallback-a,oklch(var(--a)/.6))}.focus\:text-accent\/70:focus{color:var(--fallback-a,oklch(var(--a)/.7))}.focus\:text-accent\/75:focus{color:var(--fallback-a,oklch(var(--a)/.75))}.focus\:text-accent\/80:focus{color:var(--fallback-a,oklch(var(--a)/.8))}.focus\:text-accent\/90:focus{color:var(--fallback-a,oklch(var(--a)/.9))}.focus\:text-accent\/95:focus{color:var(--fallback-a,oklch(var(--a)/.95))}.focus\:text-base-100:focus{color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:text-base-100\/0:focus{color:var(--fallback-b1,oklch(var(--b1)/0))}.focus\:text-base-100\/10:focus{color:var(--fallback-b1,oklch(var(--b1)/.1))}.focus\:text-base-100\/100:focus{color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:text-base-100\/20:focus{color:var(--fallback-b1,oklch(var(--b1)/.2))}.focus\:text-base-100\/25:focus{color:var(--fallback-b1,oklch(var(--b1)/.25))}.focus\:text-base-100\/30:focus{color:var(--fallback-b1,oklch(var(--b1)/.3))}.focus\:text-base-100\/40:focus{color:var(--fallback-b1,oklch(var(--b1)/.4))}.focus\:text-base-100\/5:focus{color:var(--fallback-b1,oklch(var(--b1)/.05))}.focus\:text-base-100\/50:focus{color:var(--fallback-b1,oklch(var(--b1)/.5))}.focus\:text-base-100\/60:focus{color:var(--fallback-b1,oklch(var(--b1)/.6))}.focus\:text-base-100\/70:focus{color:var(--fallback-b1,oklch(var(--b1)/.7))}.focus\:text-base-100\/75:focus{color:var(--fallback-b1,oklch(var(--b1)/.75))}.focus\:text-base-100\/80:focus{color:var(--fallback-b1,oklch(var(--b1)/.8))}.focus\:text-base-100\/90:focus{color:var(--fallback-b1,oklch(var(--b1)/.9))}.focus\:text-base-100\/95:focus{color:var(--fallback-b1,oklch(var(--b1)/.95))}.focus\:text-base-200:focus{color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:text-base-200\/0:focus{color:var(--fallback-b2,oklch(var(--b2)/0))}.focus\:text-base-200\/10:focus{color:var(--fallback-b2,oklch(var(--b2)/.1))}.focus\:text-base-200\/100:focus{color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:text-base-200\/20:focus{color:var(--fallback-b2,oklch(var(--b2)/.2))}.focus\:text-base-200\/25:focus{color:var(--fallback-b2,oklch(var(--b2)/.25))}.focus\:text-base-200\/30:focus{color:var(--fallback-b2,oklch(var(--b2)/.3))}.focus\:text-base-200\/40:focus{color:var(--fallback-b2,oklch(var(--b2)/.4))}.focus\:text-base-200\/5:focus{color:var(--fallback-b2,oklch(var(--b2)/.05))}.focus\:text-base-200\/50:focus{color:var(--fallback-b2,oklch(var(--b2)/.5))}.focus\:text-base-200\/60:focus{color:var(--fallback-b2,oklch(var(--b2)/.6))}.focus\:text-base-200\/70:focus{color:var(--fallback-b2,oklch(var(--b2)/.7))}.focus\:text-base-200\/75:focus{color:var(--fallback-b2,oklch(var(--b2)/.75))}.focus\:text-base-200\/80:focus{color:var(--fallback-b2,oklch(var(--b2)/.8))}.focus\:text-base-200\/90:focus{color:var(--fallback-b2,oklch(var(--b2)/.9))}.focus\:text-base-200\/95:focus{color:var(--fallback-b2,oklch(var(--b2)/.95))}.focus\:text-base-300:focus{color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:text-base-300\/0:focus{color:var(--fallback-b3,oklch(var(--b3)/0))}.focus\:text-base-300\/10:focus{color:var(--fallback-b3,oklch(var(--b3)/.1))}.focus\:text-base-300\/100:focus{color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:text-base-300\/20:focus{color:var(--fallback-b3,oklch(var(--b3)/.2))}.focus\:text-base-300\/25:focus{color:var(--fallback-b3,oklch(var(--b3)/.25))}.focus\:text-base-300\/30:focus{color:var(--fallback-b3,oklch(var(--b3)/.3))}.focus\:text-base-300\/40:focus{color:var(--fallback-b3,oklch(var(--b3)/.4))}.focus\:text-base-300\/5:focus{color:var(--fallback-b3,oklch(var(--b3)/.05))}.focus\:text-base-300\/50:focus{color:var(--fallback-b3,oklch(var(--b3)/.5))}.focus\:text-base-300\/60:focus{color:var(--fallback-b3,oklch(var(--b3)/.6))}.focus\:text-base-300\/70:focus{color:var(--fallback-b3,oklch(var(--b3)/.7))}.focus\:text-base-300\/75:focus{color:var(--fallback-b3,oklch(var(--b3)/.75))}.focus\:text-base-300\/80:focus{color:var(--fallback-b3,oklch(var(--b3)/.8))}.focus\:text-base-300\/90:focus{color:var(--fallback-b3,oklch(var(--b3)/.9))}.focus\:text-base-300\/95:focus{color:var(--fallback-b3,oklch(var(--b3)/.95))}.focus\:text-base-content:focus{color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:text-base-content\/0:focus{color:var(--fallback-bc,oklch(var(--bc)/0))}.focus\:text-base-content\/10:focus{color:var(--fallback-bc,oklch(var(--bc)/.1))}.focus\:text-base-content\/100:focus{color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:text-base-content\/20:focus{color:var(--fallback-bc,oklch(var(--bc)/.2))}.focus\:text-base-content\/25:focus{color:var(--fallback-bc,oklch(var(--bc)/.25))}.focus\:text-base-content\/30:focus{color:var(--fallback-bc,oklch(var(--bc)/.3))}.focus\:text-base-content\/40:focus{color:var(--fallback-bc,oklch(var(--bc)/.4))}.focus\:text-base-content\/5:focus{color:var(--fallback-bc,oklch(var(--bc)/.05))}.focus\:text-base-content\/50:focus{color:var(--fallback-bc,oklch(var(--bc)/.5))}.focus\:text-base-content\/60:focus{color:var(--fallback-bc,oklch(var(--bc)/.6))}.focus\:text-base-content\/70:focus{color:var(--fallback-bc,oklch(var(--bc)/.7))}.focus\:text-base-content\/75:focus{color:var(--fallback-bc,oklch(var(--bc)/.75))}.focus\:text-base-content\/80:focus{color:var(--fallback-bc,oklch(var(--bc)/.8))}.focus\:text-base-content\/90:focus{color:var(--fallback-bc,oklch(var(--bc)/.9))}.focus\:text-base-content\/95:focus{color:var(--fallback-bc,oklch(var(--bc)/.95))}.focus\:text-error:focus{color:var(--fallback-er,oklch(var(--er)/1))}.focus\:text-error-content:focus{color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:text-error-content\/0:focus{color:var(--fallback-erc,oklch(var(--erc)/0))}.focus\:text-error-content\/10:focus{color:var(--fallback-erc,oklch(var(--erc)/.1))}.focus\:text-error-content\/100:focus{color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:text-error-content\/20:focus{color:var(--fallback-erc,oklch(var(--erc)/.2))}.focus\:text-error-content\/25:focus{color:var(--fallback-erc,oklch(var(--erc)/.25))}.focus\:text-error-content\/30:focus{color:var(--fallback-erc,oklch(var(--erc)/.3))}.focus\:text-error-content\/40:focus{color:var(--fallback-erc,oklch(var(--erc)/.4))}.focus\:text-error-content\/5:focus{color:var(--fallback-erc,oklch(var(--erc)/.05))}.focus\:text-error-content\/50:focus{color:var(--fallback-erc,oklch(var(--erc)/.5))}.focus\:text-error-content\/60:focus{color:var(--fallback-erc,oklch(var(--erc)/.6))}.focus\:text-error-content\/70:focus{color:var(--fallback-erc,oklch(var(--erc)/.7))}.focus\:text-error-content\/75:focus{color:var(--fallback-erc,oklch(var(--erc)/.75))}.focus\:text-error-content\/80:focus{color:var(--fallback-erc,oklch(var(--erc)/.8))}.focus\:text-error-content\/90:focus{color:var(--fallback-erc,oklch(var(--erc)/.9))}.focus\:text-error-content\/95:focus{color:var(--fallback-erc,oklch(var(--erc)/.95))}.focus\:text-error\/0:focus{color:var(--fallback-er,oklch(var(--er)/0))}.focus\:text-error\/10:focus{color:var(--fallback-er,oklch(var(--er)/.1))}.focus\:text-error\/100:focus{color:var(--fallback-er,oklch(var(--er)/1))}.focus\:text-error\/20:focus{color:var(--fallback-er,oklch(var(--er)/.2))}.focus\:text-error\/25:focus{color:var(--fallback-er,oklch(var(--er)/.25))}.focus\:text-error\/30:focus{color:var(--fallback-er,oklch(var(--er)/.3))}.focus\:text-error\/40:focus{color:var(--fallback-er,oklch(var(--er)/.4))}.focus\:text-error\/5:focus{color:var(--fallback-er,oklch(var(--er)/.05))}.focus\:text-error\/50:focus{color:var(--fallback-er,oklch(var(--er)/.5))}.focus\:text-error\/60:focus{color:var(--fallback-er,oklch(var(--er)/.6))}.focus\:text-error\/70:focus{color:var(--fallback-er,oklch(var(--er)/.7))}.focus\:text-error\/75:focus{color:var(--fallback-er,oklch(var(--er)/.75))}.focus\:text-error\/80:focus{color:var(--fallback-er,oklch(var(--er)/.8))}.focus\:text-error\/90:focus{color:var(--fallback-er,oklch(var(--er)/.9))}.focus\:text-error\/95:focus{color:var(--fallback-er,oklch(var(--er)/.95))}.focus\:text-info:focus{color:var(--fallback-in,oklch(var(--in)/1))}.focus\:text-info-content:focus{color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:text-info-content\/0:focus{color:var(--fallback-inc,oklch(var(--inc)/0))}.focus\:text-info-content\/10:focus{color:var(--fallback-inc,oklch(var(--inc)/.1))}.focus\:text-info-content\/100:focus{color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:text-info-content\/20:focus{color:var(--fallback-inc,oklch(var(--inc)/.2))}.focus\:text-info-content\/25:focus{color:var(--fallback-inc,oklch(var(--inc)/.25))}.focus\:text-info-content\/30:focus{color:var(--fallback-inc,oklch(var(--inc)/.3))}.focus\:text-info-content\/40:focus{color:var(--fallback-inc,oklch(var(--inc)/.4))}.focus\:text-info-content\/5:focus{color:var(--fallback-inc,oklch(var(--inc)/.05))}.focus\:text-info-content\/50:focus{color:var(--fallback-inc,oklch(var(--inc)/.5))}.focus\:text-info-content\/60:focus{color:var(--fallback-inc,oklch(var(--inc)/.6))}.focus\:text-info-content\/70:focus{color:var(--fallback-inc,oklch(var(--inc)/.7))}.focus\:text-info-content\/75:focus{color:var(--fallback-inc,oklch(var(--inc)/.75))}.focus\:text-info-content\/80:focus{color:var(--fallback-inc,oklch(var(--inc)/.8))}.focus\:text-info-content\/90:focus{color:var(--fallback-inc,oklch(var(--inc)/.9))}.focus\:text-info-content\/95:focus{color:var(--fallback-inc,oklch(var(--inc)/.95))}.focus\:text-info\/0:focus{color:var(--fallback-in,oklch(var(--in)/0))}.focus\:text-info\/10:focus{color:var(--fallback-in,oklch(var(--in)/.1))}.focus\:text-info\/100:focus{color:var(--fallback-in,oklch(var(--in)/1))}.focus\:text-info\/20:focus{color:var(--fallback-in,oklch(var(--in)/.2))}.focus\:text-info\/25:focus{color:var(--fallback-in,oklch(var(--in)/.25))}.focus\:text-info\/30:focus{color:var(--fallback-in,oklch(var(--in)/.3))}.focus\:text-info\/40:focus{color:var(--fallback-in,oklch(var(--in)/.4))}.focus\:text-info\/5:focus{color:var(--fallback-in,oklch(var(--in)/.05))}.focus\:text-info\/50:focus{color:var(--fallback-in,oklch(var(--in)/.5))}.focus\:text-info\/60:focus{color:var(--fallback-in,oklch(var(--in)/.6))}.focus\:text-info\/70:focus{color:var(--fallback-in,oklch(var(--in)/.7))}.focus\:text-info\/75:focus{color:var(--fallback-in,oklch(var(--in)/.75))}.focus\:text-info\/80:focus{color:var(--fallback-in,oklch(var(--in)/.8))}.focus\:text-info\/90:focus{color:var(--fallback-in,oklch(var(--in)/.9))}.focus\:text-info\/95:focus{color:var(--fallback-in,oklch(var(--in)/.95))}.focus\:text-neutral:focus{color:var(--fallback-n,oklch(var(--n)/1))}.focus\:text-neutral-content:focus{color:var(--fallback-nc,oklch(var(--nc)/1))}.focus\:text-neutral-content\/0:focus{color:var(--fallback-nc,oklch(var(--nc)/0))}.focus\:text-neutral-content\/10:focus{color:var(--fallback-nc,oklch(var(--nc)/.1))}.focus\:text-neutral-content\/100:focus{color:var(--fallback-nc,oklch(var(--nc)/1))}.focus\:text-neutral-content\/20:focus{color:var(--fallback-nc,oklch(var(--nc)/.2))}.focus\:text-neutral-content\/25:focus{color:var(--fallback-nc,oklch(var(--nc)/.25))}.focus\:text-neutral-content\/30:focus{color:var(--fallback-nc,oklch(var(--nc)/.3))}.focus\:text-neutral-content\/40:focus{color:var(--fallback-nc,oklch(var(--nc)/.4))}.focus\:text-neutral-content\/5:focus{color:var(--fallback-nc,oklch(var(--nc)/.05))}.focus\:text-neutral-content\/50:focus{color:var(--fallback-nc,oklch(var(--nc)/.5))}.focus\:text-neutral-content\/60:focus{color:var(--fallback-nc,oklch(var(--nc)/.6))}.focus\:text-neutral-content\/70:focus{color:var(--fallback-nc,oklch(var(--nc)/.7))}.focus\:text-neutral-content\/75:focus{color:var(--fallback-nc,oklch(var(--nc)/.75))}.focus\:text-neutral-content\/80:focus{color:var(--fallback-nc,oklch(var(--nc)/.8))}.focus\:text-neutral-content\/90:focus{color:var(--fallback-nc,oklch(var(--nc)/.9))}.focus\:text-neutral-content\/95:focus{color:var(--fallback-nc,oklch(var(--nc)/.95))}.focus\:text-neutral\/0:focus{color:var(--fallback-n,oklch(var(--n)/0))}.focus\:text-neutral\/10:focus{color:var(--fallback-n,oklch(var(--n)/.1))}.focus\:text-neutral\/100:focus{color:var(--fallback-n,oklch(var(--n)/1))}.focus\:text-neutral\/20:focus{color:var(--fallback-n,oklch(var(--n)/.2))}.focus\:text-neutral\/25:focus{color:var(--fallback-n,oklch(var(--n)/.25))}.focus\:text-neutral\/30:focus{color:var(--fallback-n,oklch(var(--n)/.3))}.focus\:text-neutral\/40:focus{color:var(--fallback-n,oklch(var(--n)/.4))}.focus\:text-neutral\/5:focus{color:var(--fallback-n,oklch(var(--n)/.05))}.focus\:text-neutral\/50:focus{color:var(--fallback-n,oklch(var(--n)/.5))}.focus\:text-neutral\/60:focus{color:var(--fallback-n,oklch(var(--n)/.6))}.focus\:text-neutral\/70:focus{color:var(--fallback-n,oklch(var(--n)/.7))}.focus\:text-neutral\/75:focus{color:var(--fallback-n,oklch(var(--n)/.75))}.focus\:text-neutral\/80:focus{color:var(--fallback-n,oklch(var(--n)/.8))}.focus\:text-neutral\/90:focus{color:var(--fallback-n,oklch(var(--n)/.9))}.focus\:text-neutral\/95:focus{color:var(--fallback-n,oklch(var(--n)/.95))}.focus\:text-primary:focus{color:var(--fallback-p,oklch(var(--p)/1))}.focus\:text-primary-content:focus{color:var(--fallback-pc,oklch(var(--pc)/1))}.focus\:text-primary-content\/0:focus{color:var(--fallback-pc,oklch(var(--pc)/0))}.focus\:text-primary-content\/10:focus{color:var(--fallback-pc,oklch(var(--pc)/.1))}.focus\:text-primary-content\/100:focus{color:var(--fallback-pc,oklch(var(--pc)/1))}.focus\:text-primary-content\/20:focus{color:var(--fallback-pc,oklch(var(--pc)/.2))}.focus\:text-primary-content\/25:focus{color:var(--fallback-pc,oklch(var(--pc)/.25))}.focus\:text-primary-content\/30:focus{color:var(--fallback-pc,oklch(var(--pc)/.3))}.focus\:text-primary-content\/40:focus{color:var(--fallback-pc,oklch(var(--pc)/.4))}.focus\:text-primary-content\/5:focus{color:var(--fallback-pc,oklch(var(--pc)/.05))}.focus\:text-primary-content\/50:focus{color:var(--fallback-pc,oklch(var(--pc)/.5))}.focus\:text-primary-content\/60:focus{color:var(--fallback-pc,oklch(var(--pc)/.6))}.focus\:text-primary-content\/70:focus{color:var(--fallback-pc,oklch(var(--pc)/.7))}.focus\:text-primary-content\/75:focus{color:var(--fallback-pc,oklch(var(--pc)/.75))}.focus\:text-primary-content\/80:focus{color:var(--fallback-pc,oklch(var(--pc)/.8))}.focus\:text-primary-content\/90:focus{color:var(--fallback-pc,oklch(var(--pc)/.9))}.focus\:text-primary-content\/95:focus{color:var(--fallback-pc,oklch(var(--pc)/.95))}.focus\:text-primary\/0:focus{color:var(--fallback-p,oklch(var(--p)/0))}.focus\:text-primary\/10:focus{color:var(--fallback-p,oklch(var(--p)/.1))}.focus\:text-primary\/100:focus{color:var(--fallback-p,oklch(var(--p)/1))}.focus\:text-primary\/20:focus{color:var(--fallback-p,oklch(var(--p)/.2))}.focus\:text-primary\/25:focus{color:var(--fallback-p,oklch(var(--p)/.25))}.focus\:text-primary\/30:focus{color:var(--fallback-p,oklch(var(--p)/.3))}.focus\:text-primary\/40:focus{color:var(--fallback-p,oklch(var(--p)/.4))}.focus\:text-primary\/5:focus{color:var(--fallback-p,oklch(var(--p)/.05))}.focus\:text-primary\/50:focus{color:var(--fallback-p,oklch(var(--p)/.5))}.focus\:text-primary\/60:focus{color:var(--fallback-p,oklch(var(--p)/.6))}.focus\:text-primary\/70:focus{color:var(--fallback-p,oklch(var(--p)/.7))}.focus\:text-primary\/75:focus{color:var(--fallback-p,oklch(var(--p)/.75))}.focus\:text-primary\/80:focus{color:var(--fallback-p,oklch(var(--p)/.8))}.focus\:text-primary\/90:focus{color:var(--fallback-p,oklch(var(--p)/.9))}.focus\:text-primary\/95:focus{color:var(--fallback-p,oklch(var(--p)/.95))}.focus\:text-secondary:focus{color:var(--fallback-s,oklch(var(--s)/1))}.focus\:text-secondary-content:focus{color:var(--fallback-sc,oklch(var(--sc)/1))}.focus\:text-secondary-content\/0:focus{color:var(--fallback-sc,oklch(var(--sc)/0))}.focus\:text-secondary-content\/10:focus{color:var(--fallback-sc,oklch(var(--sc)/.1))}.focus\:text-secondary-content\/100:focus{color:var(--fallback-sc,oklch(var(--sc)/1))}.focus\:text-secondary-content\/20:focus{color:var(--fallback-sc,oklch(var(--sc)/.2))}.focus\:text-secondary-content\/25:focus{color:var(--fallback-sc,oklch(var(--sc)/.25))}.focus\:text-secondary-content\/30:focus{color:var(--fallback-sc,oklch(var(--sc)/.3))}.focus\:text-secondary-content\/40:focus{color:var(--fallback-sc,oklch(var(--sc)/.4))}.focus\:text-secondary-content\/5:focus{color:var(--fallback-sc,oklch(var(--sc)/.05))}.focus\:text-secondary-content\/50:focus{color:var(--fallback-sc,oklch(var(--sc)/.5))}.focus\:text-secondary-content\/60:focus{color:var(--fallback-sc,oklch(var(--sc)/.6))}.focus\:text-secondary-content\/70:focus{color:var(--fallback-sc,oklch(var(--sc)/.7))}.focus\:text-secondary-content\/75:focus{color:var(--fallback-sc,oklch(var(--sc)/.75))}.focus\:text-secondary-content\/80:focus{color:var(--fallback-sc,oklch(var(--sc)/.8))}.focus\:text-secondary-content\/90:focus{color:var(--fallback-sc,oklch(var(--sc)/.9))}.focus\:text-secondary-content\/95:focus{color:var(--fallback-sc,oklch(var(--sc)/.95))}.focus\:text-secondary\/0:focus{color:var(--fallback-s,oklch(var(--s)/0))}.focus\:text-secondary\/10:focus{color:var(--fallback-s,oklch(var(--s)/.1))}.focus\:text-secondary\/100:focus{color:var(--fallback-s,oklch(var(--s)/1))}.focus\:text-secondary\/20:focus{color:var(--fallback-s,oklch(var(--s)/.2))}.focus\:text-secondary\/25:focus{color:var(--fallback-s,oklch(var(--s)/.25))}.focus\:text-secondary\/30:focus{color:var(--fallback-s,oklch(var(--s)/.3))}.focus\:text-secondary\/40:focus{color:var(--fallback-s,oklch(var(--s)/.4))}.focus\:text-secondary\/5:focus{color:var(--fallback-s,oklch(var(--s)/.05))}.focus\:text-secondary\/50:focus{color:var(--fallback-s,oklch(var(--s)/.5))}.focus\:text-secondary\/60:focus{color:var(--fallback-s,oklch(var(--s)/.6))}.focus\:text-secondary\/70:focus{color:var(--fallback-s,oklch(var(--s)/.7))}.focus\:text-secondary\/75:focus{color:var(--fallback-s,oklch(var(--s)/.75))}.focus\:text-secondary\/80:focus{color:var(--fallback-s,oklch(var(--s)/.8))}.focus\:text-secondary\/90:focus{color:var(--fallback-s,oklch(var(--s)/.9))}.focus\:text-secondary\/95:focus{color:var(--fallback-s,oklch(var(--s)/.95))}.focus\:text-success:focus{color:var(--fallback-su,oklch(var(--su)/1))}.focus\:text-success-content:focus{color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:text-success-content\/0:focus{color:var(--fallback-suc,oklch(var(--suc)/0))}.focus\:text-success-content\/10:focus{color:var(--fallback-suc,oklch(var(--suc)/.1))}.focus\:text-success-content\/100:focus{color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:text-success-content\/20:focus{color:var(--fallback-suc,oklch(var(--suc)/.2))}.focus\:text-success-content\/25:focus{color:var(--fallback-suc,oklch(var(--suc)/.25))}.focus\:text-success-content\/30:focus{color:var(--fallback-suc,oklch(var(--suc)/.3))}.focus\:text-success-content\/40:focus{color:var(--fallback-suc,oklch(var(--suc)/.4))}.focus\:text-success-content\/5:focus{color:var(--fallback-suc,oklch(var(--suc)/.05))}.focus\:text-success-content\/50:focus{color:var(--fallback-suc,oklch(var(--suc)/.5))}.focus\:text-success-content\/60:focus{color:var(--fallback-suc,oklch(var(--suc)/.6))}.focus\:text-success-content\/70:focus{color:var(--fallback-suc,oklch(var(--suc)/.7))}.focus\:text-success-content\/75:focus{color:var(--fallback-suc,oklch(var(--suc)/.75))}.focus\:text-success-content\/80:focus{color:var(--fallback-suc,oklch(var(--suc)/.8))}.focus\:text-success-content\/90:focus{color:var(--fallback-suc,oklch(var(--suc)/.9))}.focus\:text-success-content\/95:focus{color:var(--fallback-suc,oklch(var(--suc)/.95))}.focus\:text-success\/0:focus{color:var(--fallback-su,oklch(var(--su)/0))}.focus\:text-success\/10:focus{color:var(--fallback-su,oklch(var(--su)/.1))}.focus\:text-success\/100:focus{color:var(--fallback-su,oklch(var(--su)/1))}.focus\:text-success\/20:focus{color:var(--fallback-su,oklch(var(--su)/.2))}.focus\:text-success\/25:focus{color:var(--fallback-su,oklch(var(--su)/.25))}.focus\:text-success\/30:focus{color:var(--fallback-su,oklch(var(--su)/.3))}.focus\:text-success\/40:focus{color:var(--fallback-su,oklch(var(--su)/.4))}.focus\:text-success\/5:focus{color:var(--fallback-su,oklch(var(--su)/.05))}.focus\:text-success\/50:focus{color:var(--fallback-su,oklch(var(--su)/.5))}.focus\:text-success\/60:focus{color:var(--fallback-su,oklch(var(--su)/.6))}.focus\:text-success\/70:focus{color:var(--fallback-su,oklch(var(--su)/.7))}.focus\:text-success\/75:focus{color:var(--fallback-su,oklch(var(--su)/.75))}.focus\:text-success\/80:focus{color:var(--fallback-su,oklch(var(--su)/.8))}.focus\:text-success\/90:focus{color:var(--fallback-su,oklch(var(--su)/.9))}.focus\:text-success\/95:focus{color:var(--fallback-su,oklch(var(--su)/.95))}.focus\:text-warning:focus{color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:text-warning-content:focus{color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:text-warning-content\/0:focus{color:var(--fallback-wac,oklch(var(--wac)/0))}.focus\:text-warning-content\/10:focus{color:var(--fallback-wac,oklch(var(--wac)/.1))}.focus\:text-warning-content\/100:focus{color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:text-warning-content\/20:focus{color:var(--fallback-wac,oklch(var(--wac)/.2))}.focus\:text-warning-content\/25:focus{color:var(--fallback-wac,oklch(var(--wac)/.25))}.focus\:text-warning-content\/30:focus{color:var(--fallback-wac,oklch(var(--wac)/.3))}.focus\:text-warning-content\/40:focus{color:var(--fallback-wac,oklch(var(--wac)/.4))}.focus\:text-warning-content\/5:focus{color:var(--fallback-wac,oklch(var(--wac)/.05))}.focus\:text-warning-content\/50:focus{color:var(--fallback-wac,oklch(var(--wac)/.5))}.focus\:text-warning-content\/60:focus{color:var(--fallback-wac,oklch(var(--wac)/.6))}.focus\:text-warning-content\/70:focus{color:var(--fallback-wac,oklch(var(--wac)/.7))}.focus\:text-warning-content\/75:focus{color:var(--fallback-wac,oklch(var(--wac)/.75))}.focus\:text-warning-content\/80:focus{color:var(--fallback-wac,oklch(var(--wac)/.8))}.focus\:text-warning-content\/90:focus{color:var(--fallback-wac,oklch(var(--wac)/.9))}.focus\:text-warning-content\/95:focus{color:var(--fallback-wac,oklch(var(--wac)/.95))}.focus\:text-warning\/0:focus{color:var(--fallback-wa,oklch(var(--wa)/0))}.focus\:text-warning\/10:focus{color:var(--fallback-wa,oklch(var(--wa)/.1))}.focus\:text-warning\/100:focus{color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:text-warning\/20:focus{color:var(--fallback-wa,oklch(var(--wa)/.2))}.focus\:text-warning\/25:focus{color:var(--fallback-wa,oklch(var(--wa)/.25))}.focus\:text-warning\/30:focus{color:var(--fallback-wa,oklch(var(--wa)/.3))}.focus\:text-warning\/40:focus{color:var(--fallback-wa,oklch(var(--wa)/.4))}.focus\:text-warning\/5:focus{color:var(--fallback-wa,oklch(var(--wa)/.05))}.focus\:text-warning\/50:focus{color:var(--fallback-wa,oklch(var(--wa)/.5))}.focus\:text-warning\/60:focus{color:var(--fallback-wa,oklch(var(--wa)/.6))}.focus\:text-warning\/70:focus{color:var(--fallback-wa,oklch(var(--wa)/.7))}.focus\:text-warning\/75:focus{color:var(--fallback-wa,oklch(var(--wa)/.75))}.focus\:text-warning\/80:focus{color:var(--fallback-wa,oklch(var(--wa)/.8))}.focus\:text-warning\/90:focus{color:var(--fallback-wa,oklch(var(--wa)/.9))}.focus\:text-warning\/95:focus{color:var(--fallback-wa,oklch(var(--wa)/.95))}.focus\:placeholder-base-100:focus::placeholder{color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:placeholder-base-100\/0:focus::placeholder{color:var(--fallback-b1,oklch(var(--b1)/0))}.focus\:placeholder-base-100\/10:focus::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.1))}.focus\:placeholder-base-100\/100:focus::placeholder{color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:placeholder-base-100\/20:focus::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.2))}.focus\:placeholder-base-100\/25:focus::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.25))}.focus\:placeholder-base-100\/30:focus::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.3))}.focus\:placeholder-base-100\/40:focus::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.4))}.focus\:placeholder-base-100\/5:focus::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.05))}.focus\:placeholder-base-100\/50:focus::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.5))}.focus\:placeholder-base-100\/60:focus::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.6))}.focus\:placeholder-base-100\/70:focus::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.7))}.focus\:placeholder-base-100\/75:focus::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.75))}.focus\:placeholder-base-100\/80:focus::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.8))}.focus\:placeholder-base-100\/90:focus::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.9))}.focus\:placeholder-base-100\/95:focus::placeholder{color:var(--fallback-b1,oklch(var(--b1)/.95))}.focus\:placeholder-base-200:focus::placeholder{color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:placeholder-base-200\/0:focus::placeholder{color:var(--fallback-b2,oklch(var(--b2)/0))}.focus\:placeholder-base-200\/10:focus::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.1))}.focus\:placeholder-base-200\/100:focus::placeholder{color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:placeholder-base-200\/20:focus::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.2))}.focus\:placeholder-base-200\/25:focus::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.25))}.focus\:placeholder-base-200\/30:focus::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.3))}.focus\:placeholder-base-200\/40:focus::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.4))}.focus\:placeholder-base-200\/5:focus::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.05))}.focus\:placeholder-base-200\/50:focus::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.5))}.focus\:placeholder-base-200\/60:focus::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.6))}.focus\:placeholder-base-200\/70:focus::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.7))}.focus\:placeholder-base-200\/75:focus::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.75))}.focus\:placeholder-base-200\/80:focus::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.8))}.focus\:placeholder-base-200\/90:focus::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.9))}.focus\:placeholder-base-200\/95:focus::placeholder{color:var(--fallback-b2,oklch(var(--b2)/.95))}.focus\:placeholder-base-300:focus::placeholder{color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:placeholder-base-300\/0:focus::placeholder{color:var(--fallback-b3,oklch(var(--b3)/0))}.focus\:placeholder-base-300\/10:focus::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.1))}.focus\:placeholder-base-300\/100:focus::placeholder{color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:placeholder-base-300\/20:focus::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.2))}.focus\:placeholder-base-300\/25:focus::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.25))}.focus\:placeholder-base-300\/30:focus::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.3))}.focus\:placeholder-base-300\/40:focus::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.4))}.focus\:placeholder-base-300\/5:focus::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.05))}.focus\:placeholder-base-300\/50:focus::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.5))}.focus\:placeholder-base-300\/60:focus::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.6))}.focus\:placeholder-base-300\/70:focus::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.7))}.focus\:placeholder-base-300\/75:focus::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.75))}.focus\:placeholder-base-300\/80:focus::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.8))}.focus\:placeholder-base-300\/90:focus::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.9))}.focus\:placeholder-base-300\/95:focus::placeholder{color:var(--fallback-b3,oklch(var(--b3)/.95))}.focus\:placeholder-base-content:focus::placeholder{color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:placeholder-base-content\/0:focus::placeholder{color:var(--fallback-bc,oklch(var(--bc)/0))}.focus\:placeholder-base-content\/10:focus::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.1))}.focus\:placeholder-base-content\/100:focus::placeholder{color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:placeholder-base-content\/20:focus::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.2))}.focus\:placeholder-base-content\/25:focus::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.25))}.focus\:placeholder-base-content\/30:focus::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.3))}.focus\:placeholder-base-content\/40:focus::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.4))}.focus\:placeholder-base-content\/5:focus::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.05))}.focus\:placeholder-base-content\/50:focus::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.5))}.focus\:placeholder-base-content\/60:focus::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.6))}.focus\:placeholder-base-content\/70:focus::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.7))}.focus\:placeholder-base-content\/75:focus::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.75))}.focus\:placeholder-base-content\/80:focus::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.8))}.focus\:placeholder-base-content\/90:focus::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.9))}.focus\:placeholder-base-content\/95:focus::placeholder{color:var(--fallback-bc,oklch(var(--bc)/.95))}.focus\:placeholder-error:focus::placeholder{color:var(--fallback-er,oklch(var(--er)/1))}.focus\:placeholder-error-content:focus::placeholder{color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:placeholder-error-content\/0:focus::placeholder{color:var(--fallback-erc,oklch(var(--erc)/0))}.focus\:placeholder-error-content\/10:focus::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.1))}.focus\:placeholder-error-content\/100:focus::placeholder{color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:placeholder-error-content\/20:focus::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.2))}.focus\:placeholder-error-content\/25:focus::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.25))}.focus\:placeholder-error-content\/30:focus::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.3))}.focus\:placeholder-error-content\/40:focus::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.4))}.focus\:placeholder-error-content\/5:focus::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.05))}.focus\:placeholder-error-content\/50:focus::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.5))}.focus\:placeholder-error-content\/60:focus::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.6))}.focus\:placeholder-error-content\/70:focus::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.7))}.focus\:placeholder-error-content\/75:focus::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.75))}.focus\:placeholder-error-content\/80:focus::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.8))}.focus\:placeholder-error-content\/90:focus::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.9))}.focus\:placeholder-error-content\/95:focus::placeholder{color:var(--fallback-erc,oklch(var(--erc)/.95))}.focus\:placeholder-error\/0:focus::placeholder{color:var(--fallback-er,oklch(var(--er)/0))}.focus\:placeholder-error\/10:focus::placeholder{color:var(--fallback-er,oklch(var(--er)/.1))}.focus\:placeholder-error\/100:focus::placeholder{color:var(--fallback-er,oklch(var(--er)/1))}.focus\:placeholder-error\/20:focus::placeholder{color:var(--fallback-er,oklch(var(--er)/.2))}.focus\:placeholder-error\/25:focus::placeholder{color:var(--fallback-er,oklch(var(--er)/.25))}.focus\:placeholder-error\/30:focus::placeholder{color:var(--fallback-er,oklch(var(--er)/.3))}.focus\:placeholder-error\/40:focus::placeholder{color:var(--fallback-er,oklch(var(--er)/.4))}.focus\:placeholder-error\/5:focus::placeholder{color:var(--fallback-er,oklch(var(--er)/.05))}.focus\:placeholder-error\/50:focus::placeholder{color:var(--fallback-er,oklch(var(--er)/.5))}.focus\:placeholder-error\/60:focus::placeholder{color:var(--fallback-er,oklch(var(--er)/.6))}.focus\:placeholder-error\/70:focus::placeholder{color:var(--fallback-er,oklch(var(--er)/.7))}.focus\:placeholder-error\/75:focus::placeholder{color:var(--fallback-er,oklch(var(--er)/.75))}.focus\:placeholder-error\/80:focus::placeholder{color:var(--fallback-er,oklch(var(--er)/.8))}.focus\:placeholder-error\/90:focus::placeholder{color:var(--fallback-er,oklch(var(--er)/.9))}.focus\:placeholder-error\/95:focus::placeholder{color:var(--fallback-er,oklch(var(--er)/.95))}.focus\:placeholder-info:focus::placeholder{color:var(--fallback-in,oklch(var(--in)/1))}.focus\:placeholder-info-content:focus::placeholder{color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:placeholder-info-content\/0:focus::placeholder{color:var(--fallback-inc,oklch(var(--inc)/0))}.focus\:placeholder-info-content\/10:focus::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.1))}.focus\:placeholder-info-content\/100:focus::placeholder{color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:placeholder-info-content\/20:focus::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.2))}.focus\:placeholder-info-content\/25:focus::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.25))}.focus\:placeholder-info-content\/30:focus::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.3))}.focus\:placeholder-info-content\/40:focus::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.4))}.focus\:placeholder-info-content\/5:focus::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.05))}.focus\:placeholder-info-content\/50:focus::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.5))}.focus\:placeholder-info-content\/60:focus::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.6))}.focus\:placeholder-info-content\/70:focus::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.7))}.focus\:placeholder-info-content\/75:focus::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.75))}.focus\:placeholder-info-content\/80:focus::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.8))}.focus\:placeholder-info-content\/90:focus::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.9))}.focus\:placeholder-info-content\/95:focus::placeholder{color:var(--fallback-inc,oklch(var(--inc)/.95))}.focus\:placeholder-info\/0:focus::placeholder{color:var(--fallback-in,oklch(var(--in)/0))}.focus\:placeholder-info\/10:focus::placeholder{color:var(--fallback-in,oklch(var(--in)/.1))}.focus\:placeholder-info\/100:focus::placeholder{color:var(--fallback-in,oklch(var(--in)/1))}.focus\:placeholder-info\/20:focus::placeholder{color:var(--fallback-in,oklch(var(--in)/.2))}.focus\:placeholder-info\/25:focus::placeholder{color:var(--fallback-in,oklch(var(--in)/.25))}.focus\:placeholder-info\/30:focus::placeholder{color:var(--fallback-in,oklch(var(--in)/.3))}.focus\:placeholder-info\/40:focus::placeholder{color:var(--fallback-in,oklch(var(--in)/.4))}.focus\:placeholder-info\/5:focus::placeholder{color:var(--fallback-in,oklch(var(--in)/.05))}.focus\:placeholder-info\/50:focus::placeholder{color:var(--fallback-in,oklch(var(--in)/.5))}.focus\:placeholder-info\/60:focus::placeholder{color:var(--fallback-in,oklch(var(--in)/.6))}.focus\:placeholder-info\/70:focus::placeholder{color:var(--fallback-in,oklch(var(--in)/.7))}.focus\:placeholder-info\/75:focus::placeholder{color:var(--fallback-in,oklch(var(--in)/.75))}.focus\:placeholder-info\/80:focus::placeholder{color:var(--fallback-in,oklch(var(--in)/.8))}.focus\:placeholder-info\/90:focus::placeholder{color:var(--fallback-in,oklch(var(--in)/.9))}.focus\:placeholder-info\/95:focus::placeholder{color:var(--fallback-in,oklch(var(--in)/.95))}.focus\:placeholder-success:focus::placeholder{color:var(--fallback-su,oklch(var(--su)/1))}.focus\:placeholder-success-content:focus::placeholder{color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:placeholder-success-content\/0:focus::placeholder{color:var(--fallback-suc,oklch(var(--suc)/0))}.focus\:placeholder-success-content\/10:focus::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.1))}.focus\:placeholder-success-content\/100:focus::placeholder{color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:placeholder-success-content\/20:focus::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.2))}.focus\:placeholder-success-content\/25:focus::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.25))}.focus\:placeholder-success-content\/30:focus::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.3))}.focus\:placeholder-success-content\/40:focus::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.4))}.focus\:placeholder-success-content\/5:focus::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.05))}.focus\:placeholder-success-content\/50:focus::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.5))}.focus\:placeholder-success-content\/60:focus::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.6))}.focus\:placeholder-success-content\/70:focus::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.7))}.focus\:placeholder-success-content\/75:focus::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.75))}.focus\:placeholder-success-content\/80:focus::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.8))}.focus\:placeholder-success-content\/90:focus::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.9))}.focus\:placeholder-success-content\/95:focus::placeholder{color:var(--fallback-suc,oklch(var(--suc)/.95))}.focus\:placeholder-success\/0:focus::placeholder{color:var(--fallback-su,oklch(var(--su)/0))}.focus\:placeholder-success\/10:focus::placeholder{color:var(--fallback-su,oklch(var(--su)/.1))}.focus\:placeholder-success\/100:focus::placeholder{color:var(--fallback-su,oklch(var(--su)/1))}.focus\:placeholder-success\/20:focus::placeholder{color:var(--fallback-su,oklch(var(--su)/.2))}.focus\:placeholder-success\/25:focus::placeholder{color:var(--fallback-su,oklch(var(--su)/.25))}.focus\:placeholder-success\/30:focus::placeholder{color:var(--fallback-su,oklch(var(--su)/.3))}.focus\:placeholder-success\/40:focus::placeholder{color:var(--fallback-su,oklch(var(--su)/.4))}.focus\:placeholder-success\/5:focus::placeholder{color:var(--fallback-su,oklch(var(--su)/.05))}.focus\:placeholder-success\/50:focus::placeholder{color:var(--fallback-su,oklch(var(--su)/.5))}.focus\:placeholder-success\/60:focus::placeholder{color:var(--fallback-su,oklch(var(--su)/.6))}.focus\:placeholder-success\/70:focus::placeholder{color:var(--fallback-su,oklch(var(--su)/.7))}.focus\:placeholder-success\/75:focus::placeholder{color:var(--fallback-su,oklch(var(--su)/.75))}.focus\:placeholder-success\/80:focus::placeholder{color:var(--fallback-su,oklch(var(--su)/.8))}.focus\:placeholder-success\/90:focus::placeholder{color:var(--fallback-su,oklch(var(--su)/.9))}.focus\:placeholder-success\/95:focus::placeholder{color:var(--fallback-su,oklch(var(--su)/.95))}.focus\:placeholder-warning:focus::placeholder{color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:placeholder-warning-content:focus::placeholder{color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:placeholder-warning-content\/0:focus::placeholder{color:var(--fallback-wac,oklch(var(--wac)/0))}.focus\:placeholder-warning-content\/10:focus::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.1))}.focus\:placeholder-warning-content\/100:focus::placeholder{color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:placeholder-warning-content\/20:focus::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.2))}.focus\:placeholder-warning-content\/25:focus::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.25))}.focus\:placeholder-warning-content\/30:focus::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.3))}.focus\:placeholder-warning-content\/40:focus::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.4))}.focus\:placeholder-warning-content\/5:focus::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.05))}.focus\:placeholder-warning-content\/50:focus::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.5))}.focus\:placeholder-warning-content\/60:focus::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.6))}.focus\:placeholder-warning-content\/70:focus::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.7))}.focus\:placeholder-warning-content\/75:focus::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.75))}.focus\:placeholder-warning-content\/80:focus::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.8))}.focus\:placeholder-warning-content\/90:focus::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.9))}.focus\:placeholder-warning-content\/95:focus::placeholder{color:var(--fallback-wac,oklch(var(--wac)/.95))}.focus\:placeholder-warning\/0:focus::placeholder{color:var(--fallback-wa,oklch(var(--wa)/0))}.focus\:placeholder-warning\/10:focus::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.1))}.focus\:placeholder-warning\/100:focus::placeholder{color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:placeholder-warning\/20:focus::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.2))}.focus\:placeholder-warning\/25:focus::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.25))}.focus\:placeholder-warning\/30:focus::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.3))}.focus\:placeholder-warning\/40:focus::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.4))}.focus\:placeholder-warning\/5:focus::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.05))}.focus\:placeholder-warning\/50:focus::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.5))}.focus\:placeholder-warning\/60:focus::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.6))}.focus\:placeholder-warning\/70:focus::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.7))}.focus\:placeholder-warning\/75:focus::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.75))}.focus\:placeholder-warning\/80:focus::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.8))}.focus\:placeholder-warning\/90:focus::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.9))}.focus\:placeholder-warning\/95:focus::placeholder{color:var(--fallback-wa,oklch(var(--wa)/.95))}.focus\:outline-accent:focus{outline-color:var(--fallback-a,oklch(var(--a)/1))}.focus\:outline-accent-content:focus{outline-color:var(--fallback-ac,oklch(var(--ac)/1))}.focus\:outline-accent-content\/0:focus{outline-color:var(--fallback-ac,oklch(var(--ac)/0))}.focus\:outline-accent-content\/10:focus{outline-color:var(--fallback-ac,oklch(var(--ac)/.1))}.focus\:outline-accent-content\/100:focus{outline-color:var(--fallback-ac,oklch(var(--ac)/1))}.focus\:outline-accent-content\/20:focus{outline-color:var(--fallback-ac,oklch(var(--ac)/.2))}.focus\:outline-accent-content\/25:focus{outline-color:var(--fallback-ac,oklch(var(--ac)/.25))}.focus\:outline-accent-content\/30:focus{outline-color:var(--fallback-ac,oklch(var(--ac)/.3))}.focus\:outline-accent-content\/40:focus{outline-color:var(--fallback-ac,oklch(var(--ac)/.4))}.focus\:outline-accent-content\/5:focus{outline-color:var(--fallback-ac,oklch(var(--ac)/.05))}.focus\:outline-accent-content\/50:focus{outline-color:var(--fallback-ac,oklch(var(--ac)/.5))}.focus\:outline-accent-content\/60:focus{outline-color:var(--fallback-ac,oklch(var(--ac)/.6))}.focus\:outline-accent-content\/70:focus{outline-color:var(--fallback-ac,oklch(var(--ac)/.7))}.focus\:outline-accent-content\/75:focus{outline-color:var(--fallback-ac,oklch(var(--ac)/.75))}.focus\:outline-accent-content\/80:focus{outline-color:var(--fallback-ac,oklch(var(--ac)/.8))}.focus\:outline-accent-content\/90:focus{outline-color:var(--fallback-ac,oklch(var(--ac)/.9))}.focus\:outline-accent-content\/95:focus{outline-color:var(--fallback-ac,oklch(var(--ac)/.95))}.focus\:outline-accent\/0:focus{outline-color:var(--fallback-a,oklch(var(--a)/0))}.focus\:outline-accent\/10:focus{outline-color:var(--fallback-a,oklch(var(--a)/.1))}.focus\:outline-accent\/100:focus{outline-color:var(--fallback-a,oklch(var(--a)/1))}.focus\:outline-accent\/20:focus{outline-color:var(--fallback-a,oklch(var(--a)/.2))}.focus\:outline-accent\/25:focus{outline-color:var(--fallback-a,oklch(var(--a)/.25))}.focus\:outline-accent\/30:focus{outline-color:var(--fallback-a,oklch(var(--a)/.3))}.focus\:outline-accent\/40:focus{outline-color:var(--fallback-a,oklch(var(--a)/.4))}.focus\:outline-accent\/5:focus{outline-color:var(--fallback-a,oklch(var(--a)/.05))}.focus\:outline-accent\/50:focus{outline-color:var(--fallback-a,oklch(var(--a)/.5))}.focus\:outline-accent\/60:focus{outline-color:var(--fallback-a,oklch(var(--a)/.6))}.focus\:outline-accent\/70:focus{outline-color:var(--fallback-a,oklch(var(--a)/.7))}.focus\:outline-accent\/75:focus{outline-color:var(--fallback-a,oklch(var(--a)/.75))}.focus\:outline-accent\/80:focus{outline-color:var(--fallback-a,oklch(var(--a)/.8))}.focus\:outline-accent\/90:focus{outline-color:var(--fallback-a,oklch(var(--a)/.9))}.focus\:outline-accent\/95:focus{outline-color:var(--fallback-a,oklch(var(--a)/.95))}.focus\:outline-base-100:focus{outline-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:outline-base-100\/0:focus{outline-color:var(--fallback-b1,oklch(var(--b1)/0))}.focus\:outline-base-100\/10:focus{outline-color:var(--fallback-b1,oklch(var(--b1)/.1))}.focus\:outline-base-100\/100:focus{outline-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:outline-base-100\/20:focus{outline-color:var(--fallback-b1,oklch(var(--b1)/.2))}.focus\:outline-base-100\/25:focus{outline-color:var(--fallback-b1,oklch(var(--b1)/.25))}.focus\:outline-base-100\/30:focus{outline-color:var(--fallback-b1,oklch(var(--b1)/.3))}.focus\:outline-base-100\/40:focus{outline-color:var(--fallback-b1,oklch(var(--b1)/.4))}.focus\:outline-base-100\/5:focus{outline-color:var(--fallback-b1,oklch(var(--b1)/.05))}.focus\:outline-base-100\/50:focus{outline-color:var(--fallback-b1,oklch(var(--b1)/.5))}.focus\:outline-base-100\/60:focus{outline-color:var(--fallback-b1,oklch(var(--b1)/.6))}.focus\:outline-base-100\/70:focus{outline-color:var(--fallback-b1,oklch(var(--b1)/.7))}.focus\:outline-base-100\/75:focus{outline-color:var(--fallback-b1,oklch(var(--b1)/.75))}.focus\:outline-base-100\/80:focus{outline-color:var(--fallback-b1,oklch(var(--b1)/.8))}.focus\:outline-base-100\/90:focus{outline-color:var(--fallback-b1,oklch(var(--b1)/.9))}.focus\:outline-base-100\/95:focus{outline-color:var(--fallback-b1,oklch(var(--b1)/.95))}.focus\:outline-base-200:focus{outline-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:outline-base-200\/0:focus{outline-color:var(--fallback-b2,oklch(var(--b2)/0))}.focus\:outline-base-200\/10:focus{outline-color:var(--fallback-b2,oklch(var(--b2)/.1))}.focus\:outline-base-200\/100:focus{outline-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:outline-base-200\/20:focus{outline-color:var(--fallback-b2,oklch(var(--b2)/.2))}.focus\:outline-base-200\/25:focus{outline-color:var(--fallback-b2,oklch(var(--b2)/.25))}.focus\:outline-base-200\/30:focus{outline-color:var(--fallback-b2,oklch(var(--b2)/.3))}.focus\:outline-base-200\/40:focus{outline-color:var(--fallback-b2,oklch(var(--b2)/.4))}.focus\:outline-base-200\/5:focus{outline-color:var(--fallback-b2,oklch(var(--b2)/.05))}.focus\:outline-base-200\/50:focus{outline-color:var(--fallback-b2,oklch(var(--b2)/.5))}.focus\:outline-base-200\/60:focus{outline-color:var(--fallback-b2,oklch(var(--b2)/.6))}.focus\:outline-base-200\/70:focus{outline-color:var(--fallback-b2,oklch(var(--b2)/.7))}.focus\:outline-base-200\/75:focus{outline-color:var(--fallback-b2,oklch(var(--b2)/.75))}.focus\:outline-base-200\/80:focus{outline-color:var(--fallback-b2,oklch(var(--b2)/.8))}.focus\:outline-base-200\/90:focus{outline-color:var(--fallback-b2,oklch(var(--b2)/.9))}.focus\:outline-base-200\/95:focus{outline-color:var(--fallback-b2,oklch(var(--b2)/.95))}.focus\:outline-base-300:focus{outline-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:outline-base-300\/0:focus{outline-color:var(--fallback-b3,oklch(var(--b3)/0))}.focus\:outline-base-300\/10:focus{outline-color:var(--fallback-b3,oklch(var(--b3)/.1))}.focus\:outline-base-300\/100:focus{outline-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:outline-base-300\/20:focus{outline-color:var(--fallback-b3,oklch(var(--b3)/.2))}.focus\:outline-base-300\/25:focus{outline-color:var(--fallback-b3,oklch(var(--b3)/.25))}.focus\:outline-base-300\/30:focus{outline-color:var(--fallback-b3,oklch(var(--b3)/.3))}.focus\:outline-base-300\/40:focus{outline-color:var(--fallback-b3,oklch(var(--b3)/.4))}.focus\:outline-base-300\/5:focus{outline-color:var(--fallback-b3,oklch(var(--b3)/.05))}.focus\:outline-base-300\/50:focus{outline-color:var(--fallback-b3,oklch(var(--b3)/.5))}.focus\:outline-base-300\/60:focus{outline-color:var(--fallback-b3,oklch(var(--b3)/.6))}.focus\:outline-base-300\/70:focus{outline-color:var(--fallback-b3,oklch(var(--b3)/.7))}.focus\:outline-base-300\/75:focus{outline-color:var(--fallback-b3,oklch(var(--b3)/.75))}.focus\:outline-base-300\/80:focus{outline-color:var(--fallback-b3,oklch(var(--b3)/.8))}.focus\:outline-base-300\/90:focus{outline-color:var(--fallback-b3,oklch(var(--b3)/.9))}.focus\:outline-base-300\/95:focus{outline-color:var(--fallback-b3,oklch(var(--b3)/.95))}.focus\:outline-base-content:focus{outline-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:outline-base-content\/0:focus{outline-color:var(--fallback-bc,oklch(var(--bc)/0))}.focus\:outline-base-content\/10:focus{outline-color:var(--fallback-bc,oklch(var(--bc)/.1))}.focus\:outline-base-content\/100:focus{outline-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:outline-base-content\/20:focus{outline-color:var(--fallback-bc,oklch(var(--bc)/.2))}.focus\:outline-base-content\/25:focus{outline-color:var(--fallback-bc,oklch(var(--bc)/.25))}.focus\:outline-base-content\/30:focus{outline-color:var(--fallback-bc,oklch(var(--bc)/.3))}.focus\:outline-base-content\/40:focus{outline-color:var(--fallback-bc,oklch(var(--bc)/.4))}.focus\:outline-base-content\/5:focus{outline-color:var(--fallback-bc,oklch(var(--bc)/.05))}.focus\:outline-base-content\/50:focus{outline-color:var(--fallback-bc,oklch(var(--bc)/.5))}.focus\:outline-base-content\/60:focus{outline-color:var(--fallback-bc,oklch(var(--bc)/.6))}.focus\:outline-base-content\/70:focus{outline-color:var(--fallback-bc,oklch(var(--bc)/.7))}.focus\:outline-base-content\/75:focus{outline-color:var(--fallback-bc,oklch(var(--bc)/.75))}.focus\:outline-base-content\/80:focus{outline-color:var(--fallback-bc,oklch(var(--bc)/.8))}.focus\:outline-base-content\/90:focus{outline-color:var(--fallback-bc,oklch(var(--bc)/.9))}.focus\:outline-base-content\/95:focus{outline-color:var(--fallback-bc,oklch(var(--bc)/.95))}.focus\:outline-error:focus{outline-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:outline-error-content:focus{outline-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:outline-error-content\/0:focus{outline-color:var(--fallback-erc,oklch(var(--erc)/0))}.focus\:outline-error-content\/10:focus{outline-color:var(--fallback-erc,oklch(var(--erc)/.1))}.focus\:outline-error-content\/100:focus{outline-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:outline-error-content\/20:focus{outline-color:var(--fallback-erc,oklch(var(--erc)/.2))}.focus\:outline-error-content\/25:focus{outline-color:var(--fallback-erc,oklch(var(--erc)/.25))}.focus\:outline-error-content\/30:focus{outline-color:var(--fallback-erc,oklch(var(--erc)/.3))}.focus\:outline-error-content\/40:focus{outline-color:var(--fallback-erc,oklch(var(--erc)/.4))}.focus\:outline-error-content\/5:focus{outline-color:var(--fallback-erc,oklch(var(--erc)/.05))}.focus\:outline-error-content\/50:focus{outline-color:var(--fallback-erc,oklch(var(--erc)/.5))}.focus\:outline-error-content\/60:focus{outline-color:var(--fallback-erc,oklch(var(--erc)/.6))}.focus\:outline-error-content\/70:focus{outline-color:var(--fallback-erc,oklch(var(--erc)/.7))}.focus\:outline-error-content\/75:focus{outline-color:var(--fallback-erc,oklch(var(--erc)/.75))}.focus\:outline-error-content\/80:focus{outline-color:var(--fallback-erc,oklch(var(--erc)/.8))}.focus\:outline-error-content\/90:focus{outline-color:var(--fallback-erc,oklch(var(--erc)/.9))}.focus\:outline-error-content\/95:focus{outline-color:var(--fallback-erc,oklch(var(--erc)/.95))}.focus\:outline-error\/0:focus{outline-color:var(--fallback-er,oklch(var(--er)/0))}.focus\:outline-error\/10:focus{outline-color:var(--fallback-er,oklch(var(--er)/.1))}.focus\:outline-error\/100:focus{outline-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:outline-error\/20:focus{outline-color:var(--fallback-er,oklch(var(--er)/.2))}.focus\:outline-error\/25:focus{outline-color:var(--fallback-er,oklch(var(--er)/.25))}.focus\:outline-error\/30:focus{outline-color:var(--fallback-er,oklch(var(--er)/.3))}.focus\:outline-error\/40:focus{outline-color:var(--fallback-er,oklch(var(--er)/.4))}.focus\:outline-error\/5:focus{outline-color:var(--fallback-er,oklch(var(--er)/.05))}.focus\:outline-error\/50:focus{outline-color:var(--fallback-er,oklch(var(--er)/.5))}.focus\:outline-error\/60:focus{outline-color:var(--fallback-er,oklch(var(--er)/.6))}.focus\:outline-error\/70:focus{outline-color:var(--fallback-er,oklch(var(--er)/.7))}.focus\:outline-error\/75:focus{outline-color:var(--fallback-er,oklch(var(--er)/.75))}.focus\:outline-error\/80:focus{outline-color:var(--fallback-er,oklch(var(--er)/.8))}.focus\:outline-error\/90:focus{outline-color:var(--fallback-er,oklch(var(--er)/.9))}.focus\:outline-error\/95:focus{outline-color:var(--fallback-er,oklch(var(--er)/.95))}.focus\:outline-info:focus{outline-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:outline-info-content:focus{outline-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:outline-info-content\/0:focus{outline-color:var(--fallback-inc,oklch(var(--inc)/0))}.focus\:outline-info-content\/10:focus{outline-color:var(--fallback-inc,oklch(var(--inc)/.1))}.focus\:outline-info-content\/100:focus{outline-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:outline-info-content\/20:focus{outline-color:var(--fallback-inc,oklch(var(--inc)/.2))}.focus\:outline-info-content\/25:focus{outline-color:var(--fallback-inc,oklch(var(--inc)/.25))}.focus\:outline-info-content\/30:focus{outline-color:var(--fallback-inc,oklch(var(--inc)/.3))}.focus\:outline-info-content\/40:focus{outline-color:var(--fallback-inc,oklch(var(--inc)/.4))}.focus\:outline-info-content\/5:focus{outline-color:var(--fallback-inc,oklch(var(--inc)/.05))}.focus\:outline-info-content\/50:focus{outline-color:var(--fallback-inc,oklch(var(--inc)/.5))}.focus\:outline-info-content\/60:focus{outline-color:var(--fallback-inc,oklch(var(--inc)/.6))}.focus\:outline-info-content\/70:focus{outline-color:var(--fallback-inc,oklch(var(--inc)/.7))}.focus\:outline-info-content\/75:focus{outline-color:var(--fallback-inc,oklch(var(--inc)/.75))}.focus\:outline-info-content\/80:focus{outline-color:var(--fallback-inc,oklch(var(--inc)/.8))}.focus\:outline-info-content\/90:focus{outline-color:var(--fallback-inc,oklch(var(--inc)/.9))}.focus\:outline-info-content\/95:focus{outline-color:var(--fallback-inc,oklch(var(--inc)/.95))}.focus\:outline-info\/0:focus{outline-color:var(--fallback-in,oklch(var(--in)/0))}.focus\:outline-info\/10:focus{outline-color:var(--fallback-in,oklch(var(--in)/.1))}.focus\:outline-info\/100:focus{outline-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:outline-info\/20:focus{outline-color:var(--fallback-in,oklch(var(--in)/.2))}.focus\:outline-info\/25:focus{outline-color:var(--fallback-in,oklch(var(--in)/.25))}.focus\:outline-info\/30:focus{outline-color:var(--fallback-in,oklch(var(--in)/.3))}.focus\:outline-info\/40:focus{outline-color:var(--fallback-in,oklch(var(--in)/.4))}.focus\:outline-info\/5:focus{outline-color:var(--fallback-in,oklch(var(--in)/.05))}.focus\:outline-info\/50:focus{outline-color:var(--fallback-in,oklch(var(--in)/.5))}.focus\:outline-info\/60:focus{outline-color:var(--fallback-in,oklch(var(--in)/.6))}.focus\:outline-info\/70:focus{outline-color:var(--fallback-in,oklch(var(--in)/.7))}.focus\:outline-info\/75:focus{outline-color:var(--fallback-in,oklch(var(--in)/.75))}.focus\:outline-info\/80:focus{outline-color:var(--fallback-in,oklch(var(--in)/.8))}.focus\:outline-info\/90:focus{outline-color:var(--fallback-in,oklch(var(--in)/.9))}.focus\:outline-info\/95:focus{outline-color:var(--fallback-in,oklch(var(--in)/.95))}.focus\:outline-neutral:focus{outline-color:var(--fallback-n,oklch(var(--n)/1))}.focus\:outline-neutral-content:focus{outline-color:var(--fallback-nc,oklch(var(--nc)/1))}.focus\:outline-neutral-content\/0:focus{outline-color:var(--fallback-nc,oklch(var(--nc)/0))}.focus\:outline-neutral-content\/10:focus{outline-color:var(--fallback-nc,oklch(var(--nc)/.1))}.focus\:outline-neutral-content\/100:focus{outline-color:var(--fallback-nc,oklch(var(--nc)/1))}.focus\:outline-neutral-content\/20:focus{outline-color:var(--fallback-nc,oklch(var(--nc)/.2))}.focus\:outline-neutral-content\/25:focus{outline-color:var(--fallback-nc,oklch(var(--nc)/.25))}.focus\:outline-neutral-content\/30:focus{outline-color:var(--fallback-nc,oklch(var(--nc)/.3))}.focus\:outline-neutral-content\/40:focus{outline-color:var(--fallback-nc,oklch(var(--nc)/.4))}.focus\:outline-neutral-content\/5:focus{outline-color:var(--fallback-nc,oklch(var(--nc)/.05))}.focus\:outline-neutral-content\/50:focus{outline-color:var(--fallback-nc,oklch(var(--nc)/.5))}.focus\:outline-neutral-content\/60:focus{outline-color:var(--fallback-nc,oklch(var(--nc)/.6))}.focus\:outline-neutral-content\/70:focus{outline-color:var(--fallback-nc,oklch(var(--nc)/.7))}.focus\:outline-neutral-content\/75:focus{outline-color:var(--fallback-nc,oklch(var(--nc)/.75))}.focus\:outline-neutral-content\/80:focus{outline-color:var(--fallback-nc,oklch(var(--nc)/.8))}.focus\:outline-neutral-content\/90:focus{outline-color:var(--fallback-nc,oklch(var(--nc)/.9))}.focus\:outline-neutral-content\/95:focus{outline-color:var(--fallback-nc,oklch(var(--nc)/.95))}.focus\:outline-neutral\/0:focus{outline-color:var(--fallback-n,oklch(var(--n)/0))}.focus\:outline-neutral\/10:focus{outline-color:var(--fallback-n,oklch(var(--n)/.1))}.focus\:outline-neutral\/100:focus{outline-color:var(--fallback-n,oklch(var(--n)/1))}.focus\:outline-neutral\/20:focus{outline-color:var(--fallback-n,oklch(var(--n)/.2))}.focus\:outline-neutral\/25:focus{outline-color:var(--fallback-n,oklch(var(--n)/.25))}.focus\:outline-neutral\/30:focus{outline-color:var(--fallback-n,oklch(var(--n)/.3))}.focus\:outline-neutral\/40:focus{outline-color:var(--fallback-n,oklch(var(--n)/.4))}.focus\:outline-neutral\/5:focus{outline-color:var(--fallback-n,oklch(var(--n)/.05))}.focus\:outline-neutral\/50:focus{outline-color:var(--fallback-n,oklch(var(--n)/.5))}.focus\:outline-neutral\/60:focus{outline-color:var(--fallback-n,oklch(var(--n)/.6))}.focus\:outline-neutral\/70:focus{outline-color:var(--fallback-n,oklch(var(--n)/.7))}.focus\:outline-neutral\/75:focus{outline-color:var(--fallback-n,oklch(var(--n)/.75))}.focus\:outline-neutral\/80:focus{outline-color:var(--fallback-n,oklch(var(--n)/.8))}.focus\:outline-neutral\/90:focus{outline-color:var(--fallback-n,oklch(var(--n)/.9))}.focus\:outline-neutral\/95:focus{outline-color:var(--fallback-n,oklch(var(--n)/.95))}.focus\:outline-primary:focus{outline-color:var(--fallback-p,oklch(var(--p)/1))}.focus\:outline-primary-content:focus{outline-color:var(--fallback-pc,oklch(var(--pc)/1))}.focus\:outline-primary-content\/0:focus{outline-color:var(--fallback-pc,oklch(var(--pc)/0))}.focus\:outline-primary-content\/10:focus{outline-color:var(--fallback-pc,oklch(var(--pc)/.1))}.focus\:outline-primary-content\/100:focus{outline-color:var(--fallback-pc,oklch(var(--pc)/1))}.focus\:outline-primary-content\/20:focus{outline-color:var(--fallback-pc,oklch(var(--pc)/.2))}.focus\:outline-primary-content\/25:focus{outline-color:var(--fallback-pc,oklch(var(--pc)/.25))}.focus\:outline-primary-content\/30:focus{outline-color:var(--fallback-pc,oklch(var(--pc)/.3))}.focus\:outline-primary-content\/40:focus{outline-color:var(--fallback-pc,oklch(var(--pc)/.4))}.focus\:outline-primary-content\/5:focus{outline-color:var(--fallback-pc,oklch(var(--pc)/.05))}.focus\:outline-primary-content\/50:focus{outline-color:var(--fallback-pc,oklch(var(--pc)/.5))}.focus\:outline-primary-content\/60:focus{outline-color:var(--fallback-pc,oklch(var(--pc)/.6))}.focus\:outline-primary-content\/70:focus{outline-color:var(--fallback-pc,oklch(var(--pc)/.7))}.focus\:outline-primary-content\/75:focus{outline-color:var(--fallback-pc,oklch(var(--pc)/.75))}.focus\:outline-primary-content\/80:focus{outline-color:var(--fallback-pc,oklch(var(--pc)/.8))}.focus\:outline-primary-content\/90:focus{outline-color:var(--fallback-pc,oklch(var(--pc)/.9))}.focus\:outline-primary-content\/95:focus{outline-color:var(--fallback-pc,oklch(var(--pc)/.95))}.focus\:outline-primary\/0:focus{outline-color:var(--fallback-p,oklch(var(--p)/0))}.focus\:outline-primary\/10:focus{outline-color:var(--fallback-p,oklch(var(--p)/.1))}.focus\:outline-primary\/100:focus{outline-color:var(--fallback-p,oklch(var(--p)/1))}.focus\:outline-primary\/20:focus{outline-color:var(--fallback-p,oklch(var(--p)/.2))}.focus\:outline-primary\/25:focus{outline-color:var(--fallback-p,oklch(var(--p)/.25))}.focus\:outline-primary\/30:focus{outline-color:var(--fallback-p,oklch(var(--p)/.3))}.focus\:outline-primary\/40:focus{outline-color:var(--fallback-p,oklch(var(--p)/.4))}.focus\:outline-primary\/5:focus{outline-color:var(--fallback-p,oklch(var(--p)/.05))}.focus\:outline-primary\/50:focus{outline-color:var(--fallback-p,oklch(var(--p)/.5))}.focus\:outline-primary\/60:focus{outline-color:var(--fallback-p,oklch(var(--p)/.6))}.focus\:outline-primary\/70:focus{outline-color:var(--fallback-p,oklch(var(--p)/.7))}.focus\:outline-primary\/75:focus{outline-color:var(--fallback-p,oklch(var(--p)/.75))}.focus\:outline-primary\/80:focus{outline-color:var(--fallback-p,oklch(var(--p)/.8))}.focus\:outline-primary\/90:focus{outline-color:var(--fallback-p,oklch(var(--p)/.9))}.focus\:outline-primary\/95:focus{outline-color:var(--fallback-p,oklch(var(--p)/.95))}.focus\:outline-secondary:focus{outline-color:var(--fallback-s,oklch(var(--s)/1))}.focus\:outline-secondary-content:focus{outline-color:var(--fallback-sc,oklch(var(--sc)/1))}.focus\:outline-secondary-content\/0:focus{outline-color:var(--fallback-sc,oklch(var(--sc)/0))}.focus\:outline-secondary-content\/10:focus{outline-color:var(--fallback-sc,oklch(var(--sc)/.1))}.focus\:outline-secondary-content\/100:focus{outline-color:var(--fallback-sc,oklch(var(--sc)/1))}.focus\:outline-secondary-content\/20:focus{outline-color:var(--fallback-sc,oklch(var(--sc)/.2))}.focus\:outline-secondary-content\/25:focus{outline-color:var(--fallback-sc,oklch(var(--sc)/.25))}.focus\:outline-secondary-content\/30:focus{outline-color:var(--fallback-sc,oklch(var(--sc)/.3))}.focus\:outline-secondary-content\/40:focus{outline-color:var(--fallback-sc,oklch(var(--sc)/.4))}.focus\:outline-secondary-content\/5:focus{outline-color:var(--fallback-sc,oklch(var(--sc)/.05))}.focus\:outline-secondary-content\/50:focus{outline-color:var(--fallback-sc,oklch(var(--sc)/.5))}.focus\:outline-secondary-content\/60:focus{outline-color:var(--fallback-sc,oklch(var(--sc)/.6))}.focus\:outline-secondary-content\/70:focus{outline-color:var(--fallback-sc,oklch(var(--sc)/.7))}.focus\:outline-secondary-content\/75:focus{outline-color:var(--fallback-sc,oklch(var(--sc)/.75))}.focus\:outline-secondary-content\/80:focus{outline-color:var(--fallback-sc,oklch(var(--sc)/.8))}.focus\:outline-secondary-content\/90:focus{outline-color:var(--fallback-sc,oklch(var(--sc)/.9))}.focus\:outline-secondary-content\/95:focus{outline-color:var(--fallback-sc,oklch(var(--sc)/.95))}.focus\:outline-secondary\/0:focus{outline-color:var(--fallback-s,oklch(var(--s)/0))}.focus\:outline-secondary\/10:focus{outline-color:var(--fallback-s,oklch(var(--s)/.1))}.focus\:outline-secondary\/100:focus{outline-color:var(--fallback-s,oklch(var(--s)/1))}.focus\:outline-secondary\/20:focus{outline-color:var(--fallback-s,oklch(var(--s)/.2))}.focus\:outline-secondary\/25:focus{outline-color:var(--fallback-s,oklch(var(--s)/.25))}.focus\:outline-secondary\/30:focus{outline-color:var(--fallback-s,oklch(var(--s)/.3))}.focus\:outline-secondary\/40:focus{outline-color:var(--fallback-s,oklch(var(--s)/.4))}.focus\:outline-secondary\/5:focus{outline-color:var(--fallback-s,oklch(var(--s)/.05))}.focus\:outline-secondary\/50:focus{outline-color:var(--fallback-s,oklch(var(--s)/.5))}.focus\:outline-secondary\/60:focus{outline-color:var(--fallback-s,oklch(var(--s)/.6))}.focus\:outline-secondary\/70:focus{outline-color:var(--fallback-s,oklch(var(--s)/.7))}.focus\:outline-secondary\/75:focus{outline-color:var(--fallback-s,oklch(var(--s)/.75))}.focus\:outline-secondary\/80:focus{outline-color:var(--fallback-s,oklch(var(--s)/.8))}.focus\:outline-secondary\/90:focus{outline-color:var(--fallback-s,oklch(var(--s)/.9))}.focus\:outline-secondary\/95:focus{outline-color:var(--fallback-s,oklch(var(--s)/.95))}.focus\:outline-success:focus{outline-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:outline-success-content:focus{outline-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:outline-success-content\/0:focus{outline-color:var(--fallback-suc,oklch(var(--suc)/0))}.focus\:outline-success-content\/10:focus{outline-color:var(--fallback-suc,oklch(var(--suc)/.1))}.focus\:outline-success-content\/100:focus{outline-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:outline-success-content\/20:focus{outline-color:var(--fallback-suc,oklch(var(--suc)/.2))}.focus\:outline-success-content\/25:focus{outline-color:var(--fallback-suc,oklch(var(--suc)/.25))}.focus\:outline-success-content\/30:focus{outline-color:var(--fallback-suc,oklch(var(--suc)/.3))}.focus\:outline-success-content\/40:focus{outline-color:var(--fallback-suc,oklch(var(--suc)/.4))}.focus\:outline-success-content\/5:focus{outline-color:var(--fallback-suc,oklch(var(--suc)/.05))}.focus\:outline-success-content\/50:focus{outline-color:var(--fallback-suc,oklch(var(--suc)/.5))}.focus\:outline-success-content\/60:focus{outline-color:var(--fallback-suc,oklch(var(--suc)/.6))}.focus\:outline-success-content\/70:focus{outline-color:var(--fallback-suc,oklch(var(--suc)/.7))}.focus\:outline-success-content\/75:focus{outline-color:var(--fallback-suc,oklch(var(--suc)/.75))}.focus\:outline-success-content\/80:focus{outline-color:var(--fallback-suc,oklch(var(--suc)/.8))}.focus\:outline-success-content\/90:focus{outline-color:var(--fallback-suc,oklch(var(--suc)/.9))}.focus\:outline-success-content\/95:focus{outline-color:var(--fallback-suc,oklch(var(--suc)/.95))}.focus\:outline-success\/0:focus{outline-color:var(--fallback-su,oklch(var(--su)/0))}.focus\:outline-success\/10:focus{outline-color:var(--fallback-su,oklch(var(--su)/.1))}.focus\:outline-success\/100:focus{outline-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:outline-success\/20:focus{outline-color:var(--fallback-su,oklch(var(--su)/.2))}.focus\:outline-success\/25:focus{outline-color:var(--fallback-su,oklch(var(--su)/.25))}.focus\:outline-success\/30:focus{outline-color:var(--fallback-su,oklch(var(--su)/.3))}.focus\:outline-success\/40:focus{outline-color:var(--fallback-su,oklch(var(--su)/.4))}.focus\:outline-success\/5:focus{outline-color:var(--fallback-su,oklch(var(--su)/.05))}.focus\:outline-success\/50:focus{outline-color:var(--fallback-su,oklch(var(--su)/.5))}.focus\:outline-success\/60:focus{outline-color:var(--fallback-su,oklch(var(--su)/.6))}.focus\:outline-success\/70:focus{outline-color:var(--fallback-su,oklch(var(--su)/.7))}.focus\:outline-success\/75:focus{outline-color:var(--fallback-su,oklch(var(--su)/.75))}.focus\:outline-success\/80:focus{outline-color:var(--fallback-su,oklch(var(--su)/.8))}.focus\:outline-success\/90:focus{outline-color:var(--fallback-su,oklch(var(--su)/.9))}.focus\:outline-success\/95:focus{outline-color:var(--fallback-su,oklch(var(--su)/.95))}.focus\:outline-warning:focus{outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:outline-warning-content:focus{outline-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:outline-warning-content\/0:focus{outline-color:var(--fallback-wac,oklch(var(--wac)/0))}.focus\:outline-warning-content\/10:focus{outline-color:var(--fallback-wac,oklch(var(--wac)/.1))}.focus\:outline-warning-content\/100:focus{outline-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:outline-warning-content\/20:focus{outline-color:var(--fallback-wac,oklch(var(--wac)/.2))}.focus\:outline-warning-content\/25:focus{outline-color:var(--fallback-wac,oklch(var(--wac)/.25))}.focus\:outline-warning-content\/30:focus{outline-color:var(--fallback-wac,oklch(var(--wac)/.3))}.focus\:outline-warning-content\/40:focus{outline-color:var(--fallback-wac,oklch(var(--wac)/.4))}.focus\:outline-warning-content\/5:focus{outline-color:var(--fallback-wac,oklch(var(--wac)/.05))}.focus\:outline-warning-content\/50:focus{outline-color:var(--fallback-wac,oklch(var(--wac)/.5))}.focus\:outline-warning-content\/60:focus{outline-color:var(--fallback-wac,oklch(var(--wac)/.6))}.focus\:outline-warning-content\/70:focus{outline-color:var(--fallback-wac,oklch(var(--wac)/.7))}.focus\:outline-warning-content\/75:focus{outline-color:var(--fallback-wac,oklch(var(--wac)/.75))}.focus\:outline-warning-content\/80:focus{outline-color:var(--fallback-wac,oklch(var(--wac)/.8))}.focus\:outline-warning-content\/90:focus{outline-color:var(--fallback-wac,oklch(var(--wac)/.9))}.focus\:outline-warning-content\/95:focus{outline-color:var(--fallback-wac,oklch(var(--wac)/.95))}.focus\:outline-warning\/0:focus{outline-color:var(--fallback-wa,oklch(var(--wa)/0))}.focus\:outline-warning\/10:focus{outline-color:var(--fallback-wa,oklch(var(--wa)/.1))}.focus\:outline-warning\/100:focus{outline-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:outline-warning\/20:focus{outline-color:var(--fallback-wa,oklch(var(--wa)/.2))}.focus\:outline-warning\/25:focus{outline-color:var(--fallback-wa,oklch(var(--wa)/.25))}.focus\:outline-warning\/30:focus{outline-color:var(--fallback-wa,oklch(var(--wa)/.3))}.focus\:outline-warning\/40:focus{outline-color:var(--fallback-wa,oklch(var(--wa)/.4))}.focus\:outline-warning\/5:focus{outline-color:var(--fallback-wa,oklch(var(--wa)/.05))}.focus\:outline-warning\/50:focus{outline-color:var(--fallback-wa,oklch(var(--wa)/.5))}.focus\:outline-warning\/60:focus{outline-color:var(--fallback-wa,oklch(var(--wa)/.6))}.focus\:outline-warning\/70:focus{outline-color:var(--fallback-wa,oklch(var(--wa)/.7))}.focus\:outline-warning\/75:focus{outline-color:var(--fallback-wa,oklch(var(--wa)/.75))}.focus\:outline-warning\/80:focus{outline-color:var(--fallback-wa,oklch(var(--wa)/.8))}.focus\:outline-warning\/90:focus{outline-color:var(--fallback-wa,oklch(var(--wa)/.9))}.focus\:outline-warning\/95:focus{outline-color:var(--fallback-wa,oklch(var(--wa)/.95))}.focus\:ring-base-100:focus{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:ring-base-100\/0:focus{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0))}.focus\:ring-base-100\/10:focus{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.1))}.focus\:ring-base-100\/100:focus{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:ring-base-100\/20:focus{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.2))}.focus\:ring-base-100\/25:focus{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.25))}.focus\:ring-base-100\/30:focus{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.3))}.focus\:ring-base-100\/40:focus{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.4))}.focus\:ring-base-100\/5:focus{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.05))}.focus\:ring-base-100\/50:focus{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.5))}.focus\:ring-base-100\/60:focus{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.6))}.focus\:ring-base-100\/70:focus{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.7))}.focus\:ring-base-100\/75:focus{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.75))}.focus\:ring-base-100\/80:focus{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.8))}.focus\:ring-base-100\/90:focus{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.9))}.focus\:ring-base-100\/95:focus{--tw-ring-color:var(--fallback-b1,oklch(var(--b1)/0.95))}.focus\:ring-base-200:focus{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:ring-base-200\/0:focus{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0))}.focus\:ring-base-200\/10:focus{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.1))}.focus\:ring-base-200\/100:focus{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:ring-base-200\/20:focus{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.2))}.focus\:ring-base-200\/25:focus{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.25))}.focus\:ring-base-200\/30:focus{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.3))}.focus\:ring-base-200\/40:focus{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.4))}.focus\:ring-base-200\/5:focus{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.05))}.focus\:ring-base-200\/50:focus{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.5))}.focus\:ring-base-200\/60:focus{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.6))}.focus\:ring-base-200\/70:focus{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.7))}.focus\:ring-base-200\/75:focus{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.75))}.focus\:ring-base-200\/80:focus{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.8))}.focus\:ring-base-200\/90:focus{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.9))}.focus\:ring-base-200\/95:focus{--tw-ring-color:var(--fallback-b2,oklch(var(--b2)/0.95))}.focus\:ring-base-300:focus{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:ring-base-300\/0:focus{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0))}.focus\:ring-base-300\/10:focus{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.1))}.focus\:ring-base-300\/100:focus{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:ring-base-300\/20:focus{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.2))}.focus\:ring-base-300\/25:focus{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.25))}.focus\:ring-base-300\/30:focus{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.3))}.focus\:ring-base-300\/40:focus{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.4))}.focus\:ring-base-300\/5:focus{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.05))}.focus\:ring-base-300\/50:focus{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.5))}.focus\:ring-base-300\/60:focus{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.6))}.focus\:ring-base-300\/70:focus{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.7))}.focus\:ring-base-300\/75:focus{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.75))}.focus\:ring-base-300\/80:focus{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.8))}.focus\:ring-base-300\/90:focus{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.9))}.focus\:ring-base-300\/95:focus{--tw-ring-color:var(--fallback-b3,oklch(var(--b3)/0.95))}.focus\:ring-base-content:focus{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:ring-base-content\/0:focus{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0))}.focus\:ring-base-content\/10:focus{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.1))}.focus\:ring-base-content\/100:focus{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:ring-base-content\/20:focus{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.2))}.focus\:ring-base-content\/25:focus{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.25))}.focus\:ring-base-content\/30:focus{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.3))}.focus\:ring-base-content\/40:focus{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.4))}.focus\:ring-base-content\/5:focus{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.05))}.focus\:ring-base-content\/50:focus{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.5))}.focus\:ring-base-content\/60:focus{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.6))}.focus\:ring-base-content\/70:focus{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.7))}.focus\:ring-base-content\/75:focus{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.75))}.focus\:ring-base-content\/80:focus{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.8))}.focus\:ring-base-content\/90:focus{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.9))}.focus\:ring-base-content\/95:focus{--tw-ring-color:var(--fallback-bc,oklch(var(--bc)/0.95))}.focus\:ring-error:focus{--tw-ring-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:ring-error-content:focus{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:ring-error-content\/0:focus{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0))}.focus\:ring-error-content\/10:focus{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.1))}.focus\:ring-error-content\/100:focus{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:ring-error-content\/20:focus{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.2))}.focus\:ring-error-content\/25:focus{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.25))}.focus\:ring-error-content\/30:focus{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.3))}.focus\:ring-error-content\/40:focus{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.4))}.focus\:ring-error-content\/5:focus{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.05))}.focus\:ring-error-content\/50:focus{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.5))}.focus\:ring-error-content\/60:focus{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.6))}.focus\:ring-error-content\/70:focus{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.7))}.focus\:ring-error-content\/75:focus{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.75))}.focus\:ring-error-content\/80:focus{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.8))}.focus\:ring-error-content\/90:focus{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.9))}.focus\:ring-error-content\/95:focus{--tw-ring-color:var(--fallback-erc,oklch(var(--erc)/0.95))}.focus\:ring-error\/0:focus{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0))}.focus\:ring-error\/10:focus{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.1))}.focus\:ring-error\/100:focus{--tw-ring-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:ring-error\/20:focus{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.2))}.focus\:ring-error\/25:focus{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.25))}.focus\:ring-error\/30:focus{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.3))}.focus\:ring-error\/40:focus{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.4))}.focus\:ring-error\/5:focus{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.05))}.focus\:ring-error\/50:focus{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.5))}.focus\:ring-error\/60:focus{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.6))}.focus\:ring-error\/70:focus{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.7))}.focus\:ring-error\/75:focus{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.75))}.focus\:ring-error\/80:focus{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.8))}.focus\:ring-error\/90:focus{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.9))}.focus\:ring-error\/95:focus{--tw-ring-color:var(--fallback-er,oklch(var(--er)/0.95))}.focus\:ring-info:focus{--tw-ring-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:ring-info-content:focus{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:ring-info-content\/0:focus{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0))}.focus\:ring-info-content\/10:focus{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.1))}.focus\:ring-info-content\/100:focus{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:ring-info-content\/20:focus{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.2))}.focus\:ring-info-content\/25:focus{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.25))}.focus\:ring-info-content\/30:focus{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.3))}.focus\:ring-info-content\/40:focus{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.4))}.focus\:ring-info-content\/5:focus{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.05))}.focus\:ring-info-content\/50:focus{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.5))}.focus\:ring-info-content\/60:focus{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.6))}.focus\:ring-info-content\/70:focus{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.7))}.focus\:ring-info-content\/75:focus{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.75))}.focus\:ring-info-content\/80:focus{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.8))}.focus\:ring-info-content\/90:focus{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.9))}.focus\:ring-info-content\/95:focus{--tw-ring-color:var(--fallback-inc,oklch(var(--inc)/0.95))}.focus\:ring-info\/0:focus{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0))}.focus\:ring-info\/10:focus{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.1))}.focus\:ring-info\/100:focus{--tw-ring-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:ring-info\/20:focus{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.2))}.focus\:ring-info\/25:focus{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.25))}.focus\:ring-info\/30:focus{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.3))}.focus\:ring-info\/40:focus{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.4))}.focus\:ring-info\/5:focus{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.05))}.focus\:ring-info\/50:focus{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.5))}.focus\:ring-info\/60:focus{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.6))}.focus\:ring-info\/70:focus{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.7))}.focus\:ring-info\/75:focus{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.75))}.focus\:ring-info\/80:focus{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.8))}.focus\:ring-info\/90:focus{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.9))}.focus\:ring-info\/95:focus{--tw-ring-color:var(--fallback-in,oklch(var(--in)/0.95))}.focus\:ring-success:focus{--tw-ring-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:ring-success-content:focus{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:ring-success-content\/0:focus{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0))}.focus\:ring-success-content\/10:focus{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.1))}.focus\:ring-success-content\/100:focus{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:ring-success-content\/20:focus{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.2))}.focus\:ring-success-content\/25:focus{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.25))}.focus\:ring-success-content\/30:focus{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.3))}.focus\:ring-success-content\/40:focus{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.4))}.focus\:ring-success-content\/5:focus{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.05))}.focus\:ring-success-content\/50:focus{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.5))}.focus\:ring-success-content\/60:focus{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.6))}.focus\:ring-success-content\/70:focus{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.7))}.focus\:ring-success-content\/75:focus{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.75))}.focus\:ring-success-content\/80:focus{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.8))}.focus\:ring-success-content\/90:focus{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.9))}.focus\:ring-success-content\/95:focus{--tw-ring-color:var(--fallback-suc,oklch(var(--suc)/0.95))}.focus\:ring-success\/0:focus{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0))}.focus\:ring-success\/10:focus{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.1))}.focus\:ring-success\/100:focus{--tw-ring-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:ring-success\/20:focus{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.2))}.focus\:ring-success\/25:focus{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.25))}.focus\:ring-success\/30:focus{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.3))}.focus\:ring-success\/40:focus{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.4))}.focus\:ring-success\/5:focus{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.05))}.focus\:ring-success\/50:focus{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.5))}.focus\:ring-success\/60:focus{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.6))}.focus\:ring-success\/70:focus{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.7))}.focus\:ring-success\/75:focus{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.75))}.focus\:ring-success\/80:focus{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.8))}.focus\:ring-success\/90:focus{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.9))}.focus\:ring-success\/95:focus{--tw-ring-color:var(--fallback-su,oklch(var(--su)/0.95))}.focus\:ring-warning:focus{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:ring-warning-content:focus{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:ring-warning-content\/0:focus{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0))}.focus\:ring-warning-content\/10:focus{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.1))}.focus\:ring-warning-content\/100:focus{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:ring-warning-content\/20:focus{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.2))}.focus\:ring-warning-content\/25:focus{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.25))}.focus\:ring-warning-content\/30:focus{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.3))}.focus\:ring-warning-content\/40:focus{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.4))}.focus\:ring-warning-content\/5:focus{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.05))}.focus\:ring-warning-content\/50:focus{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.5))}.focus\:ring-warning-content\/60:focus{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.6))}.focus\:ring-warning-content\/70:focus{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.7))}.focus\:ring-warning-content\/75:focus{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.75))}.focus\:ring-warning-content\/80:focus{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.8))}.focus\:ring-warning-content\/90:focus{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.9))}.focus\:ring-warning-content\/95:focus{--tw-ring-color:var(--fallback-wac,oklch(var(--wac)/0.95))}.focus\:ring-warning\/0:focus{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0))}.focus\:ring-warning\/10:focus{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.1))}.focus\:ring-warning\/100:focus{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:ring-warning\/20:focus{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.2))}.focus\:ring-warning\/25:focus{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.25))}.focus\:ring-warning\/30:focus{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.3))}.focus\:ring-warning\/40:focus{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.4))}.focus\:ring-warning\/5:focus{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.05))}.focus\:ring-warning\/50:focus{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.5))}.focus\:ring-warning\/60:focus{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.6))}.focus\:ring-warning\/70:focus{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.7))}.focus\:ring-warning\/75:focus{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.75))}.focus\:ring-warning\/80:focus{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.8))}.focus\:ring-warning\/90:focus{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.9))}.focus\:ring-warning\/95:focus{--tw-ring-color:var(--fallback-wa,oklch(var(--wa)/0.95))}.focus\:ring-offset-base-100:focus{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:ring-offset-base-100\/0:focus{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0))}.focus\:ring-offset-base-100\/10:focus{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.1))}.focus\:ring-offset-base-100\/100:focus{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/1))}.focus\:ring-offset-base-100\/20:focus{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.2))}.focus\:ring-offset-base-100\/25:focus{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.25))}.focus\:ring-offset-base-100\/30:focus{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.3))}.focus\:ring-offset-base-100\/40:focus{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.4))}.focus\:ring-offset-base-100\/5:focus{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.05))}.focus\:ring-offset-base-100\/50:focus{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.5))}.focus\:ring-offset-base-100\/60:focus{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.6))}.focus\:ring-offset-base-100\/70:focus{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.7))}.focus\:ring-offset-base-100\/75:focus{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.75))}.focus\:ring-offset-base-100\/80:focus{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.8))}.focus\:ring-offset-base-100\/90:focus{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.9))}.focus\:ring-offset-base-100\/95:focus{--tw-ring-offset-color:var(--fallback-b1,oklch(var(--b1)/0.95))}.focus\:ring-offset-base-200:focus{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:ring-offset-base-200\/0:focus{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0))}.focus\:ring-offset-base-200\/10:focus{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.1))}.focus\:ring-offset-base-200\/100:focus{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/1))}.focus\:ring-offset-base-200\/20:focus{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.2))}.focus\:ring-offset-base-200\/25:focus{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.25))}.focus\:ring-offset-base-200\/30:focus{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.3))}.focus\:ring-offset-base-200\/40:focus{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.4))}.focus\:ring-offset-base-200\/5:focus{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.05))}.focus\:ring-offset-base-200\/50:focus{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.5))}.focus\:ring-offset-base-200\/60:focus{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.6))}.focus\:ring-offset-base-200\/70:focus{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.7))}.focus\:ring-offset-base-200\/75:focus{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.75))}.focus\:ring-offset-base-200\/80:focus{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.8))}.focus\:ring-offset-base-200\/90:focus{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.9))}.focus\:ring-offset-base-200\/95:focus{--tw-ring-offset-color:var(--fallback-b2,oklch(var(--b2)/0.95))}.focus\:ring-offset-base-300:focus{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:ring-offset-base-300\/0:focus{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0))}.focus\:ring-offset-base-300\/10:focus{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.1))}.focus\:ring-offset-base-300\/100:focus{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/1))}.focus\:ring-offset-base-300\/20:focus{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.2))}.focus\:ring-offset-base-300\/25:focus{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.25))}.focus\:ring-offset-base-300\/30:focus{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.3))}.focus\:ring-offset-base-300\/40:focus{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.4))}.focus\:ring-offset-base-300\/5:focus{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.05))}.focus\:ring-offset-base-300\/50:focus{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.5))}.focus\:ring-offset-base-300\/60:focus{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.6))}.focus\:ring-offset-base-300\/70:focus{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.7))}.focus\:ring-offset-base-300\/75:focus{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.75))}.focus\:ring-offset-base-300\/80:focus{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.8))}.focus\:ring-offset-base-300\/90:focus{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.9))}.focus\:ring-offset-base-300\/95:focus{--tw-ring-offset-color:var(--fallback-b3,oklch(var(--b3)/0.95))}.focus\:ring-offset-base-content:focus{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:ring-offset-base-content\/0:focus{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0))}.focus\:ring-offset-base-content\/10:focus{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.1))}.focus\:ring-offset-base-content\/100:focus{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/1))}.focus\:ring-offset-base-content\/20:focus{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.2))}.focus\:ring-offset-base-content\/25:focus{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.25))}.focus\:ring-offset-base-content\/30:focus{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.3))}.focus\:ring-offset-base-content\/40:focus{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.4))}.focus\:ring-offset-base-content\/5:focus{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.05))}.focus\:ring-offset-base-content\/50:focus{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.5))}.focus\:ring-offset-base-content\/60:focus{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.6))}.focus\:ring-offset-base-content\/70:focus{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.7))}.focus\:ring-offset-base-content\/75:focus{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.75))}.focus\:ring-offset-base-content\/80:focus{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.8))}.focus\:ring-offset-base-content\/90:focus{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.9))}.focus\:ring-offset-base-content\/95:focus{--tw-ring-offset-color:var(--fallback-bc,oklch(var(--bc)/0.95))}.focus\:ring-offset-error:focus{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:ring-offset-error-content:focus{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:ring-offset-error-content\/0:focus{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0))}.focus\:ring-offset-error-content\/10:focus{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.1))}.focus\:ring-offset-error-content\/100:focus{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/1))}.focus\:ring-offset-error-content\/20:focus{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.2))}.focus\:ring-offset-error-content\/25:focus{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.25))}.focus\:ring-offset-error-content\/30:focus{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.3))}.focus\:ring-offset-error-content\/40:focus{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.4))}.focus\:ring-offset-error-content\/5:focus{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.05))}.focus\:ring-offset-error-content\/50:focus{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.5))}.focus\:ring-offset-error-content\/60:focus{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.6))}.focus\:ring-offset-error-content\/70:focus{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.7))}.focus\:ring-offset-error-content\/75:focus{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.75))}.focus\:ring-offset-error-content\/80:focus{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.8))}.focus\:ring-offset-error-content\/90:focus{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.9))}.focus\:ring-offset-error-content\/95:focus{--tw-ring-offset-color:var(--fallback-erc,oklch(var(--erc)/0.95))}.focus\:ring-offset-error\/0:focus{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0))}.focus\:ring-offset-error\/10:focus{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.1))}.focus\:ring-offset-error\/100:focus{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/1))}.focus\:ring-offset-error\/20:focus{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.2))}.focus\:ring-offset-error\/25:focus{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.25))}.focus\:ring-offset-error\/30:focus{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.3))}.focus\:ring-offset-error\/40:focus{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.4))}.focus\:ring-offset-error\/5:focus{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.05))}.focus\:ring-offset-error\/50:focus{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.5))}.focus\:ring-offset-error\/60:focus{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.6))}.focus\:ring-offset-error\/70:focus{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.7))}.focus\:ring-offset-error\/75:focus{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.75))}.focus\:ring-offset-error\/80:focus{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.8))}.focus\:ring-offset-error\/90:focus{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.9))}.focus\:ring-offset-error\/95:focus{--tw-ring-offset-color:var(--fallback-er,oklch(var(--er)/0.95))}.focus\:ring-offset-info:focus{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:ring-offset-info-content:focus{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:ring-offset-info-content\/0:focus{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0))}.focus\:ring-offset-info-content\/10:focus{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.1))}.focus\:ring-offset-info-content\/100:focus{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:ring-offset-info-content\/20:focus{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.2))}.focus\:ring-offset-info-content\/25:focus{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.25))}.focus\:ring-offset-info-content\/30:focus{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.3))}.focus\:ring-offset-info-content\/40:focus{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.4))}.focus\:ring-offset-info-content\/5:focus{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.05))}.focus\:ring-offset-info-content\/50:focus{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.5))}.focus\:ring-offset-info-content\/60:focus{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.6))}.focus\:ring-offset-info-content\/70:focus{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.7))}.focus\:ring-offset-info-content\/75:focus{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.75))}.focus\:ring-offset-info-content\/80:focus{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.8))}.focus\:ring-offset-info-content\/90:focus{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.9))}.focus\:ring-offset-info-content\/95:focus{--tw-ring-offset-color:var(--fallback-inc,oklch(var(--inc)/0.95))}.focus\:ring-offset-info\/0:focus{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0))}.focus\:ring-offset-info\/10:focus{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.1))}.focus\:ring-offset-info\/100:focus{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/1))}.focus\:ring-offset-info\/20:focus{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.2))}.focus\:ring-offset-info\/25:focus{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.25))}.focus\:ring-offset-info\/30:focus{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.3))}.focus\:ring-offset-info\/40:focus{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.4))}.focus\:ring-offset-info\/5:focus{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.05))}.focus\:ring-offset-info\/50:focus{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.5))}.focus\:ring-offset-info\/60:focus{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.6))}.focus\:ring-offset-info\/70:focus{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.7))}.focus\:ring-offset-info\/75:focus{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.75))}.focus\:ring-offset-info\/80:focus{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.8))}.focus\:ring-offset-info\/90:focus{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.9))}.focus\:ring-offset-info\/95:focus{--tw-ring-offset-color:var(--fallback-in,oklch(var(--in)/0.95))}.focus\:ring-offset-success:focus{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:ring-offset-success-content:focus{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:ring-offset-success-content\/0:focus{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0))}.focus\:ring-offset-success-content\/10:focus{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.1))}.focus\:ring-offset-success-content\/100:focus{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:ring-offset-success-content\/20:focus{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.2))}.focus\:ring-offset-success-content\/25:focus{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.25))}.focus\:ring-offset-success-content\/30:focus{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.3))}.focus\:ring-offset-success-content\/40:focus{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.4))}.focus\:ring-offset-success-content\/5:focus{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.05))}.focus\:ring-offset-success-content\/50:focus{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.5))}.focus\:ring-offset-success-content\/60:focus{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.6))}.focus\:ring-offset-success-content\/70:focus{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.7))}.focus\:ring-offset-success-content\/75:focus{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.75))}.focus\:ring-offset-success-content\/80:focus{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.8))}.focus\:ring-offset-success-content\/90:focus{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.9))}.focus\:ring-offset-success-content\/95:focus{--tw-ring-offset-color:var(--fallback-suc,oklch(var(--suc)/0.95))}.focus\:ring-offset-success\/0:focus{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0))}.focus\:ring-offset-success\/10:focus{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.1))}.focus\:ring-offset-success\/100:focus{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/1))}.focus\:ring-offset-success\/20:focus{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.2))}.focus\:ring-offset-success\/25:focus{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.25))}.focus\:ring-offset-success\/30:focus{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.3))}.focus\:ring-offset-success\/40:focus{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.4))}.focus\:ring-offset-success\/5:focus{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.05))}.focus\:ring-offset-success\/50:focus{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.5))}.focus\:ring-offset-success\/60:focus{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.6))}.focus\:ring-offset-success\/70:focus{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.7))}.focus\:ring-offset-success\/75:focus{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.75))}.focus\:ring-offset-success\/80:focus{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.8))}.focus\:ring-offset-success\/90:focus{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.9))}.focus\:ring-offset-success\/95:focus{--tw-ring-offset-color:var(--fallback-su,oklch(var(--su)/0.95))}.focus\:ring-offset-warning:focus{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:ring-offset-warning-content:focus{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:ring-offset-warning-content\/0:focus{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0))}.focus\:ring-offset-warning-content\/10:focus{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.1))}.focus\:ring-offset-warning-content\/100:focus{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:ring-offset-warning-content\/20:focus{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.2))}.focus\:ring-offset-warning-content\/25:focus{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.25))}.focus\:ring-offset-warning-content\/30:focus{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.3))}.focus\:ring-offset-warning-content\/40:focus{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.4))}.focus\:ring-offset-warning-content\/5:focus{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.05))}.focus\:ring-offset-warning-content\/50:focus{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.5))}.focus\:ring-offset-warning-content\/60:focus{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.6))}.focus\:ring-offset-warning-content\/70:focus{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.7))}.focus\:ring-offset-warning-content\/75:focus{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.75))}.focus\:ring-offset-warning-content\/80:focus{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.8))}.focus\:ring-offset-warning-content\/90:focus{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.9))}.focus\:ring-offset-warning-content\/95:focus{--tw-ring-offset-color:var(--fallback-wac,oklch(var(--wac)/0.95))}.focus\:ring-offset-warning\/0:focus{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0))}.focus\:ring-offset-warning\/10:focus{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.1))}.focus\:ring-offset-warning\/100:focus{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/1))}.focus\:ring-offset-warning\/20:focus{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.2))}.focus\:ring-offset-warning\/25:focus{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.25))}.focus\:ring-offset-warning\/30:focus{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.3))}.focus\:ring-offset-warning\/40:focus{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.4))}.focus\:ring-offset-warning\/5:focus{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.05))}.focus\:ring-offset-warning\/50:focus{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.5))}.focus\:ring-offset-warning\/60:focus{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.6))}.focus\:ring-offset-warning\/70:focus{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.7))}.focus\:ring-offset-warning\/75:focus{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.75))}.focus\:ring-offset-warning\/80:focus{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.8))}.focus\:ring-offset-warning\/90:focus{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.9))}.focus\:ring-offset-warning\/95:focus{--tw-ring-offset-color:var(--fallback-wa,oklch(var(--wa)/0.95))}.focus\:tooltip-info:focus{--tooltip-color:var(--fallback-in,oklch(var(--in)/1));--tooltip-text-color:var(--fallback-inc,oklch(var(--inc)/1))}.focus\:tooltip-success:focus{--tooltip-color:var(--fallback-su,oklch(var(--su)/1));--tooltip-text-color:var(--fallback-suc,oklch(var(--suc)/1))}.focus\:tooltip-warning:focus{--tooltip-color:var(--fallback-wa,oklch(var(--wa)/1));--tooltip-text-color:var(--fallback-wac,oklch(var(--wac)/1))}.focus\:tooltip-error:focus{--tooltip-color:var(--fallback-er,oklch(var(--er)/1));--tooltip-text-color:var(--fallback-erc,oklch(var(--erc)/1))}@media (min-width:640px){.sm\:tab-rounded-lg{--tab-radius:0.5rem}.sm\:badge-sm{height:1rem;font-size:.75rem;line-height:1rem;padding-left:.438rem;padding-right:.438rem}.sm\:badge-md{height:1.25rem;font-size:.875rem;line-height:1.25rem;padding-left:.563rem;padding-right:.563rem}.sm\:badge-lg{height:1.5rem;font-size:1rem;line-height:1.5rem;padding-left:.688rem;padding-right:.688rem}.sm\:btm-nav-sm{height:3rem}.sm\:btm-nav-sm>:where(.active){border-top-width:2px}.sm\:btm-nav-sm .btm-nav-label{font-size:.75rem;line-height:1rem}.sm\:btm-nav-md{height:4rem}.sm\:btm-nav-md>:where(.active){border-top-width:2px}.sm\:btm-nav-md .btm-nav-label{font-size:.875rem;line-height:1.25rem}.sm\:btm-nav-lg{height:5rem}.sm\:btm-nav-lg>:where(.active){border-top-width:4px}.sm\:btm-nav-lg .btm-nav-label{font-size:1rem;line-height:1.5rem}.sm\:btn-sm{height:2rem;min-height:2rem;padding-left:.75rem;padding-right:.75rem;font-size:.875rem}.sm\:btn-md{height:3rem;min-height:3rem;padding-left:1rem;padding-right:1rem;font-size:.875rem}.sm\:btn-lg{height:4rem;min-height:4rem;padding-left:1.5rem;padding-right:1.5rem;font-size:1.125rem}.btn-square:where(.sm\:btn-sm){height:2rem;width:2rem;padding:0}.btn-square:where(.sm\:btn-md){height:3rem;width:3rem;padding:0}.btn-square:where(.sm\:btn-lg){height:4rem;width:4rem;padding:0}.btn-circle:where(.sm\:btn-sm){height:2rem;width:2rem;border-radius:9999px;padding:0}.btn-circle:where(.sm\:btn-md){height:3rem;width:3rem;border-radius:9999px;padding:0}.btn-circle:where(.sm\:btn-lg){height:4rem;width:4rem;border-radius:9999px;padding:0}.sm\:card-side{align-items:stretch;flex-direction:row}.sm\:card-side :where(figure:first-child){overflow:hidden;border-start-start-radius:inherit;border-start-end-radius:unset;border-end-start-radius:inherit;border-end-end-radius:unset}.sm\:card-side :where(figure:last-child){overflow:hidden;border-start-start-radius:unset;border-start-end-radius:inherit;border-end-start-radius:unset;border-end-end-radius:inherit}.sm\:card-side figure>*{max-width:unset}:where(.sm\:card-side figure > *){width:100%;height:100%;object-fit:cover}.sm\:checkbox-sm[type=checkbox]{height:1.25rem;width:1.25rem}.sm\:checkbox-md[type=checkbox]{height:1.5rem;width:1.5rem}.sm\:checkbox-lg[type=checkbox]{height:2rem;width:2rem}.sm\:divider-horizontal{flex-direction:column}.sm\:divider-horizontal:before{height:100%;width:.125rem}.sm\:divider-horizontal:after{height:100%;width:.125rem}.sm\:divider-vertical{flex-direction:row}.sm\:divider-vertical:before{height:.125rem;width:100%}.sm\:divider-vertical:after{height:.125rem;width:100%}.sm\:drawer-open>.drawer-toggle{display:none}.sm\:drawer-open>.drawer-toggle~.drawer-side{pointer-events:auto;visibility:visible;position:sticky;display:block;width:auto;overscroll-behavior:auto}.sm\:drawer-open>.drawer-toggle~.drawer-side>:not(.drawer-overlay){transform:translateX(0)}[dir=rtl] .sm\:drawer-open>.drawer-toggle~.drawer-side>:not(.drawer-overlay){transform:translateX(0)}.sm\:drawer-open>.drawer-toggle:checked~.drawer-side{pointer-events:auto;visibility:visible}.sm\:drawer-open>.drawer-side{overflow-y:auto}html:has(.sm\:drawer-open.sm\:drawer-open){overflow-y:auto;scrollbar-gutter:auto}.sm\:file-input-sm{height:2rem;padding-inline-end:0.75rem;font-size:.875rem;line-height:1.25rem;line-height:2}.sm\:file-input-sm::file-selector-button{margin-right:.75rem;font-size:.875rem}.sm\:file-input-md{height:3rem;padding-inline-end:1rem;font-size:.875rem;line-height:1.25rem;line-height:2}.sm\:file-input-md::file-selector-button{margin-right:1rem;font-size:.875rem}.sm\:file-input-lg{height:4rem;padding-inline-end:1.5rem;font-size:1.125rem;line-height:1.75rem;line-height:2}.sm\:file-input-lg::file-selector-button{margin-right:1.5rem;font-size:1.125rem}.sm\:input-md{height:3rem;padding-left:1rem;padding-right:1rem;font-size:.875rem;line-height:1.25rem;line-height:2}.sm\:input-lg{height:4rem;padding-left:1.5rem;padding-right:1.5rem;font-size:1.125rem;line-height:1.75rem;line-height:2}.sm\:input-sm{height:2rem;padding-left:.75rem;padding-right:.75rem;font-size:.875rem;line-height:2rem}.sm\:kbd-sm{padding-left:.25rem;padding-right:.25rem;font-size:.875rem;line-height:1.25rem;min-height:1.6em;min-width:1.6em}.sm\:kbd-md{padding-left:.5rem;padding-right:.5rem;font-size:1rem;line-height:1.5rem;min-height:2.2em;min-width:2.2em}.sm\:kbd-lg{padding-left:1rem;padding-right:1rem;font-size:1.125rem;line-height:1.75rem;min-height:2.5em;min-width:2.5em}.sm\:modal-top{place-items:start}.sm\:modal-middle{place-items:center}.sm\:modal-bottom{place-items:end}.sm\:radio-sm[type=radio]{height:1.25rem;width:1.25rem}.sm\:radio-md[type=radio]{height:1.5rem;width:1.5rem}.sm\:radio-lg[type=radio]{height:2rem;width:2rem}.sm\:range-sm{height:1.25rem}.sm\:range-sm::-webkit-slider-runnable-track{height:.25rem}.sm\:range-sm::-moz-range-track{height:.25rem}.sm\:range-sm::-webkit-slider-thumb{height:1.25rem;width:1.25rem;--filler-offset:0.5rem}.sm\:range-sm::-moz-range-thumb{height:1.25rem;width:1.25rem;--filler-offset:0.5rem}.sm\:range-md{height:1.5rem}.sm\:range-md::-webkit-slider-runnable-track{height:.5rem}.sm\:range-md::-moz-range-track{height:.5rem}.sm\:range-md::-webkit-slider-thumb{height:1.5rem;width:1.5rem;--filler-offset:0.6rem}.sm\:range-md::-moz-range-thumb{height:1.5rem;width:1.5rem;--filler-offset:0.6rem}.sm\:range-lg{height:2rem}.sm\:range-lg::-webkit-slider-runnable-track{height:1rem}.sm\:range-lg::-moz-range-track{height:1rem}.sm\:range-lg::-webkit-slider-thumb{height:2rem;width:2rem;--filler-offset:1rem}.sm\:range-lg::-moz-range-thumb{height:2rem;width:2rem;--filler-offset:1rem}.sm\:rating-sm input{height:1rem;width:1rem}.sm\:rating-md input{height:1.5rem;width:1.5rem}.sm\:rating-lg input{height:2.5rem;width:2.5rem}.sm\:rating-sm.rating-half input:not(.rating-hidden){width:.5rem}.sm\:rating-md.rating-half input:not(.rating-hidden){width:.75rem}.sm\:rating-lg.rating-half input:not(.rating-hidden){width:1.25rem}.sm\:select-md{height:3rem;min-height:3rem;padding-left:1rem;padding-right:2.5rem;font-size:.875rem;line-height:1.25rem;line-height:2}[dir=rtl] .sm\:select-md{padding-left:2.5rem;padding-right:1rem}.sm\:select-lg{height:4rem;min-height:4rem;padding-left:1.5rem;padding-right:2rem;font-size:1.125rem;line-height:1.75rem;line-height:2}[dir=rtl] .sm\:select-lg{padding-left:2rem;padding-right:1.5rem}.sm\:select-sm{height:2rem;min-height:2rem;padding-left:.75rem;padding-right:2rem;font-size:.875rem;line-height:2rem}[dir=rtl] .sm\:select-sm{padding-left:2rem;padding-right:.75rem}.sm\:stats-horizontal{grid-auto-flow:column}.sm\:stats-vertical{grid-auto-flow:row}.sm\:tabs-md :where(.tab){height:2rem;font-size:.875rem;line-height:1.25rem;line-height:2;--tab-padding:1rem}.sm\:tabs-lg :where(.tab){height:3rem;font-size:1.125rem;line-height:1.75rem;line-height:2;--tab-padding:1.25rem}.sm\:tabs-sm :where(.tab){height:1.5rem;font-size:.875rem;line-height:.75rem;--tab-padding:0.75rem}.sm\:textarea-sm{padding-left:.75rem;padding-right:.75rem;padding-top:.25rem;padding-bottom:.25rem;font-size:.875rem;line-height:2rem}.sm\:textarea-md{padding-left:1rem;padding-right:1rem;padding-top:.75rem;padding-bottom:.75rem;font-size:.875rem;line-height:1.25rem;line-height:2}.sm\:textarea-lg{padding-left:1.5rem;padding-right:1.5rem;padding-top:1rem;padding-bottom:1rem;font-size:1.125rem;line-height:1.75rem;line-height:2}.sm\:toggle-sm[type=checkbox]{--handleoffset:0.75rem;height:1.25rem;width:2rem}.sm\:toggle-md[type=checkbox]{--handleoffset:1.5rem;height:1.5rem;width:3rem}.sm\:toggle-lg[type=checkbox]{--handleoffset:2rem;height:2rem;width:4rem}.sm\:card-compact .card-body{padding:1rem;font-size:.875rem;line-height:1.25rem}.sm\:card-compact .card-title{margin-bottom:.25rem}.sm\:card-normal .card-body{padding:var(--padding-card,2rem);font-size:1rem;line-height:1.5rem}.sm\:card-normal .card-title{margin-bottom:.75rem}.sm\:divider-horizontal{margin-left:1rem;margin-right:1rem;margin-top:0;margin-bottom:0;height:auto;width:1rem}.sm\:divider-vertical{margin-left:0;margin-right:0;margin-top:1rem;margin-bottom:1rem;height:1rem;width:auto}.sm\:drawer-open>.drawer-toggle~.drawer-side>.drawer-overlay{cursor:default;background-color:transparent}.sm\:menu-sm :where(li:not(.menu-title) > :not(ul,details,.menu-title)),.sm\:menu-sm :where(li:not(.menu-title) > details > summary:not(.menu-title)){border-radius:var(--rounded-btn,.5rem);padding-left:.75rem;padding-right:.75rem;padding-top:.25rem;padding-bottom:.25rem;font-size:.875rem;line-height:1.25rem}.sm\:menu-sm .menu-title{padding-left:.75rem;padding-right:.75rem;padding-top:.5rem;padding-bottom:.5rem}.sm\:menu-md :where(li:not(.menu-title) > :not(ul,details,.menu-title)),.sm\:menu-md :where(li:not(.menu-title) > details > summary:not(.menu-title)){border-radius:var(--rounded-btn,.5rem);padding-left:1rem;padding-right:1rem;padding-top:.5rem;padding-bottom:.5rem;font-size:.875rem;line-height:1.25rem}.sm\:menu-md .menu-title{padding-left:1rem;padding-right:1rem;padding-top:.5rem;padding-bottom:.5rem}.sm\:menu-lg :where(li:not(.menu-title) > :not(ul,details,.menu-title)),.sm\:menu-lg :where(li:not(.menu-title) > details > summary:not(.menu-title)){border-radius:var(--rounded-btn,.5rem);padding-left:1.5rem;padding-right:1.5rem;padding-top:.75rem;padding-bottom:.75rem;font-size:1.125rem;line-height:1.75rem}.sm\:menu-lg .menu-title{padding-left:1.5rem;padding-right:1.5rem;padding-top:.75rem;padding-bottom:.75rem}.sm\:modal-top :where(.modal-box){width:100%;max-width:none;--tw-translate-y:-2.5rem;--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-bottom-right-radius:var(--rounded-box,1rem);border-bottom-left-radius:var(--rounded-box,1rem);border-top-left-radius:0;border-top-right-radius:0}.sm\:modal-middle :where(.modal-box){width:91.666667%;max-width:32rem;--tw-translate-y:0px;--tw-scale-x:.9;--tw-scale-y:.9;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-top-left-radius:var(--rounded-box,1rem);border-top-right-radius:var(--rounded-box,1rem);border-bottom-right-radius:var(--rounded-box,1rem);border-bottom-left-radius:var(--rounded-box,1rem)}.sm\:modal-bottom :where(.modal-box){width:100%;max-width:none;--tw-translate-y:2.5rem;--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-top-left-radius:var(--rounded-box,1rem);border-top-right-radius:var(--rounded-box,1rem);border-bottom-right-radius:0;border-bottom-left-radius:0}.sm\:stats-horizontal>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-right-width:calc(1px * var(--tw-divide-x-reverse));border-left-width:calc(1px * calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-top-width:calc(0px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(0px * var(--tw-divide-y-reverse))}.sm\:stats-horizontal{overflow-x:auto}:is([dir=rtl] .sm\:stats-horizontal){--tw-divide-x-reverse:1}.sm\:stats-vertical>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-right-width:calc(0px * var(--tw-divide-x-reverse));border-left-width:calc(0px * calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px * var(--tw-divide-y-reverse))}.sm\:stats-vertical{overflow-y:auto}.sm\:table-sm :not(thead):not(tfoot) tr{font-size:.875rem;line-height:1.25rem}.sm\:table-sm :where(th,td){padding-left:.75rem;padding-right:.75rem;padding-top:.5rem;padding-bottom:.5rem}.sm\:table-md :not(thead):not(tfoot) tr{font-size:.875rem;line-height:1.25rem}.sm\:table-md :where(th,td){padding-left:1rem;padding-right:1rem;padding-top:.75rem;padding-bottom:.75rem}.sm\:table-lg :not(thead):not(tfoot) tr{font-size:1rem;line-height:1.5rem}.sm\:table-lg :where(th,td){padding-left:1.5rem;padding-right:1.5rem;padding-top:1rem;padding-bottom:1rem}}@media (min-width:768px){.md\:tab-rounded-lg{--tab-radius:0.5rem}.md\:badge-sm{height:1rem;font-size:.75rem;line-height:1rem;padding-left:.438rem;padding-right:.438rem}.md\:badge-md{height:1.25rem;font-size:.875rem;line-height:1.25rem;padding-left:.563rem;padding-right:.563rem}.md\:badge-lg{height:1.5rem;font-size:1rem;line-height:1.5rem;padding-left:.688rem;padding-right:.688rem}.md\:btm-nav-sm{height:3rem}.md\:btm-nav-sm>:where(.active){border-top-width:2px}.md\:btm-nav-sm .btm-nav-label{font-size:.75rem;line-height:1rem}.md\:btm-nav-md{height:4rem}.md\:btm-nav-md>:where(.active){border-top-width:2px}.md\:btm-nav-md .btm-nav-label{font-size:.875rem;line-height:1.25rem}.md\:btm-nav-lg{height:5rem}.md\:btm-nav-lg>:where(.active){border-top-width:4px}.md\:btm-nav-lg .btm-nav-label{font-size:1rem;line-height:1.5rem}.md\:btn-sm{height:2rem;min-height:2rem;padding-left:.75rem;padding-right:.75rem;font-size:.875rem}.md\:btn-md{height:3rem;min-height:3rem;padding-left:1rem;padding-right:1rem;font-size:.875rem}.md\:btn-lg{height:4rem;min-height:4rem;padding-left:1.5rem;padding-right:1.5rem;font-size:1.125rem}.btn-square:where(.md\:btn-sm){height:2rem;width:2rem;padding:0}.btn-square:where(.md\:btn-md){height:3rem;width:3rem;padding:0}.btn-square:where(.md\:btn-lg){height:4rem;width:4rem;padding:0}.btn-circle:where(.md\:btn-sm){height:2rem;width:2rem;border-radius:9999px;padding:0}.btn-circle:where(.md\:btn-md){height:3rem;width:3rem;border-radius:9999px;padding:0}.btn-circle:where(.md\:btn-lg){height:4rem;width:4rem;border-radius:9999px;padding:0}.md\:card-side{align-items:stretch;flex-direction:row}.md\:card-side :where(figure:first-child){overflow:hidden;border-start-start-radius:inherit;border-start-end-radius:unset;border-end-start-radius:inherit;border-end-end-radius:unset}.md\:card-side :where(figure:last-child){overflow:hidden;border-start-start-radius:unset;border-start-end-radius:inherit;border-end-start-radius:unset;border-end-end-radius:inherit}.md\:card-side figure>*{max-width:unset}:where(.md\:card-side figure > *){width:100%;height:100%;object-fit:cover}.md\:checkbox-sm[type=checkbox]{height:1.25rem;width:1.25rem}.md\:checkbox-md[type=checkbox]{height:1.5rem;width:1.5rem}.md\:checkbox-lg[type=checkbox]{height:2rem;width:2rem}.md\:divider-horizontal{flex-direction:column}.md\:divider-horizontal:before{height:100%;width:.125rem}.md\:divider-horizontal:after{height:100%;width:.125rem}.md\:divider-vertical{flex-direction:row}.md\:divider-vertical:before{height:.125rem;width:100%}.md\:divider-vertical:after{height:.125rem;width:100%}.md\:drawer-open>.drawer-toggle{display:none}.md\:drawer-open>.drawer-toggle~.drawer-side{pointer-events:auto;visibility:visible;position:sticky;display:block;width:auto;overscroll-behavior:auto}.md\:drawer-open>.drawer-toggle~.drawer-side>:not(.drawer-overlay){transform:translateX(0)}[dir=rtl] .md\:drawer-open>.drawer-toggle~.drawer-side>:not(.drawer-overlay){transform:translateX(0)}.md\:drawer-open>.drawer-toggle:checked~.drawer-side{pointer-events:auto;visibility:visible}.md\:drawer-open>.drawer-side{overflow-y:auto}html:has(.md\:drawer-open.md\:drawer-open){overflow-y:auto;scrollbar-gutter:auto}.md\:file-input-sm{height:2rem;padding-inline-end:0.75rem;font-size:.875rem;line-height:1.25rem;line-height:2}.md\:file-input-sm::file-selector-button{margin-right:.75rem;font-size:.875rem}.md\:file-input-md{height:3rem;padding-inline-end:1rem;font-size:.875rem;line-height:1.25rem;line-height:2}.md\:file-input-md::file-selector-button{margin-right:1rem;font-size:.875rem}.md\:file-input-lg{height:4rem;padding-inline-end:1.5rem;font-size:1.125rem;line-height:1.75rem;line-height:2}.md\:file-input-lg::file-selector-button{margin-right:1.5rem;font-size:1.125rem}.md\:input-md{height:3rem;padding-left:1rem;padding-right:1rem;font-size:.875rem;line-height:1.25rem;line-height:2}.md\:input-lg{height:4rem;padding-left:1.5rem;padding-right:1.5rem;font-size:1.125rem;line-height:1.75rem;line-height:2}.md\:input-sm{height:2rem;padding-left:.75rem;padding-right:.75rem;font-size:.875rem;line-height:2rem}.md\:kbd-sm{padding-left:.25rem;padding-right:.25rem;font-size:.875rem;line-height:1.25rem;min-height:1.6em;min-width:1.6em}.md\:kbd-md{padding-left:.5rem;padding-right:.5rem;font-size:1rem;line-height:1.5rem;min-height:2.2em;min-width:2.2em}.md\:kbd-lg{padding-left:1rem;padding-right:1rem;font-size:1.125rem;line-height:1.75rem;min-height:2.5em;min-width:2.5em}.md\:modal-top{place-items:start}.md\:modal-middle{place-items:center}.md\:modal-bottom{place-items:end}.md\:radio-sm[type=radio]{height:1.25rem;width:1.25rem}.md\:radio-md[type=radio]{height:1.5rem;width:1.5rem}.md\:radio-lg[type=radio]{height:2rem;width:2rem}.md\:range-sm{height:1.25rem}.md\:range-sm::-webkit-slider-runnable-track{height:.25rem}.md\:range-sm::-moz-range-track{height:.25rem}.md\:range-sm::-webkit-slider-thumb{height:1.25rem;width:1.25rem;--filler-offset:0.5rem}.md\:range-sm::-moz-range-thumb{height:1.25rem;width:1.25rem;--filler-offset:0.5rem}.md\:range-md{height:1.5rem}.md\:range-md::-webkit-slider-runnable-track{height:.5rem}.md\:range-md::-moz-range-track{height:.5rem}.md\:range-md::-webkit-slider-thumb{height:1.5rem;width:1.5rem;--filler-offset:0.6rem}.md\:range-md::-moz-range-thumb{height:1.5rem;width:1.5rem;--filler-offset:0.6rem}.md\:range-lg{height:2rem}.md\:range-lg::-webkit-slider-runnable-track{height:1rem}.md\:range-lg::-moz-range-track{height:1rem}.md\:range-lg::-webkit-slider-thumb{height:2rem;width:2rem;--filler-offset:1rem}.md\:range-lg::-moz-range-thumb{height:2rem;width:2rem;--filler-offset:1rem}.md\:rating-sm input{height:1rem;width:1rem}.md\:rating-md input{height:1.5rem;width:1.5rem}.md\:rating-lg input{height:2.5rem;width:2.5rem}.md\:rating-sm.rating-half input:not(.rating-hidden){width:.5rem}.md\:rating-md.rating-half input:not(.rating-hidden){width:.75rem}.md\:rating-lg.rating-half input:not(.rating-hidden){width:1.25rem}.md\:select-md{height:3rem;min-height:3rem;padding-left:1rem;padding-right:2.5rem;font-size:.875rem;line-height:1.25rem;line-height:2}[dir=rtl] .md\:select-md{padding-left:2.5rem;padding-right:1rem}.md\:select-lg{height:4rem;min-height:4rem;padding-left:1.5rem;padding-right:2rem;font-size:1.125rem;line-height:1.75rem;line-height:2}[dir=rtl] .md\:select-lg{padding-left:2rem;padding-right:1.5rem}.md\:select-sm{height:2rem;min-height:2rem;padding-left:.75rem;padding-right:2rem;font-size:.875rem;line-height:2rem}[dir=rtl] .md\:select-sm{padding-left:2rem;padding-right:.75rem}.md\:stats-horizontal{grid-auto-flow:column}.md\:stats-vertical{grid-auto-flow:row}.md\:tabs-md :where(.tab){height:2rem;font-size:.875rem;line-height:1.25rem;line-height:2;--tab-padding:1rem}.md\:tabs-lg :where(.tab){height:3rem;font-size:1.125rem;line-height:1.75rem;line-height:2;--tab-padding:1.25rem}.md\:tabs-sm :where(.tab){height:1.5rem;font-size:.875rem;line-height:.75rem;--tab-padding:0.75rem}.md\:textarea-sm{padding-left:.75rem;padding-right:.75rem;padding-top:.25rem;padding-bottom:.25rem;font-size:.875rem;line-height:2rem}.md\:textarea-md{padding-left:1rem;padding-right:1rem;padding-top:.75rem;padding-bottom:.75rem;font-size:.875rem;line-height:1.25rem;line-height:2}.md\:textarea-lg{padding-left:1.5rem;padding-right:1.5rem;padding-top:1rem;padding-bottom:1rem;font-size:1.125rem;line-height:1.75rem;line-height:2}.md\:toggle-sm[type=checkbox]{--handleoffset:0.75rem;height:1.25rem;width:2rem}.md\:toggle-md[type=checkbox]{--handleoffset:1.5rem;height:1.5rem;width:3rem}.md\:toggle-lg[type=checkbox]{--handleoffset:2rem;height:2rem;width:4rem}.md\:card-compact .card-body{padding:1rem;font-size:.875rem;line-height:1.25rem}.md\:card-compact .card-title{margin-bottom:.25rem}.md\:card-normal .card-body{padding:var(--padding-card,2rem);font-size:1rem;line-height:1.5rem}.md\:card-normal .card-title{margin-bottom:.75rem}.md\:divider-horizontal{margin-left:1rem;margin-right:1rem;margin-top:0;margin-bottom:0;height:auto;width:1rem}.md\:divider-vertical{margin-left:0;margin-right:0;margin-top:1rem;margin-bottom:1rem;height:1rem;width:auto}.md\:drawer-open>.drawer-toggle~.drawer-side>.drawer-overlay{cursor:default;background-color:transparent}.md\:menu-sm :where(li:not(.menu-title) > :not(ul,details,.menu-title)),.md\:menu-sm :where(li:not(.menu-title) > details > summary:not(.menu-title)){border-radius:var(--rounded-btn,.5rem);padding-left:.75rem;padding-right:.75rem;padding-top:.25rem;padding-bottom:.25rem;font-size:.875rem;line-height:1.25rem}.md\:menu-sm .menu-title{padding-left:.75rem;padding-right:.75rem;padding-top:.5rem;padding-bottom:.5rem}.md\:menu-md :where(li:not(.menu-title) > :not(ul,details,.menu-title)),.md\:menu-md :where(li:not(.menu-title) > details > summary:not(.menu-title)){border-radius:var(--rounded-btn,.5rem);padding-left:1rem;padding-right:1rem;padding-top:.5rem;padding-bottom:.5rem;font-size:.875rem;line-height:1.25rem}.md\:menu-md .menu-title{padding-left:1rem;padding-right:1rem;padding-top:.5rem;padding-bottom:.5rem}.md\:menu-lg :where(li:not(.menu-title) > :not(ul,details,.menu-title)),.md\:menu-lg :where(li:not(.menu-title) > details > summary:not(.menu-title)){border-radius:var(--rounded-btn,.5rem);padding-left:1.5rem;padding-right:1.5rem;padding-top:.75rem;padding-bottom:.75rem;font-size:1.125rem;line-height:1.75rem}.md\:menu-lg .menu-title{padding-left:1.5rem;padding-right:1.5rem;padding-top:.75rem;padding-bottom:.75rem}.md\:modal-top :where(.modal-box){width:100%;max-width:none;--tw-translate-y:-2.5rem;--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-bottom-right-radius:var(--rounded-box,1rem);border-bottom-left-radius:var(--rounded-box,1rem);border-top-left-radius:0;border-top-right-radius:0}.md\:modal-middle :where(.modal-box){width:91.666667%;max-width:32rem;--tw-translate-y:0px;--tw-scale-x:.9;--tw-scale-y:.9;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-top-left-radius:var(--rounded-box,1rem);border-top-right-radius:var(--rounded-box,1rem);border-bottom-right-radius:var(--rounded-box,1rem);border-bottom-left-radius:var(--rounded-box,1rem)}.md\:modal-bottom :where(.modal-box){width:100%;max-width:none;--tw-translate-y:2.5rem;--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-top-left-radius:var(--rounded-box,1rem);border-top-right-radius:var(--rounded-box,1rem);border-bottom-right-radius:0;border-bottom-left-radius:0}.md\:stats-horizontal>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-right-width:calc(1px * var(--tw-divide-x-reverse));border-left-width:calc(1px * calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-top-width:calc(0px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(0px * var(--tw-divide-y-reverse))}.md\:stats-horizontal{overflow-x:auto}:is([dir=rtl] .md\:stats-horizontal){--tw-divide-x-reverse:1}.md\:stats-vertical>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-right-width:calc(0px * var(--tw-divide-x-reverse));border-left-width:calc(0px * calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px * var(--tw-divide-y-reverse))}.md\:stats-vertical{overflow-y:auto}.md\:table-sm :not(thead):not(tfoot) tr{font-size:.875rem;line-height:1.25rem}.md\:table-sm :where(th,td){padding-left:.75rem;padding-right:.75rem;padding-top:.5rem;padding-bottom:.5rem}.md\:table-md :not(thead):not(tfoot) tr{font-size:.875rem;line-height:1.25rem}.md\:table-md :where(th,td){padding-left:1rem;padding-right:1rem;padding-top:.75rem;padding-bottom:.75rem}.md\:table-lg :not(thead):not(tfoot) tr{font-size:1rem;line-height:1.5rem}.md\:table-lg :where(th,td){padding-left:1.5rem;padding-right:1.5rem;padding-top:1rem;padding-bottom:1rem}}@media (min-width:1024px){.lg\:tab-rounded-lg{--tab-radius:0.5rem}.lg\:badge-sm{height:1rem;font-size:.75rem;line-height:1rem;padding-left:.438rem;padding-right:.438rem}.lg\:badge-md{height:1.25rem;font-size:.875rem;line-height:1.25rem;padding-left:.563rem;padding-right:.563rem}.lg\:badge-lg{height:1.5rem;font-size:1rem;line-height:1.5rem;padding-left:.688rem;padding-right:.688rem}.lg\:btm-nav-sm{height:3rem}.lg\:btm-nav-sm>:where(.active){border-top-width:2px}.lg\:btm-nav-sm .btm-nav-label{font-size:.75rem;line-height:1rem}.lg\:btm-nav-md{height:4rem}.lg\:btm-nav-md>:where(.active){border-top-width:2px}.lg\:btm-nav-md .btm-nav-label{font-size:.875rem;line-height:1.25rem}.lg\:btm-nav-lg{height:5rem}.lg\:btm-nav-lg>:where(.active){border-top-width:4px}.lg\:btm-nav-lg .btm-nav-label{font-size:1rem;line-height:1.5rem}.lg\:btn-sm{height:2rem;min-height:2rem;padding-left:.75rem;padding-right:.75rem;font-size:.875rem}.lg\:btn-md{height:3rem;min-height:3rem;padding-left:1rem;padding-right:1rem;font-size:.875rem}.lg\:btn-lg{height:4rem;min-height:4rem;padding-left:1.5rem;padding-right:1.5rem;font-size:1.125rem}.btn-square:where(.lg\:btn-sm){height:2rem;width:2rem;padding:0}.btn-square:where(.lg\:btn-md){height:3rem;width:3rem;padding:0}.btn-square:where(.lg\:btn-lg){height:4rem;width:4rem;padding:0}.btn-circle:where(.lg\:btn-sm){height:2rem;width:2rem;border-radius:9999px;padding:0}.btn-circle:where(.lg\:btn-md){height:3rem;width:3rem;border-radius:9999px;padding:0}.btn-circle:where(.lg\:btn-lg){height:4rem;width:4rem;border-radius:9999px;padding:0}.lg\:card-side{align-items:stretch;flex-direction:row}.lg\:card-side :where(figure:first-child){overflow:hidden;border-start-start-radius:inherit;border-start-end-radius:unset;border-end-start-radius:inherit;border-end-end-radius:unset}.lg\:card-side :where(figure:last-child){overflow:hidden;border-start-start-radius:unset;border-start-end-radius:inherit;border-end-start-radius:unset;border-end-end-radius:inherit}.lg\:card-side figure>*{max-width:unset}:where(.lg\:card-side figure > *){width:100%;height:100%;object-fit:cover}.lg\:checkbox-sm[type=checkbox]{height:1.25rem;width:1.25rem}.lg\:checkbox-md[type=checkbox]{height:1.5rem;width:1.5rem}.lg\:checkbox-lg[type=checkbox]{height:2rem;width:2rem}.lg\:divider-horizontal{flex-direction:column}.lg\:divider-horizontal:before{height:100%;width:.125rem}.lg\:divider-horizontal:after{height:100%;width:.125rem}.lg\:divider-vertical{flex-direction:row}.lg\:divider-vertical:before{height:.125rem;width:100%}.lg\:divider-vertical:after{height:.125rem;width:100%}.lg\:drawer-open>.drawer-toggle{display:none}.lg\:drawer-open>.drawer-toggle~.drawer-side{pointer-events:auto;visibility:visible;position:sticky;display:block;width:auto;overscroll-behavior:auto}.lg\:drawer-open>.drawer-toggle~.drawer-side>:not(.drawer-overlay){transform:translateX(0)}[dir=rtl] .lg\:drawer-open>.drawer-toggle~.drawer-side>:not(.drawer-overlay){transform:translateX(0)}.lg\:drawer-open>.drawer-toggle:checked~.drawer-side{pointer-events:auto;visibility:visible}.lg\:drawer-open>.drawer-side{overflow-y:auto}html:has(.lg\:drawer-open.lg\:drawer-open){overflow-y:auto;scrollbar-gutter:auto}.lg\:file-input-sm{height:2rem;padding-inline-end:0.75rem;font-size:.875rem;line-height:1.25rem;line-height:2}.lg\:file-input-sm::file-selector-button{margin-right:.75rem;font-size:.875rem}.lg\:file-input-md{height:3rem;padding-inline-end:1rem;font-size:.875rem;line-height:1.25rem;line-height:2}.lg\:file-input-md::file-selector-button{margin-right:1rem;font-size:.875rem}.lg\:file-input-lg{height:4rem;padding-inline-end:1.5rem;font-size:1.125rem;line-height:1.75rem;line-height:2}.lg\:file-input-lg::file-selector-button{margin-right:1.5rem;font-size:1.125rem}.lg\:input-md{height:3rem;padding-left:1rem;padding-right:1rem;font-size:.875rem;line-height:1.25rem;line-height:2}.lg\:input-lg{height:4rem;padding-left:1.5rem;padding-right:1.5rem;font-size:1.125rem;line-height:1.75rem;line-height:2}.lg\:input-sm{height:2rem;padding-left:.75rem;padding-right:.75rem;font-size:.875rem;line-height:2rem}.lg\:kbd-sm{padding-left:.25rem;padding-right:.25rem;font-size:.875rem;line-height:1.25rem;min-height:1.6em;min-width:1.6em}.lg\:kbd-md{padding-left:.5rem;padding-right:.5rem;font-size:1rem;line-height:1.5rem;min-height:2.2em;min-width:2.2em}.lg\:kbd-lg{padding-left:1rem;padding-right:1rem;font-size:1.125rem;line-height:1.75rem;min-height:2.5em;min-width:2.5em}.lg\:modal-top{place-items:start}.lg\:modal-middle{place-items:center}.lg\:modal-bottom{place-items:end}.lg\:radio-sm[type=radio]{height:1.25rem;width:1.25rem}.lg\:radio-md[type=radio]{height:1.5rem;width:1.5rem}.lg\:radio-lg[type=radio]{height:2rem;width:2rem}.lg\:range-sm{height:1.25rem}.lg\:range-sm::-webkit-slider-runnable-track{height:.25rem}.lg\:range-sm::-moz-range-track{height:.25rem}.lg\:range-sm::-webkit-slider-thumb{height:1.25rem;width:1.25rem;--filler-offset:0.5rem}.lg\:range-sm::-moz-range-thumb{height:1.25rem;width:1.25rem;--filler-offset:0.5rem}.lg\:range-md{height:1.5rem}.lg\:range-md::-webkit-slider-runnable-track{height:.5rem}.lg\:range-md::-moz-range-track{height:.5rem}.lg\:range-md::-webkit-slider-thumb{height:1.5rem;width:1.5rem;--filler-offset:0.6rem}.lg\:range-md::-moz-range-thumb{height:1.5rem;width:1.5rem;--filler-offset:0.6rem}.lg\:range-lg{height:2rem}.lg\:range-lg::-webkit-slider-runnable-track{height:1rem}.lg\:range-lg::-moz-range-track{height:1rem}.lg\:range-lg::-webkit-slider-thumb{height:2rem;width:2rem;--filler-offset:1rem}.lg\:range-lg::-moz-range-thumb{height:2rem;width:2rem;--filler-offset:1rem}.lg\:rating-sm input{height:1rem;width:1rem}.lg\:rating-md input{height:1.5rem;width:1.5rem}.lg\:rating-lg input{height:2.5rem;width:2.5rem}.lg\:rating-sm.rating-half input:not(.rating-hidden){width:.5rem}.lg\:rating-md.rating-half input:not(.rating-hidden){width:.75rem}.lg\:rating-lg.rating-half input:not(.rating-hidden){width:1.25rem}.lg\:select-md{height:3rem;min-height:3rem;padding-left:1rem;padding-right:2.5rem;font-size:.875rem;line-height:1.25rem;line-height:2}[dir=rtl] .lg\:select-md{padding-left:2.5rem;padding-right:1rem}.lg\:select-lg{height:4rem;min-height:4rem;padding-left:1.5rem;padding-right:2rem;font-size:1.125rem;line-height:1.75rem;line-height:2}[dir=rtl] .lg\:select-lg{padding-left:2rem;padding-right:1.5rem}.lg\:select-sm{height:2rem;min-height:2rem;padding-left:.75rem;padding-right:2rem;font-size:.875rem;line-height:2rem}[dir=rtl] .lg\:select-sm{padding-left:2rem;padding-right:.75rem}.lg\:stats-horizontal{grid-auto-flow:column}.lg\:stats-vertical{grid-auto-flow:row}.lg\:tabs-md :where(.tab){height:2rem;font-size:.875rem;line-height:1.25rem;line-height:2;--tab-padding:1rem}.lg\:tabs-lg :where(.tab){height:3rem;font-size:1.125rem;line-height:1.75rem;line-height:2;--tab-padding:1.25rem}.lg\:tabs-sm :where(.tab){height:1.5rem;font-size:.875rem;line-height:.75rem;--tab-padding:0.75rem}.lg\:textarea-sm{padding-left:.75rem;padding-right:.75rem;padding-top:.25rem;padding-bottom:.25rem;font-size:.875rem;line-height:2rem}.lg\:textarea-md{padding-left:1rem;padding-right:1rem;padding-top:.75rem;padding-bottom:.75rem;font-size:.875rem;line-height:1.25rem;line-height:2}.lg\:textarea-lg{padding-left:1.5rem;padding-right:1.5rem;padding-top:1rem;padding-bottom:1rem;font-size:1.125rem;line-height:1.75rem;line-height:2}.lg\:toggle-sm[type=checkbox]{--handleoffset:0.75rem;height:1.25rem;width:2rem}.lg\:toggle-md[type=checkbox]{--handleoffset:1.5rem;height:1.5rem;width:3rem}.lg\:toggle-lg[type=checkbox]{--handleoffset:2rem;height:2rem;width:4rem}.lg\:card-compact .card-body{padding:1rem;font-size:.875rem;line-height:1.25rem}.lg\:card-compact .card-title{margin-bottom:.25rem}.lg\:card-normal .card-body{padding:var(--padding-card,2rem);font-size:1rem;line-height:1.5rem}.lg\:card-normal .card-title{margin-bottom:.75rem}.lg\:divider-horizontal{margin-left:1rem;margin-right:1rem;margin-top:0;margin-bottom:0;height:auto;width:1rem}.lg\:divider-vertical{margin-left:0;margin-right:0;margin-top:1rem;margin-bottom:1rem;height:1rem;width:auto}.lg\:drawer-open>.drawer-toggle~.drawer-side>.drawer-overlay{cursor:default;background-color:transparent}.lg\:menu-sm :where(li:not(.menu-title) > :not(ul,details,.menu-title)),.lg\:menu-sm :where(li:not(.menu-title) > details > summary:not(.menu-title)){border-radius:var(--rounded-btn,.5rem);padding-left:.75rem;padding-right:.75rem;padding-top:.25rem;padding-bottom:.25rem;font-size:.875rem;line-height:1.25rem}.lg\:menu-sm .menu-title{padding-left:.75rem;padding-right:.75rem;padding-top:.5rem;padding-bottom:.5rem}.lg\:menu-md :where(li:not(.menu-title) > :not(ul,details,.menu-title)),.lg\:menu-md :where(li:not(.menu-title) > details > summary:not(.menu-title)){border-radius:var(--rounded-btn,.5rem);padding-left:1rem;padding-right:1rem;padding-top:.5rem;padding-bottom:.5rem;font-size:.875rem;line-height:1.25rem}.lg\:menu-md .menu-title{padding-left:1rem;padding-right:1rem;padding-top:.5rem;padding-bottom:.5rem}.lg\:menu-lg :where(li:not(.menu-title) > :not(ul,details,.menu-title)),.lg\:menu-lg :where(li:not(.menu-title) > details > summary:not(.menu-title)){border-radius:var(--rounded-btn,.5rem);padding-left:1.5rem;padding-right:1.5rem;padding-top:.75rem;padding-bottom:.75rem;font-size:1.125rem;line-height:1.75rem}.lg\:menu-lg .menu-title{padding-left:1.5rem;padding-right:1.5rem;padding-top:.75rem;padding-bottom:.75rem}.lg\:modal-top :where(.modal-box){width:100%;max-width:none;--tw-translate-y:-2.5rem;--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-bottom-right-radius:var(--rounded-box,1rem);border-bottom-left-radius:var(--rounded-box,1rem);border-top-left-radius:0;border-top-right-radius:0}.lg\:modal-middle :where(.modal-box){width:91.666667%;max-width:32rem;--tw-translate-y:0px;--tw-scale-x:.9;--tw-scale-y:.9;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-top-left-radius:var(--rounded-box,1rem);border-top-right-radius:var(--rounded-box,1rem);border-bottom-right-radius:var(--rounded-box,1rem);border-bottom-left-radius:var(--rounded-box,1rem)}.lg\:modal-bottom :where(.modal-box){width:100%;max-width:none;--tw-translate-y:2.5rem;--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-top-left-radius:var(--rounded-box,1rem);border-top-right-radius:var(--rounded-box,1rem);border-bottom-right-radius:0;border-bottom-left-radius:0}.lg\:stats-horizontal>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-right-width:calc(1px * var(--tw-divide-x-reverse));border-left-width:calc(1px * calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-top-width:calc(0px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(0px * var(--tw-divide-y-reverse))}.lg\:stats-horizontal{overflow-x:auto}:is([dir=rtl] .lg\:stats-horizontal){--tw-divide-x-reverse:1}.lg\:stats-vertical>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-right-width:calc(0px * var(--tw-divide-x-reverse));border-left-width:calc(0px * calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px * var(--tw-divide-y-reverse))}.lg\:stats-vertical{overflow-y:auto}.lg\:table-sm :not(thead):not(tfoot) tr{font-size:.875rem;line-height:1.25rem}.lg\:table-sm :where(th,td){padding-left:.75rem;padding-right:.75rem;padding-top:.5rem;padding-bottom:.5rem}.lg\:table-md :not(thead):not(tfoot) tr{font-size:.875rem;line-height:1.25rem}.lg\:table-md :where(th,td){padding-left:1rem;padding-right:1rem;padding-top:.75rem;padding-bottom:.75rem}.lg\:table-lg :not(thead):not(tfoot) tr{font-size:1rem;line-height:1.5rem}.lg\:table-lg :where(th,td){padding-left:1.5rem;padding-right:1.5rem;padding-top:1rem;padding-bottom:1rem}}@media (min-width:1280px){.xl\:tab-rounded-lg{--tab-radius:0.5rem}.xl\:badge-sm{height:1rem;font-size:.75rem;line-height:1rem;padding-left:.438rem;padding-right:.438rem}.xl\:badge-md{height:1.25rem;font-size:.875rem;line-height:1.25rem;padding-left:.563rem;padding-right:.563rem}.xl\:badge-lg{height:1.5rem;font-size:1rem;line-height:1.5rem;padding-left:.688rem;padding-right:.688rem}.xl\:btm-nav-sm{height:3rem}.xl\:btm-nav-sm>:where(.active){border-top-width:2px}.xl\:btm-nav-sm .btm-nav-label{font-size:.75rem;line-height:1rem}.xl\:btm-nav-md{height:4rem}.xl\:btm-nav-md>:where(.active){border-top-width:2px}.xl\:btm-nav-md .btm-nav-label{font-size:.875rem;line-height:1.25rem}.xl\:btm-nav-lg{height:5rem}.xl\:btm-nav-lg>:where(.active){border-top-width:4px}.xl\:btm-nav-lg .btm-nav-label{font-size:1rem;line-height:1.5rem}.xl\:btn-sm{height:2rem;min-height:2rem;padding-left:.75rem;padding-right:.75rem;font-size:.875rem}.xl\:btn-md{height:3rem;min-height:3rem;padding-left:1rem;padding-right:1rem;font-size:.875rem}.xl\:btn-lg{height:4rem;min-height:4rem;padding-left:1.5rem;padding-right:1.5rem;font-size:1.125rem}.btn-square:where(.xl\:btn-sm){height:2rem;width:2rem;padding:0}.btn-square:where(.xl\:btn-md){height:3rem;width:3rem;padding:0}.btn-square:where(.xl\:btn-lg){height:4rem;width:4rem;padding:0}.btn-circle:where(.xl\:btn-sm){height:2rem;width:2rem;border-radius:9999px;padding:0}.btn-circle:where(.xl\:btn-md){height:3rem;width:3rem;border-radius:9999px;padding:0}.btn-circle:where(.xl\:btn-lg){height:4rem;width:4rem;border-radius:9999px;padding:0}.xl\:card-side{align-items:stretch;flex-direction:row}.xl\:card-side :where(figure:first-child){overflow:hidden;border-start-start-radius:inherit;border-start-end-radius:unset;border-end-start-radius:inherit;border-end-end-radius:unset}.xl\:card-side :where(figure:last-child){overflow:hidden;border-start-start-radius:unset;border-start-end-radius:inherit;border-end-start-radius:unset;border-end-end-radius:inherit}.xl\:card-side figure>*{max-width:unset}:where(.xl\:card-side figure > *){width:100%;height:100%;object-fit:cover}.xl\:checkbox-sm[type=checkbox]{height:1.25rem;width:1.25rem}.xl\:checkbox-md[type=checkbox]{height:1.5rem;width:1.5rem}.xl\:checkbox-lg[type=checkbox]{height:2rem;width:2rem}.xl\:divider-horizontal{flex-direction:column}.xl\:divider-horizontal:before{height:100%;width:.125rem}.xl\:divider-horizontal:after{height:100%;width:.125rem}.xl\:divider-vertical{flex-direction:row}.xl\:divider-vertical:before{height:.125rem;width:100%}.xl\:divider-vertical:after{height:.125rem;width:100%}.xl\:drawer-open>.drawer-toggle{display:none}.xl\:drawer-open>.drawer-toggle~.drawer-side{pointer-events:auto;visibility:visible;position:sticky;display:block;width:auto;overscroll-behavior:auto}.xl\:drawer-open>.drawer-toggle~.drawer-side>:not(.drawer-overlay){transform:translateX(0)}[dir=rtl] .xl\:drawer-open>.drawer-toggle~.drawer-side>:not(.drawer-overlay){transform:translateX(0)}.xl\:drawer-open>.drawer-toggle:checked~.drawer-side{pointer-events:auto;visibility:visible}.xl\:drawer-open>.drawer-side{overflow-y:auto}html:has(.xl\:drawer-open.xl\:drawer-open){overflow-y:auto;scrollbar-gutter:auto}.xl\:file-input-sm{height:2rem;padding-inline-end:0.75rem;font-size:.875rem;line-height:1.25rem;line-height:2}.xl\:file-input-sm::file-selector-button{margin-right:.75rem;font-size:.875rem}.xl\:file-input-md{height:3rem;padding-inline-end:1rem;font-size:.875rem;line-height:1.25rem;line-height:2}.xl\:file-input-md::file-selector-button{margin-right:1rem;font-size:.875rem}.xl\:file-input-lg{height:4rem;padding-inline-end:1.5rem;font-size:1.125rem;line-height:1.75rem;line-height:2}.xl\:file-input-lg::file-selector-button{margin-right:1.5rem;font-size:1.125rem}.xl\:input-md{height:3rem;padding-left:1rem;padding-right:1rem;font-size:.875rem;line-height:1.25rem;line-height:2}.xl\:input-lg{height:4rem;padding-left:1.5rem;padding-right:1.5rem;font-size:1.125rem;line-height:1.75rem;line-height:2}.xl\:input-sm{height:2rem;padding-left:.75rem;padding-right:.75rem;font-size:.875rem;line-height:2rem}.xl\:kbd-sm{padding-left:.25rem;padding-right:.25rem;font-size:.875rem;line-height:1.25rem;min-height:1.6em;min-width:1.6em}.xl\:kbd-md{padding-left:.5rem;padding-right:.5rem;font-size:1rem;line-height:1.5rem;min-height:2.2em;min-width:2.2em}.xl\:kbd-lg{padding-left:1rem;padding-right:1rem;font-size:1.125rem;line-height:1.75rem;min-height:2.5em;min-width:2.5em}.xl\:modal-top{place-items:start}.xl\:modal-middle{place-items:center}.xl\:modal-bottom{place-items:end}.xl\:radio-sm[type=radio]{height:1.25rem;width:1.25rem}.xl\:radio-md[type=radio]{height:1.5rem;width:1.5rem}.xl\:radio-lg[type=radio]{height:2rem;width:2rem}.xl\:range-sm{height:1.25rem}.xl\:range-sm::-webkit-slider-runnable-track{height:.25rem}.xl\:range-sm::-moz-range-track{height:.25rem}.xl\:range-sm::-webkit-slider-thumb{height:1.25rem;width:1.25rem;--filler-offset:0.5rem}.xl\:range-sm::-moz-range-thumb{height:1.25rem;width:1.25rem;--filler-offset:0.5rem}.xl\:range-md{height:1.5rem}.xl\:range-md::-webkit-slider-runnable-track{height:.5rem}.xl\:range-md::-moz-range-track{height:.5rem}.xl\:range-md::-webkit-slider-thumb{height:1.5rem;width:1.5rem;--filler-offset:0.6rem}.xl\:range-md::-moz-range-thumb{height:1.5rem;width:1.5rem;--filler-offset:0.6rem}.xl\:range-lg{height:2rem}.xl\:range-lg::-webkit-slider-runnable-track{height:1rem}.xl\:range-lg::-moz-range-track{height:1rem}.xl\:range-lg::-webkit-slider-thumb{height:2rem;width:2rem;--filler-offset:1rem}.xl\:range-lg::-moz-range-thumb{height:2rem;width:2rem;--filler-offset:1rem}.xl\:rating-sm input{height:1rem;width:1rem}.xl\:rating-md input{height:1.5rem;width:1.5rem}.xl\:rating-lg input{height:2.5rem;width:2.5rem}.xl\:rating-sm.rating-half input:not(.rating-hidden){width:.5rem}.xl\:rating-md.rating-half input:not(.rating-hidden){width:.75rem}.xl\:rating-lg.rating-half input:not(.rating-hidden){width:1.25rem}.xl\:select-md{height:3rem;min-height:3rem;padding-left:1rem;padding-right:2.5rem;font-size:.875rem;line-height:1.25rem;line-height:2}[dir=rtl] .xl\:select-md{padding-left:2.5rem;padding-right:1rem}.xl\:select-lg{height:4rem;min-height:4rem;padding-left:1.5rem;padding-right:2rem;font-size:1.125rem;line-height:1.75rem;line-height:2}[dir=rtl] .xl\:select-lg{padding-left:2rem;padding-right:1.5rem}.xl\:select-sm{height:2rem;min-height:2rem;padding-left:.75rem;padding-right:2rem;font-size:.875rem;line-height:2rem}[dir=rtl] .xl\:select-sm{padding-left:2rem;padding-right:.75rem}.xl\:stats-horizontal{grid-auto-flow:column}.xl\:stats-vertical{grid-auto-flow:row}.xl\:tabs-md :where(.tab){height:2rem;font-size:.875rem;line-height:1.25rem;line-height:2;--tab-padding:1rem}.xl\:tabs-lg :where(.tab){height:3rem;font-size:1.125rem;line-height:1.75rem;line-height:2;--tab-padding:1.25rem}.xl\:tabs-sm :where(.tab){height:1.5rem;font-size:.875rem;line-height:.75rem;--tab-padding:0.75rem}.xl\:textarea-sm{padding-left:.75rem;padding-right:.75rem;padding-top:.25rem;padding-bottom:.25rem;font-size:.875rem;line-height:2rem}.xl\:textarea-md{padding-left:1rem;padding-right:1rem;padding-top:.75rem;padding-bottom:.75rem;font-size:.875rem;line-height:1.25rem;line-height:2}.xl\:textarea-lg{padding-left:1.5rem;padding-right:1.5rem;padding-top:1rem;padding-bottom:1rem;font-size:1.125rem;line-height:1.75rem;line-height:2}.xl\:toggle-sm[type=checkbox]{--handleoffset:0.75rem;height:1.25rem;width:2rem}.xl\:toggle-md[type=checkbox]{--handleoffset:1.5rem;height:1.5rem;width:3rem}.xl\:toggle-lg[type=checkbox]{--handleoffset:2rem;height:2rem;width:4rem}.xl\:card-compact .card-body{padding:1rem;font-size:.875rem;line-height:1.25rem}.xl\:card-compact .card-title{margin-bottom:.25rem}.xl\:card-normal .card-body{padding:var(--padding-card,2rem);font-size:1rem;line-height:1.5rem}.xl\:card-normal .card-title{margin-bottom:.75rem}.xl\:divider-horizontal{margin-left:1rem;margin-right:1rem;margin-top:0;margin-bottom:0;height:auto;width:1rem}.xl\:divider-vertical{margin-left:0;margin-right:0;margin-top:1rem;margin-bottom:1rem;height:1rem;width:auto}.xl\:drawer-open>.drawer-toggle~.drawer-side>.drawer-overlay{cursor:default;background-color:transparent}.xl\:menu-sm :where(li:not(.menu-title) > :not(ul,details,.menu-title)),.xl\:menu-sm :where(li:not(.menu-title) > details > summary:not(.menu-title)){border-radius:var(--rounded-btn,.5rem);padding-left:.75rem;padding-right:.75rem;padding-top:.25rem;padding-bottom:.25rem;font-size:.875rem;line-height:1.25rem}.xl\:menu-sm .menu-title{padding-left:.75rem;padding-right:.75rem;padding-top:.5rem;padding-bottom:.5rem}.xl\:menu-md :where(li:not(.menu-title) > :not(ul,details,.menu-title)),.xl\:menu-md :where(li:not(.menu-title) > details > summary:not(.menu-title)){border-radius:var(--rounded-btn,.5rem);padding-left:1rem;padding-right:1rem;padding-top:.5rem;padding-bottom:.5rem;font-size:.875rem;line-height:1.25rem}.xl\:menu-md .menu-title{padding-left:1rem;padding-right:1rem;padding-top:.5rem;padding-bottom:.5rem}.xl\:menu-lg :where(li:not(.menu-title) > :not(ul,details,.menu-title)),.xl\:menu-lg :where(li:not(.menu-title) > details > summary:not(.menu-title)){border-radius:var(--rounded-btn,.5rem);padding-left:1.5rem;padding-right:1.5rem;padding-top:.75rem;padding-bottom:.75rem;font-size:1.125rem;line-height:1.75rem}.xl\:menu-lg .menu-title{padding-left:1.5rem;padding-right:1.5rem;padding-top:.75rem;padding-bottom:.75rem}.xl\:modal-top :where(.modal-box){width:100%;max-width:none;--tw-translate-y:-2.5rem;--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-bottom-right-radius:var(--rounded-box,1rem);border-bottom-left-radius:var(--rounded-box,1rem);border-top-left-radius:0;border-top-right-radius:0}.xl\:modal-middle :where(.modal-box){width:91.666667%;max-width:32rem;--tw-translate-y:0px;--tw-scale-x:.9;--tw-scale-y:.9;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-top-left-radius:var(--rounded-box,1rem);border-top-right-radius:var(--rounded-box,1rem);border-bottom-right-radius:var(--rounded-box,1rem);border-bottom-left-radius:var(--rounded-box,1rem)}.xl\:modal-bottom :where(.modal-box){width:100%;max-width:none;--tw-translate-y:2.5rem;--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-top-left-radius:var(--rounded-box,1rem);border-top-right-radius:var(--rounded-box,1rem);border-bottom-right-radius:0;border-bottom-left-radius:0}.xl\:stats-horizontal>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-right-width:calc(1px * var(--tw-divide-x-reverse));border-left-width:calc(1px * calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-top-width:calc(0px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(0px * var(--tw-divide-y-reverse))}.xl\:stats-horizontal{overflow-x:auto}:is([dir=rtl] .xl\:stats-horizontal){--tw-divide-x-reverse:1}.xl\:stats-vertical>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-right-width:calc(0px * var(--tw-divide-x-reverse));border-left-width:calc(0px * calc(1 - var(--tw-divide-x-reverse)));--tw-divide-y-reverse:0;border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px * var(--tw-divide-y-reverse))}.xl\:stats-vertical{overflow-y:auto}.xl\:table-sm :not(thead):not(tfoot) tr{font-size:.875rem;line-height:1.25rem}.xl\:table-sm :where(th,td){padding-left:.75rem;padding-right:.75rem;padding-top:.5rem;padding-bottom:.5rem}.xl\:table-md :not(thead):not(tfoot) tr{font-size:.875rem;line-height:1.25rem}.xl\:table-md :where(th,td){padding-left:1rem;padding-right:1rem;padding-top:.75rem;padding-bottom:.75rem}.xl\:table-lg :not(thead):not(tfoot) tr{font-size:1rem;line-height:1.5rem}.xl\:table-lg :where(th,td){padding-left:1.5rem;padding-right:1.5rem;padding-top:1rem;padding-bottom:1rem}} -/*# sourceMappingURL=/sm/932bedd2dc8fbb01fd23b4536ba546ee7745b400c3b9b807a64523548fd17d2a.map */ \ No newline at end of file diff --git a/html/login/static/js/tailwindcss-3.4.3.js b/html/login/static/js/tailwindcss-3.4.3.js deleted file mode 100644 index d37d97b..0000000 --- a/html/login/static/js/tailwindcss-3.4.3.js +++ /dev/null @@ -1,62 +0,0 @@ -(()=>{var wb=Object.create;var li=Object.defineProperty;var bb=Object.getOwnPropertyDescriptor;var vb=Object.getOwnPropertyNames;var xb=Object.getPrototypeOf,kb=Object.prototype.hasOwnProperty;var au=i=>li(i,"__esModule",{value:!0});var ou=i=>{if(typeof require!="undefined")return require(i);throw new Error('Dynamic require of "'+i+'" is not supported')};var C=(i,e)=>()=>(i&&(e=i(i=0)),e);var v=(i,e)=>()=>(e||i((e={exports:{}}).exports,e),e.exports),Ae=(i,e)=>{au(i);for(var t in e)li(i,t,{get:e[t],enumerable:!0})},Sb=(i,e,t)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of vb(e))!kb.call(i,r)&&r!=="default"&&li(i,r,{get:()=>e[r],enumerable:!(t=bb(e,r))||t.enumerable});return i},X=i=>Sb(au(li(i!=null?wb(xb(i)):{},"default",i&&i.__esModule&&"default"in i?{get:()=>i.default,enumerable:!0}:{value:i,enumerable:!0})),i);var h,l=C(()=>{h={platform:"",env:{},versions:{node:"14.17.6"}}});var Cb,te,je=C(()=>{l();Cb=0,te={readFileSync:i=>self[i]||"",statSync:()=>({mtimeMs:Cb++}),promises:{readFile:i=>Promise.resolve(self[i]||"")}}});var Qn=v((PO,uu)=>{l();"use strict";var lu=class{constructor(e={}){if(!(e.maxSize&&e.maxSize>0))throw new TypeError("`maxSize` must be a number greater than 0");if(typeof e.maxAge=="number"&&e.maxAge===0)throw new TypeError("`maxAge` must be a number greater than 0");this.maxSize=e.maxSize,this.maxAge=e.maxAge||1/0,this.onEviction=e.onEviction,this.cache=new Map,this.oldCache=new Map,this._size=0}_emitEvictions(e){if(typeof this.onEviction=="function")for(let[t,r]of e)this.onEviction(t,r.value)}_deleteIfExpired(e,t){return typeof t.expiry=="number"&&t.expiry<=Date.now()?(typeof this.onEviction=="function"&&this.onEviction(e,t.value),this.delete(e)):!1}_getOrDeleteIfExpired(e,t){if(this._deleteIfExpired(e,t)===!1)return t.value}_getItemValue(e,t){return t.expiry?this._getOrDeleteIfExpired(e,t):t.value}_peek(e,t){let r=t.get(e);return this._getItemValue(e,r)}_set(e,t){this.cache.set(e,t),this._size++,this._size>=this.maxSize&&(this._size=0,this._emitEvictions(this.oldCache),this.oldCache=this.cache,this.cache=new Map)}_moveToRecent(e,t){this.oldCache.delete(e),this._set(e,t)}*_entriesAscending(){for(let e of this.oldCache){let[t,r]=e;this.cache.has(t)||this._deleteIfExpired(t,r)===!1&&(yield e)}for(let e of this.cache){let[t,r]=e;this._deleteIfExpired(t,r)===!1&&(yield e)}}get(e){if(this.cache.has(e)){let t=this.cache.get(e);return this._getItemValue(e,t)}if(this.oldCache.has(e)){let t=this.oldCache.get(e);if(this._deleteIfExpired(e,t)===!1)return this._moveToRecent(e,t),t.value}}set(e,t,{maxAge:r=this.maxAge===1/0?void 0:Date.now()+this.maxAge}={}){this.cache.has(e)?this.cache.set(e,{value:t,maxAge:r}):this._set(e,{value:t,expiry:r})}has(e){return this.cache.has(e)?!this._deleteIfExpired(e,this.cache.get(e)):this.oldCache.has(e)?!this._deleteIfExpired(e,this.oldCache.get(e)):!1}peek(e){if(this.cache.has(e))return this._peek(e,this.cache);if(this.oldCache.has(e))return this._peek(e,this.oldCache)}delete(e){let t=this.cache.delete(e);return t&&this._size--,this.oldCache.delete(e)||t}clear(){this.cache.clear(),this.oldCache.clear(),this._size=0}resize(e){if(!(e&&e>0))throw new TypeError("`maxSize` must be a number greater than 0");let t=[...this._entriesAscending()],r=t.length-e;r<0?(this.cache=new Map(t),this.oldCache=new Map,this._size=t.length):(r>0&&this._emitEvictions(t.slice(0,r)),this.oldCache=new Map(t.slice(r)),this.cache=new Map,this._size=0),this.maxSize=e}*keys(){for(let[e]of this)yield e}*values(){for(let[,e]of this)yield e}*[Symbol.iterator](){for(let e of this.cache){let[t,r]=e;this._deleteIfExpired(t,r)===!1&&(yield[t,r.value])}for(let e of this.oldCache){let[t,r]=e;this.cache.has(t)||this._deleteIfExpired(t,r)===!1&&(yield[t,r.value])}}*entriesDescending(){let e=[...this.cache];for(let t=e.length-1;t>=0;--t){let r=e[t],[n,a]=r;this._deleteIfExpired(n,a)===!1&&(yield[n,a.value])}e=[...this.oldCache];for(let t=e.length-1;t>=0;--t){let r=e[t],[n,a]=r;this.cache.has(n)||this._deleteIfExpired(n,a)===!1&&(yield[n,a.value])}}*entriesAscending(){for(let[e,t]of this._entriesAscending())yield[e,t.value]}get size(){if(!this._size)return this.oldCache.size;let e=0;for(let t of this.oldCache.keys())this.cache.has(t)||e++;return Math.min(this._size+e,this.maxSize)}};uu.exports=lu});var fu,cu=C(()=>{l();fu=i=>i&&i._hash});function ui(i){return fu(i,{ignoreUnknown:!0})}var pu=C(()=>{l();cu()});function Xe(i){if(i=`${i}`,i==="0")return"0";if(/^[+-]?(\d+|\d*\.\d+)(e[+-]?\d+)?(%|\w+)?$/.test(i))return i.replace(/^[+-]?/,t=>t==="-"?"":"-");let e=["var","calc","min","max","clamp"];for(let t of e)if(i.includes(`${t}(`))return`calc(${i} * -1)`}var fi=C(()=>{l()});var du,hu=C(()=>{l();du=["preflight","container","accessibility","pointerEvents","visibility","position","inset","isolation","zIndex","order","gridColumn","gridColumnStart","gridColumnEnd","gridRow","gridRowStart","gridRowEnd","float","clear","margin","boxSizing","lineClamp","display","aspectRatio","size","height","maxHeight","minHeight","width","minWidth","maxWidth","flex","flexShrink","flexGrow","flexBasis","tableLayout","captionSide","borderCollapse","borderSpacing","transformOrigin","translate","rotate","skew","scale","transform","animation","cursor","touchAction","userSelect","resize","scrollSnapType","scrollSnapAlign","scrollSnapStop","scrollMargin","scrollPadding","listStylePosition","listStyleType","listStyleImage","appearance","columns","breakBefore","breakInside","breakAfter","gridAutoColumns","gridAutoFlow","gridAutoRows","gridTemplateColumns","gridTemplateRows","flexDirection","flexWrap","placeContent","placeItems","alignContent","alignItems","justifyContent","justifyItems","gap","space","divideWidth","divideStyle","divideColor","divideOpacity","placeSelf","alignSelf","justifySelf","overflow","overscrollBehavior","scrollBehavior","textOverflow","hyphens","whitespace","textWrap","wordBreak","borderRadius","borderWidth","borderStyle","borderColor","borderOpacity","backgroundColor","backgroundOpacity","backgroundImage","gradientColorStops","boxDecorationBreak","backgroundSize","backgroundAttachment","backgroundClip","backgroundPosition","backgroundRepeat","backgroundOrigin","fill","stroke","strokeWidth","objectFit","objectPosition","padding","textAlign","textIndent","verticalAlign","fontFamily","fontSize","fontWeight","textTransform","fontStyle","fontVariantNumeric","lineHeight","letterSpacing","textColor","textOpacity","textDecoration","textDecorationColor","textDecorationStyle","textDecorationThickness","textUnderlineOffset","fontSmoothing","placeholderColor","placeholderOpacity","caretColor","accentColor","opacity","backgroundBlendMode","mixBlendMode","boxShadow","boxShadowColor","outlineStyle","outlineWidth","outlineOffset","outlineColor","ringWidth","ringColor","ringOpacity","ringOffsetWidth","ringOffsetColor","blur","brightness","contrast","dropShadow","grayscale","hueRotate","invert","saturate","sepia","filter","backdropBlur","backdropBrightness","backdropContrast","backdropGrayscale","backdropHueRotate","backdropInvert","backdropOpacity","backdropSaturate","backdropSepia","backdropFilter","transitionProperty","transitionDelay","transitionDuration","transitionTimingFunction","willChange","contain","content","forcedColorAdjust"]});function mu(i,e){return i===void 0?e:Array.isArray(i)?i:[...new Set(e.filter(r=>i!==!1&&i[r]!==!1).concat(Object.keys(i).filter(r=>i[r]!==!1)))]}var gu=C(()=>{l()});var yu={};Ae(yu,{default:()=>_e});var _e,ci=C(()=>{l();_e=new Proxy({},{get:()=>String})});function Jn(i,e,t){typeof h!="undefined"&&h.env.JEST_WORKER_ID||t&&wu.has(t)||(t&&wu.add(t),console.warn(""),e.forEach(r=>console.warn(i,"-",r)))}function Xn(i){return _e.dim(i)}var wu,F,Oe=C(()=>{l();ci();wu=new Set;F={info(i,e){Jn(_e.bold(_e.cyan("info")),...Array.isArray(i)?[i]:[e,i])},warn(i,e){["content-problems"].includes(i)||Jn(_e.bold(_e.yellow("warn")),...Array.isArray(i)?[i]:[e,i])},risk(i,e){Jn(_e.bold(_e.magenta("risk")),...Array.isArray(i)?[i]:[e,i])}}});var bu={};Ae(bu,{default:()=>Kn});function sr({version:i,from:e,to:t}){F.warn(`${e}-color-renamed`,[`As of Tailwind CSS ${i}, \`${e}\` has been renamed to \`${t}\`.`,"Update your configuration file to silence this warning."])}var Kn,Zn=C(()=>{l();Oe();Kn={inherit:"inherit",current:"currentColor",transparent:"transparent",black:"#000",white:"#fff",slate:{50:"#f8fafc",100:"#f1f5f9",200:"#e2e8f0",300:"#cbd5e1",400:"#94a3b8",500:"#64748b",600:"#475569",700:"#334155",800:"#1e293b",900:"#0f172a",950:"#020617"},gray:{50:"#f9fafb",100:"#f3f4f6",200:"#e5e7eb",300:"#d1d5db",400:"#9ca3af",500:"#6b7280",600:"#4b5563",700:"#374151",800:"#1f2937",900:"#111827",950:"#030712"},zinc:{50:"#fafafa",100:"#f4f4f5",200:"#e4e4e7",300:"#d4d4d8",400:"#a1a1aa",500:"#71717a",600:"#52525b",700:"#3f3f46",800:"#27272a",900:"#18181b",950:"#09090b"},neutral:{50:"#fafafa",100:"#f5f5f5",200:"#e5e5e5",300:"#d4d4d4",400:"#a3a3a3",500:"#737373",600:"#525252",700:"#404040",800:"#262626",900:"#171717",950:"#0a0a0a"},stone:{50:"#fafaf9",100:"#f5f5f4",200:"#e7e5e4",300:"#d6d3d1",400:"#a8a29e",500:"#78716c",600:"#57534e",700:"#44403c",800:"#292524",900:"#1c1917",950:"#0c0a09"},red:{50:"#fef2f2",100:"#fee2e2",200:"#fecaca",300:"#fca5a5",400:"#f87171",500:"#ef4444",600:"#dc2626",700:"#b91c1c",800:"#991b1b",900:"#7f1d1d",950:"#450a0a"},orange:{50:"#fff7ed",100:"#ffedd5",200:"#fed7aa",300:"#fdba74",400:"#fb923c",500:"#f97316",600:"#ea580c",700:"#c2410c",800:"#9a3412",900:"#7c2d12",950:"#431407"},amber:{50:"#fffbeb",100:"#fef3c7",200:"#fde68a",300:"#fcd34d",400:"#fbbf24",500:"#f59e0b",600:"#d97706",700:"#b45309",800:"#92400e",900:"#78350f",950:"#451a03"},yellow:{50:"#fefce8",100:"#fef9c3",200:"#fef08a",300:"#fde047",400:"#facc15",500:"#eab308",600:"#ca8a04",700:"#a16207",800:"#854d0e",900:"#713f12",950:"#422006"},lime:{50:"#f7fee7",100:"#ecfccb",200:"#d9f99d",300:"#bef264",400:"#a3e635",500:"#84cc16",600:"#65a30d",700:"#4d7c0f",800:"#3f6212",900:"#365314",950:"#1a2e05"},green:{50:"#f0fdf4",100:"#dcfce7",200:"#bbf7d0",300:"#86efac",400:"#4ade80",500:"#22c55e",600:"#16a34a",700:"#15803d",800:"#166534",900:"#14532d",950:"#052e16"},emerald:{50:"#ecfdf5",100:"#d1fae5",200:"#a7f3d0",300:"#6ee7b7",400:"#34d399",500:"#10b981",600:"#059669",700:"#047857",800:"#065f46",900:"#064e3b",950:"#022c22"},teal:{50:"#f0fdfa",100:"#ccfbf1",200:"#99f6e4",300:"#5eead4",400:"#2dd4bf",500:"#14b8a6",600:"#0d9488",700:"#0f766e",800:"#115e59",900:"#134e4a",950:"#042f2e"},cyan:{50:"#ecfeff",100:"#cffafe",200:"#a5f3fc",300:"#67e8f9",400:"#22d3ee",500:"#06b6d4",600:"#0891b2",700:"#0e7490",800:"#155e75",900:"#164e63",950:"#083344"},sky:{50:"#f0f9ff",100:"#e0f2fe",200:"#bae6fd",300:"#7dd3fc",400:"#38bdf8",500:"#0ea5e9",600:"#0284c7",700:"#0369a1",800:"#075985",900:"#0c4a6e",950:"#082f49"},blue:{50:"#eff6ff",100:"#dbeafe",200:"#bfdbfe",300:"#93c5fd",400:"#60a5fa",500:"#3b82f6",600:"#2563eb",700:"#1d4ed8",800:"#1e40af",900:"#1e3a8a",950:"#172554"},indigo:{50:"#eef2ff",100:"#e0e7ff",200:"#c7d2fe",300:"#a5b4fc",400:"#818cf8",500:"#6366f1",600:"#4f46e5",700:"#4338ca",800:"#3730a3",900:"#312e81",950:"#1e1b4b"},violet:{50:"#f5f3ff",100:"#ede9fe",200:"#ddd6fe",300:"#c4b5fd",400:"#a78bfa",500:"#8b5cf6",600:"#7c3aed",700:"#6d28d9",800:"#5b21b6",900:"#4c1d95",950:"#2e1065"},purple:{50:"#faf5ff",100:"#f3e8ff",200:"#e9d5ff",300:"#d8b4fe",400:"#c084fc",500:"#a855f7",600:"#9333ea",700:"#7e22ce",800:"#6b21a8",900:"#581c87",950:"#3b0764"},fuchsia:{50:"#fdf4ff",100:"#fae8ff",200:"#f5d0fe",300:"#f0abfc",400:"#e879f9",500:"#d946ef",600:"#c026d3",700:"#a21caf",800:"#86198f",900:"#701a75",950:"#4a044e"},pink:{50:"#fdf2f8",100:"#fce7f3",200:"#fbcfe8",300:"#f9a8d4",400:"#f472b6",500:"#ec4899",600:"#db2777",700:"#be185d",800:"#9d174d",900:"#831843",950:"#500724"},rose:{50:"#fff1f2",100:"#ffe4e6",200:"#fecdd3",300:"#fda4af",400:"#fb7185",500:"#f43f5e",600:"#e11d48",700:"#be123c",800:"#9f1239",900:"#881337",950:"#4c0519"},get lightBlue(){return sr({version:"v2.2",from:"lightBlue",to:"sky"}),this.sky},get warmGray(){return sr({version:"v3.0",from:"warmGray",to:"stone"}),this.stone},get trueGray(){return sr({version:"v3.0",from:"trueGray",to:"neutral"}),this.neutral},get coolGray(){return sr({version:"v3.0",from:"coolGray",to:"gray"}),this.gray},get blueGray(){return sr({version:"v3.0",from:"blueGray",to:"slate"}),this.slate}}});function es(i,...e){for(let t of e){for(let r in t)i?.hasOwnProperty?.(r)||(i[r]=t[r]);for(let r of Object.getOwnPropertySymbols(t))i?.hasOwnProperty?.(r)||(i[r]=t[r])}return i}var vu=C(()=>{l()});function Ke(i){if(Array.isArray(i))return i;let e=i.split("[").length-1,t=i.split("]").length-1;if(e!==t)throw new Error(`Path is invalid. Has unbalanced brackets: ${i}`);return i.split(/\.(?![^\[]*\])|[\[\]]/g).filter(Boolean)}var pi=C(()=>{l()});function K(i,e){return di.future.includes(e)?i.future==="all"||(i?.future?.[e]??xu[e]??!1):di.experimental.includes(e)?i.experimental==="all"||(i?.experimental?.[e]??xu[e]??!1):!1}function ku(i){return i.experimental==="all"?di.experimental:Object.keys(i?.experimental??{}).filter(e=>di.experimental.includes(e)&&i.experimental[e])}function Su(i){if(h.env.JEST_WORKER_ID===void 0&&ku(i).length>0){let e=ku(i).map(t=>_e.yellow(t)).join(", ");F.warn("experimental-flags-enabled",[`You have enabled experimental features: ${e}`,"Experimental features in Tailwind CSS are not covered by semver, may introduce breaking changes, and can change at any time."])}}var xu,di,ze=C(()=>{l();ci();Oe();xu={optimizeUniversalDefaults:!1,generalizedModifiers:!0,disableColorOpacityUtilitiesByDefault:!1,relativeContentPathsByDefault:!1},di={future:["hoverOnlyWhenSupported","respectDefaultRingColorOpacity","disableColorOpacityUtilitiesByDefault","relativeContentPathsByDefault"],experimental:["optimizeUniversalDefaults","generalizedModifiers"]}});function Cu(i){(()=>{if(i.purge||!i.content||!Array.isArray(i.content)&&!(typeof i.content=="object"&&i.content!==null))return!1;if(Array.isArray(i.content))return i.content.every(t=>typeof t=="string"?!0:!(typeof t?.raw!="string"||t?.extension&&typeof t?.extension!="string"));if(typeof i.content=="object"&&i.content!==null){if(Object.keys(i.content).some(t=>!["files","relative","extract","transform"].includes(t)))return!1;if(Array.isArray(i.content.files)){if(!i.content.files.every(t=>typeof t=="string"?!0:!(typeof t?.raw!="string"||t?.extension&&typeof t?.extension!="string")))return!1;if(typeof i.content.extract=="object"){for(let t of Object.values(i.content.extract))if(typeof t!="function")return!1}else if(!(i.content.extract===void 0||typeof i.content.extract=="function"))return!1;if(typeof i.content.transform=="object"){for(let t of Object.values(i.content.transform))if(typeof t!="function")return!1}else if(!(i.content.transform===void 0||typeof i.content.transform=="function"))return!1;if(typeof i.content.relative!="boolean"&&typeof i.content.relative!="undefined")return!1}return!0}return!1})()||F.warn("purge-deprecation",["The `purge`/`content` options have changed in Tailwind CSS v3.0.","Update your configuration file to eliminate this warning.","https://tailwindcss.com/docs/upgrade-guide#configure-content-sources"]),i.safelist=(()=>{let{content:t,purge:r,safelist:n}=i;return Array.isArray(n)?n:Array.isArray(t?.safelist)?t.safelist:Array.isArray(r?.safelist)?r.safelist:Array.isArray(r?.options?.safelist)?r.options.safelist:[]})(),i.blocklist=(()=>{let{blocklist:t}=i;if(Array.isArray(t)){if(t.every(r=>typeof r=="string"))return t;F.warn("blocklist-invalid",["The `blocklist` option must be an array of strings.","https://tailwindcss.com/docs/content-configuration#discarding-classes"])}return[]})(),typeof i.prefix=="function"?(F.warn("prefix-function",["As of Tailwind CSS v3.0, `prefix` cannot be a function.","Update `prefix` in your configuration to be a string to eliminate this warning.","https://tailwindcss.com/docs/upgrade-guide#prefix-cannot-be-a-function"]),i.prefix=""):i.prefix=i.prefix??"",i.content={relative:(()=>{let{content:t}=i;return t?.relative?t.relative:K(i,"relativeContentPathsByDefault")})(),files:(()=>{let{content:t,purge:r}=i;return Array.isArray(r)?r:Array.isArray(r?.content)?r.content:Array.isArray(t)?t:Array.isArray(t?.content)?t.content:Array.isArray(t?.files)?t.files:[]})(),extract:(()=>{let t=(()=>i.purge?.extract?i.purge.extract:i.content?.extract?i.content.extract:i.purge?.extract?.DEFAULT?i.purge.extract.DEFAULT:i.content?.extract?.DEFAULT?i.content.extract.DEFAULT:i.purge?.options?.extractors?i.purge.options.extractors:i.content?.options?.extractors?i.content.options.extractors:{})(),r={},n=(()=>{if(i.purge?.options?.defaultExtractor)return i.purge.options.defaultExtractor;if(i.content?.options?.defaultExtractor)return i.content.options.defaultExtractor})();if(n!==void 0&&(r.DEFAULT=n),typeof t=="function")r.DEFAULT=t;else if(Array.isArray(t))for(let{extensions:a,extractor:s}of t??[])for(let o of a)r[o]=s;else typeof t=="object"&&t!==null&&Object.assign(r,t);return r})(),transform:(()=>{let t=(()=>i.purge?.transform?i.purge.transform:i.content?.transform?i.content.transform:i.purge?.transform?.DEFAULT?i.purge.transform.DEFAULT:i.content?.transform?.DEFAULT?i.content.transform.DEFAULT:{})(),r={};return typeof t=="function"&&(r.DEFAULT=t),typeof t=="object"&&t!==null&&Object.assign(r,t),r})()};for(let t of i.content.files)if(typeof t=="string"&&/{([^,]*?)}/g.test(t)){F.warn("invalid-glob-braces",[`The glob pattern ${Xn(t)} in your Tailwind CSS configuration is invalid.`,`Update it to ${Xn(t.replace(/{([^,]*?)}/g,"$1"))} to silence this warning.`]);break}return i}var Au=C(()=>{l();ze();Oe()});function ie(i){if(Object.prototype.toString.call(i)!=="[object Object]")return!1;let e=Object.getPrototypeOf(i);return e===null||Object.getPrototypeOf(e)===null}var kt=C(()=>{l()});function Ze(i){return Array.isArray(i)?i.map(e=>Ze(e)):typeof i=="object"&&i!==null?Object.fromEntries(Object.entries(i).map(([e,t])=>[e,Ze(t)])):i}var hi=C(()=>{l()});function mt(i){return i.replace(/\\,/g,"\\2c ")}var mi=C(()=>{l()});var ts,_u=C(()=>{l();ts={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}});function ar(i,{loose:e=!1}={}){if(typeof i!="string")return null;if(i=i.trim(),i==="transparent")return{mode:"rgb",color:["0","0","0"],alpha:"0"};if(i in ts)return{mode:"rgb",color:ts[i].map(a=>a.toString())};let t=i.replace(_b,(a,s,o,u,c)=>["#",s,s,o,o,u,u,c?c+c:""].join("")).match(Ab);if(t!==null)return{mode:"rgb",color:[parseInt(t[1],16),parseInt(t[2],16),parseInt(t[3],16)].map(a=>a.toString()),alpha:t[4]?(parseInt(t[4],16)/255).toString():void 0};let r=i.match(Ob)??i.match(Eb);if(r===null)return null;let n=[r[2],r[3],r[4]].filter(Boolean).map(a=>a.toString());return n.length===2&&n[0].startsWith("var(")?{mode:r[1],color:[n[0]],alpha:n[1]}:!e&&n.length!==3||n.length<3&&!n.some(a=>/^var\(.*?\)$/.test(a))?null:{mode:r[1],color:n,alpha:r[5]?.toString?.()}}function rs({mode:i,color:e,alpha:t}){let r=t!==void 0;return i==="rgba"||i==="hsla"?`${i}(${e.join(", ")}${r?`, ${t}`:""})`:`${i}(${e.join(" ")}${r?` / ${t}`:""})`}var Ab,_b,et,gi,Ou,tt,Ob,Eb,is=C(()=>{l();_u();Ab=/^#([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})?$/i,_b=/^#([a-f\d])([a-f\d])([a-f\d])([a-f\d])?$/i,et=/(?:\d+|\d*\.\d+)%?/,gi=/(?:\s*,\s*|\s+)/,Ou=/\s*[,/]\s*/,tt=/var\(--(?:[^ )]*?)(?:,(?:[^ )]*?|var\(--[^ )]*?\)))?\)/,Ob=new RegExp(`^(rgba?)\\(\\s*(${et.source}|${tt.source})(?:${gi.source}(${et.source}|${tt.source}))?(?:${gi.source}(${et.source}|${tt.source}))?(?:${Ou.source}(${et.source}|${tt.source}))?\\s*\\)$`),Eb=new RegExp(`^(hsla?)\\(\\s*((?:${et.source})(?:deg|rad|grad|turn)?|${tt.source})(?:${gi.source}(${et.source}|${tt.source}))?(?:${gi.source}(${et.source}|${tt.source}))?(?:${Ou.source}(${et.source}|${tt.source}))?\\s*\\)$`)});function Ie(i,e,t){if(typeof i=="function")return i({opacityValue:e});let r=ar(i,{loose:!0});return r===null?t:rs({...r,alpha:e})}function se({color:i,property:e,variable:t}){let r=[].concat(e);if(typeof i=="function")return{[t]:"1",...Object.fromEntries(r.map(a=>[a,i({opacityVariable:t,opacityValue:`var(${t})`})]))};let n=ar(i);return n===null?Object.fromEntries(r.map(a=>[a,i])):n.alpha!==void 0?Object.fromEntries(r.map(a=>[a,i])):{[t]:"1",...Object.fromEntries(r.map(a=>[a,rs({...n,alpha:`var(${t})`})]))}}var or=C(()=>{l();is()});function ae(i,e){let t=[],r=[],n=0,a=!1;for(let s=0;s{l()});function yi(i){return ae(i,",").map(t=>{let r=t.trim(),n={raw:r},a=r.split(Pb),s=new Set;for(let o of a)Eu.lastIndex=0,!s.has("KEYWORD")&&Tb.has(o)?(n.keyword=o,s.add("KEYWORD")):Eu.test(o)?s.has("X")?s.has("Y")?s.has("BLUR")?s.has("SPREAD")||(n.spread=o,s.add("SPREAD")):(n.blur=o,s.add("BLUR")):(n.y=o,s.add("Y")):(n.x=o,s.add("X")):n.color?(n.unknown||(n.unknown=[]),n.unknown.push(o)):n.color=o;return n.valid=n.x!==void 0&&n.y!==void 0,n})}function Tu(i){return i.map(e=>e.valid?[e.keyword,e.x,e.y,e.blur,e.spread,e.color].filter(Boolean).join(" "):e.raw).join(", ")}var Tb,Pb,Eu,ns=C(()=>{l();St();Tb=new Set(["inset","inherit","initial","revert","unset"]),Pb=/\ +(?![^(]*\))/g,Eu=/^-?(\d+|\.\d+)(.*?)$/g});function ss(i){return Db.some(e=>new RegExp(`^${e}\\(.*\\)`).test(i))}function L(i,e=null,t=!0){let r=e&&Ib.has(e.property);return i.startsWith("--")&&!r?`var(${i})`:i.includes("url(")?i.split(/(url\(.*?\))/g).filter(Boolean).map(n=>/^url\(.*?\)$/.test(n)?n:L(n,e,!1)).join(""):(i=i.replace(/([^\\])_+/g,(n,a)=>a+" ".repeat(n.length-1)).replace(/^_/g," ").replace(/\\_/g,"_"),t&&(i=i.trim()),i=qb(i),i)}function qb(i){let e=["theme"],t=["min-content","max-content","fit-content","safe-area-inset-top","safe-area-inset-right","safe-area-inset-bottom","safe-area-inset-left","titlebar-area-x","titlebar-area-y","titlebar-area-width","titlebar-area-height","keyboard-inset-top","keyboard-inset-right","keyboard-inset-bottom","keyboard-inset-left","keyboard-inset-width","keyboard-inset-height","radial-gradient","linear-gradient","conic-gradient","repeating-radial-gradient","repeating-linear-gradient","repeating-conic-gradient"];return i.replace(/(calc|min|max|clamp)\(.+\)/g,r=>{let n="";function a(){let s=n.trimEnd();return s[s.length-1]}for(let s=0;sr[s+p]===d)},u=function(f){let d=1/0;for(let m of f){let b=r.indexOf(m,s);b!==-1&&bo(f))){let f=t.find(d=>o(d));n+=f,s+=f.length-1}else e.some(f=>o(f))?n+=u([")"]):o("[")?n+=u(["]"]):["+","-","*","/"].includes(c)&&!["(","+","-","*","/",","].includes(a())?n+=` ${c} `:n+=c}return n.replace(/\s+/g," ")})}function as(i){return i.startsWith("url(")}function os(i){return!isNaN(Number(i))||ss(i)}function lr(i){return i.endsWith("%")&&os(i.slice(0,-1))||ss(i)}function ur(i){return i==="0"||new RegExp(`^[+-]?[0-9]*.?[0-9]+(?:[eE][+-]?[0-9]+)?${Mb}$`).test(i)||ss(i)}function Pu(i){return Bb.has(i)}function Du(i){let e=yi(L(i));for(let t of e)if(!t.valid)return!1;return!0}function Iu(i){let e=0;return ae(i,"_").every(r=>(r=L(r),r.startsWith("var(")?!0:ar(r,{loose:!0})!==null?(e++,!0):!1))?e>0:!1}function qu(i){let e=0;return ae(i,",").every(r=>(r=L(r),r.startsWith("var(")?!0:as(r)||Lb(r)||["element(","image(","cross-fade(","image-set("].some(n=>r.startsWith(n))?(e++,!0):!1))?e>0:!1}function Lb(i){i=L(i);for(let e of Fb)if(i.startsWith(`${e}(`))return!0;return!1}function Ru(i){let e=0;return ae(i,"_").every(r=>(r=L(r),r.startsWith("var(")?!0:Nb.has(r)||ur(r)||lr(r)?(e++,!0):!1))?e>0:!1}function Mu(i){let e=0;return ae(i,",").every(r=>(r=L(r),r.startsWith("var(")?!0:r.includes(" ")&&!/(['"])([^"']+)\1/g.test(r)||/^\d/g.test(r)?!1:(e++,!0)))?e>0:!1}function Bu(i){return $b.has(i)}function Fu(i){return jb.has(i)}function Lu(i){return zb.has(i)}var Db,Ib,Rb,Mb,Bb,Fb,Nb,$b,jb,zb,fr=C(()=>{l();is();ns();St();Db=["min","max","clamp","calc"];Ib=new Set(["scroll-timeline-name","timeline-scope","view-timeline-name","font-palette","scroll-timeline","animation-timeline","view-timeline"]);Rb=["cm","mm","Q","in","pc","pt","px","em","ex","ch","rem","lh","rlh","vw","vh","vmin","vmax","vb","vi","svw","svh","lvw","lvh","dvw","dvh","cqw","cqh","cqi","cqb","cqmin","cqmax"],Mb=`(?:${Rb.join("|")})`;Bb=new Set(["thin","medium","thick"]);Fb=new Set(["conic-gradient","linear-gradient","radial-gradient","repeating-conic-gradient","repeating-linear-gradient","repeating-radial-gradient"]);Nb=new Set(["center","top","right","bottom","left"]);$b=new Set(["serif","sans-serif","monospace","cursive","fantasy","system-ui","ui-serif","ui-sans-serif","ui-monospace","ui-rounded","math","emoji","fangsong"]);jb=new Set(["xx-small","x-small","small","medium","large","x-large","xx-large","xxx-large"]);zb=new Set(["larger","smaller"])});function Nu(i){let e=["cover","contain"];return ae(i,",").every(t=>{let r=ae(t,"_").filter(Boolean);return r.length===1&&e.includes(r[0])?!0:r.length!==1&&r.length!==2?!1:r.every(n=>ur(n)||lr(n)||n==="auto")})}var $u=C(()=>{l();fr();St()});function ju(i,e){i.walkClasses(t=>{t.value=e(t.value),t.raws&&t.raws.value&&(t.raws.value=mt(t.raws.value))})}function zu(i,e){if(!rt(i))return;let t=i.slice(1,-1);if(!!e(t))return L(t)}function Vb(i,e={},t){let r=e[i];if(r!==void 0)return Xe(r);if(rt(i)){let n=zu(i,t);return n===void 0?void 0:Xe(n)}}function wi(i,e={},{validate:t=()=>!0}={}){let r=e.values?.[i];return r!==void 0?r:e.supportsNegativeValues&&i.startsWith("-")?Vb(i.slice(1),e.values,t):zu(i,t)}function rt(i){return i.startsWith("[")&&i.endsWith("]")}function Vu(i){let e=i.lastIndexOf("/"),t=i.lastIndexOf("[",e),r=i.indexOf("]",e);return i[e-1]==="]"||i[e+1]==="["||t!==-1&&r!==-1&&t")){let e=i;return({opacityValue:t=1})=>e.replace("",t)}return i}function Uu(i){return L(i.slice(1,-1))}function Ub(i,e={},{tailwindConfig:t={}}={}){if(e.values?.[i]!==void 0)return Ct(e.values?.[i]);let[r,n]=Vu(i);if(n!==void 0){let a=e.values?.[r]??(rt(r)?r.slice(1,-1):void 0);return a===void 0?void 0:(a=Ct(a),rt(n)?Ie(a,Uu(n)):t.theme?.opacity?.[n]===void 0?void 0:Ie(a,t.theme.opacity[n]))}return wi(i,e,{validate:Iu})}function Wb(i,e={}){return e.values?.[i]}function me(i){return(e,t)=>wi(e,t,{validate:i})}function Gb(i,e){let t=i.indexOf(e);return t===-1?[void 0,i]:[i.slice(0,t),i.slice(t+1)]}function us(i,e,t,r){if(t.values&&e in t.values)for(let{type:a}of i??[]){let s=ls[a](e,t,{tailwindConfig:r});if(s!==void 0)return[s,a,null]}if(rt(e)){let a=e.slice(1,-1),[s,o]=Gb(a,":");if(!/^[\w-_]+$/g.test(s))o=a;else if(s!==void 0&&!Wu.includes(s))return[];if(o.length>0&&Wu.includes(s))return[wi(`[${o}]`,t),s,null]}let n=fs(i,e,t,r);for(let a of n)return a;return[]}function*fs(i,e,t,r){let n=K(r,"generalizedModifiers"),[a,s]=Vu(e);if(n&&t.modifiers!=null&&(t.modifiers==="any"||typeof t.modifiers=="object"&&(s&&rt(s)||s in t.modifiers))||(a=e,s=void 0),s!==void 0&&a===""&&(a="DEFAULT"),s!==void 0&&typeof t.modifiers=="object"){let u=t.modifiers?.[s]??null;u!==null?s=u:rt(s)&&(s=Uu(s))}for(let{type:u}of i??[]){let c=ls[u](a,t,{tailwindConfig:r});c!==void 0&&(yield[c,u,s??null])}}var ls,Wu,cr=C(()=>{l();mi();or();fr();fi();$u();ze();ls={any:wi,color:Ub,url:me(as),image:me(qu),length:me(ur),percentage:me(lr),position:me(Ru),lookup:Wb,"generic-name":me(Bu),"family-name":me(Mu),number:me(os),"line-width":me(Pu),"absolute-size":me(Fu),"relative-size":me(Lu),shadow:me(Du),size:me(Nu)},Wu=Object.keys(ls)});function N(i){return typeof i=="function"?i({}):i}var cs=C(()=>{l()});function At(i){return typeof i=="function"}function pr(i,...e){let t=e.pop();for(let r of e)for(let n in r){let a=t(i[n],r[n]);a===void 0?ie(i[n])&&ie(r[n])?i[n]=pr({},i[n],r[n],t):i[n]=r[n]:i[n]=a}return i}function Hb(i,...e){return At(i)?i(...e):i}function Yb(i){return i.reduce((e,{extend:t})=>pr(e,t,(r,n)=>r===void 0?[n]:Array.isArray(r)?[n,...r]:[n,r]),{})}function Qb(i){return{...i.reduce((e,t)=>es(e,t),{}),extend:Yb(i)}}function Gu(i,e){if(Array.isArray(i)&&ie(i[0]))return i.concat(e);if(Array.isArray(e)&&ie(e[0])&&ie(i))return[i,...e];if(Array.isArray(e))return e}function Jb({extend:i,...e}){return pr(e,i,(t,r)=>!At(t)&&!r.some(At)?pr({},t,...r,Gu):(n,a)=>pr({},...[t,...r].map(s=>Hb(s,n,a)),Gu))}function*Xb(i){let e=Ke(i);if(e.length===0||(yield e,Array.isArray(i)))return;let t=/^(.*?)\s*\/\s*([^/]+)$/,r=i.match(t);if(r!==null){let[,n,a]=r,s=Ke(n);s.alpha=a,yield s}}function Kb(i){let e=(t,r)=>{for(let n of Xb(t)){let a=0,s=i;for(;s!=null&&a(t[r]=At(i[r])?i[r](e,ps):i[r],t),{})}function Hu(i){let e=[];return i.forEach(t=>{e=[...e,t];let r=t?.plugins??[];r.length!==0&&r.forEach(n=>{n.__isOptionsFunction&&(n=n()),e=[...e,...Hu([n?.config??{}])]})}),e}function Zb(i){return[...i].reduceRight((t,r)=>At(r)?r({corePlugins:t}):mu(r,t),du)}function e0(i){return[...i].reduceRight((t,r)=>[...t,...r],[])}function ds(i){let e=[...Hu(i),{prefix:"",important:!1,separator:":"}];return Cu(es({theme:Kb(Jb(Qb(e.map(t=>t?.theme??{})))),corePlugins:Zb(e.map(t=>t.corePlugins)),plugins:e0(i.map(t=>t?.plugins??[]))},...e))}var ps,Yu=C(()=>{l();fi();hu();gu();Zn();vu();pi();Au();kt();hi();cr();or();cs();ps={colors:Kn,negative(i){return Object.keys(i).filter(e=>i[e]!=="0").reduce((e,t)=>{let r=Xe(i[t]);return r!==void 0&&(e[`-${t}`]=r),e},{})},breakpoints(i){return Object.keys(i).filter(e=>typeof i[e]=="string").reduce((e,t)=>({...e,[`screen-${t}`]:i[t]}),{})}}});var bi=v((qE,Qu)=>{l();Qu.exports={content:[],presets:[],darkMode:"media",theme:{accentColor:({theme:i})=>({...i("colors"),auto:"auto"}),animation:{none:"none",spin:"spin 1s linear infinite",ping:"ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",pulse:"pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",bounce:"bounce 1s infinite"},aria:{busy:'busy="true"',checked:'checked="true"',disabled:'disabled="true"',expanded:'expanded="true"',hidden:'hidden="true"',pressed:'pressed="true"',readonly:'readonly="true"',required:'required="true"',selected:'selected="true"'},aspectRatio:{auto:"auto",square:"1 / 1",video:"16 / 9"},backdropBlur:({theme:i})=>i("blur"),backdropBrightness:({theme:i})=>i("brightness"),backdropContrast:({theme:i})=>i("contrast"),backdropGrayscale:({theme:i})=>i("grayscale"),backdropHueRotate:({theme:i})=>i("hueRotate"),backdropInvert:({theme:i})=>i("invert"),backdropOpacity:({theme:i})=>i("opacity"),backdropSaturate:({theme:i})=>i("saturate"),backdropSepia:({theme:i})=>i("sepia"),backgroundColor:({theme:i})=>i("colors"),backgroundImage:{none:"none","gradient-to-t":"linear-gradient(to top, var(--tw-gradient-stops))","gradient-to-tr":"linear-gradient(to top right, var(--tw-gradient-stops))","gradient-to-r":"linear-gradient(to right, var(--tw-gradient-stops))","gradient-to-br":"linear-gradient(to bottom right, var(--tw-gradient-stops))","gradient-to-b":"linear-gradient(to bottom, var(--tw-gradient-stops))","gradient-to-bl":"linear-gradient(to bottom left, var(--tw-gradient-stops))","gradient-to-l":"linear-gradient(to left, var(--tw-gradient-stops))","gradient-to-tl":"linear-gradient(to top left, var(--tw-gradient-stops))"},backgroundOpacity:({theme:i})=>i("opacity"),backgroundPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},backgroundSize:{auto:"auto",cover:"cover",contain:"contain"},blur:{0:"0",none:"0",sm:"4px",DEFAULT:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},borderColor:({theme:i})=>({...i("colors"),DEFAULT:i("colors.gray.200","currentColor")}),borderOpacity:({theme:i})=>i("opacity"),borderRadius:{none:"0px",sm:"0.125rem",DEFAULT:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},borderSpacing:({theme:i})=>({...i("spacing")}),borderWidth:{DEFAULT:"1px",0:"0px",2:"2px",4:"4px",8:"8px"},boxShadow:{sm:"0 1px 2px 0 rgb(0 0 0 / 0.05)",DEFAULT:"0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",md:"0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",lg:"0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",xl:"0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)","2xl":"0 25px 50px -12px rgb(0 0 0 / 0.25)",inner:"inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",none:"none"},boxShadowColor:({theme:i})=>i("colors"),brightness:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",200:"2"},caretColor:({theme:i})=>i("colors"),colors:({colors:i})=>({inherit:i.inherit,current:i.current,transparent:i.transparent,black:i.black,white:i.white,slate:i.slate,gray:i.gray,zinc:i.zinc,neutral:i.neutral,stone:i.stone,red:i.red,orange:i.orange,amber:i.amber,yellow:i.yellow,lime:i.lime,green:i.green,emerald:i.emerald,teal:i.teal,cyan:i.cyan,sky:i.sky,blue:i.blue,indigo:i.indigo,violet:i.violet,purple:i.purple,fuchsia:i.fuchsia,pink:i.pink,rose:i.rose}),columns:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12","3xs":"16rem","2xs":"18rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem"},container:{},content:{none:"none"},contrast:{0:"0",50:".5",75:".75",100:"1",125:"1.25",150:"1.5",200:"2"},cursor:{auto:"auto",default:"default",pointer:"pointer",wait:"wait",text:"text",move:"move",help:"help","not-allowed":"not-allowed",none:"none","context-menu":"context-menu",progress:"progress",cell:"cell",crosshair:"crosshair","vertical-text":"vertical-text",alias:"alias",copy:"copy","no-drop":"no-drop",grab:"grab",grabbing:"grabbing","all-scroll":"all-scroll","col-resize":"col-resize","row-resize":"row-resize","n-resize":"n-resize","e-resize":"e-resize","s-resize":"s-resize","w-resize":"w-resize","ne-resize":"ne-resize","nw-resize":"nw-resize","se-resize":"se-resize","sw-resize":"sw-resize","ew-resize":"ew-resize","ns-resize":"ns-resize","nesw-resize":"nesw-resize","nwse-resize":"nwse-resize","zoom-in":"zoom-in","zoom-out":"zoom-out"},divideColor:({theme:i})=>i("borderColor"),divideOpacity:({theme:i})=>i("borderOpacity"),divideWidth:({theme:i})=>i("borderWidth"),dropShadow:{sm:"0 1px 1px rgb(0 0 0 / 0.05)",DEFAULT:["0 1px 2px rgb(0 0 0 / 0.1)","0 1px 1px rgb(0 0 0 / 0.06)"],md:["0 4px 3px rgb(0 0 0 / 0.07)","0 2px 2px rgb(0 0 0 / 0.06)"],lg:["0 10px 8px rgb(0 0 0 / 0.04)","0 4px 3px rgb(0 0 0 / 0.1)"],xl:["0 20px 13px rgb(0 0 0 / 0.03)","0 8px 5px rgb(0 0 0 / 0.08)"],"2xl":"0 25px 25px rgb(0 0 0 / 0.15)",none:"0 0 #0000"},fill:({theme:i})=>({none:"none",...i("colors")}),flex:{1:"1 1 0%",auto:"1 1 auto",initial:"0 1 auto",none:"none"},flexBasis:({theme:i})=>({auto:"auto",...i("spacing"),"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%"}),flexGrow:{0:"0",DEFAULT:"1"},flexShrink:{0:"0",DEFAULT:"1"},fontFamily:{sans:["ui-sans-serif","system-ui","sans-serif",'"Apple Color Emoji"','"Segoe UI Emoji"','"Segoe UI Symbol"','"Noto Color Emoji"'],serif:["ui-serif","Georgia","Cambria",'"Times New Roman"',"Times","serif"],mono:["ui-monospace","SFMono-Regular","Menlo","Monaco","Consolas",'"Liberation Mono"','"Courier New"',"monospace"]},fontSize:{xs:["0.75rem",{lineHeight:"1rem"}],sm:["0.875rem",{lineHeight:"1.25rem"}],base:["1rem",{lineHeight:"1.5rem"}],lg:["1.125rem",{lineHeight:"1.75rem"}],xl:["1.25rem",{lineHeight:"1.75rem"}],"2xl":["1.5rem",{lineHeight:"2rem"}],"3xl":["1.875rem",{lineHeight:"2.25rem"}],"4xl":["2.25rem",{lineHeight:"2.5rem"}],"5xl":["3rem",{lineHeight:"1"}],"6xl":["3.75rem",{lineHeight:"1"}],"7xl":["4.5rem",{lineHeight:"1"}],"8xl":["6rem",{lineHeight:"1"}],"9xl":["8rem",{lineHeight:"1"}]},fontWeight:{thin:"100",extralight:"200",light:"300",normal:"400",medium:"500",semibold:"600",bold:"700",extrabold:"800",black:"900"},gap:({theme:i})=>i("spacing"),gradientColorStops:({theme:i})=>i("colors"),gradientColorStopPositions:{"0%":"0%","5%":"5%","10%":"10%","15%":"15%","20%":"20%","25%":"25%","30%":"30%","35%":"35%","40%":"40%","45%":"45%","50%":"50%","55%":"55%","60%":"60%","65%":"65%","70%":"70%","75%":"75%","80%":"80%","85%":"85%","90%":"90%","95%":"95%","100%":"100%"},grayscale:{0:"0",DEFAULT:"100%"},gridAutoColumns:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridAutoRows:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridColumn:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridColumnEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13"},gridColumnStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13"},gridRow:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridRowEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13"},gridRowStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13"},gridTemplateColumns:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))"},gridTemplateRows:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))"},height:({theme:i})=>({auto:"auto",...i("spacing"),"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content"}),hueRotate:{0:"0deg",15:"15deg",30:"30deg",60:"60deg",90:"90deg",180:"180deg"},inset:({theme:i})=>({auto:"auto",...i("spacing"),"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%"}),invert:{0:"0",DEFAULT:"100%"},keyframes:{spin:{to:{transform:"rotate(360deg)"}},ping:{"75%, 100%":{transform:"scale(2)",opacity:"0"}},pulse:{"50%":{opacity:".5"}},bounce:{"0%, 100%":{transform:"translateY(-25%)",animationTimingFunction:"cubic-bezier(0.8,0,1,1)"},"50%":{transform:"none",animationTimingFunction:"cubic-bezier(0,0,0.2,1)"}}},letterSpacing:{tighter:"-0.05em",tight:"-0.025em",normal:"0em",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeight:{none:"1",tight:"1.25",snug:"1.375",normal:"1.5",relaxed:"1.625",loose:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},listStyleType:{none:"none",disc:"disc",decimal:"decimal"},listStyleImage:{none:"none"},margin:({theme:i})=>({auto:"auto",...i("spacing")}),lineClamp:{1:"1",2:"2",3:"3",4:"4",5:"5",6:"6"},maxHeight:({theme:i})=>({...i("spacing"),none:"none",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content"}),maxWidth:({theme:i,breakpoints:e})=>({...i("spacing"),none:"none",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",prose:"65ch",...e(i("screens"))}),minHeight:({theme:i})=>({...i("spacing"),full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content"}),minWidth:({theme:i})=>({...i("spacing"),full:"100%",min:"min-content",max:"max-content",fit:"fit-content"}),objectPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},opacity:{0:"0",5:"0.05",10:"0.1",15:"0.15",20:"0.2",25:"0.25",30:"0.3",35:"0.35",40:"0.4",45:"0.45",50:"0.5",55:"0.55",60:"0.6",65:"0.65",70:"0.7",75:"0.75",80:"0.8",85:"0.85",90:"0.9",95:"0.95",100:"1"},order:{first:"-9999",last:"9999",none:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12"},outlineColor:({theme:i})=>i("colors"),outlineOffset:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},outlineWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},padding:({theme:i})=>i("spacing"),placeholderColor:({theme:i})=>i("colors"),placeholderOpacity:({theme:i})=>i("opacity"),ringColor:({theme:i})=>({DEFAULT:i("colors.blue.500","#3b82f6"),...i("colors")}),ringOffsetColor:({theme:i})=>i("colors"),ringOffsetWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},ringOpacity:({theme:i})=>({DEFAULT:"0.5",...i("opacity")}),ringWidth:{DEFAULT:"3px",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},rotate:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",45:"45deg",90:"90deg",180:"180deg"},saturate:{0:"0",50:".5",100:"1",150:"1.5",200:"2"},scale:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5"},screens:{sm:"640px",md:"768px",lg:"1024px",xl:"1280px","2xl":"1536px"},scrollMargin:({theme:i})=>({...i("spacing")}),scrollPadding:({theme:i})=>i("spacing"),sepia:{0:"0",DEFAULT:"100%"},skew:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg"},space:({theme:i})=>({...i("spacing")}),spacing:{px:"1px",0:"0px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",11:"2.75rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},stroke:({theme:i})=>({none:"none",...i("colors")}),strokeWidth:{0:"0",1:"1",2:"2"},supports:{},data:{},textColor:({theme:i})=>i("colors"),textDecorationColor:({theme:i})=>i("colors"),textDecorationThickness:{auto:"auto","from-font":"from-font",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},textIndent:({theme:i})=>({...i("spacing")}),textOpacity:({theme:i})=>i("opacity"),textUnderlineOffset:{auto:"auto",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},transformOrigin:{center:"center",top:"top","top-right":"top right",right:"right","bottom-right":"bottom right",bottom:"bottom","bottom-left":"bottom left",left:"left","top-left":"top left"},transitionDelay:{0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms"},transitionDuration:{DEFAULT:"150ms",0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms"},transitionProperty:{none:"none",all:"all",DEFAULT:"color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",colors:"color, background-color, border-color, text-decoration-color, fill, stroke",opacity:"opacity",shadow:"box-shadow",transform:"transform"},transitionTimingFunction:{DEFAULT:"cubic-bezier(0.4, 0, 0.2, 1)",linear:"linear",in:"cubic-bezier(0.4, 0, 1, 1)",out:"cubic-bezier(0, 0, 0.2, 1)","in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},translate:({theme:i})=>({...i("spacing"),"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%"}),size:({theme:i})=>({auto:"auto",...i("spacing"),"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",min:"min-content",max:"max-content",fit:"fit-content"}),width:({theme:i})=>({auto:"auto",...i("spacing"),"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",screen:"100vw",svw:"100svw",lvw:"100lvw",dvw:"100dvw",min:"min-content",max:"max-content",fit:"fit-content"}),willChange:{auto:"auto",scroll:"scroll-position",contents:"contents",transform:"transform"},zIndex:{auto:"auto",0:"0",10:"10",20:"20",30:"30",40:"40",50:"50"}},plugins:[]}});function vi(i){let e=(i?.presets??[Ju.default]).slice().reverse().flatMap(n=>vi(n instanceof Function?n():n)),t={respectDefaultRingColorOpacity:{theme:{ringColor:({theme:n})=>({DEFAULT:"#3b82f67f",...n("colors")})}},disableColorOpacityUtilitiesByDefault:{corePlugins:{backgroundOpacity:!1,borderOpacity:!1,divideOpacity:!1,placeholderOpacity:!1,ringOpacity:!1,textOpacity:!1}}},r=Object.keys(t).filter(n=>K(i,n)).map(n=>t[n]);return[i,...r,...e]}var Ju,Xu=C(()=>{l();Ju=X(bi());ze()});var Ku={};Ae(Ku,{default:()=>dr});function dr(...i){let[,...e]=vi(i[0]);return ds([...i,...e])}var hs=C(()=>{l();Yu();Xu()});var Zu={};Ae(Zu,{default:()=>Z});var Z,gt=C(()=>{l();Z={resolve:i=>i,extname:i=>"."+i.split(".").pop()}});function xi(i){return typeof i=="object"&&i!==null}function r0(i){return Object.keys(i).length===0}function ef(i){return typeof i=="string"||i instanceof String}function ms(i){return xi(i)&&i.config===void 0&&!r0(i)?null:xi(i)&&i.config!==void 0&&ef(i.config)?Z.resolve(i.config):xi(i)&&i.config!==void 0&&xi(i.config)?null:ef(i)?Z.resolve(i):i0()}function i0(){for(let i of t0)try{let e=Z.resolve(i);return te.accessSync(e),e}catch(e){}return null}var t0,tf=C(()=>{l();je();gt();t0=["./tailwind.config.js","./tailwind.config.cjs","./tailwind.config.mjs","./tailwind.config.ts"]});var rf={};Ae(rf,{default:()=>gs});var gs,ys=C(()=>{l();gs={parse:i=>({href:i})}});var ws=v(()=>{l()});var ki=v((VE,af)=>{l();"use strict";var nf=(ci(),yu),sf=ws(),_t=class extends Error{constructor(e,t,r,n,a,s){super(e);this.name="CssSyntaxError",this.reason=e,a&&(this.file=a),n&&(this.source=n),s&&(this.plugin=s),typeof t!="undefined"&&typeof r!="undefined"&&(typeof t=="number"?(this.line=t,this.column=r):(this.line=t.line,this.column=t.column,this.endLine=r.line,this.endColumn=r.column)),this.setMessage(),Error.captureStackTrace&&Error.captureStackTrace(this,_t)}setMessage(){this.message=this.plugin?this.plugin+": ":"",this.message+=this.file?this.file:"",typeof this.line!="undefined"&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}showSourceCode(e){if(!this.source)return"";let t=this.source;e==null&&(e=nf.isColorSupported),sf&&e&&(t=sf(t));let r=t.split(/\r?\n/),n=Math.max(this.line-3,0),a=Math.min(this.line+2,r.length),s=String(a).length,o,u;if(e){let{bold:c,red:f,gray:d}=nf.createColors(!0);o=p=>c(f(p)),u=p=>d(p)}else o=u=c=>c;return r.slice(n,a).map((c,f)=>{let d=n+1+f,p=" "+(" "+d).slice(-s)+" | ";if(d===this.line){let m=u(p.replace(/\d/g," "))+c.slice(0,this.column-1).replace(/[^\t]/g," ");return o(">")+u(p)+c+` - `+m+o("^")}return" "+u(p)+c}).join(` -`)}toString(){let e=this.showSourceCode();return e&&(e=` - -`+e+` -`),this.name+": "+this.message+e}};af.exports=_t;_t.default=_t});var Si=v((UE,bs)=>{l();"use strict";bs.exports.isClean=Symbol("isClean");bs.exports.my=Symbol("my")});var vs=v((WE,lf)=>{l();"use strict";var of={colon:": ",indent:" ",beforeDecl:` -`,beforeRule:` -`,beforeOpen:" ",beforeClose:` -`,beforeComment:` -`,after:` -`,emptyBody:"",commentLeft:" ",commentRight:" ",semicolon:!1};function n0(i){return i[0].toUpperCase()+i.slice(1)}var Ci=class{constructor(e){this.builder=e}stringify(e,t){if(!this[e.type])throw new Error("Unknown AST node type "+e.type+". Maybe you need to change PostCSS stringifier.");this[e.type](e,t)}document(e){this.body(e)}root(e){this.body(e),e.raws.after&&this.builder(e.raws.after)}comment(e){let t=this.raw(e,"left","commentLeft"),r=this.raw(e,"right","commentRight");this.builder("/*"+t+e.text+r+"*/",e)}decl(e,t){let r=this.raw(e,"between","colon"),n=e.prop+r+this.rawValue(e,"value");e.important&&(n+=e.raws.important||" !important"),t&&(n+=";"),this.builder(n,e)}rule(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(e.raws.ownSemicolon,e,"end")}atrule(e,t){let r="@"+e.name,n=e.params?this.rawValue(e,"params"):"";if(typeof e.raws.afterName!="undefined"?r+=e.raws.afterName:n&&(r+=" "),e.nodes)this.block(e,r+n);else{let a=(e.raws.between||"")+(t?";":"");this.builder(r+n+a,e)}}body(e){let t=e.nodes.length-1;for(;t>0&&e.nodes[t].type==="comment";)t-=1;let r=this.raw(e,"semicolon");for(let n=0;n{if(n=u.raws[t],typeof n!="undefined")return!1})}return typeof n=="undefined"&&(n=of[r]),s.rawCache[r]=n,n}rawSemicolon(e){let t;return e.walk(r=>{if(r.nodes&&r.nodes.length&&r.last.type==="decl"&&(t=r.raws.semicolon,typeof t!="undefined"))return!1}),t}rawEmptyBody(e){let t;return e.walk(r=>{if(r.nodes&&r.nodes.length===0&&(t=r.raws.after,typeof t!="undefined"))return!1}),t}rawIndent(e){if(e.raws.indent)return e.raws.indent;let t;return e.walk(r=>{let n=r.parent;if(n&&n!==e&&n.parent&&n.parent===e&&typeof r.raws.before!="undefined"){let a=r.raws.before.split(` -`);return t=a[a.length-1],t=t.replace(/\S/g,""),!1}}),t}rawBeforeComment(e,t){let r;return e.walkComments(n=>{if(typeof n.raws.before!="undefined")return r=n.raws.before,r.includes(` -`)&&(r=r.replace(/[^\n]+$/,"")),!1}),typeof r=="undefined"?r=this.raw(t,null,"beforeDecl"):r&&(r=r.replace(/\S/g,"")),r}rawBeforeDecl(e,t){let r;return e.walkDecls(n=>{if(typeof n.raws.before!="undefined")return r=n.raws.before,r.includes(` -`)&&(r=r.replace(/[^\n]+$/,"")),!1}),typeof r=="undefined"?r=this.raw(t,null,"beforeRule"):r&&(r=r.replace(/\S/g,"")),r}rawBeforeRule(e){let t;return e.walk(r=>{if(r.nodes&&(r.parent!==e||e.first!==r)&&typeof r.raws.before!="undefined")return t=r.raws.before,t.includes(` -`)&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}rawBeforeClose(e){let t;return e.walk(r=>{if(r.nodes&&r.nodes.length>0&&typeof r.raws.after!="undefined")return t=r.raws.after,t.includes(` -`)&&(t=t.replace(/[^\n]+$/,"")),!1}),t&&(t=t.replace(/\S/g,"")),t}rawBeforeOpen(e){let t;return e.walk(r=>{if(r.type!=="decl"&&(t=r.raws.between,typeof t!="undefined"))return!1}),t}rawColon(e){let t;return e.walkDecls(r=>{if(typeof r.raws.between!="undefined")return t=r.raws.between.replace(/[^\s:]/g,""),!1}),t}beforeAfter(e,t){let r;e.type==="decl"?r=this.raw(e,null,"beforeDecl"):e.type==="comment"?r=this.raw(e,null,"beforeComment"):t==="before"?r=this.raw(e,null,"beforeRule"):r=this.raw(e,null,"beforeClose");let n=e.parent,a=0;for(;n&&n.type!=="root";)a+=1,n=n.parent;if(r.includes(` -`)){let s=this.raw(e,null,"indent");if(s.length)for(let o=0;o{l();"use strict";var s0=vs();function xs(i,e){new s0(e).stringify(i)}uf.exports=xs;xs.default=xs});var mr=v((HE,ff)=>{l();"use strict";var{isClean:Ai,my:a0}=Si(),o0=ki(),l0=vs(),u0=hr();function ks(i,e){let t=new i.constructor;for(let r in i){if(!Object.prototype.hasOwnProperty.call(i,r)||r==="proxyCache")continue;let n=i[r],a=typeof n;r==="parent"&&a==="object"?e&&(t[r]=e):r==="source"?t[r]=n:Array.isArray(n)?t[r]=n.map(s=>ks(s,t)):(a==="object"&&n!==null&&(n=ks(n)),t[r]=n)}return t}var _i=class{constructor(e={}){this.raws={},this[Ai]=!1,this[a0]=!0;for(let t in e)if(t==="nodes"){this.nodes=[];for(let r of e[t])typeof r.clone=="function"?this.append(r.clone()):this.append(r)}else this[t]=e[t]}error(e,t={}){if(this.source){let{start:r,end:n}=this.rangeBy(t);return this.source.input.error(e,{line:r.line,column:r.column},{line:n.line,column:n.column},t)}return new o0(e)}warn(e,t,r){let n={node:this};for(let a in r)n[a]=r[a];return e.warn(t,n)}remove(){return this.parent&&this.parent.removeChild(this),this.parent=void 0,this}toString(e=u0){e.stringify&&(e=e.stringify);let t="";return e(this,r=>{t+=r}),t}assign(e={}){for(let t in e)this[t]=e[t];return this}clone(e={}){let t=ks(this);for(let r in e)t[r]=e[r];return t}cloneBefore(e={}){let t=this.clone(e);return this.parent.insertBefore(this,t),t}cloneAfter(e={}){let t=this.clone(e);return this.parent.insertAfter(this,t),t}replaceWith(...e){if(this.parent){let t=this,r=!1;for(let n of e)n===this?r=!0:r?(this.parent.insertAfter(t,n),t=n):this.parent.insertBefore(t,n);r||this.remove()}return this}next(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e+1]}prev(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e-1]}before(e){return this.parent.insertBefore(this,e),this}after(e){return this.parent.insertAfter(this,e),this}root(){let e=this;for(;e.parent&&e.parent.type!=="document";)e=e.parent;return e}raw(e,t){return new l0().raw(this,e,t)}cleanRaws(e){delete this.raws.before,delete this.raws.after,e||delete this.raws.between}toJSON(e,t){let r={},n=t==null;t=t||new Map;let a=0;for(let s in this){if(!Object.prototype.hasOwnProperty.call(this,s)||s==="parent"||s==="proxyCache")continue;let o=this[s];if(Array.isArray(o))r[s]=o.map(u=>typeof u=="object"&&u.toJSON?u.toJSON(null,t):u);else if(typeof o=="object"&&o.toJSON)r[s]=o.toJSON(null,t);else if(s==="source"){let u=t.get(o.input);u==null&&(u=a,t.set(o.input,a),a++),r[s]={inputId:u,start:o.start,end:o.end}}else r[s]=o}return n&&(r.inputs=[...t.keys()].map(s=>s.toJSON())),r}positionInside(e){let t=this.toString(),r=this.source.start.column,n=this.source.start.line;for(let a=0;ae.root().toProxy():e[t]}}}toProxy(){return this.proxyCache||(this.proxyCache=new Proxy(this,this.getProxyProcessor())),this.proxyCache}addToError(e){if(e.postcssNode=this,e.stack&&this.source&&/\n\s{4}at /.test(e.stack)){let t=this.source;e.stack=e.stack.replace(/\n\s{4}at /,`$&${t.input.from}:${t.start.line}:${t.start.column}$&`)}return e}markDirty(){if(this[Ai]){this[Ai]=!1;let e=this;for(;e=e.parent;)e[Ai]=!1}}get proxyOf(){return this}};ff.exports=_i;_i.default=_i});var gr=v((YE,cf)=>{l();"use strict";var f0=mr(),Oi=class extends f0{constructor(e){e&&typeof e.value!="undefined"&&typeof e.value!="string"&&(e={...e,value:String(e.value)});super(e);this.type="decl"}get variable(){return this.prop.startsWith("--")||this.prop[0]==="$"}};cf.exports=Oi;Oi.default=Oi});var Ss=v((QE,pf)=>{l();pf.exports=function(i,e){return{generate:()=>{let t="";return i(e,r=>{t+=r}),[t]}}}});var yr=v((JE,df)=>{l();"use strict";var c0=mr(),Ei=class extends c0{constructor(e){super(e);this.type="comment"}};df.exports=Ei;Ei.default=Ei});var it=v((XE,kf)=>{l();"use strict";var{isClean:hf,my:mf}=Si(),gf=gr(),yf=yr(),p0=mr(),wf,Cs,As,bf;function vf(i){return i.map(e=>(e.nodes&&(e.nodes=vf(e.nodes)),delete e.source,e))}function xf(i){if(i[hf]=!1,i.proxyOf.nodes)for(let e of i.proxyOf.nodes)xf(e)}var we=class extends p0{push(e){return e.parent=this,this.proxyOf.nodes.push(e),this}each(e){if(!this.proxyOf.nodes)return;let t=this.getIterator(),r,n;for(;this.indexes[t]{let n;try{n=e(t,r)}catch(a){throw t.addToError(a)}return n!==!1&&t.walk&&(n=t.walk(e)),n})}walkDecls(e,t){return t?e instanceof RegExp?this.walk((r,n)=>{if(r.type==="decl"&&e.test(r.prop))return t(r,n)}):this.walk((r,n)=>{if(r.type==="decl"&&r.prop===e)return t(r,n)}):(t=e,this.walk((r,n)=>{if(r.type==="decl")return t(r,n)}))}walkRules(e,t){return t?e instanceof RegExp?this.walk((r,n)=>{if(r.type==="rule"&&e.test(r.selector))return t(r,n)}):this.walk((r,n)=>{if(r.type==="rule"&&r.selector===e)return t(r,n)}):(t=e,this.walk((r,n)=>{if(r.type==="rule")return t(r,n)}))}walkAtRules(e,t){return t?e instanceof RegExp?this.walk((r,n)=>{if(r.type==="atrule"&&e.test(r.name))return t(r,n)}):this.walk((r,n)=>{if(r.type==="atrule"&&r.name===e)return t(r,n)}):(t=e,this.walk((r,n)=>{if(r.type==="atrule")return t(r,n)}))}walkComments(e){return this.walk((t,r)=>{if(t.type==="comment")return e(t,r)})}append(...e){for(let t of e){let r=this.normalize(t,this.last);for(let n of r)this.proxyOf.nodes.push(n)}return this.markDirty(),this}prepend(...e){e=e.reverse();for(let t of e){let r=this.normalize(t,this.first,"prepend").reverse();for(let n of r)this.proxyOf.nodes.unshift(n);for(let n in this.indexes)this.indexes[n]=this.indexes[n]+r.length}return this.markDirty(),this}cleanRaws(e){if(super.cleanRaws(e),this.nodes)for(let t of this.nodes)t.cleanRaws(e)}insertBefore(e,t){let r=this.index(e),n=r===0?"prepend":!1,a=this.normalize(t,this.proxyOf.nodes[r],n).reverse();r=this.index(e);for(let o of a)this.proxyOf.nodes.splice(r,0,o);let s;for(let o in this.indexes)s=this.indexes[o],r<=s&&(this.indexes[o]=s+a.length);return this.markDirty(),this}insertAfter(e,t){let r=this.index(e),n=this.normalize(t,this.proxyOf.nodes[r]).reverse();r=this.index(e);for(let s of n)this.proxyOf.nodes.splice(r+1,0,s);let a;for(let s in this.indexes)a=this.indexes[s],r=e&&(this.indexes[r]=t-1);return this.markDirty(),this}removeAll(){for(let e of this.proxyOf.nodes)e.parent=void 0;return this.proxyOf.nodes=[],this.markDirty(),this}replaceValues(e,t,r){return r||(r=t,t={}),this.walkDecls(n=>{t.props&&!t.props.includes(n.prop)||t.fast&&!n.value.includes(t.fast)||(n.value=n.value.replace(e,r))}),this.markDirty(),this}every(e){return this.nodes.every(e)}some(e){return this.nodes.some(e)}index(e){return typeof e=="number"?e:(e.proxyOf&&(e=e.proxyOf),this.proxyOf.nodes.indexOf(e))}get first(){if(!!this.proxyOf.nodes)return this.proxyOf.nodes[0]}get last(){if(!!this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}normalize(e,t){if(typeof e=="string")e=vf(wf(e).nodes);else if(Array.isArray(e)){e=e.slice(0);for(let n of e)n.parent&&n.parent.removeChild(n,"ignore")}else if(e.type==="root"&&this.type!=="document"){e=e.nodes.slice(0);for(let n of e)n.parent&&n.parent.removeChild(n,"ignore")}else if(e.type)e=[e];else if(e.prop){if(typeof e.value=="undefined")throw new Error("Value field is missed in node creation");typeof e.value!="string"&&(e.value=String(e.value)),e=[new gf(e)]}else if(e.selector)e=[new Cs(e)];else if(e.name)e=[new As(e)];else if(e.text)e=[new yf(e)];else throw new Error("Unknown node type in node creation");return e.map(n=>(n[mf]||we.rebuild(n),n=n.proxyOf,n.parent&&n.parent.removeChild(n),n[hf]&&xf(n),typeof n.raws.before=="undefined"&&t&&typeof t.raws.before!="undefined"&&(n.raws.before=t.raws.before.replace(/\S/g,"")),n.parent=this.proxyOf,n))}getProxyProcessor(){return{set(e,t,r){return e[t]===r||(e[t]=r,(t==="name"||t==="params"||t==="selector")&&e.markDirty()),!0},get(e,t){return t==="proxyOf"?e:e[t]?t==="each"||typeof t=="string"&&t.startsWith("walk")?(...r)=>e[t](...r.map(n=>typeof n=="function"?(a,s)=>n(a.toProxy(),s):n)):t==="every"||t==="some"?r=>e[t]((n,...a)=>r(n.toProxy(),...a)):t==="root"?()=>e.root().toProxy():t==="nodes"?e.nodes.map(r=>r.toProxy()):t==="first"||t==="last"?e[t].toProxy():e[t]:e[t]}}}getIterator(){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach+=1;let e=this.lastEach;return this.indexes[e]=0,e}};we.registerParse=i=>{wf=i};we.registerRule=i=>{Cs=i};we.registerAtRule=i=>{As=i};we.registerRoot=i=>{bf=i};kf.exports=we;we.default=we;we.rebuild=i=>{i.type==="atrule"?Object.setPrototypeOf(i,As.prototype):i.type==="rule"?Object.setPrototypeOf(i,Cs.prototype):i.type==="decl"?Object.setPrototypeOf(i,gf.prototype):i.type==="comment"?Object.setPrototypeOf(i,yf.prototype):i.type==="root"&&Object.setPrototypeOf(i,bf.prototype),i[mf]=!0,i.nodes&&i.nodes.forEach(e=>{we.rebuild(e)})}});var Ti=v((KE,Af)=>{l();"use strict";var d0=it(),Sf,Cf,Ot=class extends d0{constructor(e){super({type:"document",...e});this.nodes||(this.nodes=[])}toResult(e={}){return new Sf(new Cf,this,e).stringify()}};Ot.registerLazyResult=i=>{Sf=i};Ot.registerProcessor=i=>{Cf=i};Af.exports=Ot;Ot.default=Ot});var _s=v((ZE,Of)=>{l();"use strict";var _f={};Of.exports=function(e){_f[e]||(_f[e]=!0,typeof console!="undefined"&&console.warn&&console.warn(e))}});var Os=v((eT,Ef)=>{l();"use strict";var Pi=class{constructor(e,t={}){if(this.type="warning",this.text=e,t.node&&t.node.source){let r=t.node.rangeBy(t);this.line=r.start.line,this.column=r.start.column,this.endLine=r.end.line,this.endColumn=r.end.column}for(let r in t)this[r]=t[r]}toString(){return this.node?this.node.error(this.text,{plugin:this.plugin,index:this.index,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}};Ef.exports=Pi;Pi.default=Pi});var Ii=v((tT,Tf)=>{l();"use strict";var h0=Os(),Di=class{constructor(e,t,r){this.processor=e,this.messages=[],this.root=t,this.opts=r,this.css=void 0,this.map=void 0}toString(){return this.css}warn(e,t={}){t.plugin||this.lastPlugin&&this.lastPlugin.postcssPlugin&&(t.plugin=this.lastPlugin.postcssPlugin);let r=new h0(e,t);return this.messages.push(r),r}warnings(){return this.messages.filter(e=>e.type==="warning")}get content(){return this.css}};Tf.exports=Di;Di.default=Di});var Rf=v((rT,qf)=>{l();"use strict";var Es="'".charCodeAt(0),Pf='"'.charCodeAt(0),qi="\\".charCodeAt(0),Df="/".charCodeAt(0),Ri=` -`.charCodeAt(0),wr=" ".charCodeAt(0),Mi="\f".charCodeAt(0),Bi=" ".charCodeAt(0),Fi="\r".charCodeAt(0),m0="[".charCodeAt(0),g0="]".charCodeAt(0),y0="(".charCodeAt(0),w0=")".charCodeAt(0),b0="{".charCodeAt(0),v0="}".charCodeAt(0),x0=";".charCodeAt(0),k0="*".charCodeAt(0),S0=":".charCodeAt(0),C0="@".charCodeAt(0),Li=/[\t\n\f\r "#'()/;[\\\]{}]/g,Ni=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,A0=/.[\n"'(/\\]/,If=/[\da-f]/i;qf.exports=function(e,t={}){let r=e.css.valueOf(),n=t.ignoreErrors,a,s,o,u,c,f,d,p,m,b,x=r.length,y=0,w=[],k=[];function S(){return y}function _(R){throw e.error("Unclosed "+R,y)}function E(){return k.length===0&&y>=x}function I(R){if(k.length)return k.pop();if(y>=x)return;let J=R?R.ignoreUnclosed:!1;switch(a=r.charCodeAt(y),a){case Ri:case wr:case Bi:case Fi:case Mi:{s=y;do s+=1,a=r.charCodeAt(s);while(a===wr||a===Ri||a===Bi||a===Fi||a===Mi);b=["space",r.slice(y,s)],y=s-1;break}case m0:case g0:case b0:case v0:case S0:case x0:case w0:{let ue=String.fromCharCode(a);b=[ue,ue,y];break}case y0:{if(p=w.length?w.pop()[1]:"",m=r.charCodeAt(y+1),p==="url"&&m!==Es&&m!==Pf&&m!==wr&&m!==Ri&&m!==Bi&&m!==Mi&&m!==Fi){s=y;do{if(f=!1,s=r.indexOf(")",s+1),s===-1)if(n||J){s=y;break}else _("bracket");for(d=s;r.charCodeAt(d-1)===qi;)d-=1,f=!f}while(f);b=["brackets",r.slice(y,s+1),y,s],y=s}else s=r.indexOf(")",y+1),u=r.slice(y,s+1),s===-1||A0.test(u)?b=["(","(",y]:(b=["brackets",u,y,s],y=s);break}case Es:case Pf:{o=a===Es?"'":'"',s=y;do{if(f=!1,s=r.indexOf(o,s+1),s===-1)if(n||J){s=y+1;break}else _("string");for(d=s;r.charCodeAt(d-1)===qi;)d-=1,f=!f}while(f);b=["string",r.slice(y,s+1),y,s],y=s;break}case C0:{Li.lastIndex=y+1,Li.test(r),Li.lastIndex===0?s=r.length-1:s=Li.lastIndex-2,b=["at-word",r.slice(y,s+1),y,s],y=s;break}case qi:{for(s=y,c=!0;r.charCodeAt(s+1)===qi;)s+=1,c=!c;if(a=r.charCodeAt(s+1),c&&a!==Df&&a!==wr&&a!==Ri&&a!==Bi&&a!==Fi&&a!==Mi&&(s+=1,If.test(r.charAt(s)))){for(;If.test(r.charAt(s+1));)s+=1;r.charCodeAt(s+1)===wr&&(s+=1)}b=["word",r.slice(y,s+1),y,s],y=s;break}default:{a===Df&&r.charCodeAt(y+1)===k0?(s=r.indexOf("*/",y+2)+1,s===0&&(n||J?s=r.length:_("comment")),b=["comment",r.slice(y,s+1),y,s],y=s):(Ni.lastIndex=y+1,Ni.test(r),Ni.lastIndex===0?s=r.length-1:s=Ni.lastIndex-2,b=["word",r.slice(y,s+1),y,s],w.push(b),y=s);break}}return y++,b}function q(R){k.push(R)}return{back:q,nextToken:I,endOfFile:E,position:S}}});var $i=v((iT,Bf)=>{l();"use strict";var Mf=it(),br=class extends Mf{constructor(e){super(e);this.type="atrule"}append(...e){return this.proxyOf.nodes||(this.nodes=[]),super.append(...e)}prepend(...e){return this.proxyOf.nodes||(this.nodes=[]),super.prepend(...e)}};Bf.exports=br;br.default=br;Mf.registerAtRule(br)});var Et=v((nT,$f)=>{l();"use strict";var Ff=it(),Lf,Nf,yt=class extends Ff{constructor(e){super(e);this.type="root",this.nodes||(this.nodes=[])}removeChild(e,t){let r=this.index(e);return!t&&r===0&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[r].raws.before),super.removeChild(e)}normalize(e,t,r){let n=super.normalize(e);if(t){if(r==="prepend")this.nodes.length>1?t.raws.before=this.nodes[1].raws.before:delete t.raws.before;else if(this.first!==t)for(let a of n)a.raws.before=t.raws.before}return n}toResult(e={}){return new Lf(new Nf,this,e).stringify()}};yt.registerLazyResult=i=>{Lf=i};yt.registerProcessor=i=>{Nf=i};$f.exports=yt;yt.default=yt;Ff.registerRoot(yt)});var Ts=v((sT,jf)=>{l();"use strict";var vr={split(i,e,t){let r=[],n="",a=!1,s=0,o=!1,u="",c=!1;for(let f of i)c?c=!1:f==="\\"?c=!0:o?f===u&&(o=!1):f==='"'||f==="'"?(o=!0,u=f):f==="("?s+=1:f===")"?s>0&&(s-=1):s===0&&e.includes(f)&&(a=!0),a?(n!==""&&r.push(n.trim()),n="",a=!1):n+=f;return(t||n!=="")&&r.push(n.trim()),r},space(i){let e=[" ",` -`," "];return vr.split(i,e)},comma(i){return vr.split(i,[","],!0)}};jf.exports=vr;vr.default=vr});var ji=v((aT,Vf)=>{l();"use strict";var zf=it(),_0=Ts(),xr=class extends zf{constructor(e){super(e);this.type="rule",this.nodes||(this.nodes=[])}get selectors(){return _0.comma(this.selector)}set selectors(e){let t=this.selector?this.selector.match(/,\s*/):null,r=t?t[0]:","+this.raw("between","beforeOpen");this.selector=e.join(r)}};Vf.exports=xr;xr.default=xr;zf.registerRule(xr)});var Yf=v((oT,Hf)=>{l();"use strict";var O0=gr(),E0=Rf(),T0=yr(),P0=$i(),D0=Et(),Uf=ji(),Wf={empty:!0,space:!0};function I0(i){for(let e=i.length-1;e>=0;e--){let t=i[e],r=t[3]||t[2];if(r)return r}}var Gf=class{constructor(e){this.input=e,this.root=new D0,this.current=this.root,this.spaces="",this.semicolon=!1,this.customProperty=!1,this.createTokenizer(),this.root.source={input:e,start:{offset:0,line:1,column:1}}}createTokenizer(){this.tokenizer=E0(this.input)}parse(){let e;for(;!this.tokenizer.endOfFile();)switch(e=this.tokenizer.nextToken(),e[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e);break}this.endFile()}comment(e){let t=new T0;this.init(t,e[2]),t.source.end=this.getPosition(e[3]||e[2]);let r=e[1].slice(2,-2);if(/^\s*$/.test(r))t.text="",t.raws.left=r,t.raws.right="";else{let n=r.match(/^(\s*)([^]*\S)(\s*)$/);t.text=n[2],t.raws.left=n[1],t.raws.right=n[3]}}emptyRule(e){let t=new Uf;this.init(t,e[2]),t.selector="",t.raws.between="",this.current=t}other(e){let t=!1,r=null,n=!1,a=null,s=[],o=e[1].startsWith("--"),u=[],c=e;for(;c;){if(r=c[0],u.push(c),r==="("||r==="[")a||(a=c),s.push(r==="("?")":"]");else if(o&&n&&r==="{")a||(a=c),s.push("}");else if(s.length===0)if(r===";")if(n){this.decl(u,o);return}else break;else if(r==="{"){this.rule(u);return}else if(r==="}"){this.tokenizer.back(u.pop()),t=!0;break}else r===":"&&(n=!0);else r===s[s.length-1]&&(s.pop(),s.length===0&&(a=null));c=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(t=!0),s.length>0&&this.unclosedBracket(a),t&&n){if(!o)for(;u.length&&(c=u[u.length-1][0],!(c!=="space"&&c!=="comment"));)this.tokenizer.back(u.pop());this.decl(u,o)}else this.unknownWord(u)}rule(e){e.pop();let t=new Uf;this.init(t,e[0][2]),t.raws.between=this.spacesAndCommentsFromEnd(e),this.raw(t,"selector",e),this.current=t}decl(e,t){let r=new O0;this.init(r,e[0][2]);let n=e[e.length-1];for(n[0]===";"&&(this.semicolon=!0,e.pop()),r.source.end=this.getPosition(n[3]||n[2]||I0(e));e[0][0]!=="word";)e.length===1&&this.unknownWord(e),r.raws.before+=e.shift()[1];for(r.source.start=this.getPosition(e[0][2]),r.prop="";e.length;){let c=e[0][0];if(c===":"||c==="space"||c==="comment")break;r.prop+=e.shift()[1]}r.raws.between="";let a;for(;e.length;)if(a=e.shift(),a[0]===":"){r.raws.between+=a[1];break}else a[0]==="word"&&/\w/.test(a[1])&&this.unknownWord([a]),r.raws.between+=a[1];(r.prop[0]==="_"||r.prop[0]==="*")&&(r.raws.before+=r.prop[0],r.prop=r.prop.slice(1));let s=[],o;for(;e.length&&(o=e[0][0],!(o!=="space"&&o!=="comment"));)s.push(e.shift());this.precheckMissedSemicolon(e);for(let c=e.length-1;c>=0;c--){if(a=e[c],a[1].toLowerCase()==="!important"){r.important=!0;let f=this.stringFrom(e,c);f=this.spacesFromEnd(e)+f,f!==" !important"&&(r.raws.important=f);break}else if(a[1].toLowerCase()==="important"){let f=e.slice(0),d="";for(let p=c;p>0;p--){let m=f[p][0];if(d.trim().indexOf("!")===0&&m!=="space")break;d=f.pop()[1]+d}d.trim().indexOf("!")===0&&(r.important=!0,r.raws.important=d,e=f)}if(a[0]!=="space"&&a[0]!=="comment")break}e.some(c=>c[0]!=="space"&&c[0]!=="comment")&&(r.raws.between+=s.map(c=>c[1]).join(""),s=[]),this.raw(r,"value",s.concat(e),t),r.value.includes(":")&&!t&&this.checkMissedSemicolon(e)}atrule(e){let t=new P0;t.name=e[1].slice(1),t.name===""&&this.unnamedAtrule(t,e),this.init(t,e[2]);let r,n,a,s=!1,o=!1,u=[],c=[];for(;!this.tokenizer.endOfFile();){if(e=this.tokenizer.nextToken(),r=e[0],r==="("||r==="["?c.push(r==="("?")":"]"):r==="{"&&c.length>0?c.push("}"):r===c[c.length-1]&&c.pop(),c.length===0)if(r===";"){t.source.end=this.getPosition(e[2]),this.semicolon=!0;break}else if(r==="{"){o=!0;break}else if(r==="}"){if(u.length>0){for(a=u.length-1,n=u[a];n&&n[0]==="space";)n=u[--a];n&&(t.source.end=this.getPosition(n[3]||n[2]))}this.end(e);break}else u.push(e);else u.push(e);if(this.tokenizer.endOfFile()){s=!0;break}}t.raws.between=this.spacesAndCommentsFromEnd(u),u.length?(t.raws.afterName=this.spacesAndCommentsFromStart(u),this.raw(t,"params",u),s&&(e=u[u.length-1],t.source.end=this.getPosition(e[3]||e[2]),this.spaces=t.raws.between,t.raws.between="")):(t.raws.afterName="",t.params=""),o&&(t.nodes=[],this.current=t)}end(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(e[2]),this.current=this.current.parent):this.unexpectedClose(e)}endFile(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces}freeSemicolon(e){if(this.spaces+=e[1],this.current.nodes){let t=this.current.nodes[this.current.nodes.length-1];t&&t.type==="rule"&&!t.raws.ownSemicolon&&(t.raws.ownSemicolon=this.spaces,this.spaces="")}}getPosition(e){let t=this.input.fromOffset(e);return{offset:e,line:t.line,column:t.col}}init(e,t){this.current.push(e),e.source={start:this.getPosition(t),input:this.input},e.raws.before=this.spaces,this.spaces="",e.type!=="comment"&&(this.semicolon=!1)}raw(e,t,r,n){let a,s,o=r.length,u="",c=!0,f,d;for(let p=0;pm+b[1],"");e.raws[t]={value:u,raw:p}}e[t]=u}spacesAndCommentsFromEnd(e){let t,r="";for(;e.length&&(t=e[e.length-1][0],!(t!=="space"&&t!=="comment"));)r=e.pop()[1]+r;return r}spacesAndCommentsFromStart(e){let t,r="";for(;e.length&&(t=e[0][0],!(t!=="space"&&t!=="comment"));)r+=e.shift()[1];return r}spacesFromEnd(e){let t,r="";for(;e.length&&(t=e[e.length-1][0],t==="space");)r=e.pop()[1]+r;return r}stringFrom(e,t){let r="";for(let n=t;n=0&&(n=e[a],!(n[0]!=="space"&&(r+=1,r===2)));a--);throw this.input.error("Missed semicolon",n[0]==="word"?n[3]+1:n[2])}};Hf.exports=Gf});var Qf=v(()=>{l()});var Xf=v((fT,Jf)=>{l();var q0="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict",R0=(i,e=21)=>(t=e)=>{let r="",n=t;for(;n--;)r+=i[Math.random()*i.length|0];return r},M0=(i=21)=>{let e="",t=i;for(;t--;)e+=q0[Math.random()*64|0];return e};Jf.exports={nanoid:M0,customAlphabet:R0}});var Ps=v((cT,Kf)=>{l();Kf.exports={}});var Vi=v((pT,rc)=>{l();"use strict";var{SourceMapConsumer:B0,SourceMapGenerator:F0}=Qf(),{fileURLToPath:Zf,pathToFileURL:zi}=(ys(),rf),{resolve:Ds,isAbsolute:Is}=(gt(),Zu),{nanoid:L0}=Xf(),qs=ws(),ec=ki(),N0=Ps(),Rs=Symbol("fromOffsetCache"),$0=Boolean(B0&&F0),tc=Boolean(Ds&&Is),kr=class{constructor(e,t={}){if(e===null||typeof e=="undefined"||typeof e=="object"&&!e.toString)throw new Error(`PostCSS received ${e} instead of CSS string`);if(this.css=e.toString(),this.css[0]==="\uFEFF"||this.css[0]==="\uFFFE"?(this.hasBOM=!0,this.css=this.css.slice(1)):this.hasBOM=!1,t.from&&(!tc||/^\w+:\/\//.test(t.from)||Is(t.from)?this.file=t.from:this.file=Ds(t.from)),tc&&$0){let r=new N0(this.css,t);if(r.text){this.map=r;let n=r.consumer().file;!this.file&&n&&(this.file=this.mapResolve(n))}}this.file||(this.id=""),this.map&&(this.map.file=this.from)}fromOffset(e){let t,r;if(this[Rs])r=this[Rs];else{let a=this.css.split(` -`);r=new Array(a.length);let s=0;for(let o=0,u=a.length;o=t)n=r.length-1;else{let a=r.length-2,s;for(;n>1),e=r[s+1])n=s+1;else{n=s;break}}return{line:n+1,col:e-r[n]+1}}error(e,t,r,n={}){let a,s,o;if(t&&typeof t=="object"){let c=t,f=r;if(typeof c.offset=="number"){let d=this.fromOffset(c.offset);t=d.line,r=d.col}else t=c.line,r=c.column;if(typeof f.offset=="number"){let d=this.fromOffset(f.offset);s=d.line,o=d.col}else s=f.line,o=f.column}else if(!r){let c=this.fromOffset(t);t=c.line,r=c.col}let u=this.origin(t,r,s,o);return u?a=new ec(e,u.endLine===void 0?u.line:{line:u.line,column:u.column},u.endLine===void 0?u.column:{line:u.endLine,column:u.endColumn},u.source,u.file,n.plugin):a=new ec(e,s===void 0?t:{line:t,column:r},s===void 0?r:{line:s,column:o},this.css,this.file,n.plugin),a.input={line:t,column:r,endLine:s,endColumn:o,source:this.css},this.file&&(zi&&(a.input.url=zi(this.file).toString()),a.input.file=this.file),a}origin(e,t,r,n){if(!this.map)return!1;let a=this.map.consumer(),s=a.originalPositionFor({line:e,column:t});if(!s.source)return!1;let o;typeof r=="number"&&(o=a.originalPositionFor({line:r,column:n}));let u;Is(s.source)?u=zi(s.source):u=new URL(s.source,this.map.consumer().sourceRoot||zi(this.map.mapFile));let c={url:u.toString(),line:s.line,column:s.column,endLine:o&&o.line,endColumn:o&&o.column};if(u.protocol==="file:")if(Zf)c.file=Zf(u);else throw new Error("file: protocol is not available in this PostCSS build");let f=a.sourceContentFor(s.source);return f&&(c.source=f),c}mapResolve(e){return/^\w+:\/\//.test(e)?e:Ds(this.map.consumer().sourceRoot||this.map.root||".",e)}get from(){return this.file||this.id}toJSON(){let e={};for(let t of["hasBOM","css","file","id"])this[t]!=null&&(e[t]=this[t]);return this.map&&(e.map={...this.map},e.map.consumerCache&&(e.map.consumerCache=void 0)),e}};rc.exports=kr;kr.default=kr;qs&&qs.registerInput&&qs.registerInput(kr)});var Wi=v((dT,ic)=>{l();"use strict";var j0=it(),z0=Yf(),V0=Vi();function Ui(i,e){let t=new V0(i,e),r=new z0(t);try{r.parse()}catch(n){throw n}return r.root}ic.exports=Ui;Ui.default=Ui;j0.registerParse(Ui)});var Fs=v((mT,oc)=>{l();"use strict";var{isClean:qe,my:U0}=Si(),W0=Ss(),G0=hr(),H0=it(),Y0=Ti(),hT=_s(),nc=Ii(),Q0=Wi(),J0=Et(),X0={document:"Document",root:"Root",atrule:"AtRule",rule:"Rule",decl:"Declaration",comment:"Comment"},K0={postcssPlugin:!0,prepare:!0,Once:!0,Document:!0,Root:!0,Declaration:!0,Rule:!0,AtRule:!0,Comment:!0,DeclarationExit:!0,RuleExit:!0,AtRuleExit:!0,CommentExit:!0,RootExit:!0,DocumentExit:!0,OnceExit:!0},Z0={postcssPlugin:!0,prepare:!0,Once:!0},Tt=0;function Sr(i){return typeof i=="object"&&typeof i.then=="function"}function sc(i){let e=!1,t=X0[i.type];return i.type==="decl"?e=i.prop.toLowerCase():i.type==="atrule"&&(e=i.name.toLowerCase()),e&&i.append?[t,t+"-"+e,Tt,t+"Exit",t+"Exit-"+e]:e?[t,t+"-"+e,t+"Exit",t+"Exit-"+e]:i.append?[t,Tt,t+"Exit"]:[t,t+"Exit"]}function ac(i){let e;return i.type==="document"?e=["Document",Tt,"DocumentExit"]:i.type==="root"?e=["Root",Tt,"RootExit"]:e=sc(i),{node:i,events:e,eventIndex:0,visitors:[],visitorIndex:0,iterator:0}}function Ms(i){return i[qe]=!1,i.nodes&&i.nodes.forEach(e=>Ms(e)),i}var Bs={},Ve=class{constructor(e,t,r){this.stringified=!1,this.processed=!1;let n;if(typeof t=="object"&&t!==null&&(t.type==="root"||t.type==="document"))n=Ms(t);else if(t instanceof Ve||t instanceof nc)n=Ms(t.root),t.map&&(typeof r.map=="undefined"&&(r.map={}),r.map.inline||(r.map.inline=!1),r.map.prev=t.map);else{let a=Q0;r.syntax&&(a=r.syntax.parse),r.parser&&(a=r.parser),a.parse&&(a=a.parse);try{n=a(t,r)}catch(s){this.processed=!0,this.error=s}n&&!n[U0]&&H0.rebuild(n)}this.result=new nc(e,n,r),this.helpers={...Bs,result:this.result,postcss:Bs},this.plugins=this.processor.plugins.map(a=>typeof a=="object"&&a.prepare?{...a,...a.prepare(this.result)}:a)}get[Symbol.toStringTag](){return"LazyResult"}get processor(){return this.result.processor}get opts(){return this.result.opts}get css(){return this.stringify().css}get content(){return this.stringify().content}get map(){return this.stringify().map}get root(){return this.sync().root}get messages(){return this.sync().messages}warnings(){return this.sync().warnings()}toString(){return this.css}then(e,t){return this.async().then(e,t)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}async(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}sync(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();for(let e of this.plugins){let t=this.runOnRoot(e);if(Sr(t))throw this.getAsyncError()}if(this.prepareVisitors(),this.hasListener){let e=this.result.root;for(;!e[qe];)e[qe]=!0,this.walkSync(e);if(this.listeners.OnceExit)if(e.type==="document")for(let t of e.nodes)this.visitSync(this.listeners.OnceExit,t);else this.visitSync(this.listeners.OnceExit,e)}return this.result}stringify(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();let e=this.result.opts,t=G0;e.syntax&&(t=e.syntax.stringify),e.stringifier&&(t=e.stringifier),t.stringify&&(t=t.stringify);let n=new W0(t,this.result.root,this.result.opts).generate();return this.result.css=n[0],this.result.map=n[1],this.result}walkSync(e){e[qe]=!0;let t=sc(e);for(let r of t)if(r===Tt)e.nodes&&e.each(n=>{n[qe]||this.walkSync(n)});else{let n=this.listeners[r];if(n&&this.visitSync(n,e.toProxy()))return}}visitSync(e,t){for(let[r,n]of e){this.result.lastPlugin=r;let a;try{a=n(t,this.helpers)}catch(s){throw this.handleError(s,t.proxyOf)}if(t.type!=="root"&&t.type!=="document"&&!t.parent)return!0;if(Sr(a))throw this.getAsyncError()}}runOnRoot(e){this.result.lastPlugin=e;try{if(typeof e=="object"&&e.Once){if(this.result.root.type==="document"){let t=this.result.root.nodes.map(r=>e.Once(r,this.helpers));return Sr(t[0])?Promise.all(t):t}return e.Once(this.result.root,this.helpers)}else if(typeof e=="function")return e(this.result.root,this.result)}catch(t){throw this.handleError(t)}}getAsyncError(){throw new Error("Use process(css).then(cb) to work with async plugins")}handleError(e,t){let r=this.result.lastPlugin;try{t&&t.addToError(e),this.error=e,e.name==="CssSyntaxError"&&!e.plugin?(e.plugin=r.postcssPlugin,e.setMessage()):r.postcssVersion}catch(n){console&&console.error&&console.error(n)}return e}async runAsync(){this.plugin=0;for(let e=0;e0;){let r=this.visitTick(t);if(Sr(r))try{await r}catch(n){let a=t[t.length-1].node;throw this.handleError(n,a)}}}if(this.listeners.OnceExit)for(let[t,r]of this.listeners.OnceExit){this.result.lastPlugin=t;try{if(e.type==="document"){let n=e.nodes.map(a=>r(a,this.helpers));await Promise.all(n)}else await r(e,this.helpers)}catch(n){throw this.handleError(n)}}}return this.processed=!0,this.stringify()}prepareVisitors(){this.listeners={};let e=(t,r,n)=>{this.listeners[r]||(this.listeners[r]=[]),this.listeners[r].push([t,n])};for(let t of this.plugins)if(typeof t=="object")for(let r in t){if(!K0[r]&&/^[A-Z]/.test(r))throw new Error(`Unknown event ${r} in ${t.postcssPlugin}. Try to update PostCSS (${this.processor.version} now).`);if(!Z0[r])if(typeof t[r]=="object")for(let n in t[r])n==="*"?e(t,r,t[r][n]):e(t,r+"-"+n.toLowerCase(),t[r][n]);else typeof t[r]=="function"&&e(t,r,t[r])}this.hasListener=Object.keys(this.listeners).length>0}visitTick(e){let t=e[e.length-1],{node:r,visitors:n}=t;if(r.type!=="root"&&r.type!=="document"&&!r.parent){e.pop();return}if(n.length>0&&t.visitorIndex{Bs=i};oc.exports=Ve;Ve.default=Ve;J0.registerLazyResult(Ve);Y0.registerLazyResult(Ve)});var uc=v((yT,lc)=>{l();"use strict";var ev=Ss(),tv=hr(),gT=_s(),rv=Wi(),iv=Ii(),Gi=class{constructor(e,t,r){t=t.toString(),this.stringified=!1,this._processor=e,this._css=t,this._opts=r,this._map=void 0;let n,a=tv;this.result=new iv(this._processor,n,this._opts),this.result.css=t;let s=this;Object.defineProperty(this.result,"root",{get(){return s.root}});let o=new ev(a,n,this._opts,t);if(o.isMap()){let[u,c]=o.generate();u&&(this.result.css=u),c&&(this.result.map=c)}}get[Symbol.toStringTag](){return"NoWorkResult"}get processor(){return this.result.processor}get opts(){return this.result.opts}get css(){return this.result.css}get content(){return this.result.css}get map(){return this.result.map}get root(){if(this._root)return this._root;let e,t=rv;try{e=t(this._css,this._opts)}catch(r){this.error=r}if(this.error)throw this.error;return this._root=e,e}get messages(){return[]}warnings(){return[]}toString(){return this._css}then(e,t){return this.async().then(e,t)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}async(){return this.error?Promise.reject(this.error):Promise.resolve(this.result)}sync(){if(this.error)throw this.error;return this.result}};lc.exports=Gi;Gi.default=Gi});var cc=v((wT,fc)=>{l();"use strict";var nv=uc(),sv=Fs(),av=Ti(),ov=Et(),Pt=class{constructor(e=[]){this.version="8.4.24",this.plugins=this.normalize(e)}use(e){return this.plugins=this.plugins.concat(this.normalize([e])),this}process(e,t={}){return this.plugins.length===0&&typeof t.parser=="undefined"&&typeof t.stringifier=="undefined"&&typeof t.syntax=="undefined"?new nv(this,e,t):new sv(this,e,t)}normalize(e){let t=[];for(let r of e)if(r.postcss===!0?r=r():r.postcss&&(r=r.postcss),typeof r=="object"&&Array.isArray(r.plugins))t=t.concat(r.plugins);else if(typeof r=="object"&&r.postcssPlugin)t.push(r);else if(typeof r=="function")t.push(r);else if(!(typeof r=="object"&&(r.parse||r.stringify)))throw new Error(r+" is not a PostCSS plugin");return t}};fc.exports=Pt;Pt.default=Pt;ov.registerProcessor(Pt);av.registerProcessor(Pt)});var dc=v((bT,pc)=>{l();"use strict";var lv=gr(),uv=Ps(),fv=yr(),cv=$i(),pv=Vi(),dv=Et(),hv=ji();function Cr(i,e){if(Array.isArray(i))return i.map(n=>Cr(n));let{inputs:t,...r}=i;if(t){e=[];for(let n of t){let a={...n,__proto__:pv.prototype};a.map&&(a.map={...a.map,__proto__:uv.prototype}),e.push(a)}}if(r.nodes&&(r.nodes=i.nodes.map(n=>Cr(n,e))),r.source){let{inputId:n,...a}=r.source;r.source=a,n!=null&&(r.source.input=e[n])}if(r.type==="root")return new dv(r);if(r.type==="decl")return new lv(r);if(r.type==="rule")return new hv(r);if(r.type==="comment")return new fv(r);if(r.type==="atrule")return new cv(r);throw new Error("Unknown node type: "+i.type)}pc.exports=Cr;Cr.default=Cr});var ge=v((vT,vc)=>{l();"use strict";var mv=ki(),hc=gr(),gv=Fs(),yv=it(),Ls=cc(),wv=hr(),bv=dc(),mc=Ti(),vv=Os(),gc=yr(),yc=$i(),xv=Ii(),kv=Vi(),Sv=Wi(),Cv=Ts(),wc=ji(),bc=Et(),Av=mr();function j(...i){return i.length===1&&Array.isArray(i[0])&&(i=i[0]),new Ls(i)}j.plugin=function(e,t){let r=!1;function n(...s){console&&console.warn&&!r&&(r=!0,console.warn(e+`: postcss.plugin was deprecated. Migration guide: -https://evilmartians.com/chronicles/postcss-8-plugin-migration`),h.env.LANG&&h.env.LANG.startsWith("cn")&&console.warn(e+`: \u91CC\u9762 postcss.plugin \u88AB\u5F03\u7528. \u8FC1\u79FB\u6307\u5357: -https://www.w3ctech.com/topic/2226`));let o=t(...s);return o.postcssPlugin=e,o.postcssVersion=new Ls().version,o}let a;return Object.defineProperty(n,"postcss",{get(){return a||(a=n()),a}}),n.process=function(s,o,u){return j([n(u)]).process(s,o)},n};j.stringify=wv;j.parse=Sv;j.fromJSON=bv;j.list=Cv;j.comment=i=>new gc(i);j.atRule=i=>new yc(i);j.decl=i=>new hc(i);j.rule=i=>new wc(i);j.root=i=>new bc(i);j.document=i=>new mc(i);j.CssSyntaxError=mv;j.Declaration=hc;j.Container=yv;j.Processor=Ls;j.Document=mc;j.Comment=gc;j.Warning=vv;j.AtRule=yc;j.Result=xv;j.Input=kv;j.Rule=wc;j.Root=bc;j.Node=Av;gv.registerPostcss(j);vc.exports=j;j.default=j});var U,z,xT,kT,ST,CT,AT,_T,OT,ET,TT,PT,DT,IT,qT,RT,MT,BT,FT,LT,NT,$T,jT,zT,VT,UT,nt=C(()=>{l();U=X(ge()),z=U.default,xT=U.default.stringify,kT=U.default.fromJSON,ST=U.default.plugin,CT=U.default.parse,AT=U.default.list,_T=U.default.document,OT=U.default.comment,ET=U.default.atRule,TT=U.default.rule,PT=U.default.decl,DT=U.default.root,IT=U.default.CssSyntaxError,qT=U.default.Declaration,RT=U.default.Container,MT=U.default.Processor,BT=U.default.Document,FT=U.default.Comment,LT=U.default.Warning,NT=U.default.AtRule,$T=U.default.Result,jT=U.default.Input,zT=U.default.Rule,VT=U.default.Root,UT=U.default.Node});var Ns=v((GT,xc)=>{l();xc.exports=function(i,e,t,r,n){for(e=e.split?e.split("."):e,r=0;r{l();"use strict";Hi.__esModule=!0;Hi.default=Ev;function _v(i){for(var e=i.toLowerCase(),t="",r=!1,n=0;n<6&&e[n]!==void 0;n++){var a=e.charCodeAt(n),s=a>=97&&a<=102||a>=48&&a<=57;if(r=a===32,!s)break;t+=e[n]}if(t.length!==0){var o=parseInt(t,16),u=o>=55296&&o<=57343;return u||o===0||o>1114111?["\uFFFD",t.length+(r?1:0)]:[String.fromCodePoint(o),t.length+(r?1:0)]}}var Ov=/\\/;function Ev(i){var e=Ov.test(i);if(!e)return i;for(var t="",r=0;r{l();"use strict";Qi.__esModule=!0;Qi.default=Tv;function Tv(i){for(var e=arguments.length,t=new Array(e>1?e-1:0),r=1;r0;){var n=t.shift();if(!i[n])return;i=i[n]}return i}Sc.exports=Qi.default});var _c=v((Ji,Ac)=>{l();"use strict";Ji.__esModule=!0;Ji.default=Pv;function Pv(i){for(var e=arguments.length,t=new Array(e>1?e-1:0),r=1;r0;){var n=t.shift();i[n]||(i[n]={}),i=i[n]}}Ac.exports=Ji.default});var Ec=v((Xi,Oc)=>{l();"use strict";Xi.__esModule=!0;Xi.default=Dv;function Dv(i){for(var e="",t=i.indexOf("/*"),r=0;t>=0;){e=e+i.slice(r,t);var n=i.indexOf("*/",t+2);if(n<0)return e;r=n+2,t=i.indexOf("/*",r)}return e=e+i.slice(r),e}Oc.exports=Xi.default});var Ar=v(Re=>{l();"use strict";Re.__esModule=!0;Re.unesc=Re.stripComments=Re.getProp=Re.ensureObject=void 0;var Iv=Ki(Yi());Re.unesc=Iv.default;var qv=Ki(Cc());Re.getProp=qv.default;var Rv=Ki(_c());Re.ensureObject=Rv.default;var Mv=Ki(Ec());Re.stripComments=Mv.default;function Ki(i){return i&&i.__esModule?i:{default:i}}});var Ue=v((_r,Dc)=>{l();"use strict";_r.__esModule=!0;_r.default=void 0;var Tc=Ar();function Pc(i,e){for(var t=0;tr||this.source.end.linen||this.source.end.line===r&&this.source.end.column{l();"use strict";W.__esModule=!0;W.UNIVERSAL=W.TAG=W.STRING=W.SELECTOR=W.ROOT=W.PSEUDO=W.NESTING=W.ID=W.COMMENT=W.COMBINATOR=W.CLASS=W.ATTRIBUTE=void 0;var Nv="tag";W.TAG=Nv;var $v="string";W.STRING=$v;var jv="selector";W.SELECTOR=jv;var zv="root";W.ROOT=zv;var Vv="pseudo";W.PSEUDO=Vv;var Uv="nesting";W.NESTING=Uv;var Wv="id";W.ID=Wv;var Gv="comment";W.COMMENT=Gv;var Hv="combinator";W.COMBINATOR=Hv;var Yv="class";W.CLASS=Yv;var Qv="attribute";W.ATTRIBUTE=Qv;var Jv="universal";W.UNIVERSAL=Jv});var Zi=v((Or,Mc)=>{l();"use strict";Or.__esModule=!0;Or.default=void 0;var Xv=Zv(Ue()),We=Kv(ne());function Ic(i){if(typeof WeakMap!="function")return null;var e=new WeakMap,t=new WeakMap;return(Ic=function(n){return n?t:e})(i)}function Kv(i,e){if(!e&&i&&i.__esModule)return i;if(i===null||typeof i!="object"&&typeof i!="function")return{default:i};var t=Ic(e);if(t&&t.has(i))return t.get(i);var r={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var a in i)if(a!=="default"&&Object.prototype.hasOwnProperty.call(i,a)){var s=n?Object.getOwnPropertyDescriptor(i,a):null;s&&(s.get||s.set)?Object.defineProperty(r,a,s):r[a]=i[a]}return r.default=i,t&&t.set(i,r),r}function Zv(i){return i&&i.__esModule?i:{default:i}}function ex(i,e){var t=typeof Symbol!="undefined"&&i[Symbol.iterator]||i["@@iterator"];if(t)return(t=t.call(i)).next.bind(t);if(Array.isArray(i)||(t=tx(i))||e&&i&&typeof i.length=="number"){t&&(i=t);var r=0;return function(){return r>=i.length?{done:!0}:{done:!1,value:i[r++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function tx(i,e){if(!!i){if(typeof i=="string")return qc(i,e);var t=Object.prototype.toString.call(i).slice(8,-1);if(t==="Object"&&i.constructor&&(t=i.constructor.name),t==="Map"||t==="Set")return Array.from(i);if(t==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t))return qc(i,e)}}function qc(i,e){(e==null||e>i.length)&&(e=i.length);for(var t=0,r=new Array(e);t=n&&(this.indexes[s]=a-1);return this},t.removeAll=function(){for(var n=ex(this.nodes),a;!(a=n()).done;){var s=a.value;s.parent=void 0}return this.nodes=[],this},t.empty=function(){return this.removeAll()},t.insertAfter=function(n,a){a.parent=this;var s=this.index(n);this.nodes.splice(s+1,0,a),a.parent=this;var o;for(var u in this.indexes)o=this.indexes[u],s<=o&&(this.indexes[u]=o+1);return this},t.insertBefore=function(n,a){a.parent=this;var s=this.index(n);this.nodes.splice(s,0,a),a.parent=this;var o;for(var u in this.indexes)o=this.indexes[u],o<=s&&(this.indexes[u]=o+1);return this},t._findChildAtPosition=function(n,a){var s=void 0;return this.each(function(o){if(o.atPosition){var u=o.atPosition(n,a);if(u)return s=u,!1}else if(o.isAtPosition(n,a))return s=o,!1}),s},t.atPosition=function(n,a){if(this.isAtPosition(n,a))return this._findChildAtPosition(n,a)||this},t._inferEndPosition=function(){this.last&&this.last.source&&this.last.source.end&&(this.source=this.source||{},this.source.end=this.source.end||{},Object.assign(this.source.end,this.last.source.end))},t.each=function(n){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach++;var a=this.lastEach;if(this.indexes[a]=0,!!this.length){for(var s,o;this.indexes[a]{l();"use strict";Er.__esModule=!0;Er.default=void 0;var sx=ox(Zi()),ax=ne();function ox(i){return i&&i.__esModule?i:{default:i}}function Bc(i,e){for(var t=0;t{l();"use strict";Tr.__esModule=!0;Tr.default=void 0;var cx=dx(Zi()),px=ne();function dx(i){return i&&i.__esModule?i:{default:i}}function hx(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,Vs(i,e)}function Vs(i,e){return Vs=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r},Vs(i,e)}var mx=function(i){hx(e,i);function e(t){var r;return r=i.call(this,t)||this,r.type=px.SELECTOR,r}return e}(cx.default);Tr.default=mx;Lc.exports=Tr.default});var en=v((QT,Nc)=>{l();"use strict";var gx={},yx=gx.hasOwnProperty,wx=function(e,t){if(!e)return t;var r={};for(var n in t)r[n]=yx.call(e,n)?e[n]:t[n];return r},bx=/[ -,\.\/:-@\[-\^`\{-~]/,vx=/[ -,\.\/:-@\[\]\^`\{-~]/,xx=/(^|\\+)?(\\[A-F0-9]{1,6})\x20(?![a-fA-F0-9\x20])/g,Ws=function i(e,t){t=wx(t,i.options),t.quotes!="single"&&t.quotes!="double"&&(t.quotes="single");for(var r=t.quotes=="double"?'"':"'",n=t.isIdentifier,a=e.charAt(0),s="",o=0,u=e.length;o126){if(f>=55296&&f<=56319&&o{l();"use strict";Pr.__esModule=!0;Pr.default=void 0;var kx=$c(en()),Sx=Ar(),Cx=$c(Ue()),Ax=ne();function $c(i){return i&&i.__esModule?i:{default:i}}function jc(i,e){for(var t=0;t{l();"use strict";Dr.__esModule=!0;Dr.default=void 0;var Tx=Dx(Ue()),Px=ne();function Dx(i){return i&&i.__esModule?i:{default:i}}function Ix(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,Ys(i,e)}function Ys(i,e){return Ys=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r},Ys(i,e)}var qx=function(i){Ix(e,i);function e(t){var r;return r=i.call(this,t)||this,r.type=Px.COMMENT,r}return e}(Tx.default);Dr.default=qx;Vc.exports=Dr.default});var Xs=v((Ir,Uc)=>{l();"use strict";Ir.__esModule=!0;Ir.default=void 0;var Rx=Bx(Ue()),Mx=ne();function Bx(i){return i&&i.__esModule?i:{default:i}}function Fx(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,Js(i,e)}function Js(i,e){return Js=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r},Js(i,e)}var Lx=function(i){Fx(e,i);function e(r){var n;return n=i.call(this,r)||this,n.type=Mx.ID,n}var t=e.prototype;return t.valueToString=function(){return"#"+i.prototype.valueToString.call(this)},e}(Rx.default);Ir.default=Lx;Uc.exports=Ir.default});var tn=v((qr,Hc)=>{l();"use strict";qr.__esModule=!0;qr.default=void 0;var Nx=Wc(en()),$x=Ar(),jx=Wc(Ue());function Wc(i){return i&&i.__esModule?i:{default:i}}function Gc(i,e){for(var t=0;t{l();"use strict";Rr.__esModule=!0;Rr.default=void 0;var Wx=Hx(tn()),Gx=ne();function Hx(i){return i&&i.__esModule?i:{default:i}}function Yx(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,Zs(i,e)}function Zs(i,e){return Zs=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r},Zs(i,e)}var Qx=function(i){Yx(e,i);function e(t){var r;return r=i.call(this,t)||this,r.type=Gx.TAG,r}return e}(Wx.default);Rr.default=Qx;Yc.exports=Rr.default});var ra=v((Mr,Qc)=>{l();"use strict";Mr.__esModule=!0;Mr.default=void 0;var Jx=Kx(Ue()),Xx=ne();function Kx(i){return i&&i.__esModule?i:{default:i}}function Zx(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,ta(i,e)}function ta(i,e){return ta=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r},ta(i,e)}var e1=function(i){Zx(e,i);function e(t){var r;return r=i.call(this,t)||this,r.type=Xx.STRING,r}return e}(Jx.default);Mr.default=e1;Qc.exports=Mr.default});var na=v((Br,Jc)=>{l();"use strict";Br.__esModule=!0;Br.default=void 0;var t1=i1(Zi()),r1=ne();function i1(i){return i&&i.__esModule?i:{default:i}}function n1(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,ia(i,e)}function ia(i,e){return ia=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r},ia(i,e)}var s1=function(i){n1(e,i);function e(r){var n;return n=i.call(this,r)||this,n.type=r1.PSEUDO,n}var t=e.prototype;return t.toString=function(){var n=this.length?"("+this.map(String).join(",")+")":"";return[this.rawSpaceBefore,this.stringifyProperty("value"),n,this.rawSpaceAfter].join("")},e}(t1.default);Br.default=s1;Jc.exports=Br.default});var Xc={};Ae(Xc,{deprecate:()=>a1});function a1(i){return i}var Kc=C(()=>{l()});var ep=v((JT,Zc)=>{l();Zc.exports=(Kc(),Xc).deprecate});var fa=v(Nr=>{l();"use strict";Nr.__esModule=!0;Nr.default=void 0;Nr.unescapeValue=la;var Fr=aa(en()),o1=aa(Yi()),l1=aa(tn()),u1=ne(),sa;function aa(i){return i&&i.__esModule?i:{default:i}}function tp(i,e){for(var t=0;t0&&!n.quoted&&o.before.length===0&&!(n.spaces.value&&n.spaces.value.after)&&(o.before=" "),rp(s,o)}))),a.push("]"),a.push(this.rawSpaceAfter),a.join("")},f1(e,[{key:"quoted",get:function(){var n=this.quoteMark;return n==="'"||n==='"'},set:function(n){h1()}},{key:"quoteMark",get:function(){return this._quoteMark},set:function(n){if(!this._constructed){this._quoteMark=n;return}this._quoteMark!==n&&(this._quoteMark=n,this._syncRawValue())}},{key:"qualifiedAttribute",get:function(){return this.qualifiedName(this.raws.attribute||this.attribute)}},{key:"insensitiveFlag",get:function(){return this.insensitive?"i":""}},{key:"value",get:function(){return this._value},set:function(n){if(this._constructed){var a=la(n),s=a.deprecatedUsage,o=a.unescaped,u=a.quoteMark;if(s&&d1(),o===this._value&&u===this._quoteMark)return;this._value=o,this._quoteMark=u,this._syncRawValue()}else this._value=n}},{key:"insensitive",get:function(){return this._insensitive},set:function(n){n||(this._insensitive=!1,this.raws&&(this.raws.insensitiveFlag==="I"||this.raws.insensitiveFlag==="i")&&(this.raws.insensitiveFlag=void 0)),this._insensitive=n}},{key:"attribute",get:function(){return this._attribute},set:function(n){this._handleEscapes("attribute",n),this._attribute=n}}]),e}(l1.default);Nr.default=rn;rn.NO_QUOTE=null;rn.SINGLE_QUOTE="'";rn.DOUBLE_QUOTE='"';var ua=(sa={"'":{quotes:"single",wrap:!0},'"':{quotes:"double",wrap:!0}},sa[null]={isIdentifier:!0},sa);function rp(i,e){return""+e.before+i+e.after}});var pa=v(($r,ip)=>{l();"use strict";$r.__esModule=!0;$r.default=void 0;var y1=b1(tn()),w1=ne();function b1(i){return i&&i.__esModule?i:{default:i}}function v1(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,ca(i,e)}function ca(i,e){return ca=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r},ca(i,e)}var x1=function(i){v1(e,i);function e(t){var r;return r=i.call(this,t)||this,r.type=w1.UNIVERSAL,r.value="*",r}return e}(y1.default);$r.default=x1;ip.exports=$r.default});var ha=v((jr,np)=>{l();"use strict";jr.__esModule=!0;jr.default=void 0;var k1=C1(Ue()),S1=ne();function C1(i){return i&&i.__esModule?i:{default:i}}function A1(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,da(i,e)}function da(i,e){return da=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r},da(i,e)}var _1=function(i){A1(e,i);function e(t){var r;return r=i.call(this,t)||this,r.type=S1.COMBINATOR,r}return e}(k1.default);jr.default=_1;np.exports=jr.default});var ga=v((zr,sp)=>{l();"use strict";zr.__esModule=!0;zr.default=void 0;var O1=T1(Ue()),E1=ne();function T1(i){return i&&i.__esModule?i:{default:i}}function P1(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,ma(i,e)}function ma(i,e){return ma=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r},ma(i,e)}var D1=function(i){P1(e,i);function e(t){var r;return r=i.call(this,t)||this,r.type=E1.NESTING,r.value="&",r}return e}(O1.default);zr.default=D1;sp.exports=zr.default});var op=v((nn,ap)=>{l();"use strict";nn.__esModule=!0;nn.default=I1;function I1(i){return i.sort(function(e,t){return e-t})}ap.exports=nn.default});var ya=v(D=>{l();"use strict";D.__esModule=!0;D.word=D.tilde=D.tab=D.str=D.space=D.slash=D.singleQuote=D.semicolon=D.plus=D.pipe=D.openSquare=D.openParenthesis=D.newline=D.greaterThan=D.feed=D.equals=D.doubleQuote=D.dollar=D.cr=D.comment=D.comma=D.combinator=D.colon=D.closeSquare=D.closeParenthesis=D.caret=D.bang=D.backslash=D.at=D.asterisk=D.ampersand=void 0;var q1=38;D.ampersand=q1;var R1=42;D.asterisk=R1;var M1=64;D.at=M1;var B1=44;D.comma=B1;var F1=58;D.colon=F1;var L1=59;D.semicolon=L1;var N1=40;D.openParenthesis=N1;var $1=41;D.closeParenthesis=$1;var j1=91;D.openSquare=j1;var z1=93;D.closeSquare=z1;var V1=36;D.dollar=V1;var U1=126;D.tilde=U1;var W1=94;D.caret=W1;var G1=43;D.plus=G1;var H1=61;D.equals=H1;var Y1=124;D.pipe=Y1;var Q1=62;D.greaterThan=Q1;var J1=32;D.space=J1;var lp=39;D.singleQuote=lp;var X1=34;D.doubleQuote=X1;var K1=47;D.slash=K1;var Z1=33;D.bang=Z1;var ek=92;D.backslash=ek;var tk=13;D.cr=tk;var rk=12;D.feed=rk;var ik=10;D.newline=ik;var nk=9;D.tab=nk;var sk=lp;D.str=sk;var ak=-1;D.comment=ak;var ok=-2;D.word=ok;var lk=-3;D.combinator=lk});var cp=v(Vr=>{l();"use strict";Vr.__esModule=!0;Vr.FIELDS=void 0;Vr.default=mk;var O=uk(ya()),Dt,V;function up(i){if(typeof WeakMap!="function")return null;var e=new WeakMap,t=new WeakMap;return(up=function(n){return n?t:e})(i)}function uk(i,e){if(!e&&i&&i.__esModule)return i;if(i===null||typeof i!="object"&&typeof i!="function")return{default:i};var t=up(e);if(t&&t.has(i))return t.get(i);var r={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var a in i)if(a!=="default"&&Object.prototype.hasOwnProperty.call(i,a)){var s=n?Object.getOwnPropertyDescriptor(i,a):null;s&&(s.get||s.set)?Object.defineProperty(r,a,s):r[a]=i[a]}return r.default=i,t&&t.set(i,r),r}var fk=(Dt={},Dt[O.tab]=!0,Dt[O.newline]=!0,Dt[O.cr]=!0,Dt[O.feed]=!0,Dt),ck=(V={},V[O.space]=!0,V[O.tab]=!0,V[O.newline]=!0,V[O.cr]=!0,V[O.feed]=!0,V[O.ampersand]=!0,V[O.asterisk]=!0,V[O.bang]=!0,V[O.comma]=!0,V[O.colon]=!0,V[O.semicolon]=!0,V[O.openParenthesis]=!0,V[O.closeParenthesis]=!0,V[O.openSquare]=!0,V[O.closeSquare]=!0,V[O.singleQuote]=!0,V[O.doubleQuote]=!0,V[O.plus]=!0,V[O.pipe]=!0,V[O.tilde]=!0,V[O.greaterThan]=!0,V[O.equals]=!0,V[O.dollar]=!0,V[O.caret]=!0,V[O.slash]=!0,V),wa={},fp="0123456789abcdefABCDEF";for(sn=0;sn0?(k=s+x,S=w-y[x].length):(k=s,S=a),E=O.comment,s=k,p=k,d=w-S):c===O.slash?(w=o,E=c,p=s,d=o-a,u=w+1):(w=pk(t,o),E=O.word,p=s,d=w-a),u=w+1;break}e.push([E,s,o-a,p,d,o,u]),S&&(a=S,S=null),o=u}return e}});var bp=v((Ur,wp)=>{l();"use strict";Ur.__esModule=!0;Ur.default=void 0;var gk=be(zs()),ba=be(Us()),yk=be(Hs()),pp=be(Qs()),wk=be(Xs()),bk=be(ea()),va=be(ra()),vk=be(na()),dp=an(fa()),xk=be(pa()),xa=be(ha()),kk=be(ga()),Sk=be(op()),A=an(cp()),T=an(ya()),Ck=an(ne()),Y=Ar(),wt,ka;function hp(i){if(typeof WeakMap!="function")return null;var e=new WeakMap,t=new WeakMap;return(hp=function(n){return n?t:e})(i)}function an(i,e){if(!e&&i&&i.__esModule)return i;if(i===null||typeof i!="object"&&typeof i!="function")return{default:i};var t=hp(e);if(t&&t.has(i))return t.get(i);var r={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var a in i)if(a!=="default"&&Object.prototype.hasOwnProperty.call(i,a)){var s=n?Object.getOwnPropertyDescriptor(i,a):null;s&&(s.get||s.set)?Object.defineProperty(r,a,s):r[a]=i[a]}return r.default=i,t&&t.set(i,r),r}function be(i){return i&&i.__esModule?i:{default:i}}function mp(i,e){for(var t=0;t0){var s=this.current.last;if(s){var o=this.convertWhitespaceNodesToSpace(a),u=o.space,c=o.rawSpace;c!==void 0&&(s.rawSpaceAfter+=c),s.spaces.after+=u}else a.forEach(function(E){return r.newNode(E)})}return}var f=this.currToken,d=void 0;n>this.position&&(d=this.parseWhitespaceEquivalentTokens(n));var p;if(this.isNamedCombinator()?p=this.namedCombinator():this.currToken[A.FIELDS.TYPE]===T.combinator?(p=new xa.default({value:this.content(),source:It(this.currToken),sourceIndex:this.currToken[A.FIELDS.START_POS]}),this.position++):Sa[this.currToken[A.FIELDS.TYPE]]||d||this.unexpected(),p){if(d){var m=this.convertWhitespaceNodesToSpace(d),b=m.space,x=m.rawSpace;p.spaces.before=b,p.rawSpaceBefore=x}}else{var y=this.convertWhitespaceNodesToSpace(d,!0),w=y.space,k=y.rawSpace;k||(k=w);var S={},_={spaces:{}};w.endsWith(" ")&&k.endsWith(" ")?(S.before=w.slice(0,w.length-1),_.spaces.before=k.slice(0,k.length-1)):w.startsWith(" ")&&k.startsWith(" ")?(S.after=w.slice(1),_.spaces.after=k.slice(1)):_.value=k,p=new xa.default({value:" ",source:Ca(f,this.tokens[this.position-1]),sourceIndex:f[A.FIELDS.START_POS],spaces:S,raws:_})}return this.currToken&&this.currToken[A.FIELDS.TYPE]===T.space&&(p.spaces.after=this.optionalSpace(this.content()),this.position++),this.newNode(p)},e.comma=function(){if(this.position===this.tokens.length-1){this.root.trailingComma=!0,this.position++;return}this.current._inferEndPosition();var r=new ba.default({source:{start:gp(this.tokens[this.position+1])}});this.current.parent.append(r),this.current=r,this.position++},e.comment=function(){var r=this.currToken;this.newNode(new pp.default({value:this.content(),source:It(r),sourceIndex:r[A.FIELDS.START_POS]})),this.position++},e.error=function(r,n){throw this.root.error(r,n)},e.missingBackslash=function(){return this.error("Expected a backslash preceding the semicolon.",{index:this.currToken[A.FIELDS.START_POS]})},e.missingParenthesis=function(){return this.expected("opening parenthesis",this.currToken[A.FIELDS.START_POS])},e.missingSquareBracket=function(){return this.expected("opening square bracket",this.currToken[A.FIELDS.START_POS])},e.unexpected=function(){return this.error("Unexpected '"+this.content()+"'. Escaping special characters with \\ may help.",this.currToken[A.FIELDS.START_POS])},e.unexpectedPipe=function(){return this.error("Unexpected '|'.",this.currToken[A.FIELDS.START_POS])},e.namespace=function(){var r=this.prevToken&&this.content(this.prevToken)||!0;if(this.nextToken[A.FIELDS.TYPE]===T.word)return this.position++,this.word(r);if(this.nextToken[A.FIELDS.TYPE]===T.asterisk)return this.position++,this.universal(r);this.unexpectedPipe()},e.nesting=function(){if(this.nextToken){var r=this.content(this.nextToken);if(r==="|"){this.position++;return}}var n=this.currToken;this.newNode(new kk.default({value:this.content(),source:It(n),sourceIndex:n[A.FIELDS.START_POS]})),this.position++},e.parentheses=function(){var r=this.current.last,n=1;if(this.position++,r&&r.type===Ck.PSEUDO){var a=new ba.default({source:{start:gp(this.tokens[this.position-1])}}),s=this.current;for(r.append(a),this.current=a;this.position1&&r.nextToken&&r.nextToken[A.FIELDS.TYPE]===T.openParenthesis&&r.error("Misplaced parenthesis.",{index:r.nextToken[A.FIELDS.START_POS]})});else return this.expected(["pseudo-class","pseudo-element"],this.currToken[A.FIELDS.START_POS])},e.space=function(){var r=this.content();this.position===0||this.prevToken[A.FIELDS.TYPE]===T.comma||this.prevToken[A.FIELDS.TYPE]===T.openParenthesis||this.current.nodes.every(function(n){return n.type==="comment"})?(this.spaces=this.optionalSpace(r),this.position++):this.position===this.tokens.length-1||this.nextToken[A.FIELDS.TYPE]===T.comma||this.nextToken[A.FIELDS.TYPE]===T.closeParenthesis?(this.current.last.spaces.after=this.optionalSpace(r),this.position++):this.combinator()},e.string=function(){var r=this.currToken;this.newNode(new va.default({value:this.content(),source:It(r),sourceIndex:r[A.FIELDS.START_POS]})),this.position++},e.universal=function(r){var n=this.nextToken;if(n&&this.content(n)==="|")return this.position++,this.namespace();var a=this.currToken;this.newNode(new xk.default({value:this.content(),source:It(a),sourceIndex:a[A.FIELDS.START_POS]}),r),this.position++},e.splitWord=function(r,n){for(var a=this,s=this.nextToken,o=this.content();s&&~[T.dollar,T.caret,T.equals,T.word].indexOf(s[A.FIELDS.TYPE]);){this.position++;var u=this.content();if(o+=u,u.lastIndexOf("\\")===u.length-1){var c=this.nextToken;c&&c[A.FIELDS.TYPE]===T.space&&(o+=this.requiredSpace(this.content(c)),this.position++)}s=this.nextToken}var f=Aa(o,".").filter(function(b){var x=o[b-1]==="\\",y=/^\d+\.\d+%$/.test(o);return!x&&!y}),d=Aa(o,"#").filter(function(b){return o[b-1]!=="\\"}),p=Aa(o,"#{");p.length&&(d=d.filter(function(b){return!~p.indexOf(b)}));var m=(0,Sk.default)(Ok([0].concat(f,d)));m.forEach(function(b,x){var y=m[x+1]||o.length,w=o.slice(b,y);if(x===0&&n)return n.call(a,w,m.length);var k,S=a.currToken,_=S[A.FIELDS.START_POS]+m[x],E=bt(S[1],S[2]+b,S[3],S[2]+(y-1));if(~f.indexOf(b)){var I={value:w.slice(1),source:E,sourceIndex:_};k=new yk.default(qt(I,"value"))}else if(~d.indexOf(b)){var q={value:w.slice(1),source:E,sourceIndex:_};k=new wk.default(qt(q,"value"))}else{var R={value:w,source:E,sourceIndex:_};qt(R,"value"),k=new bk.default(R)}a.newNode(k,r),r=null}),this.position++},e.word=function(r){var n=this.nextToken;return n&&this.content(n)==="|"?(this.position++,this.namespace()):this.splitWord(r)},e.loop=function(){for(;this.position{l();"use strict";Wr.__esModule=!0;Wr.default=void 0;var Tk=Pk(bp());function Pk(i){return i&&i.__esModule?i:{default:i}}var Dk=function(){function i(t,r){this.func=t||function(){},this.funcRes=null,this.options=r}var e=i.prototype;return e._shouldUpdateSelector=function(r,n){n===void 0&&(n={});var a=Object.assign({},this.options,n);return a.updateSelector===!1?!1:typeof r!="string"},e._isLossy=function(r){r===void 0&&(r={});var n=Object.assign({},this.options,r);return n.lossless===!1},e._root=function(r,n){n===void 0&&(n={});var a=new Tk.default(r,this._parseOptions(n));return a.root},e._parseOptions=function(r){return{lossy:this._isLossy(r)}},e._run=function(r,n){var a=this;return n===void 0&&(n={}),new Promise(function(s,o){try{var u=a._root(r,n);Promise.resolve(a.func(u)).then(function(c){var f=void 0;return a._shouldUpdateSelector(r,n)&&(f=u.toString(),r.selector=f),{transform:c,root:u,string:f}}).then(s,o)}catch(c){o(c);return}})},e._runSync=function(r,n){n===void 0&&(n={});var a=this._root(r,n),s=this.func(a);if(s&&typeof s.then=="function")throw new Error("Selector processor returned a promise to a synchronous call.");var o=void 0;return n.updateSelector&&typeof r!="string"&&(o=a.toString(),r.selector=o),{transform:s,root:a,string:o}},e.ast=function(r,n){return this._run(r,n).then(function(a){return a.root})},e.astSync=function(r,n){return this._runSync(r,n).root},e.transform=function(r,n){return this._run(r,n).then(function(a){return a.transform})},e.transformSync=function(r,n){return this._runSync(r,n).transform},e.process=function(r,n){return this._run(r,n).then(function(a){return a.string||a.root.toString()})},e.processSync=function(r,n){var a=this._runSync(r,n);return a.string||a.root.toString()},i}();Wr.default=Dk;vp.exports=Wr.default});var kp=v(G=>{l();"use strict";G.__esModule=!0;G.universal=G.tag=G.string=G.selector=G.root=G.pseudo=G.nesting=G.id=G.comment=G.combinator=G.className=G.attribute=void 0;var Ik=ve(fa()),qk=ve(Hs()),Rk=ve(ha()),Mk=ve(Qs()),Bk=ve(Xs()),Fk=ve(ga()),Lk=ve(na()),Nk=ve(zs()),$k=ve(Us()),jk=ve(ra()),zk=ve(ea()),Vk=ve(pa());function ve(i){return i&&i.__esModule?i:{default:i}}var Uk=function(e){return new Ik.default(e)};G.attribute=Uk;var Wk=function(e){return new qk.default(e)};G.className=Wk;var Gk=function(e){return new Rk.default(e)};G.combinator=Gk;var Hk=function(e){return new Mk.default(e)};G.comment=Hk;var Yk=function(e){return new Bk.default(e)};G.id=Yk;var Qk=function(e){return new Fk.default(e)};G.nesting=Qk;var Jk=function(e){return new Lk.default(e)};G.pseudo=Jk;var Xk=function(e){return new Nk.default(e)};G.root=Xk;var Kk=function(e){return new $k.default(e)};G.selector=Kk;var Zk=function(e){return new jk.default(e)};G.string=Zk;var eS=function(e){return new zk.default(e)};G.tag=eS;var tS=function(e){return new Vk.default(e)};G.universal=tS});var _p=v($=>{l();"use strict";$.__esModule=!0;$.isComment=$.isCombinator=$.isClassName=$.isAttribute=void 0;$.isContainer=dS;$.isIdentifier=void 0;$.isNamespace=hS;$.isNesting=void 0;$.isNode=_a;$.isPseudo=void 0;$.isPseudoClass=pS;$.isPseudoElement=Ap;$.isUniversal=$.isTag=$.isString=$.isSelector=$.isRoot=void 0;var Q=ne(),fe,rS=(fe={},fe[Q.ATTRIBUTE]=!0,fe[Q.CLASS]=!0,fe[Q.COMBINATOR]=!0,fe[Q.COMMENT]=!0,fe[Q.ID]=!0,fe[Q.NESTING]=!0,fe[Q.PSEUDO]=!0,fe[Q.ROOT]=!0,fe[Q.SELECTOR]=!0,fe[Q.STRING]=!0,fe[Q.TAG]=!0,fe[Q.UNIVERSAL]=!0,fe);function _a(i){return typeof i=="object"&&rS[i.type]}function xe(i,e){return _a(e)&&e.type===i}var Sp=xe.bind(null,Q.ATTRIBUTE);$.isAttribute=Sp;var iS=xe.bind(null,Q.CLASS);$.isClassName=iS;var nS=xe.bind(null,Q.COMBINATOR);$.isCombinator=nS;var sS=xe.bind(null,Q.COMMENT);$.isComment=sS;var aS=xe.bind(null,Q.ID);$.isIdentifier=aS;var oS=xe.bind(null,Q.NESTING);$.isNesting=oS;var Oa=xe.bind(null,Q.PSEUDO);$.isPseudo=Oa;var lS=xe.bind(null,Q.ROOT);$.isRoot=lS;var uS=xe.bind(null,Q.SELECTOR);$.isSelector=uS;var fS=xe.bind(null,Q.STRING);$.isString=fS;var Cp=xe.bind(null,Q.TAG);$.isTag=Cp;var cS=xe.bind(null,Q.UNIVERSAL);$.isUniversal=cS;function Ap(i){return Oa(i)&&i.value&&(i.value.startsWith("::")||i.value.toLowerCase()===":before"||i.value.toLowerCase()===":after"||i.value.toLowerCase()===":first-letter"||i.value.toLowerCase()===":first-line")}function pS(i){return Oa(i)&&!Ap(i)}function dS(i){return!!(_a(i)&&i.walk)}function hS(i){return Sp(i)||Cp(i)}});var Op=v(Ee=>{l();"use strict";Ee.__esModule=!0;var Ea=ne();Object.keys(Ea).forEach(function(i){i==="default"||i==="__esModule"||i in Ee&&Ee[i]===Ea[i]||(Ee[i]=Ea[i])});var Ta=kp();Object.keys(Ta).forEach(function(i){i==="default"||i==="__esModule"||i in Ee&&Ee[i]===Ta[i]||(Ee[i]=Ta[i])});var Pa=_p();Object.keys(Pa).forEach(function(i){i==="default"||i==="__esModule"||i in Ee&&Ee[i]===Pa[i]||(Ee[i]=Pa[i])})});var Me=v((Gr,Tp)=>{l();"use strict";Gr.__esModule=!0;Gr.default=void 0;var mS=wS(xp()),gS=yS(Op());function Ep(i){if(typeof WeakMap!="function")return null;var e=new WeakMap,t=new WeakMap;return(Ep=function(n){return n?t:e})(i)}function yS(i,e){if(!e&&i&&i.__esModule)return i;if(i===null||typeof i!="object"&&typeof i!="function")return{default:i};var t=Ep(e);if(t&&t.has(i))return t.get(i);var r={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var a in i)if(a!=="default"&&Object.prototype.hasOwnProperty.call(i,a)){var s=n?Object.getOwnPropertyDescriptor(i,a):null;s&&(s.get||s.set)?Object.defineProperty(r,a,s):r[a]=i[a]}return r.default=i,t&&t.set(i,r),r}function wS(i){return i&&i.__esModule?i:{default:i}}var Da=function(e){return new mS.default(e)};Object.assign(Da,gS);delete Da.__esModule;var bS=Da;Gr.default=bS;Tp.exports=Gr.default});function Ge(i){return["fontSize","outline"].includes(i)?e=>(typeof e=="function"&&(e=e({})),Array.isArray(e)&&(e=e[0]),e):i==="fontFamily"?e=>{typeof e=="function"&&(e=e({}));let t=Array.isArray(e)&&ie(e[1])?e[0]:e;return Array.isArray(t)?t.join(", "):t}:["boxShadow","transitionProperty","transitionDuration","transitionDelay","transitionTimingFunction","backgroundImage","backgroundSize","backgroundColor","cursor","animation"].includes(i)?e=>(typeof e=="function"&&(e=e({})),Array.isArray(e)&&(e=e.join(", ")),e):["gridTemplateColumns","gridTemplateRows","objectPosition"].includes(i)?e=>(typeof e=="function"&&(e=e({})),typeof e=="string"&&(e=z.list.comma(e).join(" ")),e):(e,t={})=>(typeof e=="function"&&(e=e(t)),e)}var Hr=C(()=>{l();nt();kt()});var Bp=v((a3,Ba)=>{l();var{Rule:Pp,AtRule:vS}=ge(),Dp=Me();function Ia(i,e){let t;try{Dp(r=>{t=r}).processSync(i)}catch(r){throw i.includes(":")?e?e.error("Missed semicolon"):r:e?e.error(r.message):r}return t.at(0)}function Ip(i,e){let t=!1;return i.each(r=>{if(r.type==="nesting"){let n=e.clone({});r.value!=="&"?r.replaceWith(Ia(r.value.replace("&",n.toString()))):r.replaceWith(n),t=!0}else"nodes"in r&&r.nodes&&Ip(r,e)&&(t=!0)}),t}function qp(i,e){let t=[];return i.selectors.forEach(r=>{let n=Ia(r,i);e.selectors.forEach(a=>{if(!a)return;let s=Ia(a,e);Ip(s,n)||(s.prepend(Dp.combinator({value:" "})),s.prepend(n.clone({}))),t.push(s.toString())})}),t}function on(i,e){let t=i.prev();for(e.after(i);t&&t.type==="comment";){let r=t.prev();e.after(t),t=r}return i}function xS(i){return function e(t,r,n,a=n){let s=[];if(r.each(o=>{o.type==="rule"&&n?a&&(o.selectors=qp(t,o)):o.type==="atrule"&&o.nodes?i[o.name]?e(t,o,a):r[Ra]!==!1&&s.push(o):s.push(o)}),n&&s.length){let o=t.clone({nodes:[]});for(let u of s)o.append(u);r.prepend(o)}}}function qa(i,e,t){let r=new Pp({selector:i,nodes:[]});return r.append(e),t.after(r),r}function Rp(i,e){let t={};for(let r of i)t[r]=!0;if(e)for(let r of e)t[r.replace(/^@/,"")]=!0;return t}function kS(i){i=i.trim();let e=i.match(/^\((.*)\)$/);if(!e)return{type:"basic",selector:i};let t=e[1].match(/^(with(?:out)?):(.+)$/);if(t){let r=t[1]==="with",n=Object.fromEntries(t[2].trim().split(/\s+/).map(s=>[s,!0]));if(r&&n.all)return{type:"noop"};let a=s=>!!n[s];return n.all?a=()=>!0:r&&(a=s=>s==="all"?!1:!n[s]),{type:"withrules",escapes:a}}return{type:"unknown"}}function SS(i){let e=[],t=i.parent;for(;t&&t instanceof vS;)e.push(t),t=t.parent;return e}function CS(i){let e=i[Mp];if(!e)i.after(i.nodes);else{let t=i.nodes,r,n=-1,a,s,o,u=SS(i);if(u.forEach((c,f)=>{if(e(c.name))r=c,n=f,s=o;else{let d=o;o=c.clone({nodes:[]}),d&&o.append(d),a=a||o}}),r?s?(a.append(t),r.after(s)):r.after(t):i.after(t),i.next()&&r){let c;u.slice(0,n+1).forEach((f,d,p)=>{let m=c;c=f.clone({nodes:[]}),m&&c.append(m);let b=[],y=(p[d-1]||i).next();for(;y;)b.push(y),y=y.next();c.append(b)}),c&&(s||t[t.length-1]).after(c)}}i.remove()}var Ra=Symbol("rootRuleMergeSel"),Mp=Symbol("rootRuleEscapes");function AS(i){let{params:e}=i,{type:t,selector:r,escapes:n}=kS(e);if(t==="unknown")throw i.error(`Unknown @${i.name} parameter ${JSON.stringify(e)}`);if(t==="basic"&&r){let a=new Pp({selector:r,nodes:i.nodes});i.removeAll(),i.append(a)}i[Mp]=n,i[Ra]=n?!n("all"):t==="noop"}var Ma=Symbol("hasRootRule");Ba.exports=(i={})=>{let e=Rp(["media","supports","layer","container"],i.bubble),t=xS(e),r=Rp(["document","font-face","keyframes","-webkit-keyframes","-moz-keyframes"],i.unwrap),n=(i.rootRuleName||"at-root").replace(/^@/,""),a=i.preserveEmpty;return{postcssPlugin:"postcss-nested",Once(s){s.walkAtRules(n,o=>{AS(o),s[Ma]=!0})},Rule(s){let o=!1,u=s,c=!1,f=[];s.each(d=>{d.type==="rule"?(f.length&&(u=qa(s.selector,f,u),f=[]),c=!0,o=!0,d.selectors=qp(s,d),u=on(d,u)):d.type==="atrule"?(f.length&&(u=qa(s.selector,f,u),f=[]),d.name===n?(o=!0,t(s,d,!0,d[Ra]),u=on(d,u)):e[d.name]?(c=!0,o=!0,t(s,d,!0),u=on(d,u)):r[d.name]?(c=!0,o=!0,t(s,d,!1),u=on(d,u)):c&&f.push(d)):d.type==="decl"&&c&&f.push(d)}),f.length&&(u=qa(s.selector,f,u)),o&&a!==!0&&(s.raws.semicolon=!0,s.nodes.length===0&&s.remove())},RootExit(s){s[Ma]&&(s.walkAtRules(n,CS),s[Ma]=!1)}}};Ba.exports.postcss=!0});var $p=v((o3,Np)=>{l();"use strict";var Fp=/-(\w|$)/g,Lp=(i,e)=>e.toUpperCase(),_S=i=>(i=i.toLowerCase(),i==="float"?"cssFloat":i.startsWith("-ms-")?i.substr(1).replace(Fp,Lp):i.replace(Fp,Lp));Np.exports=_S});var Na=v((l3,jp)=>{l();var OS=$p(),ES={boxFlex:!0,boxFlexGroup:!0,columnCount:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,strokeDashoffset:!0,strokeOpacity:!0,strokeWidth:!0};function Fa(i){return typeof i.nodes=="undefined"?!0:La(i)}function La(i){let e,t={};return i.each(r=>{if(r.type==="atrule")e="@"+r.name,r.params&&(e+=" "+r.params),typeof t[e]=="undefined"?t[e]=Fa(r):Array.isArray(t[e])?t[e].push(Fa(r)):t[e]=[t[e],Fa(r)];else if(r.type==="rule"){let n=La(r);if(t[r.selector])for(let a in n)t[r.selector][a]=n[a];else t[r.selector]=n}else if(r.type==="decl"){r.prop[0]==="-"&&r.prop[1]==="-"||r.parent&&r.parent.selector===":export"?e=r.prop:e=OS(r.prop);let n=r.value;!isNaN(r.value)&&ES[e]&&(n=parseFloat(r.value)),r.important&&(n+=" !important"),typeof t[e]=="undefined"?t[e]=n:Array.isArray(t[e])?t[e].push(n):t[e]=[t[e],n]}}),t}jp.exports=La});var ln=v((u3,Wp)=>{l();var Yr=ge(),zp=/\s*!important\s*$/i,TS={"box-flex":!0,"box-flex-group":!0,"column-count":!0,flex:!0,"flex-grow":!0,"flex-positive":!0,"flex-shrink":!0,"flex-negative":!0,"font-weight":!0,"line-clamp":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"tab-size":!0,widows:!0,"z-index":!0,zoom:!0,"fill-opacity":!0,"stroke-dashoffset":!0,"stroke-opacity":!0,"stroke-width":!0};function PS(i){return i.replace(/([A-Z])/g,"-$1").replace(/^ms-/,"-ms-").toLowerCase()}function Vp(i,e,t){t===!1||t===null||(e.startsWith("--")||(e=PS(e)),typeof t=="number"&&(t===0||TS[e]?t=t.toString():t+="px"),e==="css-float"&&(e="float"),zp.test(t)?(t=t.replace(zp,""),i.push(Yr.decl({prop:e,value:t,important:!0}))):i.push(Yr.decl({prop:e,value:t})))}function Up(i,e,t){let r=Yr.atRule({name:e[1],params:e[3]||""});typeof t=="object"&&(r.nodes=[],$a(t,r)),i.push(r)}function $a(i,e){let t,r,n;for(t in i)if(r=i[t],!(r===null||typeof r=="undefined"))if(t[0]==="@"){let a=t.match(/@(\S+)(\s+([\W\w]*)\s*)?/);if(Array.isArray(r))for(let s of r)Up(e,a,s);else Up(e,a,r)}else if(Array.isArray(r))for(let a of r)Vp(e,t,a);else typeof r=="object"?(n=Yr.rule({selector:t}),$a(r,n),e.push(n)):Vp(e,t,r)}Wp.exports=function(i){let e=Yr.root();return $a(i,e),e}});var ja=v((f3,Gp)=>{l();var DS=Na();Gp.exports=function(e){return console&&console.warn&&e.warnings().forEach(t=>{let r=t.plugin||"PostCSS";console.warn(r+": "+t.text)}),DS(e.root)}});var Yp=v((c3,Hp)=>{l();var IS=ge(),qS=ja(),RS=ln();Hp.exports=function(e){let t=IS(e);return async r=>{let n=await t.process(r,{parser:RS,from:void 0});return qS(n)}}});var Jp=v((p3,Qp)=>{l();var MS=ge(),BS=ja(),FS=ln();Qp.exports=function(i){let e=MS(i);return t=>{let r=e.process(t,{parser:FS,from:void 0});return BS(r)}}});var Kp=v((d3,Xp)=>{l();var LS=Na(),NS=ln(),$S=Yp(),jS=Jp();Xp.exports={objectify:LS,parse:NS,async:$S,sync:jS}});var Rt,Zp,h3,m3,g3,y3,ed=C(()=>{l();Rt=X(Kp()),Zp=Rt.default,h3=Rt.default.objectify,m3=Rt.default.parse,g3=Rt.default.async,y3=Rt.default.sync});function Mt(i){return Array.isArray(i)?i.flatMap(e=>z([(0,td.default)({bubble:["screen"]})]).process(e,{parser:Zp}).root.nodes):Mt([i])}var td,za=C(()=>{l();nt();td=X(Bp());ed()});function Bt(i,e,t=!1){if(i==="")return e;let r=typeof e=="string"?(0,rd.default)().astSync(e):e;return r.walkClasses(n=>{let a=n.value,s=t&&a.startsWith("-");n.value=s?`-${i}${a.slice(1)}`:`${i}${a}`}),typeof e=="string"?r.toString():r}var rd,un=C(()=>{l();rd=X(Me())});function ce(i){let e=id.default.className();return e.value=i,mt(e?.raws?.value??e.value)}var id,Ft=C(()=>{l();id=X(Me());mi()});function Va(i){return mt(`.${ce(i)}`)}function fn(i,e){return Va(Qr(i,e))}function Qr(i,e){return e==="DEFAULT"?i:e==="-"||e==="-DEFAULT"?`-${i}`:e.startsWith("-")?`-${i}${e}`:e.startsWith("/")?`${i}${e}`:`${i}-${e}`}var Ua=C(()=>{l();Ft();mi()});function P(i,e=[[i,[i]]],{filterDefault:t=!1,...r}={}){let n=Ge(i);return function({matchUtilities:a,theme:s}){for(let o of e){let u=Array.isArray(o[0])?o:[o];a(u.reduce((c,[f,d])=>Object.assign(c,{[f]:p=>d.reduce((m,b)=>Array.isArray(b)?Object.assign(m,{[b[0]]:b[1]}):Object.assign(m,{[b]:n(p)}),{})}),{}),{...r,values:t?Object.fromEntries(Object.entries(s(i)??{}).filter(([c])=>c!=="DEFAULT")):s(i)})}}}var nd=C(()=>{l();Hr()});function st(i){return i=Array.isArray(i)?i:[i],i.map(e=>{let t=e.values.map(r=>r.raw!==void 0?r.raw:[r.min&&`(min-width: ${r.min})`,r.max&&`(max-width: ${r.max})`].filter(Boolean).join(" and "));return e.not?`not all and ${t}`:t}).join(", ")}var cn=C(()=>{l()});function Wa(i){return i.split(YS).map(t=>{let r=t.trim(),n={value:r},a=r.split(QS),s=new Set;for(let o of a)!s.has("DIRECTIONS")&&zS.has(o)?(n.direction=o,s.add("DIRECTIONS")):!s.has("PLAY_STATES")&&VS.has(o)?(n.playState=o,s.add("PLAY_STATES")):!s.has("FILL_MODES")&&US.has(o)?(n.fillMode=o,s.add("FILL_MODES")):!s.has("ITERATION_COUNTS")&&(WS.has(o)||JS.test(o))?(n.iterationCount=o,s.add("ITERATION_COUNTS")):!s.has("TIMING_FUNCTION")&&GS.has(o)||!s.has("TIMING_FUNCTION")&&HS.some(u=>o.startsWith(`${u}(`))?(n.timingFunction=o,s.add("TIMING_FUNCTION")):!s.has("DURATION")&&sd.test(o)?(n.duration=o,s.add("DURATION")):!s.has("DELAY")&&sd.test(o)?(n.delay=o,s.add("DELAY")):s.has("NAME")?(n.unknown||(n.unknown=[]),n.unknown.push(o)):(n.name=o,s.add("NAME"));return n})}var zS,VS,US,WS,GS,HS,YS,QS,sd,JS,ad=C(()=>{l();zS=new Set(["normal","reverse","alternate","alternate-reverse"]),VS=new Set(["running","paused"]),US=new Set(["none","forwards","backwards","both"]),WS=new Set(["infinite"]),GS=new Set(["linear","ease","ease-in","ease-out","ease-in-out","step-start","step-end"]),HS=["cubic-bezier","steps"],YS=/\,(?![^(]*\))/g,QS=/\ +(?![^(]*\))/g,sd=/^(-?[\d.]+m?s)$/,JS=/^(\d+)$/});var od,re,ld=C(()=>{l();od=i=>Object.assign({},...Object.entries(i??{}).flatMap(([e,t])=>typeof t=="object"?Object.entries(od(t)).map(([r,n])=>({[e+(r==="DEFAULT"?"":`-${r}`)]:n})):[{[`${e}`]:t}])),re=od});var fd,ud=C(()=>{fd="3.4.3"});function at(i,e=!0){return Array.isArray(i)?i.map(t=>{if(e&&Array.isArray(t))throw new Error("The tuple syntax is not supported for `screens`.");if(typeof t=="string")return{name:t.toString(),not:!1,values:[{min:t,max:void 0}]};let[r,n]=t;return r=r.toString(),typeof n=="string"?{name:r,not:!1,values:[{min:n,max:void 0}]}:Array.isArray(n)?{name:r,not:!1,values:n.map(a=>pd(a))}:{name:r,not:!1,values:[pd(n)]}}):at(Object.entries(i??{}),!1)}function pn(i){return i.values.length!==1?{result:!1,reason:"multiple-values"}:i.values[0].raw!==void 0?{result:!1,reason:"raw-values"}:i.values[0].min!==void 0&&i.values[0].max!==void 0?{result:!1,reason:"min-and-max"}:{result:!0,reason:null}}function cd(i,e,t){let r=dn(e,i),n=dn(t,i),a=pn(r),s=pn(n);if(a.reason==="multiple-values"||s.reason==="multiple-values")throw new Error("Attempted to sort a screen with multiple values. This should never happen. Please open a bug report.");if(a.reason==="raw-values"||s.reason==="raw-values")throw new Error("Attempted to sort a screen with raw values. This should never happen. Please open a bug report.");if(a.reason==="min-and-max"||s.reason==="min-and-max")throw new Error("Attempted to sort a screen with both min and max values. This should never happen. Please open a bug report.");let{min:o,max:u}=r.values[0],{min:c,max:f}=n.values[0];e.not&&([o,u]=[u,o]),t.not&&([c,f]=[f,c]),o=o===void 0?o:parseFloat(o),u=u===void 0?u:parseFloat(u),c=c===void 0?c:parseFloat(c),f=f===void 0?f:parseFloat(f);let[d,p]=i==="min"?[o,c]:[f,u];return d-p}function dn(i,e){return typeof i=="object"?i:{name:"arbitrary-screen",values:[{[e]:i}]}}function pd({"min-width":i,min:e=i,max:t,raw:r}={}){return{min:e,max:t,raw:r}}var hn=C(()=>{l()});function mn(i,e){i.walkDecls(t=>{if(e.includes(t.prop)){t.remove();return}for(let r of e)t.value.includes(`/ var(${r})`)&&(t.value=t.value.replace(`/ var(${r})`,""))})}var dd=C(()=>{l()});var H,Te,Be,Fe,hd,md=C(()=>{l();je();gt();nt();nd();cn();Ft();ad();ld();or();cs();kt();Hr();ud();Oe();hn();ns();dd();ze();fr();Xr();H={childVariant:({addVariant:i})=>{i("*","& > *")},pseudoElementVariants:({addVariant:i})=>{i("first-letter","&::first-letter"),i("first-line","&::first-line"),i("marker",[({container:e})=>(mn(e,["--tw-text-opacity"]),"& *::marker"),({container:e})=>(mn(e,["--tw-text-opacity"]),"&::marker")]),i("selection",["& *::selection","&::selection"]),i("file","&::file-selector-button"),i("placeholder","&::placeholder"),i("backdrop","&::backdrop"),i("before",({container:e})=>(e.walkRules(t=>{let r=!1;t.walkDecls("content",()=>{r=!0}),r||t.prepend(z.decl({prop:"content",value:"var(--tw-content)"}))}),"&::before")),i("after",({container:e})=>(e.walkRules(t=>{let r=!1;t.walkDecls("content",()=>{r=!0}),r||t.prepend(z.decl({prop:"content",value:"var(--tw-content)"}))}),"&::after"))},pseudoClassVariants:({addVariant:i,matchVariant:e,config:t,prefix:r})=>{let n=[["first","&:first-child"],["last","&:last-child"],["only","&:only-child"],["odd","&:nth-child(odd)"],["even","&:nth-child(even)"],"first-of-type","last-of-type","only-of-type",["visited",({container:s})=>(mn(s,["--tw-text-opacity","--tw-border-opacity","--tw-bg-opacity"]),"&:visited")],"target",["open","&[open]"],"default","checked","indeterminate","placeholder-shown","autofill","optional","required","valid","invalid","in-range","out-of-range","read-only","empty","focus-within",["hover",K(t(),"hoverOnlyWhenSupported")?"@media (hover: hover) and (pointer: fine) { &:hover }":"&:hover"],"focus","focus-visible","active","enabled","disabled"].map(s=>Array.isArray(s)?s:[s,`&:${s}`]);for(let[s,o]of n)i(s,u=>typeof o=="function"?o(u):o);let a={group:(s,{modifier:o})=>o?[`:merge(${r(".group")}\\/${ce(o)})`," &"]:[`:merge(${r(".group")})`," &"],peer:(s,{modifier:o})=>o?[`:merge(${r(".peer")}\\/${ce(o)})`," ~ &"]:[`:merge(${r(".peer")})`," ~ &"]};for(let[s,o]of Object.entries(a))e(s,(u="",c)=>{let f=L(typeof u=="function"?u(c):u);f.includes("&")||(f="&"+f);let[d,p]=o("",c),m=null,b=null,x=0;for(let y=0;y{i("ltr",'&:where([dir="ltr"], [dir="ltr"] *)'),i("rtl",'&:where([dir="rtl"], [dir="rtl"] *)')},reducedMotionVariants:({addVariant:i})=>{i("motion-safe","@media (prefers-reduced-motion: no-preference)"),i("motion-reduce","@media (prefers-reduced-motion: reduce)")},darkVariants:({config:i,addVariant:e})=>{let[t,r=".dark"]=[].concat(i("darkMode","media"));if(t===!1&&(t="media",F.warn("darkmode-false",["The `darkMode` option in your Tailwind CSS configuration is set to `false`, which now behaves the same as `media`.","Change `darkMode` to `media` or remove it entirely.","https://tailwindcss.com/docs/upgrade-guide#remove-dark-mode-configuration"])),t==="variant"){let n;if(Array.isArray(r)||typeof r=="function"?n=r:typeof r=="string"&&(n=[r]),Array.isArray(n))for(let a of n)a===".dark"?(t=!1,F.warn("darkmode-variant-without-selector",["When using `variant` for `darkMode`, you must provide a selector.",'Example: `darkMode: ["variant", ".your-selector &"]`'])):a.includes("&")||(t=!1,F.warn("darkmode-variant-without-ampersand",["When using `variant` for `darkMode`, your selector must contain `&`.",'Example `darkMode: ["variant", ".your-selector &"]`']));r=n}t==="selector"?e("dark",`&:where(${r}, ${r} *)`):t==="media"?e("dark","@media (prefers-color-scheme: dark)"):t==="variant"?e("dark",r):t==="class"&&e("dark",`&:is(${r} *)`)},printVariant:({addVariant:i})=>{i("print","@media print")},screenVariants:({theme:i,addVariant:e,matchVariant:t})=>{let r=i("screens")??{},n=Object.values(r).every(w=>typeof w=="string"),a=at(i("screens")),s=new Set([]);function o(w){return w.match(/(\D+)$/)?.[1]??"(none)"}function u(w){w!==void 0&&s.add(o(w))}function c(w){return u(w),s.size===1}for(let w of a)for(let k of w.values)u(k.min),u(k.max);let f=s.size<=1;function d(w){return Object.fromEntries(a.filter(k=>pn(k).result).map(k=>{let{min:S,max:_}=k.values[0];if(w==="min"&&S!==void 0)return k;if(w==="min"&&_!==void 0)return{...k,not:!k.not};if(w==="max"&&_!==void 0)return k;if(w==="max"&&S!==void 0)return{...k,not:!k.not}}).map(k=>[k.name,k]))}function p(w){return(k,S)=>cd(w,k.value,S.value)}let m=p("max"),b=p("min");function x(w){return k=>{if(n)if(f){if(typeof k=="string"&&!c(k))return F.warn("minmax-have-mixed-units",["The `min-*` and `max-*` variants are not supported with a `screens` configuration containing mixed units."]),[]}else return F.warn("mixed-screen-units",["The `min-*` and `max-*` variants are not supported with a `screens` configuration containing mixed units."]),[];else return F.warn("complex-screen-config",["The `min-*` and `max-*` variants are not supported with a `screens` configuration containing objects."]),[];return[`@media ${st(dn(k,w))}`]}}t("max",x("max"),{sort:m,values:n?d("max"):{}});let y="min-screens";for(let w of a)e(w.name,`@media ${st(w)}`,{id:y,sort:n&&f?b:void 0,value:w});t("min",x("min"),{id:y,sort:b})},supportsVariants:({matchVariant:i,theme:e})=>{i("supports",(t="")=>{let r=L(t),n=/^\w*\s*\(/.test(r);return r=n?r.replace(/\b(and|or|not)\b/g," $1 "):r,n?`@supports ${r}`:(r.includes(":")||(r=`${r}: var(--tw)`),r.startsWith("(")&&r.endsWith(")")||(r=`(${r})`),`@supports ${r}`)},{values:e("supports")??{}})},hasVariants:({matchVariant:i})=>{i("has",e=>`&:has(${L(e)})`,{values:{}}),i("group-has",(e,{modifier:t})=>t?`:merge(.group\\/${t}):has(${L(e)}) &`:`:merge(.group):has(${L(e)}) &`,{values:{}}),i("peer-has",(e,{modifier:t})=>t?`:merge(.peer\\/${t}):has(${L(e)}) ~ &`:`:merge(.peer):has(${L(e)}) ~ &`,{values:{}})},ariaVariants:({matchVariant:i,theme:e})=>{i("aria",t=>`&[aria-${L(t)}]`,{values:e("aria")??{}}),i("group-aria",(t,{modifier:r})=>r?`:merge(.group\\/${r})[aria-${L(t)}] &`:`:merge(.group)[aria-${L(t)}] &`,{values:e("aria")??{}}),i("peer-aria",(t,{modifier:r})=>r?`:merge(.peer\\/${r})[aria-${L(t)}] ~ &`:`:merge(.peer)[aria-${L(t)}] ~ &`,{values:e("aria")??{}})},dataVariants:({matchVariant:i,theme:e})=>{i("data",t=>`&[data-${L(t)}]`,{values:e("data")??{}}),i("group-data",(t,{modifier:r})=>r?`:merge(.group\\/${r})[data-${L(t)}] &`:`:merge(.group)[data-${L(t)}] &`,{values:e("data")??{}}),i("peer-data",(t,{modifier:r})=>r?`:merge(.peer\\/${r})[data-${L(t)}] ~ &`:`:merge(.peer)[data-${L(t)}] ~ &`,{values:e("data")??{}})},orientationVariants:({addVariant:i})=>{i("portrait","@media (orientation: portrait)"),i("landscape","@media (orientation: landscape)")},prefersContrastVariants:({addVariant:i})=>{i("contrast-more","@media (prefers-contrast: more)"),i("contrast-less","@media (prefers-contrast: less)")},forcedColorsVariants:({addVariant:i})=>{i("forced-colors","@media (forced-colors: active)")}},Te=["translate(var(--tw-translate-x), var(--tw-translate-y))","rotate(var(--tw-rotate))","skewX(var(--tw-skew-x))","skewY(var(--tw-skew-y))","scaleX(var(--tw-scale-x))","scaleY(var(--tw-scale-y))"].join(" "),Be=["var(--tw-blur)","var(--tw-brightness)","var(--tw-contrast)","var(--tw-grayscale)","var(--tw-hue-rotate)","var(--tw-invert)","var(--tw-saturate)","var(--tw-sepia)","var(--tw-drop-shadow)"].join(" "),Fe=["var(--tw-backdrop-blur)","var(--tw-backdrop-brightness)","var(--tw-backdrop-contrast)","var(--tw-backdrop-grayscale)","var(--tw-backdrop-hue-rotate)","var(--tw-backdrop-invert)","var(--tw-backdrop-opacity)","var(--tw-backdrop-saturate)","var(--tw-backdrop-sepia)"].join(" "),hd={preflight:({addBase:i})=>{let e=z.parse(`*,::after,::before{box-sizing:border-box;border-width:0;border-style:solid;border-color:theme('borderColor.DEFAULT', currentColor)}::after,::before{--tw-content:''}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-family:theme('fontFamily.sans', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");font-feature-settings:theme('fontFamily.sans[1].fontFeatureSettings', normal);font-variation-settings:theme('fontFamily.sans[1].fontVariationSettings', normal);-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:theme('fontFamily.mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);font-feature-settings:theme('fontFamily.mono[1].fontFeatureSettings', normal);font-variation-settings:theme('fontFamily.mono[1].fontVariationSettings', normal);font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1;color:theme('colors.gray.4', #9ca3af)}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}`);i([z.comment({text:`! tailwindcss v${fd} | MIT License | https://tailwindcss.com`}),...e.nodes])},container:(()=>{function i(t=[]){return t.flatMap(r=>r.values.map(n=>n.min)).filter(r=>r!==void 0)}function e(t,r,n){if(typeof n=="undefined")return[];if(!(typeof n=="object"&&n!==null))return[{screen:"DEFAULT",minWidth:0,padding:n}];let a=[];n.DEFAULT&&a.push({screen:"DEFAULT",minWidth:0,padding:n.DEFAULT});for(let s of t)for(let o of r)for(let{min:u}of o.values)u===s&&a.push({minWidth:s,padding:n[o.name]});return a}return function({addComponents:t,theme:r}){let n=at(r("container.screens",r("screens"))),a=i(n),s=e(a,n,r("container.padding")),o=c=>{let f=s.find(d=>d.minWidth===c);return f?{paddingRight:f.padding,paddingLeft:f.padding}:{}},u=Array.from(new Set(a.slice().sort((c,f)=>parseInt(c)-parseInt(f)))).map(c=>({[`@media (min-width: ${c})`]:{".container":{"max-width":c,...o(c)}}}));t([{".container":Object.assign({width:"100%"},r("container.center",!1)?{marginRight:"auto",marginLeft:"auto"}:{},o(0))},...u])}})(),accessibility:({addUtilities:i})=>{i({".sr-only":{position:"absolute",width:"1px",height:"1px",padding:"0",margin:"-1px",overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",borderWidth:"0"},".not-sr-only":{position:"static",width:"auto",height:"auto",padding:"0",margin:"0",overflow:"visible",clip:"auto",whiteSpace:"normal"}})},pointerEvents:({addUtilities:i})=>{i({".pointer-events-none":{"pointer-events":"none"},".pointer-events-auto":{"pointer-events":"auto"}})},visibility:({addUtilities:i})=>{i({".visible":{visibility:"visible"},".invisible":{visibility:"hidden"},".collapse":{visibility:"collapse"}})},position:({addUtilities:i})=>{i({".static":{position:"static"},".fixed":{position:"fixed"},".absolute":{position:"absolute"},".relative":{position:"relative"},".sticky":{position:"sticky"}})},inset:P("inset",[["inset",["inset"]],[["inset-x",["left","right"]],["inset-y",["top","bottom"]]],[["start",["inset-inline-start"]],["end",["inset-inline-end"]],["top",["top"]],["right",["right"]],["bottom",["bottom"]],["left",["left"]]]],{supportsNegativeValues:!0}),isolation:({addUtilities:i})=>{i({".isolate":{isolation:"isolate"},".isolation-auto":{isolation:"auto"}})},zIndex:P("zIndex",[["z",["zIndex"]]],{supportsNegativeValues:!0}),order:P("order",void 0,{supportsNegativeValues:!0}),gridColumn:P("gridColumn",[["col",["gridColumn"]]]),gridColumnStart:P("gridColumnStart",[["col-start",["gridColumnStart"]]]),gridColumnEnd:P("gridColumnEnd",[["col-end",["gridColumnEnd"]]]),gridRow:P("gridRow",[["row",["gridRow"]]]),gridRowStart:P("gridRowStart",[["row-start",["gridRowStart"]]]),gridRowEnd:P("gridRowEnd",[["row-end",["gridRowEnd"]]]),float:({addUtilities:i})=>{i({".float-start":{float:"inline-start"},".float-end":{float:"inline-end"},".float-right":{float:"right"},".float-left":{float:"left"},".float-none":{float:"none"}})},clear:({addUtilities:i})=>{i({".clear-start":{clear:"inline-start"},".clear-end":{clear:"inline-end"},".clear-left":{clear:"left"},".clear-right":{clear:"right"},".clear-both":{clear:"both"},".clear-none":{clear:"none"}})},margin:P("margin",[["m",["margin"]],[["mx",["margin-left","margin-right"]],["my",["margin-top","margin-bottom"]]],[["ms",["margin-inline-start"]],["me",["margin-inline-end"]],["mt",["margin-top"]],["mr",["margin-right"]],["mb",["margin-bottom"]],["ml",["margin-left"]]]],{supportsNegativeValues:!0}),boxSizing:({addUtilities:i})=>{i({".box-border":{"box-sizing":"border-box"},".box-content":{"box-sizing":"content-box"}})},lineClamp:({matchUtilities:i,addUtilities:e,theme:t})=>{i({"line-clamp":r=>({overflow:"hidden",display:"-webkit-box","-webkit-box-orient":"vertical","-webkit-line-clamp":`${r}`})},{values:t("lineClamp")}),e({".line-clamp-none":{overflow:"visible",display:"block","-webkit-box-orient":"horizontal","-webkit-line-clamp":"none"}})},display:({addUtilities:i})=>{i({".block":{display:"block"},".inline-block":{display:"inline-block"},".inline":{display:"inline"},".flex":{display:"flex"},".inline-flex":{display:"inline-flex"},".table":{display:"table"},".inline-table":{display:"inline-table"},".table-caption":{display:"table-caption"},".table-cell":{display:"table-cell"},".table-column":{display:"table-column"},".table-column-group":{display:"table-column-group"},".table-footer-group":{display:"table-footer-group"},".table-header-group":{display:"table-header-group"},".table-row-group":{display:"table-row-group"},".table-row":{display:"table-row"},".flow-root":{display:"flow-root"},".grid":{display:"grid"},".inline-grid":{display:"inline-grid"},".contents":{display:"contents"},".list-item":{display:"list-item"},".hidden":{display:"none"}})},aspectRatio:P("aspectRatio",[["aspect",["aspect-ratio"]]]),size:P("size",[["size",["width","height"]]]),height:P("height",[["h",["height"]]]),maxHeight:P("maxHeight",[["max-h",["maxHeight"]]]),minHeight:P("minHeight",[["min-h",["minHeight"]]]),width:P("width",[["w",["width"]]]),minWidth:P("minWidth",[["min-w",["minWidth"]]]),maxWidth:P("maxWidth",[["max-w",["maxWidth"]]]),flex:P("flex"),flexShrink:P("flexShrink",[["flex-shrink",["flex-shrink"]],["shrink",["flex-shrink"]]]),flexGrow:P("flexGrow",[["flex-grow",["flex-grow"]],["grow",["flex-grow"]]]),flexBasis:P("flexBasis",[["basis",["flex-basis"]]]),tableLayout:({addUtilities:i})=>{i({".table-auto":{"table-layout":"auto"},".table-fixed":{"table-layout":"fixed"}})},captionSide:({addUtilities:i})=>{i({".caption-top":{"caption-side":"top"},".caption-bottom":{"caption-side":"bottom"}})},borderCollapse:({addUtilities:i})=>{i({".border-collapse":{"border-collapse":"collapse"},".border-separate":{"border-collapse":"separate"}})},borderSpacing:({addDefaults:i,matchUtilities:e,theme:t})=>{i("border-spacing",{"--tw-border-spacing-x":0,"--tw-border-spacing-y":0}),e({"border-spacing":r=>({"--tw-border-spacing-x":r,"--tw-border-spacing-y":r,"@defaults border-spacing":{},"border-spacing":"var(--tw-border-spacing-x) var(--tw-border-spacing-y)"}),"border-spacing-x":r=>({"--tw-border-spacing-x":r,"@defaults border-spacing":{},"border-spacing":"var(--tw-border-spacing-x) var(--tw-border-spacing-y)"}),"border-spacing-y":r=>({"--tw-border-spacing-y":r,"@defaults border-spacing":{},"border-spacing":"var(--tw-border-spacing-x) var(--tw-border-spacing-y)"})},{values:t("borderSpacing")})},transformOrigin:P("transformOrigin",[["origin",["transformOrigin"]]]),translate:P("translate",[[["translate-x",[["@defaults transform",{}],"--tw-translate-x",["transform",Te]]],["translate-y",[["@defaults transform",{}],"--tw-translate-y",["transform",Te]]]]],{supportsNegativeValues:!0}),rotate:P("rotate",[["rotate",[["@defaults transform",{}],"--tw-rotate",["transform",Te]]]],{supportsNegativeValues:!0}),skew:P("skew",[[["skew-x",[["@defaults transform",{}],"--tw-skew-x",["transform",Te]]],["skew-y",[["@defaults transform",{}],"--tw-skew-y",["transform",Te]]]]],{supportsNegativeValues:!0}),scale:P("scale",[["scale",[["@defaults transform",{}],"--tw-scale-x","--tw-scale-y",["transform",Te]]],[["scale-x",[["@defaults transform",{}],"--tw-scale-x",["transform",Te]]],["scale-y",[["@defaults transform",{}],"--tw-scale-y",["transform",Te]]]]],{supportsNegativeValues:!0}),transform:({addDefaults:i,addUtilities:e})=>{i("transform",{"--tw-translate-x":"0","--tw-translate-y":"0","--tw-rotate":"0","--tw-skew-x":"0","--tw-skew-y":"0","--tw-scale-x":"1","--tw-scale-y":"1"}),e({".transform":{"@defaults transform":{},transform:Te},".transform-cpu":{transform:Te},".transform-gpu":{transform:Te.replace("translate(var(--tw-translate-x), var(--tw-translate-y))","translate3d(var(--tw-translate-x), var(--tw-translate-y), 0)")},".transform-none":{transform:"none"}})},animation:({matchUtilities:i,theme:e,config:t})=>{let r=a=>ce(t("prefix")+a),n=Object.fromEntries(Object.entries(e("keyframes")??{}).map(([a,s])=>[a,{[`@keyframes ${r(a)}`]:s}]));i({animate:a=>{let s=Wa(a);return[...s.flatMap(o=>n[o.name]),{animation:s.map(({name:o,value:u})=>o===void 0||n[o]===void 0?u:u.replace(o,r(o))).join(", ")}]}},{values:e("animation")})},cursor:P("cursor"),touchAction:({addDefaults:i,addUtilities:e})=>{i("touch-action",{"--tw-pan-x":" ","--tw-pan-y":" ","--tw-pinch-zoom":" "});let t="var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom)";e({".touch-auto":{"touch-action":"auto"},".touch-none":{"touch-action":"none"},".touch-pan-x":{"@defaults touch-action":{},"--tw-pan-x":"pan-x","touch-action":t},".touch-pan-left":{"@defaults touch-action":{},"--tw-pan-x":"pan-left","touch-action":t},".touch-pan-right":{"@defaults touch-action":{},"--tw-pan-x":"pan-right","touch-action":t},".touch-pan-y":{"@defaults touch-action":{},"--tw-pan-y":"pan-y","touch-action":t},".touch-pan-up":{"@defaults touch-action":{},"--tw-pan-y":"pan-up","touch-action":t},".touch-pan-down":{"@defaults touch-action":{},"--tw-pan-y":"pan-down","touch-action":t},".touch-pinch-zoom":{"@defaults touch-action":{},"--tw-pinch-zoom":"pinch-zoom","touch-action":t},".touch-manipulation":{"touch-action":"manipulation"}})},userSelect:({addUtilities:i})=>{i({".select-none":{"user-select":"none"},".select-text":{"user-select":"text"},".select-all":{"user-select":"all"},".select-auto":{"user-select":"auto"}})},resize:({addUtilities:i})=>{i({".resize-none":{resize:"none"},".resize-y":{resize:"vertical"},".resize-x":{resize:"horizontal"},".resize":{resize:"both"}})},scrollSnapType:({addDefaults:i,addUtilities:e})=>{i("scroll-snap-type",{"--tw-scroll-snap-strictness":"proximity"}),e({".snap-none":{"scroll-snap-type":"none"},".snap-x":{"@defaults scroll-snap-type":{},"scroll-snap-type":"x var(--tw-scroll-snap-strictness)"},".snap-y":{"@defaults scroll-snap-type":{},"scroll-snap-type":"y var(--tw-scroll-snap-strictness)"},".snap-both":{"@defaults scroll-snap-type":{},"scroll-snap-type":"both var(--tw-scroll-snap-strictness)"},".snap-mandatory":{"--tw-scroll-snap-strictness":"mandatory"},".snap-proximity":{"--tw-scroll-snap-strictness":"proximity"}})},scrollSnapAlign:({addUtilities:i})=>{i({".snap-start":{"scroll-snap-align":"start"},".snap-end":{"scroll-snap-align":"end"},".snap-center":{"scroll-snap-align":"center"},".snap-align-none":{"scroll-snap-align":"none"}})},scrollSnapStop:({addUtilities:i})=>{i({".snap-normal":{"scroll-snap-stop":"normal"},".snap-always":{"scroll-snap-stop":"always"}})},scrollMargin:P("scrollMargin",[["scroll-m",["scroll-margin"]],[["scroll-mx",["scroll-margin-left","scroll-margin-right"]],["scroll-my",["scroll-margin-top","scroll-margin-bottom"]]],[["scroll-ms",["scroll-margin-inline-start"]],["scroll-me",["scroll-margin-inline-end"]],["scroll-mt",["scroll-margin-top"]],["scroll-mr",["scroll-margin-right"]],["scroll-mb",["scroll-margin-bottom"]],["scroll-ml",["scroll-margin-left"]]]],{supportsNegativeValues:!0}),scrollPadding:P("scrollPadding",[["scroll-p",["scroll-padding"]],[["scroll-px",["scroll-padding-left","scroll-padding-right"]],["scroll-py",["scroll-padding-top","scroll-padding-bottom"]]],[["scroll-ps",["scroll-padding-inline-start"]],["scroll-pe",["scroll-padding-inline-end"]],["scroll-pt",["scroll-padding-top"]],["scroll-pr",["scroll-padding-right"]],["scroll-pb",["scroll-padding-bottom"]],["scroll-pl",["scroll-padding-left"]]]]),listStylePosition:({addUtilities:i})=>{i({".list-inside":{"list-style-position":"inside"},".list-outside":{"list-style-position":"outside"}})},listStyleType:P("listStyleType",[["list",["listStyleType"]]]),listStyleImage:P("listStyleImage",[["list-image",["listStyleImage"]]]),appearance:({addUtilities:i})=>{i({".appearance-none":{appearance:"none"},".appearance-auto":{appearance:"auto"}})},columns:P("columns",[["columns",["columns"]]]),breakBefore:({addUtilities:i})=>{i({".break-before-auto":{"break-before":"auto"},".break-before-avoid":{"break-before":"avoid"},".break-before-all":{"break-before":"all"},".break-before-avoid-page":{"break-before":"avoid-page"},".break-before-page":{"break-before":"page"},".break-before-left":{"break-before":"left"},".break-before-right":{"break-before":"right"},".break-before-column":{"break-before":"column"}})},breakInside:({addUtilities:i})=>{i({".break-inside-auto":{"break-inside":"auto"},".break-inside-avoid":{"break-inside":"avoid"},".break-inside-avoid-page":{"break-inside":"avoid-page"},".break-inside-avoid-column":{"break-inside":"avoid-column"}})},breakAfter:({addUtilities:i})=>{i({".break-after-auto":{"break-after":"auto"},".break-after-avoid":{"break-after":"avoid"},".break-after-all":{"break-after":"all"},".break-after-avoid-page":{"break-after":"avoid-page"},".break-after-page":{"break-after":"page"},".break-after-left":{"break-after":"left"},".break-after-right":{"break-after":"right"},".break-after-column":{"break-after":"column"}})},gridAutoColumns:P("gridAutoColumns",[["auto-cols",["gridAutoColumns"]]]),gridAutoFlow:({addUtilities:i})=>{i({".grid-flow-row":{gridAutoFlow:"row"},".grid-flow-col":{gridAutoFlow:"column"},".grid-flow-dense":{gridAutoFlow:"dense"},".grid-flow-row-dense":{gridAutoFlow:"row dense"},".grid-flow-col-dense":{gridAutoFlow:"column dense"}})},gridAutoRows:P("gridAutoRows",[["auto-rows",["gridAutoRows"]]]),gridTemplateColumns:P("gridTemplateColumns",[["grid-cols",["gridTemplateColumns"]]]),gridTemplateRows:P("gridTemplateRows",[["grid-rows",["gridTemplateRows"]]]),flexDirection:({addUtilities:i})=>{i({".flex-row":{"flex-direction":"row"},".flex-row-reverse":{"flex-direction":"row-reverse"},".flex-col":{"flex-direction":"column"},".flex-col-reverse":{"flex-direction":"column-reverse"}})},flexWrap:({addUtilities:i})=>{i({".flex-wrap":{"flex-wrap":"wrap"},".flex-wrap-reverse":{"flex-wrap":"wrap-reverse"},".flex-nowrap":{"flex-wrap":"nowrap"}})},placeContent:({addUtilities:i})=>{i({".place-content-center":{"place-content":"center"},".place-content-start":{"place-content":"start"},".place-content-end":{"place-content":"end"},".place-content-between":{"place-content":"space-between"},".place-content-around":{"place-content":"space-around"},".place-content-evenly":{"place-content":"space-evenly"},".place-content-baseline":{"place-content":"baseline"},".place-content-stretch":{"place-content":"stretch"}})},placeItems:({addUtilities:i})=>{i({".place-items-start":{"place-items":"start"},".place-items-end":{"place-items":"end"},".place-items-center":{"place-items":"center"},".place-items-baseline":{"place-items":"baseline"},".place-items-stretch":{"place-items":"stretch"}})},alignContent:({addUtilities:i})=>{i({".content-normal":{"align-content":"normal"},".content-center":{"align-content":"center"},".content-start":{"align-content":"flex-start"},".content-end":{"align-content":"flex-end"},".content-between":{"align-content":"space-between"},".content-around":{"align-content":"space-around"},".content-evenly":{"align-content":"space-evenly"},".content-baseline":{"align-content":"baseline"},".content-stretch":{"align-content":"stretch"}})},alignItems:({addUtilities:i})=>{i({".items-start":{"align-items":"flex-start"},".items-end":{"align-items":"flex-end"},".items-center":{"align-items":"center"},".items-baseline":{"align-items":"baseline"},".items-stretch":{"align-items":"stretch"}})},justifyContent:({addUtilities:i})=>{i({".justify-normal":{"justify-content":"normal"},".justify-start":{"justify-content":"flex-start"},".justify-end":{"justify-content":"flex-end"},".justify-center":{"justify-content":"center"},".justify-between":{"justify-content":"space-between"},".justify-around":{"justify-content":"space-around"},".justify-evenly":{"justify-content":"space-evenly"},".justify-stretch":{"justify-content":"stretch"}})},justifyItems:({addUtilities:i})=>{i({".justify-items-start":{"justify-items":"start"},".justify-items-end":{"justify-items":"end"},".justify-items-center":{"justify-items":"center"},".justify-items-stretch":{"justify-items":"stretch"}})},gap:P("gap",[["gap",["gap"]],[["gap-x",["columnGap"]],["gap-y",["rowGap"]]]]),space:({matchUtilities:i,addUtilities:e,theme:t})=>{i({"space-x":r=>(r=r==="0"?"0px":r,{"& > :not([hidden]) ~ :not([hidden])":{"--tw-space-x-reverse":"0","margin-right":`calc(${r} * var(--tw-space-x-reverse))`,"margin-left":`calc(${r} * calc(1 - var(--tw-space-x-reverse)))`}}),"space-y":r=>(r=r==="0"?"0px":r,{"& > :not([hidden]) ~ :not([hidden])":{"--tw-space-y-reverse":"0","margin-top":`calc(${r} * calc(1 - var(--tw-space-y-reverse)))`,"margin-bottom":`calc(${r} * var(--tw-space-y-reverse))`}})},{values:t("space"),supportsNegativeValues:!0}),e({".space-y-reverse > :not([hidden]) ~ :not([hidden])":{"--tw-space-y-reverse":"1"},".space-x-reverse > :not([hidden]) ~ :not([hidden])":{"--tw-space-x-reverse":"1"}})},divideWidth:({matchUtilities:i,addUtilities:e,theme:t})=>{i({"divide-x":r=>(r=r==="0"?"0px":r,{"& > :not([hidden]) ~ :not([hidden])":{"@defaults border-width":{},"--tw-divide-x-reverse":"0","border-right-width":`calc(${r} * var(--tw-divide-x-reverse))`,"border-left-width":`calc(${r} * calc(1 - var(--tw-divide-x-reverse)))`}}),"divide-y":r=>(r=r==="0"?"0px":r,{"& > :not([hidden]) ~ :not([hidden])":{"@defaults border-width":{},"--tw-divide-y-reverse":"0","border-top-width":`calc(${r} * calc(1 - var(--tw-divide-y-reverse)))`,"border-bottom-width":`calc(${r} * var(--tw-divide-y-reverse))`}})},{values:t("divideWidth"),type:["line-width","length","any"]}),e({".divide-y-reverse > :not([hidden]) ~ :not([hidden])":{"@defaults border-width":{},"--tw-divide-y-reverse":"1"},".divide-x-reverse > :not([hidden]) ~ :not([hidden])":{"@defaults border-width":{},"--tw-divide-x-reverse":"1"}})},divideStyle:({addUtilities:i})=>{i({".divide-solid > :not([hidden]) ~ :not([hidden])":{"border-style":"solid"},".divide-dashed > :not([hidden]) ~ :not([hidden])":{"border-style":"dashed"},".divide-dotted > :not([hidden]) ~ :not([hidden])":{"border-style":"dotted"},".divide-double > :not([hidden]) ~ :not([hidden])":{"border-style":"double"},".divide-none > :not([hidden]) ~ :not([hidden])":{"border-style":"none"}})},divideColor:({matchUtilities:i,theme:e,corePlugins:t})=>{i({divide:r=>t("divideOpacity")?{["& > :not([hidden]) ~ :not([hidden])"]:se({color:r,property:"border-color",variable:"--tw-divide-opacity"})}:{["& > :not([hidden]) ~ :not([hidden])"]:{"border-color":N(r)}}},{values:(({DEFAULT:r,...n})=>n)(re(e("divideColor"))),type:["color","any"]})},divideOpacity:({matchUtilities:i,theme:e})=>{i({"divide-opacity":t=>({["& > :not([hidden]) ~ :not([hidden])"]:{"--tw-divide-opacity":t}})},{values:e("divideOpacity")})},placeSelf:({addUtilities:i})=>{i({".place-self-auto":{"place-self":"auto"},".place-self-start":{"place-self":"start"},".place-self-end":{"place-self":"end"},".place-self-center":{"place-self":"center"},".place-self-stretch":{"place-self":"stretch"}})},alignSelf:({addUtilities:i})=>{i({".self-auto":{"align-self":"auto"},".self-start":{"align-self":"flex-start"},".self-end":{"align-self":"flex-end"},".self-center":{"align-self":"center"},".self-stretch":{"align-self":"stretch"},".self-baseline":{"align-self":"baseline"}})},justifySelf:({addUtilities:i})=>{i({".justify-self-auto":{"justify-self":"auto"},".justify-self-start":{"justify-self":"start"},".justify-self-end":{"justify-self":"end"},".justify-self-center":{"justify-self":"center"},".justify-self-stretch":{"justify-self":"stretch"}})},overflow:({addUtilities:i})=>{i({".overflow-auto":{overflow:"auto"},".overflow-hidden":{overflow:"hidden"},".overflow-clip":{overflow:"clip"},".overflow-visible":{overflow:"visible"},".overflow-scroll":{overflow:"scroll"},".overflow-x-auto":{"overflow-x":"auto"},".overflow-y-auto":{"overflow-y":"auto"},".overflow-x-hidden":{"overflow-x":"hidden"},".overflow-y-hidden":{"overflow-y":"hidden"},".overflow-x-clip":{"overflow-x":"clip"},".overflow-y-clip":{"overflow-y":"clip"},".overflow-x-visible":{"overflow-x":"visible"},".overflow-y-visible":{"overflow-y":"visible"},".overflow-x-scroll":{"overflow-x":"scroll"},".overflow-y-scroll":{"overflow-y":"scroll"}})},overscrollBehavior:({addUtilities:i})=>{i({".overscroll-auto":{"overscroll-behavior":"auto"},".overscroll-contain":{"overscroll-behavior":"contain"},".overscroll-none":{"overscroll-behavior":"none"},".overscroll-y-auto":{"overscroll-behavior-y":"auto"},".overscroll-y-contain":{"overscroll-behavior-y":"contain"},".overscroll-y-none":{"overscroll-behavior-y":"none"},".overscroll-x-auto":{"overscroll-behavior-x":"auto"},".overscroll-x-contain":{"overscroll-behavior-x":"contain"},".overscroll-x-none":{"overscroll-behavior-x":"none"}})},scrollBehavior:({addUtilities:i})=>{i({".scroll-auto":{"scroll-behavior":"auto"},".scroll-smooth":{"scroll-behavior":"smooth"}})},textOverflow:({addUtilities:i})=>{i({".truncate":{overflow:"hidden","text-overflow":"ellipsis","white-space":"nowrap"},".overflow-ellipsis":{"text-overflow":"ellipsis"},".text-ellipsis":{"text-overflow":"ellipsis"},".text-clip":{"text-overflow":"clip"}})},hyphens:({addUtilities:i})=>{i({".hyphens-none":{hyphens:"none"},".hyphens-manual":{hyphens:"manual"},".hyphens-auto":{hyphens:"auto"}})},whitespace:({addUtilities:i})=>{i({".whitespace-normal":{"white-space":"normal"},".whitespace-nowrap":{"white-space":"nowrap"},".whitespace-pre":{"white-space":"pre"},".whitespace-pre-line":{"white-space":"pre-line"},".whitespace-pre-wrap":{"white-space":"pre-wrap"},".whitespace-break-spaces":{"white-space":"break-spaces"}})},textWrap:({addUtilities:i})=>{i({".text-wrap":{"text-wrap":"wrap"},".text-nowrap":{"text-wrap":"nowrap"},".text-balance":{"text-wrap":"balance"},".text-pretty":{"text-wrap":"pretty"}})},wordBreak:({addUtilities:i})=>{i({".break-normal":{"overflow-wrap":"normal","word-break":"normal"},".break-words":{"overflow-wrap":"break-word"},".break-all":{"word-break":"break-all"},".break-keep":{"word-break":"keep-all"}})},borderRadius:P("borderRadius",[["rounded",["border-radius"]],[["rounded-s",["border-start-start-radius","border-end-start-radius"]],["rounded-e",["border-start-end-radius","border-end-end-radius"]],["rounded-t",["border-top-left-radius","border-top-right-radius"]],["rounded-r",["border-top-right-radius","border-bottom-right-radius"]],["rounded-b",["border-bottom-right-radius","border-bottom-left-radius"]],["rounded-l",["border-top-left-radius","border-bottom-left-radius"]]],[["rounded-ss",["border-start-start-radius"]],["rounded-se",["border-start-end-radius"]],["rounded-ee",["border-end-end-radius"]],["rounded-es",["border-end-start-radius"]],["rounded-tl",["border-top-left-radius"]],["rounded-tr",["border-top-right-radius"]],["rounded-br",["border-bottom-right-radius"]],["rounded-bl",["border-bottom-left-radius"]]]]),borderWidth:P("borderWidth",[["border",[["@defaults border-width",{}],"border-width"]],[["border-x",[["@defaults border-width",{}],"border-left-width","border-right-width"]],["border-y",[["@defaults border-width",{}],"border-top-width","border-bottom-width"]]],[["border-s",[["@defaults border-width",{}],"border-inline-start-width"]],["border-e",[["@defaults border-width",{}],"border-inline-end-width"]],["border-t",[["@defaults border-width",{}],"border-top-width"]],["border-r",[["@defaults border-width",{}],"border-right-width"]],["border-b",[["@defaults border-width",{}],"border-bottom-width"]],["border-l",[["@defaults border-width",{}],"border-left-width"]]]],{type:["line-width","length"]}),borderStyle:({addUtilities:i})=>{i({".border-solid":{"border-style":"solid"},".border-dashed":{"border-style":"dashed"},".border-dotted":{"border-style":"dotted"},".border-double":{"border-style":"double"},".border-hidden":{"border-style":"hidden"},".border-none":{"border-style":"none"}})},borderColor:({matchUtilities:i,theme:e,corePlugins:t})=>{i({border:r=>t("borderOpacity")?se({color:r,property:"border-color",variable:"--tw-border-opacity"}):{"border-color":N(r)}},{values:(({DEFAULT:r,...n})=>n)(re(e("borderColor"))),type:["color","any"]}),i({"border-x":r=>t("borderOpacity")?se({color:r,property:["border-left-color","border-right-color"],variable:"--tw-border-opacity"}):{"border-left-color":N(r),"border-right-color":N(r)},"border-y":r=>t("borderOpacity")?se({color:r,property:["border-top-color","border-bottom-color"],variable:"--tw-border-opacity"}):{"border-top-color":N(r),"border-bottom-color":N(r)}},{values:(({DEFAULT:r,...n})=>n)(re(e("borderColor"))),type:["color","any"]}),i({"border-s":r=>t("borderOpacity")?se({color:r,property:"border-inline-start-color",variable:"--tw-border-opacity"}):{"border-inline-start-color":N(r)},"border-e":r=>t("borderOpacity")?se({color:r,property:"border-inline-end-color",variable:"--tw-border-opacity"}):{"border-inline-end-color":N(r)},"border-t":r=>t("borderOpacity")?se({color:r,property:"border-top-color",variable:"--tw-border-opacity"}):{"border-top-color":N(r)},"border-r":r=>t("borderOpacity")?se({color:r,property:"border-right-color",variable:"--tw-border-opacity"}):{"border-right-color":N(r)},"border-b":r=>t("borderOpacity")?se({color:r,property:"border-bottom-color",variable:"--tw-border-opacity"}):{"border-bottom-color":N(r)},"border-l":r=>t("borderOpacity")?se({color:r,property:"border-left-color",variable:"--tw-border-opacity"}):{"border-left-color":N(r)}},{values:(({DEFAULT:r,...n})=>n)(re(e("borderColor"))),type:["color","any"]})},borderOpacity:P("borderOpacity",[["border-opacity",["--tw-border-opacity"]]]),backgroundColor:({matchUtilities:i,theme:e,corePlugins:t})=>{i({bg:r=>t("backgroundOpacity")?se({color:r,property:"background-color",variable:"--tw-bg-opacity"}):{"background-color":N(r)}},{values:re(e("backgroundColor")),type:["color","any"]})},backgroundOpacity:P("backgroundOpacity",[["bg-opacity",["--tw-bg-opacity"]]]),backgroundImage:P("backgroundImage",[["bg",["background-image"]]],{type:["lookup","image","url"]}),gradientColorStops:(()=>{function i(e){return Ie(e,0,"rgb(255 255 255 / 0)")}return function({matchUtilities:e,theme:t,addDefaults:r}){r("gradient-color-stops",{"--tw-gradient-from-position":" ","--tw-gradient-via-position":" ","--tw-gradient-to-position":" "});let n={values:re(t("gradientColorStops")),type:["color","any"]},a={values:t("gradientColorStopPositions"),type:["length","percentage"]};e({from:s=>{let o=i(s);return{"@defaults gradient-color-stops":{},"--tw-gradient-from":`${N(s)} var(--tw-gradient-from-position)`,"--tw-gradient-to":`${o} var(--tw-gradient-to-position)`,"--tw-gradient-stops":"var(--tw-gradient-from), var(--tw-gradient-to)"}}},n),e({from:s=>({"--tw-gradient-from-position":s})},a),e({via:s=>{let o=i(s);return{"@defaults gradient-color-stops":{},"--tw-gradient-to":`${o} var(--tw-gradient-to-position)`,"--tw-gradient-stops":`var(--tw-gradient-from), ${N(s)} var(--tw-gradient-via-position), var(--tw-gradient-to)`}}},n),e({via:s=>({"--tw-gradient-via-position":s})},a),e({to:s=>({"@defaults gradient-color-stops":{},"--tw-gradient-to":`${N(s)} var(--tw-gradient-to-position)`})},n),e({to:s=>({"--tw-gradient-to-position":s})},a)}})(),boxDecorationBreak:({addUtilities:i})=>{i({".decoration-slice":{"box-decoration-break":"slice"},".decoration-clone":{"box-decoration-break":"clone"},".box-decoration-slice":{"box-decoration-break":"slice"},".box-decoration-clone":{"box-decoration-break":"clone"}})},backgroundSize:P("backgroundSize",[["bg",["background-size"]]],{type:["lookup","length","percentage","size"]}),backgroundAttachment:({addUtilities:i})=>{i({".bg-fixed":{"background-attachment":"fixed"},".bg-local":{"background-attachment":"local"},".bg-scroll":{"background-attachment":"scroll"}})},backgroundClip:({addUtilities:i})=>{i({".bg-clip-border":{"background-clip":"border-box"},".bg-clip-padding":{"background-clip":"padding-box"},".bg-clip-content":{"background-clip":"content-box"},".bg-clip-text":{"background-clip":"text"}})},backgroundPosition:P("backgroundPosition",[["bg",["background-position"]]],{type:["lookup",["position",{preferOnConflict:!0}]]}),backgroundRepeat:({addUtilities:i})=>{i({".bg-repeat":{"background-repeat":"repeat"},".bg-no-repeat":{"background-repeat":"no-repeat"},".bg-repeat-x":{"background-repeat":"repeat-x"},".bg-repeat-y":{"background-repeat":"repeat-y"},".bg-repeat-round":{"background-repeat":"round"},".bg-repeat-space":{"background-repeat":"space"}})},backgroundOrigin:({addUtilities:i})=>{i({".bg-origin-border":{"background-origin":"border-box"},".bg-origin-padding":{"background-origin":"padding-box"},".bg-origin-content":{"background-origin":"content-box"}})},fill:({matchUtilities:i,theme:e})=>{i({fill:t=>({fill:N(t)})},{values:re(e("fill")),type:["color","any"]})},stroke:({matchUtilities:i,theme:e})=>{i({stroke:t=>({stroke:N(t)})},{values:re(e("stroke")),type:["color","url","any"]})},strokeWidth:P("strokeWidth",[["stroke",["stroke-width"]]],{type:["length","number","percentage"]}),objectFit:({addUtilities:i})=>{i({".object-contain":{"object-fit":"contain"},".object-cover":{"object-fit":"cover"},".object-fill":{"object-fit":"fill"},".object-none":{"object-fit":"none"},".object-scale-down":{"object-fit":"scale-down"}})},objectPosition:P("objectPosition",[["object",["object-position"]]]),padding:P("padding",[["p",["padding"]],[["px",["padding-left","padding-right"]],["py",["padding-top","padding-bottom"]]],[["ps",["padding-inline-start"]],["pe",["padding-inline-end"]],["pt",["padding-top"]],["pr",["padding-right"]],["pb",["padding-bottom"]],["pl",["padding-left"]]]]),textAlign:({addUtilities:i})=>{i({".text-left":{"text-align":"left"},".text-center":{"text-align":"center"},".text-right":{"text-align":"right"},".text-justify":{"text-align":"justify"},".text-start":{"text-align":"start"},".text-end":{"text-align":"end"}})},textIndent:P("textIndent",[["indent",["text-indent"]]],{supportsNegativeValues:!0}),verticalAlign:({addUtilities:i,matchUtilities:e})=>{i({".align-baseline":{"vertical-align":"baseline"},".align-top":{"vertical-align":"top"},".align-middle":{"vertical-align":"middle"},".align-bottom":{"vertical-align":"bottom"},".align-text-top":{"vertical-align":"text-top"},".align-text-bottom":{"vertical-align":"text-bottom"},".align-sub":{"vertical-align":"sub"},".align-super":{"vertical-align":"super"}}),e({align:t=>({"vertical-align":t})})},fontFamily:({matchUtilities:i,theme:e})=>{i({font:t=>{let[r,n={}]=Array.isArray(t)&&ie(t[1])?t:[t],{fontFeatureSettings:a,fontVariationSettings:s}=n;return{"font-family":Array.isArray(r)?r.join(", "):r,...a===void 0?{}:{"font-feature-settings":a},...s===void 0?{}:{"font-variation-settings":s}}}},{values:e("fontFamily"),type:["lookup","generic-name","family-name"]})},fontSize:({matchUtilities:i,theme:e})=>{i({text:(t,{modifier:r})=>{let[n,a]=Array.isArray(t)?t:[t];if(r)return{"font-size":n,"line-height":r};let{lineHeight:s,letterSpacing:o,fontWeight:u}=ie(a)?a:{lineHeight:a};return{"font-size":n,...s===void 0?{}:{"line-height":s},...o===void 0?{}:{"letter-spacing":o},...u===void 0?{}:{"font-weight":u}}}},{values:e("fontSize"),modifiers:e("lineHeight"),type:["absolute-size","relative-size","length","percentage"]})},fontWeight:P("fontWeight",[["font",["fontWeight"]]],{type:["lookup","number","any"]}),textTransform:({addUtilities:i})=>{i({".uppercase":{"text-transform":"uppercase"},".lowercase":{"text-transform":"lowercase"},".capitalize":{"text-transform":"capitalize"},".normal-case":{"text-transform":"none"}})},fontStyle:({addUtilities:i})=>{i({".italic":{"font-style":"italic"},".not-italic":{"font-style":"normal"}})},fontVariantNumeric:({addDefaults:i,addUtilities:e})=>{let t="var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)";i("font-variant-numeric",{"--tw-ordinal":" ","--tw-slashed-zero":" ","--tw-numeric-figure":" ","--tw-numeric-spacing":" ","--tw-numeric-fraction":" "}),e({".normal-nums":{"font-variant-numeric":"normal"},".ordinal":{"@defaults font-variant-numeric":{},"--tw-ordinal":"ordinal","font-variant-numeric":t},".slashed-zero":{"@defaults font-variant-numeric":{},"--tw-slashed-zero":"slashed-zero","font-variant-numeric":t},".lining-nums":{"@defaults font-variant-numeric":{},"--tw-numeric-figure":"lining-nums","font-variant-numeric":t},".oldstyle-nums":{"@defaults font-variant-numeric":{},"--tw-numeric-figure":"oldstyle-nums","font-variant-numeric":t},".proportional-nums":{"@defaults font-variant-numeric":{},"--tw-numeric-spacing":"proportional-nums","font-variant-numeric":t},".tabular-nums":{"@defaults font-variant-numeric":{},"--tw-numeric-spacing":"tabular-nums","font-variant-numeric":t},".diagonal-fractions":{"@defaults font-variant-numeric":{},"--tw-numeric-fraction":"diagonal-fractions","font-variant-numeric":t},".stacked-fractions":{"@defaults font-variant-numeric":{},"--tw-numeric-fraction":"stacked-fractions","font-variant-numeric":t}})},lineHeight:P("lineHeight",[["leading",["lineHeight"]]]),letterSpacing:P("letterSpacing",[["tracking",["letterSpacing"]]],{supportsNegativeValues:!0}),textColor:({matchUtilities:i,theme:e,corePlugins:t})=>{i({text:r=>t("textOpacity")?se({color:r,property:"color",variable:"--tw-text-opacity"}):{color:N(r)}},{values:re(e("textColor")),type:["color","any"]})},textOpacity:P("textOpacity",[["text-opacity",["--tw-text-opacity"]]]),textDecoration:({addUtilities:i})=>{i({".underline":{"text-decoration-line":"underline"},".overline":{"text-decoration-line":"overline"},".line-through":{"text-decoration-line":"line-through"},".no-underline":{"text-decoration-line":"none"}})},textDecorationColor:({matchUtilities:i,theme:e})=>{i({decoration:t=>({"text-decoration-color":N(t)})},{values:re(e("textDecorationColor")),type:["color","any"]})},textDecorationStyle:({addUtilities:i})=>{i({".decoration-solid":{"text-decoration-style":"solid"},".decoration-double":{"text-decoration-style":"double"},".decoration-dotted":{"text-decoration-style":"dotted"},".decoration-dashed":{"text-decoration-style":"dashed"},".decoration-wavy":{"text-decoration-style":"wavy"}})},textDecorationThickness:P("textDecorationThickness",[["decoration",["text-decoration-thickness"]]],{type:["length","percentage"]}),textUnderlineOffset:P("textUnderlineOffset",[["underline-offset",["text-underline-offset"]]],{type:["length","percentage","any"]}),fontSmoothing:({addUtilities:i})=>{i({".antialiased":{"-webkit-font-smoothing":"antialiased","-moz-osx-font-smoothing":"grayscale"},".subpixel-antialiased":{"-webkit-font-smoothing":"auto","-moz-osx-font-smoothing":"auto"}})},placeholderColor:({matchUtilities:i,theme:e,corePlugins:t})=>{i({placeholder:r=>t("placeholderOpacity")?{"&::placeholder":se({color:r,property:"color",variable:"--tw-placeholder-opacity"})}:{"&::placeholder":{color:N(r)}}},{values:re(e("placeholderColor")),type:["color","any"]})},placeholderOpacity:({matchUtilities:i,theme:e})=>{i({"placeholder-opacity":t=>({["&::placeholder"]:{"--tw-placeholder-opacity":t}})},{values:e("placeholderOpacity")})},caretColor:({matchUtilities:i,theme:e})=>{i({caret:t=>({"caret-color":N(t)})},{values:re(e("caretColor")),type:["color","any"]})},accentColor:({matchUtilities:i,theme:e})=>{i({accent:t=>({"accent-color":N(t)})},{values:re(e("accentColor")),type:["color","any"]})},opacity:P("opacity",[["opacity",["opacity"]]]),backgroundBlendMode:({addUtilities:i})=>{i({".bg-blend-normal":{"background-blend-mode":"normal"},".bg-blend-multiply":{"background-blend-mode":"multiply"},".bg-blend-screen":{"background-blend-mode":"screen"},".bg-blend-overlay":{"background-blend-mode":"overlay"},".bg-blend-darken":{"background-blend-mode":"darken"},".bg-blend-lighten":{"background-blend-mode":"lighten"},".bg-blend-color-dodge":{"background-blend-mode":"color-dodge"},".bg-blend-color-burn":{"background-blend-mode":"color-burn"},".bg-blend-hard-light":{"background-blend-mode":"hard-light"},".bg-blend-soft-light":{"background-blend-mode":"soft-light"},".bg-blend-difference":{"background-blend-mode":"difference"},".bg-blend-exclusion":{"background-blend-mode":"exclusion"},".bg-blend-hue":{"background-blend-mode":"hue"},".bg-blend-saturation":{"background-blend-mode":"saturation"},".bg-blend-color":{"background-blend-mode":"color"},".bg-blend-luminosity":{"background-blend-mode":"luminosity"}})},mixBlendMode:({addUtilities:i})=>{i({".mix-blend-normal":{"mix-blend-mode":"normal"},".mix-blend-multiply":{"mix-blend-mode":"multiply"},".mix-blend-screen":{"mix-blend-mode":"screen"},".mix-blend-overlay":{"mix-blend-mode":"overlay"},".mix-blend-darken":{"mix-blend-mode":"darken"},".mix-blend-lighten":{"mix-blend-mode":"lighten"},".mix-blend-color-dodge":{"mix-blend-mode":"color-dodge"},".mix-blend-color-burn":{"mix-blend-mode":"color-burn"},".mix-blend-hard-light":{"mix-blend-mode":"hard-light"},".mix-blend-soft-light":{"mix-blend-mode":"soft-light"},".mix-blend-difference":{"mix-blend-mode":"difference"},".mix-blend-exclusion":{"mix-blend-mode":"exclusion"},".mix-blend-hue":{"mix-blend-mode":"hue"},".mix-blend-saturation":{"mix-blend-mode":"saturation"},".mix-blend-color":{"mix-blend-mode":"color"},".mix-blend-luminosity":{"mix-blend-mode":"luminosity"},".mix-blend-plus-darker":{"mix-blend-mode":"plus-darker"},".mix-blend-plus-lighter":{"mix-blend-mode":"plus-lighter"}})},boxShadow:(()=>{let i=Ge("boxShadow"),e=["var(--tw-ring-offset-shadow, 0 0 #0000)","var(--tw-ring-shadow, 0 0 #0000)","var(--tw-shadow)"].join(", ");return function({matchUtilities:t,addDefaults:r,theme:n}){r("box-shadow",{"--tw-ring-offset-shadow":"0 0 #0000","--tw-ring-shadow":"0 0 #0000","--tw-shadow":"0 0 #0000","--tw-shadow-colored":"0 0 #0000"}),t({shadow:a=>{a=i(a);let s=yi(a);for(let o of s)!o.valid||(o.color="var(--tw-shadow-color)");return{"@defaults box-shadow":{},"--tw-shadow":a==="none"?"0 0 #0000":a,"--tw-shadow-colored":a==="none"?"0 0 #0000":Tu(s),"box-shadow":e}}},{values:n("boxShadow"),type:["shadow"]})}})(),boxShadowColor:({matchUtilities:i,theme:e})=>{i({shadow:t=>({"--tw-shadow-color":N(t),"--tw-shadow":"var(--tw-shadow-colored)"})},{values:re(e("boxShadowColor")),type:["color","any"]})},outlineStyle:({addUtilities:i})=>{i({".outline-none":{outline:"2px solid transparent","outline-offset":"2px"},".outline":{"outline-style":"solid"},".outline-dashed":{"outline-style":"dashed"},".outline-dotted":{"outline-style":"dotted"},".outline-double":{"outline-style":"double"}})},outlineWidth:P("outlineWidth",[["outline",["outline-width"]]],{type:["length","number","percentage"]}),outlineOffset:P("outlineOffset",[["outline-offset",["outline-offset"]]],{type:["length","number","percentage","any"],supportsNegativeValues:!0}),outlineColor:({matchUtilities:i,theme:e})=>{i({outline:t=>({"outline-color":N(t)})},{values:re(e("outlineColor")),type:["color","any"]})},ringWidth:({matchUtilities:i,addDefaults:e,addUtilities:t,theme:r,config:n})=>{let a=(()=>{if(K(n(),"respectDefaultRingColorOpacity"))return r("ringColor.DEFAULT");let s=r("ringOpacity.DEFAULT","0.5");return r("ringColor")?.DEFAULT?Ie(r("ringColor")?.DEFAULT,s,`rgb(147 197 253 / ${s})`):`rgb(147 197 253 / ${s})`})();e("ring-width",{"--tw-ring-inset":" ","--tw-ring-offset-width":r("ringOffsetWidth.DEFAULT","0px"),"--tw-ring-offset-color":r("ringOffsetColor.DEFAULT","#fff"),"--tw-ring-color":a,"--tw-ring-offset-shadow":"0 0 #0000","--tw-ring-shadow":"0 0 #0000","--tw-shadow":"0 0 #0000","--tw-shadow-colored":"0 0 #0000"}),i({ring:s=>({"@defaults ring-width":{},"--tw-ring-offset-shadow":"var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)","--tw-ring-shadow":`var(--tw-ring-inset) 0 0 0 calc(${s} + var(--tw-ring-offset-width)) var(--tw-ring-color)`,"box-shadow":["var(--tw-ring-offset-shadow)","var(--tw-ring-shadow)","var(--tw-shadow, 0 0 #0000)"].join(", ")})},{values:r("ringWidth"),type:"length"}),t({".ring-inset":{"@defaults ring-width":{},"--tw-ring-inset":"inset"}})},ringColor:({matchUtilities:i,theme:e,corePlugins:t})=>{i({ring:r=>t("ringOpacity")?se({color:r,property:"--tw-ring-color",variable:"--tw-ring-opacity"}):{"--tw-ring-color":N(r)}},{values:Object.fromEntries(Object.entries(re(e("ringColor"))).filter(([r])=>r!=="DEFAULT")),type:["color","any"]})},ringOpacity:i=>{let{config:e}=i;return P("ringOpacity",[["ring-opacity",["--tw-ring-opacity"]]],{filterDefault:!K(e(),"respectDefaultRingColorOpacity")})(i)},ringOffsetWidth:P("ringOffsetWidth",[["ring-offset",["--tw-ring-offset-width"]]],{type:"length"}),ringOffsetColor:({matchUtilities:i,theme:e})=>{i({"ring-offset":t=>({"--tw-ring-offset-color":N(t)})},{values:re(e("ringOffsetColor")),type:["color","any"]})},blur:({matchUtilities:i,theme:e})=>{i({blur:t=>({"--tw-blur":`blur(${t})`,"@defaults filter":{},filter:Be})},{values:e("blur")})},brightness:({matchUtilities:i,theme:e})=>{i({brightness:t=>({"--tw-brightness":`brightness(${t})`,"@defaults filter":{},filter:Be})},{values:e("brightness")})},contrast:({matchUtilities:i,theme:e})=>{i({contrast:t=>({"--tw-contrast":`contrast(${t})`,"@defaults filter":{},filter:Be})},{values:e("contrast")})},dropShadow:({matchUtilities:i,theme:e})=>{i({"drop-shadow":t=>({"--tw-drop-shadow":Array.isArray(t)?t.map(r=>`drop-shadow(${r})`).join(" "):`drop-shadow(${t})`,"@defaults filter":{},filter:Be})},{values:e("dropShadow")})},grayscale:({matchUtilities:i,theme:e})=>{i({grayscale:t=>({"--tw-grayscale":`grayscale(${t})`,"@defaults filter":{},filter:Be})},{values:e("grayscale")})},hueRotate:({matchUtilities:i,theme:e})=>{i({"hue-rotate":t=>({"--tw-hue-rotate":`hue-rotate(${t})`,"@defaults filter":{},filter:Be})},{values:e("hueRotate"),supportsNegativeValues:!0})},invert:({matchUtilities:i,theme:e})=>{i({invert:t=>({"--tw-invert":`invert(${t})`,"@defaults filter":{},filter:Be})},{values:e("invert")})},saturate:({matchUtilities:i,theme:e})=>{i({saturate:t=>({"--tw-saturate":`saturate(${t})`,"@defaults filter":{},filter:Be})},{values:e("saturate")})},sepia:({matchUtilities:i,theme:e})=>{i({sepia:t=>({"--tw-sepia":`sepia(${t})`,"@defaults filter":{},filter:Be})},{values:e("sepia")})},filter:({addDefaults:i,addUtilities:e})=>{i("filter",{"--tw-blur":" ","--tw-brightness":" ","--tw-contrast":" ","--tw-grayscale":" ","--tw-hue-rotate":" ","--tw-invert":" ","--tw-saturate":" ","--tw-sepia":" ","--tw-drop-shadow":" "}),e({".filter":{"@defaults filter":{},filter:Be},".filter-none":{filter:"none"}})},backdropBlur:({matchUtilities:i,theme:e})=>{i({"backdrop-blur":t=>({"--tw-backdrop-blur":`blur(${t})`,"@defaults backdrop-filter":{},"backdrop-filter":Fe})},{values:e("backdropBlur")})},backdropBrightness:({matchUtilities:i,theme:e})=>{i({"backdrop-brightness":t=>({"--tw-backdrop-brightness":`brightness(${t})`,"@defaults backdrop-filter":{},"backdrop-filter":Fe})},{values:e("backdropBrightness")})},backdropContrast:({matchUtilities:i,theme:e})=>{i({"backdrop-contrast":t=>({"--tw-backdrop-contrast":`contrast(${t})`,"@defaults backdrop-filter":{},"backdrop-filter":Fe})},{values:e("backdropContrast")})},backdropGrayscale:({matchUtilities:i,theme:e})=>{i({"backdrop-grayscale":t=>({"--tw-backdrop-grayscale":`grayscale(${t})`,"@defaults backdrop-filter":{},"backdrop-filter":Fe})},{values:e("backdropGrayscale")})},backdropHueRotate:({matchUtilities:i,theme:e})=>{i({"backdrop-hue-rotate":t=>({"--tw-backdrop-hue-rotate":`hue-rotate(${t})`,"@defaults backdrop-filter":{},"backdrop-filter":Fe})},{values:e("backdropHueRotate"),supportsNegativeValues:!0})},backdropInvert:({matchUtilities:i,theme:e})=>{i({"backdrop-invert":t=>({"--tw-backdrop-invert":`invert(${t})`,"@defaults backdrop-filter":{},"backdrop-filter":Fe})},{values:e("backdropInvert")})},backdropOpacity:({matchUtilities:i,theme:e})=>{i({"backdrop-opacity":t=>({"--tw-backdrop-opacity":`opacity(${t})`,"@defaults backdrop-filter":{},"backdrop-filter":Fe})},{values:e("backdropOpacity")})},backdropSaturate:({matchUtilities:i,theme:e})=>{i({"backdrop-saturate":t=>({"--tw-backdrop-saturate":`saturate(${t})`,"@defaults backdrop-filter":{},"backdrop-filter":Fe})},{values:e("backdropSaturate")})},backdropSepia:({matchUtilities:i,theme:e})=>{i({"backdrop-sepia":t=>({"--tw-backdrop-sepia":`sepia(${t})`,"@defaults backdrop-filter":{},"backdrop-filter":Fe})},{values:e("backdropSepia")})},backdropFilter:({addDefaults:i,addUtilities:e})=>{i("backdrop-filter",{"--tw-backdrop-blur":" ","--tw-backdrop-brightness":" ","--tw-backdrop-contrast":" ","--tw-backdrop-grayscale":" ","--tw-backdrop-hue-rotate":" ","--tw-backdrop-invert":" ","--tw-backdrop-opacity":" ","--tw-backdrop-saturate":" ","--tw-backdrop-sepia":" "}),e({".backdrop-filter":{"@defaults backdrop-filter":{},"backdrop-filter":Fe},".backdrop-filter-none":{"backdrop-filter":"none"}})},transitionProperty:({matchUtilities:i,theme:e})=>{let t=e("transitionTimingFunction.DEFAULT"),r=e("transitionDuration.DEFAULT");i({transition:n=>({"transition-property":n,...n==="none"?{}:{"transition-timing-function":t,"transition-duration":r}})},{values:e("transitionProperty")})},transitionDelay:P("transitionDelay",[["delay",["transitionDelay"]]]),transitionDuration:P("transitionDuration",[["duration",["transitionDuration"]]],{filterDefault:!0}),transitionTimingFunction:P("transitionTimingFunction",[["ease",["transitionTimingFunction"]]],{filterDefault:!0}),willChange:P("willChange",[["will-change",["will-change"]]]),contain:({addDefaults:i,addUtilities:e})=>{let t="var(--tw-contain-size) var(--tw-contain-layout) var(--tw-contain-paint) var(--tw-contain-style)";i("contain",{"--tw-contain-size":" ","--tw-contain-layout":" ","--tw-contain-paint":" ","--tw-contain-style":" "}),e({".contain-none":{contain:"none"},".contain-content":{contain:"content"},".contain-strict":{contain:"strict"},".contain-size":{"@defaults contain":{},"--tw-contain-size":"size",contain:t},".contain-inline-size":{"@defaults contain":{},"--tw-contain-size":"inline-size",contain:t},".contain-layout":{"@defaults contain":{},"--tw-contain-layout":"layout",contain:t},".contain-paint":{"@defaults contain":{},"--tw-contain-paint":"paint",contain:t},".contain-style":{"@defaults contain":{},"--tw-contain-style":"style",contain:t}})},content:P("content",[["content",["--tw-content",["content","var(--tw-content)"]]]]),forcedColorAdjust:({addUtilities:i})=>{i({".forced-color-adjust-auto":{"forced-color-adjust":"auto"},".forced-color-adjust-none":{"forced-color-adjust":"none"}})}}});function KS(i){if(i===void 0)return!1;if(i==="true"||i==="1")return!0;if(i==="false"||i==="0")return!1;if(i==="*")return!0;let e=i.split(",").map(t=>t.split(":")[0]);return e.includes("-tailwindcss")?!1:!!e.includes("tailwindcss")}var Pe,gd,yd,gn,Ga,He,Kr,ot=C(()=>{l();Pe=typeof h!="undefined"?{NODE_ENV:"production",DEBUG:KS(h.env.DEBUG)}:{NODE_ENV:"production",DEBUG:!1},gd=new Map,yd=new Map,gn=new Map,Ga=new Map,He=new String("*"),Kr=Symbol("__NONE__")});function Lt(i){let e=[],t=!1;for(let r=0;r0)}var wd,bd,ZS,Ha=C(()=>{l();wd=new Map([["{","}"],["[","]"],["(",")"]]),bd=new Map(Array.from(wd.entries()).map(([i,e])=>[e,i])),ZS=new Set(['"',"'","`"])});function Nt(i){let[e]=vd(i);return e.forEach(([t,r])=>t.removeChild(r)),i.nodes.push(...e.map(([,t])=>t)),i}function vd(i){let e=[],t=null;for(let r of i.nodes)if(r.type==="combinator")e=e.filter(([,n])=>Qa(n).includes("jumpable")),t=null;else if(r.type==="pseudo"){eC(r)?(t=r,e.push([i,r,null])):t&&tC(r,t)?e.push([i,r,t]):t=null;for(let n of r.nodes??[]){let[a,s]=vd(n);t=s||t,e.push(...a)}}return[e,t]}function xd(i){return i.value.startsWith("::")||Ya[i.value]!==void 0}function eC(i){return xd(i)&&Qa(i).includes("terminal")}function tC(i,e){return i.type!=="pseudo"||xd(i)?!1:Qa(e).includes("actionable")}function Qa(i){return Ya[i.value]??Ya.__default__}var Ya,yn=C(()=>{l();Ya={"::after":["terminal","jumpable"],"::backdrop":["terminal","jumpable"],"::before":["terminal","jumpable"],"::cue":["terminal"],"::cue-region":["terminal"],"::first-letter":["terminal","jumpable"],"::first-line":["terminal","jumpable"],"::grammar-error":["terminal"],"::marker":["terminal","jumpable"],"::part":["terminal","actionable"],"::placeholder":["terminal","jumpable"],"::selection":["terminal","jumpable"],"::slotted":["terminal"],"::spelling-error":["terminal"],"::target-text":["terminal"],"::file-selector-button":["terminal","actionable"],"::deep":["actionable"],"::v-deep":["actionable"],"::ng-deep":["actionable"],":after":["terminal","jumpable"],":before":["terminal","jumpable"],":first-letter":["terminal","jumpable"],":first-line":["terminal","jumpable"],":where":[],":is":[],":has":[],__default__:["terminal","actionable"]}});function $t(i,{context:e,candidate:t}){let r=e?.tailwindConfig.prefix??"",n=i.map(s=>{let o=(0,Le.default)().astSync(s.format);return{...s,ast:s.respectPrefix?Bt(r,o):o}}),a=Le.default.root({nodes:[Le.default.selector({nodes:[Le.default.className({value:ce(t)})]})]});for(let{ast:s}of n)[a,s]=iC(a,s),s.walkNesting(o=>o.replaceWith(...a.nodes[0].nodes)),a=s;return a}function Sd(i){let e=[];for(;i.prev()&&i.prev().type!=="combinator";)i=i.prev();for(;i&&i.type!=="combinator";)e.push(i),i=i.next();return e}function rC(i){return i.sort((e,t)=>e.type==="tag"&&t.type==="class"?-1:e.type==="class"&&t.type==="tag"?1:e.type==="class"&&t.type==="pseudo"&&t.value.startsWith("::")?-1:e.type==="pseudo"&&e.value.startsWith("::")&&t.type==="class"?1:i.index(e)-i.index(t)),i}function Xa(i,e){let t=!1;i.walk(r=>{if(r.type==="class"&&r.value===e)return t=!0,!1}),t||i.remove()}function wn(i,e,{context:t,candidate:r,base:n}){let a=t?.tailwindConfig?.separator??":";n=n??ae(r,a).pop();let s=(0,Le.default)().astSync(i);if(s.walkClasses(f=>{f.raws&&f.value.includes(n)&&(f.raws.value=ce((0,kd.default)(f.raws.value)))}),s.each(f=>Xa(f,n)),s.length===0)return null;let o=Array.isArray(e)?$t(e,{context:t,candidate:r}):e;if(o===null)return s.toString();let u=Le.default.comment({value:"/*__simple__*/"}),c=Le.default.comment({value:"/*__simple__*/"});return s.walkClasses(f=>{if(f.value!==n)return;let d=f.parent,p=o.nodes[0].nodes;if(d.nodes.length===1){f.replaceWith(...p);return}let m=Sd(f);d.insertBefore(m[0],u),d.insertAfter(m[m.length-1],c);for(let x of p)d.insertBefore(m[0],x.clone());f.remove(),m=Sd(u);let b=d.index(u);d.nodes.splice(b,m.length,...rC(Le.default.selector({nodes:m})).nodes),u.remove(),c.remove()}),s.walkPseudos(f=>{f.value===Ja&&f.replaceWith(f.nodes)}),s.each(f=>Nt(f)),s.toString()}function iC(i,e){let t=[];return i.walkPseudos(r=>{r.value===Ja&&t.push({pseudo:r,value:r.nodes[0].toString()})}),e.walkPseudos(r=>{if(r.value!==Ja)return;let n=r.nodes[0].toString(),a=t.find(c=>c.value===n);if(!a)return;let s=[],o=r.next();for(;o&&o.type!=="combinator";)s.push(o),o=o.next();let u=o;a.pseudo.parent.insertAfter(a.pseudo,Le.default.selector({nodes:s.map(c=>c.clone())})),r.remove(),s.forEach(c=>c.remove()),u&&u.type==="combinator"&&u.remove()}),[i,e]}var Le,kd,Ja,Ka=C(()=>{l();Le=X(Me()),kd=X(Yi());Ft();un();yn();St();Ja=":merge"});function bn(i,e){let t=(0,Za.default)().astSync(i);return t.each(r=>{r.nodes[0].type==="pseudo"&&r.nodes[0].value===":is"&&r.nodes.every(a=>a.type!=="combinator")||(r.nodes=[Za.default.pseudo({value:":is",nodes:[r.clone()]})]),Nt(r)}),`${e} ${t.toString()}`}var Za,eo=C(()=>{l();Za=X(Me());yn()});function to(i){return nC.transformSync(i)}function*sC(i){let e=1/0;for(;e>=0;){let t,r=!1;if(e===1/0&&i.endsWith("]")){let s=i.indexOf("[");i[s-1]==="-"?t=s-1:i[s-1]==="/"?(t=s-1,r=!0):t=-1}else e===1/0&&i.includes("/")?(t=i.lastIndexOf("/"),r=!0):t=i.lastIndexOf("-",e);if(t<0)break;let n=i.slice(0,t),a=i.slice(r?t:t+1);e=t-1,!(n===""||a==="/")&&(yield[n,a])}}function aC(i,e){if(i.length===0||e.tailwindConfig.prefix==="")return i;for(let t of i){let[r]=t;if(r.options.respectPrefix){let n=z.root({nodes:[t[1].clone()]}),a=t[1].raws.tailwind.classCandidate;n.walkRules(s=>{let o=a.startsWith("-");s.selector=Bt(e.tailwindConfig.prefix,s.selector,o)}),t[1]=n.nodes[0]}}return i}function oC(i,e){if(i.length===0)return i;let t=[];function r(n){return n.parent&&n.parent.type==="atrule"&&n.parent.name==="keyframes"}for(let[n,a]of i){let s=z.root({nodes:[a.clone()]});s.walkRules(o=>{if(r(o))return;let u=(0,vn.default)().astSync(o.selector);u.each(c=>Xa(c,e)),ju(u,c=>c===e?`!${c}`:c),o.selector=u.toString(),o.walkDecls(c=>c.important=!0)}),t.push([{...n,important:!0},s.nodes[0]])}return t}function lC(i,e,t){if(e.length===0)return e;let r={modifier:null,value:Kr};{let[n,...a]=ae(i,"/");if(a.length>1&&(n=n+"/"+a.slice(0,-1).join("/"),a=a.slice(-1)),a.length&&!t.variantMap.has(i)&&(i=n,r.modifier=a[0],!K(t.tailwindConfig,"generalizedModifiers")))return[]}if(i.endsWith("]")&&!i.startsWith("[")){let n=/(.)(-?)\[(.*)\]/g.exec(i);if(n){let[,a,s,o]=n;if(a==="@"&&s==="-")return[];if(a!=="@"&&s==="")return[];i=i.replace(`${s}[${o}]`,""),r.value=o}}if(no(i)&&!t.variantMap.has(i)){let n=t.offsets.recordVariant(i),a=L(i.slice(1,-1)),s=ae(a,",");if(s.length>1)return[];if(!s.every(Cn))return[];let o=s.map((u,c)=>[t.offsets.applyParallelOffset(n,c),Zr(u.trim())]);t.variantMap.set(i,o)}if(t.variantMap.has(i)){let n=no(i),a=t.variantOptions.get(i)?.[Jr]??{},s=t.variantMap.get(i).slice(),o=[],u=(()=>!(n||a.respectPrefix===!1))();for(let[c,f]of e){if(c.layer==="user")continue;let d=z.root({nodes:[f.clone()]});for(let[p,m,b]of s){let w=function(){x.raws.neededBackup||(x.raws.neededBackup=!0,x.walkRules(E=>E.raws.originalSelector=E.selector))},k=function(E){return w(),x.each(I=>{I.type==="rule"&&(I.selectors=I.selectors.map(q=>E({get className(){return to(q)},selector:q})))}),x},x=(b??d).clone(),y=[],S=m({get container(){return w(),x},separator:t.tailwindConfig.separator,modifySelectors:k,wrap(E){let I=x.nodes;x.removeAll(),E.append(I),x.append(E)},format(E){y.push({format:E,respectPrefix:u})},args:r});if(Array.isArray(S)){for(let[E,I]of S.entries())s.push([t.offsets.applyParallelOffset(p,E),I,x.clone()]);continue}if(typeof S=="string"&&y.push({format:S,respectPrefix:u}),S===null)continue;x.raws.neededBackup&&(delete x.raws.neededBackup,x.walkRules(E=>{let I=E.raws.originalSelector;if(!I||(delete E.raws.originalSelector,I===E.selector))return;let q=E.selector,R=(0,vn.default)(J=>{J.walkClasses(ue=>{ue.value=`${i}${t.tailwindConfig.separator}${ue.value}`})}).processSync(I);y.push({format:q.replace(R,"&"),respectPrefix:u}),E.selector=I})),x.nodes[0].raws.tailwind={...x.nodes[0].raws.tailwind,parentLayer:c.layer};let _=[{...c,sort:t.offsets.applyVariantOffset(c.sort,p,Object.assign(r,t.variantOptions.get(i))),collectedFormats:(c.collectedFormats??[]).concat(y)},x.nodes[0]];o.push(_)}}return o}return[]}function ro(i,e,t={}){return!ie(i)&&!Array.isArray(i)?[[i],t]:Array.isArray(i)?ro(i[0],e,i[1]):(e.has(i)||e.set(i,Mt(i)),[e.get(i),t])}function fC(i){return uC.test(i)}function cC(i){if(!i.includes("://"))return!1;try{let e=new URL(i);return e.scheme!==""&&e.host!==""}catch(e){return!1}}function Cd(i){let e=!0;return i.walkDecls(t=>{if(!Ad(t.prop,t.value))return e=!1,!1}),e}function Ad(i,e){if(cC(`${i}:${e}`))return!1;try{return z.parse(`a{${i}:${e}}`).toResult(),!0}catch(t){return!1}}function pC(i,e){let[,t,r]=i.match(/^\[([a-zA-Z0-9-_]+):(\S+)\]$/)??[];if(r===void 0||!fC(t)||!Lt(r))return null;let n=L(r,{property:t});return Ad(t,n)?[[{sort:e.offsets.arbitraryProperty(i),layer:"utilities",options:{respectImportant:!0}},()=>({[Va(i)]:{[t]:n}})]]:null}function*dC(i,e){e.candidateRuleMap.has(i)&&(yield[e.candidateRuleMap.get(i),"DEFAULT"]),yield*function*(o){o!==null&&(yield[o,"DEFAULT"])}(pC(i,e));let t=i,r=!1,n=e.tailwindConfig.prefix,a=n.length,s=t.startsWith(n)||t.startsWith(`-${n}`);t[a]==="-"&&s&&(r=!0,t=n+t.slice(a+1)),r&&e.candidateRuleMap.has(t)&&(yield[e.candidateRuleMap.get(t),"-DEFAULT"]);for(let[o,u]of sC(t))e.candidateRuleMap.has(o)&&(yield[e.candidateRuleMap.get(o),r?`-${u}`:u])}function hC(i,e){return i===He?[He]:ae(i,e)}function*mC(i,e){for(let t of i)t[1].raws.tailwind={...t[1].raws.tailwind,classCandidate:e,preserveSource:t[0].options?.preserveSource??!1},yield t}function*io(i,e){let t=e.tailwindConfig.separator,[r,...n]=hC(i,t).reverse(),a=!1;r.startsWith("!")&&(a=!0,r=r.slice(1));for(let s of dC(r,e)){let o=[],u=new Map,[c,f]=s,d=c.length===1;for(let[p,m]of c){let b=[];if(typeof m=="function")for(let x of[].concat(m(f,{isOnlyPlugin:d}))){let[y,w]=ro(x,e.postCssNodeCache);for(let k of y)b.push([{...p,options:{...p.options,...w}},k])}else if(f==="DEFAULT"||f==="-DEFAULT"){let x=m,[y,w]=ro(x,e.postCssNodeCache);for(let k of y)b.push([{...p,options:{...p.options,...w}},k])}if(b.length>0){let x=Array.from(fs(p.options?.types??[],f,p.options??{},e.tailwindConfig)).map(([y,w])=>w);x.length>0&&u.set(b,x),o.push(b)}}if(no(f)){if(o.length>1){let b=function(y){return y.length===1?y[0]:y.find(w=>{let k=u.get(w);return w.some(([{options:S},_])=>Cd(_)?S.types.some(({type:E,preferOnConflict:I})=>k.includes(E)&&I):!1)})},[p,m]=o.reduce((y,w)=>(w.some(([{options:S}])=>S.types.some(({type:_})=>_==="any"))?y[0].push(w):y[1].push(w),y),[[],[]]),x=b(m)??b(p);if(x)o=[x];else{let y=o.map(k=>new Set([...u.get(k)??[]]));for(let k of y)for(let S of k){let _=!1;for(let E of y)k!==E&&E.has(S)&&(E.delete(S),_=!0);_&&k.delete(S)}let w=[];for(let[k,S]of y.entries())for(let _ of S){let E=o[k].map(([,I])=>I).flat().map(I=>I.toString().split(` -`).slice(1,-1).map(q=>q.trim()).map(q=>` ${q}`).join(` -`)).join(` - -`);w.push(` Use \`${i.replace("[",`[${_}:`)}\` for \`${E.trim()}\``);break}F.warn([`The class \`${i}\` is ambiguous and matches multiple utilities.`,...w,`If this is content and not a class, replace it with \`${i.replace("[","[").replace("]","]")}\` to silence this warning.`]);continue}}o=o.map(p=>p.filter(m=>Cd(m[1])))}o=o.flat(),o=Array.from(mC(o,r)),o=aC(o,e),a&&(o=oC(o,r));for(let p of n)o=lC(p,o,e);for(let p of o)p[1].raws.tailwind={...p[1].raws.tailwind,candidate:i},p=gC(p,{context:e,candidate:i}),p!==null&&(yield p)}}function gC(i,{context:e,candidate:t}){if(!i[0].collectedFormats)return i;let r=!0,n;try{n=$t(i[0].collectedFormats,{context:e,candidate:t})}catch{return null}let a=z.root({nodes:[i[1].clone()]});return a.walkRules(s=>{if(!xn(s))try{let o=wn(s.selector,n,{candidate:t,context:e});if(o===null){s.remove();return}s.selector=o}catch{return r=!1,!1}}),!r||a.nodes.length===0?null:(i[1]=a.nodes[0],i)}function xn(i){return i.parent&&i.parent.type==="atrule"&&i.parent.name==="keyframes"}function yC(i){if(i===!0)return e=>{xn(e)||e.walkDecls(t=>{t.parent.type==="rule"&&!xn(t.parent)&&(t.important=!0)})};if(typeof i=="string")return e=>{xn(e)||(e.selectors=e.selectors.map(t=>bn(t,i)))}}function kn(i,e,t=!1){let r=[],n=yC(e.tailwindConfig.important);for(let a of i){if(e.notClassCache.has(a))continue;if(e.candidateRuleCache.has(a)){r=r.concat(Array.from(e.candidateRuleCache.get(a)));continue}let s=Array.from(io(a,e));if(s.length===0){e.notClassCache.add(a);continue}e.classCache.set(a,s);let o=e.candidateRuleCache.get(a)??new Set;e.candidateRuleCache.set(a,o);for(let u of s){let[{sort:c,options:f},d]=u;if(f.respectImportant&&n){let m=z.root({nodes:[d.clone()]});m.walkRules(n),d=m.nodes[0]}let p=[c,t?d.clone():d];o.add(p),e.ruleCache.add(p),r.push(p)}}return r}function no(i){return i.startsWith("[")&&i.endsWith("]")}var vn,nC,uC,Sn=C(()=>{l();nt();vn=X(Me());za();kt();un();cr();Oe();ot();Ka();Ua();fr();Xr();Ha();St();ze();eo();nC=(0,vn.default)(i=>i.first.filter(({type:e})=>e==="class").pop().value);uC=/^[a-z_-]/});var _d,Od=C(()=>{l();_d={}});function wC(i){try{return _d.createHash("md5").update(i,"utf-8").digest("binary")}catch(e){return""}}function Ed(i,e){let t=e.toString();if(!t.includes("@tailwind"))return!1;let r=Ga.get(i),n=wC(t),a=r!==n;return Ga.set(i,n),a}var Td=C(()=>{l();Od();ot()});function An(i){return(i>0n)-(i<0n)}var Pd=C(()=>{l()});function Dd(i,e){let t=0n,r=0n;for(let[n,a]of e)i&n&&(t=t|n,r=r|a);return i&~t|r}var Id=C(()=>{l()});function qd(i){let e=null;for(let t of i)e=e??t,e=e>t?e:t;return e}function bC(i,e){let t=i.length,r=e.length,n=t{l();Pd();Id();so=class{constructor(){this.offsets={defaults:0n,base:0n,components:0n,utilities:0n,variants:0n,user:0n},this.layerPositions={defaults:0n,base:1n,components:2n,utilities:3n,user:4n,variants:5n},this.reservedVariantBits=0n,this.variantOffsets=new Map}create(e){return{layer:e,parentLayer:e,arbitrary:0n,variants:0n,parallelIndex:0n,index:this.offsets[e]++,propertyOffset:0n,property:"",options:[]}}arbitraryProperty(e){return{...this.create("utilities"),arbitrary:1n,property:e}}forVariant(e,t=0){let r=this.variantOffsets.get(e);if(r===void 0)throw new Error(`Cannot find offset for unknown variant ${e}`);return{...this.create("variants"),variants:r<n.startsWith("[")).sort(([n],[a])=>bC(n,a)),t=e.map(([,n])=>n).sort((n,a)=>An(n-a));return e.map(([,n],a)=>[n,t[a]]).filter(([n,a])=>n!==a)}remapArbitraryVariantOffsets(e){let t=this.recalculateVariantOffsets();return t.length===0?e:e.map(r=>{let[n,a]=r;return n={...n,variants:Dd(n.variants,t)},[n,a]})}sortArbitraryProperties(e){let t=new Set;for(let[s]of e)s.arbitrary===1n&&t.add(s.property);if(t.size===0)return e;let r=Array.from(t).sort(),n=new Map,a=1n;for(let s of r)n.set(s,a++);return e.map(s=>{let[o,u]=s;return o={...o,propertyOffset:n.get(o.property)??0n},[o,u]})}sort(e){return e=this.remapArbitraryVariantOffsets(e),e=this.sortArbitraryProperties(e),e.sort(([t],[r])=>An(this.compare(t,r)))}}});function uo(i,e){let t=i.tailwindConfig.prefix;return typeof t=="function"?t(e):t+e}function Bd({type:i="any",...e}){let t=[].concat(i);return{...e,types:t.map(r=>Array.isArray(r)?{type:r[0],...r[1]}:{type:r,preferOnConflict:!1})}}function vC(i){let e=[],t="",r=0;for(let n=0;n0&&e.push(t.trim()),e=e.filter(n=>n!==""),e}function xC(i,e,{before:t=[]}={}){if(t=[].concat(t),t.length<=0){i.push(e);return}let r=i.length-1;for(let n of t){let a=i.indexOf(n);a!==-1&&(r=Math.min(r,a))}i.splice(r,0,e)}function Fd(i){return Array.isArray(i)?i.flatMap(e=>!Array.isArray(e)&&!ie(e)?e:Mt(e)):Fd([i])}function kC(i,e){return(0,ao.default)(r=>{let n=[];return e&&e(r),r.walkClasses(a=>{n.push(a.value)}),n}).transformSync(i)}function SC(i){i.walkPseudos(e=>{e.value===":not"&&e.remove()})}function CC(i,e={containsNonOnDemandable:!1},t=0){let r=[],n=[];i.type==="rule"?n.push(...i.selectors):i.type==="atrule"&&i.walkRules(a=>n.push(...a.selectors));for(let a of n){let s=kC(a,SC);s.length===0&&(e.containsNonOnDemandable=!0);for(let o of s)r.push(o)}return t===0?[e.containsNonOnDemandable||r.length===0,r]:r}function _n(i){return Fd(i).flatMap(e=>{let t=new Map,[r,n]=CC(e);return r&&n.unshift(He),n.map(a=>(t.has(e)||t.set(e,e),[a,t.get(e)]))})}function Cn(i){return i.startsWith("@")||i.includes("&")}function Zr(i){i=i.replace(/\n+/g,"").replace(/\s{1,}/g," ").trim();let e=vC(i).map(t=>{if(!t.startsWith("@"))return({format:a})=>a(t);let[,r,n]=/@(\S*)( .+|[({].*)?/g.exec(t);return({wrap:a})=>a(z.atRule({name:r,params:n?.trim()??""}))}).reverse();return t=>{for(let r of e)r(t)}}function AC(i,e,{variantList:t,variantMap:r,offsets:n,classList:a}){function s(p,m){return p?(0,Md.default)(i,p,m):i}function o(p){return Bt(i.prefix,p)}function u(p,m){return p===He?He:m.respectPrefix?e.tailwindConfig.prefix+p:p}function c(p,m,b={}){let x=Ke(p),y=s(["theme",...x],m);return Ge(x[0])(y,b)}let f=0,d={postcss:z,prefix:o,e:ce,config:s,theme:c,corePlugins:p=>Array.isArray(i.corePlugins)?i.corePlugins.includes(p):s(["corePlugins",p],!0),variants:()=>[],addBase(p){for(let[m,b]of _n(p)){let x=u(m,{}),y=n.create("base");e.candidateRuleMap.has(x)||e.candidateRuleMap.set(x,[]),e.candidateRuleMap.get(x).push([{sort:y,layer:"base"},b])}},addDefaults(p,m){let b={[`@defaults ${p}`]:m};for(let[x,y]of _n(b)){let w=u(x,{});e.candidateRuleMap.has(w)||e.candidateRuleMap.set(w,[]),e.candidateRuleMap.get(w).push([{sort:n.create("defaults"),layer:"defaults"},y])}},addComponents(p,m){m=Object.assign({},{preserveSource:!1,respectPrefix:!0,respectImportant:!1},Array.isArray(m)?{}:m);for(let[x,y]of _n(p)){let w=u(x,m);a.add(w),e.candidateRuleMap.has(w)||e.candidateRuleMap.set(w,[]),e.candidateRuleMap.get(w).push([{sort:n.create("components"),layer:"components",options:m},y])}},addUtilities(p,m){m=Object.assign({},{preserveSource:!1,respectPrefix:!0,respectImportant:!0},Array.isArray(m)?{}:m);for(let[x,y]of _n(p)){let w=u(x,m);a.add(w),e.candidateRuleMap.has(w)||e.candidateRuleMap.set(w,[]),e.candidateRuleMap.get(w).push([{sort:n.create("utilities"),layer:"utilities",options:m},y])}},matchUtilities:function(p,m){m=Bd({...{respectPrefix:!0,respectImportant:!0,modifiers:!1},...m});let x=n.create("utilities");for(let y in p){let S=function(E,{isOnlyPlugin:I}){let[q,R,J]=us(m.types,E,m,i);if(q===void 0)return[];if(!m.types.some(({type:ee})=>ee===R))if(I)F.warn([`Unnecessary typehint \`${R}\` in \`${y}-${E}\`.`,`You can safely update it to \`${y}-${E.replace(R+":","")}\`.`]);else return[];if(!Lt(q))return[];let ue={get modifier(){return m.modifiers||F.warn(`modifier-used-without-options-for-${y}`,["Your plugin must set `modifiers: true` in its options to support modifiers."]),J}},de=K(i,"generalizedModifiers");return[].concat(de?k(q,ue):k(q)).filter(Boolean).map(ee=>({[fn(y,E)]:ee}))},w=u(y,m),k=p[y];a.add([w,m]);let _=[{sort:x,layer:"utilities",options:m},S];e.candidateRuleMap.has(w)||e.candidateRuleMap.set(w,[]),e.candidateRuleMap.get(w).push(_)}},matchComponents:function(p,m){m=Bd({...{respectPrefix:!0,respectImportant:!1,modifiers:!1},...m});let x=n.create("components");for(let y in p){let S=function(E,{isOnlyPlugin:I}){let[q,R,J]=us(m.types,E,m,i);if(q===void 0)return[];if(!m.types.some(({type:ee})=>ee===R))if(I)F.warn([`Unnecessary typehint \`${R}\` in \`${y}-${E}\`.`,`You can safely update it to \`${y}-${E.replace(R+":","")}\`.`]);else return[];if(!Lt(q))return[];let ue={get modifier(){return m.modifiers||F.warn(`modifier-used-without-options-for-${y}`,["Your plugin must set `modifiers: true` in its options to support modifiers."]),J}},de=K(i,"generalizedModifiers");return[].concat(de?k(q,ue):k(q)).filter(Boolean).map(ee=>({[fn(y,E)]:ee}))},w=u(y,m),k=p[y];a.add([w,m]);let _=[{sort:x,layer:"components",options:m},S];e.candidateRuleMap.has(w)||e.candidateRuleMap.set(w,[]),e.candidateRuleMap.get(w).push(_)}},addVariant(p,m,b={}){m=[].concat(m).map(x=>{if(typeof x!="string")return(y={})=>{let{args:w,modifySelectors:k,container:S,separator:_,wrap:E,format:I}=y,q=x(Object.assign({modifySelectors:k,container:S,separator:_},b.type===oo.MatchVariant&&{args:w,wrap:E,format:I}));if(typeof q=="string"&&!Cn(q))throw new Error(`Your custom variant \`${p}\` has an invalid format string. Make sure it's an at-rule or contains a \`&\` placeholder.`);return Array.isArray(q)?q.filter(R=>typeof R=="string").map(R=>Zr(R)):q&&typeof q=="string"&&Zr(q)(y)};if(!Cn(x))throw new Error(`Your custom variant \`${p}\` has an invalid format string. Make sure it's an at-rule or contains a \`&\` placeholder.`);return Zr(x)}),xC(t,p,b),r.set(p,m),e.variantOptions.set(p,b)},matchVariant(p,m,b){let x=b?.id??++f,y=p==="@",w=K(i,"generalizedModifiers");for(let[S,_]of Object.entries(b?.values??{}))S!=="DEFAULT"&&d.addVariant(y?`${p}${S}`:`${p}-${S}`,({args:E,container:I})=>m(_,w?{modifier:E?.modifier,container:I}:{container:I}),{...b,value:_,id:x,type:oo.MatchVariant,variantInfo:lo.Base});let k="DEFAULT"in(b?.values??{});d.addVariant(p,({args:S,container:_})=>S?.value===Kr&&!k?null:m(S?.value===Kr?b.values.DEFAULT:S?.value??(typeof S=="string"?S:""),w?{modifier:S?.modifier,container:_}:{container:_}),{...b,id:x,type:oo.MatchVariant,variantInfo:lo.Dynamic})}};return d}function On(i){return fo.has(i)||fo.set(i,new Map),fo.get(i)}function Ld(i,e){let t=!1,r=new Map;for(let n of i){if(!n)continue;let a=gs.parse(n),s=a.hash?a.href.replace(a.hash,""):a.href;s=a.search?s.replace(a.search,""):s;let o=te.statSync(decodeURIComponent(s),{throwIfNoEntry:!1})?.mtimeMs;!o||((!e.has(n)||o>e.get(n))&&(t=!0),r.set(n,o))}return[t,r]}function Nd(i){i.walkAtRules(e=>{["responsive","variants"].includes(e.name)&&(Nd(e),e.before(e.nodes),e.remove())})}function _C(i){let e=[];return i.each(t=>{t.type==="atrule"&&["responsive","variants"].includes(t.name)&&(t.name="layer",t.params="utilities")}),i.walkAtRules("layer",t=>{if(Nd(t),t.params==="base"){for(let r of t.nodes)e.push(function({addBase:n}){n(r,{respectPrefix:!1})});t.remove()}else if(t.params==="components"){for(let r of t.nodes)e.push(function({addComponents:n}){n(r,{respectPrefix:!1,preserveSource:!0})});t.remove()}else if(t.params==="utilities"){for(let r of t.nodes)e.push(function({addUtilities:n}){n(r,{respectPrefix:!1,preserveSource:!0})});t.remove()}}),e}function OC(i,e){let t=Object.entries({...H,...hd}).map(([u,c])=>i.tailwindConfig.corePlugins.includes(u)?c:null).filter(Boolean),r=i.tailwindConfig.plugins.map(u=>(u.__isOptionsFunction&&(u=u()),typeof u=="function"?u:u.handler)),n=_C(e),a=[H.childVariant,H.pseudoElementVariants,H.pseudoClassVariants,H.hasVariants,H.ariaVariants,H.dataVariants],s=[H.supportsVariants,H.reducedMotionVariants,H.prefersContrastVariants,H.screenVariants,H.orientationVariants,H.directionVariants,H.darkVariants,H.forcedColorsVariants,H.printVariant];return(i.tailwindConfig.darkMode==="class"||Array.isArray(i.tailwindConfig.darkMode)&&i.tailwindConfig.darkMode[0]==="class")&&(s=[H.supportsVariants,H.reducedMotionVariants,H.prefersContrastVariants,H.darkVariants,H.screenVariants,H.orientationVariants,H.directionVariants,H.forcedColorsVariants,H.printVariant]),[...t,...a,...r,...s,...n]}function EC(i,e){let t=[],r=new Map;e.variantMap=r;let n=new so;e.offsets=n;let a=new Set,s=AC(e.tailwindConfig,e,{variantList:t,variantMap:r,offsets:n,classList:a});for(let f of i)if(Array.isArray(f))for(let d of f)d(s);else f?.(s);n.recordVariants(t,f=>r.get(f).length);for(let[f,d]of r.entries())e.variantMap.set(f,d.map((p,m)=>[n.forVariant(f,m),p]));let o=(e.tailwindConfig.safelist??[]).filter(Boolean);if(o.length>0){let f=[];for(let d of o){if(typeof d=="string"){e.changedContent.push({content:d,extension:"html"});continue}if(d instanceof RegExp){F.warn("root-regex",["Regular expressions in `safelist` work differently in Tailwind CSS v3.0.","Update your `safelist` configuration to eliminate this warning.","https://tailwindcss.com/docs/content-configuration#safelisting-classes"]);continue}f.push(d)}if(f.length>0){let d=new Map,p=e.tailwindConfig.prefix.length,m=f.some(b=>b.pattern.source.includes("!"));for(let b of a){let x=Array.isArray(b)?(()=>{let[y,w]=b,S=Object.keys(w?.values??{}).map(_=>Qr(y,_));return w?.supportsNegativeValues&&(S=[...S,...S.map(_=>"-"+_)],S=[...S,...S.map(_=>_.slice(0,p)+"-"+_.slice(p))]),w.types.some(({type:_})=>_==="color")&&(S=[...S,...S.flatMap(_=>Object.keys(e.tailwindConfig.theme.opacity).map(E=>`${_}/${E}`))]),m&&w?.respectImportant&&(S=[...S,...S.map(_=>"!"+_)]),S})():[b];for(let y of x)for(let{pattern:w,variants:k=[]}of f)if(w.lastIndex=0,d.has(w)||d.set(w,0),!!w.test(y)){d.set(w,d.get(w)+1),e.changedContent.push({content:y,extension:"html"});for(let S of k)e.changedContent.push({content:S+e.tailwindConfig.separator+y,extension:"html"})}}for(let[b,x]of d.entries())x===0&&F.warn([`The safelist pattern \`${b}\` doesn't match any Tailwind CSS classes.`,"Fix this pattern or remove it from your `safelist` configuration.","https://tailwindcss.com/docs/content-configuration#safelisting-classes"])}}let u=[].concat(e.tailwindConfig.darkMode??"media")[1]??"dark",c=[uo(e,u),uo(e,"group"),uo(e,"peer")];e.getClassOrder=function(d){let p=[...d].sort((y,w)=>y===w?0:y[y,null])),b=kn(new Set(p),e,!0);b=e.offsets.sort(b);let x=BigInt(c.length);for(let[,y]of b){let w=y.raws.tailwind.candidate;m.set(w,m.get(w)??x++)}return d.map(y=>{let w=m.get(y)??null,k=c.indexOf(y);return w===null&&k!==-1&&(w=BigInt(k)),[y,w]})},e.getClassList=function(d={}){let p=[];for(let m of a)if(Array.isArray(m)){let[b,x]=m,y=[],w=Object.keys(x?.modifiers??{});x?.types?.some(({type:_})=>_==="color")&&w.push(...Object.keys(e.tailwindConfig.theme.opacity??{}));let k={modifiers:w},S=d.includeMetadata&&w.length>0;for(let[_,E]of Object.entries(x?.values??{})){if(E==null)continue;let I=Qr(b,_);if(p.push(S?[I,k]:I),x?.supportsNegativeValues&&Xe(E)){let q=Qr(b,`-${_}`);y.push(S?[q,k]:q)}}p.push(...y)}else p.push(m);return p},e.getVariants=function(){let d=Math.random().toString(36).substring(7).toUpperCase(),p=[];for(let[m,b]of e.variantOptions.entries())b.variantInfo!==lo.Base&&p.push({name:m,isArbitrary:b.type===Symbol.for("MATCH_VARIANT"),values:Object.keys(b.values??{}),hasDash:m!=="@",selectors({modifier:x,value:y}={}){let w=`TAILWINDPLACEHOLDER${d}`,k=z.rule({selector:`.${w}`}),S=z.root({nodes:[k.clone()]}),_=S.toString(),E=(e.variantMap.get(m)??[]).flatMap(([oe,he])=>he),I=[];for(let oe of E){let he=[],ai={args:{modifier:x,value:b.values?.[y]??y},separator:e.tailwindConfig.separator,modifySelectors(Ce){return S.each(Yn=>{Yn.type==="rule"&&(Yn.selectors=Yn.selectors.map(su=>Ce({get className(){return to(su)},selector:su})))}),S},format(Ce){he.push(Ce)},wrap(Ce){he.push(`@${Ce.name} ${Ce.params} { & }`)},container:S},oi=oe(ai);if(he.length>0&&I.push(he),Array.isArray(oi))for(let Ce of oi)he=[],Ce(ai),I.push(he)}let q=[],R=S.toString();_!==R&&(S.walkRules(oe=>{let he=oe.selector,ai=(0,ao.default)(oi=>{oi.walkClasses(Ce=>{Ce.value=`${m}${e.tailwindConfig.separator}${Ce.value}`})}).processSync(he);q.push(he.replace(ai,"&").replace(w,"&"))}),S.walkAtRules(oe=>{q.push(`@${oe.name} (${oe.params}) { & }`)}));let J=!(y in(b.values??{})),ue=b[Jr]??{},de=(()=>!(J||ue.respectPrefix===!1))();I=I.map(oe=>oe.map(he=>({format:he,respectPrefix:de}))),q=q.map(oe=>({format:oe,respectPrefix:de}));let De={candidate:w,context:e},ee=I.map(oe=>wn(`.${w}`,$t(oe,De),De).replace(`.${w}`,"&").replace("{ & }","").trim());return q.length>0&&ee.push($t(q,De).toString().replace(`.${w}`,"&")),ee}});return p}}function $d(i,e){!i.classCache.has(e)||(i.notClassCache.add(e),i.classCache.delete(e),i.applyClassCache.delete(e),i.candidateRuleMap.delete(e),i.candidateRuleCache.delete(e),i.stylesheetCache=null)}function TC(i,e){let t=e.raws.tailwind.candidate;if(!!t){for(let r of i.ruleCache)r[1].raws.tailwind.candidate===t&&i.ruleCache.delete(r);$d(i,t)}}function co(i,e=[],t=z.root()){let r={disposables:[],ruleCache:new Set,candidateRuleCache:new Map,classCache:new Map,applyClassCache:new Map,notClassCache:new Set(i.blocklist??[]),postCssNodeCache:new Map,candidateRuleMap:new Map,tailwindConfig:i,changedContent:e,variantMap:new Map,stylesheetCache:null,variantOptions:new Map,markInvalidUtilityCandidate:a=>$d(r,a),markInvalidUtilityNode:a=>TC(r,a)},n=OC(r,t);return EC(n,r),r}function jd(i,e,t,r,n,a){let s=e.opts.from,o=r!==null;Pe.DEBUG&&console.log("Source path:",s);let u;if(o&&jt.has(s))u=jt.get(s);else if(ei.has(n)){let p=ei.get(n);lt.get(p).add(s),jt.set(s,p),u=p}let c=Ed(s,i);if(u){let[p,m]=Ld([...a],On(u));if(!p&&!c)return[u,!1,m]}if(jt.has(s)){let p=jt.get(s);if(lt.has(p)&&(lt.get(p).delete(s),lt.get(p).size===0)){lt.delete(p);for(let[m,b]of ei)b===p&&ei.delete(m);for(let m of p.disposables.splice(0))m(p)}}Pe.DEBUG&&console.log("Setting up new context...");let f=co(t,[],i);Object.assign(f,{userConfigPath:r});let[,d]=Ld([...a],On(f));return ei.set(n,f),jt.set(s,f),lt.has(f)||lt.set(f,new Set),lt.get(f).add(s),[f,!0,d]}var Md,ao,Jr,oo,lo,fo,jt,ei,lt,Xr=C(()=>{l();je();ys();nt();Md=X(Ns()),ao=X(Me());Hr();za();un();kt();Ft();Ua();cr();md();ot();ot();pi();Oe();fi();Ha();Sn();Td();Rd();ze();Ka();Jr=Symbol(),oo={AddVariant:Symbol.for("ADD_VARIANT"),MatchVariant:Symbol.for("MATCH_VARIANT")},lo={Base:1<<0,Dynamic:1<<1};fo=new WeakMap;jt=gd,ei=yd,lt=gn});function po(i){return i.ignore?[]:i.glob?h.env.ROLLUP_WATCH==="true"?[{type:"dependency",file:i.base}]:[{type:"dir-dependency",dir:i.base,glob:i.glob}]:[{type:"dependency",file:i.base}]}var zd=C(()=>{l()});function Vd(i,e){return{handler:i,config:e}}var Ud,Wd=C(()=>{l();Vd.withOptions=function(i,e=()=>({})){let t=function(r){return{__options:r,handler:i(r),config:e(r)}};return t.__isOptionsFunction=!0,t.__pluginFunction=i,t.__configFunction=e,t};Ud=Vd});var ho={};Ae(ho,{default:()=>PC});var PC,mo=C(()=>{l();Wd();PC=Ud});var Hd=v((c6,Gd)=>{l();var DC=(mo(),ho).default,IC={overflow:"hidden",display:"-webkit-box","-webkit-box-orient":"vertical"},qC=DC(function({matchUtilities:i,addUtilities:e,theme:t,variants:r}){let n=t("lineClamp");i({"line-clamp":a=>({...IC,"-webkit-line-clamp":`${a}`})},{values:n}),e([{".line-clamp-none":{"-webkit-line-clamp":"unset"}}],r("lineClamp"))},{theme:{lineClamp:{1:"1",2:"2",3:"3",4:"4",5:"5",6:"6"}},variants:{lineClamp:["responsive"]}});Gd.exports=qC});function go(i){i.content.files.length===0&&F.warn("content-problems",["The `content` option in your Tailwind CSS configuration is missing or empty.","Configure your content sources or your generated CSS will be missing styles.","https://tailwindcss.com/docs/content-configuration"]);try{let e=Hd();i.plugins.includes(e)&&(F.warn("line-clamp-in-core",["As of Tailwind CSS v3.3, the `@tailwindcss/line-clamp` plugin is now included by default.","Remove it from the `plugins` array in your configuration to eliminate this warning."]),i.plugins=i.plugins.filter(t=>t!==e))}catch{}return i}var Yd=C(()=>{l();Oe()});var Qd,Jd=C(()=>{l();Qd=()=>!1});var En,Xd=C(()=>{l();En={sync:i=>[].concat(i),generateTasks:i=>[{dynamic:!1,base:".",negative:[],positive:[].concat(i),patterns:[].concat(i)}],escapePath:i=>i}});var yo,Kd=C(()=>{l();yo=i=>i});var Zd,eh=C(()=>{l();Zd=()=>""});function th(i){let e=i,t=Zd(i);return t!=="."&&(e=i.substr(t.length),e.charAt(0)==="/"&&(e=e.substr(1))),e.substr(0,2)==="./"&&(e=e.substr(2)),e.charAt(0)==="/"&&(e=e.substr(1)),{base:t,glob:e}}var rh=C(()=>{l();eh()});function ih(i,e){let t=e.content.files;t=t.filter(o=>typeof o=="string"),t=t.map(yo);let r=En.generateTasks(t),n=[],a=[];for(let o of r)n.push(...o.positive.map(u=>nh(u,!1))),a.push(...o.negative.map(u=>nh(u,!0)));let s=[...n,...a];return s=MC(i,s),s=s.flatMap(BC),s=s.map(RC),s}function nh(i,e){let t={original:i,base:i,ignore:e,pattern:i,glob:null};return Qd(i)&&Object.assign(t,th(i)),t}function RC(i){let e=yo(i.base);return e=En.escapePath(e),i.pattern=i.glob?`${e}/${i.glob}`:e,i.pattern=i.ignore?`!${i.pattern}`:i.pattern,i}function MC(i,e){let t=[];return i.userConfigPath&&i.tailwindConfig.content.relative&&(t=[Z.dirname(i.userConfigPath)]),e.map(r=>(r.base=Z.resolve(...t,r.base),r))}function BC(i){let e=[i];try{let t=te.realpathSync(i.base);t!==i.base&&e.push({...i,base:t})}catch{}return e}function sh(i,e,t){let r=i.tailwindConfig.content.files.filter(s=>typeof s.raw=="string").map(({raw:s,extension:o="html"})=>({content:s,extension:o})),[n,a]=FC(e,t);for(let s of n){let o=Z.extname(s).slice(1);r.push({file:s,extension:o})}return[r,a]}function FC(i,e){let t=i.map(s=>s.pattern),r=new Map,n=new Set;Pe.DEBUG&&console.time("Finding changed files");let a=En.sync(t,{absolute:!0});for(let s of a){let o=e.get(s)||-1/0,u=te.statSync(s).mtimeMs;u>o&&(n.add(s),r.set(s,u))}return Pe.DEBUG&&console.timeEnd("Finding changed files"),[n,r]}var ah=C(()=>{l();je();gt();Jd();Xd();Kd();rh();ot()});function oh(){}var lh=C(()=>{l()});function jC(i,e){for(let t of e){let r=`${i}${t}`;if(te.existsSync(r)&&te.statSync(r).isFile())return r}for(let t of e){let r=`${i}/index${t}`;if(te.existsSync(r))return r}return null}function*uh(i,e,t,r=Z.extname(i)){let n=jC(Z.resolve(e,i),LC.includes(r)?NC:$C);if(n===null||t.has(n))return;t.add(n),yield n,e=Z.dirname(n),r=Z.extname(n);let a=te.readFileSync(n,"utf-8");for(let s of[...a.matchAll(/import[\s\S]*?['"](.{3,}?)['"]/gi),...a.matchAll(/import[\s\S]*from[\s\S]*?['"](.{3,}?)['"]/gi),...a.matchAll(/require\(['"`](.+)['"`]\)/gi)])!s[1].startsWith(".")||(yield*uh(s[1],e,t,r))}function wo(i){return i===null?new Set:new Set(uh(i,Z.dirname(i),new Set))}var LC,NC,$C,fh=C(()=>{l();je();gt();LC=[".js",".cjs",".mjs"],NC=["",".js",".cjs",".mjs",".ts",".cts",".mts",".jsx",".tsx"],$C=["",".ts",".cts",".mts",".tsx",".js",".cjs",".mjs",".jsx"]});function zC(i,e){if(bo.has(i))return bo.get(i);let t=ih(i,e);return bo.set(i,t).get(i)}function VC(i){let e=ms(i);if(e!==null){let[r,n,a,s]=ph.get(e)||[],o=wo(e),u=!1,c=new Map;for(let p of o){let m=te.statSync(p).mtimeMs;c.set(p,m),(!s||!s.has(p)||m>s.get(p))&&(u=!0)}if(!u)return[r,e,n,a];for(let p of o)delete ou.cache[p];let f=go(dr(oh(e))),d=ui(f);return ph.set(e,[f,d,o,c]),[f,e,d,o]}let t=dr(i?.config??i??{});return t=go(t),[t,null,ui(t),[]]}function vo(i){return({tailwindDirectives:e,registerDependency:t})=>(r,n)=>{let[a,s,o,u]=VC(i),c=new Set(u);if(e.size>0){c.add(n.opts.from);for(let b of n.messages)b.type==="dependency"&&c.add(b.file)}let[f,,d]=jd(r,n,a,s,o,c),p=On(f),m=zC(f,a);if(e.size>0){for(let y of m)for(let w of po(y))t(w);let[b,x]=sh(f,m,p);for(let y of b)f.changedContent.push(y);for(let[y,w]of x.entries())d.set(y,w)}for(let b of u)t({type:"dependency",file:b});for(let[b,x]of d.entries())p.set(b,x);return f}}var ch,ph,bo,dh=C(()=>{l();je();ch=X(Qn());pu();hs();tf();Xr();zd();Yd();ah();lh();fh();ph=new ch.default({maxSize:100}),bo=new WeakMap});function xo(i){let e=new Set,t=new Set,r=new Set;if(i.walkAtRules(n=>{n.name==="apply"&&r.add(n),n.name==="import"&&(n.params==='"tailwindcss/base"'||n.params==="'tailwindcss/base'"?(n.name="tailwind",n.params="base"):n.params==='"tailwindcss/components"'||n.params==="'tailwindcss/components'"?(n.name="tailwind",n.params="components"):n.params==='"tailwindcss/utilities"'||n.params==="'tailwindcss/utilities'"?(n.name="tailwind",n.params="utilities"):(n.params==='"tailwindcss/screens"'||n.params==="'tailwindcss/screens'"||n.params==='"tailwindcss/variants"'||n.params==="'tailwindcss/variants'")&&(n.name="tailwind",n.params="variants")),n.name==="tailwind"&&(n.params==="screens"&&(n.params="variants"),e.add(n.params)),["layer","responsive","variants"].includes(n.name)&&(["responsive","variants"].includes(n.name)&&F.warn(`${n.name}-at-rule-deprecated`,[`The \`@${n.name}\` directive has been deprecated in Tailwind CSS v3.0.`,"Use `@layer utilities` or `@layer components` instead.","https://tailwindcss.com/docs/upgrade-guide#replace-variants-with-layer"]),t.add(n))}),!e.has("base")||!e.has("components")||!e.has("utilities")){for(let n of t)if(n.name==="layer"&&["base","components","utilities"].includes(n.params)){if(!e.has(n.params))throw n.error(`\`@layer ${n.params}\` is used but no matching \`@tailwind ${n.params}\` directive is present.`)}else if(n.name==="responsive"){if(!e.has("utilities"))throw n.error("`@responsive` is used but `@tailwind utilities` is missing.")}else if(n.name==="variants"&&!e.has("utilities"))throw n.error("`@variants` is used but `@tailwind utilities` is missing.")}return{tailwindDirectives:e,applyDirectives:r}}var hh=C(()=>{l();Oe()});function vt(i,e=void 0,t=void 0){return i.map(r=>{let n=r.clone();return t!==void 0&&(n.raws.tailwind={...n.raws.tailwind,...t}),e!==void 0&&mh(n,a=>{if(a.raws.tailwind?.preserveSource===!0&&a.source)return!1;a.source=e}),n})}function mh(i,e){e(i)!==!1&&i.each?.(t=>mh(t,e))}var gh=C(()=>{l()});function ko(i){return i=Array.isArray(i)?i:[i],i=i.map(e=>e instanceof RegExp?e.source:e),i.join("")}function ye(i){return new RegExp(ko(i),"g")}function ut(i){return`(?:${i.map(ko).join("|")})`}function So(i){return`(?:${ko(i)})?`}function wh(i){return i&&UC.test(i)?i.replace(yh,"\\$&"):i||""}var yh,UC,bh=C(()=>{l();yh=/[\\^$.*+?()[\]{}|]/g,UC=RegExp(yh.source)});function vh(i){let e=Array.from(WC(i));return t=>{let r=[];for(let n of e)for(let a of t.match(n)??[])r.push(YC(a));return r}}function*WC(i){let e=i.tailwindConfig.separator,t=i.tailwindConfig.prefix!==""?So(ye([/-?/,wh(i.tailwindConfig.prefix)])):"",r=ut([/\[[^\s:'"`]+:[^\s\[\]]+\]/,/\[[^\s:'"`\]]+:[^\s]+?\[[^\s]+\][^\s]+?\]/,ye([ut([/-?(?:\w+)/,/@(?:\w+)/]),So(ut([ye([ut([/-(?:\w+-)*\['[^\s]+'\]/,/-(?:\w+-)*\["[^\s]+"\]/,/-(?:\w+-)*\[`[^\s]+`\]/,/-(?:\w+-)*\[(?:[^\s\[\]]+\[[^\s\[\]]+\])*[^\s:\[\]]+\]/]),/(?![{([]])/,/(?:\/[^\s'"`\\><$]*)?/]),ye([ut([/-(?:\w+-)*\['[^\s]+'\]/,/-(?:\w+-)*\["[^\s]+"\]/,/-(?:\w+-)*\[`[^\s]+`\]/,/-(?:\w+-)*\[(?:[^\s\[\]]+\[[^\s\[\]]+\])*[^\s\[\]]+\]/]),/(?![{([]])/,/(?:\/[^\s'"`\\$]*)?/]),/[-\/][^\s'"`\\$={><]*/]))])]),n=[ut([ye([/@\[[^\s"'`]+\](\/[^\s"'`]+)?/,e]),ye([/([^\s"'`\[\\]+-)?\[[^\s"'`]+\]\/[\w_-]+/,e]),ye([/([^\s"'`\[\\]+-)?\[[^\s"'`]+\]/,e]),ye([/[^\s"'`\[\\]+/,e])]),ut([ye([/([^\s"'`\[\\]+-)?\[[^\s`]+\]\/[\w_-]+/,e]),ye([/([^\s"'`\[\\]+-)?\[[^\s`]+\]/,e]),ye([/[^\s`\[\\]+/,e])])];for(let a of n)yield ye(["((?=((",a,")+))\\2)?",/!?/,t,r]);yield/[^<>"'`\s.(){}[\]#=%$]*[^<>"'`\s.(){}[\]#=%:$]/g}function YC(i){if(!i.includes("-["))return i;let e=0,t=[],r=i.matchAll(GC);r=Array.from(r).flatMap(n=>{let[,...a]=n;return a.map((s,o)=>Object.assign([],n,{index:n.index+o,0:s}))});for(let n of r){let a=n[0],s=t[t.length-1];if(a===s?t.pop():(a==="'"||a==='"'||a==="`")&&t.push(a),!s){if(a==="["){e++;continue}else if(a==="]"){e--;continue}if(e<0)return i.substring(0,n.index-1);if(e===0&&!HC.test(a))return i.substring(0,n.index)}}return i}var GC,HC,xh=C(()=>{l();bh();GC=/([\[\]'"`])([^\[\]'"`])?/g,HC=/[^"'`\s<>\]]+/});function QC(i,e){let t=i.tailwindConfig.content.extract;return t[e]||t.DEFAULT||Sh[e]||Sh.DEFAULT(i)}function JC(i,e){let t=i.content.transform;return t[e]||t.DEFAULT||Ch[e]||Ch.DEFAULT}function XC(i,e,t,r){ti.has(e)||ti.set(e,new kh.default({maxSize:25e3}));for(let n of i.split(` -`))if(n=n.trim(),!r.has(n))if(r.add(n),ti.get(e).has(n))for(let a of ti.get(e).get(n))t.add(a);else{let a=e(n).filter(o=>o!=="!*"),s=new Set(a);for(let o of s)t.add(o);ti.get(e).set(n,s)}}function KC(i,e){let t=e.offsets.sort(i),r={base:new Set,defaults:new Set,components:new Set,utilities:new Set,variants:new Set};for(let[n,a]of t)r[n.layer].add(a);return r}function Co(i){return async e=>{let t={base:null,components:null,utilities:null,variants:null};if(e.walkAtRules(y=>{y.name==="tailwind"&&Object.keys(t).includes(y.params)&&(t[y.params]=y)}),Object.values(t).every(y=>y===null))return e;let r=new Set([...i.candidates??[],He]),n=new Set;Ye.DEBUG&&console.time("Reading changed files");let a=[];for(let y of i.changedContent){let w=JC(i.tailwindConfig,y.extension),k=QC(i,y.extension);a.push([y,{transformer:w,extractor:k}])}let s=500;for(let y=0;y{S=k?await te.promises.readFile(k,"utf8"):S,XC(_(S),E,r,n)}))}Ye.DEBUG&&console.timeEnd("Reading changed files");let o=i.classCache.size;Ye.DEBUG&&console.time("Generate rules"),Ye.DEBUG&&console.time("Sorting candidates");let u=new Set([...r].sort((y,w)=>y===w?0:y{let w=y.raws.tailwind?.parentLayer;return w==="components"?t.components!==null:w==="utilities"?t.utilities!==null:!0});t.variants?(t.variants.before(vt(b,t.variants.source,{layer:"variants"})),t.variants.remove()):b.length>0&&e.append(vt(b,e.source,{layer:"variants"})),e.source.end=e.source.end??e.source.start;let x=b.some(y=>y.raws.tailwind?.parentLayer==="utilities");t.utilities&&p.size===0&&!x&&F.warn("content-problems",["No utility classes were detected in your source files. If this is unexpected, double-check the `content` option in your Tailwind CSS configuration.","https://tailwindcss.com/docs/content-configuration"]),Ye.DEBUG&&(console.log("Potential classes: ",r.size),console.log("Active contexts: ",gn.size)),i.changedContent=[],e.walkAtRules("layer",y=>{Object.keys(t).includes(y.params)&&y.remove()})}}var kh,Ye,Sh,Ch,ti,Ah=C(()=>{l();je();kh=X(Qn());ot();Sn();Oe();gh();xh();Ye=Pe,Sh={DEFAULT:vh},Ch={DEFAULT:i=>i,svelte:i=>i.replace(/(?:^|\s)class:/g," ")};ti=new WeakMap});function Pn(i){let e=new Map;z.root({nodes:[i.clone()]}).walkRules(a=>{(0,Tn.default)(s=>{s.walkClasses(o=>{let u=o.parent.toString(),c=e.get(u);c||e.set(u,c=new Set),c.add(o.value)})}).processSync(a.selector)});let r=Array.from(e.values(),a=>Array.from(a)),n=r.flat();return Object.assign(n,{groups:r})}function Ao(i){return ZC.astSync(i)}function _h(i,e){let t=new Set;for(let r of i)t.add(r.split(e).pop());return Array.from(t)}function Oh(i,e){let t=i.tailwindConfig.prefix;return typeof t=="function"?t(e):t+e}function*Eh(i){for(yield i;i.parent;)yield i.parent,i=i.parent}function e2(i,e={}){let t=i.nodes;i.nodes=[];let r=i.clone(e);return i.nodes=t,r}function t2(i){for(let e of Eh(i))if(i!==e){if(e.type==="root")break;i=e2(e,{nodes:[i]})}return i}function r2(i,e){let t=new Map;return i.walkRules(r=>{for(let s of Eh(r))if(s.raws.tailwind?.layer!==void 0)return;let n=t2(r),a=e.offsets.create("user");for(let s of Pn(r)){let o=t.get(s)||[];t.set(s,o),o.push([{layer:"user",sort:a,important:!1},n])}}),t}function i2(i,e){for(let t of i){if(e.notClassCache.has(t)||e.applyClassCache.has(t))continue;if(e.classCache.has(t)){e.applyClassCache.set(t,e.classCache.get(t).map(([n,a])=>[n,a.clone()]));continue}let r=Array.from(io(t,e));if(r.length===0){e.notClassCache.add(t);continue}e.applyClassCache.set(t,r)}return e.applyClassCache}function n2(i){let e=null;return{get:t=>(e=e||i(),e.get(t)),has:t=>(e=e||i(),e.has(t))}}function s2(i){return{get:e=>i.flatMap(t=>t.get(e)||[]),has:e=>i.some(t=>t.has(e))}}function Th(i){let e=i.split(/[\s\t\n]+/g);return e[e.length-1]==="!important"?[e.slice(0,-1),!0]:[e,!1]}function Ph(i,e,t){let r=new Set,n=[];if(i.walkAtRules("apply",u=>{let[c]=Th(u.params);for(let f of c)r.add(f);n.push(u)}),n.length===0)return;let a=s2([t,i2(r,e)]);function s(u,c,f){let d=Ao(u),p=Ao(c),b=Ao(`.${ce(f)}`).nodes[0].nodes[0];return d.each(x=>{let y=new Set;p.each(w=>{let k=!1;w=w.clone(),w.walkClasses(S=>{S.value===b.value&&(k||(S.replaceWith(...x.nodes.map(_=>_.clone())),y.add(w),k=!0))})});for(let w of y){let k=[[]];for(let S of w.nodes)S.type==="combinator"?(k.push(S),k.push([])):k[k.length-1].push(S);w.nodes=[];for(let S of k)Array.isArray(S)&&S.sort((_,E)=>_.type==="tag"&&E.type==="class"?-1:_.type==="class"&&E.type==="tag"?1:_.type==="class"&&E.type==="pseudo"&&E.value.startsWith("::")?-1:_.type==="pseudo"&&_.value.startsWith("::")&&E.type==="class"?1:0),w.nodes=w.nodes.concat(S)}x.replaceWith(...y)}),d.toString()}let o=new Map;for(let u of n){let[c]=o.get(u.parent)||[[],u.source];o.set(u.parent,[c,u.source]);let[f,d]=Th(u.params);if(u.parent.type==="atrule"){if(u.parent.name==="screen"){let p=u.parent.params;throw u.error(`@apply is not supported within nested at-rules like @screen. We suggest you write this as @apply ${f.map(m=>`${p}:${m}`).join(" ")} instead.`)}throw u.error(`@apply is not supported within nested at-rules like @${u.parent.name}. You can fix this by un-nesting @${u.parent.name}.`)}for(let p of f){if([Oh(e,"group"),Oh(e,"peer")].includes(p))throw u.error(`@apply should not be used with the '${p}' utility`);if(!a.has(p))throw u.error(`The \`${p}\` class does not exist. If \`${p}\` is a custom class, make sure it is defined within a \`@layer\` directive.`);let m=a.get(p);for(let[,b]of m)b.type!=="atrule"&&b.walkRules(()=>{throw u.error([`The \`${p}\` class cannot be used with \`@apply\` because \`@apply\` does not currently support nested CSS.`,"Rewrite the selector without nesting or configure the `tailwindcss/nesting` plugin:","https://tailwindcss.com/docs/using-with-preprocessors#nesting"].join(` -`))});c.push([p,d,m])}}for(let[u,[c,f]]of o){let d=[];for(let[m,b,x]of c){let y=[m,..._h([m],e.tailwindConfig.separator)];for(let[w,k]of x){let S=Pn(u),_=Pn(k);if(_=_.groups.filter(R=>R.some(J=>y.includes(J))).flat(),_=_.concat(_h(_,e.tailwindConfig.separator)),S.some(R=>_.includes(R)))throw k.error(`You cannot \`@apply\` the \`${m}\` utility here because it creates a circular dependency.`);let I=z.root({nodes:[k.clone()]});I.walk(R=>{R.source=f}),(k.type!=="atrule"||k.type==="atrule"&&k.name!=="keyframes")&&I.walkRules(R=>{if(!Pn(R).some(ee=>ee===m)){R.remove();return}let J=typeof e.tailwindConfig.important=="string"?e.tailwindConfig.important:null,de=u.raws.tailwind!==void 0&&J&&u.selector.indexOf(J)===0?u.selector.slice(J.length):u.selector;de===""&&(de=u.selector),R.selector=s(de,R.selector,m),J&&de!==u.selector&&(R.selector=bn(R.selector,J)),R.walkDecls(ee=>{ee.important=w.important||b});let De=(0,Tn.default)().astSync(R.selector);De.each(ee=>Nt(ee)),R.selector=De.toString()}),!!I.nodes[0]&&d.push([w.sort,I.nodes[0]])}}let p=e.offsets.sort(d).map(m=>m[1]);u.after(p)}for(let u of n)u.parent.nodes.length>1?u.remove():u.parent.remove();Ph(i,e,t)}function _o(i){return e=>{let t=n2(()=>r2(e,i));Ph(e,i,t)}}var Tn,ZC,Dh=C(()=>{l();nt();Tn=X(Me());Sn();Ft();eo();yn();ZC=(0,Tn.default)()});var Ih=v((lD,Dn)=>{l();(function(){"use strict";function i(r,n,a){if(!r)return null;i.caseSensitive||(r=r.toLowerCase());var s=i.threshold===null?null:i.threshold*r.length,o=i.thresholdAbsolute,u;s!==null&&o!==null?u=Math.min(s,o):s!==null?u=s:o!==null?u=o:u=null;var c,f,d,p,m,b=n.length;for(m=0;ma)return a+1;var u=[],c,f,d,p,m;for(c=0;c<=o;c++)u[c]=[c];for(f=0;f<=s;f++)u[0][f]=f;for(c=1;c<=o;c++){for(d=e,p=1,c>a&&(p=c-a),m=o+1,m>a+c&&(m=a+c),f=1;f<=s;f++)fm?u[c][f]=a+1:n.charAt(c-1)===r.charAt(f-1)?u[c][f]=u[c-1][f-1]:u[c][f]=Math.min(u[c-1][f-1]+1,Math.min(u[c][f-1]+1,u[c-1][f]+1)),u[c][f]a)return a+1}return u[o][s]}})()});var Rh=v((uD,qh)=>{l();var Oo="(".charCodeAt(0),Eo=")".charCodeAt(0),In="'".charCodeAt(0),To='"'.charCodeAt(0),Po="\\".charCodeAt(0),zt="/".charCodeAt(0),Do=",".charCodeAt(0),Io=":".charCodeAt(0),qn="*".charCodeAt(0),a2="u".charCodeAt(0),o2="U".charCodeAt(0),l2="+".charCodeAt(0),u2=/^[a-f0-9?-]+$/i;qh.exports=function(i){for(var e=[],t=i,r,n,a,s,o,u,c,f,d=0,p=t.charCodeAt(d),m=t.length,b=[{nodes:e}],x=0,y,w="",k="",S="";d{l();Mh.exports=function i(e,t,r){var n,a,s,o;for(n=0,a=e.length;n{l();function Fh(i,e){var t=i.type,r=i.value,n,a;return e&&(a=e(i))!==void 0?a:t==="word"||t==="space"?r:t==="string"?(n=i.quote||"",n+r+(i.unclosed?"":n)):t==="comment"?"/*"+r+(i.unclosed?"":"*/"):t==="div"?(i.before||"")+r+(i.after||""):Array.isArray(i.nodes)?(n=Lh(i.nodes,e),t!=="function"?n:r+"("+(i.before||"")+n+(i.after||"")+(i.unclosed?"":")")):r}function Lh(i,e){var t,r;if(Array.isArray(i)){for(t="",r=i.length-1;~r;r-=1)t=Fh(i[r],e)+t;return t}return Fh(i,e)}Nh.exports=Lh});var zh=v((pD,jh)=>{l();var Rn="-".charCodeAt(0),Mn="+".charCodeAt(0),qo=".".charCodeAt(0),f2="e".charCodeAt(0),c2="E".charCodeAt(0);function p2(i){var e=i.charCodeAt(0),t;if(e===Mn||e===Rn){if(t=i.charCodeAt(1),t>=48&&t<=57)return!0;var r=i.charCodeAt(2);return t===qo&&r>=48&&r<=57}return e===qo?(t=i.charCodeAt(1),t>=48&&t<=57):e>=48&&e<=57}jh.exports=function(i){var e=0,t=i.length,r,n,a;if(t===0||!p2(i))return!1;for(r=i.charCodeAt(e),(r===Mn||r===Rn)&&e++;e57));)e+=1;if(r=i.charCodeAt(e),n=i.charCodeAt(e+1),r===qo&&n>=48&&n<=57)for(e+=2;e57));)e+=1;if(r=i.charCodeAt(e),n=i.charCodeAt(e+1),a=i.charCodeAt(e+2),(r===f2||r===c2)&&(n>=48&&n<=57||(n===Mn||n===Rn)&&a>=48&&a<=57))for(e+=n===Mn||n===Rn?3:2;e57));)e+=1;return{number:i.slice(0,e),unit:i.slice(e)}}});var Gh=v((dD,Wh)=>{l();var d2=Rh(),Vh=Bh(),Uh=$h();function ft(i){return this instanceof ft?(this.nodes=d2(i),this):new ft(i)}ft.prototype.toString=function(){return Array.isArray(this.nodes)?Uh(this.nodes):""};ft.prototype.walk=function(i,e){return Vh(this.nodes,i,e),this};ft.unit=zh();ft.walk=Vh;ft.stringify=Uh;Wh.exports=ft});function Mo(i){return typeof i=="object"&&i!==null}function h2(i,e){let t=Ke(e);do if(t.pop(),(0,ri.default)(i,t)!==void 0)break;while(t.length);return t.length?t:void 0}function Vt(i){return typeof i=="string"?i:i.reduce((e,t,r)=>t.includes(".")?`${e}[${t}]`:r===0?t:`${e}.${t}`,"")}function Yh(i){return i.map(e=>`'${e}'`).join(", ")}function Qh(i){return Yh(Object.keys(i))}function Bo(i,e,t,r={}){let n=Array.isArray(e)?Vt(e):e.replace(/^['"]+|['"]+$/g,""),a=Array.isArray(e)?e:Ke(n),s=(0,ri.default)(i.theme,a,t);if(s===void 0){let u=`'${n}' does not exist in your theme config.`,c=a.slice(0,-1),f=(0,ri.default)(i.theme,c);if(Mo(f)){let d=Object.keys(f).filter(m=>Bo(i,[...c,m]).isValid),p=(0,Hh.default)(a[a.length-1],d);p?u+=` Did you mean '${Vt([...c,p])}'?`:d.length>0&&(u+=` '${Vt(c)}' has the following valid keys: ${Yh(d)}`)}else{let d=h2(i.theme,n);if(d){let p=(0,ri.default)(i.theme,d);Mo(p)?u+=` '${Vt(d)}' has the following keys: ${Qh(p)}`:u+=` '${Vt(d)}' is not an object.`}else u+=` Your theme has the following top-level keys: ${Qh(i.theme)}`}return{isValid:!1,error:u}}if(!(typeof s=="string"||typeof s=="number"||typeof s=="function"||s instanceof String||s instanceof Number||Array.isArray(s))){let u=`'${n}' was found but does not resolve to a string.`;if(Mo(s)){let c=Object.keys(s).filter(f=>Bo(i,[...a,f]).isValid);c.length&&(u+=` Did you mean something like '${Vt([...a,c[0]])}'?`)}return{isValid:!1,error:u}}let[o]=a;return{isValid:!0,value:Ge(o)(s,r)}}function m2(i,e,t){e=e.map(n=>Jh(i,n,t));let r=[""];for(let n of e)n.type==="div"&&n.value===","?r.push(""):r[r.length-1]+=Ro.default.stringify(n);return r}function Jh(i,e,t){if(e.type==="function"&&t[e.value]!==void 0){let r=m2(i,e.nodes,t);e.type="word",e.value=t[e.value](i,...r)}return e}function g2(i,e,t){return Object.keys(t).some(n=>e.includes(`${n}(`))?(0,Ro.default)(e).walk(n=>{Jh(i,n,t)}).toString():e}function*w2(i){i=i.replace(/^['"]+|['"]+$/g,"");let e=i.match(/^([^\s]+)(?![^\[]*\])(?:\s*\/\s*([^\/\s]+))$/),t;yield[i,void 0],e&&(i=e[1],t=e[2],yield[i,t])}function b2(i,e,t){let r=Array.from(w2(e)).map(([n,a])=>Object.assign(Bo(i,n,t,{opacityValue:a}),{resolvedPath:n,alpha:a}));return r.find(n=>n.isValid)??r[0]}function Xh(i){let e=i.tailwindConfig,t={theme:(r,n,...a)=>{let{isValid:s,value:o,error:u,alpha:c}=b2(e,n,a.length?a:void 0);if(!s){let p=r.parent,m=p?.raws.tailwind?.candidate;if(p&&m!==void 0){i.markInvalidUtilityNode(p),p.remove(),F.warn("invalid-theme-key-in-class",[`The utility \`${m}\` contains an invalid theme value and was not generated.`]);return}throw r.error(u)}let f=Ct(o),d=f!==void 0&&typeof f=="function";return(c!==void 0||d)&&(c===void 0&&(c=1),o=Ie(f,c,f)),o},screen:(r,n)=>{n=n.replace(/^['"]+/g,"").replace(/['"]+$/g,"");let s=at(e.theme.screens).find(({name:o})=>o===n);if(!s)throw r.error(`The '${n}' screen does not exist in your theme.`);return st(s)}};return r=>{r.walk(n=>{let a=y2[n.type];a!==void 0&&(n[a]=g2(n,n[a],t))})}}var ri,Hh,Ro,y2,Kh=C(()=>{l();ri=X(Ns()),Hh=X(Ih());Hr();Ro=X(Gh());hn();cn();pi();or();cr();Oe();y2={atrule:"params",decl:"value"}});function Zh({tailwindConfig:{theme:i}}){return function(e){e.walkAtRules("screen",t=>{let r=t.params,a=at(i.screens).find(({name:s})=>s===r);if(!a)throw t.error(`No \`${r}\` screen found.`);t.name="media",t.params=st(a)})}}var em=C(()=>{l();hn();cn()});function v2(i){let e=i.filter(o=>o.type!=="pseudo"||o.nodes.length>0?!0:o.value.startsWith("::")||[":before",":after",":first-line",":first-letter"].includes(o.value)).reverse(),t=new Set(["tag","class","id","attribute"]),r=e.findIndex(o=>t.has(o.type));if(r===-1)return e.reverse().join("").trim();let n=e[r],a=tm[n.type]?tm[n.type](n):n;e=e.slice(0,r);let s=e.findIndex(o=>o.type==="combinator"&&o.value===">");return s!==-1&&(e.splice(0,s),e.unshift(Bn.default.universal())),[a,...e.reverse()].join("").trim()}function k2(i){return Fo.has(i)||Fo.set(i,x2.transformSync(i)),Fo.get(i)}function Lo({tailwindConfig:i}){return e=>{let t=new Map,r=new Set;if(e.walkAtRules("defaults",n=>{if(n.nodes&&n.nodes.length>0){r.add(n);return}let a=n.params;t.has(a)||t.set(a,new Set),t.get(a).add(n.parent),n.remove()}),K(i,"optimizeUniversalDefaults"))for(let n of r){let a=new Map,s=t.get(n.params)??[];for(let o of s)for(let u of k2(o.selector)){let c=u.includes(":-")||u.includes("::-")||u.includes(":has")?u:"__DEFAULT__",f=a.get(c)??new Set;a.set(c,f),f.add(u)}if(K(i,"optimizeUniversalDefaults")){if(a.size===0){n.remove();continue}for(let[,o]of a){let u=z.rule({source:n.source});u.selectors=[...o],u.append(n.nodes.map(c=>c.clone())),n.before(u)}}n.remove()}else if(r.size){let n=z.rule({selectors:["*","::before","::after"]});for(let s of r)n.append(s.nodes),n.parent||s.before(n),n.source||(n.source=s.source),s.remove();let a=n.clone({selectors:["::backdrop"]});n.after(a)}}}var Bn,tm,x2,Fo,rm=C(()=>{l();nt();Bn=X(Me());ze();tm={id(i){return Bn.default.attribute({attribute:"id",operator:"=",value:i.value,quoteMark:'"'})}};x2=(0,Bn.default)(i=>i.map(e=>{let t=e.split(r=>r.type==="combinator"&&r.value===" ").pop();return v2(t)})),Fo=new Map});function No(){function i(e){let t=null;e.each(r=>{if(!S2.has(r.type)){t=null;return}if(t===null){t=r;return}let n=im[r.type];r.type==="atrule"&&r.name==="font-face"?t=r:n.every(a=>(r[a]??"").replace(/\s+/g," ")===(t[a]??"").replace(/\s+/g," "))?(r.nodes&&t.append(r.nodes),r.remove()):t=r}),e.each(r=>{r.type==="atrule"&&i(r)})}return e=>{i(e)}}var im,S2,nm=C(()=>{l();im={atrule:["name","params"],rule:["selector"]},S2=new Set(Object.keys(im))});function $o(){return i=>{i.walkRules(e=>{let t=new Map,r=new Set([]),n=new Map;e.walkDecls(a=>{if(a.parent===e){if(t.has(a.prop)){if(t.get(a.prop).value===a.value){r.add(t.get(a.prop)),t.set(a.prop,a);return}n.has(a.prop)||n.set(a.prop,new Set),n.get(a.prop).add(t.get(a.prop)),n.get(a.prop).add(a)}t.set(a.prop,a)}});for(let a of r)a.remove();for(let a of n.values()){let s=new Map;for(let o of a){let u=A2(o.value);u!==null&&(s.has(u)||s.set(u,new Set),s.get(u).add(o))}for(let o of s.values()){let u=Array.from(o).slice(0,-1);for(let c of u)c.remove()}}})}}function A2(i){let e=/^-?\d*.?\d+([\w%]+)?$/g.exec(i);return e?e[1]??C2:null}var C2,sm=C(()=>{l();C2=Symbol("unitless-number")});function _2(i){if(!i.walkAtRules)return;let e=new Set;if(i.walkAtRules("apply",t=>{e.add(t.parent)}),e.size!==0)for(let t of e){let r=[],n=[];for(let a of t.nodes)a.type==="atrule"&&a.name==="apply"?(n.length>0&&(r.push(n),n=[]),r.push([a])):n.push(a);if(n.length>0&&r.push(n),r.length!==1){for(let a of[...r].reverse()){let s=t.clone({nodes:[]});s.append(a),t.after(s)}t.remove()}}}function Fn(){return i=>{_2(i)}}var am=C(()=>{l()});function Ln(i){return async function(e,t){let{tailwindDirectives:r,applyDirectives:n}=xo(e);Fn()(e,t);let a=i({tailwindDirectives:r,applyDirectives:n,registerDependency(s){t.messages.push({plugin:"tailwindcss",parent:t.opts.from,...s})},createContext(s,o){return co(s,o,e)}})(e,t);if(a.tailwindConfig.separator==="-")throw new Error("The '-' character cannot be used as a custom separator in JIT mode due to parsing ambiguity. Please use another character like '_' instead.");Su(a.tailwindConfig),await Co(a)(e,t),Fn()(e,t),_o(a)(e,t),Xh(a)(e,t),Zh(a)(e,t),Lo(a)(e,t),No(a)(e,t),$o(a)(e,t)}}var om=C(()=>{l();hh();Ah();Dh();Kh();em();rm();nm();sm();am();Xr();ze()});function lm(i,e){let t=null,r=null;return i.walkAtRules("config",n=>{if(r=n.source?.input.file??e.opts.from??null,r===null)throw n.error("The `@config` directive cannot be used without setting `from` in your PostCSS config.");if(t)throw n.error("Only one `@config` directive is allowed per file.");let a=n.params.match(/(['"])(.*?)\1/);if(!a)throw n.error("A path is required when using the `@config` directive.");let s=a[2];if(Z.isAbsolute(s))throw n.error("The `@config` directive cannot be used with an absolute path.");if(t=Z.resolve(Z.dirname(r),s),!te.existsSync(t))throw n.error(`The config file at "${s}" does not exist. Make sure the path is correct and the file exists.`);n.remove()}),t||null}var um=C(()=>{l();je();gt()});var fm=v((JD,jo)=>{l();dh();om();ot();um();jo.exports=function(e){return{postcssPlugin:"tailwindcss",plugins:[Pe.DEBUG&&function(t){return console.log(` -`),console.time("JIT TOTAL"),t},async function(t,r){e=lm(t,r)??e;let n=vo(e);if(t.type==="document"){let a=t.nodes.filter(s=>s.type==="root");for(let s of a)s.type==="root"&&await Ln(n)(s,r);return}await Ln(n)(t,r)},Pe.DEBUG&&function(t){return console.timeEnd("JIT TOTAL"),console.log(` -`),t}].filter(Boolean)}};jo.exports.postcss=!0});var pm=v((XD,cm)=>{l();cm.exports=fm()});var zo=v((KD,dm)=>{l();dm.exports=()=>["and_chr 114","and_uc 15.5","chrome 114","chrome 113","chrome 109","edge 114","firefox 114","ios_saf 16.5","ios_saf 16.4","ios_saf 16.3","ios_saf 16.1","opera 99","safari 16.5","samsung 21"]});var Nn={};Ae(Nn,{agents:()=>O2,feature:()=>E2});function E2(){return{status:"cr",title:"CSS Feature Queries",stats:{ie:{"6":"n","7":"n","8":"n","9":"n","10":"n","11":"n","5.5":"n"},edge:{"12":"y","13":"y","14":"y","15":"y","16":"y","17":"y","18":"y","79":"y","80":"y","81":"y","83":"y","84":"y","85":"y","86":"y","87":"y","88":"y","89":"y","90":"y","91":"y","92":"y","93":"y","94":"y","95":"y","96":"y","97":"y","98":"y","99":"y","100":"y","101":"y","102":"y","103":"y","104":"y","105":"y","106":"y","107":"y","108":"y","109":"y","110":"y","111":"y","112":"y","113":"y","114":"y"},firefox:{"2":"n","3":"n","4":"n","5":"n","6":"n","7":"n","8":"n","9":"n","10":"n","11":"n","12":"n","13":"n","14":"n","15":"n","16":"n","17":"n","18":"n","19":"n","20":"n","21":"n","22":"y","23":"y","24":"y","25":"y","26":"y","27":"y","28":"y","29":"y","30":"y","31":"y","32":"y","33":"y","34":"y","35":"y","36":"y","37":"y","38":"y","39":"y","40":"y","41":"y","42":"y","43":"y","44":"y","45":"y","46":"y","47":"y","48":"y","49":"y","50":"y","51":"y","52":"y","53":"y","54":"y","55":"y","56":"y","57":"y","58":"y","59":"y","60":"y","61":"y","62":"y","63":"y","64":"y","65":"y","66":"y","67":"y","68":"y","69":"y","70":"y","71":"y","72":"y","73":"y","74":"y","75":"y","76":"y","77":"y","78":"y","79":"y","80":"y","81":"y","82":"y","83":"y","84":"y","85":"y","86":"y","87":"y","88":"y","89":"y","90":"y","91":"y","92":"y","93":"y","94":"y","95":"y","96":"y","97":"y","98":"y","99":"y","100":"y","101":"y","102":"y","103":"y","104":"y","105":"y","106":"y","107":"y","108":"y","109":"y","110":"y","111":"y","112":"y","113":"y","114":"y","115":"y","116":"y","117":"y","3.5":"n","3.6":"n"},chrome:{"4":"n","5":"n","6":"n","7":"n","8":"n","9":"n","10":"n","11":"n","12":"n","13":"n","14":"n","15":"n","16":"n","17":"n","18":"n","19":"n","20":"n","21":"n","22":"n","23":"n","24":"n","25":"n","26":"n","27":"n","28":"y","29":"y","30":"y","31":"y","32":"y","33":"y","34":"y","35":"y","36":"y","37":"y","38":"y","39":"y","40":"y","41":"y","42":"y","43":"y","44":"y","45":"y","46":"y","47":"y","48":"y","49":"y","50":"y","51":"y","52":"y","53":"y","54":"y","55":"y","56":"y","57":"y","58":"y","59":"y","60":"y","61":"y","62":"y","63":"y","64":"y","65":"y","66":"y","67":"y","68":"y","69":"y","70":"y","71":"y","72":"y","73":"y","74":"y","75":"y","76":"y","77":"y","78":"y","79":"y","80":"y","81":"y","83":"y","84":"y","85":"y","86":"y","87":"y","88":"y","89":"y","90":"y","91":"y","92":"y","93":"y","94":"y","95":"y","96":"y","97":"y","98":"y","99":"y","100":"y","101":"y","102":"y","103":"y","104":"y","105":"y","106":"y","107":"y","108":"y","109":"y","110":"y","111":"y","112":"y","113":"y","114":"y","115":"y","116":"y","117":"y"},safari:{"4":"n","5":"n","6":"n","7":"n","8":"n","9":"y","10":"y","11":"y","12":"y","13":"y","14":"y","15":"y","17":"y","9.1":"y","10.1":"y","11.1":"y","12.1":"y","13.1":"y","14.1":"y","15.1":"y","15.2-15.3":"y","15.4":"y","15.5":"y","15.6":"y","16.0":"y","16.1":"y","16.2":"y","16.3":"y","16.4":"y","16.5":"y","16.6":"y",TP:"y","3.1":"n","3.2":"n","5.1":"n","6.1":"n","7.1":"n"},opera:{"9":"n","11":"n","12":"n","15":"y","16":"y","17":"y","18":"y","19":"y","20":"y","21":"y","22":"y","23":"y","24":"y","25":"y","26":"y","27":"y","28":"y","29":"y","30":"y","31":"y","32":"y","33":"y","34":"y","35":"y","36":"y","37":"y","38":"y","39":"y","40":"y","41":"y","42":"y","43":"y","44":"y","45":"y","46":"y","47":"y","48":"y","49":"y","50":"y","51":"y","52":"y","53":"y","54":"y","55":"y","56":"y","57":"y","58":"y","60":"y","62":"y","63":"y","64":"y","65":"y","66":"y","67":"y","68":"y","69":"y","70":"y","71":"y","72":"y","73":"y","74":"y","75":"y","76":"y","77":"y","78":"y","79":"y","80":"y","81":"y","82":"y","83":"y","84":"y","85":"y","86":"y","87":"y","88":"y","89":"y","90":"y","91":"y","92":"y","93":"y","94":"y","95":"y","96":"y","97":"y","98":"y","99":"y","100":"y","12.1":"y","9.5-9.6":"n","10.0-10.1":"n","10.5":"n","10.6":"n","11.1":"n","11.5":"n","11.6":"n"},ios_saf:{"8":"n","17":"y","9.0-9.2":"y","9.3":"y","10.0-10.2":"y","10.3":"y","11.0-11.2":"y","11.3-11.4":"y","12.0-12.1":"y","12.2-12.5":"y","13.0-13.1":"y","13.2":"y","13.3":"y","13.4-13.7":"y","14.0-14.4":"y","14.5-14.8":"y","15.0-15.1":"y","15.2-15.3":"y","15.4":"y","15.5":"y","15.6":"y","16.0":"y","16.1":"y","16.2":"y","16.3":"y","16.4":"y","16.5":"y","16.6":"y","3.2":"n","4.0-4.1":"n","4.2-4.3":"n","5.0-5.1":"n","6.0-6.1":"n","7.0-7.1":"n","8.1-8.4":"n"},op_mini:{all:"y"},android:{"3":"n","4":"n","114":"y","4.4":"y","4.4.3-4.4.4":"y","2.1":"n","2.2":"n","2.3":"n","4.1":"n","4.2-4.3":"n"},bb:{"7":"n","10":"n"},op_mob:{"10":"n","11":"n","12":"n","73":"y","11.1":"n","11.5":"n","12.1":"n"},and_chr:{"114":"y"},and_ff:{"115":"y"},ie_mob:{"10":"n","11":"n"},and_uc:{"15.5":"y"},samsung:{"4":"y","20":"y","21":"y","5.0-5.4":"y","6.2-6.4":"y","7.2-7.4":"y","8.2":"y","9.2":"y","10.1":"y","11.1-11.2":"y","12.0":"y","13.0":"y","14.0":"y","15.0":"y","16.0":"y","17.0":"y","18.0":"y","19.0":"y"},and_qq:{"13.1":"y"},baidu:{"13.18":"y"},kaios:{"2.5":"y","3.0-3.1":"y"}}}}var O2,$n=C(()=>{l();O2={ie:{prefix:"ms"},edge:{prefix:"webkit",prefix_exceptions:{"12":"ms","13":"ms","14":"ms","15":"ms","16":"ms","17":"ms","18":"ms"}},firefox:{prefix:"moz"},chrome:{prefix:"webkit"},safari:{prefix:"webkit"},opera:{prefix:"webkit",prefix_exceptions:{"9":"o","11":"o","12":"o","9.5-9.6":"o","10.0-10.1":"o","10.5":"o","10.6":"o","11.1":"o","11.5":"o","11.6":"o","12.1":"o"}},ios_saf:{prefix:"webkit"},op_mini:{prefix:"o"},android:{prefix:"webkit"},bb:{prefix:"webkit"},op_mob:{prefix:"o",prefix_exceptions:{"73":"webkit"}},and_chr:{prefix:"webkit"},and_ff:{prefix:"moz"},ie_mob:{prefix:"ms"},and_uc:{prefix:"webkit",prefix_exceptions:{"15.5":"webkit"}},samsung:{prefix:"webkit"},and_qq:{prefix:"webkit"},baidu:{prefix:"webkit"},kaios:{prefix:"moz"}}});var hm=v(()=>{l()});var le=v((t4,ct)=>{l();var{list:Vo}=ge();ct.exports.error=function(i){let e=new Error(i);throw e.autoprefixer=!0,e};ct.exports.uniq=function(i){return[...new Set(i)]};ct.exports.removeNote=function(i){return i.includes(" ")?i.split(" ")[0]:i};ct.exports.escapeRegexp=function(i){return i.replace(/[$()*+-.?[\\\]^{|}]/g,"\\$&")};ct.exports.regexp=function(i,e=!0){return e&&(i=this.escapeRegexp(i)),new RegExp(`(^|[\\s,(])(${i}($|[\\s(,]))`,"gi")};ct.exports.editList=function(i,e){let t=Vo.comma(i),r=e(t,[]);if(t===r)return i;let n=i.match(/,\s*/);return n=n?n[0]:", ",r.join(n)};ct.exports.splitSelector=function(i){return Vo.comma(i).map(e=>Vo.space(e).map(t=>t.split(/(?=\.|#)/g)))}});var pt=v((r4,ym)=>{l();var T2=zo(),mm=($n(),Nn).agents,P2=le(),gm=class{static prefixes(){if(this.prefixesCache)return this.prefixesCache;this.prefixesCache=[];for(let e in mm)this.prefixesCache.push(`-${mm[e].prefix}-`);return this.prefixesCache=P2.uniq(this.prefixesCache).sort((e,t)=>t.length-e.length),this.prefixesCache}static withPrefix(e){return this.prefixesRegexp||(this.prefixesRegexp=new RegExp(this.prefixes().join("|"))),this.prefixesRegexp.test(e)}constructor(e,t,r,n){this.data=e,this.options=r||{},this.browserslistOpts=n||{},this.selected=this.parse(t)}parse(e){let t={};for(let r in this.browserslistOpts)t[r]=this.browserslistOpts[r];return t.path=this.options.from,T2(e,t)}prefix(e){let[t,r]=e.split(" "),n=this.data[t],a=n.prefix_exceptions&&n.prefix_exceptions[r];return a||(a=n.prefix),`-${a}-`}isSelected(e){return this.selected.includes(e)}};ym.exports=gm});var ii=v((i4,wm)=>{l();wm.exports={prefix(i){let e=i.match(/^(-\w+-)/);return e?e[0]:""},unprefixed(i){return i.replace(/^-\w+-/,"")}}});var Ut=v((n4,vm)=>{l();var D2=pt(),bm=ii(),I2=le();function Uo(i,e){let t=new i.constructor;for(let r of Object.keys(i||{})){let n=i[r];r==="parent"&&typeof n=="object"?e&&(t[r]=e):r==="source"||r===null?t[r]=n:Array.isArray(n)?t[r]=n.map(a=>Uo(a,t)):r!=="_autoprefixerPrefix"&&r!=="_autoprefixerValues"&&r!=="proxyCache"&&(typeof n=="object"&&n!==null&&(n=Uo(n,t)),t[r]=n)}return t}var jn=class{static hack(e){return this.hacks||(this.hacks={}),e.names.map(t=>(this.hacks[t]=e,this.hacks[t]))}static load(e,t,r){let n=this.hacks&&this.hacks[e];return n?new n(e,t,r):new this(e,t,r)}static clone(e,t){let r=Uo(e);for(let n in t)r[n]=t[n];return r}constructor(e,t,r){this.prefixes=t,this.name=e,this.all=r}parentPrefix(e){let t;return typeof e._autoprefixerPrefix!="undefined"?t=e._autoprefixerPrefix:e.type==="decl"&&e.prop[0]==="-"?t=bm.prefix(e.prop):e.type==="root"?t=!1:e.type==="rule"&&e.selector.includes(":-")&&/:(-\w+-)/.test(e.selector)?t=e.selector.match(/:(-\w+-)/)[1]:e.type==="atrule"&&e.name[0]==="-"?t=bm.prefix(e.name):t=this.parentPrefix(e.parent),D2.prefixes().includes(t)||(t=!1),e._autoprefixerPrefix=t,e._autoprefixerPrefix}process(e,t){if(!this.check(e))return;let r=this.parentPrefix(e),n=this.prefixes.filter(s=>!r||r===I2.removeNote(s)),a=[];for(let s of n)this.add(e,s,a.concat([s]),t)&&a.push(s);return a}clone(e,t){return jn.clone(e,t)}};vm.exports=jn});var M=v((s4,Sm)=>{l();var q2=Ut(),R2=pt(),xm=le(),km=class extends q2{check(){return!0}prefixed(e,t){return t+e}normalize(e){return e}otherPrefixes(e,t){for(let r of R2.prefixes())if(r!==t&&e.includes(r))return!0;return!1}set(e,t){return e.prop=this.prefixed(e.prop,t),e}needCascade(e){return e._autoprefixerCascade||(e._autoprefixerCascade=this.all.options.cascade!==!1&&e.raw("before").includes(` -`)),e._autoprefixerCascade}maxPrefixed(e,t){if(t._autoprefixerMax)return t._autoprefixerMax;let r=0;for(let n of e)n=xm.removeNote(n),n.length>r&&(r=n.length);return t._autoprefixerMax=r,t._autoprefixerMax}calcBefore(e,t,r=""){let a=this.maxPrefixed(e,t)-xm.removeNote(r).length,s=t.raw("before");return a>0&&(s+=Array(a).fill(" ").join("")),s}restoreBefore(e){let t=e.raw("before").split(` -`),r=t[t.length-1];this.all.group(e).up(n=>{let a=n.raw("before").split(` -`),s=a[a.length-1];s.lengths.prop===n.prop&&s.value===n.value)))return this.needCascade(e)&&(n.raws.before=this.calcBefore(r,e,t)),e.parent.insertBefore(e,n)}isAlready(e,t){let r=this.all.group(e).up(n=>n.prop===t);return r||(r=this.all.group(e).down(n=>n.prop===t)),r}add(e,t,r,n){let a=this.prefixed(e.prop,t);if(!(this.isAlready(e,a)||this.otherPrefixes(e.value,t)))return this.insert(e,t,r,n)}process(e,t){if(!this.needCascade(e)){super.process(e,t);return}let r=super.process(e,t);!r||!r.length||(this.restoreBefore(e),e.raws.before=this.calcBefore(r,e))}old(e,t){return[this.prefixed(e,t)]}};Sm.exports=km});var Am=v((a4,Cm)=>{l();Cm.exports=function i(e){return{mul:t=>new i(e*t),div:t=>new i(e/t),simplify:()=>new i(e),toString:()=>e.toString()}}});var Em=v((o4,Om)=>{l();var M2=Am(),B2=Ut(),Wo=le(),F2=/(min|max)-resolution\s*:\s*\d*\.?\d+(dppx|dpcm|dpi|x)/gi,L2=/(min|max)-resolution(\s*:\s*)(\d*\.?\d+)(dppx|dpcm|dpi|x)/i,_m=class extends B2{prefixName(e,t){return e==="-moz-"?t+"--moz-device-pixel-ratio":e+t+"-device-pixel-ratio"}prefixQuery(e,t,r,n,a){return n=new M2(n),a==="dpi"?n=n.div(96):a==="dpcm"&&(n=n.mul(2.54).div(96)),n=n.simplify(),e==="-o-"&&(n=n.n+"/"+n.d),this.prefixName(e,t)+r+n}clean(e){if(!this.bad){this.bad=[];for(let t of this.prefixes)this.bad.push(this.prefixName(t,"min")),this.bad.push(this.prefixName(t,"max"))}e.params=Wo.editList(e.params,t=>t.filter(r=>this.bad.every(n=>!r.includes(n))))}process(e){let t=this.parentPrefix(e),r=t?[t]:this.prefixes;e.params=Wo.editList(e.params,(n,a)=>{for(let s of n){if(!s.includes("min-resolution")&&!s.includes("max-resolution")){a.push(s);continue}for(let o of r){let u=s.replace(F2,c=>{let f=c.match(L2);return this.prefixQuery(o,f[1],f[2],f[3],f[4])});a.push(u)}a.push(s)}return Wo.uniq(a)})}};Om.exports=_m});var Pm=v((l4,Tm)=>{l();var Go="(".charCodeAt(0),Ho=")".charCodeAt(0),zn="'".charCodeAt(0),Yo='"'.charCodeAt(0),Qo="\\".charCodeAt(0),Wt="/".charCodeAt(0),Jo=",".charCodeAt(0),Xo=":".charCodeAt(0),Vn="*".charCodeAt(0),N2="u".charCodeAt(0),$2="U".charCodeAt(0),j2="+".charCodeAt(0),z2=/^[a-f0-9?-]+$/i;Tm.exports=function(i){for(var e=[],t=i,r,n,a,s,o,u,c,f,d=0,p=t.charCodeAt(d),m=t.length,b=[{nodes:e}],x=0,y,w="",k="",S="";d{l();Dm.exports=function i(e,t,r){var n,a,s,o;for(n=0,a=e.length;n{l();function qm(i,e){var t=i.type,r=i.value,n,a;return e&&(a=e(i))!==void 0?a:t==="word"||t==="space"?r:t==="string"?(n=i.quote||"",n+r+(i.unclosed?"":n)):t==="comment"?"/*"+r+(i.unclosed?"":"*/"):t==="div"?(i.before||"")+r+(i.after||""):Array.isArray(i.nodes)?(n=Rm(i.nodes,e),t!=="function"?n:r+"("+(i.before||"")+n+(i.after||"")+(i.unclosed?"":")")):r}function Rm(i,e){var t,r;if(Array.isArray(i)){for(t="",r=i.length-1;~r;r-=1)t=qm(i[r],e)+t;return t}return qm(i,e)}Mm.exports=Rm});var Lm=v((c4,Fm)=>{l();var Un="-".charCodeAt(0),Wn="+".charCodeAt(0),Ko=".".charCodeAt(0),V2="e".charCodeAt(0),U2="E".charCodeAt(0);function W2(i){var e=i.charCodeAt(0),t;if(e===Wn||e===Un){if(t=i.charCodeAt(1),t>=48&&t<=57)return!0;var r=i.charCodeAt(2);return t===Ko&&r>=48&&r<=57}return e===Ko?(t=i.charCodeAt(1),t>=48&&t<=57):e>=48&&e<=57}Fm.exports=function(i){var e=0,t=i.length,r,n,a;if(t===0||!W2(i))return!1;for(r=i.charCodeAt(e),(r===Wn||r===Un)&&e++;e57));)e+=1;if(r=i.charCodeAt(e),n=i.charCodeAt(e+1),r===Ko&&n>=48&&n<=57)for(e+=2;e57));)e+=1;if(r=i.charCodeAt(e),n=i.charCodeAt(e+1),a=i.charCodeAt(e+2),(r===V2||r===U2)&&(n>=48&&n<=57||(n===Wn||n===Un)&&a>=48&&a<=57))for(e+=n===Wn||n===Un?3:2;e57));)e+=1;return{number:i.slice(0,e),unit:i.slice(e)}}});var Gn=v((p4,jm)=>{l();var G2=Pm(),Nm=Im(),$m=Bm();function dt(i){return this instanceof dt?(this.nodes=G2(i),this):new dt(i)}dt.prototype.toString=function(){return Array.isArray(this.nodes)?$m(this.nodes):""};dt.prototype.walk=function(i,e){return Nm(this.nodes,i,e),this};dt.unit=Lm();dt.walk=Nm;dt.stringify=$m;jm.exports=dt});var Gm=v((d4,Wm)=>{l();var{list:H2}=ge(),zm=Gn(),Y2=pt(),Vm=ii(),Um=class{constructor(e){this.props=["transition","transition-property"],this.prefixes=e}add(e,t){let r,n,a=this.prefixes.add[e.prop],s=this.ruleVendorPrefixes(e),o=s||a&&a.prefixes||[],u=this.parse(e.value),c=u.map(m=>this.findProp(m)),f=[];if(c.some(m=>m[0]==="-"))return;for(let m of u){if(n=this.findProp(m),n[0]==="-")continue;let b=this.prefixes.add[n];if(!(!b||!b.prefixes))for(r of b.prefixes){if(s&&!s.some(y=>r.includes(y)))continue;let x=this.prefixes.prefixed(n,r);x!=="-ms-transform"&&!c.includes(x)&&(this.disabled(n,r)||f.push(this.clone(n,x,m)))}}u=u.concat(f);let d=this.stringify(u),p=this.stringify(this.cleanFromUnprefixed(u,"-webkit-"));if(o.includes("-webkit-")&&this.cloneBefore(e,`-webkit-${e.prop}`,p),this.cloneBefore(e,e.prop,p),o.includes("-o-")){let m=this.stringify(this.cleanFromUnprefixed(u,"-o-"));this.cloneBefore(e,`-o-${e.prop}`,m)}for(r of o)if(r!=="-webkit-"&&r!=="-o-"){let m=this.stringify(this.cleanOtherPrefixes(u,r));this.cloneBefore(e,r+e.prop,m)}d!==e.value&&!this.already(e,e.prop,d)&&(this.checkForWarning(t,e),e.cloneBefore(),e.value=d)}findProp(e){let t=e[0].value;if(/^\d/.test(t)){for(let[r,n]of e.entries())if(r!==0&&n.type==="word")return n.value}return t}already(e,t,r){return e.parent.some(n=>n.prop===t&&n.value===r)}cloneBefore(e,t,r){this.already(e,t,r)||e.cloneBefore({prop:t,value:r})}checkForWarning(e,t){if(t.prop!=="transition-property")return;let r=!1,n=!1;t.parent.each(a=>{if(a.type!=="decl"||a.prop.indexOf("transition-")!==0)return;let s=H2.comma(a.value);if(a.prop==="transition-property"){s.forEach(o=>{let u=this.prefixes.add[o];u&&u.prefixes&&u.prefixes.length>0&&(r=!0)});return}return n=n||s.length>1,!1}),r&&n&&t.warn(e,"Replace transition-property to transition, because Autoprefixer could not support any cases of transition-property and other transition-*")}remove(e){let t=this.parse(e.value);t=t.filter(s=>{let o=this.prefixes.remove[this.findProp(s)];return!o||!o.remove});let r=this.stringify(t);if(e.value===r)return;if(t.length===0){e.remove();return}let n=e.parent.some(s=>s.prop===e.prop&&s.value===r),a=e.parent.some(s=>s!==e&&s.prop===e.prop&&s.value.length>r.length);if(n||a){e.remove();return}e.value=r}parse(e){let t=zm(e),r=[],n=[];for(let a of t.nodes)n.push(a),a.type==="div"&&a.value===","&&(r.push(n),n=[]);return r.push(n),r.filter(a=>a.length>0)}stringify(e){if(e.length===0)return"";let t=[];for(let r of e)r[r.length-1].type!=="div"&&r.push(this.div(e)),t=t.concat(r);return t[0].type==="div"&&(t=t.slice(1)),t[t.length-1].type==="div"&&(t=t.slice(0,-2+1||void 0)),zm.stringify({nodes:t})}clone(e,t,r){let n=[],a=!1;for(let s of r)!a&&s.type==="word"&&s.value===e?(n.push({type:"word",value:t}),a=!0):n.push(s);return n}div(e){for(let t of e)for(let r of t)if(r.type==="div"&&r.value===",")return r;return{type:"div",value:",",after:" "}}cleanOtherPrefixes(e,t){return e.filter(r=>{let n=Vm.prefix(this.findProp(r));return n===""||n===t})}cleanFromUnprefixed(e,t){let r=e.map(a=>this.findProp(a)).filter(a=>a.slice(0,t.length)===t).map(a=>this.prefixes.unprefixed(a)),n=[];for(let a of e){let s=this.findProp(a),o=Vm.prefix(s);!r.includes(s)&&(o===t||o==="")&&n.push(a)}return n}disabled(e,t){let r=["order","justify-content","align-self","align-content"];if(e.includes("flex")||r.includes(e)){if(this.prefixes.options.flexbox===!1)return!0;if(this.prefixes.options.flexbox==="no-2009")return t.includes("2009")}}ruleVendorPrefixes(e){let{parent:t}=e;if(t.type!=="rule")return!1;if(!t.selector.includes(":-"))return!1;let r=Y2.prefixes().filter(n=>t.selector.includes(":"+n));return r.length>0?r:!1}};Wm.exports=Um});var Gt=v((h4,Ym)=>{l();var Q2=le(),Hm=class{constructor(e,t,r,n){this.unprefixed=e,this.prefixed=t,this.string=r||t,this.regexp=n||Q2.regexp(t)}check(e){return e.includes(this.string)?!!e.match(this.regexp):!1}};Ym.exports=Hm});var ke=v((m4,Jm)=>{l();var J2=Ut(),X2=Gt(),K2=ii(),Z2=le(),Qm=class extends J2{static save(e,t){let r=t.prop,n=[];for(let a in t._autoprefixerValues){let s=t._autoprefixerValues[a];if(s===t.value)continue;let o,u=K2.prefix(r);if(u==="-pie-")continue;if(u===a){o=t.value=s,n.push(o);continue}let c=e.prefixed(r,a),f=t.parent;if(!f.every(b=>b.prop!==c)){n.push(o);continue}let d=s.replace(/\s+/," ");if(f.some(b=>b.prop===t.prop&&b.value.replace(/\s+/," ")===d)){n.push(o);continue}let m=this.clone(t,{value:s});o=t.parent.insertBefore(t,m),n.push(o)}return n}check(e){let t=e.value;return t.includes(this.name)?!!t.match(this.regexp()):!1}regexp(){return this.regexpCache||(this.regexpCache=Z2.regexp(this.name))}replace(e,t){return e.replace(this.regexp(),`$1${t}$2`)}value(e){return e.raws.value&&e.raws.value.value===e.value?e.raws.value.raw:e.value}add(e,t){e._autoprefixerValues||(e._autoprefixerValues={});let r=e._autoprefixerValues[t]||this.value(e),n;do if(n=r,r=this.replace(r,t),r===!1)return;while(r!==n);e._autoprefixerValues[t]=r}old(e){return new X2(this.name,e+this.name)}};Jm.exports=Qm});var ht=v((g4,Xm)=>{l();Xm.exports={}});var el=v((y4,eg)=>{l();var Km=Gn(),eA=ke(),tA=ht().insertAreas,rA=/(^|[^-])linear-gradient\(\s*(top|left|right|bottom)/i,iA=/(^|[^-])radial-gradient\(\s*\d+(\w*|%)\s+\d+(\w*|%)\s*,/i,nA=/(!\s*)?autoprefixer:\s*ignore\s+next/i,sA=/(!\s*)?autoprefixer\s*grid:\s*(on|off|(no-)?autoplace)/i,aA=["width","height","min-width","max-width","min-height","max-height","inline-size","min-inline-size","max-inline-size","block-size","min-block-size","max-block-size"];function Zo(i){return i.parent.some(e=>e.prop==="grid-template"||e.prop==="grid-template-areas")}function oA(i){let e=i.parent.some(r=>r.prop==="grid-template-rows"),t=i.parent.some(r=>r.prop==="grid-template-columns");return e&&t}var Zm=class{constructor(e){this.prefixes=e}add(e,t){let r=this.prefixes.add["@resolution"],n=this.prefixes.add["@keyframes"],a=this.prefixes.add["@viewport"],s=this.prefixes.add["@supports"];e.walkAtRules(f=>{if(f.name==="keyframes"){if(!this.disabled(f,t))return n&&n.process(f)}else if(f.name==="viewport"){if(!this.disabled(f,t))return a&&a.process(f)}else if(f.name==="supports"){if(this.prefixes.options.supports!==!1&&!this.disabled(f,t))return s.process(f)}else if(f.name==="media"&&f.params.includes("-resolution")&&!this.disabled(f,t))return r&&r.process(f)}),e.walkRules(f=>{if(!this.disabled(f,t))return this.prefixes.add.selectors.map(d=>d.process(f,t))});function o(f){return f.parent.nodes.some(d=>{if(d.type!=="decl")return!1;let p=d.prop==="display"&&/(inline-)?grid/.test(d.value),m=d.prop.startsWith("grid-template"),b=/^grid-([A-z]+-)?gap/.test(d.prop);return p||m||b})}function u(f){return f.parent.some(d=>d.prop==="display"&&/(inline-)?flex/.test(d.value))}let c=this.gridStatus(e,t)&&this.prefixes.add["grid-area"]&&this.prefixes.add["grid-area"].prefixes;return e.walkDecls(f=>{if(this.disabledDecl(f,t))return;let d=f.parent,p=f.prop,m=f.value;if(p==="grid-row-span"){t.warn("grid-row-span is not part of final Grid Layout. Use grid-row.",{node:f});return}else if(p==="grid-column-span"){t.warn("grid-column-span is not part of final Grid Layout. Use grid-column.",{node:f});return}else if(p==="display"&&m==="box"){t.warn("You should write display: flex by final spec instead of display: box",{node:f});return}else if(p==="text-emphasis-position")(m==="under"||m==="over")&&t.warn("You should use 2 values for text-emphasis-position For example, `under left` instead of just `under`.",{node:f});else if(/^(align|justify|place)-(items|content)$/.test(p)&&u(f))(m==="start"||m==="end")&&t.warn(`${m} value has mixed support, consider using flex-${m} instead`,{node:f});else if(p==="text-decoration-skip"&&m==="ink")t.warn("Replace text-decoration-skip: ink to text-decoration-skip-ink: auto, because spec had been changed",{node:f});else{if(c&&this.gridStatus(f,t))if(f.value==="subgrid"&&t.warn("IE does not support subgrid",{node:f}),/^(align|justify|place)-items$/.test(p)&&o(f)){let x=p.replace("-items","-self");t.warn(`IE does not support ${p} on grid containers. Try using ${x} on child elements instead: ${f.parent.selector} > * { ${x}: ${f.value} }`,{node:f})}else if(/^(align|justify|place)-content$/.test(p)&&o(f))t.warn(`IE does not support ${f.prop} on grid containers`,{node:f});else if(p==="display"&&f.value==="contents"){t.warn("Please do not use display: contents; if you have grid setting enabled",{node:f});return}else if(f.prop==="grid-gap"){let x=this.gridStatus(f,t);x==="autoplace"&&!oA(f)&&!Zo(f)?t.warn("grid-gap only works if grid-template(-areas) is being used or both rows and columns have been declared and cells have not been manually placed inside the explicit grid",{node:f}):(x===!0||x==="no-autoplace")&&!Zo(f)&&t.warn("grid-gap only works if grid-template(-areas) is being used",{node:f})}else if(p==="grid-auto-columns"){t.warn("grid-auto-columns is not supported by IE",{node:f});return}else if(p==="grid-auto-rows"){t.warn("grid-auto-rows is not supported by IE",{node:f});return}else if(p==="grid-auto-flow"){let x=d.some(w=>w.prop==="grid-template-rows"),y=d.some(w=>w.prop==="grid-template-columns");Zo(f)?t.warn("grid-auto-flow is not supported by IE",{node:f}):m.includes("dense")?t.warn("grid-auto-flow: dense is not supported by IE",{node:f}):!x&&!y&&t.warn("grid-auto-flow works only if grid-template-rows and grid-template-columns are present in the same rule",{node:f});return}else if(m.includes("auto-fit")){t.warn("auto-fit value is not supported by IE",{node:f,word:"auto-fit"});return}else if(m.includes("auto-fill")){t.warn("auto-fill value is not supported by IE",{node:f,word:"auto-fill"});return}else p.startsWith("grid-template")&&m.includes("[")&&t.warn("Autoprefixer currently does not support line names. Try using grid-template-areas instead.",{node:f,word:"["});if(m.includes("radial-gradient"))if(iA.test(f.value))t.warn("Gradient has outdated direction syntax. New syntax is like `closest-side at 0 0` instead of `0 0, closest-side`.",{node:f});else{let x=Km(m);for(let y of x.nodes)if(y.type==="function"&&y.value==="radial-gradient")for(let w of y.nodes)w.type==="word"&&(w.value==="cover"?t.warn("Gradient has outdated direction syntax. Replace `cover` to `farthest-corner`.",{node:f}):w.value==="contain"&&t.warn("Gradient has outdated direction syntax. Replace `contain` to `closest-side`.",{node:f}))}m.includes("linear-gradient")&&rA.test(m)&&t.warn("Gradient has outdated direction syntax. New syntax is like `to left` instead of `right`.",{node:f})}aA.includes(f.prop)&&(f.value.includes("-fill-available")||(f.value.includes("fill-available")?t.warn("Replace fill-available to stretch, because spec had been changed",{node:f}):f.value.includes("fill")&&Km(m).nodes.some(y=>y.type==="word"&&y.value==="fill")&&t.warn("Replace fill to stretch, because spec had been changed",{node:f})));let b;if(f.prop==="transition"||f.prop==="transition-property")return this.prefixes.transition.add(f,t);if(f.prop==="align-self"){if(this.displayType(f)!=="grid"&&this.prefixes.options.flexbox!==!1&&(b=this.prefixes.add["align-self"],b&&b.prefixes&&b.process(f)),this.gridStatus(f,t)!==!1&&(b=this.prefixes.add["grid-row-align"],b&&b.prefixes))return b.process(f,t)}else if(f.prop==="justify-self"){if(this.gridStatus(f,t)!==!1&&(b=this.prefixes.add["grid-column-align"],b&&b.prefixes))return b.process(f,t)}else if(f.prop==="place-self"){if(b=this.prefixes.add["place-self"],b&&b.prefixes&&this.gridStatus(f,t)!==!1)return b.process(f,t)}else if(b=this.prefixes.add[f.prop],b&&b.prefixes)return b.process(f,t)}),this.gridStatus(e,t)&&tA(e,this.disabled),e.walkDecls(f=>{if(this.disabledValue(f,t))return;let d=this.prefixes.unprefixed(f.prop),p=this.prefixes.values("add",d);if(Array.isArray(p))for(let m of p)m.process&&m.process(f,t);eA.save(this.prefixes,f)})}remove(e,t){let r=this.prefixes.remove["@resolution"];e.walkAtRules((n,a)=>{this.prefixes.remove[`@${n.name}`]?this.disabled(n,t)||n.parent.removeChild(a):n.name==="media"&&n.params.includes("-resolution")&&r&&r.clean(n)});for(let n of this.prefixes.remove.selectors)e.walkRules((a,s)=>{n.check(a)&&(this.disabled(a,t)||a.parent.removeChild(s))});return e.walkDecls((n,a)=>{if(this.disabled(n,t))return;let s=n.parent,o=this.prefixes.unprefixed(n.prop);if((n.prop==="transition"||n.prop==="transition-property")&&this.prefixes.transition.remove(n),this.prefixes.remove[n.prop]&&this.prefixes.remove[n.prop].remove){let u=this.prefixes.group(n).down(c=>this.prefixes.normalize(c.prop)===o);if(o==="flex-flow"&&(u=!0),n.prop==="-webkit-box-orient"){let c={"flex-direction":!0,"flex-flow":!0};if(!n.parent.some(f=>c[f.prop]))return}if(u&&!this.withHackValue(n)){n.raw("before").includes(` -`)&&this.reduceSpaces(n),s.removeChild(a);return}}for(let u of this.prefixes.values("remove",o)){if(!u.check||!u.check(n.value))continue;if(o=u.unprefixed,this.prefixes.group(n).down(f=>f.value.includes(o))){s.removeChild(a);return}}})}withHackValue(e){return e.prop==="-webkit-background-clip"&&e.value==="text"}disabledValue(e,t){return this.gridStatus(e,t)===!1&&e.type==="decl"&&e.prop==="display"&&e.value.includes("grid")||this.prefixes.options.flexbox===!1&&e.type==="decl"&&e.prop==="display"&&e.value.includes("flex")||e.type==="decl"&&e.prop==="content"?!0:this.disabled(e,t)}disabledDecl(e,t){if(this.gridStatus(e,t)===!1&&e.type==="decl"&&(e.prop.includes("grid")||e.prop==="justify-items"))return!0;if(this.prefixes.options.flexbox===!1&&e.type==="decl"){let r=["order","justify-content","align-items","align-content"];if(e.prop.includes("flex")||r.includes(e.prop))return!0}return this.disabled(e,t)}disabled(e,t){if(!e)return!1;if(e._autoprefixerDisabled!==void 0)return e._autoprefixerDisabled;if(e.parent){let n=e.prev();if(n&&n.type==="comment"&&nA.test(n.text))return e._autoprefixerDisabled=!0,e._autoprefixerSelfDisabled=!0,!0}let r=null;if(e.nodes){let n;e.each(a=>{a.type==="comment"&&/(!\s*)?autoprefixer:\s*(off|on)/i.test(a.text)&&(typeof n!="undefined"?t.warn("Second Autoprefixer control comment was ignored. Autoprefixer applies control comment to whole block, not to next rules.",{node:a}):n=/on/i.test(a.text))}),n!==void 0&&(r=!n)}if(!e.nodes||r===null)if(e.parent){let n=this.disabled(e.parent,t);e.parent._autoprefixerSelfDisabled===!0?r=!1:r=n}else r=!1;return e._autoprefixerDisabled=r,r}reduceSpaces(e){let t=!1;if(this.prefixes.group(e).up(()=>(t=!0,!0)),t)return;let r=e.raw("before").split(` -`),n=r[r.length-1].length,a=!1;this.prefixes.group(e).down(s=>{r=s.raw("before").split(` -`);let o=r.length-1;r[o].length>n&&(a===!1&&(a=r[o].length-n),r[o]=r[o].slice(0,-a),s.raws.before=r.join(` -`))})}displayType(e){for(let t of e.parent.nodes)if(t.prop==="display"){if(t.value.includes("flex"))return"flex";if(t.value.includes("grid"))return"grid"}return!1}gridStatus(e,t){if(!e)return!1;if(e._autoprefixerGridStatus!==void 0)return e._autoprefixerGridStatus;let r=null;if(e.nodes){let n;e.each(a=>{if(a.type==="comment"&&sA.test(a.text)){let s=/:\s*autoplace/i.test(a.text),o=/no-autoplace/i.test(a.text);typeof n!="undefined"?t.warn("Second Autoprefixer grid control comment was ignored. Autoprefixer applies control comments to the whole block, not to the next rules.",{node:a}):s?n="autoplace":o?n=!0:n=/on/i.test(a.text)}}),n!==void 0&&(r=n)}if(e.type==="atrule"&&e.name==="supports"){let n=e.params;n.includes("grid")&&n.includes("auto")&&(r=!1)}if(!e.nodes||r===null)if(e.parent){let n=this.gridStatus(e.parent,t);e.parent._autoprefixerSelfDisabled===!0?r=!1:r=n}else typeof this.prefixes.options.grid!="undefined"?r=this.prefixes.options.grid:typeof h.env.AUTOPREFIXER_GRID!="undefined"?h.env.AUTOPREFIXER_GRID==="autoplace"?r="autoplace":r=!0:r=!1;return e._autoprefixerGridStatus=r,r}};eg.exports=Zm});var rg=v((w4,tg)=>{l();tg.exports={A:{A:{"2":"K E F G A B JC"},B:{"1":"C L M H N D O P Q R S T U V W X Y Z a b c d e f g h i j n o p q r s t u v w x y z I"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB 0B dB 1B eB fB gB hB iB jB kB lB mB nB oB m pB qB rB sB tB P Q R 2B S T U V W X Y Z a b c d e f g h i j n o p q r s t u v w x y z I uB 3B 4B","2":"0 1 KC zB J K E F G A B C L M H N D O k l LC MC"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB 0B dB 1B eB fB gB hB iB jB kB lB mB nB oB m pB qB rB sB tB P Q R S T U V W X Y Z a b c d e f g h i j n o p q r s t u v w x y z I uB 3B 4B","2":"0 1 2 3 4 5 6 7 J K E F G A B C L M H N D O k l"},E:{"1":"G A B C L M H D RC 6B vB wB 7B SC TC 8B 9B xB AC yB BC CC DC EC FC GC UC","2":"0 J K E F NC 5B OC PC QC"},F:{"1":"1 2 3 4 5 6 7 8 9 H N D O k l AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB m pB qB rB sB tB P Q R 2B S T U V W X Y Z a b c d e f g h i j wB","2":"G B C VC WC XC YC vB HC ZC"},G:{"1":"D fC gC hC iC jC kC lC mC nC oC pC qC rC sC tC 8B 9B xB AC yB BC CC DC EC FC GC","2":"F 5B aC IC bC cC dC eC"},H:{"1":"uC"},I:{"1":"I zC 0C","2":"zB J vC wC xC yC IC"},J:{"2":"E A"},K:{"1":"m","2":"A B C vB HC wB"},L:{"1":"I"},M:{"1":"uB"},N:{"2":"A B"},O:{"1":"xB"},P:{"1":"J k l 1C 2C 3C 4C 5C 6B 6C 7C 8C 9C AD yB BD CD DD"},Q:{"1":"7B"},R:{"1":"ED"},S:{"1":"FD GD"}},B:4,C:"CSS Feature Queries"}});var ag=v((b4,sg)=>{l();function ig(i){return i[i.length-1]}var ng={parse(i){let e=[""],t=[e];for(let r of i){if(r==="("){e=[""],ig(t).push(e),t.push(e);continue}if(r===")"){t.pop(),e=ig(t),e.push("");continue}e[e.length-1]+=r}return t[0]},stringify(i){let e="";for(let t of i){if(typeof t=="object"){e+=`(${ng.stringify(t)})`;continue}e+=t}return e}};sg.exports=ng});var cg=v((v4,fg)=>{l();var lA=rg(),{feature:uA}=($n(),Nn),{parse:fA}=ge(),cA=pt(),tl=ag(),pA=ke(),dA=le(),og=uA(lA),lg=[];for(let i in og.stats){let e=og.stats[i];for(let t in e){let r=e[t];/y/.test(r)&&lg.push(i+" "+t)}}var ug=class{constructor(e,t){this.Prefixes=e,this.all=t}prefixer(){if(this.prefixerCache)return this.prefixerCache;let e=this.all.browsers.selected.filter(r=>lg.includes(r)),t=new cA(this.all.browsers.data,e,this.all.options);return this.prefixerCache=new this.Prefixes(this.all.data,t,this.all.options),this.prefixerCache}parse(e){let t=e.split(":"),r=t[0],n=t[1];return n||(n=""),[r.trim(),n.trim()]}virtual(e){let[t,r]=this.parse(e),n=fA("a{}").first;return n.append({prop:t,value:r,raws:{before:""}}),n}prefixed(e){let t=this.virtual(e);if(this.disabled(t.first))return t.nodes;let r={warn:()=>null},n=this.prefixer().add[t.first.prop];n&&n.process&&n.process(t.first,r);for(let a of t.nodes){for(let s of this.prefixer().values("add",t.first.prop))s.process(a);pA.save(this.all,a)}return t.nodes}isNot(e){return typeof e=="string"&&/not\s*/i.test(e)}isOr(e){return typeof e=="string"&&/\s*or\s*/i.test(e)}isProp(e){return typeof e=="object"&&e.length===1&&typeof e[0]=="string"}isHack(e,t){return!new RegExp(`(\\(|\\s)${dA.escapeRegexp(t)}:`).test(e)}toRemove(e,t){let[r,n]=this.parse(e),a=this.all.unprefixed(r),s=this.all.cleaner();if(s.remove[r]&&s.remove[r].remove&&!this.isHack(t,a))return!0;for(let o of s.values("remove",a))if(o.check(n))return!0;return!1}remove(e,t){let r=0;for(;rtypeof t!="object"?t:t.length===1&&typeof t[0]=="object"?this.cleanBrackets(t[0]):this.cleanBrackets(t))}convert(e){let t=[""];for(let r of e)t.push([`${r.prop}: ${r.value}`]),t.push(" or ");return t[t.length-1]="",t}normalize(e){if(typeof e!="object")return e;if(e=e.filter(t=>t!==""),typeof e[0]=="string"){let t=e[0].trim();if(t.includes(":")||t==="selector"||t==="not selector")return[tl.stringify(e)]}return e.map(t=>this.normalize(t))}add(e,t){return e.map(r=>{if(this.isProp(r)){let n=this.prefixed(r[0]);return n.length>1?this.convert(n):r}return typeof r=="object"?this.add(r,t):r})}process(e){let t=tl.parse(e.params);t=this.normalize(t),t=this.remove(t,e.params),t=this.add(t,e.params),t=this.cleanBrackets(t),e.params=tl.stringify(t)}disabled(e){if(!this.all.options.grid&&(e.prop==="display"&&e.value.includes("grid")||e.prop.includes("grid")||e.prop==="justify-items"))return!0;if(this.all.options.flexbox===!1){if(e.prop==="display"&&e.value.includes("flex"))return!0;let t=["order","justify-content","align-items","align-content"];if(e.prop.includes("flex")||t.includes(e.prop))return!0}return!1}};fg.exports=ug});var hg=v((x4,dg)=>{l();var pg=class{constructor(e,t){this.prefix=t,this.prefixed=e.prefixed(this.prefix),this.regexp=e.regexp(this.prefix),this.prefixeds=e.possible().map(r=>[e.prefixed(r),e.regexp(r)]),this.unprefixed=e.name,this.nameRegexp=e.regexp()}isHack(e){let t=e.parent.index(e)+1,r=e.parent.nodes;for(;t{l();var{list:hA}=ge(),mA=hg(),gA=Ut(),yA=pt(),wA=le(),mg=class extends gA{constructor(e,t,r){super(e,t,r);this.regexpCache=new Map}check(e){return e.selector.includes(this.name)?!!e.selector.match(this.regexp()):!1}prefixed(e){return this.name.replace(/^(\W*)/,`$1${e}`)}regexp(e){if(!this.regexpCache.has(e)){let t=e?this.prefixed(e):this.name;this.regexpCache.set(e,new RegExp(`(^|[^:"'=])${wA.escapeRegexp(t)}`,"gi"))}return this.regexpCache.get(e)}possible(){return yA.prefixes()}prefixeds(e){if(e._autoprefixerPrefixeds){if(e._autoprefixerPrefixeds[this.name])return e._autoprefixerPrefixeds}else e._autoprefixerPrefixeds={};let t={};if(e.selector.includes(",")){let n=hA.comma(e.selector).filter(a=>a.includes(this.name));for(let a of this.possible())t[a]=n.map(s=>this.replace(s,a)).join(", ")}else for(let r of this.possible())t[r]=this.replace(e.selector,r);return e._autoprefixerPrefixeds[this.name]=t,e._autoprefixerPrefixeds}already(e,t,r){let n=e.parent.index(e)-1;for(;n>=0;){let a=e.parent.nodes[n];if(a.type!=="rule")return!1;let s=!1;for(let o in t[this.name]){let u=t[this.name][o];if(a.selector===u){if(r===o)return!0;s=!0;break}}if(!s)return!1;n-=1}return!1}replace(e,t){return e.replace(this.regexp(),`$1${this.prefixed(t)}`)}add(e,t){let r=this.prefixeds(e);if(this.already(e,r,t))return;let n=this.clone(e,{selector:r[this.name][t]});e.parent.insertBefore(e,n)}old(e){return new mA(this,e)}};gg.exports=mg});var bg=v((S4,wg)=>{l();var bA=Ut(),yg=class extends bA{add(e,t){let r=t+e.name;if(e.parent.some(s=>s.name===r&&s.params===e.params))return;let a=this.clone(e,{name:r});return e.parent.insertBefore(e,a)}process(e){let t=this.parentPrefix(e);for(let r of this.prefixes)(!t||t===r)&&this.add(e,r)}};wg.exports=yg});var xg=v((C4,vg)=>{l();var vA=Ht(),rl=class extends vA{prefixed(e){return e==="-webkit-"?":-webkit-full-screen":e==="-moz-"?":-moz-full-screen":`:${e}fullscreen`}};rl.names=[":fullscreen"];vg.exports=rl});var Sg=v((A4,kg)=>{l();var xA=Ht(),il=class extends xA{possible(){return super.possible().concat(["-moz- old","-ms- old"])}prefixed(e){return e==="-webkit-"?"::-webkit-input-placeholder":e==="-ms-"?"::-ms-input-placeholder":e==="-ms- old"?":-ms-input-placeholder":e==="-moz- old"?":-moz-placeholder":`::${e}placeholder`}};il.names=["::placeholder"];kg.exports=il});var Ag=v((_4,Cg)=>{l();var kA=Ht(),nl=class extends kA{prefixed(e){return e==="-ms-"?":-ms-input-placeholder":`:${e}placeholder-shown`}};nl.names=[":placeholder-shown"];Cg.exports=nl});var Og=v((O4,_g)=>{l();var SA=Ht(),CA=le(),sl=class extends SA{constructor(e,t,r){super(e,t,r);this.prefixes&&(this.prefixes=CA.uniq(this.prefixes.map(n=>"-webkit-")))}prefixed(e){return e==="-webkit-"?"::-webkit-file-upload-button":`::${e}file-selector-button`}};sl.names=["::file-selector-button"];_g.exports=sl});var pe=v((E4,Eg)=>{l();Eg.exports=function(i){let e;return i==="-webkit- 2009"||i==="-moz-"?e=2009:i==="-ms-"?e=2012:i==="-webkit-"&&(e="final"),i==="-webkit- 2009"&&(i="-webkit-"),[e,i]}});var Ig=v((T4,Dg)=>{l();var Tg=ge().list,Pg=pe(),AA=M(),Yt=class extends AA{prefixed(e,t){let r;return[r,t]=Pg(t),r===2009?t+"box-flex":super.prefixed(e,t)}normalize(){return"flex"}set(e,t){let r=Pg(t)[0];if(r===2009)return e.value=Tg.space(e.value)[0],e.value=Yt.oldValues[e.value]||e.value,super.set(e,t);if(r===2012){let n=Tg.space(e.value);n.length===3&&n[2]==="0"&&(e.value=n.slice(0,2).concat("0px").join(" "))}return super.set(e,t)}};Yt.names=["flex","box-flex"];Yt.oldValues={auto:"1",none:"0"};Dg.exports=Yt});var Mg=v((P4,Rg)=>{l();var qg=pe(),_A=M(),al=class extends _A{prefixed(e,t){let r;return[r,t]=qg(t),r===2009?t+"box-ordinal-group":r===2012?t+"flex-order":super.prefixed(e,t)}normalize(){return"order"}set(e,t){return qg(t)[0]===2009&&/\d/.test(e.value)?(e.value=(parseInt(e.value)+1).toString(),super.set(e,t)):super.set(e,t)}};al.names=["order","flex-order","box-ordinal-group"];Rg.exports=al});var Fg=v((D4,Bg)=>{l();var OA=M(),ol=class extends OA{check(e){let t=e.value;return!t.toLowerCase().includes("alpha(")&&!t.includes("DXImageTransform.Microsoft")&&!t.includes("data:image/svg+xml")}};ol.names=["filter"];Bg.exports=ol});var Ng=v((I4,Lg)=>{l();var EA=M(),ll=class extends EA{insert(e,t,r,n){if(t!=="-ms-")return super.insert(e,t,r);let a=this.clone(e),s=e.prop.replace(/end$/,"start"),o=t+e.prop.replace(/end$/,"span");if(!e.parent.some(u=>u.prop===o)){if(a.prop=o,e.value.includes("span"))a.value=e.value.replace(/span\s/i,"");else{let u;if(e.parent.walkDecls(s,c=>{u=c}),u){let c=Number(e.value)-Number(u.value)+"";a.value=c}else e.warn(n,`Can not prefix ${e.prop} (${s} is not found)`)}e.cloneBefore(a)}}};ll.names=["grid-row-end","grid-column-end"];Lg.exports=ll});var jg=v((q4,$g)=>{l();var TA=M(),ul=class extends TA{check(e){return!e.value.split(/\s+/).some(t=>{let r=t.toLowerCase();return r==="reverse"||r==="alternate-reverse"})}};ul.names=["animation","animation-direction"];$g.exports=ul});var Vg=v((R4,zg)=>{l();var PA=pe(),DA=M(),fl=class extends DA{insert(e,t,r){let n;if([n,t]=PA(t),n!==2009)return super.insert(e,t,r);let a=e.value.split(/\s+/).filter(d=>d!=="wrap"&&d!=="nowrap"&&"wrap-reverse");if(a.length===0||e.parent.some(d=>d.prop===t+"box-orient"||d.prop===t+"box-direction"))return;let o=a[0],u=o.includes("row")?"horizontal":"vertical",c=o.includes("reverse")?"reverse":"normal",f=this.clone(e);return f.prop=t+"box-orient",f.value=u,this.needCascade(e)&&(f.raws.before=this.calcBefore(r,e,t)),e.parent.insertBefore(e,f),f=this.clone(e),f.prop=t+"box-direction",f.value=c,this.needCascade(e)&&(f.raws.before=this.calcBefore(r,e,t)),e.parent.insertBefore(e,f)}};fl.names=["flex-flow","box-direction","box-orient"];zg.exports=fl});var Wg=v((M4,Ug)=>{l();var IA=pe(),qA=M(),cl=class extends qA{normalize(){return"flex"}prefixed(e,t){let r;return[r,t]=IA(t),r===2009?t+"box-flex":r===2012?t+"flex-positive":super.prefixed(e,t)}};cl.names=["flex-grow","flex-positive"];Ug.exports=cl});var Hg=v((B4,Gg)=>{l();var RA=pe(),MA=M(),pl=class extends MA{set(e,t){if(RA(t)[0]!==2009)return super.set(e,t)}};pl.names=["flex-wrap"];Gg.exports=pl});var Qg=v((F4,Yg)=>{l();var BA=M(),Qt=ht(),dl=class extends BA{insert(e,t,r,n){if(t!=="-ms-")return super.insert(e,t,r);let a=Qt.parse(e),[s,o]=Qt.translate(a,0,2),[u,c]=Qt.translate(a,1,3);[["grid-row",s],["grid-row-span",o],["grid-column",u],["grid-column-span",c]].forEach(([f,d])=>{Qt.insertDecl(e,f,d)}),Qt.warnTemplateSelectorNotFound(e,n),Qt.warnIfGridRowColumnExists(e,n)}};dl.names=["grid-area"];Yg.exports=dl});var Xg=v((L4,Jg)=>{l();var FA=M(),ni=ht(),hl=class extends FA{insert(e,t,r){if(t!=="-ms-")return super.insert(e,t,r);if(e.parent.some(s=>s.prop==="-ms-grid-row-align"))return;let[[n,a]]=ni.parse(e);a?(ni.insertDecl(e,"grid-row-align",n),ni.insertDecl(e,"grid-column-align",a)):(ni.insertDecl(e,"grid-row-align",n),ni.insertDecl(e,"grid-column-align",n))}};hl.names=["place-self"];Jg.exports=hl});var Zg=v((N4,Kg)=>{l();var LA=M(),ml=class extends LA{check(e){let t=e.value;return!t.includes("/")||t.includes("span")}normalize(e){return e.replace("-start","")}prefixed(e,t){let r=super.prefixed(e,t);return t==="-ms-"&&(r=r.replace("-start","")),r}};ml.names=["grid-row-start","grid-column-start"];Kg.exports=ml});var ry=v(($4,ty)=>{l();var ey=pe(),NA=M(),Jt=class extends NA{check(e){return e.parent&&!e.parent.some(t=>t.prop&&t.prop.startsWith("grid-"))}prefixed(e,t){let r;return[r,t]=ey(t),r===2012?t+"flex-item-align":super.prefixed(e,t)}normalize(){return"align-self"}set(e,t){let r=ey(t)[0];if(r===2012)return e.value=Jt.oldValues[e.value]||e.value,super.set(e,t);if(r==="final")return super.set(e,t)}};Jt.names=["align-self","flex-item-align"];Jt.oldValues={"flex-end":"end","flex-start":"start"};ty.exports=Jt});var ny=v((j4,iy)=>{l();var $A=M(),jA=le(),gl=class extends $A{constructor(e,t,r){super(e,t,r);this.prefixes&&(this.prefixes=jA.uniq(this.prefixes.map(n=>n==="-ms-"?"-webkit-":n)))}};gl.names=["appearance"];iy.exports=gl});var oy=v((z4,ay)=>{l();var sy=pe(),zA=M(),yl=class extends zA{normalize(){return"flex-basis"}prefixed(e,t){let r;return[r,t]=sy(t),r===2012?t+"flex-preferred-size":super.prefixed(e,t)}set(e,t){let r;if([r,t]=sy(t),r===2012||r==="final")return super.set(e,t)}};yl.names=["flex-basis","flex-preferred-size"];ay.exports=yl});var uy=v((V4,ly)=>{l();var VA=M(),wl=class extends VA{normalize(){return this.name.replace("box-image","border")}prefixed(e,t){let r=super.prefixed(e,t);return t==="-webkit-"&&(r=r.replace("border","box-image")),r}};wl.names=["mask-border","mask-border-source","mask-border-slice","mask-border-width","mask-border-outset","mask-border-repeat","mask-box-image","mask-box-image-source","mask-box-image-slice","mask-box-image-width","mask-box-image-outset","mask-box-image-repeat"];ly.exports=wl});var cy=v((U4,fy)=>{l();var UA=M(),Ne=class extends UA{insert(e,t,r){let n=e.prop==="mask-composite",a;n?a=e.value.split(","):a=e.value.match(Ne.regexp)||[],a=a.map(c=>c.trim()).filter(c=>c);let s=a.length,o;if(s&&(o=this.clone(e),o.value=a.map(c=>Ne.oldValues[c]||c).join(", "),a.includes("intersect")&&(o.value+=", xor"),o.prop=t+"mask-composite"),n)return s?(this.needCascade(e)&&(o.raws.before=this.calcBefore(r,e,t)),e.parent.insertBefore(e,o)):void 0;let u=this.clone(e);return u.prop=t+u.prop,s&&(u.value=u.value.replace(Ne.regexp,"")),this.needCascade(e)&&(u.raws.before=this.calcBefore(r,e,t)),e.parent.insertBefore(e,u),s?(this.needCascade(e)&&(o.raws.before=this.calcBefore(r,e,t)),e.parent.insertBefore(e,o)):e}};Ne.names=["mask","mask-composite"];Ne.oldValues={add:"source-over",subtract:"source-out",intersect:"source-in",exclude:"xor"};Ne.regexp=new RegExp(`\\s+(${Object.keys(Ne.oldValues).join("|")})\\b(?!\\))\\s*(?=[,])`,"ig");fy.exports=Ne});var hy=v((W4,dy)=>{l();var py=pe(),WA=M(),Xt=class extends WA{prefixed(e,t){let r;return[r,t]=py(t),r===2009?t+"box-align":r===2012?t+"flex-align":super.prefixed(e,t)}normalize(){return"align-items"}set(e,t){let r=py(t)[0];return(r===2009||r===2012)&&(e.value=Xt.oldValues[e.value]||e.value),super.set(e,t)}};Xt.names=["align-items","flex-align","box-align"];Xt.oldValues={"flex-end":"end","flex-start":"start"};dy.exports=Xt});var gy=v((G4,my)=>{l();var GA=M(),bl=class extends GA{set(e,t){return t==="-ms-"&&e.value==="contain"&&(e.value="element"),super.set(e,t)}insert(e,t,r){if(!(e.value==="all"&&t==="-ms-"))return super.insert(e,t,r)}};bl.names=["user-select"];my.exports=bl});var by=v((H4,wy)=>{l();var yy=pe(),HA=M(),vl=class extends HA{normalize(){return"flex-shrink"}prefixed(e,t){let r;return[r,t]=yy(t),r===2012?t+"flex-negative":super.prefixed(e,t)}set(e,t){let r;if([r,t]=yy(t),r===2012||r==="final")return super.set(e,t)}};vl.names=["flex-shrink","flex-negative"];wy.exports=vl});var xy=v((Y4,vy)=>{l();var YA=M(),xl=class extends YA{prefixed(e,t){return`${t}column-${e}`}normalize(e){return e.includes("inside")?"break-inside":e.includes("before")?"break-before":"break-after"}set(e,t){return(e.prop==="break-inside"&&e.value==="avoid-column"||e.value==="avoid-page")&&(e.value="avoid"),super.set(e,t)}insert(e,t,r){if(e.prop!=="break-inside")return super.insert(e,t,r);if(!(/region/i.test(e.value)||/page/i.test(e.value)))return super.insert(e,t,r)}};xl.names=["break-inside","page-break-inside","column-break-inside","break-before","page-break-before","column-break-before","break-after","page-break-after","column-break-after"];vy.exports=xl});var Sy=v((Q4,ky)=>{l();var QA=M(),kl=class extends QA{prefixed(e,t){return t+"print-color-adjust"}normalize(){return"color-adjust"}};kl.names=["color-adjust","print-color-adjust"];ky.exports=kl});var Ay=v((J4,Cy)=>{l();var JA=M(),Kt=class extends JA{insert(e,t,r){if(t==="-ms-"){let n=this.set(this.clone(e),t);this.needCascade(e)&&(n.raws.before=this.calcBefore(r,e,t));let a="ltr";return e.parent.nodes.forEach(s=>{s.prop==="direction"&&(s.value==="rtl"||s.value==="ltr")&&(a=s.value)}),n.value=Kt.msValues[a][e.value]||e.value,e.parent.insertBefore(e,n)}return super.insert(e,t,r)}};Kt.names=["writing-mode"];Kt.msValues={ltr:{"horizontal-tb":"lr-tb","vertical-rl":"tb-rl","vertical-lr":"tb-lr"},rtl:{"horizontal-tb":"rl-tb","vertical-rl":"bt-rl","vertical-lr":"bt-lr"}};Cy.exports=Kt});var Oy=v((X4,_y)=>{l();var XA=M(),Sl=class extends XA{set(e,t){return e.value=e.value.replace(/\s+fill(\s)/,"$1"),super.set(e,t)}};Sl.names=["border-image"];_y.exports=Sl});var Py=v((K4,Ty)=>{l();var Ey=pe(),KA=M(),Zt=class extends KA{prefixed(e,t){let r;return[r,t]=Ey(t),r===2012?t+"flex-line-pack":super.prefixed(e,t)}normalize(){return"align-content"}set(e,t){let r=Ey(t)[0];if(r===2012)return e.value=Zt.oldValues[e.value]||e.value,super.set(e,t);if(r==="final")return super.set(e,t)}};Zt.names=["align-content","flex-line-pack"];Zt.oldValues={"flex-end":"end","flex-start":"start","space-between":"justify","space-around":"distribute"};Ty.exports=Zt});var Iy=v((Z4,Dy)=>{l();var ZA=M(),Se=class extends ZA{prefixed(e,t){return t==="-moz-"?t+(Se.toMozilla[e]||e):super.prefixed(e,t)}normalize(e){return Se.toNormal[e]||e}};Se.names=["border-radius"];Se.toMozilla={};Se.toNormal={};for(let i of["top","bottom"])for(let e of["left","right"]){let t=`border-${i}-${e}-radius`,r=`border-radius-${i}${e}`;Se.names.push(t),Se.names.push(r),Se.toMozilla[t]=r,Se.toNormal[r]=t}Dy.exports=Se});var Ry=v((eI,qy)=>{l();var e_=M(),Cl=class extends e_{prefixed(e,t){return e.includes("-start")?t+e.replace("-block-start","-before"):t+e.replace("-block-end","-after")}normalize(e){return e.includes("-before")?e.replace("-before","-block-start"):e.replace("-after","-block-end")}};Cl.names=["border-block-start","border-block-end","margin-block-start","margin-block-end","padding-block-start","padding-block-end","border-before","border-after","margin-before","margin-after","padding-before","padding-after"];qy.exports=Cl});var By=v((tI,My)=>{l();var t_=M(),{parseTemplate:r_,warnMissedAreas:i_,getGridGap:n_,warnGridGap:s_,inheritGridGap:a_}=ht(),Al=class extends t_{insert(e,t,r,n){if(t!=="-ms-")return super.insert(e,t,r);if(e.parent.some(m=>m.prop==="-ms-grid-rows"))return;let a=n_(e),s=a_(e,a),{rows:o,columns:u,areas:c}=r_({decl:e,gap:s||a}),f=Object.keys(c).length>0,d=Boolean(o),p=Boolean(u);return s_({gap:a,hasColumns:p,decl:e,result:n}),i_(c,e,n),(d&&p||f)&&e.cloneBefore({prop:"-ms-grid-rows",value:o,raws:{}}),p&&e.cloneBefore({prop:"-ms-grid-columns",value:u,raws:{}}),e}};Al.names=["grid-template"];My.exports=Al});var Ly=v((rI,Fy)=>{l();var o_=M(),_l=class extends o_{prefixed(e,t){return t+e.replace("-inline","")}normalize(e){return e.replace(/(margin|padding|border)-(start|end)/,"$1-inline-$2")}};_l.names=["border-inline-start","border-inline-end","margin-inline-start","margin-inline-end","padding-inline-start","padding-inline-end","border-start","border-end","margin-start","margin-end","padding-start","padding-end"];Fy.exports=_l});var $y=v((iI,Ny)=>{l();var l_=M(),Ol=class extends l_{check(e){return!e.value.includes("flex-")&&e.value!=="baseline"}prefixed(e,t){return t+"grid-row-align"}normalize(){return"align-self"}};Ol.names=["grid-row-align"];Ny.exports=Ol});var zy=v((nI,jy)=>{l();var u_=M(),er=class extends u_{keyframeParents(e){let{parent:t}=e;for(;t;){if(t.type==="atrule"&&t.name==="keyframes")return!0;({parent:t}=t)}return!1}contain3d(e){if(e.prop==="transform-origin")return!1;for(let t of er.functions3d)if(e.value.includes(`${t}(`))return!0;return!1}set(e,t){return e=super.set(e,t),t==="-ms-"&&(e.value=e.value.replace(/rotatez/gi,"rotate")),e}insert(e,t,r){if(t==="-ms-"){if(!this.contain3d(e)&&!this.keyframeParents(e))return super.insert(e,t,r)}else if(t==="-o-"){if(!this.contain3d(e))return super.insert(e,t,r)}else return super.insert(e,t,r)}};er.names=["transform","transform-origin"];er.functions3d=["matrix3d","translate3d","translateZ","scale3d","scaleZ","rotate3d","rotateX","rotateY","perspective"];jy.exports=er});var Wy=v((sI,Uy)=>{l();var Vy=pe(),f_=M(),El=class extends f_{normalize(){return"flex-direction"}insert(e,t,r){let n;if([n,t]=Vy(t),n!==2009)return super.insert(e,t,r);if(e.parent.some(f=>f.prop===t+"box-orient"||f.prop===t+"box-direction"))return;let s=e.value,o,u;s==="inherit"||s==="initial"||s==="unset"?(o=s,u=s):(o=s.includes("row")?"horizontal":"vertical",u=s.includes("reverse")?"reverse":"normal");let c=this.clone(e);return c.prop=t+"box-orient",c.value=o,this.needCascade(e)&&(c.raws.before=this.calcBefore(r,e,t)),e.parent.insertBefore(e,c),c=this.clone(e),c.prop=t+"box-direction",c.value=u,this.needCascade(e)&&(c.raws.before=this.calcBefore(r,e,t)),e.parent.insertBefore(e,c)}old(e,t){let r;return[r,t]=Vy(t),r===2009?[t+"box-orient",t+"box-direction"]:super.old(e,t)}};El.names=["flex-direction","box-direction","box-orient"];Uy.exports=El});var Hy=v((aI,Gy)=>{l();var c_=M(),Tl=class extends c_{check(e){return e.value==="pixelated"}prefixed(e,t){return t==="-ms-"?"-ms-interpolation-mode":super.prefixed(e,t)}set(e,t){return t!=="-ms-"?super.set(e,t):(e.prop="-ms-interpolation-mode",e.value="nearest-neighbor",e)}normalize(){return"image-rendering"}process(e,t){return super.process(e,t)}};Tl.names=["image-rendering","interpolation-mode"];Gy.exports=Tl});var Qy=v((oI,Yy)=>{l();var p_=M(),d_=le(),Pl=class extends p_{constructor(e,t,r){super(e,t,r);this.prefixes&&(this.prefixes=d_.uniq(this.prefixes.map(n=>n==="-ms-"?"-webkit-":n)))}};Pl.names=["backdrop-filter"];Yy.exports=Pl});var Xy=v((lI,Jy)=>{l();var h_=M(),m_=le(),Dl=class extends h_{constructor(e,t,r){super(e,t,r);this.prefixes&&(this.prefixes=m_.uniq(this.prefixes.map(n=>n==="-ms-"?"-webkit-":n)))}check(e){return e.value.toLowerCase()==="text"}};Dl.names=["background-clip"];Jy.exports=Dl});var Zy=v((uI,Ky)=>{l();var g_=M(),y_=["none","underline","overline","line-through","blink","inherit","initial","unset"],Il=class extends g_{check(e){return e.value.split(/\s+/).some(t=>!y_.includes(t))}};Il.names=["text-decoration"];Ky.exports=Il});var rw=v((fI,tw)=>{l();var ew=pe(),w_=M(),tr=class extends w_{prefixed(e,t){let r;return[r,t]=ew(t),r===2009?t+"box-pack":r===2012?t+"flex-pack":super.prefixed(e,t)}normalize(){return"justify-content"}set(e,t){let r=ew(t)[0];if(r===2009||r===2012){let n=tr.oldValues[e.value]||e.value;if(e.value=n,r!==2009||n!=="distribute")return super.set(e,t)}else if(r==="final")return super.set(e,t)}};tr.names=["justify-content","flex-pack","box-pack"];tr.oldValues={"flex-end":"end","flex-start":"start","space-between":"justify","space-around":"distribute"};tw.exports=tr});var nw=v((cI,iw)=>{l();var b_=M(),ql=class extends b_{set(e,t){let r=e.value.toLowerCase();return t==="-webkit-"&&!r.includes(" ")&&r!=="contain"&&r!=="cover"&&(e.value=e.value+" "+e.value),super.set(e,t)}};ql.names=["background-size"];iw.exports=ql});var aw=v((pI,sw)=>{l();var v_=M(),Rl=ht(),Ml=class extends v_{insert(e,t,r){if(t!=="-ms-")return super.insert(e,t,r);let n=Rl.parse(e),[a,s]=Rl.translate(n,0,1);n[0]&&n[0].includes("span")&&(s=n[0].join("").replace(/\D/g,"")),[[e.prop,a],[`${e.prop}-span`,s]].forEach(([u,c])=>{Rl.insertDecl(e,u,c)})}};Ml.names=["grid-row","grid-column"];sw.exports=Ml});var uw=v((dI,lw)=>{l();var x_=M(),{prefixTrackProp:ow,prefixTrackValue:k_,autoplaceGridItems:S_,getGridGap:C_,inheritGridGap:A_}=ht(),__=el(),Bl=class extends x_{prefixed(e,t){return t==="-ms-"?ow({prop:e,prefix:t}):super.prefixed(e,t)}normalize(e){return e.replace(/^grid-(rows|columns)/,"grid-template-$1")}insert(e,t,r,n){if(t!=="-ms-")return super.insert(e,t,r);let{parent:a,prop:s,value:o}=e,u=s.includes("rows"),c=s.includes("columns"),f=a.some(k=>k.prop==="grid-template"||k.prop==="grid-template-areas");if(f&&u)return!1;let d=new __({options:{}}),p=d.gridStatus(a,n),m=C_(e);m=A_(e,m)||m;let b=u?m.row:m.column;(p==="no-autoplace"||p===!0)&&!f&&(b=null);let x=k_({value:o,gap:b});e.cloneBefore({prop:ow({prop:s,prefix:t}),value:x});let y=a.nodes.find(k=>k.prop==="grid-auto-flow"),w="row";if(y&&!d.disabled(y,n)&&(w=y.value.trim()),p==="autoplace"){let k=a.nodes.find(_=>_.prop==="grid-template-rows");if(!k&&f)return;if(!k&&!f){e.warn(n,"Autoplacement does not work without grid-template-rows property");return}!a.nodes.find(_=>_.prop==="grid-template-columns")&&!f&&e.warn(n,"Autoplacement does not work without grid-template-columns property"),c&&!f&&S_(e,n,m,w)}}};Bl.names=["grid-template-rows","grid-template-columns","grid-rows","grid-columns"];lw.exports=Bl});var cw=v((hI,fw)=>{l();var O_=M(),Fl=class extends O_{check(e){return!e.value.includes("flex-")&&e.value!=="baseline"}prefixed(e,t){return t+"grid-column-align"}normalize(){return"justify-self"}};Fl.names=["grid-column-align"];fw.exports=Fl});var dw=v((mI,pw)=>{l();var E_=M(),Ll=class extends E_{prefixed(e,t){return t+"scroll-chaining"}normalize(){return"overscroll-behavior"}set(e,t){return e.value==="auto"?e.value="chained":(e.value==="none"||e.value==="contain")&&(e.value="none"),super.set(e,t)}};Ll.names=["overscroll-behavior","scroll-chaining"];pw.exports=Ll});var gw=v((gI,mw)=>{l();var T_=M(),{parseGridAreas:P_,warnMissedAreas:D_,prefixTrackProp:I_,prefixTrackValue:hw,getGridGap:q_,warnGridGap:R_,inheritGridGap:M_}=ht();function B_(i){return i.trim().slice(1,-1).split(/["']\s*["']?/g)}var Nl=class extends T_{insert(e,t,r,n){if(t!=="-ms-")return super.insert(e,t,r);let a=!1,s=!1,o=e.parent,u=q_(e);u=M_(e,u)||u,o.walkDecls(/-ms-grid-rows/,d=>d.remove()),o.walkDecls(/grid-template-(rows|columns)/,d=>{if(d.prop==="grid-template-rows"){s=!0;let{prop:p,value:m}=d;d.cloneBefore({prop:I_({prop:p,prefix:t}),value:hw({value:m,gap:u.row})})}else a=!0});let c=B_(e.value);a&&!s&&u.row&&c.length>1&&e.cloneBefore({prop:"-ms-grid-rows",value:hw({value:`repeat(${c.length}, auto)`,gap:u.row}),raws:{}}),R_({gap:u,hasColumns:a,decl:e,result:n});let f=P_({rows:c,gap:u});return D_(f,e,n),e}};Nl.names=["grid-template-areas"];mw.exports=Nl});var ww=v((yI,yw)=>{l();var F_=M(),$l=class extends F_{set(e,t){return t==="-webkit-"&&(e.value=e.value.replace(/\s*(right|left)\s*/i,"")),super.set(e,t)}};$l.names=["text-emphasis-position"];yw.exports=$l});var vw=v((wI,bw)=>{l();var L_=M(),jl=class extends L_{set(e,t){return e.prop==="text-decoration-skip-ink"&&e.value==="auto"?(e.prop=t+"text-decoration-skip",e.value="ink",e):super.set(e,t)}};jl.names=["text-decoration-skip-ink","text-decoration-skip"];bw.exports=jl});var _w=v((bI,Aw)=>{l();"use strict";Aw.exports={wrap:xw,limit:kw,validate:Sw,test:zl,curry:N_,name:Cw};function xw(i,e,t){var r=e-i;return((t-i)%r+r)%r+i}function kw(i,e,t){return Math.max(i,Math.min(e,t))}function Sw(i,e,t,r,n){if(!zl(i,e,t,r,n))throw new Error(t+" is outside of range ["+i+","+e+")");return t}function zl(i,e,t,r,n){return!(te||n&&t===e||r&&t===i)}function Cw(i,e,t,r){return(t?"(":"[")+i+","+e+(r?")":"]")}function N_(i,e,t,r){var n=Cw.bind(null,i,e,t,r);return{wrap:xw.bind(null,i,e),limit:kw.bind(null,i,e),validate:function(a){return Sw(i,e,a,t,r)},test:function(a){return zl(i,e,a,t,r)},toString:n,name:n}}});var Tw=v((vI,Ew)=>{l();var Vl=Gn(),$_=_w(),j_=Gt(),z_=ke(),V_=le(),Ow=/top|left|right|bottom/gi,Qe=class extends z_{replace(e,t){let r=Vl(e);for(let n of r.nodes)if(n.type==="function"&&n.value===this.name)if(n.nodes=this.newDirection(n.nodes),n.nodes=this.normalize(n.nodes),t==="-webkit- old"){if(!this.oldWebkit(n))return!1}else n.nodes=this.convertDirection(n.nodes),n.value=t+n.value;return r.toString()}replaceFirst(e,...t){return t.map(n=>n===" "?{type:"space",value:n}:{type:"word",value:n}).concat(e.slice(1))}normalizeUnit(e,t){return`${parseFloat(e)/t*360}deg`}normalize(e){if(!e[0])return e;if(/-?\d+(.\d+)?grad/.test(e[0].value))e[0].value=this.normalizeUnit(e[0].value,400);else if(/-?\d+(.\d+)?rad/.test(e[0].value))e[0].value=this.normalizeUnit(e[0].value,2*Math.PI);else if(/-?\d+(.\d+)?turn/.test(e[0].value))e[0].value=this.normalizeUnit(e[0].value,1);else if(e[0].value.includes("deg")){let t=parseFloat(e[0].value);t=$_.wrap(0,360,t),e[0].value=`${t}deg`}return e[0].value==="0deg"?e=this.replaceFirst(e,"to"," ","top"):e[0].value==="90deg"?e=this.replaceFirst(e,"to"," ","right"):e[0].value==="180deg"?e=this.replaceFirst(e,"to"," ","bottom"):e[0].value==="270deg"&&(e=this.replaceFirst(e,"to"," ","left")),e}newDirection(e){if(e[0].value==="to"||(Ow.lastIndex=0,!Ow.test(e[0].value)))return e;e.unshift({type:"word",value:"to"},{type:"space",value:" "});for(let t=2;t0&&(e[0].value==="to"?this.fixDirection(e):e[0].value.includes("deg")?this.fixAngle(e):this.isRadial(e)&&this.fixRadial(e)),e}fixDirection(e){e.splice(0,2);for(let t of e){if(t.type==="div")break;t.type==="word"&&(t.value=this.revertDirection(t.value))}}fixAngle(e){let t=e[0].value;t=parseFloat(t),t=Math.abs(450-t)%360,t=this.roundFloat(t,3),e[0].value=`${t}deg`}fixRadial(e){let t=[],r=[],n,a,s,o,u;for(o=0;o{l();var U_=Gt(),W_=ke();function Pw(i){return new RegExp(`(^|[\\s,(])(${i}($|[\\s),]))`,"gi")}var Ul=class extends W_{regexp(){return this.regexpCache||(this.regexpCache=Pw(this.name)),this.regexpCache}isStretch(){return this.name==="stretch"||this.name==="fill"||this.name==="fill-available"}replace(e,t){return t==="-moz-"&&this.isStretch()?e.replace(this.regexp(),"$1-moz-available$3"):t==="-webkit-"&&this.isStretch()?e.replace(this.regexp(),"$1-webkit-fill-available$3"):super.replace(e,t)}old(e){let t=e+this.name;return this.isStretch()&&(e==="-moz-"?t="-moz-available":e==="-webkit-"&&(t="-webkit-fill-available")),new U_(this.name,t,t,Pw(t))}add(e,t){if(!(e.prop.includes("grid")&&t!=="-webkit-"))return super.add(e,t)}};Ul.names=["max-content","min-content","fit-content","fill","fill-available","stretch"];Dw.exports=Ul});var Mw=v((kI,Rw)=>{l();var qw=Gt(),G_=ke(),Wl=class extends G_{replace(e,t){return t==="-webkit-"?e.replace(this.regexp(),"$1-webkit-optimize-contrast"):t==="-moz-"?e.replace(this.regexp(),"$1-moz-crisp-edges"):super.replace(e,t)}old(e){return e==="-webkit-"?new qw(this.name,"-webkit-optimize-contrast"):e==="-moz-"?new qw(this.name,"-moz-crisp-edges"):super.old(e)}};Wl.names=["pixelated"];Rw.exports=Wl});var Fw=v((SI,Bw)=>{l();var H_=ke(),Gl=class extends H_{replace(e,t){let r=super.replace(e,t);return t==="-webkit-"&&(r=r.replace(/("[^"]+"|'[^']+')(\s+\d+\w)/gi,"url($1)$2")),r}};Gl.names=["image-set"];Bw.exports=Gl});var Nw=v((CI,Lw)=>{l();var Y_=ge().list,Q_=ke(),Hl=class extends Q_{replace(e,t){return Y_.space(e).map(r=>{if(r.slice(0,+this.name.length+1)!==this.name+"(")return r;let n=r.lastIndexOf(")"),a=r.slice(n+1),s=r.slice(this.name.length+1,n);if(t==="-webkit-"){let o=s.match(/\d*.?\d+%?/);o?(s=s.slice(o[0].length).trim(),s+=`, ${o[0]}`):s+=", 0.5"}return t+this.name+"("+s+")"+a}).join(" ")}};Hl.names=["cross-fade"];Lw.exports=Hl});var jw=v((AI,$w)=>{l();var J_=pe(),X_=Gt(),K_=ke(),Yl=class extends K_{constructor(e,t){super(e,t);e==="display-flex"&&(this.name="flex")}check(e){return e.prop==="display"&&e.value===this.name}prefixed(e){let t,r;return[t,e]=J_(e),t===2009?this.name==="flex"?r="box":r="inline-box":t===2012?this.name==="flex"?r="flexbox":r="inline-flexbox":t==="final"&&(r=this.name),e+r}replace(e,t){return this.prefixed(t)}old(e){let t=this.prefixed(e);if(!!t)return new X_(this.name,t)}};Yl.names=["display-flex","inline-flex"];$w.exports=Yl});var Vw=v((_I,zw)=>{l();var Z_=ke(),Ql=class extends Z_{constructor(e,t){super(e,t);e==="display-grid"&&(this.name="grid")}check(e){return e.prop==="display"&&e.value===this.name}};Ql.names=["display-grid","inline-grid"];zw.exports=Ql});var Ww=v((OI,Uw)=>{l();var e5=ke(),Jl=class extends e5{constructor(e,t){super(e,t);e==="filter-function"&&(this.name="filter")}};Jl.names=["filter","filter-function"];Uw.exports=Jl});var Qw=v((EI,Yw)=>{l();var Gw=ii(),B=M(),Hw=Em(),t5=Gm(),r5=el(),i5=cg(),Xl=pt(),rr=Ht(),n5=bg(),$e=ke(),ir=le(),s5=xg(),a5=Sg(),o5=Ag(),l5=Og(),u5=Ig(),f5=Mg(),c5=Fg(),p5=Ng(),d5=jg(),h5=Vg(),m5=Wg(),g5=Hg(),y5=Qg(),w5=Xg(),b5=Zg(),v5=ry(),x5=ny(),k5=oy(),S5=uy(),C5=cy(),A5=hy(),_5=gy(),O5=by(),E5=xy(),T5=Sy(),P5=Ay(),D5=Oy(),I5=Py(),q5=Iy(),R5=Ry(),M5=By(),B5=Ly(),F5=$y(),L5=zy(),N5=Wy(),$5=Hy(),j5=Qy(),z5=Xy(),V5=Zy(),U5=rw(),W5=nw(),G5=aw(),H5=uw(),Y5=cw(),Q5=dw(),J5=gw(),X5=ww(),K5=vw(),Z5=Tw(),eO=Iw(),tO=Mw(),rO=Fw(),iO=Nw(),nO=jw(),sO=Vw(),aO=Ww();rr.hack(s5);rr.hack(a5);rr.hack(o5);rr.hack(l5);B.hack(u5);B.hack(f5);B.hack(c5);B.hack(p5);B.hack(d5);B.hack(h5);B.hack(m5);B.hack(g5);B.hack(y5);B.hack(w5);B.hack(b5);B.hack(v5);B.hack(x5);B.hack(k5);B.hack(S5);B.hack(C5);B.hack(A5);B.hack(_5);B.hack(O5);B.hack(E5);B.hack(T5);B.hack(P5);B.hack(D5);B.hack(I5);B.hack(q5);B.hack(R5);B.hack(M5);B.hack(B5);B.hack(F5);B.hack(L5);B.hack(N5);B.hack($5);B.hack(j5);B.hack(z5);B.hack(V5);B.hack(U5);B.hack(W5);B.hack(G5);B.hack(H5);B.hack(Y5);B.hack(Q5);B.hack(J5);B.hack(X5);B.hack(K5);$e.hack(Z5);$e.hack(eO);$e.hack(tO);$e.hack(rO);$e.hack(iO);$e.hack(nO);$e.hack(sO);$e.hack(aO);var Kl=new Map,si=class{constructor(e,t,r={}){this.data=e,this.browsers=t,this.options=r,[this.add,this.remove]=this.preprocess(this.select(this.data)),this.transition=new t5(this),this.processor=new r5(this)}cleaner(){if(this.cleanerCache)return this.cleanerCache;if(this.browsers.selected.length){let e=new Xl(this.browsers.data,[]);this.cleanerCache=new si(this.data,e,this.options)}else return this;return this.cleanerCache}select(e){let t={add:{},remove:{}};for(let r in e){let n=e[r],a=n.browsers.map(u=>{let c=u.split(" ");return{browser:`${c[0]} ${c[1]}`,note:c[2]}}),s=a.filter(u=>u.note).map(u=>`${this.browsers.prefix(u.browser)} ${u.note}`);s=ir.uniq(s),a=a.filter(u=>this.browsers.isSelected(u.browser)).map(u=>{let c=this.browsers.prefix(u.browser);return u.note?`${c} ${u.note}`:c}),a=this.sort(ir.uniq(a)),this.options.flexbox==="no-2009"&&(a=a.filter(u=>!u.includes("2009")));let o=n.browsers.map(u=>this.browsers.prefix(u));n.mistakes&&(o=o.concat(n.mistakes)),o=o.concat(s),o=ir.uniq(o),a.length?(t.add[r]=a,a.length!a.includes(u)))):t.remove[r]=o}return t}sort(e){return e.sort((t,r)=>{let n=ir.removeNote(t).length,a=ir.removeNote(r).length;return n===a?r.length-t.length:a-n})}preprocess(e){let t={selectors:[],"@supports":new i5(si,this)};for(let n in e.add){let a=e.add[n];if(n==="@keyframes"||n==="@viewport")t[n]=new n5(n,a,this);else if(n==="@resolution")t[n]=new Hw(n,a,this);else if(this.data[n].selector)t.selectors.push(rr.load(n,a,this));else{let s=this.data[n].props;if(s){let o=$e.load(n,a,this);for(let u of s)t[u]||(t[u]={values:[]}),t[u].values.push(o)}else{let o=t[n]&&t[n].values||[];t[n]=B.load(n,a,this),t[n].values=o}}}let r={selectors:[]};for(let n in e.remove){let a=e.remove[n];if(this.data[n].selector){let s=rr.load(n,a);for(let o of a)r.selectors.push(s.old(o))}else if(n==="@keyframes"||n==="@viewport")for(let s of a){let o=`@${s}${n.slice(1)}`;r[o]={remove:!0}}else if(n==="@resolution")r[n]=new Hw(n,a,this);else{let s=this.data[n].props;if(s){let o=$e.load(n,[],this);for(let u of a){let c=o.old(u);if(c)for(let f of s)r[f]||(r[f]={}),r[f].values||(r[f].values=[]),r[f].values.push(c)}}else for(let o of a){let u=this.decl(n).old(n,o);if(n==="align-self"){let c=t[n]&&t[n].prefixes;if(c){if(o==="-webkit- 2009"&&c.includes("-webkit-"))continue;if(o==="-webkit-"&&c.includes("-webkit- 2009"))continue}}for(let c of u)r[c]||(r[c]={}),r[c].remove=!0}}}return[t,r]}decl(e){return Kl.has(e)||Kl.set(e,B.load(e)),Kl.get(e)}unprefixed(e){let t=this.normalize(Gw.unprefixed(e));return t==="flex-direction"&&(t="flex-flow"),t}normalize(e){return this.decl(e).normalize(e)}prefixed(e,t){return e=Gw.unprefixed(e),this.decl(e).prefixed(e,t)}values(e,t){let r=this[e],n=r["*"]&&r["*"].values,a=r[t]&&r[t].values;return n&&a?ir.uniq(n.concat(a)):n||a||[]}group(e){let t=e.parent,r=t.index(e),{length:n}=t.nodes,a=this.unprefixed(e.prop),s=(o,u)=>{for(r+=o;r>=0&&r{l();Jw.exports={"backdrop-filter":{feature:"css-backdrop-filter",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5","safari 16.5"]},element:{props:["background","background-image","border-image","mask","list-style","list-style-image","content","mask-image"],feature:"css-element-function",browsers:["firefox 114"]},"user-select":{mistakes:["-khtml-"],feature:"user-select-none",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5","safari 16.5"]},"background-clip":{feature:"background-clip-text",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},hyphens:{feature:"css-hyphens",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5","safari 16.5"]},fill:{props:["width","min-width","max-width","height","min-height","max-height","inline-size","min-inline-size","max-inline-size","block-size","min-block-size","max-block-size","grid","grid-template","grid-template-rows","grid-template-columns","grid-auto-columns","grid-auto-rows"],feature:"intrinsic-width",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"fill-available":{props:["width","min-width","max-width","height","min-height","max-height","inline-size","min-inline-size","max-inline-size","block-size","min-block-size","max-block-size","grid","grid-template","grid-template-rows","grid-template-columns","grid-auto-columns","grid-auto-rows"],feature:"intrinsic-width",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},stretch:{props:["width","min-width","max-width","height","min-height","max-height","inline-size","min-inline-size","max-inline-size","block-size","min-block-size","max-block-size","grid","grid-template","grid-template-rows","grid-template-columns","grid-auto-columns","grid-auto-rows"],feature:"intrinsic-width",browsers:["firefox 114"]},"fit-content":{props:["width","min-width","max-width","height","min-height","max-height","inline-size","min-inline-size","max-inline-size","block-size","min-block-size","max-block-size","grid","grid-template","grid-template-rows","grid-template-columns","grid-auto-columns","grid-auto-rows"],feature:"intrinsic-width",browsers:["firefox 114"]},"text-decoration-style":{feature:"text-decoration",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5"]},"text-decoration-color":{feature:"text-decoration",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5"]},"text-decoration-line":{feature:"text-decoration",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5"]},"text-decoration":{feature:"text-decoration",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5"]},"text-decoration-skip":{feature:"text-decoration",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5"]},"text-decoration-skip-ink":{feature:"text-decoration",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5"]},"text-size-adjust":{feature:"text-size-adjust",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5"]},"mask-clip":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-composite":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-image":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-origin":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-repeat":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-border-repeat":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-border-source":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},mask:{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-position":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-size":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-border":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-border-outset":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-border-width":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-border-slice":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"clip-path":{feature:"css-clip-path",browsers:["samsung 21"]},"box-decoration-break":{feature:"css-boxdecorationbreak",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5","opera 99","safari 16.5","samsung 21"]},appearance:{feature:"css-appearance",browsers:["samsung 21"]},"image-set":{props:["background","background-image","border-image","cursor","mask","mask-image","list-style","list-style-image","content"],feature:"css-image-set",browsers:["and_uc 15.5","chrome 109","samsung 21"]},"cross-fade":{props:["background","background-image","border-image","mask","list-style","list-style-image","content","mask-image"],feature:"css-cross-fade",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},isolate:{props:["unicode-bidi"],feature:"css-unicode-bidi",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5","safari 16.5"]},"color-adjust":{feature:"css-color-adjust",browsers:["chrome 109","chrome 113","chrome 114","edge 114","opera 99"]}}});var Zw=v((PI,Kw)=>{l();Kw.exports={}});var ib=v((DI,rb)=>{l();var oO=zo(),{agents:lO}=($n(),Nn),Zl=hm(),uO=pt(),fO=Qw(),cO=Xw(),pO=Zw(),eb={browsers:lO,prefixes:cO},tb=` - Replace Autoprefixer \`browsers\` option to Browserslist config. - Use \`browserslist\` key in \`package.json\` or \`.browserslistrc\` file. - - Using \`browsers\` option can cause errors. Browserslist config can - be used for Babel, Autoprefixer, postcss-normalize and other tools. - - If you really need to use option, rename it to \`overrideBrowserslist\`. - - Learn more at: - https://github.com/browserslist/browserslist#readme - https://twitter.com/browserslist - -`;function dO(i){return Object.prototype.toString.apply(i)==="[object Object]"}var eu=new Map;function hO(i,e){e.browsers.selected.length!==0&&(e.add.selectors.length>0||Object.keys(e.add).length>2||i.warn(`Autoprefixer target browsers do not need any prefixes.You do not need Autoprefixer anymore. -Check your Browserslist config to be sure that your targets are set up correctly. - - Learn more at: - https://github.com/postcss/autoprefixer#readme - https://github.com/browserslist/browserslist#readme - -`))}rb.exports=nr;function nr(...i){let e;if(i.length===1&&dO(i[0])?(e=i[0],i=void 0):i.length===0||i.length===1&&!i[0]?i=void 0:i.length<=2&&(Array.isArray(i[0])||!i[0])?(e=i[1],i=i[0]):typeof i[i.length-1]=="object"&&(e=i.pop()),e||(e={}),e.browser)throw new Error("Change `browser` option to `overrideBrowserslist` in Autoprefixer");if(e.browserslist)throw new Error("Change `browserslist` option to `overrideBrowserslist` in Autoprefixer");e.overrideBrowserslist?i=e.overrideBrowserslist:e.browsers&&(typeof console!="undefined"&&console.warn&&(Zl.red?console.warn(Zl.red(tb.replace(/`[^`]+`/g,n=>Zl.yellow(n.slice(1,-1))))):console.warn(tb)),i=e.browsers);let t={ignoreUnknownVersions:e.ignoreUnknownVersions,stats:e.stats,env:e.env};function r(n){let a=eb,s=new uO(a.browsers,i,n,t),o=s.selected.join(", ")+JSON.stringify(e);return eu.has(o)||eu.set(o,new fO(a.prefixes,s,e)),eu.get(o)}return{postcssPlugin:"autoprefixer",prepare(n){let a=r({from:n.opts.from,env:e.env});return{OnceExit(s){hO(n,a),e.remove!==!1&&a.processor.remove(s,n),e.add!==!1&&a.processor.add(s,n)}}},info(n){return n=n||{},n.from=n.from||h.cwd(),pO(r(n))},options:e,browsers:i}}nr.postcss=!0;nr.data=eb;nr.defaults=oO.defaults;nr.info=()=>nr().info()});var nb={};Ae(nb,{default:()=>mO});var mO,sb=C(()=>{l();mO=[]});var ob={};Ae(ob,{default:()=>gO});var ab,gO,lb=C(()=>{l();hi();ab=X(bi()),gO=Ze(ab.default.theme)});var fb={};Ae(fb,{default:()=>yO});var ub,yO,cb=C(()=>{l();hi();ub=X(bi()),yO=Ze(ub.default)});l();"use strict";var wO=Je(pm()),bO=Je(ge()),vO=Je(ib()),xO=Je((sb(),nb)),kO=Je((lb(),ob)),SO=Je((cb(),fb)),CO=Je((Zn(),bu)),AO=Je((mo(),ho)),_O=Je((hs(),Ku));function Je(i){return i&&i.__esModule?i:{default:i}}console.warn("cdn.tailwindcss.com should not be used in production. To use Tailwind CSS in production, install it as a PostCSS plugin or use the Tailwind CLI: https://tailwindcss.com/docs/installation");var Hn="tailwind",tu="text/tailwindcss",pb="/template.html",xt,db=!0,hb=0,ru=new Set,iu,mb="",gb=(i=!1)=>({get(e,t){return(!i||t==="config")&&typeof e[t]=="object"&&e[t]!==null?new Proxy(e[t],gb()):e[t]},set(e,t,r){return e[t]=r,(!i||t==="config")&&nu(!0),!0}});window[Hn]=new Proxy({config:{},defaultTheme:kO.default,defaultConfig:SO.default,colors:CO.default,plugin:AO.default,resolveConfig:_O.default},gb(!0));function yb(i){iu.observe(i,{attributes:!0,attributeFilter:["type"],characterData:!0,subtree:!0,childList:!0})}new MutationObserver(async i=>{let e=!1;if(!iu){iu=new MutationObserver(async()=>await nu(!0));for(let t of document.querySelectorAll(`style[type="${tu}"]`))yb(t)}for(let t of i)for(let r of t.addedNodes)r.nodeType===1&&r.tagName==="STYLE"&&r.getAttribute("type")===tu&&(yb(r),e=!0);await nu(e)}).observe(document.documentElement,{attributes:!0,attributeFilter:["class"],childList:!0,subtree:!0});async function nu(i=!1){i&&(hb++,ru.clear());let e="";for(let r of document.querySelectorAll(`style[type="${tu}"]`))e+=r.textContent;let t=new Set;for(let r of document.querySelectorAll("[class]"))for(let n of r.classList)ru.has(n)||t.add(n);if(document.body&&(db||t.size>0||e!==mb||!xt||!xt.isConnected)){for(let n of t)ru.add(n);db=!1,mb=e,self[pb]=Array.from(t).join(" ");let{css:r}=await(0,bO.default)([(0,wO.default)({...window[Hn].config,_hash:hb,content:[pb],plugins:[...xO.default,...Array.isArray(window[Hn].config.plugins)?window[Hn].config.plugins:[]]}),(0,vO.default)({remove:!1})]).process(`@tailwind base;@tailwind components;@tailwind utilities;${e}`);(!xt||!xt.isConnected)&&(xt=document.createElement("style"),document.head.append(xt)),xt.textContent=r}}})(); -/*! https://mths.be/cssesc v3.0.0 by @mathias */ diff --git a/html/ms/Surface-Laptop-Studio-01-CP.webp b/html/ms/Surface-Laptop-Studio-01-CP.webp deleted file mode 100644 index 836fd0d..0000000 Binary files a/html/ms/Surface-Laptop-Studio-01-CP.webp and /dev/null differ diff --git a/html/ms/Xbox-Controller-Valentine-Hero-2120x1190_VP5-1596x600.jpg b/html/ms/Xbox-Controller-Valentine-Hero-2120x1190_VP5-1596x600.jpg deleted file mode 100644 index 4007e59..0000000 Binary files a/html/ms/Xbox-Controller-Valentine-Hero-2120x1190_VP5-1596x600.jpg and /dev/null differ diff --git a/html/ms/gldn-CP-Xbox-Family.jpg b/html/ms/gldn-CP-Xbox-Family.jpg deleted file mode 100644 index 69060d6..0000000 Binary files a/html/ms/gldn-CP-Xbox-Family.jpg and /dev/null differ diff --git a/html/ms/gldn-CP-m365-icons-7up-1668x940.webp b/html/ms/gldn-CP-m365-icons-7up-1668x940.webp deleted file mode 100644 index 0df9641..0000000 Binary files a/html/ms/gldn-CP-m365-icons-7up-1668x940.webp and /dev/null differ diff --git a/html/ms/gldn-ICON-LL-briefcase-120x120.webp b/html/ms/gldn-ICON-LL-briefcase-120x120.webp deleted file mode 100644 index 1f5162c..0000000 Binary files a/html/ms/gldn-ICON-LL-briefcase-120x120.webp and /dev/null differ diff --git a/html/ms/gldn-ICON-LL-xbox-logo-120x120.webp b/html/ms/gldn-ICON-LL-xbox-logo-120x120.webp deleted file mode 100644 index 21d301f..0000000 Binary files a/html/ms/gldn-ICON-LL-xbox-logo-120x120.webp and /dev/null differ diff --git a/html/ms/gldn-Quick-Link-Icon-80x80-Microsoft-365.webp b/html/ms/gldn-Quick-Link-Icon-80x80-Microsoft-365.webp deleted file mode 100644 index e720520..0000000 Binary files a/html/ms/gldn-Quick-Link-Icon-80x80-Microsoft-365.webp and /dev/null differ diff --git a/html/ms/gldn-Surf-CP-Earbuds-Headphones2.webp b/html/ms/gldn-Surf-CP-Earbuds-Headphones2.webp deleted file mode 100644 index af56c47..0000000 Binary files a/html/ms/gldn-Surf-CP-Earbuds-Headphones2.webp and /dev/null differ diff --git a/html/ms/icon-LL-surface-kickstand-120x120.webp b/html/ms/icon-LL-surface-kickstand-120x120.webp deleted file mode 100644 index e3070fe..0000000 Binary files a/html/ms/icon-LL-surface-kickstand-120x120.webp and /dev/null differ diff --git a/html/ms/ideal.jpg b/html/ms/ideal.jpg deleted file mode 100644 index 217a842..0000000 Binary files a/html/ms/ideal.jpg and /dev/null differ diff --git a/html/ms/ms.css b/html/ms/ms.css deleted file mode 100644 index 328ed1e..0000000 --- a/html/ms/ms.css +++ /dev/null @@ -1,47 +0,0 @@ -body { - padding: 0; - margin: 0; -} - -.top { - height: 120px; - padding: 0 20%; - width: 60%; - background-color: yellow; - display: flex; - justify-content: space-evenly; -} - -.parts { - margin-top: 10px 0; - height: 100px; - width: 18%; - background-color: blue; -} - -.middle { - height: 360px; - width: 100%; - background-color: aqua; - padding: 0 5%; - display: flex; - justify-content: space-evenly; -} - -.box { - margin: 30px 0; - height: 300px; - width: 20%; - background-color: white; - display: flex; - flex-direction: column; -} - -.content { - height: 25%; - width: 100; - background-color: beige; - -} - -.bottom {} \ No newline at end of file diff --git a/html/ms/ms.html b/html/ms/ms.html deleted file mode 100644 index 512fbde..0000000 --- a/html/ms/ms.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - Document - - - -
-
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/html/ms/test.css b/html/ms/test.css deleted file mode 100644 index 5de4806..0000000 --- a/html/ms/test.css +++ /dev/null @@ -1,55 +0,0 @@ -.top { - margin:25px; - padding: 30px; - display: flex; - height: 160px; - justify-content: center; - flex-wrap: wrap -} - -.parts { - min-width: 13%; - text-align: center; -} - -.middle { - margin:25px; - display: flex; - height: 550px; - justify-content: space-around; - flex-direction: row; -} - -.box { - max-width: 25%; - height: 550px; - width: 100; - display: flex; - flex-direction: column; -} - -.content { - max-width: 80%; -} - -.bottom div { - width: 40%; - position: relative; - left: 50px; - top: 350px; -} - -.bottom img { - margin:25px; - position: relative; - left: 0px; - top: 0px; - z-index: -1; -} - -.bottom input[type="button"] { - color: white; - background-color: #0067b8; - width: 90px; - height: 35px; -} \ No newline at end of file diff --git a/html/ms/test.html b/html/ms/test.html deleted file mode 100644 index cc65871..0000000 --- a/html/ms/test.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - Document - - - - - - -
- -
-
-
-

Surface Laptop Studio

-
-
-

在功能超级强大的 Surface Laptop 上发挥你的创造力。现已搭载 Windows 11。

-
- -
- -
-
-
-

不错过任一美妙节拍

-
-
-

探索最新的 Surface 音频,体验舒适度极佳的设计、沉浸式的音效和全天电池续航。

-
- - -
- -
-
-
-

Power your dreams

-
-
-

购买 Xbox Series X 和 Xbox Series S,体验新时代的先进性能。

-
- -
- -
-
-
-

Microsoft 365

-
-
-

只需一次便捷的订阅,便可使用高级 Office 应用、额外的云存储、高级安全性等功能。

-
- - -
-
- -
-
-

Xbox 控制器

-

- Elite 品质,无线连接,随处适用 - 无论你的游戏风格如何,这款控制器都能满足你的需求 -

- -
- -
- - - \ No newline at end of file diff --git a/html/sd-webui.html b/html/sd-webui.html deleted file mode 100644 index 4b40436..0000000 --- a/html/sd-webui.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - Stable Diffusion Dumping...... - - - Jump To Stable Diffusion Powered By DEC - - \ No newline at end of file diff --git a/html/select.png b/html/select.png deleted file mode 100644 index 77ac65f..0000000 Binary files a/html/select.png and /dev/null differ diff --git a/html/snack/docs/Surface-Laptop-Studio-01-CP.webp b/html/snack/docs/Surface-Laptop-Studio-01-CP.webp deleted file mode 100644 index 836fd0d..0000000 Binary files a/html/snack/docs/Surface-Laptop-Studio-01-CP.webp and /dev/null differ diff --git a/html/snack/docs/Xbox-Controller-Valentine-Hero-2120x1190_VP5-1596x600.jpg b/html/snack/docs/Xbox-Controller-Valentine-Hero-2120x1190_VP5-1596x600.jpg deleted file mode 100644 index 4007e59..0000000 Binary files a/html/snack/docs/Xbox-Controller-Valentine-Hero-2120x1190_VP5-1596x600.jpg and /dev/null differ diff --git a/html/snack/docs/apple.png b/html/snack/docs/apple.png deleted file mode 100644 index 1e08578..0000000 Binary files a/html/snack/docs/apple.png and /dev/null differ diff --git a/html/snack/docs/browsers.webp b/html/snack/docs/browsers.webp deleted file mode 100644 index 947fbe8..0000000 Binary files a/html/snack/docs/browsers.webp and /dev/null differ diff --git a/html/snack/docs/chrome.png b/html/snack/docs/chrome.png deleted file mode 100644 index 5b4bc96..0000000 Binary files a/html/snack/docs/chrome.png and /dev/null differ diff --git a/html/snack/docs/chrome.webp b/html/snack/docs/chrome.webp deleted file mode 100644 index 96893c4..0000000 Binary files a/html/snack/docs/chrome.webp and /dev/null differ diff --git a/html/snack/docs/example.png b/html/snack/docs/example.png deleted file mode 100644 index 212fc84..0000000 Binary files a/html/snack/docs/example.png and /dev/null differ diff --git a/html/snack/docs/gldn-CP-Xbox-Family.jpg b/html/snack/docs/gldn-CP-Xbox-Family.jpg deleted file mode 100644 index 69060d6..0000000 Binary files a/html/snack/docs/gldn-CP-Xbox-Family.jpg and /dev/null differ diff --git a/html/snack/docs/gldn-CP-m365-icons-7up-1668x940.webp b/html/snack/docs/gldn-CP-m365-icons-7up-1668x940.webp deleted file mode 100644 index 0df9641..0000000 Binary files a/html/snack/docs/gldn-CP-m365-icons-7up-1668x940.webp and /dev/null differ diff --git a/html/snack/docs/gldn-ICON-LL-briefcase-120x120.webp b/html/snack/docs/gldn-ICON-LL-briefcase-120x120.webp deleted file mode 100644 index 1f5162c..0000000 Binary files a/html/snack/docs/gldn-ICON-LL-briefcase-120x120.webp and /dev/null differ diff --git a/html/snack/docs/gldn-ICON-LL-xbox-logo-120x120.webp b/html/snack/docs/gldn-ICON-LL-xbox-logo-120x120.webp deleted file mode 100644 index 21d301f..0000000 Binary files a/html/snack/docs/gldn-ICON-LL-xbox-logo-120x120.webp and /dev/null differ diff --git a/html/snack/docs/gldn-Quick-Link-Icon-80x80-Microsoft-365.webp b/html/snack/docs/gldn-Quick-Link-Icon-80x80-Microsoft-365.webp deleted file mode 100644 index e720520..0000000 Binary files a/html/snack/docs/gldn-Quick-Link-Icon-80x80-Microsoft-365.webp and /dev/null differ diff --git a/html/snack/docs/gldn-Surf-CP-Earbuds-Headphones2.webp b/html/snack/docs/gldn-Surf-CP-Earbuds-Headphones2.webp deleted file mode 100644 index af56c47..0000000 Binary files a/html/snack/docs/gldn-Surf-CP-Earbuds-Headphones2.webp and /dev/null differ diff --git a/html/snack/docs/icon-LL-surface-kickstand-120x120.webp b/html/snack/docs/icon-LL-surface-kickstand-120x120.webp deleted file mode 100644 index e3070fe..0000000 Binary files a/html/snack/docs/icon-LL-surface-kickstand-120x120.webp and /dev/null differ diff --git a/html/snack/docs/ideal.jpg b/html/snack/docs/ideal.jpg deleted file mode 100644 index 217a842..0000000 Binary files a/html/snack/docs/ideal.jpg and /dev/null differ diff --git a/html/snack/docs/linux.webp b/html/snack/docs/linux.webp deleted file mode 100644 index 60c7254..0000000 Binary files a/html/snack/docs/linux.webp and /dev/null differ diff --git a/html/snack/docs/macos.png b/html/snack/docs/macos.png deleted file mode 100644 index e874e2f..0000000 Binary files a/html/snack/docs/macos.png and /dev/null differ diff --git a/html/snack/docs/snake.css b/html/snack/docs/snake.css deleted file mode 100644 index 5de4806..0000000 --- a/html/snack/docs/snake.css +++ /dev/null @@ -1,55 +0,0 @@ -.top { - margin:25px; - padding: 30px; - display: flex; - height: 160px; - justify-content: center; - flex-wrap: wrap -} - -.parts { - min-width: 13%; - text-align: center; -} - -.middle { - margin:25px; - display: flex; - height: 550px; - justify-content: space-around; - flex-direction: row; -} - -.box { - max-width: 25%; - height: 550px; - width: 100; - display: flex; - flex-direction: column; -} - -.content { - max-width: 80%; -} - -.bottom div { - width: 40%; - position: relative; - left: 50px; - top: 350px; -} - -.bottom img { - margin:25px; - position: relative; - left: 0px; - top: 0px; - z-index: -1; -} - -.bottom input[type="button"] { - color: white; - background-color: #0067b8; - width: 90px; - height: 35px; -} \ No newline at end of file diff --git a/html/snack/docs/snake.html b/html/snack/docs/snake.html deleted file mode 100644 index f4f7fa6..0000000 --- a/html/snack/docs/snake.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - 贪吃蛇 - - - - -
-
-

贪吃蛇

-

- 贪吃蛇(也叫做贪食蛇)游戏是一款休闲益智类游戏,有PC和手机等多平台版本。既简单又耐玩。该游戏通过控制蛇头方向吃蛋,从而使得蛇变得越来越长。 -

- -
- -
- -
-
-
-
-

Windows版

-
-
-

下载二进制文件(Windows_x86)

-
- -
- -
-
-
-

Linux版

-
-
-

下载二进制文件(Linux_x86)

-
- -
- -
-
-
-

MacOS

-
-
-

请自行编译(没有苹果电脑)

-
- -
- -
-
-
-

在线游玩

-
-
-

一键体验 方便快捷

-
-
-
- -
- - - -
- - - - - - - -
- - - - \ No newline at end of file diff --git a/html/snack/docs/src/snake_linux.c b/html/snack/docs/src/snake_linux.c deleted file mode 100644 index 0fc2ecf..0000000 --- a/html/snack/docs/src/snake_linux.c +++ /dev/null @@ -1,326 +0,0 @@ -// https://zxbcw.cn/post/218247/ - -#include -#include - -#include -#include -#include - -#define X 40 -#define Y 20 - -// char HEAD = '@'; // The shape of snake head -// char BODY = 'O'; // The shape of snake body -#define HEAD '@' // The shape of snake head -#define BODY 'O' // The shape of snake body -char a[Y][X] = {{BODY, BODY, BODY, HEAD}}; // The initial char is 0 -char *p[Y * X] = {&a[0][3], &a[0][2], &a[0][1], - &a[0][0]}; // p[0] stand for snake head - -int n = 3; // The length of snake body (without head) -int i, j; -int direction = 1; // 1.right;2.up;3.left;4.down;-1.exit -int delay = 200 * 1000; // delay 0.2s(200ms) -_Bool isPause = 0; -#define moveBody() \ - { \ - *p[n] = 0; \ - for (i = n; i > 0; i--) \ - { \ - p[i] = p[i - 1]; /* per part goes to the address of the next part \ - ofbody*/ \ - } \ - *p[0] = BODY; /* The First part of snake body come to snake head*/ \ - } -void moveRight() -{ - moveBody(); - p[0] = p[0] + 1; // Move snake head - *p[0] = HEAD; // change the char of new head(new address)'s shape to HEAD -} -void moveLeft() -{ - moveBody(); - p[0] = p[0] - 1; - *p[0] = HEAD; -} -void moveDown() -{ - moveBody(); - p[0] = p[0] + X; - *p[0] = HEAD; -} -void moveUp() -{ - moveBody(); - p[0] = p[0] - X; - *p[0] = HEAD; -} - -void show() -{ - system("clear"); - printf("Your Score is:%d\n", n - 3); - for (i = 0; i < X; i++) - printf("_"); - printf("\n"); - for (i = 0; i < Y; i++) - { - // printf("|"); - for (j = 0; j < X; j++) - { - printf("%c", (a[i][j] == 0) ? ' ' : a[i][j]); - } - // printf("|"); - printf("\n"); - } - for (i = 0; i < X; i++) - printf("-"); - printf("\nw,s,a,d->Up Down Left Right;\nj,k->Speed Up/Down;\nESC: Exit\n"); -} - -void randomApple() // Random -{ - srand(time(NULL)); - do - { - i = rand() % Y; - j = rand() % X; - // if random location is 0 ->*;else find again and again - } while (a[i][j] != 0); - a[i][j] = '*'; -} - -void canEat() -{ - switch (direction) - { - // Right - case 1: { - if (*(p[0] + 1) == '*') - { - n++; // length++ - p[n] = p[n - 1]; - randomApple(); - } - break; - } - // Up - case 2: { - if (*(p[0] - X) == '*') - { - n++; // length++ - p[n] = p[n - 1]; - randomApple(); - } - break; - } - // Left - case 3: { - if (*(p[0] - 1) == '*') - { - n++; // length++ - p[n] = p[n - 1]; - randomApple(); - } - break; - } - // Down - case 4: { - if (*(p[0] + X) == '*') - { - n++; // length++ - p[n] = p[n - 1]; - randomApple(); - } - break; - } - } -} - -void isFail() -{ - if (p[0] < &a[0][0] || - p[0] > &a[Y - 1][X - 1]) // snake is not in the matrix - { - printf("fail!\n"); - direction = -1; - } - else - { - switch (direction) - { - // Right - case 1: { - for (i = n; i > 0; i--) - { - if ((p[0] + 1) == p[i]) // Right of the head is body - { - printf("fail!\n"); - direction = -1; - } - } - break; - } - // Up - case 2: { - for (i = n; i > 0; i--) - { - if ((p[0] - X) == p[i]) // Up of the head is body - { - printf("fail!\n"); - direction = -1; - } - } - break; - } - // Left - case 3: { - for (i = n; i > 0; i--) - { - if ((p[0] - 1) == p[i]) // Left of the head is body - { - printf("fail!\n"); - direction = -1; - } - } - break; - } - // Down - case 4: { - for (i = n; i > 0; i--) - { - if ((p[0] + X) == p[i]) // Down of the head is body - { - printf("fail!\n"); - direction = -1; - } - } - break; - } - } - } -} - -void *key(void *arg) // Direction Control:w,s,a,d-->Up Down Left Right -{ - char k; - while (1) - { - - k = getchar(); - switch (k) - { - case 'w': // Up - { - if (direction != 4) - direction = 2; - break; - } - case 's': // Down - { - if (direction != 2) - direction = 4; - break; - } - case 'a': // Left - { - if (direction != 1) - direction = 3; - break; - } - case 'd': // Right - { - if (direction != 3) - direction = 1; - break; - } - case 'j': // SpeedUp - { - delay = delay * 4 / 5; - break; - } - case 'k': // SpeedDown - { - delay = delay * 5 / 4; - break; - } - case 27: // ESC - { - printf("Exit!\n"); - isPause = 0; - direction = -1; - pthread_exit(NULL); - break; - } - case ' ': // Space - { - if (isPause) - { - printf("Continue!\n"); - } - else - { - printf("Pause!\n"); - } - isPause = !isPause; - break; - } - } - } -} - -int main() -{ - system("stty -icanon"); - pthread_attr_t attr; - pthread_attr_init(&attr); - pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); - // set pthread_attr to detached - pthread_t tid; - pthread_create(&tid, &attr, key, NULL); // Create pthread to capture input - randomApple(); - while (1) - { - show(); - do - { - usleep(delay); - - } while (isPause); - isFail(); // Judge if will eat self - canEat(); // Judge if will eat * - switch (direction) // choose which direction to move - { - case 1: // Right - { - moveRight(); - break; - } - case 2: // Up - { - moveUp(); - break; - } - case 3: // Left - { - moveLeft(); - break; - } - case 4: // Down - { - moveDown(); - break; - } - case -1: // Exit - { - printf("Your Final Score is:%d", n - 3); - return -1; - break; - } - } - } - - return 0; -} \ No newline at end of file diff --git a/html/snack/docs/src/snake_windows.c b/html/snack/docs/src/snake_windows.c deleted file mode 100644 index 01f4ca5..0000000 --- a/html/snack/docs/src/snake_windows.c +++ /dev/null @@ -1,325 +0,0 @@ -// https://zxbcw.cn/post/218247/ - -#include -#include -#include -#include - - -#include -#include -#include - -#define X 40 -#define Y 20 - -// char HEAD = '@'; // The shape of snake head -// char BODY = 'O'; // The shape of snake body -#define HEAD '@' // The shape of snake head -#define BODY 'O' // The shape of snake body -char a[Y][X] = {{BODY, BODY, BODY, HEAD}}; // The initial char is 0 -char *p[Y * X] = {&a[0][3], &a[0][2], &a[0][1], - &a[0][0]}; // p[0] stand for snake head - -int n = 3; // The length of snake body (without head) -int i, j; -int direction = 1; // 1.right;2.up;3.left;4.down;-1.exit -int delay = 200; // delay 0.2s(200ms) -_Bool isPause = 0; -#define moveBody() \ - { \ - *p[n] = 0; \ - for (i = n; i > 0; i--) \ - { \ - p[i] = p[i - 1]; /* per part goes to the address of the next part \ - ofbody*/ \ - } \ - *p[0] = BODY; /* The First part of snake body come to snake head*/ \ - } -void moveRight() -{ - moveBody(); - p[0] = p[0] + 1; // Move snake head - *p[0] = HEAD; // change the char of new head(new address)'s shape to HEAD -} -void moveLeft() -{ - moveBody(); - p[0] = p[0] - 1; - *p[0] = HEAD; -} -void moveDown() -{ - moveBody(); - p[0] = p[0] + X; - *p[0] = HEAD; -} -void moveUp() -{ - moveBody(); - p[0] = p[0] - X; - *p[0] = HEAD; -} - -void show() -{ - system("clear"); - printf("Your Score is:%d\n", n - 3); - for (i = 0; i < X; i++) - printf("_"); - printf("\n"); - for (i = 0; i < Y; i++) - { - // printf("|"); - for (j = 0; j < X; j++) - { - printf("%c", (a[i][j] == 0) ? ' ' : a[i][j]); - } - // printf("|"); - printf("\n"); - } - for (i = 0; i < X; i++) - printf("-"); - printf("\nw,s,a,d->Up Down Left Right;\nj,k->Speed Up/Down;\nESC: Exit\n"); -} - -void randomApple() // Random -{ - srand(time(NULL)); - do - { - i = rand() % Y; - j = rand() % X; - // if random location is 0 ->*;else find again and again - } while (a[i][j] != 0); - a[i][j] = '*'; -} - -void canEat() -{ - switch (direction) - { - // Right - case 1: { - if (*(p[0] + 1) == '*') - { - n++; // length++ - p[n] = p[n - 1]; - randomApple(); - } - break; - } - // Up - case 2: { - if (*(p[0] - X) == '*') - { - n++; // length++ - p[n] = p[n - 1]; - randomApple(); - } - break; - } - // Left - case 3: { - if (*(p[0] - 1) == '*') - { - n++; // length++ - p[n] = p[n - 1]; - randomApple(); - } - break; - } - // Down - case 4: { - if (*(p[0] + X) == '*') - { - n++; // length++ - p[n] = p[n - 1]; - randomApple(); - } - break; - } - } -} - -void isFail() -{ - if (p[0] < &a[0][0] || - p[0] > &a[Y - 1][X - 1]) // snake is not in the matrix - { - printf("fail!\n"); - direction = -1; - } - else - { - switch (direction) - { - // Right - case 1: { - for (i = n; i > 0; i--) - { - if ((p[0] + 1) == p[i]) // Right of the head is body - { - printf("fail!\n"); - direction = -1; - } - } - break; - } - // Up - case 2: { - for (i = n; i > 0; i--) - { - if ((p[0] - X) == p[i]) // Up of the head is body - { - printf("fail!\n"); - direction = -1; - } - } - break; - } - // Left - case 3: { - for (i = n; i > 0; i--) - { - if ((p[0] - 1) == p[i]) // Left of the head is body - { - printf("fail!\n"); - direction = -1; - } - } - break; - } - // Down - case 4: { - for (i = n; i > 0; i--) - { - if ((p[0] + X) == p[i]) // Down of the head is body - { - printf("fail!\n"); - direction = -1; - } - } - break; - } - } - } -} - -DWORD WINAPI -ThreadProc1(LPVOID lpParam) // Direction Control:w,s,a,d-->Up Down Left Right -{ - char k; - while (1) - { - k = _getch(); - - switch (k) - { - case 'w': // Up - { - if (direction != 4) - direction = 2; - break; - } - case 's': // Down - { - if (direction != 2) - direction = 4; - break; - } - case 'a': // Left - { - if (direction != 1) - direction = 3; - break; - } - case 'd': // Right - { - if (direction != 3) - direction = 1; - break; - } - case 'j': // SpeedUp - { - delay = delay * 4 / 5; - break; - } - case 'k': // SpeedDown - { - delay = delay * 5 / 4; - break; - } - case 27: // ESC - { - printf("Exit!\n"); - isPause = 0; - direction = -1; - return 0; - break; - } - case ' ': // Space - { - if (isPause) - { - printf("Continue!\n"); - } - else - { - printf("Pause!\n"); - } - isPause = !isPause; - break; - } - } - } -} - -int main() -{ - - randomApple(); - HANDLE hThread1 = CreateThread(NULL, 0, ThreadProc1, NULL, 0, NULL); - while (1) - { - show(); - do - { - Sleep(delay); - } while (isPause); - isFail(); // Judge if will eat self - canEat(); // Judge if will eat * - switch (direction) // choose which direction to move - { - case 1: // Right - { - moveRight(); - break; - } - case 2: // Up - { - moveUp(); - break; - } - case 3: // Left - { - moveLeft(); - break; - } - case 4: // Down - { - moveDown(); - break; - } - case -1: // Exit - { - printf("Your Final Score is:%d\n", n - 3); - CloseHandle(hThread1); - return -1; - break; - } - } - } - - return 0; -} \ No newline at end of file diff --git a/html/snack/docs/windows.webp b/html/snack/docs/windows.webp deleted file mode 100644 index f70026f..0000000 Binary files a/html/snack/docs/windows.webp and /dev/null differ diff --git a/html/snack/example.js b/html/snack/example.js deleted file mode 100644 index 222c8cc..0000000 --- a/html/snack/example.js +++ /dev/null @@ -1,293 +0,0 @@ -//https://blog.csdn.net/weixin_42525191/article/details/114670004 -clearInterval(timer); -document.body.innerHTML = ""; - -//每秒移动多少格 -let speed = 10; -let speedUpMul = 3; - -//是否能穿墙 -let isThroughTheWall = true; - -//行数 -let row = 40; -let headColor = 'red'; -let bodyColor = 'green'; -let foodColor = 'yellow'; -let borderColor = 'grey'; - - - -// 游戏全局变量 -let hasFood = false; -//游戏状态 -let gamestaus = 'start'; -let hasAccelerate = false; - -let mainContainer = document.createElement("div"); -mainContainer.style.width = 20 * row + 1 + "px"; -mainContainer.style.height = 20 * row + 1 + "px"; -mainContainer.style.margin = "0 auto"; -mainContainer.style.position = "relative"; -mainContainer.style.border = "1px solid " + borderColor; - -document.body.appendChild(mainContainer); - -for(let i = 0;i row - 1) x = x-row; - if(y < 0) y = row+y; - if(y > row - 1) y = y-row; - }else{ - if(x < 0 || y < 0|| x > row - 1 || y > row - 1){ - clearInterval(timer); - alert('游戏结束'); - return; - } - } - this.x = x; - this.y = y; - this.color = color; - let tempDiv = document.getElementById(x + 'div' + y); - if(tempDiv) tempDiv.style.backgroundColor = color; - } -} - -snake = { - head : {}, - body : [], - dire : 1 -} - -let headx = Math.floor(Math.random() * 14) + 3; -let heady = Math.floor(Math.random() * 14) + 3; -snake.head = new Cell(headx, heady, headColor); - -//上右下左 -let direction = [1, 2, 3, 4] - -snake.dire = direction[Math.floor(Math.random() * 4)]; - -if(snake.dire == 1){ - snake.body.push(new Cell(snake.head.x, snake.head.y+1, bodyColor)); - snake.body.push(new Cell(snake.head.x, snake.head.y+2, bodyColor)); - snake.body.push(new Cell(snake.head.x, snake.head.y+3, bodyColor)); -} - -if(snake.dire == 2){ - snake.body.push(new Cell(snake.head.x-1, snake.head.y, bodyColor)); - snake.body.push(new Cell(snake.head.x-2, snake.head.y, bodyColor)); - snake.body.push(new Cell(snake.head.x-3, snake.head.y, bodyColor)); -} - -if(snake.dire == 3){ - snake.body.push(new Cell(snake.head.x, snake.head.y-1, bodyColor)); - snake.body.push(new Cell(snake.head.x, snake.head.y-2, bodyColor)); - snake.body.push(new Cell(snake.head.x, snake.head.y-3, bodyColor)); -} - -if(snake.dire == 4){ - snake.body.push(new Cell(snake.head.x+1, snake.head.y, bodyColor)); - snake.body.push(new Cell(snake.head.x+2, snake.head.y, bodyColor)); - snake.body.push(new Cell(snake.head.x+3, snake.head.y, bodyColor)); -} - -function game(){ - if(gamestaus == 'pause'){ - return; - } - if(gamestaus == 'gameover'){ - clearInterval(timer); - alert('游戏结束'); - return; - } - initFood(); - let snakeHeadX = snake.head.x; - let snakeHeadY = snake.head.y; - let color = ''; - if(snake.dire == 1){ - let tempDiv = document.getElementById(snakeHeadX + 'div' + (snakeHeadY-1)); - if(tempDiv) color = tempDiv.style.backgroundColor; - snake.head = new Cell(snakeHeadX, snakeHeadY - 1, headColor); - } - if(snake.dire == 2){ - let tempDiv = document.getElementById((snakeHeadX + 1) + 'div' + snakeHeadY); - if(tempDiv) color = tempDiv.style.backgroundColor; - snake.head = new Cell(snakeHeadX + 1, snakeHeadY, headColor); - } - if(snake.dire == 3){ - let tempDiv = document.getElementById(snakeHeadX + 'div' + (snakeHeadY+1)); - if(tempDiv) color = tempDiv.style.backgroundColor; - snake.head = new Cell(snakeHeadX, snakeHeadY + 1, headColor); - } - if(snake.dire == 4){ - let tempDiv = document.getElementById((snakeHeadX - 1) + 'div' + snakeHeadY); - if(tempDiv) color = tempDiv.style.backgroundColor; - snake.head = new Cell(snakeHeadX - 1, snakeHeadY, headColor); - } - snake.body.unshift(new Cell(snakeHeadX, snakeHeadY, bodyColor)); - if(color && color == foodColor){ - hasFood = false; - initFood(); - }else if(color && color == bodyColor){ - gamestaus = 'gameover'; - }else{ - let lastBody = snake.body.pop(); - new Cell(lastBody.x, lastBody.y, ''); - } -} -var timer = setInterval(game, 10 / speed * 100) - - -/** - * 初始化食物 - */ -function initFood(){ - while(!hasFood){ - let x = Math.floor(Math.random() * row); - let y = Math.floor(Math.random() * row); - let snakeBody = snake.body; - let enable = true; - if(snake.head.x == x && snake.head.y == y){ - enable = false; - } - for(sBody of snakeBody){ - if(sBody.x == x && sBody.y == y){ - enable = false; - break; - } - } - if(enable){ - new Cell(x, y, foodColor); - hasFood = true; - } - } -} - -document.onkeydown = function(e){ - if(e.keyCode == 38){ - //上 - if(snake.dire != 3 && snake.dire != 1){ - snake.dire = 1; - }else if(snake.dire == 1){ - if(!hasAccelerate){ - clearInterval(timer); - hasAccelerate = true; - speed = speed * speedUpMul; - timer = setInterval(game, 10 / speed * 100) - } - } - - } - - if(e.keyCode == 39){ - //右 - if(snake.dire != 4 && snake.dire != 2){ - snake.dire = 2; - }else if(snake.dire == 2){ - if(!hasAccelerate){ - clearInterval(timer); - hasAccelerate = true; - speed = speed * speedUpMul; - timer = setInterval(game, 10 / speed * 100) - } - } - } - - if(e.keyCode == 40){ - //下 - if(snake.dire != 1 && snake.dire != 3){ - snake.dire = 3; - }else if(snake.dire == 3){ - if(!hasAccelerate){ - clearInterval(timer); - hasAccelerate = true; - speed = speed * speedUpMul; - timer = setInterval(game, 10 / speed * 100) - } - } - } - - if(e.keyCode == 37){ - //左 - if(snake.dire != 2 && snake.dire != 4){ - snake.dire = 4; - }else if(snake.dire == 4){ - if(!hasAccelerate){ - clearInterval(timer); - hasAccelerate = true; - speed = speed * speedUpMul; - timer = setInterval(game, 10 / speed * 100) - } - } - } - //空格键暂停 - if(e.keyCode == 32){ - if(gamestaus == 'start'){ - gamestaus = 'pause'; - }else if(gamestaus == 'pause'){ - gamestaus = 'start'; - } - } -} - -document.onkeyup = function(e){ - if(e.keyCode == 38){ - //上 - if(snake.dire == 1 && hasAccelerate){ - clearInterval(timer); - hasAccelerate = false; - speed = speed / speedUpMul; - timer = setInterval(game, 10 / speed * 100) - } - - } - - if(e.keyCode == 39){ - //右 - if(snake.dire == 2 && hasAccelerate){ - clearInterval(timer); - hasAccelerate = false; - speed = speed / speedUpMul; - timer = setInterval(game, 10 / speed * 100) - } - } - - if(e.keyCode == 40){ - //下 - if(snake.dire == 3 && hasAccelerate){ - clearInterval(timer); - hasAccelerate = false; - speed = speed / speedUpMul; - timer = setInterval(game, 10 / speed * 100) - } - } - - if(e.keyCode == 37){ - //左 - if(snake.dire == 4 && hasAccelerate){ - clearInterval(timer); - hasAccelerate = false; - speed = speed / speedUpMul; - timer = setInterval(game, 10 / speed * 100) - } - } -} diff --git a/html/snack/snake.html b/html/snack/snake.html deleted file mode 100644 index 1f13bf9..0000000 --- a/html/snack/snake.html +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - Snake - - - - - - - - \ No newline at end of file diff --git a/html/snack/snake.js b/html/snack/snake.js deleted file mode 100644 index b614d98..0000000 --- a/html/snack/snake.js +++ /dev/null @@ -1,212 +0,0 @@ -let direction = 4; -let row = 40; -// let isThroughTheWall = true; - -let HeadColor = 'red'; -let SnakeBodyColor = 'orange'; -let foodColor = 'green'; -let borderColor = 'grey'; -eaten = false; -head = { - x: 3, - y: 0 -}; -SnakeBody = [ - { x: 2, y: 0 }, { x: 1, y: 0 }, { x: 0, y: 0 } -]; -food = { x: 0, y: 0 } -document.onkeyup = function (e) { - switch (e.code) { - case "ArrowUp": { - if (direction != 2) { - direction = 1; - } - break; - } - case "ArrowDown": { - if (direction != 1) { - direction = 2; - } - break; - } - case "ArrowLeft": { - if (direction != 4) { - direction = 3; - } - break; - } - case "ArrowRight": { - if (direction != 3) { - direction = 4; - } - break; - } - case "Space": { - direction = 4; - break; - } - } -} - -document.onkeyup = function (e) { - switch (e.code) { - case "ArrowUp": { - if (direction != 2) { - direction = 1; - } - break; - } - case "ArrowDown": { - if (direction != 1) { - direction = 2; - } - break; - } - case "ArrowLeft": { - if (direction != 4) { - direction = 3; - } - break; - } - case "ArrowRight": { - if (direction != 3) { - direction = 4; - } - break; - } - // case "Space": { - // direction = 5; - // break; - // } - } -} - -// code捕获函数 -// document.onkeydown = function (e) { -// console.log('code: ', e.code); -// } - -function Start() { - Init(); - //蛇头蛇身食物上色 - document.getElementById(head.x + "-" + head.y).style.backgroundColor = HeadColor; - for (i of SnakeBody) { - document.getElementById(i.x + "-" + i.y).style.backgroundColor = SnakeBodyColor; - } - //随机食物位置 - randomFood() - //循环开始 - var loop = setInterval(function Game() { - if (isFail()) { - clearInterval(loop); - alert("Game Over") - } else { - if ((food.x === head.x && food.y === head.y)) { - eaten = true; - randomFood(); - } - //蛇头加入蛇身 - SnakeBody.unshift({ x: head.x, y: head.y }); - //蛇身上色 - document.getElementById(head.x + "-" + head.y).style.backgroundColor = SnakeBodyColor; - //移动蛇头 - switch (direction) { - case 1: - head.y--; - break; - case 2: - head.y++; - break; - case 3: - head.x--; - break; - case 4: - head.x++; - break; - } - //蛇头上色 - document.getElementById(head.x + "-" + head.y).style.backgroundColor = HeadColor; - //如果没吃东西去掉末尾的颜色并裁剪末尾 - if (!eaten) { - document.getElementById((SnakeBody[SnakeBody.length - 1]).x + "-" + (SnakeBody[SnakeBody.length - 1]).y).style.backgroundColor = "" - SnakeBody.pop() - } else { - eaten = false; - } - } - }, 300); -} - -function isFail() { - if (isSnakeBody(head.x, head.y)) { - return true; - } else if ((head.x >= row || head.x < 0) || (head.y >= row || head.y < 0)) { - return true; - } else { - return false; - } -} - -function isSnakeBody(x, y) { - ret = false; - for (i of SnakeBody) { - if ((i.x === x) && (i.y === y)) { - ret = true; - } - } - return ret; -} - -function moveUp() { - if (direction == 1) // Right - { - if (array[i][j] == '*') { - n++; // length++ - p[n] = p[n - 1]; - randomApple(); - } - } -} -function Init() { - //清空网页 - document.body.innerHTML = ""; - //边框大div - let Container = document.createElement("div"); - Container.style.border = "1px solid " + borderColor; - //每个小格子的长宽均为20px - Container.style.height = 20 * row + 1 + "px"; - Container.style.width = 20 * row + 1 + "px"; - Container.style.position = "relative"; - //写入网页 - document.body.appendChild(Container); - //循环创建小div格子并给予一个唯一的id以便后面判断以及修改颜色 - for (let i = 0; i < row; i++) { - let marginTopI = 20 * i; - for (let j = 0; j < row; j++) { - let marginLeftj = 20 * j; - let Column = document.createElement("div"); - //绝对定位 - Column.style.position = "absolute"; - //记录id(x-y) - Column.id = j + "-" + i; - //背景色白色 - Column.style.backgroundColor = "white"; - //长宽均为19px 边框0.5px - Column.style.width = "19px"; - Column.style.height = "19px"; - Column.style.marginTop = marginTopI + "px"; - Column.style.marginLeft = marginLeftj + "px"; - Column.style.border = "0.5px solid " + borderColor; - //append到Container div - Container.appendChild(Column); - - } - } -} -function randomFood() { - do { - food.x = Math.floor(Math.random() * row) - food.y = Math.floor(Math.random() * row) - } while (isSnakeBody(food.x, food.y) || (food.x === head.x && food.y === head.y)) - document.getElementById(food.x + "-" + food.y).style.backgroundColor = foodColor; -} \ No newline at end of file diff --git a/php/SimpleInfoMan/.gitignore b/php/SimpleInfoMan/.gitignore deleted file mode 100644 index 2b6f52c..0000000 --- a/php/SimpleInfoMan/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -/.idea -/.vscode -/vendor -*.log -thinkphp -.env -.DS_Store diff --git a/php/SimpleInfoMan/.travis.yml b/php/SimpleInfoMan/.travis.yml deleted file mode 100644 index 36f7b6f..0000000 --- a/php/SimpleInfoMan/.travis.yml +++ /dev/null @@ -1,42 +0,0 @@ -sudo: false - -language: php - -branches: - only: - - stable - -cache: - directories: - - $HOME/.composer/cache - -before_install: - - composer self-update - -install: - - composer install --no-dev --no-interaction --ignore-platform-reqs - - zip -r --exclude='*.git*' --exclude='*.zip' --exclude='*.travis.yml' ThinkPHP_Core.zip . - - composer require --update-no-dev --no-interaction "topthink/think-image:^1.0" - - composer require --update-no-dev --no-interaction "topthink/think-migration:^1.0" - - composer require --update-no-dev --no-interaction "topthink/think-captcha:^1.0" - - composer require --update-no-dev --no-interaction "topthink/think-mongo:^1.0" - - composer require --update-no-dev --no-interaction "topthink/think-worker:^1.0" - - composer require --update-no-dev --no-interaction "topthink/think-helper:^1.0" - - composer require --update-no-dev --no-interaction "topthink/think-queue:^1.0" - - composer require --update-no-dev --no-interaction "topthink/think-angular:^1.0" - - composer require --dev --update-no-dev --no-interaction "topthink/think-testing:^1.0" - - zip -r --exclude='*.git*' --exclude='*.zip' --exclude='*.travis.yml' ThinkPHP_Full.zip . - -script: - - php think unit - -deploy: - provider: releases - api_key: - secure: TSF6bnl2JYN72UQOORAJYL+CqIryP2gHVKt6grfveQ7d9rleAEoxlq6PWxbvTI4jZ5nrPpUcBUpWIJHNgVcs+bzLFtyh5THaLqm39uCgBbrW7M8rI26L8sBh/6nsdtGgdeQrO/cLu31QoTzbwuz1WfAVoCdCkOSZeXyT/CclH99qV6RYyQYqaD2wpRjrhA5O4fSsEkiPVuk0GaOogFlrQHx+C+lHnf6pa1KxEoN1A0UxxVfGX6K4y5g4WQDO5zT4bLeubkWOXK0G51XSvACDOZVIyLdjApaOFTwamPcD3S1tfvuxRWWvsCD5ljFvb2kSmx5BIBNwN80MzuBmrGIC27XLGOxyMerwKxB6DskNUO9PflKHDPI61DRq0FTy1fv70SFMSiAtUv9aJRT41NQh9iJJ0vC8dl+xcxrWIjU1GG6+l/ZcRqVx9V1VuGQsLKndGhja7SQ+X1slHl76fRq223sMOql7MFCd0vvvxVQ2V39CcFKao/LB1aPH3VhODDEyxwx6aXoTznvC/QPepgWsHOWQzKj9ftsgDbsNiyFlXL4cu8DWUty6rQy8zT2b4O8b1xjcwSUCsy+auEjBamzQkMJFNlZAIUrukL/NbUhQU37TAbwsFyz7X0E/u/VMle/nBCNAzgkMwAUjiHM6FqrKKBRWFbPrSIixjfjkCnrMEPw= - file: - - ThinkPHP_Core.zip - - ThinkPHP_Full.zip - skip_cleanup: true - on: - tags: true diff --git a/php/SimpleInfoMan/CHANGELOG.md b/php/SimpleInfoMan/CHANGELOG.md deleted file mode 100644 index 8f49a88..0000000 --- a/php/SimpleInfoMan/CHANGELOG.md +++ /dev/null @@ -1,946 +0,0 @@ -## V5.1.41 LTS(2021-1-11) - -本版本为PHP8兼容更新 - -## V5.1.40 LTS(2020-10-09) -本版本为常规更新,主要包括: -* 改进redis驱动`has`方法 -* 修正XA事务 -* 修正`HasManyThrough`关联 -* 增加mysql json类型字段->>方式获取支持 -* 改进路由加载 避免加载编辑器临时文件影响 -* 修复关联模型的属性直接附加到当前模型,当关联模型字段名为name时获取的值为模型的属性name值 -* 修复多态关联预加载`field`无效 -* 改进Collection类的`column`方法的PHP兼容性问题 -* 改进mysql驱动 -* 改进`parseclosure`方法 -* SoftDelete删除条件做空判断 -* 改进验证类`append`方法 - -## V5.1.39 LTS(2019-11-18) - -本次更新为常规更新,主要包括: - -* 修正`memcached`驱动 -* 改进`HasManyThrough`关联查询 -* 改进`Request`类`isJson`方法 -* 改进关联查询 -* 改进`redis`驱动 -* 增加 Model类`getWhere`方法对复合主键的支持 -* 改进`newQuery`方法 -* 改进闭包查询的参数绑定 -* 修正`Validate` -* 修复某些情况下URL会多一个冒号 -* 调整composer.json -* 修复使用`Cache::clear()`时,报错缓存文件不存在问题 -* 使用File类的unlink方法进行文件删除 -* 改进`paraseData`方法 -* 修正image验证方法 -* 改进Url生成 -* 改进空操作对数字的支持 -* 改进一处PHP7.4兼容性问题 - -## V5.1.38 LTS(2019-8-8) - -本次更新为常规更新,主要包括: - -* `Request`类增加`isJson`方法 -* 改进浮点型查询 -* 修正关联查询关联外键为空的查询错误 -* 远程一对多支持关联统计和预载入查询 -* 远程一对多关联支持`has`/`hasWhere`查询 -* 优化`parseIn`解析 -* 改进`parseLike`查询 -* 改进Url生成 -* 改进模型的`toArray`方法 -* 修正`notIn`查询 -* 改进`JSON`字段查询 -* 改进Controller类`display`/`fetch`方法返回`ViewResponse`对象 -* 改进`param`方法 -* 改进`mysql`驱动`getExplain`方法 -* 改进时间查询 -* 改进模型关联的`has`/`hasWhere`方法对软删除的支持 -* 修正社区反馈的BUG - -## V5.1.37 LTS(2019-5-26) - -本次更新为常规更新,主要更新如下: - -* 改进关联数据更新 -* 修正关联动态获取器 -* 改进`redis`驱动 -* 修复验证规则里面出现二维数组时的错误 -* 改进跨域请求支持 -* 完善模型`hidden`方法对关联属性的支持 -* 改进`where`查询方法传入`Query`对象的支持`bind`数据 -* 改进数据集对象的`load`方法 -* 修正缓存类`clear`方法对`tag`的支持 - -## V5.1.36 LTS(2019-4-28) - -本次更新为常规更新,主要更新如下: - -* 修正`chunk`方法一处异常抛出的错误 -* 修正模型输出的`visible` -* 改进环境变量加载 -* 改进命令行日志的`level`配置支持 -* 修复设置有缓存前缀时,无法清空缓存标签的问题 -* HasMony对象`saveAll`方法兼容`Collection`格式参数格式 -* 修正`whereOr`查询使用字符串的问题 -* 改进`dateFormat`设置对写入数据的影响 -* 修正查询缓存 -* 记住指定的跳转地址 -* 改进软删除 -* 改进聚合查询SQL去除limit 1 -* 改进缓存驱动 - -## V5.1.35 LTS(2019-3-2) - -本次主要为常规更新,修正了一些反馈的问题。 - -* 修正验证类自定义验证方法执行两次的问题 -* 模型增加`isEmpty`方法用于判断是否空模型 -* 改进获取器对`append`的支持 -* 修正一对多关联的`withCount`自关联问题 -* facade类注释调整 -* 改进关联属性的`visible`和`hidden`判断 -* 修正路由分组的`MISS`路由 -* 改进pgsql.sql - -## V5.1.34 LTS(2019-1-30) - -本次更新为常规更新,修正了一些反馈的问题。 - -* 改进Request类的`has`方法,支持`patch` -* 改进`unique`验证的多条件支持 -* 修复自定义上传验证,检测文件大小 -* 改进`in`查询支持表达式 -* 改进路由的`getBind`方法 -* 改进验证类的错误信息获取 -* 改进`response`助手函数默认值 -* 修正mysql的`regexp`查询 -* 改进模型类型强制转换写入对`Expression`对象的支持 - -## V5.1.33 LTS(2019-1-16) - -* 修复路由中存在多个相同替换的正则BUG -* 修正whereLike查询 -* join方法支持参数绑定 -* 改进union方法 -* 修正多对多关联的attach方法 -* 改进验证类的正则规则自定义 -* 改进Request类method方法 -* 改进File日志类型的CLI日志写入 -* 改进文件日志time_format配置对JSON格式的支持 - -## V5.1.32 LTS(2018-12-24) - -本次主要为常规更新,修正了一些反馈的问题。 - - -* 改进多对多关联的`attach`方法 -* 改进聚合查询的`field`处理 -* 改进关联的`save`方法 -* 修正模型`exists`方法返回值 -* 改进时间字段写入和输出 -* 改进控制器中间件的调用 -* 改进路由变量替换的性能 -* 改进缓存标签的处理机制 - -## V5.1.31 LTS (2018-12-9) - -本次版本包含一个安全更新,建议升级。 - -* 改进`field`方法 -* 改进`count`方法返回类型 -* `download`函数增加在浏览器中显示文件功能 -* 修正多对多模型的中间表数据写入 -* 改进`sqlsrv`驱动支持多个Schemas模式查询 -* 统一助手函数与\think\response\Download函数文件过期时间 -* 完善关联模型的`save`方法 增加`make`方法仅创建对象不保存 -* 修改条件表达式对静态变量的支持 -* 修正控制器名获取 -* 改进view方法的`field`解析 - -## V5.1.30 LTS(2018-11-30) - -该版本为常规更新,修正了一些社区反馈的问题。 - -主要更新如下: - -* 改进查询类的`execute`方法 -* 判断路由规则定义添加对请求类型的判断 -* 修复`orderRaw`异常 -* 修正 `optimize:autoload`指令 -* 改进软删除的`destroy`方法造成重复执行事件的问题 -* 改进验证类对扩展验证规则 始终验证 不管是否`require` -* 修复自定义验证`remove`所有规则的异常 -* 改进时间字段的自动写入支持微秒数据 -* 改进`Connection`类的`getrealsql`方法 -* 修正`https`地址的URL生成 -* 修复 `array_walk_recursive` 在低于PHP7.1消耗内部指针问题 -* 改进手动参数绑定使用 -* 改进聚合查询方法的`field`参数支持`Expression` - -## V5.1.29 LTS(2018-11-11) - -该版本主要改进了参数绑定的解析问题和提升性能,并修正了一些反馈的问题。 - -* 改进手动参数绑定 -* 修正MISS路由的分组参数无效问题 -* 行为支持对象的方法 -* 修正全局查询范围 -* 改进`belongsto`关联的`has`方法 -* 改进`hasMany`关联 -* 改进模型观察者多次注册的问题 -* 改进`query`类的默认查询参数处理 -* 修正`parseBetween`解析方法 -* 改进路由地址生成的本地域名支持 -* 改进参数绑定的实际URL解析性能 -* 改进`Env`类的`getEnv`和`get`方法 -* 改进模板缓存的生成优化 -* 修复验证类的多语言支持 -* 修复自定义场景验证`remove`规则异常 -* File类添加是否自动补全扩展名的选项 -* 改进`strpos`对子串是否存在的判断 -* 修复`choice`无法用值选择第一个选项问题 -* 验证器支持多维数组取值验证 -* 改进解析`extend`和`block`标签的正则 - -## V5.1.28 LTS(2018-10-29) - -该版本主要修正了上一个版本存在的一些问题,并改进了关联查询 - -* 改进聚合查询方法的字段支持DISTINCT -* 改进定义路由后url函数的端口生成 -* 改进控制器中间件对`swoole`等的支持 -* 改进Log类`save`方法 -* 改进验证类的闭包验证参数 -* 多对多关联支持指定中间表数据的名称 -* 关联聚合查询支持闭包方式指定聚合字段 -* 改进Lang类`get`方法 -* 多对多关联增加判断关联数据是否存在的方法 -* 改进关联查询使用`fetchsql`的情况 -* 改进修改器的是否已经执行判断 -* 增加`afterWith`和`beforeWith`验证规则 用于比较日期字段 - -## V5.1.27 LTS(2018-10-22) - -该版本主要修正了路由绑定的参数,改进了修改器的执行多次问题,并正式宣布为LTS版本! - - -* 修正路由绑定的参数丢失问题 -* 修正路由别名的参数获取 -* 改进修改器会执行多次的问题 - -## V5.1.26(2018-10-12) - -该版本主要修正了上一个版本的一些问题,并改进了全局查询范围的支持,同时包含了一个安全更新。 - - -* 修正单一模块下注解路由无效的问题 -* 改进数据库的聚合查询的字段处理 -* 模型类增加`globalScope`属性定义 用于指定全局的查询范围 -* 模型的`useGlobalScope`方法支持传入数组 用于指定当前查询需要使用的全局查询范围 -* 改进数据集的`order`方法对数字类型的支持 -* 修正上一个版本`order`方法解析的一处BUG -* 排序字段不合法或者错误的时候抛出异常 -* 改进`Request`类的`file`方法对上传文件的错误判断 - -## V5.1.25(2018-9-21) - -该版本主要改进了查询参数绑定的性能和对浮点型的支持,以及一些细节的完善。 - -* 修正一处命令行问题 -* 改进`Socketlog`日志驱动,支持自定义默认展开日志类别 -* 修正`MorphMany`一处bug -* 跳转到上次记住的url,并支持默认值 -* 改进模型的异常提示 -* 改进参数绑定对浮点型的支持 -* 改进`order`方法解析 -* 改进`json`字段数据的自动编码 -* 改进日志`log_write`可能造成的日志写入死循环 -* Log类增加`log_level`行为标签位置,用于对某个类型的日志进行处理 -* Route类增加`clear`方法清空路由规则 -* 分布式数据库配置支持使用数组 -* 单日志文件也支持`max_files`参数 -* 改进查询参数绑定的性能 -* 改进别名路由的URL后缀参数检测 -* 控制器前置方法和控制器中间件的`only`和`except`定义不区分大小写 - -## V5.1.24(2018-9-5) - -该版本主要增加了命令行的表格输出功能,并增加了查看路由定义的指令,以及修正了社区的一些反馈问题。 - -* 修正`Request`类的`file`方法 -* 修正路由的`cache`方法 -* 修正路由缓存的一处问题 -* 改进上传文件获取的异常处理 -* 改进`fetchCollection`方法支持传入数据集类名 -* 修正多级控制器的注解路由生成 -* 改进`Middleware`类`clear`方法 -* 增加`route:list`指令用于[查看定义的路由](752690) 并支持排序 -* 命令行增加`Table`输出类 -* `Command`类增加`table`方法用于输出表格 -* 改进搜索器查询方法支持别名定义 -* 命令行配置增加`auto_path`参数用于定义自动载入的命令类路径 -* 增加`make:command`指令用于[快速生成指令](354146) -* 改进`make:controller`指令对操作方法后缀的支持 -* 改进命令行的定义文件支持索引数组 用于指令对象的惰性加载 -* 改进`value`和`column`方法对后续查询结果的影响 -* 改进`RuleName`类的`setRule`方法 - -## V5.1.23(2018-8-23) - -该版本主要改进了数据集对象的处理,增加了`findOrEmpty`方法,并且修正了一些社区反馈的BUG。 - -* 数据集类增加`diff`/`intersect`方法用于获取差集和交集(默认根据主键值比较) -* 数据集类增加`order`方法支持指定字段排序 -* 数据集类增加`map`方法使用回调函数处理数据并返回新的数据集对象 -* Db增加`allowEmpty`方法允许`find`方法在没有数据的时候返回空数组或者空模型对象而不是null -* Db增加`findOrEmpty`方法 -* Db增加`fetchCollection`方法用于指定查询返回数据集对象 -* 改进`order`方法的数组方式解析,增强安全性 -* 改进`withSearch`方法,支持第三个参数传入字段前缀标识,用于多表查询字段搜索 -* 修正`optimize:route`指令开启类库后缀后的注解路由生成 -* 修正redis缓存及session驱动 -* 支持指定`Yaconf`的独立配置文件 -* 增加`yaconf`助手函数用于配置文件 - - -## V5.1.22(2018-8-9) - -该版本主要增加了模型搜索器和`withJoin`方法,完善了模型输出和对`Yaconf`的支持,修正了一些社区反馈的BUG。 - -* 改进一对一关联的`table`识别问题 -* 改进内置`Facade`类 -* 增加`withJoin`方法支持`join`方式的[一对一关联](一对一关联.md)查询 -* 改进`join`预载入查询的空数据问题 -* 改进`Config`类的`load`方法支持快速加载配置文件 -* 改进`execute`方法和事务的断线重连 -* 改进`memcache`驱动的`has`方法 -* 模型类支持定义[搜索器](搜索器.md)方法 -* 完善`Config`类对`Yaconf`的支持 -* 改进模型的`hidden/visible/append/withAttr`方法,支持在[查询前后调用](数组访问.md),以及支持数据集对象 -* 数据集对象增加`where`方法根据字段或者关联数据[过滤数据](模型数据集.md) -* 改进AJAX请求的`204`判断 - - -## V5.1.21(2018-8-2) - -该版本主要增加了下载响应对象和数组查询对象的支持,并修正了一些社区反馈的问题。 - -* 改进核心对象的无用信息调试输出 -* 改进模型的`isRelationAttr`方法判断 -* 模型类的`get`和`all`方法并入Db类 -* 增加[下载响应对象](文件下载.md)和`download`助手函数 -* 修正别名路由配置定义读取 -* 改进`resultToModel`方法 -* 修正开启类库后缀后的注解路由生成 -* `Response`类增加`noCache`快捷方法 -* 改进路由对象在`Swoole`/`Workerman`下面参数多次合并问题 -* 修正路由`ajax`/`pjax`参数后路由变量无法正确获取的问题 -* 增加清除中间件的方法 -* 改进依赖注入的参数规范自动识别(便于对接前端小写+下划线规范) -* 改进`hasWhere`的数组条件的字段判断 -* 增加[数组查询对象](高级查询.md)`Where`支持(喜欢数组查询的福音) -* 改进多对多关联的闭包支持 - -## V5.1.20(2018-7-25) - -该版本主要增加了Db和模型的动态获取器的支持,并修正了一些已知问题。 - -* Db类添加[获取器支持](703981) -* 支持模型及关联模型字段[动态定义获取器](354046) -* 动态获取器支持`JSON`字段 -* 改进路由的`before`行为执行(匹配后执行) -* `Config`类支持`Yaconf` -* 改进Url生成的端口问题 -* Request类增加`setUrl`和`setBaseUrl`方法 -* 改进页面trace的信息显示 -* 修正`MorphOne`关联 -* 命令行添加[查看版本指令](703994) - -## V5.1.19 (2018-7-13) - -该版本是一个小幅改进版本,针对`Swoole`和`Workerman`的`Cookie`支持做了一些改进,并修正了一些已知的问题。 - - -* 改进query类`delete`方法对软删除条件判断 -* 修正分表查询的软删除问题 -* 模型查询的时候同时传入`table`和`name`属性 -* 容器类增加`IteratorAggregate`和`Countable`接口支持 -* 路由分组支持对下面的资源路由统一设置`only/except/vars`参数 -* 改进Cookie类更好支持扩展 -* 改进Request类`post`方法 -* 改进模型自关联的自动识别 -* 改进Request类对`php://input`数据的处理 - - -## V5.1.18 (2018-6-30) - -该版本主要完善了对`Swoole`和`Workerman`的`HttpServer`运行支持,改进`Request`类,并修正了一些已知的问题。 - -* 改进关联`append`方法的处理 -* 路由初始化和检测方法分离 -* 修正`destroy`方法强制删除 -* `app_init`钩子位置移入`run`方法 -* `think-swoole`扩展更新到2.0版本 -* `think-worker`扩展更新到2.0版本 -* 改进Url生成的域名自动识别 -* `Request`类增加`setPathinfo`方法和`setHost`方法 -* `Request`类增加`withGet`/`withPost`/`withHeader`/`withServer`/`withCookie`/`withEnv`方法进行赋值操作 -* Route类改进`host`属性的获取 -* 解决注解路由配置不生效的问题 -* 取消Test日志驱动,改为使用`close`设置关闭全局日志写入 -* 修正路由的`response`参数 -* 修正204响应输出的判断 - -## V5.1.17 (2018-6-18) - -该版本主要增加了控制器中间件的支持,改进了路由功能,并且修正了社区反馈的一些问题。 - -* 修正软删除的`delete`方法 -* 修正Query类`Count`方法 -* 改进多对多`detach`方法 -* 改进Request类`Session`方法 -* 增加控制器中间件支持 -* 模型类增加`jsonAssoc`属性用于定义json数据是否返回数组 -* 修正Request类`method`方法的请求伪装 -* 改进静态路由的匹配 -* 分组首页路由自动完整匹配 -* 改进sqlsrv的`column`方法 -* 日志类的`apart_level`配置支持true自动生成对应类型的日志文件 -* 改进`204`输出判断 -* 修正cli下页面输出的BUG -* 验证类使用更高效的`ctype`验证机制 -* 改进Request类`cookie`方法 -* 修正软删除的`withTrashed`方法 -* 改进多态一对多的预载入查询 -* 改进Query类`column`方法的缓存读取 -* Query类增加`whereBetweenTimeField`方法 -* 改进分组下多个相同路由规则的合并匹配问题 -* 路由类增加`getRule`/`getRuleList`方法获取定义的路由 - -## V5.1.16 (2018-6-7) - -该版本主要修正了社区反馈的一些问题,并对Request类做了进一步规范和优化。 - -* 改进Session类的`boot`方法 -* App类的初始化方法可以单独执行 -* 改进Request类的`param`方法 -* 改进资源路由的变量替换 -* Request类增加`__isset`方法 -* 改进`useGlobalScope`方法对软删除的影响 -* 修正命令行调用 -* 改进Cookie类`init`方法 -* 改进多对多关联删除的返回值 -* 一对多关联写入支持`replace` -* 路由增加`filter`检测方法,用于通过请求参数检测路由是否匹配 -* 取消Request类`session/env/server`方法的`filter`参数 -* 改进关联的指定属性输出 -* 模型删除操作删除后不清空对象数据仅作标记 -* 调整模型的`save`方法返回值为布尔值 -* 修正Request类`isAjax`方法 -* 修正中间件的模块配置读取 -* 取消Request类的请求变量的设置功能 -* 取消请求变量获取的默认修饰符 -* Request类增加`setAction/setModule/setController`方法 -* 关联模型的`delete`方法调用Query类 -* 改进URL生成的域名识别 -* 改进URL检测对已定义路由的域名判断 -* 模型类增加`isExists`和`isForce`方法 -* 软删除的`destroy`和`restore`方法返回值调整为布尔值 - -## V5.1.15 (2018-6-1) - -该版本主要改进了路由缓存的性能和缓存方式设置,增加了JSON格式文件日志的支持,并修正了社区反馈的一些问题。 - -* 容器类增加`exists`方法 仅判断是否存在对象实例 -* 取消配置类的`autoload`方法 -* 改进路由缓存大小提高性能 -* 改进Dispatch类`init`方法 -* 增加`make:validate`指令生成验证器类 -* Config类`get`方法支持默认值参数 -* 修正字段缓存指令 -* 改进App类对`null`数据的返回 -* 改进模型类的`__isset`方法判断 -* 修正`Query`类的`withAggregate`方法 -* 改进`RuleItem`类的`setRuleName`方法 -* 修正依赖注入和参数的冲突问题 -* 修正Db类对第三方驱动的支持 -* 修正模型类查询对象问题 -* 修正File缓存驱动的`has`方法 -* 修正资源路由嵌套 -* 改进Request类对`$_SERVER`变量的读取 -* 改进请求缓存处理 -* 路由缓存支持指定单独的缓存方式和参数 -* 修正资源路由的中间件多次执行问题 -* 修正`optimize:config`指令 -* 文件日志支持`JSON`格式日志保存 -* 修正Db类`connect`方法 -* 改进Log类`write`方法不会自动写入之前日志 -* 模型的关联操作默认启用事务 -* 改进软删除的事件响应 - -## V5.1.14 (2018-5-18) - -该版本主要对底层容器进行了一些优化改进,并增加了路由缓存功能,可以进一步提升路由性能。 - -* 依赖注入的对象参数传入改进 -* 改进核心类的容器实例化 -* 改进日期字段的读取 -* 改进验证类的`getScene`方法 -* 模型的`create`方法和`save`方法支持`replace`操作 -* 改进`Db`类的调用机制 -* App类调整为容器类 -* 改进容器默认绑定 -* `Loader`类增加工厂类的实例化方法 -* 增加路由变量默认规则配置参数 -* 增加路由缓存设计 -* 错误处理机制改进 -* 增加清空路由缓存指令 - - -## V5.1.13 (2018-5-11) - -该版本主要增加了MySQL的XA事务支持,模型事件支持观察者,以及对Facade类的改进。 - -* 改进自动缓存 -* 改进Url生成 -* 修正数据缓存 -* 修正`value`方法的缓存 -* `join`方法和`view`方法的条件支持使用`Expression`对象 -* 改进驱动的`parseKey`方法 -* 改进Request类`host`方法和`domain`方法对端口的处理 -* 模型增加`withEvent`方法用于控制当前操作是否需要执行模型事件 -* 模型`setInc/setDec`方法支持更新事件 -* 模型添加`before_restore/after_restore`事件 -* 增加模型事件观察者 -* 路由增加`mobile`方法设置是否允许手机访问 -* 数据库XA事务支持 -* 改进索引数组查询对`IN`查询的支持 -* 修正`invokeMethod`方法 -* 修正空数据写入返回值的BUG -* redis驱动支持`predis` -* 改进`parseData`方法 -* 改进模块加载 -* App类初始化方法调整 -* 改进数组查询对表达式`Expression`对象支持 -* 改进闭包的依赖注入调用 -* 改进多对多关联的中间表模型更新 -* 增加容器中对象的自定义实例化 - -## V5.1.12 (2018-4-25) - -该版本主要改进了主从查询的及时性,并支持动态设置请求数据。 - -* 支持动态设置请求数据 -* 改进`comment`方法解析 -* 修正App类`__unset`方法 -* 改进url生成的域名绑定 -* 改进主从查询的及时性 -* 修正`value`的数据缓存功能 -* 改进分页类的集合对象方法调用 -* 改进Db类的代码提示 -* SQL日志增加主从标记 - -## V5.1.11 (2018-4-19) - -该版本为安全和修正版本,改进了JSON查询的参数绑定问题和容器类对象实例获取,并包含一处可能的安全隐患,建议更新。 - -* 支持指定JSON数据查询的字段类型 -* 修正`selectInsert`方法 -* `whereColumn`方法支持数组方式 -* 改进容器类`make`方法 -* 容器类`delete`方法支持数组 -* 改进`composer`自动加载 -* 改进模板引擎 -* 修正`like`查询的一处安全隐患 - -## V5.1.10 (2018-4-16) - -该版本为修正版本,修正上一个版本的一些BUG,并增强了`think clear`指令。 - -* 改进`orderField`方法 -* 改进`exists`查询 -* 修改cli模式入口文件位置计算 -* 修正`null`查询 -* 改进`parseTime`方法 -* 修正关联预载入查询 -* 改进`mysql`驱动 -* 改进`think clear`指令 支持 `-c -l -r `选项 -* 改进路由规则对`/`结尾的支持 - -## V5.1.9 (2018-4-12) - -该版本主要是一些改进和修正,并包含一个安全更新,是一个推荐更新版本。 - -* 默认模板渲染规则支持配置保持操作方法名 -* 改进`Request`类的`ip`方法 -* 支持模型软删除字段的默认值定义 -* 改进路由变量规则对中文的支持 -* 使用闭包查询的时候使用`cache(true)` 抛出异常提示 -* 改进`Loader`类`loadComposerAutoloadFiles`方法 -* 改进查询方法安全性 -* 修正路由地址中控制器名驼峰问题 -* 调整上一个版本的`module_init`和`app_begin`的钩子顺序问题 -* 改进CLI命令行执行的问题 -* 修正社区反馈的其它问题 - -## V5.1.8 (2018-4-5) - -该版本主要改进了中间件的域名和模块支持,并同时修正了几个已知问题。 - -* 增加`template.auto_rule` 参数设置默认模板渲染的操作名自动转换规则 -* 默认模板渲染规则改由视图驱动实现 -* 修正路由标识定义 -* 修正控制器路由方法 -* 改进Request类`ip`方法支持自定义代理IP参数 -* 路由注册中间件支持数组方式别名 -* 改进命令行执行下的`composer`自动加载 -* 添加域名中间件注册支持 -* 全局中间件支持模块定义文件 -* Log日志配置支持`close`参数可以全局关闭日志写入 -* 中间件方法中捕获`HttpResponseException`异常 -* 改进中间件的闭包参数传入 -* 改进分组路由的延迟解析 -* 改进URL生成对域名绑定的支持 -* 改进文件缓存和文件日志驱动的并发支持 - -## V5.1.7 (2018-3-28) - -该版本主要修正了路由的一些问题,并改进了查询的安全性。 - -* 支持`middleware`配置文件预先定义中间件别名方便路由调用 -* 修正资源路由 -* 改进`field`方法 自动识别`fieldRaw` -* 增加`Expression`类 -* Query类增加`raw`方法 -* Query类的`field`/ `order` 和` where`方法都支持使用`raw`表达式查询 -* 改进`inc/dec`查询 支持批量更新 -* 改进路由分组 -* 改进Response类`create`方法 -* 改进composer自动加载 -* 修正域名路由的`append`方法 -* 修正操作方法的初始化方法获取不到问题 - -## V5.1.6 (2018-3-26) - -该版本主要改进了路由规则的匹配算法,大幅提升了路由性能。并正式引入了中间件的支持,可以在路由中定义或者全局定义。另外包含了一个安全更新,是一个建议更新版本。 - -* 改进URL生成对路由`ext`方法的支持 -* 改进查询缓存对不同数据库相同表名的支持 -* 改进composer自动加载的性能 -* 改进空路由变量对默认参数的影响 -* mysql的`json`字段查询支持多级 -* Query类增加`option`方法 -* 优化路由匹配 -* 修复验证规则数字键名丢失问题 -* 改进路由Url生成 -* 改进一对一关联预载入查询 -* Request类增加`rootDomain`方法 -* 支持API资源控制器生成 `make:controller --api` -* 优化Template类的标签解析 -* 容器类增加删除和清除对象实例的方法 -* 修正MorphMany关联的`eagerlyMorphToMany`方法一处错误 -* Container类的异常捕获改进 -* Domain对象支持`bind`方法 -* 修正分页参数 -* 默认模板的输出规则不受URL影响 -* 注解路由支持多级控制器 -* Query类增加`getNumRows`方法获取前次操作影响的记录数 -* 改进查询条件的性能 -* 改进模型类`readTransform`方法对序列化类型的处理 -* Log类增加`close`方法可以临时关闭当前请求的日志写入 -* 文件日志方式增加自动清理功能(设置`max_files`参数) -* 修正Query类的`getPk`方法 -* 修正模板缓存的布局开关问题 -* 修正Query类`select`方法的缓存 -* 改进input助手函数 -* 改进断线重连的信息判断 -* 改进正则验证方法 -* 调整语言包的加载顺序 放到`app_init`之前 -* controller类`fetch`方法改为`final` -* 路由地址中的变量支持使用``方式 -* 改进XMLResponse 支持传入编码过的xml内容 -* 修正Query类`view`方法的数组表名支持 -* 改进路由的模型闭包绑定 -* 改进分组变量规则的继承 -* 改进`cli-server`模式下的`composer`自动加载 -* 路由变量规则异常捕获 -* 引入中间件支持 -* 路由定义增加`middleware`方法 -* 增加生成中间件指令`make:middleware` -* 增加全局中间件定义支持 -* 改进`optimize:config`指令对全局中间件的支持 -* 改进config类`has`方法 -* 改进时间查询的参数绑定 -* 改进`inc/dec/exp`查询的安全性 - - -## V5.1.5 (2018-1-31) - -该版本主要增强了数据库的JSON查询,并支持JSON字段的聚合查询,改进了一些性能问题,修正了路由的一些BUG,主要更新如下: - -* 改进数据集查询对`JSON`数据的支持 -* 改进聚合查询对`JSON`字段的支持 -* 模型类增加`getOrFail`方法 -* 改进数据库驱动的`parseKey`方法 -* 改进Query类`join`方法的自关联查询 -* 改进数据查询不存在不生成查询缓存 -* 增加`run`命令行指令启动内置服务器 -* `Request`类`pathinfo`方法改进对`cli-server`支持 -* `Session`类增加`use_lock`配置参数设置是否启用锁机制 -* 优化`File`缓存自动生成空目录的问题 -* 域名及分组路由支持`append`方法传递隐式参数 -* 改进日志的并发写入问题 -* 改进`Query`类的`where`方法支持传入`Query`对象 -* 支持设置单个日志文件的文件名 -* 修正路由规则的域名条件约束 -* `Request`类增加`subDomain`方法用于获取当前子域名 -* `Response`类增加`allowCache`方法控制是否允许请求缓存 -* `Request`类增加`sendData`方法便于扩展 -* 改进`Env`类不依赖`putenv`方法 -* 改进控制台`trace`显示错误 -* 改进`MorphTo`关联 -* 改进完整路由匹配后带斜线访问出错的情况 -* 改进路由的多级分组问题 -* 路由url地址生成支持多级分组 -* 改进路由Url生成的`url_convert`参数的影响 -* 改进`miss`和`auto`路由内部解析 -* 取消预载入关联查询缓存功能 - -## V5.1.4 (2018-1-19) - -该版本主要增强了数据库和模型操作,主要更新如下: - -* 支持设置 `deleteTime`属性为`false` 关闭软删除 -* 模型增加`getError`方法 -* 改进Query类的`getTableFields`/`getFieldsType`方法 支持表名自动获取 -* 模型类`toCollection`方法增加参数指定数据集类 -* 改进`union`查询 -* 关联预载入`with`方法增加缓存参数 -* 改进模型类的`get`和`all`方法的缓存 支持关联缓存 -* 支持`order by field`操作 -* 改进`insertAll`分批写入 -* 改进`json`字段数据支持 -* 增加JSON数据的模型对象化操作 -* 改进路由`ext`参数检测 -* 修正`rule`方法的`method`参数使用 `get|post` 方式注册路由的问题 - -## V5.1.3 (2018-1-12) - -该版本主要改进了路由及调整函数加载顺序,主要更新如下: - -* 增加`env`助手函数; -* 增加`route`助手函数; -* 增加视图路由方法; -* 增加路由重定向方法; -* 路由默认区分最后的目录斜杆(支持设置不区分); -* 调整公共文件和配置文件的加载顺序(可以在配置文件中直接使用助手函数); -* 视图类增加`filter`方法设置输出过滤; -* `view`助手函数增加`filter`参数; -* 改进缓存生成指令; -* Session类的`get`方法支持获取多级; -* Request类`only`方法支持指定默认值; -* 改进路由分组; -* 修正使用闭包查询的时候自动数据缓存出错的情况; -* 废除`view_filter`钩子位置; -* 修正分组下面的资源路由; -* 改进session驱动; - -## V5.1.2 (2018-1-8) - -该版本改进了配置类及数据库类,主要更新如下: - -* 修正嵌套路由分组; -* 修正自定义模板标签界定符后表达式语法出错的情况; -* 修正自关联的多次调用问题; -* 修正数组查询的`null`条件查询; -* 修正Query类的`order`及`field`的一处可能的BUG; -* 配置参数设置支持三级; -* 配置对象支持`ArrayAccess`; -* App类增加`path`方法用于设置应用目录; -* 关联定义增加`selfRelation`方法用于设置是否为自关联; - -## V5.1.1 (2018-1-3) - -修正一些反馈的BUG,包括: - -* 修正Cookie类存取数组的问题 -* 修正Controller的`fetch`方法 -* 改进跨域请求 -* 修正`insertAll`方法 -* 修正`chunk`方法 - -## V5.1.0 (2018-1-1) - -主要更新如下: - -* 增加注解路由支持 -* 路由支持跨域请求设置 -* 增加`app_dispatch`钩子位置 -* 修正多对多关联的`detach`方法 -* 修正软删除的`destroy`方法 -* Cookie类`httponly`参数默认为false -* 日志File驱动增加`single`参数配置记录同一个文件(不按日期生成) -* 路由的`ext`和`denyExt`方法支持不传任何参数 -* 改进模型的`save`方法对`oracle`的支持 -* Query类的`insertall`方法支持配合`data`和`limit`方法 -* 增加`whereOr`动态查询支持 -* 日志的ip地址记录改进 -* 模型`saveAll`方法支持`isUpdate`方法 -* 改进`Pivot`模型的实例化操作 -* 改进Model类的`data`方法 -* 改进多对多中间表模型类 -* 模型增加`force`方法强制更新所有数据 -* Hook类支持设置入口方法名称 -* 改进验证类 -* 改进`hasWhere`查询的数据重复问题 -* 模型的`saveall`方法返回数据集对象 -* 改进File缓存的`clear`方法 -* 缓存添加统一的序列化机制 -* 改进泛三级域名的绑定 -* 改进泛域名的传值和取值 -* Request类增加`panDomain`方法 -* 改进废弃字段判断 -* App类增加`create`方法用于实例化应用类库 -* 容器类增加`has`方法 -* 改进多数据库切换连接 -* 改进断线重连的异常捕获 -* 改进模型类`buildQuery`方法 -* Query类增加`unionAll`方法 -* 关联统计功能增强(支持Sum/Max/Min/Avg) -* 修正延迟写入 -* chunk方法支持复合主键 -* 改进JSON类型的写入 -* 改进Mysql的insertAll方法 -* Model类`save`方法改进复合主键包含自增的情况 -* 改进Query类`inc`和`dec`方法的关键字处理 -* File缓存inc和dec方法保持原来的有效期 -* 改进redis缓存的有效期判断 -* 增加checkRule方法用于单独数据的多个验证规则 -* 修正setDec方法的延迟写入 -* max和min方法增加force参数 -* 二级配置参数区分大小写 -* 改进join方法自关联的问题 -* 修正关联模型自定义表名的情况 -* Query类增加getFieldsType和getTableFields方法 -* 取消视图替换功能及view_replace_str配置参数 -* 改进域名绑定模块后的额外路由规则问题 -* 改进mysql的insertAll方法 -* 改进insertAll方法写入json字段数据的支持 -* 改进redis长连接多编号库的情况 - -## RC3版本(2017-11-6) - -主要更新如下: - -* 改进redis驱动的`get`方法 -* 修正Query类的`alias`方法 -* `File`类错误信息支持多语言 -* 修正路由的额外参数解析 -* 改进`whereTime`方法 -* 改进Model类`getAttr`方法 -* 改进App类的`controller`和`validate`方法支持多层 -* 改进`HasManyThrough`类 -* 修正软删除的`restore`方法 -* 改进`MorpthTo`关联 -* 改进数据库驱动类的`parseKey`方法 -* 增加`whereField`动态查询方法 -* 模型增加废弃字段功能 -* 改进路由的`after`行为检查和`before`行为机制 -* 改进路由分组的检查 -* 修正mysql的`json`字段查询 -* 取消Connection类的`quote`方法 -* 改进命令行的支持 -* 验证信息支持多语言 -* 修正路由模型绑定 -* 改进参数绑定类型对枚举类型的支持 -* 修正模板的`{$Think.version} `输出 -* 改进模板`date`函数解析 -* 改进`insertAll`方法支持分批执行 -* Request类`host`方法支持反向代理 -* 改进`JumpResponse`支持区分成功和错误模板 -* 改进开启类库后缀后的关联外键自动识别问题 -* 修正一对一关联的JOIN方式预载入查询问题 -* Query类增加`hidden`方法 - -## RC2版本(2017-10-17) - -主要更新如下: - -* 修正视图查询 -* 修正资源路由 -* 修正`HasMany`关联 修正`where`方法的闭包查询 -* 一对一关联绑定属性到父模型后 关联属性不再保留 -* 修正应用的命令行配置文件读取 -* 改进`Connection`类的`getCacheKey`方法 -* 改进文件上传的非法图像异常 -* 改进验证类的`unique`规则 -* Config类`get`方法支持获取一级配置 -* 修正count方法对`fetchSql`的支持 -* 修正mysql驱动对`socket`支持 -* 改进Connection类的`getRealSql`方法 -* 修正`view`助手函数 -* Query类增加`leftJoin` `rightJoin` 和 `fullJoin`方法 -* 改进app_namespace的获取 -* 改进`append`方法对一对一`bind`属性的支持 -* 改进关联的`saveall`方法的返回值 -* 路由标识设置异常修复 -* 改进Route类`rule`方法 -* 改进模型的`table`属性设置 -* 改进composer autofile的加载顺序 -* 改进`exception_handle`配置对闭包的支持 -* 改进app助手函数增加参数 -* 改进composer的加载路径判断 -* 修正路由组合变量的URL生成 -* 修正路由URL生成 -* 改进`whereTime`查询并支持扩展规则 -* File类的`move`方法第二个参数支持`false` -* 改进Config类 -* 改进缓存类`remember`方法 -* 惯例配置文件调整 Url类当普通模式参数的时候不做`urlencode`处理 -* 取消`ROOT_PATH`和`APP_PATH`常量定义 如需更改应用目录 自己重新定义入口文件 -* 增加`app_debug`的`Env`获取 -* 修正泛域名绑定 -* 改进查询表达式的解析机制 -* mysql增加`regexp`查询表达式 支持正则查询 -* 改进查询表达式的异常判断 -* 改进model类的`destroy`方法 -* 改进Builder类 取消`parseValue`方法 -* 修正like查询的参数绑定问题 -* console和start文件移出核心纳入应用库 -* 改进Db类主键删除方法 -* 改进泛域名绑定模块 -* 取消`BIND_MODULE`常量 改为在入口文件使用`bind`方法设置 -* 改进数组查询 -* 改进模板渲染的异常处理 -* 改进控制器基类的架构方法参数 -* 改进Controller类的`success`和`error`方法 -* 改进对浏览器`JSON-Handle`插件的支持 -* 优化跳转模板的移动端显示 -* 修正模型查询的`chunk`方法对时间字段的支持 -* 改进trace驱动 -* Collection类增加`push`方法 -* 改进Redis Session驱动 -* 增加JumpResponse驱动 - - -## RC1(2017-9-8) - -主要新特性为: - -* 引入容器和Facade支持 -* 依赖注入完善和支持更多场景 -* 重构的(对象化)路由 -* 配置和路由目录独立 -* 取消系统常量 -* 助手函数增强 -* 类库别名机制 -* 模型和数据库增强 -* 验证类增强 -* 模板引擎改进 -* 支持PSR-3日志规范 -* RC1版本取消了5.0多个字段批量数组查询的方式 \ No newline at end of file diff --git a/php/SimpleInfoMan/LICENSE.txt b/php/SimpleInfoMan/LICENSE.txt deleted file mode 100644 index 774fa76..0000000 --- a/php/SimpleInfoMan/LICENSE.txt +++ /dev/null @@ -1,32 +0,0 @@ - -ThinkPHP遵循Apache2开源协议发布,并提供免费使用。 -版权所有Copyright © 2006-2018 by ThinkPHP (http://thinkphp.cn) -All rights reserved。 -ThinkPHP® 商标和著作权所有者为上海顶想信息科技有限公司。 - -Apache Licence是著名的非盈利开源组织Apache采用的协议。 -该协议和BSD类似,鼓励代码共享和尊重原作者的著作权, -允许代码修改,再作为开源或商业软件发布。需要满足 -的条件: -1. 需要给代码的用户一份Apache Licence ; -2. 如果你修改了代码,需要在被修改的文件中说明; -3. 在延伸的代码中(修改和有源代码衍生的代码中)需要 -带有原来代码中的协议,商标,专利声明和其他原来作者规 -定需要包含的说明; -4. 如果再发布的产品中包含一个Notice文件,则在Notice文 -件中需要带有本协议内容。你可以在Notice中增加自己的 -许可,但不可以表现为对Apache Licence构成更改。 -具体的协议参考:http://www.apache.org/licenses/LICENSE-2.0 - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. diff --git a/php/SimpleInfoMan/README.md b/php/SimpleInfoMan/README.md deleted file mode 100644 index fa00932..0000000 --- a/php/SimpleInfoMan/README.md +++ /dev/null @@ -1,186 +0,0 @@ -![](https://box.kancloud.cn/5a0aaa69a5ff42657b5c4715f3d49221) - -ThinkPHP 5.1(LTS版本) —— 12载初心,你值得信赖的PHP框架 -=============== - -[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/top-think/framework/badges/quality-score.png?b=5.1)](https://scrutinizer-ci.com/g/top-think/framework/?branch=5.1) -[![Build Status](https://travis-ci.org/top-think/framework.svg?branch=master)](https://travis-ci.org/top-think/framework) -[![Total Downloads](https://poser.pugx.org/topthink/framework/downloads)](https://packagist.org/packages/topthink/framework) -[![Latest Stable Version](https://poser.pugx.org/topthink/framework/v/stable)](https://packagist.org/packages/topthink/framework) -[![PHP Version](https://img.shields.io/badge/php-%3E%3D5.6-8892BF.svg)](http://www.php.net/) -[![License](https://poser.pugx.org/topthink/framework/license)](https://packagist.org/packages/topthink/framework) - -ThinkPHP5.1对底层架构做了进一步的改进,减少依赖,其主要特性包括: - - + 采用容器统一管理对象 - + 支持Facade - + 注解路由支持 - + 路由跨域请求支持 - + 配置和路由目录独立 - + 取消系统常量 - + 助手函数增强 - + 类库别名机制 - + 增加条件查询 - + 改进查询机制 - + 配置采用二级 - + 依赖注入完善 - + 支持`PSR-3`日志规范 - + 中间件支持(V5.1.6+) - + Swoole/Workerman支持(V5.1.18+) - - -> ThinkPHP5的运行环境要求PHP5.6以上,兼容PHP8.0。 - -## 安装 - -使用composer安装 - -~~~ -composer create-project topthink/think tp -~~~ - -启动服务 - -~~~ -cd tp -php think run -~~~ - -然后就可以在浏览器中访问 - -~~~ -http://localhost:8000 -~~~ - -更新框架 -~~~ -composer update topthink/framework -~~~ - - -## 在线手册 - -+ [完全开发手册](https://www.kancloud.cn/manual/thinkphp5_1/content) -+ [升级指导](https://www.kancloud.cn/manual/thinkphp5_1/354155) - - -## 官方服务 - -+ [应用服务市场](https://market.topthink.com/) -+ [ThinkAPI——统一API服务](https://docs.topthink.com/think-api) - -## 目录结构 - -初始的目录结构如下: - -~~~ -www WEB部署目录(或者子目录) -├─application 应用目录 -│ ├─common 公共模块目录(可以更改) -│ ├─module_name 模块目录 -│ │ ├─common.php 模块函数文件 -│ │ ├─controller 控制器目录 -│ │ ├─model 模型目录 -│ │ ├─view 视图目录 -│ │ └─ ... 更多类库目录 -│ │ -│ ├─command.php 命令行定义文件 -│ ├─common.php 公共函数文件 -│ └─tags.php 应用行为扩展定义文件 -│ -├─config 应用配置目录 -│ ├─module_name 模块配置目录 -│ │ ├─database.php 数据库配置 -│ │ ├─cache 缓存配置 -│ │ └─ ... -│ │ -│ ├─app.php 应用配置 -│ ├─cache.php 缓存配置 -│ ├─cookie.php Cookie配置 -│ ├─database.php 数据库配置 -│ ├─log.php 日志配置 -│ ├─session.php Session配置 -│ ├─template.php 模板引擎配置 -│ └─trace.php Trace配置 -│ -├─route 路由定义目录 -│ ├─route.php 路由定义 -│ └─... 更多 -│ -├─public WEB目录(对外访问目录) -│ ├─index.php 入口文件 -│ ├─router.php 快速测试文件 -│ └─.htaccess 用于apache的重写 -│ -├─thinkphp 框架系统目录 -│ ├─lang 语言文件目录 -│ ├─library 框架类库目录 -│ │ ├─think Think类库包目录 -│ │ └─traits 系统Trait目录 -│ │ -│ ├─tpl 系统模板目录 -│ ├─base.php 基础定义文件 -│ ├─console.php 控制台入口文件 -│ ├─convention.php 框架惯例配置文件 -│ ├─helper.php 助手函数文件 -│ ├─phpunit.xml phpunit配置文件 -│ └─start.php 框架入口文件 -│ -├─extend 扩展类库目录 -├─runtime 应用的运行时目录(可写,可定制) -├─vendor 第三方类库目录(Composer依赖库) -├─build.php 自动生成定义文件(参考) -├─composer.json composer 定义文件 -├─LICENSE.txt 授权说明文件 -├─README.md README 文件 -├─think 命令行入口文件 -~~~ - -> 可以使用php自带webserver快速测试 -> 切换到根目录后,启动命令:php think run - -## 命名规范 - -`ThinkPHP5`遵循PSR-2命名规范和PSR-4自动加载规范,并且注意如下规范: - -### 目录和文件 - -* 目录不强制规范,驼峰和小写+下划线模式均支持; -* 类库、函数文件统一以`.php`为后缀; -* 类的文件名均以命名空间定义,并且命名空间的路径和类库文件所在路径一致; -* 类名和类文件名保持一致,统一采用驼峰法命名(首字母大写); - -### 函数和类、属性命名 - -* 类的命名采用驼峰法,并且首字母大写,例如 `User`、`UserType`,默认不需要添加后缀,例如`UserController`应该直接命名为`User`; -* 函数的命名使用小写字母和下划线(小写字母开头)的方式,例如 `get_client_ip`; -* 方法的命名使用驼峰法,并且首字母小写,例如 `getUserName`; -* 属性的命名使用驼峰法,并且首字母小写,例如 `tableName`、`instance`; -* 以双下划线“__”打头的函数或方法作为魔法方法,例如 `__call` 和 `__autoload`; - -### 常量和配置 - -* 常量以大写字母和下划线命名,例如 `APP_PATH`和 `THINK_PATH`; -* 配置参数以小写字母和下划线命名,例如 `url_route_on` 和`url_convert`; - -### 数据表和字段 - -* 数据表和字段采用小写加下划线方式命名,并注意字段名不要以下划线开头,例如 `think_user` 表和 `user_name`字段,不建议使用驼峰和中文作为数据表字段命名。 - -## 参与开发 - -请参阅 [ThinkPHP5 核心框架包](https://github.com/top-think/framework)。 - -## 版权信息 - -ThinkPHP遵循Apache2开源协议发布,并提供免费使用。 - -本项目包含的第三方源码和二进制文件之版权信息另行标注。 - -版权所有Copyright © 2006-2018 by ThinkPHP (http://thinkphp.cn) - -All rights reserved。 - -ThinkPHP® 商标和著作权所有者为上海顶想信息科技有限公司。 - -更多细节参阅 [LICENSE.txt](LICENSE.txt) diff --git a/php/SimpleInfoMan/application/.htaccess b/php/SimpleInfoMan/application/.htaccess deleted file mode 100644 index 3418e55..0000000 --- a/php/SimpleInfoMan/application/.htaccess +++ /dev/null @@ -1 +0,0 @@ -deny from all \ No newline at end of file diff --git a/php/SimpleInfoMan/application/command.php b/php/SimpleInfoMan/application/command.php deleted file mode 100644 index 826bb2b..0000000 --- a/php/SimpleInfoMan/application/command.php +++ /dev/null @@ -1,12 +0,0 @@ - -// +---------------------------------------------------------------------- - -return []; diff --git a/php/SimpleInfoMan/application/common.php b/php/SimpleInfoMan/application/common.php deleted file mode 100644 index 55d22f2..0000000 --- a/php/SimpleInfoMan/application/common.php +++ /dev/null @@ -1,12 +0,0 @@ - -// +---------------------------------------------------------------------- - -// 应用公共文件 diff --git a/php/SimpleInfoMan/application/index/controller/Index.php b/php/SimpleInfoMan/application/index/controller/Index.php deleted file mode 100644 index e4223b4..0000000 --- a/php/SimpleInfoMan/application/index/controller/Index.php +++ /dev/null @@ -1,30 +0,0 @@ -select(); - $this->assign(["userList" => $userList]); - return $this->fetch("info"); - } -} \ No newline at end of file diff --git a/php/SimpleInfoMan/application/index/controller/Tools.php b/php/SimpleInfoMan/application/index/controller/Tools.php deleted file mode 100644 index c5e6df6..0000000 --- a/php/SimpleInfoMan/application/index/controller/Tools.php +++ /dev/null @@ -1,85 +0,0 @@ - $value) { - $result = $result->where($key, $value); - switch ($key) { - case "order": { - $result = $result->order($data["order"]); - break; - } - default: { - $result = $result->where($key, $value); - break; - } - } - } - $result = $result->select(); - return json(["code" => 1, "data" => $result]); - } - public function deleteDB() - { - $result = Db::table("info")->where("id", input('id'))->delete(); - if (!$result) - return json(["code" => 0, "data" => $result]); - return json(["code" => 1, "data" => $result]); - } - public function insertDB() - { - $data = input(); - $result = Db::table("info")->insert($data); - if (empty($result)) - return json(["code" => 0, "data" => $result]); - return json(["code" => 1, "data" => $result]); - } - public function updateDB() - { - $data = input(); - $result = Db::table("info")->where("id", $data["id"])->update($data); - if (empty($result)) - return json(["code" => 0, "data" => $result]); - return json(["code" => 1, "data" => $result]); - } - public function register() - { - $data = input(); - $result = Db::table("users")->insert($data); - if (empty($result)) - return json(["code" => 0, "data" => $result]); - return json(["code" => 1, "data" => $result]); - } - public function login() - { - $data = input(); - - $result = Db::table("users")->where("username", $data['username']); - if (!$result->select()) - return json(["code" => 0, "data" => "username does not found"]); - - $result = $result->where("password", $data['password']); - if (!$result->select()) - return json(["code" => 0, "data" => "password does not match"]); - - $random = md5(uniqid(rand(), true)); - // todo: 过期时间服务器判断 - $expiration_time = strtotime("+1 hour"); - $expiration_time = date('Y-m-d H:i:s', $expiration_time); - $data = [ - "username" => $data["username"], - "token" => $random, - "expiration_time" => $expiration_time - ]; - Db::table("tokens")->insert($data); - return json(["code" => 1, "data" => ["token" => $random, "expiration_time" => $expiration_time]]); - } -} \ No newline at end of file diff --git a/php/SimpleInfoMan/application/index/view/index/index.html b/php/SimpleInfoMan/application/index/view/index/index.html deleted file mode 100644 index 655c5ee..0000000 --- a/php/SimpleInfoMan/application/index/view/index/index.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - 注册页面 - - - - - - - - - -
- -

信息管理系统

- - - - - - \ No newline at end of file diff --git a/php/SimpleInfoMan/application/index/view/index/info.html b/php/SimpleInfoMan/application/index/view/index/info.html deleted file mode 100644 index f3d1d7a..0000000 --- a/php/SimpleInfoMan/application/index/view/index/info.html +++ /dev/null @@ -1,324 +0,0 @@ - - - - - - - - - - - - - 查询 - - - - -
-
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
- -
-
- -
- -
-
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
- -
-
- -
- -
-
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
- -
-
- -
- -
- - - - - - - - - - - - - -
IDNameAgeGenderBirthdayClubAction
-
- - - - - - \ No newline at end of file diff --git a/php/SimpleInfoMan/application/index/view/index/login.html b/php/SimpleInfoMan/application/index/view/index/login.html deleted file mode 100644 index e509799..0000000 --- a/php/SimpleInfoMan/application/index/view/index/login.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - 登录页面 - - - - - - - - - -
- -

欢迎登录

- -
-
- account_circle - - -
-
- lock - - -
- -
- -

还没有账号?立即注册

- -
- - - - - \ No newline at end of file diff --git a/php/SimpleInfoMan/application/index/view/index/register.html b/php/SimpleInfoMan/application/index/view/index/register.html deleted file mode 100644 index 1642d51..0000000 --- a/php/SimpleInfoMan/application/index/view/index/register.html +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - 注册页面 - - - - - - - - - -
- -

欢迎注册

- -
-
- account_circle - - -
-
- lock - - -
-
- email - - -
- -
- -

已有账号?立即登录

- -
- - - - - \ No newline at end of file diff --git a/php/SimpleInfoMan/application/provider.php b/php/SimpleInfoMan/application/provider.php deleted file mode 100644 index d0fcd24..0000000 --- a/php/SimpleInfoMan/application/provider.php +++ /dev/null @@ -1,14 +0,0 @@ - -// +---------------------------------------------------------------------- - -// 应用容器绑定定义 -return [ -]; diff --git a/php/SimpleInfoMan/application/tags.php b/php/SimpleInfoMan/application/tags.php deleted file mode 100644 index 4b18d10..0000000 --- a/php/SimpleInfoMan/application/tags.php +++ /dev/null @@ -1,28 +0,0 @@ - -// +---------------------------------------------------------------------- - -// 应用行为扩展定义文件 -return [ - // 应用初始化 - 'app_init' => [], - // 应用开始 - 'app_begin' => [], - // 模块初始化 - 'module_init' => [], - // 操作开始执行 - 'action_begin' => [], - // 视图内容过滤 - 'view_filter' => [], - // 日志写入 - 'log_write' => [], - // 应用结束 - 'app_end' => [], -]; diff --git a/php/SimpleInfoMan/build.php b/php/SimpleInfoMan/build.php deleted file mode 100644 index 34ba3c8..0000000 --- a/php/SimpleInfoMan/build.php +++ /dev/null @@ -1,26 +0,0 @@ - -// +---------------------------------------------------------------------- - -return [ - // 生成应用公共文件 - '__file__' => ['common.php'], - - // 定义demo模块的自动生成 (按照实际定义的文件名生成) - 'demo' => [ - '__file__' => ['common.php'], - '__dir__' => ['behavior', 'controller', 'model', 'view'], - 'controller' => ['Index', 'Test', 'UserType'], - 'model' => ['User', 'UserType'], - 'view' => ['index/index'], - ], - - // 其他更多的模块定义 -]; diff --git a/php/SimpleInfoMan/composer.json b/php/SimpleInfoMan/composer.json deleted file mode 100644 index 8d04947..0000000 --- a/php/SimpleInfoMan/composer.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "name": "topthink/think", - "description": "the new thinkphp framework", - "type": "project", - "keywords": [ - "framework", - "thinkphp", - "ORM" - ], - "homepage": "http://thinkphp.cn/", - "license": "Apache-2.0", - "authors": [ - { - "name": "liu21st", - "email": "liu21st@gmail.com" - } - ], - "require": { - "php": ">=5.6.0", - "topthink/framework": "5.1.*" - }, - "autoload": { - "psr-4": { - "app\\": "application" - } - }, - "extra": { - "think-path": "thinkphp" - }, - "config": { - "preferred-install": "dist", - "allow-plugins": { - "topthink/think-installer": true - } - } -} diff --git a/php/SimpleInfoMan/composer.lock b/php/SimpleInfoMan/composer.lock deleted file mode 100644 index f26379e..0000000 --- a/php/SimpleInfoMan/composer.lock +++ /dev/null @@ -1,133 +0,0 @@ -{ - "_readme": [ - "This file locks the dependencies of your project to a known state", - "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", - "This file is @generated automatically" - ], - "content-hash": "296bd8a1d28e39d56dcd80ce7be249f3", - "packages": [ - { - "name": "topthink/framework", - "version": "v5.1.41", - "source": { - "type": "git", - "url": "https://github.com/top-think/framework.git", - "reference": "7137741a323a4a60cfca334507cd1812fac91bb2" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/top-think/framework/zipball/7137741a323a4a60cfca334507cd1812fac91bb2", - "reference": "7137741a323a4a60cfca334507cd1812fac91bb2", - "shasum": "", - "mirrors": [ - { - "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", - "preferred": true - } - ] - }, - "require": { - "php": ">=5.6.0", - "topthink/think-installer": "2.*" - }, - "require-dev": { - "johnkary/phpunit-speedtrap": "^1.0", - "mikey179/vfsstream": "~1.6", - "phpdocumentor/reflection-docblock": "^2.0", - "phploc/phploc": "2.*", - "phpunit/phpunit": "^5.0|^6.0", - "sebastian/phpcpd": "2.*", - "squizlabs/php_codesniffer": "2.*" - }, - "type": "think-framework", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "liu21st", - "email": "liu21st@gmail.com" - }, - { - "name": "yunwuxin", - "email": "448901948@qq.com" - } - ], - "description": "the new thinkphp framework", - "homepage": "http://thinkphp.cn/", - "keywords": [ - "framework", - "orm", - "thinkphp" - ], - "support": { - "issues": "https://github.com/top-think/framework/issues", - "source": "https://github.com/top-think/framework/tree/v5.1.41" - }, - "time": "2021-01-11T02:51:29+00:00" - }, - { - "name": "topthink/think-installer", - "version": "v2.0.5", - "source": { - "type": "git", - "url": "https://github.com/top-think/think-installer.git", - "reference": "38ba647706e35d6704b5d370c06f8a160b635f88" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/top-think/think-installer/zipball/38ba647706e35d6704b5d370c06f8a160b635f88", - "reference": "38ba647706e35d6704b5d370c06f8a160b635f88", - "shasum": "", - "mirrors": [ - { - "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", - "preferred": true - } - ] - }, - "require": { - "composer-plugin-api": "^1.0||^2.0" - }, - "require-dev": { - "composer/composer": "^1.0||^2.0" - }, - "type": "composer-plugin", - "extra": { - "class": "think\\composer\\Plugin" - }, - "autoload": { - "psr-4": { - "think\\composer\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "yunwuxin", - "email": "448901948@qq.com" - } - ], - "support": { - "issues": "https://github.com/top-think/think-installer/issues", - "source": "https://github.com/top-think/think-installer/tree/v2.0.5" - }, - "time": "2021-01-14T12:12:14+00:00" - } - ], - "packages-dev": [], - "aliases": [], - "minimum-stability": "stable", - "stability-flags": [], - "prefer-stable": false, - "prefer-lowest": false, - "platform": { - "php": ">=5.6.0" - }, - "platform-dev": [], - "plugin-api-version": "2.2.0" -} diff --git a/php/SimpleInfoMan/config/app.php b/php/SimpleInfoMan/config/app.php deleted file mode 100644 index 1178d19..0000000 --- a/php/SimpleInfoMan/config/app.php +++ /dev/null @@ -1,146 +0,0 @@ - -// +---------------------------------------------------------------------- - -// +---------------------------------------------------------------------- -// | 应用设置 -// +---------------------------------------------------------------------- - -return [ - // 应用名称 - 'app_name' => '', - // 应用地址 - 'app_host' => '', - // 应用调试模式 - 'app_debug' => true, - // 应用Trace - 'app_trace' => true, - // 是否支持多模块 - 'app_multi_module' => true, - // 入口自动绑定模块 - 'auto_bind_module' => false, - // 注册的根命名空间 - 'root_namespace' => [], - // 默认输出类型 - 'default_return_type' => 'html', - // 默认AJAX 数据返回格式,可选json xml ... - 'default_ajax_return' => 'json', - // 默认JSONP格式返回的处理方法 - 'default_jsonp_handler' => 'jsonpReturn', - // 默认JSONP处理方法 - 'var_jsonp_handler' => 'callback', - // 默认时区 - 'default_timezone' => 'Asia/Shanghai', - // 是否开启多语言 - 'lang_switch_on' => false, - // 默认全局过滤方法 用逗号分隔多个 - 'default_filter' => '', - // 默认语言 - 'default_lang' => 'zh-cn', - // 应用类库后缀 - 'class_suffix' => false, - // 控制器类后缀 - 'controller_suffix' => false, - - // +---------------------------------------------------------------------- - // | 模块设置 - // +---------------------------------------------------------------------- - - // 默认模块名 - 'default_module' => 'index', - // 禁止访问模块 - 'deny_module_list' => ['common'], - // 默认控制器名 - 'default_controller' => 'Index', - // 默认操作名 - 'default_action' => 'index', - // 默认验证器 - 'default_validate' => '', - // 默认的空模块名 - 'empty_module' => '', - // 默认的空控制器名 - 'empty_controller' => 'Error', - // 操作方法前缀 - 'use_action_prefix' => false, - // 操作方法后缀 - 'action_suffix' => '', - // 自动搜索控制器 - 'controller_auto_search' => false, - - // +---------------------------------------------------------------------- - // | URL设置 - // +---------------------------------------------------------------------- - - // PATHINFO变量名 用于兼容模式 - 'var_pathinfo' => 's', - // 兼容PATH_INFO获取 - 'pathinfo_fetch' => ['ORIG_PATH_INFO', 'REDIRECT_PATH_INFO', 'REDIRECT_URL'], - // pathinfo分隔符 - 'pathinfo_depr' => '/', - // HTTPS代理标识 - 'https_agent_name' => '', - // IP代理获取标识 - 'http_agent_ip' => 'X-REAL-IP', - // URL伪静态后缀 - 'url_html_suffix' => 'html', - // URL普通方式参数 用于自动生成 - 'url_common_param' => false, - // URL参数方式 0 按名称成对解析 1 按顺序解析 - 'url_param_type' => 0, - // 是否开启路由延迟解析 - 'url_lazy_route' => false, - // 是否强制使用路由 - 'url_route_must' => false, - // 合并路由规则 - 'route_rule_merge' => false, - // 路由是否完全匹配 - 'route_complete_match' => false, - // 使用注解路由 - 'route_annotation' => false, - // 域名根,如thinkphp.cn - 'url_domain_root' => '', - // 是否自动转换URL中的控制器和操作名 - 'url_convert' => true, - // 默认的访问控制器层 - 'url_controller_layer' => 'controller', - // 表单请求类型伪装变量 - 'var_method' => '_method', - // 表单ajax伪装变量 - 'var_ajax' => '_ajax', - // 表单pjax伪装变量 - 'var_pjax' => '_pjax', - // 是否开启请求缓存 true自动缓存 支持设置请求缓存规则 - 'request_cache' => false, - // 请求缓存有效期 - 'request_cache_expire' => null, - // 全局请求缓存排除规则 - 'request_cache_except' => [], - // 是否开启路由缓存 - 'route_check_cache' => false, - // 路由缓存的Key自定义设置(闭包),默认为当前URL和请求类型的md5 - 'route_check_cache_key' => '', - // 路由缓存类型及参数 - 'route_cache_option' => [], - - // 默认跳转页面对应的模板文件 - 'dispatch_success_tmpl' => Env::get('think_path') . 'tpl/dispatch_jump.tpl', - 'dispatch_error_tmpl' => Env::get('think_path') . 'tpl/dispatch_jump.tpl', - - // 异常页面的模板文件 - 'exception_tmpl' => Env::get('think_path') . 'tpl/think_exception.tpl', - - // 错误显示信息,非调试模式有效 - 'error_message' => '页面错误!请稍后再试~', - // 显示错误信息 - 'show_error_msg' => false, - // 异常处理handle类 留空使用 \think\exception\Handle - 'exception_handle' => '', - -]; diff --git a/php/SimpleInfoMan/config/cache.php b/php/SimpleInfoMan/config/cache.php deleted file mode 100644 index 985dbb1..0000000 --- a/php/SimpleInfoMan/config/cache.php +++ /dev/null @@ -1,25 +0,0 @@ - -// +---------------------------------------------------------------------- - -// +---------------------------------------------------------------------- -// | 缓存设置 -// +---------------------------------------------------------------------- - -return [ - // 驱动方式 - 'type' => 'File', - // 缓存保存目录 - 'path' => '', - // 缓存前缀 - 'prefix' => '', - // 缓存有效期 0表示永久缓存 - 'expire' => 0, -]; diff --git a/php/SimpleInfoMan/config/console.php b/php/SimpleInfoMan/config/console.php deleted file mode 100644 index a7fabca..0000000 --- a/php/SimpleInfoMan/config/console.php +++ /dev/null @@ -1,20 +0,0 @@ - -// +---------------------------------------------------------------------- - -// +---------------------------------------------------------------------- -// | 控制台配置 -// +---------------------------------------------------------------------- -return [ - 'name' => 'Think Console', - 'version' => '0.1', - 'user' => null, - 'auto_path' => env('app_path') . 'command' . DIRECTORY_SEPARATOR, -]; diff --git a/php/SimpleInfoMan/config/cookie.php b/php/SimpleInfoMan/config/cookie.php deleted file mode 100644 index 1de0708..0000000 --- a/php/SimpleInfoMan/config/cookie.php +++ /dev/null @@ -1,30 +0,0 @@ - -// +---------------------------------------------------------------------- - -// +---------------------------------------------------------------------- -// | Cookie设置 -// +---------------------------------------------------------------------- -return [ - // cookie 名称前缀 - 'prefix' => '', - // cookie 保存时间 - 'expire' => 0, - // cookie 保存路径 - 'path' => '/', - // cookie 有效域名 - 'domain' => '', - // cookie 启用安全传输 - 'secure' => false, - // httponly设置 - 'httponly' => '', - // 是否使用 setcookie - 'setcookie' => true, -]; diff --git a/php/SimpleInfoMan/config/database.php b/php/SimpleInfoMan/config/database.php deleted file mode 100644 index 47fec88..0000000 --- a/php/SimpleInfoMan/config/database.php +++ /dev/null @@ -1,63 +0,0 @@ - -// +---------------------------------------------------------------------- - -return [ - // 数据库类型 - 'type' => 'mysql', - // 服务器地址 - 'hostname' => '127.0.0.1', - // 数据库名 - 'database' => 'ruankai_test1', - // 用户名 - 'username' => 'root', - // 密码 - 'password' => 'root', - // 端口 - 'hostport' => '', - // 连接dsn - 'dsn' => '', - // 数据库连接参数 - 'params' => [], - // 数据库编码默认采用utf8 - 'charset' => 'utf8', - // 数据库表前缀 - 'prefix' => '', - // 数据库调试模式 - 'debug' => true, - // 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器) - 'deploy' => 0, - // 数据库读写是否分离 主从式有效 - 'rw_separate' => false, - // 读写分离后 主服务器数量 - 'master_num' => 1, - // 指定从服务器序号 - 'slave_no' => '', - // 自动读取主库数据 - 'read_master' => false, - // 是否严格检查字段是否存在 - 'fields_strict' => true, - // 数据集返回类型 - 'resultset_type' => 'array', - // 自动写入时间戳字段 - 'auto_timestamp' => false, - // 时间字段取出后的默认时间格式 - 'datetime_format' => 'Y-m-d H:i:s', - // 是否需要进行SQL性能分析 - 'sql_explain' => false, - // Builder类 - 'builder' => '', - // Query类 - 'query' => '\\think\\db\\Query', - // 是否需要断线重连 - 'break_reconnect' => false, - // 断线标识字符串 - 'break_match_str' => [], -]; diff --git a/php/SimpleInfoMan/config/log.php b/php/SimpleInfoMan/config/log.php deleted file mode 100644 index b3d87b4..0000000 --- a/php/SimpleInfoMan/config/log.php +++ /dev/null @@ -1,30 +0,0 @@ - -// +---------------------------------------------------------------------- - -// +---------------------------------------------------------------------- -// | 日志设置 -// +---------------------------------------------------------------------- -return [ - // 日志记录方式,内置 file socket 支持扩展 - 'type' => 'File', - // 日志保存目录 - 'path' => '', - // 日志记录级别 - 'level' => [], - // 单文件日志写入 - 'single' => false, - // 独立日志级别 - 'apart_level' => [], - // 最大日志文件数量 - 'max_files' => 0, - // 是否关闭日志写入 - 'close' => false, -]; diff --git a/php/SimpleInfoMan/config/middleware.php b/php/SimpleInfoMan/config/middleware.php deleted file mode 100644 index fe15ec3..0000000 --- a/php/SimpleInfoMan/config/middleware.php +++ /dev/null @@ -1,18 +0,0 @@ - -// +---------------------------------------------------------------------- - -// +---------------------------------------------------------------------- -// | 中间件配置 -// +---------------------------------------------------------------------- -return [ - // 默认中间件命名空间 - 'default_namespace' => 'app\\http\\middleware\\', -]; diff --git a/php/SimpleInfoMan/config/session.php b/php/SimpleInfoMan/config/session.php deleted file mode 100644 index 1d7b6c6..0000000 --- a/php/SimpleInfoMan/config/session.php +++ /dev/null @@ -1,26 +0,0 @@ - -// +---------------------------------------------------------------------- - -// +---------------------------------------------------------------------- -// | 会话设置 -// +---------------------------------------------------------------------- - -return [ - 'id' => '', - // SESSION_ID的提交变量,解决flash上传跨域 - 'var_session_id' => '', - // SESSION 前缀 - 'prefix' => 'think', - // 驱动方式 支持redis memcache memcached - 'type' => '', - // 是否自动开启 SESSION - 'auto_start' => true, -]; diff --git a/php/SimpleInfoMan/config/template.php b/php/SimpleInfoMan/config/template.php deleted file mode 100644 index 299bd6f..0000000 --- a/php/SimpleInfoMan/config/template.php +++ /dev/null @@ -1,35 +0,0 @@ - -// +---------------------------------------------------------------------- - -// +---------------------------------------------------------------------- -// | 模板设置 -// +---------------------------------------------------------------------- - -return [ - // 模板引擎类型 支持 php think 支持扩展 - 'type' => 'Think', - // 默认模板渲染规则 1 解析为小写+下划线 2 全部转换小写 3 保持操作方法 - 'auto_rule' => 1, - // 模板路径 - 'view_path' => '', - // 模板后缀 - 'view_suffix' => 'html', - // 模板文件名分隔符 - 'view_depr' => DIRECTORY_SEPARATOR, - // 模板引擎普通标签开始标记 - 'tpl_begin' => '{', - // 模板引擎普通标签结束标记 - 'tpl_end' => '}', - // 标签库标签开始标记 - 'taglib_begin' => '{', - // 标签库标签结束标记 - 'taglib_end' => '}', -]; diff --git a/php/SimpleInfoMan/config/trace.php b/php/SimpleInfoMan/config/trace.php deleted file mode 100644 index 425d301..0000000 --- a/php/SimpleInfoMan/config/trace.php +++ /dev/null @@ -1,18 +0,0 @@ - -// +---------------------------------------------------------------------- - -// +---------------------------------------------------------------------- -// | Trace设置 开启 app_trace 后 有效 -// +---------------------------------------------------------------------- -return [ - // 内置Html Console 支持扩展 - 'type' => 'Html', -]; diff --git a/php/SimpleInfoMan/extend/.gitignore b/php/SimpleInfoMan/extend/.gitignore deleted file mode 100644 index c96a04f..0000000 --- a/php/SimpleInfoMan/extend/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore \ No newline at end of file diff --git a/php/SimpleInfoMan/init.sql b/php/SimpleInfoMan/init.sql deleted file mode 100644 index 34f0880..0000000 --- a/php/SimpleInfoMan/init.sql +++ /dev/null @@ -1,27 +0,0 @@ -CREATE DATABASE IF NOT EXISTS ruankai_test1 CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci; --- 切换到 user_management 数据库 -USE ruankai_test1; --- 在 user_management 数据库中创建名为 users 的表 -CREATE TABLE IF NOT EXISTS users ( - id INT(11) UNSIGNED AUTO_INCREMENT PRIMARY KEY, - username VARCHAR(255) NOT NULL, - password VARCHAR(255) NOT NULL, - email VARCHAR(255) NOT NULL UNIQUE -) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_general_ci; -CREATE TABLE IF NOT EXISTS `ruankai_test1`.`info` ( - `id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, - `name` VARCHAR(255) NOT NULL, - `age` INT(11) NOT NULL, - `gender` VARCHAR(50) NOT NULL, - `birthday` DATE NOT NULL, - `club` VARCHAR(255) NOT NULL -); -CREATE TABLE IF NOT EXISTS tokens ( - id INT(11) NOT NULL AUTO_INCREMENT, - username VARCHAR(50) NOT NULL, - token VARCHAR(255) NOT NULL, - expiration_time DATETIME NOT NULL, - PRIMARY KEY (id), - INDEX (username), - FOREIGN KEY (username) REFERENCES users(username) -); \ No newline at end of file diff --git a/php/SimpleInfoMan/public/.htaccess b/php/SimpleInfoMan/public/.htaccess deleted file mode 100644 index cbc7868..0000000 --- a/php/SimpleInfoMan/public/.htaccess +++ /dev/null @@ -1,8 +0,0 @@ - - Options +FollowSymlinks -Multiviews - RewriteEngine On - - RewriteCond %{REQUEST_FILENAME} !-d - RewriteCond %{REQUEST_FILENAME} !-f - RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] - diff --git a/php/SimpleInfoMan/public/favicon.ico b/php/SimpleInfoMan/public/favicon.ico deleted file mode 100644 index e71815a..0000000 Binary files a/php/SimpleInfoMan/public/favicon.ico and /dev/null differ diff --git a/php/SimpleInfoMan/public/index.php b/php/SimpleInfoMan/public/index.php deleted file mode 100644 index 22dc158..0000000 --- a/php/SimpleInfoMan/public/index.php +++ /dev/null @@ -1,21 +0,0 @@ - -// +---------------------------------------------------------------------- - -// [ 应用入口文件 ] -namespace think; - -// 加载基础文件 -require __DIR__ . '/../thinkphp/base.php'; - -// 支持事先使用静态方法设置Request对象和Config对象 - -// 执行应用并响应 -Container::get('app')->run()->send(); diff --git a/php/SimpleInfoMan/public/robots.txt b/php/SimpleInfoMan/public/robots.txt deleted file mode 100644 index eb05362..0000000 --- a/php/SimpleInfoMan/public/robots.txt +++ /dev/null @@ -1,2 +0,0 @@ -User-agent: * -Disallow: diff --git a/php/SimpleInfoMan/public/router.php b/php/SimpleInfoMan/public/router.php deleted file mode 100644 index 4f916b4..0000000 --- a/php/SimpleInfoMan/public/router.php +++ /dev/null @@ -1,17 +0,0 @@ - -// +---------------------------------------------------------------------- -// $Id$ - -if (is_file($_SERVER["DOCUMENT_ROOT"] . $_SERVER["SCRIPT_NAME"])) { - return false; -} else { - require __DIR__ . "/index.php"; -} diff --git a/php/SimpleInfoMan/public/static/.gitignore b/php/SimpleInfoMan/public/static/.gitignore deleted file mode 100644 index c96a04f..0000000 --- a/php/SimpleInfoMan/public/static/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore \ No newline at end of file diff --git a/php/SimpleInfoMan/route/route.php b/php/SimpleInfoMan/route/route.php deleted file mode 100644 index 6f479d3..0000000 --- a/php/SimpleInfoMan/route/route.php +++ /dev/null @@ -1,20 +0,0 @@ - -// +---------------------------------------------------------------------- - -Route::get('think', function () { - return 'hello,ThinkPHP5!'; -}); - -Route::get('hello/:name', 'index/hello'); - -return [ - -]; diff --git a/php/SimpleInfoMan/runtime/.gitignore b/php/SimpleInfoMan/runtime/.gitignore deleted file mode 100644 index c96a04f..0000000 --- a/php/SimpleInfoMan/runtime/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore \ No newline at end of file diff --git a/php/SimpleInfoMan/think b/php/SimpleInfoMan/think deleted file mode 100644 index 6a923b3..0000000 --- a/php/SimpleInfoMan/think +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env php - -// +---------------------------------------------------------------------- - -namespace think; - -// 加载基础文件 -require __DIR__ . '/thinkphp/base.php'; - -// 应用初始化 -Container::get('app')->path(__DIR__ . '/application/')->initialize(); - -// 控制台初始化 -Console::init(); \ No newline at end of file diff --git a/php/StudentManager/create_table.sql b/php/StudentManager/create_table.sql deleted file mode 100644 index ecc32b9..0000000 --- a/php/StudentManager/create_table.sql +++ /dev/null @@ -1,11 +0,0 @@ -CREATE TABLE IF NOT EXISTS `user` ( - `id` int AUTO_INCREMENT, - `name` varchar(255), - `sex` varchar(255), - `class` int, - PRIMARY KEY(id) -); -CREATE TABLE IF NOT EXISTS `account` ( - `username` VARCHAR(100) NOT NULL, - `password` VARCHAR(100) NOT NULL -); \ No newline at end of file diff --git a/php/StudentManager/index.php b/php/StudentManager/index.php deleted file mode 100644 index 0b41ef8..0000000 --- a/php/StudentManager/index.php +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - 主页 - - - -
- -
-
- - - - - -
- - - - - - - - "; - echo ""; - echo ""; - echo ""; - echo ""; - echo ""; - echo ""; - } - ?> -
id姓名性别班级
"; - echo $item["id"]; - echo ""; - echo $item["name"]; - echo ""; - echo $item["sex"]; - echo ""; - echo $item["class"]; - echo ""; - echo ""; - echo ""; - echo "
- - - \ No newline at end of file diff --git a/php/StudentManager/tools/add.php b/php/StudentManager/tools/add.php deleted file mode 100644 index 232c98e..0000000 --- a/php/StudentManager/tools/add.php +++ /dev/null @@ -1,22 +0,0 @@ - \ No newline at end of file diff --git a/php/StudentManager/tools/add_ui.php b/php/StudentManager/tools/add_ui.php deleted file mode 100644 index 7a589ea..0000000 --- a/php/StudentManager/tools/add_ui.php +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - 添加 - - - -
- 姓名:
- 性别: 男 -
- 班级:
- -
- - - \ No newline at end of file diff --git a/php/StudentManager/tools/delete.php b/php/StudentManager/tools/delete.php deleted file mode 100644 index da56422..0000000 --- a/php/StudentManager/tools/delete.php +++ /dev/null @@ -1,20 +0,0 @@ -"; -$result = mysqli_query($conn, $sql); -if (!$result) { - echo "ERROR:" . mysqli_error($conn); -} else { - echo "删除成功"; - -} -header("Refresh:2;url=../index.php"); - -?> \ No newline at end of file diff --git a/php/StudentManager/tools/login.php b/php/StudentManager/tools/login.php deleted file mode 100644 index 2f52893..0000000 --- a/php/StudentManager/tools/login.php +++ /dev/null @@ -1,43 +0,0 @@ -"; - header("Refresh:2;url=login_ui.php"); - break; - } - $flag = 2; - echo "登陆成功"; - setcookie('username', $username, time() + 3600); - setcookie('password', $password, time() + 3600); - //暂时先这样保存登录状态好了 - header("Refresh:2;url=../index.php"); - } - if (!$flag) { - echo "账号不存在
"; - header("Refresh:2;url=login_ui.php"); - } -} -?> \ No newline at end of file diff --git a/php/StudentManager/tools/login_ui.php b/php/StudentManager/tools/login_ui.php deleted file mode 100644 index 5f7d6e0..0000000 --- a/php/StudentManager/tools/login_ui.php +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - 登录 - - - -
- 账号:
- 密码:
- -
- - - \ No newline at end of file diff --git a/php/StudentManager/tools/modify.php b/php/StudentManager/tools/modify.php deleted file mode 100644 index aa00bca..0000000 --- a/php/StudentManager/tools/modify.php +++ /dev/null @@ -1,25 +0,0 @@ -"; - $result = mysqli_multi_query($conn, $sql); - if (!$result) { - echo "ERROR:" . mysqli_error($conn); - } else { - echo "修改成功"; - - } -} -header("Refresh:2;url=../index.php"); - -?> \ No newline at end of file diff --git a/php/StudentManager/tools/modify_ui.php b/php/StudentManager/tools/modify_ui.php deleted file mode 100644 index 76c080b..0000000 --- a/php/StudentManager/tools/modify_ui.php +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - 修改 - - - -
- id:     
- 姓名:
- 性别: >男 - >女
- 班级:
- -
- - - \ No newline at end of file diff --git a/php/StudentManager/tools/search.php b/php/StudentManager/tools/search.php deleted file mode 100644 index f1d5a49..0000000 --- a/php/StudentManager/tools/search.php +++ /dev/null @@ -1,54 +0,0 @@ -"; - $result = mysqli_query($conn, $sql); - if (!$result) { - die("ERROR:" . mysqli_error($conn)); - } - echo ""; - while ($item = mysqli_fetch_assoc($result)) { - echo ""; - echo ""; - echo ""; - echo ""; - echo ""; - echo ""; - echo ""; - } - echo "
"; - echo $item["id"]; - echo ""; - echo $item["name"]; - echo ""; - echo $item["sex"]; - echo ""; - echo $item["class"]; - echo ""; - echo ""; - echo ""; - echo "
"; -} \ No newline at end of file diff --git a/python/.gitignore b/python/.gitignore deleted file mode 100644 index 6769e21..0000000 --- a/python/.gitignore +++ /dev/null @@ -1,160 +0,0 @@ -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -*$py.class - -# C extensions -*.so - -# Distribution / packaging -.Python -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -wheels/ -share/python-wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.nox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*.cover -*.py,cover -.hypothesis/ -.pytest_cache/ -cover/ - -# Translations -*.mo -*.pot - -# Django stuff: -*.log -local_settings.py -db.sqlite3 -db.sqlite3-journal - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - -# Sphinx documentation -docs/_build/ - -# PyBuilder -.pybuilder/ -target/ - -# Jupyter Notebook -.ipynb_checkpoints - -# IPython -profile_default/ -ipython_config.py - -# pyenv -# For a library or package, you might want to ignore these files since the code is -# intended to run in multiple environments; otherwise, check them in: -# .python-version - -# pipenv -# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. -# However, in case of collaboration, if having platform-specific dependencies or dependencies -# having no cross-platform support, pipenv may install dependencies that don't work, or not -# install all needed dependencies. -#Pipfile.lock - -# poetry -# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. -# This is especially recommended for binary packages to ensure reproducibility, and is more -# commonly ignored for libraries. -# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control -#poetry.lock - -# pdm -# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. -#pdm.lock -# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it -# in version control. -# https://pdm.fming.dev/#use-with-ide -.pdm.toml - -# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm -__pypackages__/ - -# Celery stuff -celerybeat-schedule -celerybeat.pid - -# SageMath parsed files -*.sage.py - -# Environments -.env -.venv -env/ -venv/ -ENV/ -env.bak/ -venv.bak/ - -# Spyder project settings -.spyderproject -.spyproject - -# Rope project settings -.ropeproject - -# mkdocs documentation -/site - -# mypy -.mypy_cache/ -.dmypy.json -dmypy.json - -# Pyre type checker -.pyre/ - -# pytype static type analyzer -.pytype/ - -# Cython debug symbols -cython_debug/ - -# PyCharm -# JetBrains specific template is maintained in a separate JetBrains.gitignore that can -# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore -# and can be added to the global gitignore or merged into this file. For a more nuclear -# option (not recommended) you can uncomment the following to ignore the entire idea folder. -#.idea/ \ No newline at end of file diff --git a/python/helloworld/helloworld.py b/python/helloworld/helloworld.py deleted file mode 100644 index 4648e70..0000000 --- a/python/helloworld/helloworld.py +++ /dev/null @@ -1 +0,0 @@ -print("Hello, World!") \ No newline at end of file diff --git a/git/r.sh b/r.sh similarity index 76% rename from git/r.sh rename to r.sh index c83065d..1828f09 100644 --- a/git/r.sh +++ b/r.sh @@ -1,17 +1,17 @@ -#!/bin/sh - -git filter-branch --env-filter ' -OLD_EMAIL="torvalds@linux-foundation.org" -CORRECT_NAME="DataEraser" -CORRECT_EMAIL="102341238+DataEraserC@users.noreply.github.com" -if [ "$GIT_COMMITTER_EMAIL" = "$OLD_EMAIL" ] -then - export GIT_COMMITTER_NAME="$CORRECT_NAME" - export GIT_COMMITTER_EMAIL="$CORRECT_EMAIL" -fi -if [ "$GIT_AUTHOR_EMAIL" = "$OLD_EMAIL" ] -then - export GIT_AUTHOR_NAME="$CORRECT_NAME" - export GIT_AUTHOR_EMAIL="$CORRECT_EMAIL" -fi -' --tag-name-filter cat -- --branches --tags +#!/bin/sh + +git filter-branch --env-filter ' +OLD_EMAIL="1770747317@qq.com" +CORRECT_NAME="DataEraser" +CORRECT_EMAIL="MayuriNFC@outlook.com" +if [ "$GIT_COMMITTER_EMAIL" = "$OLD_EMAIL" ] +then + export GIT_COMMITTER_NAME="$CORRECT_NAME" + export GIT_COMMITTER_EMAIL="$CORRECT_EMAIL" +fi +if [ "$GIT_AUTHOR_EMAIL" = "$OLD_EMAIL" ] +then + export GIT_AUTHOR_NAME="$CORRECT_NAME" + export GIT_AUTHOR_EMAIL="$CORRECT_EMAIL" +fi +' --tag-name-filter cat -- --branches --tags diff --git a/git/rewrite.sh b/rewrite.sh similarity index 83% rename from git/rewrite.sh rename to rewrite.sh index bcd0999..78892dd 100644 --- a/git/rewrite.sh +++ b/rewrite.sh @@ -1,5 +1,5 @@ -git filter-branch -f --env-filter "GIT_COMMITTER_NAME=DataEraser; GIT_COMMITTER_EMAIL=102341238+DataEraserC@users.noreply.github.com;" -git filter-branch -f --env-filter "GIT_AUTHOR_NAME=DataEraser; GIT_AUTHOR_EMAIL=102341238+DataEraserC@users.noreply.github.com; " +git filter-branch -f --env-filter "GIT_COMMITTER_NAME=DataEraser; GIT_COMMITTER_EMAIL=MayuriNFC@outlook.com;" +git filter-branch -f --env-filter "GIT_AUTHOR_NAME=DataEraser; GIT_AUTHOR_EMAIL=MayuriNFC@outlook.com; " git filter-branch -f --env-filter "GIT_COMMITTER_NAME=DataEraser; " git filter-branch -f --env-filter "if [ $GIT_COMMITTER_NAME == ‘CommitName’ ]; then GIT_COMMITTER_NAME=‘Demo’; fi " diff --git a/rust/.gitignore b/rust/.gitignore deleted file mode 100644 index ada8be9..0000000 --- a/rust/.gitignore +++ /dev/null @@ -1,14 +0,0 @@ -# Generated by Cargo -# will have compiled files and executables -debug/ -target/ - -# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries -# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html -Cargo.lock - -# These are backup files generated by rustfmt -**/*.rs.bk - -# MSVC Windows builds of rustc generate these, which store debugging information -*.pdb \ No newline at end of file diff --git a/rust/Greeting/Cargo.toml b/rust/Greeting/Cargo.toml deleted file mode 100644 index f32c0eb..0000000 --- a/rust/Greeting/Cargo.toml +++ /dev/null @@ -1,8 +0,0 @@ -[package] -name = "greeting" -version = "0.1.0" -edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[dependencies] diff --git a/rust/Greeting/src/main.rs b/rust/Greeting/src/main.rs deleted file mode 100644 index 4d2041e..0000000 --- a/rust/Greeting/src/main.rs +++ /dev/null @@ -1,13 +0,0 @@ -fn greet_world() { - let southern_germany = "Grüß Gott!"; - let chinese = "世界,你好"; - let english = "World, hello"; - let regions = [southern_germany, chinese, english]; - for region in regions.iter() { - println!("{}", ®ion); - } -} - -fn main() { - greet_world(); -} diff --git a/rust/guess_number/.gitignore b/rust/guess_number/.gitignore deleted file mode 100644 index 9f97022..0000000 --- a/rust/guess_number/.gitignore +++ /dev/null @@ -1 +0,0 @@ -target/ \ No newline at end of file diff --git a/rust/guess_number/Cargo.lock b/rust/guess_number/Cargo.lock deleted file mode 100644 index 7bd35ca..0000000 --- a/rust/guess_number/Cargo.lock +++ /dev/null @@ -1,75 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 3 - -[[package]] -name = "cfg-if" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" - -[[package]] -name = "getrandom" -version = "0.2.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" -dependencies = [ - "cfg-if", - "libc", - "wasi", -] - -[[package]] -name = "guess_number" -version = "0.1.0" -dependencies = [ - "rand", -] - -[[package]] -name = "libc" -version = "0.2.138" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db6d7e329c562c5dfab7a46a2afabc8b987ab9a4834c9d1ca04dc54c1546cef8" - -[[package]] -name = "ppv-lite86" -version = "0.2.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" - -[[package]] -name = "rand" -version = "0.8.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" -dependencies = [ - "libc", - "rand_chacha", - "rand_core", -] - -[[package]] -name = "rand_chacha" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" -dependencies = [ - "ppv-lite86", - "rand_core", -] - -[[package]] -name = "rand_core" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" -dependencies = [ - "getrandom", -] - -[[package]] -name = "wasi" -version = "0.11.0+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" diff --git a/rust/guess_number/Cargo.toml b/rust/guess_number/Cargo.toml deleted file mode 100644 index a1bc66d..0000000 --- a/rust/guess_number/Cargo.toml +++ /dev/null @@ -1,9 +0,0 @@ -[package] -name = "guess_number" -version = "0.1.0" -edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[dependencies] -rand= "^0.8.4" \ No newline at end of file diff --git a/rust/guess_number/src/main.rs b/rust/guess_number/src/main.rs deleted file mode 100644 index 0a69e72..0000000 --- a/rust/guess_number/src/main.rs +++ /dev/null @@ -1,29 +0,0 @@ -use rand::Rng; //trait -use std::cmp::Ordering; -use std::io; // prelude -fn main() { - println!("Guess the number"); - let secret_number = rand::thread_rng().gen_range(1..=100); - // println!("the secret number is {}", secret_number); - // std::io::stdin().read_line(&mut guess).expect("reading error"); - loop { - println!("Guess a number:"); - let mut guess = String::new(); - io::stdin() - .read_line(&mut guess) - .expect("reading line error"); - let guess: u32 = match guess.trim().parse() { - Ok(number) => number, - Err(_) => continue, - }; - println!("the number you guess is {}", guess); - match guess.cmp(&secret_number) { - Ordering::Less => println!("Too small!"), // arm - Ordering::Greater => println!("Too big!"), - Ordering::Equal => { - println!("You win!"); - break; - } - } - } -} diff --git a/rust/tests/Cargo.toml b/rust/tests/Cargo.toml deleted file mode 100644 index 19efcb4..0000000 --- a/rust/tests/Cargo.toml +++ /dev/null @@ -1,9 +0,0 @@ -[package] -name = "tests" -version = "0.1.0" -edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[dependencies] -num = "0.4.0" \ No newline at end of file diff --git a/rust/tests/src/main.rs b/rust/tests/src/main.rs deleted file mode 100644 index 42c201d..0000000 --- a/rust/tests/src/main.rs +++ /dev/null @@ -1,8 +0,0 @@ -fn main() { - let mut s1 = String::from("hello"); - let s2 = &mut s1; - borrow_from_string(&mut s1); -} -fn borrow_from_string(s: &mut String) -> u32 { - 0 -}