diff --git a/.gitignore b/.gitignore
index 0a6fee1..4bb6a53 100644
--- a/.gitignore
+++ b/.gitignore
@@ -129,3 +129,4 @@ dist
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
+.vercel
diff --git a/.vscode/config.json b/.vscode/config.json
new file mode 100644
index 0000000..fae8e3d
--- /dev/null
+++ b/.vscode/config.json
@@ -0,0 +1,4 @@
+{
+ "typescript.tsdk": "node_modules/typescript/lib",
+ "typescript.enablePromptUseWorkspaceTsdk": true
+}
diff --git a/README.md b/README.md
index 1c3e09b..28f6329 100644
--- a/README.md
+++ b/README.md
@@ -36,6 +36,10 @@ Core libraries:
- [React](https://react.dev) - Library for rendering UI and controlling basic state
- [Vite](https://vitejs.dev) - Build library for client UIs
+- [Openzeppelin](https://docs.openzeppelin.com/contracts/4.x/) - Library for writing secure and audited smart contracts
+- [EAS](https://attest.sh) - Contracts for making attestations and verifying claims
+- [Envio](https://envio.dev) - Indexer for querying and indexing blockchain data
+- [Foundry](https://book.getfoundry.sh/getting-started/installation) - Library for compiling and deploying smart contracts
## Contributing
@@ -48,7 +52,6 @@ If you would like to contribute here are the following steps:
- Once done open a [PR](<[https://github.com/wefa-labs/wefa/pulls](https://github.com/Oba-One/web3-starter-kit/pulls)>) to merge into the development branch of the starter kit repo
- Once approved make sure your branch is up to date with main and complete the merge.
-
### test
-```forge test --fork-url https://base-sepolia-rpc.publicnode.com -vvvv```
+`forge test --fork-url https://base-sepolia-rpc.publicnode.com -vvvv`
diff --git a/package.json b/package.json
index aab3724..90747f9 100644
--- a/package.json
+++ b/package.json
@@ -32,9 +32,9 @@
"viem": "^2.19.6"
},
"devDependencies": {
+ "@types/node": "22.5.1",
"concurrently": "8.2.2",
"prettier": "^3.3.3",
- "typescript": "^5.5.4",
"wait-port": "1.1.0"
},
"engines": {
diff --git a/packages/app/index.html b/packages/app/index.html
deleted file mode 100644
index 7af9a51..0000000
--- a/packages/app/index.html
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
-
-
-
-
- Camp Green App
-
-
-
-
-
-
diff --git a/packages/app/package.json b/packages/app/package.json
deleted file mode 100644
index bc82b7b..0000000
--- a/packages/app/package.json
+++ /dev/null
@@ -1,49 +0,0 @@
-{
- "name": "app",
- "private": true,
- "version": "0.0.0",
- "type": "module",
- "scripts": {
- "dev": "vite",
- "build": "tsc && vite build",
- "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
- "preview": "vite preview"
- },
- "dependencies": {
- "@ethereum-attestation-service/eas-sdk": "2.5.0",
- "@hookform/resolvers": "^3.3.4",
- "@privy-io/react-auth": "1.77.0",
- "@xstate/react": "3.2.2",
- "graphql": "16.9.0",
- "lucide-react": "^0.424.0",
- "permissionless": "0.1.44",
- "react": "^18.2.0",
- "react-dom": "^18.2.0",
- "react-dropzone": "14.2.3",
- "react-hook-form": "^7.51.0",
- "react-hot-toast": "2.4.1",
- "react-router-dom": "6.22.2",
- "tailwindcss-animate": "^1.0.7",
- "xstate": "4.38.2",
- "zod": "^3.22.4"
- },
- "devDependencies": {
- "@types/node": "22.1.0",
- "@types/react": "^18.3.3",
- "@types/react-dom": "^18.3.0",
- "@typescript-eslint/eslint-plugin": "^8.0.1",
- "@typescript-eslint/parser": "^8.0.1",
- "@vitejs/plugin-react": "^4.3.1",
- "autoprefixer": "10.4.20",
- "eslint": "^9.8.0",
- "eslint-plugin-react-hooks": "^4.6.0",
- "eslint-plugin-react-refresh": "^0.4.9",
- "postcss": "8.4.41",
- "preline": "2.4.1",
- "tailwindcss": "3.4.1",
- "vite": "^5.4.0",
- "vite-plugin-mkcert": "1.17.5",
- "vite-plugin-pwa": "0.20.1",
- "vite-plugin-svgr": "4.2.0"
- }
-}
diff --git a/packages/app/src/App.tsx b/packages/app/src/App.tsx
deleted file mode 100644
index d72d662..0000000
--- a/packages/app/src/App.tsx
+++ /dev/null
@@ -1,48 +0,0 @@
-import { Toaster } from "react-hot-toast";
-
-import { useWeb3 } from "@/hooks/providers/web3";
-import { usePWA, InstallState } from "@/hooks/providers/pwa";
-import { CampaignsProvider } from "@/hooks/campaign/useCampaigns";
-import { ContributionsProvider } from "@/hooks/work/useContributions";
-
-import Views from "@/views";
-import { Login } from "@/views/Login";
-
-import { Appbar } from "@/components/Layout/AppBar";
-import { CircleLoader } from "@/components/Loader/Circle";
-import { OnlyMobile } from "@/components/Layout/OnlyMobile";
-
-function App() {
- const web3Props = useWeb3();
- const { installState } = usePWA();
- const isLoggedIn = !!web3Props.address;
-
- const Onboard: Record = {
- idle: (
-
-
-
- ),
- installed: !isLoggedIn ? (
- <>
-
-
- >
- ) : (
-
- ),
- prompt: null,
- unsupported: ,
- };
-
- return (
-
-
- {Onboard[installState]}
-
-
-
- );
-}
-
-export default App;
diff --git a/packages/app/src/components/Actions.tsx b/packages/app/src/components/Actions.tsx
deleted file mode 100644
index bbef1c5..0000000
--- a/packages/app/src/components/Actions.tsx
+++ /dev/null
@@ -1,22 +0,0 @@
-import { Web3Props } from "../../hooks/providers/web3";
-
-import { Button } from "../../../../client/src/components/Button";
-
-interface ProfileActionsProps extends Web3Props {}
-
-export const ProfileActions: React.FC = ({
- error,
- address,
- logout,
- login,
-}) => {
- return (
-
- );
-};
diff --git a/packages/app/src/components/Info.tsx b/packages/app/src/components/Info.tsx
deleted file mode 100644
index ec6c36b..0000000
--- a/packages/app/src/components/Info.tsx
+++ /dev/null
@@ -1,28 +0,0 @@
-import { SpringValue, a } from "@react-spring/web";
-
-interface ProfileInfoProps {
- username?: string | null;
- avatar?: string;
- avatarSpring: {
- opacity: SpringValue;
- transform: SpringValue;
- };
-}
-
-export const ProfileInfo: React.FC = ({
- avatar,
- avatarSpring,
- username,
-}) => {
- return (
-
-
-
-
- {username}
-
- );
-};
diff --git a/packages/app/src/hooks/machine.ts b/packages/app/src/hooks/machine.ts
deleted file mode 100644
index 4c58c3d..0000000
--- a/packages/app/src/hooks/machine.ts
+++ /dev/null
@@ -1,258 +0,0 @@
-import { createMachine, assign } from "xstate";
-
-import { uploadMedia } from "@/modules/nftStorage";
-
-export const EASContractAddress = "0xC2679fBD37d54388Ce493F1DB75320D236e1815e"; // Sepolia v0.26
-
-export interface ContributionInfo {
- value: number;
- campaign: string;
- title: string | null;
- description: string | null;
- media: { file: File; title: string; description: string } | null;
- capitals: Capital[];
-}
-
-export interface ContributionContext {
- info: ContributionInfo;
- result: {
- id: string | null;
- };
- error: string | null;
-}
-
-export const contributionMachine = createMachine(
- {
- id: "contribution",
- description:
- "Contribution machine for providing data of contribution for campaign.",
- strict: true,
- tsTypes: {} as import("./machine.typegen").Typegen0,
- predictableActionArguments: true,
- initial: "details",
- schema: {
- services: {} as {
- mediaUploader: {
- data: {
- urls: string[];
- };
- };
- contributionAttester: {
- data: {
- id: string;
- };
- };
- },
- context: {
- info: {
- value: 0,
- campaign: "",
- title: null,
- description: null,
- media: null,
- capitals: [],
- },
- result: {
- id: null,
- },
- error: null,
- } as ContributionContext,
- },
- states: {
- idle: {
- on: {
- ATTEST_WORK: {
- target: "details",
- },
- },
- },
- details: {
- on: {
- NEXT: {
- target: "campaign",
- cond: "areDetailsValid",
- actions: "saveDetails",
- },
- CANCEL: {
- target: "idle",
- actions: "reset",
- },
- },
- },
- // media: {
- // on: {
- // NEXT: {
- // target: "campaign",
- // cond: "isMediaValid",
- // actions: "saveMedia",
- // },
- // BACK: {
- // target: "details",
- // },
- // CANCEL: {
- // target: "idle",
- // actions: "reset",
- // },
- // },
- // },
- campaign: {
- on: {
- NEXT: {
- target: "review",
- cond: "isCampaignValid",
- actions: "saveCampaign",
- },
- BACK: {
- target: "details",
- },
- CANCEL: {
- target: "idle",
- actions: "reset",
- },
- },
- },
- review: {
- on: {
- ATTEST: {
- target: "uploading_media",
- },
- BACK: {
- target: "campaign",
- },
- CANCEL: {
- target: "idle",
- },
- },
- },
- uploading_media: {
- invoke: {
- id: "mediaUploader",
- src: "mediaUploader",
- onDone: {
- target: "attesting_contribution",
- },
- onError: {
- target: "review",
- actions: "error",
- },
- },
- },
- attesting_contribution: {
- invoke: {
- id: "contributionAttester",
- src: "contributionAttester",
- onDone: {
- target: "contribution_attested",
- actions: "contributed",
- },
- onError: {
- target: "review",
- actions: "error",
- },
- },
- },
- contribution_attested: {
- on: {
- GO_HOME: {
- target: "idle",
- actions: ["goHome", "reset"],
- },
- CONTRIBUTE_MORE: {
- target: "details",
- actions: "reset",
- },
- },
- },
- },
- },
- {
- delays: {
- LIGHT_DELAY: (_context, _event) => {
- return true;
- },
- },
- guards: {
- areDetailsValid: (_context, _event) => {
- return true;
- },
- isCampaignValid: (_context) => {
- return true;
- },
- },
- actions: {
- saveDetails: assign((context, event) => {
- console.log("saveDetails", context, event);
-
- return context;
- }),
- saveCampaign: assign((context, event) => {
- console.log("saveCampaign", context, event);
-
- return context;
- }),
- contributed: assign((context, event) => {
- console.log("contributed", context, event);
-
- return context;
- }),
- reset: assign((context, _event) => {
- context.info.value = 0;
- context.info.campaign = "";
- context.info.title = null;
- context.info.description = null;
- context.info.media = null;
- context.info.capitals = [];
-
- context.result.id = null;
-
- context.error = null;
-
- return context;
- }),
- error: assign((context, event) => {
- switch (event.type) {
- case "error.platform.mediaUploader":
- // context.image = null;
- // context.element = null;
-
- // @ts-ignore
- context.error = event.data.message;
- break;
-
- case "error.platform.contributionAttester":
- // @ts-ignore
- context.error = event.data.message;
- break;
-
- default:
- break;
- }
- console.log("Error!", context, event);
-
- // toast.error(context.error || "Error with creature generator.");
-
- return context;
- }),
- },
- services: {
- mediaUploader: async (context, _meta) => {
- if (!context.info.media) {
- return {
- urls: [],
- };
- }
-
- try {
- const urls = await uploadMedia([context.info.media]);
-
- return {
- urls,
- };
- } catch (error) {
- console.log("Media uploading failed!", error);
- throw error;
- }
- },
- },
- }
-);
diff --git a/packages/app/src/hooks/machine.typegen.ts b/packages/app/src/hooks/machine.typegen.ts
deleted file mode 100644
index a5db979..0000000
--- a/packages/app/src/hooks/machine.typegen.ts
+++ /dev/null
@@ -1,64 +0,0 @@
-// This file was automatically generated. Edits will be overwritten
-
-export interface Typegen0 {
- "@@xstate/typegen": true;
- internalEvents: {
- "done.invoke.contributionAttester": {
- type: "done.invoke.contributionAttester";
- data: unknown;
- __tip: "See the XState TS docs to learn how to strongly type this.";
- };
- "done.invoke.mediaUploader": {
- type: "done.invoke.mediaUploader";
- data: unknown;
- __tip: "See the XState TS docs to learn how to strongly type this.";
- };
- "error.platform.contributionAttester": {
- type: "error.platform.contributionAttester";
- data: unknown;
- };
- "error.platform.mediaUploader": {
- type: "error.platform.mediaUploader";
- data: unknown;
- };
- "xstate.init": { type: "xstate.init" };
- };
- invokeSrcNameMap: {
- contributionAttester: "done.invoke.contributionAttester";
- mediaUploader: "done.invoke.mediaUploader";
- };
- missingImplementations: {
- actions: "goHome";
- delays: never;
- guards: never;
- services: "contributionAttester";
- };
- eventsCausingActions: {
- contributed: "done.invoke.contributionAttester";
- error:
- | "error.platform.contributionAttester"
- | "error.platform.mediaUploader";
- goHome: "GO_HOME";
- reset: "CANCEL" | "CONTRIBUTE_MORE" | "GO_HOME";
- saveCampaign: "NEXT";
- saveDetails: "NEXT";
- };
- eventsCausingDelays: {};
- eventsCausingGuards: {
- areDetailsValid: "NEXT";
- isCampaignValid: "NEXT";
- };
- eventsCausingServices: {
- contributionAttester: "done.invoke.mediaUploader";
- mediaUploader: "ATTEST";
- };
- matchesStates:
- | "attesting_contribution"
- | "campaign"
- | "contribution_attested"
- | "details"
- | "idle"
- | "review"
- | "uploading_media";
- tags: never;
-}
diff --git a/packages/app/src/hooks/useContribution.ts b/packages/app/src/hooks/useContribution.ts
deleted file mode 100644
index adcea7c..0000000
--- a/packages/app/src/hooks/useContribution.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { useContributions } from "./useContributions";
-
-export const EASContractAddress = "0xC2679fBD37d54388Ce493F1DB75320D236e1815e"; // Sepolia v0.26
-
-interface ContributionDataProps extends Contribution {}
-
-export const useContribution = (id: string): ContributionDataProps => {
- const { confirmationMap, contributionMap } = useContributions();
-
- const confirmation = confirmationMap[id];
- const contribution = contributionMap[id];
-
- console.log(contributionMap, confirmation);
-
- return {
- ...contribution,
- status: confirmation
- ? confirmation.approval
- ? "approved"
- : "rejected"
- : "pending",
- };
-};
diff --git a/packages/app/src/hooks/useContributions.tsx b/packages/app/src/hooks/useContributions.tsx
deleted file mode 100644
index 2709c7c..0000000
--- a/packages/app/src/hooks/useContributions.tsx
+++ /dev/null
@@ -1,89 +0,0 @@
-import { createContext, useContext } from "react";
-import { ApolloError, useQuery } from "@apollo/client";
-
-import { useWeb3 } from "../providers/web3";
-import {
- attestationClient,
- userConfirmationsQuery,
- userContributionsQuery,
-} from "@/modules/apollo";
-import { mockContributions } from "@/lib/mockData";
-
-export interface ContributionsDataProps {
- address: string | null;
- contributions: Contribution[];
- contributionMap: Record;
- confirmationMap: Record;
- contributionsError?: ApolloError;
- confirmationsError?: ApolloError;
-}
-
-const ContributionsContext = createContext(null);
-
-type Props = {
- children: React.ReactNode;
-};
-
-export const ContributionsProvider = ({ children }: Props) => {
- const currentValue = useContext(ContributionsContext);
-
- if (currentValue)
- throw new Error("Contribution/Provider can only be used once");
-
- const { address } = useWeb3();
-
- const { data: contributionData } = useQuery(userContributionsQuery, {
- client: attestationClient,
- variables: {
- where: {
- attester: {
- equals: address,
- },
- },
- },
- });
-
- const { data: confirmationData } = useQuery(userConfirmationsQuery, {
- client: attestationClient,
- variables: {
- where: {
- recipient: {
- equals: address,
- },
- },
- },
- });
-
- const contributionMap: Record = {};
- const confirmationMap: Record = {};
-
- console.log("confirmationData", confirmationData);
- console.log("contributionData", contributionData);
-
- return (
- , contribution) => {
- acc[contribution.id] = contribution;
- return acc;
- },
- {}
- ),
- confirmationMap,
- }}
- >
- {children}
-
- );
-};
-
-export const useContributions = () => {
- const value = useContext(ContributionsContext);
- if (!value) throw new Error("Must be used within a ContributionsProvider");
- return value;
-};
diff --git a/packages/app/src/hooks/useMakeContribution.ts b/packages/app/src/hooks/useMakeContribution.ts
deleted file mode 100644
index 5e34dc0..0000000
--- a/packages/app/src/hooks/useMakeContribution.ts
+++ /dev/null
@@ -1,170 +0,0 @@
-import { useMachine } from "@xstate/react";
-import { useNavigate } from "react-router-dom";
-import { EAS, SchemaEncoder } from "@ethereum-attestation-service/eas-sdk";
-
-import { EASContractAddress } from "@/lib/constants";
-
-import { ContributionContext, contributionMachine } from "./machine";
-
-export interface MakeContributionDataProps extends ContributionContext {
- isIdle: boolean;
- isDetails: boolean;
- isCampaign: boolean;
- isReview: boolean;
- isUploading: boolean;
- isAttesting: boolean;
- isAttested: boolean;
- contribute: () => void;
- setDetails: (details: { title: string; description: string }) => void;
- setCampaign: (campaign: string) => void;
- attestContribution: () => void;
- back: () => void;
- cancel: () => void;
- goHome: () => void;
- contributeMore: () => void;
-}
-
-export const useMakeContribution = (): MakeContributionDataProps => {
- // const { getEthersProvider } = useWeb3();
- const navigate = useNavigate();
-
- const [state, send] = useMachine(contributionMachine, {
- actions: {
- goHome: () => {
- // Refetch contributions
- navigate("home");
- },
- },
- services: {
- contributionAttester: async (context, event) => {
- console.log("Contribution attestation started!", context, event);
-
- const { campaign, title, description, capitals, value } = context.info;
- const { data } = event;
-
- try {
- // const signer = ethersProvider?.getSigner();
-
- // if (!signer) {
- // throw new Error("No signer found!");
- // }
-
- const eas = new EAS(EASContractAddress);
-
- // @ts-ignore
- eas.connect(signer);
-
- // Initialize SchemaEncoder with the schema string
- const schemaEncoder = new SchemaEncoder(
- "uint256 value, address campaign, string title, string description, string[] media, string[] capitals"
- );
-
- const encodedData = schemaEncoder.encodeData([
- { name: "value", value: value, type: "uint256" },
- { name: "campaign", value: campaign, type: "address" },
- { name: "title", value: title ?? "", type: "string" },
- {
- name: "description",
- value: description ?? "",
- type: "string",
- },
- { name: "media", value: data.urls, type: "string[]" },
- {
- name: "capitals",
- value: capitals,
- type: "string[]",
- },
- ]);
-
- const schemaUID = ""; // TODO: Get the schema UID from the registry
-
- const tx = await eas.attest({
- schema: schemaUID,
- data: {
- recipient: "",
- revocable: true, // Be aware that if your schema is not revocable, this MUST be false
- data: encodedData,
- },
- });
-
- const newAttestationUID = await tx.wait();
-
- console.log("New attestation UID:", newAttestationUID);
- return { id: newAttestationUID };
- } catch (error) {
- console.log("Contribution attestation failed!", error);
- throw error;
- }
- },
- },
- });
-
- function contribute() {
- send("ATTEST_WORK");
- }
-
- function setDetails(details: { title: string; description: string }) {
- if (state.matches("details")) {
- send({ type: "NEXT", details });
- }
- }
-
- function setCampaign(campaign: string) {
- if (state.matches("campaign")) {
- send({ type: "NEXT", campaign });
- }
- }
-
- function back() {
- if (state.matches("campaign") || state.matches("review")) {
- send("BACK");
- }
- }
-
- function cancel() {
- if (
- state.matches("details") ||
- state.matches("campaign") ||
- state.matches("review")
- ) {
- send("CANCEL");
- }
- }
-
- function attestContribution() {
- if (state.matches("review")) {
- send("ATTEST");
- }
- }
-
- function goHome() {
- if (state.matches("contribution_attested")) {
- send("GO_HOME");
- }
- }
-
- function contributeMore() {
- if (state.matches("contribution_attested")) {
- send("CONTRIBUTE_MORE");
- }
- }
-
- return {
- isIdle: state.matches("idle"),
- isDetails: state.matches("details"),
- isCampaign: state.matches("campaign"),
- isReview: state.matches("review"),
- isAttested: state.matches("contribution_attested"),
- isAttesting: state.matches("attesting_contribution"),
- isUploading: state.matches("uploading_media"),
- ...state.context,
- contribute,
- setDetails,
- setCampaign,
- attestContribution,
- back,
- cancel,
- goHome,
- contributeMore,
- };
-};
diff --git a/packages/app/src/hooks/useProfile.ts b/packages/app/src/hooks/useProfile.ts
deleted file mode 100644
index 5636f9a..0000000
--- a/packages/app/src/hooks/useProfile.ts
+++ /dev/null
@@ -1,28 +0,0 @@
-import { SpringValue, useSpring } from "@react-spring/web";
-
-import { Web3Props, useWeb3 } from "../providers/web3";
-
-export interface ProfileDataProps extends Web3Props {
- name?: string | null;
- avatar?: string | null;
- avatarSpring: {
- opacity: SpringValue;
- transform: SpringValue;
- };
-}
-
-export const useProfile = (): ProfileDataProps => {
- const web3 = useWeb3();
-
- const avatarSpring = useSpring({
- from: { opacity: 0, transform: "translate3d(0, -100%, 0)" },
- to: { opacity: 1, transform: "translate3d(0, 0%, 0)" },
- });
-
- return {
- name: web3.user?.email?.address,
- avatar: web3.user?.farcaster?.pfp,
- avatarSpring,
- ...web3,
- };
-};
diff --git a/packages/app/src/main.tsx b/packages/app/src/main.tsx
deleted file mode 100644
index 9b485dd..0000000
--- a/packages/app/src/main.tsx
+++ /dev/null
@@ -1,44 +0,0 @@
-import React from "react";
-import ReactDOM from "react-dom/client";
-import { ApolloProvider } from "@apollo/client";
-import { BrowserRouter } from "react-router-dom";
-import { arbitrum, arbitrumSepolia, foundry } from "viem/chains";
-import { PrivyProvider } from "@privy-io/react-auth";
-
-import { contractClient } from "@/modules/apollo";
-
-import { AppProvider } from "@/hooks/providers/app";
-import { Web3Provider } from "@/hooks/providers/web3";
-
-import App from "@/App.tsx";
-
-import "./index.css";
-
-ReactDOM.createRoot(document.getElementById("root")!).render(
-
-
-
-
-
-
-
-
-
-
-
-
-
-);
diff --git a/packages/app/src/modules/eas.ts b/packages/app/src/modules/eas.ts
deleted file mode 100644
index 220a842..0000000
--- a/packages/app/src/modules/eas.ts
+++ /dev/null
@@ -1,85 +0,0 @@
-import { EAS } from "@ethereum-attestation-service/eas-sdk";
-
-const eas = new EAS("0xbD75f629A22Dc1ceD33dDA0b68c546A1c035c458");
-
-const getWorkAttestation = async (workUID: string): Promise => {
- const attestation = await eas.getAttestation(workUID);
- const data = JSON.parse(attestation.data);
-
- return {
- id: workUID,
- ownerAddress: attestation.attester,
- garden_id: attestation.recipient,
- action_id: data.filter((d: any) => d.name === "actionUID")[0].value.value!,
- title: data.filter((d: any) => d.name === "title")[0].value.value!,
- feedback: data.filter((d: any) => d.name === "feedback")[0].value.value!,
- metadata: data.filter((d: any) => d.name === "metadata")[0].value.value!,
- media: data.filter((d: any) => d.name === "media")[0].value.value!,
- createdAt: attestation.time,
- };
-};
-
-const getWorkApprovalAttestation = async (
- workApprovalUID: string
-): Promise => {
- const attestation = await eas.getAttestation(workApprovalUID);
- const data = JSON.parse(attestation.data);
-
- return {
- id: workApprovalUID,
- approverAddress: attestation.attester,
- action_id: data.filter((d: any) => d.name === "actionUID")[0].value.value!,
- work_id: data.filter((d: any) => d.name === "workUID")[0].value.value!,
- approved: data.filter((d: any) => d.name === "approved")[0].value.value!,
- feedback: data.filter((d: any) => d.name === "feedback")[0].value.value!,
- createdAt: attestation.time,
- };
-};
-
-const getGardenAssessmentAttestation = async (
- gardenAssessmentUID: string
-): Promise => {
- const attestation = await eas.getAttestation(gardenAssessmentUID);
- const data = JSON.parse(attestation.data);
-
- return {
- id: gardenAssessmentUID,
- authorAddress: attestation.attester,
- garden_id: attestation.recipient,
- soilMoisturePercentage: data.filter(
- (d: any) => d.name === "soilMoisturePercentage"
- )[0].value.value!,
- carbonTonStock: data.filter((d: any) => d.name === "carbonTonStock")[0]
- .value.value!,
- carbonTonPotential: data.filter(
- (d: any) => d.name === "carbonTonPotential"
- )[0].value.value!,
- gardenSquareMeters: data.filter(
- (d: any) => d.name === "gardenSquareMeters"
- )[0].value.value!,
- biome: data.filter((d: any) => d.name === "biome")[0].value.value!,
- remoteReportCID: data.filter((d: any) => d.name === "remoteReportPDF")[0]
- .value.value!,
- speciesRegistryCID: data.filter(
- (d: any) => d.name === "speciesRegistryJSON"
- )[0].value.value!,
- polygonCoordinates: data.filter(
- (d: any) => d.name === "polygonCoordinates"
- )[0].value.value!,
- treeGenusesObserved: data.filter(
- (d: any) => d.name === "treeGenusesObserved"
- )[0].value.value!,
- weedGenusesObserved: data.filter(
- (d: any) => d.name === "weedGenusesObserved"
- )[0].value.value!,
- issues: data.filter((d: any) => d.name === "issues")[0].value.value!,
- tags: data.filter((d: any) => d.name === "tags")[0].value.value!,
- createdAt: attestation.time,
- };
-};
-
-export {
- getWorkAttestation,
- getWorkApprovalAttestation,
- getGardenAssessmentAttestation,
-};
diff --git a/packages/app/src/views/Contribute/index.tsx b/packages/app/src/views/Contribute/index.tsx
deleted file mode 100644
index 706a077..0000000
--- a/packages/app/src/views/Contribute/index.tsx
+++ /dev/null
@@ -1,313 +0,0 @@
-import { z } from "zod";
-import React, { useState } from "react";
-import { useForm } from "react-hook-form";
-import { zodResolver } from "@hookform/resolvers/zod";
-
-import { ContributeDataProps } from "@/hooks/views/useContribute";
-
-import {
- Form,
- FormControl,
- FormDescription,
- FormField,
- FormItem,
- FormLabel,
- FormMessage,
-} from "@/components/ui/form";
-import { Input } from "@/components/ui/input";
-import { Button } from "@/components/ui/button";
-import { CircleLoader } from "@/components/Loader/Circle";
-import { MultiSelect } from "@/components/ui/multi-select";
-
-interface ContributeProps extends ContributeDataProps {}
-
-const capitalOptions: Capital[] = [
- "Living",
- "Social",
- "Material",
- "Cultural",
- "Financial",
- "Intellectual",
- "Experiental",
- "Spiritual",
-];
-
-const formSchema = z.object({
- title: z.string(),
- description: z.string(),
- details: z.string().url(),
- capitals: z.array(z.string()),
- value: z.number(),
- image: z.instanceof(File),
- campaign: z.string().optional(),
-});
-
-const Contribute: React.FC = ({
- isIdle,
- isDetails,
- isCampaign,
- isReview,
- isUploading,
- isAttesting,
- isAttested,
- campaigns,
- setDetails,
- setCampaign,
- attestContribution,
- back,
- cancel,
- contributeMore,
- goHome,
- error,
- info,
-}) => {
- console.log(info);
-
- const [preview, setPreview] = useState(null);
-
- const form = useForm>({
- resolver: zodResolver(formSchema),
- defaultValues: {
- title: info?.title || "",
- description: info?.description || "",
- capitals: [],
- details: "",
- campaign: info?.campaign || "",
- value: info?.value || 0,
- },
- });
-
- async function handleImage(file: File | null) {
- if (!file) {
- return;
- }
-
- const url = URL.createObjectURL(file);
-
- if (url) {
- setPreview(url);
-
- const reader = new FileReader();
- reader.onloadend = () => {
- const image = reader.result;
- if (!image) {
- console.log("No image");
- return;
- }
- };
- reader.readAsDataURL(file);
- }
- }
-
- function onSubmit(values: z.infer) {
- if (isIdle) return;
- if (isDetails) return setDetails(values);
- if (isCampaign) return setCampaign(values.campaign ?? "");
- if (isReview) return attestContribution();
- if (isUploading) return;
- if (isAttesting) return;
- if (isAttested) return contributeMore();
- }
-
- return (
-
- );
-};
-
-export default Contribute;
diff --git a/packages/app/src/views/Home/Campaigns.tsx b/packages/app/src/views/Home/Campaigns.tsx
deleted file mode 100644
index 2b41cad..0000000
--- a/packages/app/src/views/Home/Campaigns.tsx
+++ /dev/null
@@ -1,42 +0,0 @@
-import React from "react";
-import { Outlet, useNavigate, useLocation } from "react-router-dom";
-
-import { HomeDataProps } from "@/hooks/views/useHome";
-
-interface CampaignsProps extends HomeDataProps {}
-
-const Campaigns: React.FC = (
- {
- // address,
- // confirmationMap,
- // contributions,
- }
-) => {
- const navigate = useNavigate();
- const location = useLocation();
-
- function handleCardClick(id: string) {
- navigate(`/campaigns/${id}`);
- }
-
- return (
-
-
- {location.pathname === "/campaigns" ? (
-
- {Array.from({ length: 5 }).map((_, index) => (
- handleCardClick("")}>
- {index}
-
- ))}
-
- ) : null}
-
-
- );
-};
-
-export default Campaigns;
diff --git a/packages/app/src/views/Home/Contributions.tsx b/packages/app/src/views/Home/Contributions.tsx
deleted file mode 100644
index 4ad403c..0000000
--- a/packages/app/src/views/Home/Contributions.tsx
+++ /dev/null
@@ -1,42 +0,0 @@
-import React from "react";
-import { Outlet, useNavigate, useLocation } from "react-router-dom";
-
-import { HomeDataProps } from "@/hooks/views/useHome";
-
-interface ContributionsProps extends HomeDataProps {}
-
-const Contributions: React.FC = (
- {
- // address,
- // confirmationMap,
- // contributions,
- }
-) => {
- const navigate = useNavigate();
- const location = useLocation();
-
- function handleCardClick(id: string) {
- navigate(`/contributions/${id}`);
- }
-
- return (
-
-
- {location.pathname === "/contributions" ? (
-
- {Array.from({ length: 5 }).map((_, index) => (
- handleCardClick("")}>
- {index}
-
- ))}
-
- ) : null}
-
-
- );
-};
-
-export default Contributions;
diff --git a/packages/app/src/views/Home/index.tsx b/packages/app/src/views/Home/index.tsx
deleted file mode 100644
index 5cf3027..0000000
--- a/packages/app/src/views/Home/index.tsx
+++ /dev/null
@@ -1,44 +0,0 @@
-import React from "react";
-
-import { HomeDataProps } from "@/hooks/views/useHome";
-
-import {
- Carousel,
- CarouselContent,
- CarouselItem,
-} from "@/components/ui/carousel";
-
-interface HomeProps extends HomeDataProps {}
-
-const Home: React.FC = ({}) => {
- return (
-
-
- Contributions
-
-
- {Array.from({ length: 5 }).map((_, index) => (
-
- {index}
-
- ))}
-
-
-
-
- Campaigns
-
-
- {Array.from({ length: 5 }).map((_, index) => (
-
- {index}
-
- ))}
-
-
-
-
- );
-};
-
-export default Home;
diff --git a/packages/app/src/views/Login/index.tsx b/packages/app/src/views/Login/index.tsx
deleted file mode 100644
index 3a717a2..0000000
--- a/packages/app/src/views/Login/index.tsx
+++ /dev/null
@@ -1,29 +0,0 @@
-import React from "react";
-
-import { Web3Props } from "../../hooks/providers/web3";
-import { Button } from "../../components/ui/button";
-
-interface LoginProps extends Web3Props {}
-
-export const Login: React.FC = ({ error, login }) => {
- return (
-
-
-
-
Welcome To
- Camp Green
-
-
-
- Login
-
-
-
- );
-};
diff --git a/packages/app/src/views/Profile/index.tsx b/packages/app/src/views/Profile/index.tsx
index 83f9753..d91a5f6 100644
--- a/packages/app/src/views/Profile/index.tsx
+++ b/packages/app/src/views/Profile/index.tsx
@@ -1,9 +1,9 @@
import React from "react";
import { Web3Props } from "../../hooks/providers/web3";
-import { ProfileDataProps } from "../../hooks/useProfile";
+import { ProfileDataProps } from "../../../../client/src/views/Profile/useProfile";
-import { ProfileInfo } from "../../components/Info";
+import { ProfileInfo } from "../../../../client/src/views/Profile/Account";
import { ProfileActions } from "../../components/Profile/Actions";
interface ProfileProps extends ProfileDataProps, Web3Props {}
diff --git a/packages/app/src/views/index.tsx b/packages/app/src/views/index.tsx
deleted file mode 100644
index d98ac7c..0000000
--- a/packages/app/src/views/index.tsx
+++ /dev/null
@@ -1,54 +0,0 @@
-import { a, useTransition } from "@react-spring/web";
-import { Navigate, Route, Routes, useLocation } from "react-router-dom";
-
-import { useHome } from "@/hooks/views/useHome";
-import { useProfile } from "@/hooks/useProfile";
-import { useContribute } from "@/hooks/views/useContribute";
-
-import CampaignViewer from "@/components/Campaign/Viewer";
-import ContributionViewer from "@/components/Contriburion/Viewer";
-
-import Home from "./Home";
-import Profile from "./Profile";
-import Contribute from "./Contribute";
-import Campaigns from "./Home/Campaigns";
-import Contributions from "./Home/Contributions";
-
-export default function Views() {
- const location = useLocation();
- const transitions = useTransition(location, {
- from: { opacity: 0 },
- enter: { opacity: 1 },
- leave: { opacity: 0 },
- exitBeforeEnter: true,
- config: {
- tension: 300,
- friction: 20,
- clamp: true,
- },
- });
-
- const home = useHome();
- const contribute = useContribute();
- const profile = useProfile();
-
- return transitions((style, location) => (
-
-
- } />
- }>
- } />
-
- }>
- } />
-
- } />
- } />
- } />
-
-
- ));
-}
diff --git a/packages/app/vite.config.ts b/packages/app/vite.config.ts
deleted file mode 100644
index 53b1fc0..0000000
--- a/packages/app/vite.config.ts
+++ /dev/null
@@ -1,92 +0,0 @@
-import path from "path";
-import { defineConfig } from "vite";
-import svgr from "vite-plugin-svgr";
-import react from "@vitejs/plugin-react";
-import mkcert from "vite-plugin-mkcert";
-import { VitePWA } from "vite-plugin-pwa";
-
-// https://vitejs.dev/config/
-export default defineConfig({
- plugins: [
- mkcert(),
- react(),
- svgr({
- svgrOptions: {
- namedExport: "RC",
- },
- }),
- VitePWA({
- includeAssets: [
- "assets/favicon.ico",
- "assets/logo-64.png",
- "assets/logo-310.png",
- "assets/world.png",
- "assets/profile.png",
- ],
- injectRegister: "auto",
- registerType: "autoUpdate",
- devOptions: {
- enabled: true,
- },
- workbox: {
- // globPatterns: ["**/*.{js,css,html,ico,png,svg}"],
- },
- manifest: {
- name: "Green Goods",
- short_name: "Green Goods",
- icons: [
- {
- src: "assets/logo-64.png",
- sizes: "64x64",
- type: "image/png",
- },
- {
- src: "assets/logo-310.png",
- sizes: "192X192",
- type: "image/png",
- },
- {
- src: "assets/logo-310.png",
- sizes: "512x512",
- type: "image/png",
- },
- ],
- start_url: "/",
- scope: "/",
- display: "fullscreen",
- orientation: "portrait-primary",
- theme_color: "#fff",
- background_color: "#000",
- shortcuts: [
- {
- name: "Profile",
- description: "View your profile",
- url: "/profile",
- icons: [
- {
- src: "assets/profile.png",
- sizes: "64x64",
- type: "image/png",
- },
- ],
- },
- ],
- related_applications: [
- {
- platform: "webapp",
- url: "https://localhost:3001/manifest.webmanifest",
- },
- ],
- categories: [],
- },
- }),
- ],
- resolve: {
- alias: {
- "@": path.resolve(__dirname, "./src"),
- },
- },
- server: {
- port: 3001,
- },
-});
diff --git a/packages/client/.env.example b/packages/client/.env.example
index 6cdcb1c..df05a03 100644
--- a/packages/client/.env.example
+++ b/packages/client/.env.example
@@ -4,5 +4,6 @@ VITE_PRIVY_APP_ID=
VITE_PIMLICO_API_KEY=
VITE_PINATA_API_KEY=
+PINATA_API_KEY=
PINATA_API_SECRET=
-PINATA_API_JWT=
\ No newline at end of file
+PRIVY_APP_SECRET_ID=
diff --git a/packages/client/api/users.ts b/packages/client/api/users.ts
new file mode 100644
index 0000000..903e4bf
--- /dev/null
+++ b/packages/client/api/users.ts
@@ -0,0 +1,31 @@
+import { PrivyClient } from "@privy-io/server-auth";
+import type { VercelRequest, VercelResponse } from "@vercel/node";
+
+declare global {
+ namespace NodeJS {
+ interface ProcessEnv {
+ VITE_PRIVY_APP_ID?: string;
+ PINATA_API_KEY?: string;
+ PINATA_API_SECRET?: string;
+ PRIVY_APP_SECRET_ID?: string;
+ }
+ }
+}
+
+export const config = {
+ // runtime: "nodejs",
+};
+
+const privy = new PrivyClient(
+ process.env.VITE_PRIVY_APP_ID!,
+ process.env.PRIVY_APP_SECRET_ID!
+);
+
+export default async function handler(
+ _request: VercelRequest,
+ response: VercelResponse
+) {
+ const users = await privy.getUsers();
+
+ response.status(200).json(users);
+}
diff --git a/packages/client/dev-dist/registerSW.js b/packages/client/dev-dist/registerSW.js
new file mode 100644
index 0000000..1d5625f
--- /dev/null
+++ b/packages/client/dev-dist/registerSW.js
@@ -0,0 +1 @@
+if('serviceWorker' in navigator) navigator.serviceWorker.register('/dev-sw.js?dev-sw', { scope: '/', type: 'classic' })
\ No newline at end of file
diff --git a/packages/client/dev-dist/sw.js b/packages/client/dev-dist/sw.js
new file mode 100644
index 0000000..01dd529
--- /dev/null
+++ b/packages/client/dev-dist/sw.js
@@ -0,0 +1,92 @@
+/**
+ * Copyright 2018 Google Inc. All Rights Reserved.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT 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 the loader is already loaded, just stop.
+if (!self.define) {
+ let registry = {};
+
+ // Used for `eval` and `importScripts` where we can't get script URL by other means.
+ // In both cases, it's safe to use a global var because those functions are synchronous.
+ let nextDefineUri;
+
+ const singleRequire = (uri, parentUri) => {
+ uri = new URL(uri + ".js", parentUri).href;
+ return registry[uri] || (
+
+ new Promise(resolve => {
+ if ("document" in self) {
+ const script = document.createElement("script");
+ script.src = uri;
+ script.onload = resolve;
+ document.head.appendChild(script);
+ } else {
+ nextDefineUri = uri;
+ importScripts(uri);
+ resolve();
+ }
+ })
+
+ .then(() => {
+ let promise = registry[uri];
+ if (!promise) {
+ throw new Error(`Module ${uri} didn’t register its module`);
+ }
+ return promise;
+ })
+ );
+ };
+
+ self.define = (depsNames, factory) => {
+ const uri = nextDefineUri || ("document" in self ? document.currentScript.src : "") || location.href;
+ if (registry[uri]) {
+ // Module is already loading or loaded.
+ return;
+ }
+ let exports = {};
+ const require = depUri => singleRequire(depUri, uri);
+ const specialDeps = {
+ module: { uri },
+ exports,
+ require
+ };
+ registry[uri] = Promise.all(depsNames.map(
+ depName => specialDeps[depName] || require(depName)
+ )).then(deps => {
+ factory(...deps);
+ return exports;
+ });
+ };
+}
+define(['./workbox-c982e567'], (function (workbox) { 'use strict';
+
+ self.skipWaiting();
+ workbox.clientsClaim();
+
+ /**
+ * The precacheAndRoute() method efficiently caches and responds to
+ * requests for URLs in the manifest.
+ * See https://goo.gl/S9QRab
+ */
+ workbox.precacheAndRoute([{
+ "url": "registerSW.js",
+ "revision": "3ca0b8505b4bec776b69afdba2768812"
+ }, {
+ "url": "index.html",
+ "revision": "0.9bt3crbamtg"
+ }], {});
+ workbox.cleanupOutdatedCaches();
+ workbox.registerRoute(new workbox.NavigationRoute(workbox.createHandlerBoundToURL("index.html"), {
+ allowlist: [/^\/$/]
+ }));
+
+}));
diff --git a/packages/client/dev-dist/workbox-c982e567.js b/packages/client/dev-dist/workbox-c982e567.js
new file mode 100644
index 0000000..077fa26
--- /dev/null
+++ b/packages/client/dev-dist/workbox-c982e567.js
@@ -0,0 +1,3391 @@
+define(['exports'], (function (exports) { 'use strict';
+
+ // @ts-ignore
+ try {
+ self['workbox:core:7.0.0'] && _();
+ } catch (e) {}
+
+ /*
+ Copyright 2019 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * Claim any currently available clients once the service worker
+ * becomes active. This is normally used in conjunction with `skipWaiting()`.
+ *
+ * @memberof workbox-core
+ */
+ function clientsClaim() {
+ self.addEventListener('activate', () => self.clients.claim());
+ }
+
+ /*
+ Copyright 2019 Google LLC
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ const logger = (() => {
+ // Don't overwrite this value if it's already set.
+ // See https://github.com/GoogleChrome/workbox/pull/2284#issuecomment-560470923
+ if (!('__WB_DISABLE_DEV_LOGS' in globalThis)) {
+ self.__WB_DISABLE_DEV_LOGS = false;
+ }
+ let inGroup = false;
+ const methodToColorMap = {
+ debug: `#7f8c8d`,
+ log: `#2ecc71`,
+ warn: `#f39c12`,
+ error: `#c0392b`,
+ groupCollapsed: `#3498db`,
+ groupEnd: null // No colored prefix on groupEnd
+ };
+ const print = function (method, args) {
+ if (self.__WB_DISABLE_DEV_LOGS) {
+ return;
+ }
+ if (method === 'groupCollapsed') {
+ // Safari doesn't print all console.groupCollapsed() arguments:
+ // https://bugs.webkit.org/show_bug.cgi?id=182754
+ if (/^((?!chrome|android).)*safari/i.test(navigator.userAgent)) {
+ console[method](...args);
+ return;
+ }
+ }
+ const styles = [`background: ${methodToColorMap[method]}`, `border-radius: 0.5em`, `color: white`, `font-weight: bold`, `padding: 2px 0.5em`];
+ // When in a group, the workbox prefix is not displayed.
+ const logPrefix = inGroup ? [] : ['%cworkbox', styles.join(';')];
+ console[method](...logPrefix, ...args);
+ if (method === 'groupCollapsed') {
+ inGroup = true;
+ }
+ if (method === 'groupEnd') {
+ inGroup = false;
+ }
+ };
+ // eslint-disable-next-line @typescript-eslint/ban-types
+ const api = {};
+ const loggerMethods = Object.keys(methodToColorMap);
+ for (const key of loggerMethods) {
+ const method = key;
+ api[method] = (...args) => {
+ print(method, args);
+ };
+ }
+ return api;
+ })();
+
+ /*
+ Copyright 2018 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ const messages = {
+ 'invalid-value': ({
+ paramName,
+ validValueDescription,
+ value
+ }) => {
+ if (!paramName || !validValueDescription) {
+ throw new Error(`Unexpected input to 'invalid-value' error.`);
+ }
+ return `The '${paramName}' parameter was given a value with an ` + `unexpected value. ${validValueDescription} Received a value of ` + `${JSON.stringify(value)}.`;
+ },
+ 'not-an-array': ({
+ moduleName,
+ className,
+ funcName,
+ paramName
+ }) => {
+ if (!moduleName || !className || !funcName || !paramName) {
+ throw new Error(`Unexpected input to 'not-an-array' error.`);
+ }
+ return `The parameter '${paramName}' passed into ` + `'${moduleName}.${className}.${funcName}()' must be an array.`;
+ },
+ 'incorrect-type': ({
+ expectedType,
+ paramName,
+ moduleName,
+ className,
+ funcName
+ }) => {
+ if (!expectedType || !paramName || !moduleName || !funcName) {
+ throw new Error(`Unexpected input to 'incorrect-type' error.`);
+ }
+ const classNameStr = className ? `${className}.` : '';
+ return `The parameter '${paramName}' passed into ` + `'${moduleName}.${classNameStr}` + `${funcName}()' must be of type ${expectedType}.`;
+ },
+ 'incorrect-class': ({
+ expectedClassName,
+ paramName,
+ moduleName,
+ className,
+ funcName,
+ isReturnValueProblem
+ }) => {
+ if (!expectedClassName || !moduleName || !funcName) {
+ throw new Error(`Unexpected input to 'incorrect-class' error.`);
+ }
+ const classNameStr = className ? `${className}.` : '';
+ if (isReturnValueProblem) {
+ return `The return value from ` + `'${moduleName}.${classNameStr}${funcName}()' ` + `must be an instance of class ${expectedClassName}.`;
+ }
+ return `The parameter '${paramName}' passed into ` + `'${moduleName}.${classNameStr}${funcName}()' ` + `must be an instance of class ${expectedClassName}.`;
+ },
+ 'missing-a-method': ({
+ expectedMethod,
+ paramName,
+ moduleName,
+ className,
+ funcName
+ }) => {
+ if (!expectedMethod || !paramName || !moduleName || !className || !funcName) {
+ throw new Error(`Unexpected input to 'missing-a-method' error.`);
+ }
+ return `${moduleName}.${className}.${funcName}() expected the ` + `'${paramName}' parameter to expose a '${expectedMethod}' method.`;
+ },
+ 'add-to-cache-list-unexpected-type': ({
+ entry
+ }) => {
+ return `An unexpected entry was passed to ` + `'workbox-precaching.PrecacheController.addToCacheList()' The entry ` + `'${JSON.stringify(entry)}' isn't supported. You must supply an array of ` + `strings with one or more characters, objects with a url property or ` + `Request objects.`;
+ },
+ 'add-to-cache-list-conflicting-entries': ({
+ firstEntry,
+ secondEntry
+ }) => {
+ if (!firstEntry || !secondEntry) {
+ throw new Error(`Unexpected input to ` + `'add-to-cache-list-duplicate-entries' error.`);
+ }
+ return `Two of the entries passed to ` + `'workbox-precaching.PrecacheController.addToCacheList()' had the URL ` + `${firstEntry} but different revision details. Workbox is ` + `unable to cache and version the asset correctly. Please remove one ` + `of the entries.`;
+ },
+ 'plugin-error-request-will-fetch': ({
+ thrownErrorMessage
+ }) => {
+ if (!thrownErrorMessage) {
+ throw new Error(`Unexpected input to ` + `'plugin-error-request-will-fetch', error.`);
+ }
+ return `An error was thrown by a plugins 'requestWillFetch()' method. ` + `The thrown error message was: '${thrownErrorMessage}'.`;
+ },
+ 'invalid-cache-name': ({
+ cacheNameId,
+ value
+ }) => {
+ if (!cacheNameId) {
+ throw new Error(`Expected a 'cacheNameId' for error 'invalid-cache-name'`);
+ }
+ return `You must provide a name containing at least one character for ` + `setCacheDetails({${cacheNameId}: '...'}). Received a value of ` + `'${JSON.stringify(value)}'`;
+ },
+ 'unregister-route-but-not-found-with-method': ({
+ method
+ }) => {
+ if (!method) {
+ throw new Error(`Unexpected input to ` + `'unregister-route-but-not-found-with-method' error.`);
+ }
+ return `The route you're trying to unregister was not previously ` + `registered for the method type '${method}'.`;
+ },
+ 'unregister-route-route-not-registered': () => {
+ return `The route you're trying to unregister was not previously ` + `registered.`;
+ },
+ 'queue-replay-failed': ({
+ name
+ }) => {
+ return `Replaying the background sync queue '${name}' failed.`;
+ },
+ 'duplicate-queue-name': ({
+ name
+ }) => {
+ return `The Queue name '${name}' is already being used. ` + `All instances of backgroundSync.Queue must be given unique names.`;
+ },
+ 'expired-test-without-max-age': ({
+ methodName,
+ paramName
+ }) => {
+ return `The '${methodName}()' method can only be used when the ` + `'${paramName}' is used in the constructor.`;
+ },
+ 'unsupported-route-type': ({
+ moduleName,
+ className,
+ funcName,
+ paramName
+ }) => {
+ return `The supplied '${paramName}' parameter was an unsupported type. ` + `Please check the docs for ${moduleName}.${className}.${funcName} for ` + `valid input types.`;
+ },
+ 'not-array-of-class': ({
+ value,
+ expectedClass,
+ moduleName,
+ className,
+ funcName,
+ paramName
+ }) => {
+ return `The supplied '${paramName}' parameter must be an array of ` + `'${expectedClass}' objects. Received '${JSON.stringify(value)},'. ` + `Please check the call to ${moduleName}.${className}.${funcName}() ` + `to fix the issue.`;
+ },
+ 'max-entries-or-age-required': ({
+ moduleName,
+ className,
+ funcName
+ }) => {
+ return `You must define either config.maxEntries or config.maxAgeSeconds` + `in ${moduleName}.${className}.${funcName}`;
+ },
+ 'statuses-or-headers-required': ({
+ moduleName,
+ className,
+ funcName
+ }) => {
+ return `You must define either config.statuses or config.headers` + `in ${moduleName}.${className}.${funcName}`;
+ },
+ 'invalid-string': ({
+ moduleName,
+ funcName,
+ paramName
+ }) => {
+ if (!paramName || !moduleName || !funcName) {
+ throw new Error(`Unexpected input to 'invalid-string' error.`);
+ }
+ return `When using strings, the '${paramName}' parameter must start with ` + `'http' (for cross-origin matches) or '/' (for same-origin matches). ` + `Please see the docs for ${moduleName}.${funcName}() for ` + `more info.`;
+ },
+ 'channel-name-required': () => {
+ return `You must provide a channelName to construct a ` + `BroadcastCacheUpdate instance.`;
+ },
+ 'invalid-responses-are-same-args': () => {
+ return `The arguments passed into responsesAreSame() appear to be ` + `invalid. Please ensure valid Responses are used.`;
+ },
+ 'expire-custom-caches-only': () => {
+ return `You must provide a 'cacheName' property when using the ` + `expiration plugin with a runtime caching strategy.`;
+ },
+ 'unit-must-be-bytes': ({
+ normalizedRangeHeader
+ }) => {
+ if (!normalizedRangeHeader) {
+ throw new Error(`Unexpected input to 'unit-must-be-bytes' error.`);
+ }
+ return `The 'unit' portion of the Range header must be set to 'bytes'. ` + `The Range header provided was "${normalizedRangeHeader}"`;
+ },
+ 'single-range-only': ({
+ normalizedRangeHeader
+ }) => {
+ if (!normalizedRangeHeader) {
+ throw new Error(`Unexpected input to 'single-range-only' error.`);
+ }
+ return `Multiple ranges are not supported. Please use a single start ` + `value, and optional end value. The Range header provided was ` + `"${normalizedRangeHeader}"`;
+ },
+ 'invalid-range-values': ({
+ normalizedRangeHeader
+ }) => {
+ if (!normalizedRangeHeader) {
+ throw new Error(`Unexpected input to 'invalid-range-values' error.`);
+ }
+ return `The Range header is missing both start and end values. At least ` + `one of those values is needed. The Range header provided was ` + `"${normalizedRangeHeader}"`;
+ },
+ 'no-range-header': () => {
+ return `No Range header was found in the Request provided.`;
+ },
+ 'range-not-satisfiable': ({
+ size,
+ start,
+ end
+ }) => {
+ return `The start (${start}) and end (${end}) values in the Range are ` + `not satisfiable by the cached response, which is ${size} bytes.`;
+ },
+ 'attempt-to-cache-non-get-request': ({
+ url,
+ method
+ }) => {
+ return `Unable to cache '${url}' because it is a '${method}' request and ` + `only 'GET' requests can be cached.`;
+ },
+ 'cache-put-with-no-response': ({
+ url
+ }) => {
+ return `There was an attempt to cache '${url}' but the response was not ` + `defined.`;
+ },
+ 'no-response': ({
+ url,
+ error
+ }) => {
+ let message = `The strategy could not generate a response for '${url}'.`;
+ if (error) {
+ message += ` The underlying error is ${error}.`;
+ }
+ return message;
+ },
+ 'bad-precaching-response': ({
+ url,
+ status
+ }) => {
+ return `The precaching request for '${url}' failed` + (status ? ` with an HTTP status of ${status}.` : `.`);
+ },
+ 'non-precached-url': ({
+ url
+ }) => {
+ return `createHandlerBoundToURL('${url}') was called, but that URL is ` + `not precached. Please pass in a URL that is precached instead.`;
+ },
+ 'add-to-cache-list-conflicting-integrities': ({
+ url
+ }) => {
+ return `Two of the entries passed to ` + `'workbox-precaching.PrecacheController.addToCacheList()' had the URL ` + `${url} with different integrity values. Please remove one of them.`;
+ },
+ 'missing-precache-entry': ({
+ cacheName,
+ url
+ }) => {
+ return `Unable to find a precached response in ${cacheName} for ${url}.`;
+ },
+ 'cross-origin-copy-response': ({
+ origin
+ }) => {
+ return `workbox-core.copyResponse() can only be used with same-origin ` + `responses. It was passed a response with origin ${origin}.`;
+ },
+ 'opaque-streams-source': ({
+ type
+ }) => {
+ const message = `One of the workbox-streams sources resulted in an ` + `'${type}' response.`;
+ if (type === 'opaqueredirect') {
+ return `${message} Please do not use a navigation request that results ` + `in a redirect as a source.`;
+ }
+ return `${message} Please ensure your sources are CORS-enabled.`;
+ }
+ };
+
+ /*
+ Copyright 2018 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ const generatorFunction = (code, details = {}) => {
+ const message = messages[code];
+ if (!message) {
+ throw new Error(`Unable to find message for code '${code}'.`);
+ }
+ return message(details);
+ };
+ const messageGenerator = generatorFunction;
+
+ /*
+ Copyright 2018 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * Workbox errors should be thrown with this class.
+ * This allows use to ensure the type easily in tests,
+ * helps developers identify errors from workbox
+ * easily and allows use to optimise error
+ * messages correctly.
+ *
+ * @private
+ */
+ class WorkboxError extends Error {
+ /**
+ *
+ * @param {string} errorCode The error code that
+ * identifies this particular error.
+ * @param {Object=} details Any relevant arguments
+ * that will help developers identify issues should
+ * be added as a key on the context object.
+ */
+ constructor(errorCode, details) {
+ const message = messageGenerator(errorCode, details);
+ super(message);
+ this.name = errorCode;
+ this.details = details;
+ }
+ }
+
+ /*
+ Copyright 2018 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /*
+ * This method throws if the supplied value is not an array.
+ * The destructed values are required to produce a meaningful error for users.
+ * The destructed and restructured object is so it's clear what is
+ * needed.
+ */
+ const isArray = (value, details) => {
+ if (!Array.isArray(value)) {
+ throw new WorkboxError('not-an-array', details);
+ }
+ };
+ const hasMethod = (object, expectedMethod, details) => {
+ const type = typeof object[expectedMethod];
+ if (type !== 'function') {
+ details['expectedMethod'] = expectedMethod;
+ throw new WorkboxError('missing-a-method', details);
+ }
+ };
+ const isType = (object, expectedType, details) => {
+ if (typeof object !== expectedType) {
+ details['expectedType'] = expectedType;
+ throw new WorkboxError('incorrect-type', details);
+ }
+ };
+ const isInstance = (object,
+ // Need the general type to do the check later.
+ // eslint-disable-next-line @typescript-eslint/ban-types
+ expectedClass, details) => {
+ if (!(object instanceof expectedClass)) {
+ details['expectedClassName'] = expectedClass.name;
+ throw new WorkboxError('incorrect-class', details);
+ }
+ };
+ const isOneOf = (value, validValues, details) => {
+ if (!validValues.includes(value)) {
+ details['validValueDescription'] = `Valid values are ${JSON.stringify(validValues)}.`;
+ throw new WorkboxError('invalid-value', details);
+ }
+ };
+ const isArrayOfClass = (value,
+ // Need general type to do check later.
+ expectedClass,
+ // eslint-disable-line
+ details) => {
+ const error = new WorkboxError('not-array-of-class', details);
+ if (!Array.isArray(value)) {
+ throw error;
+ }
+ for (const item of value) {
+ if (!(item instanceof expectedClass)) {
+ throw error;
+ }
+ }
+ };
+ const finalAssertExports = {
+ hasMethod,
+ isArray,
+ isInstance,
+ isOneOf,
+ isType,
+ isArrayOfClass
+ };
+
+ // @ts-ignore
+ try {
+ self['workbox:routing:7.0.0'] && _();
+ } catch (e) {}
+
+ /*
+ Copyright 2018 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * The default HTTP method, 'GET', used when there's no specific method
+ * configured for a route.
+ *
+ * @type {string}
+ *
+ * @private
+ */
+ const defaultMethod = 'GET';
+ /**
+ * The list of valid HTTP methods associated with requests that could be routed.
+ *
+ * @type {Array}
+ *
+ * @private
+ */
+ const validMethods = ['DELETE', 'GET', 'HEAD', 'PATCH', 'POST', 'PUT'];
+
+ /*
+ Copyright 2018 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * @param {function()|Object} handler Either a function, or an object with a
+ * 'handle' method.
+ * @return {Object} An object with a handle method.
+ *
+ * @private
+ */
+ const normalizeHandler = handler => {
+ if (handler && typeof handler === 'object') {
+ {
+ finalAssertExports.hasMethod(handler, 'handle', {
+ moduleName: 'workbox-routing',
+ className: 'Route',
+ funcName: 'constructor',
+ paramName: 'handler'
+ });
+ }
+ return handler;
+ } else {
+ {
+ finalAssertExports.isType(handler, 'function', {
+ moduleName: 'workbox-routing',
+ className: 'Route',
+ funcName: 'constructor',
+ paramName: 'handler'
+ });
+ }
+ return {
+ handle: handler
+ };
+ }
+ };
+
+ /*
+ Copyright 2018 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * A `Route` consists of a pair of callback functions, "match" and "handler".
+ * The "match" callback determine if a route should be used to "handle" a
+ * request by returning a non-falsy value if it can. The "handler" callback
+ * is called when there is a match and should return a Promise that resolves
+ * to a `Response`.
+ *
+ * @memberof workbox-routing
+ */
+ class Route {
+ /**
+ * Constructor for Route class.
+ *
+ * @param {workbox-routing~matchCallback} match
+ * A callback function that determines whether the route matches a given
+ * `fetch` event by returning a non-falsy value.
+ * @param {workbox-routing~handlerCallback} handler A callback
+ * function that returns a Promise resolving to a Response.
+ * @param {string} [method='GET'] The HTTP method to match the Route
+ * against.
+ */
+ constructor(match, handler, method = defaultMethod) {
+ {
+ finalAssertExports.isType(match, 'function', {
+ moduleName: 'workbox-routing',
+ className: 'Route',
+ funcName: 'constructor',
+ paramName: 'match'
+ });
+ if (method) {
+ finalAssertExports.isOneOf(method, validMethods, {
+ paramName: 'method'
+ });
+ }
+ }
+ // These values are referenced directly by Router so cannot be
+ // altered by minificaton.
+ this.handler = normalizeHandler(handler);
+ this.match = match;
+ this.method = method;
+ }
+ /**
+ *
+ * @param {workbox-routing-handlerCallback} handler A callback
+ * function that returns a Promise resolving to a Response
+ */
+ setCatchHandler(handler) {
+ this.catchHandler = normalizeHandler(handler);
+ }
+ }
+
+ /*
+ Copyright 2018 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * RegExpRoute makes it easy to create a regular expression based
+ * {@link workbox-routing.Route}.
+ *
+ * For same-origin requests the RegExp only needs to match part of the URL. For
+ * requests against third-party servers, you must define a RegExp that matches
+ * the start of the URL.
+ *
+ * @memberof workbox-routing
+ * @extends workbox-routing.Route
+ */
+ class RegExpRoute extends Route {
+ /**
+ * If the regular expression contains
+ * [capture groups]{@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp#grouping-back-references},
+ * the captured values will be passed to the
+ * {@link workbox-routing~handlerCallback} `params`
+ * argument.
+ *
+ * @param {RegExp} regExp The regular expression to match against URLs.
+ * @param {workbox-routing~handlerCallback} handler A callback
+ * function that returns a Promise resulting in a Response.
+ * @param {string} [method='GET'] The HTTP method to match the Route
+ * against.
+ */
+ constructor(regExp, handler, method) {
+ {
+ finalAssertExports.isInstance(regExp, RegExp, {
+ moduleName: 'workbox-routing',
+ className: 'RegExpRoute',
+ funcName: 'constructor',
+ paramName: 'pattern'
+ });
+ }
+ const match = ({
+ url
+ }) => {
+ const result = regExp.exec(url.href);
+ // Return immediately if there's no match.
+ if (!result) {
+ return;
+ }
+ // Require that the match start at the first character in the URL string
+ // if it's a cross-origin request.
+ // See https://github.com/GoogleChrome/workbox/issues/281 for the context
+ // behind this behavior.
+ if (url.origin !== location.origin && result.index !== 0) {
+ {
+ logger.debug(`The regular expression '${regExp.toString()}' only partially matched ` + `against the cross-origin URL '${url.toString()}'. RegExpRoute's will only ` + `handle cross-origin requests if they match the entire URL.`);
+ }
+ return;
+ }
+ // If the route matches, but there aren't any capture groups defined, then
+ // this will return [], which is truthy and therefore sufficient to
+ // indicate a match.
+ // If there are capture groups, then it will return their values.
+ return result.slice(1);
+ };
+ super(match, handler, method);
+ }
+ }
+
+ /*
+ Copyright 2018 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ const getFriendlyURL = url => {
+ const urlObj = new URL(String(url), location.href);
+ // See https://github.com/GoogleChrome/workbox/issues/2323
+ // We want to include everything, except for the origin if it's same-origin.
+ return urlObj.href.replace(new RegExp(`^${location.origin}`), '');
+ };
+
+ /*
+ Copyright 2018 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * The Router can be used to process a `FetchEvent` using one or more
+ * {@link workbox-routing.Route}, responding with a `Response` if
+ * a matching route exists.
+ *
+ * If no route matches a given a request, the Router will use a "default"
+ * handler if one is defined.
+ *
+ * Should the matching Route throw an error, the Router will use a "catch"
+ * handler if one is defined to gracefully deal with issues and respond with a
+ * Request.
+ *
+ * If a request matches multiple routes, the **earliest** registered route will
+ * be used to respond to the request.
+ *
+ * @memberof workbox-routing
+ */
+ class Router {
+ /**
+ * Initializes a new Router.
+ */
+ constructor() {
+ this._routes = new Map();
+ this._defaultHandlerMap = new Map();
+ }
+ /**
+ * @return {Map>} routes A `Map` of HTTP
+ * method name ('GET', etc.) to an array of all the corresponding `Route`
+ * instances that are registered.
+ */
+ get routes() {
+ return this._routes;
+ }
+ /**
+ * Adds a fetch event listener to respond to events when a route matches
+ * the event's request.
+ */
+ addFetchListener() {
+ // See https://github.com/Microsoft/TypeScript/issues/28357#issuecomment-436484705
+ self.addEventListener('fetch', event => {
+ const {
+ request
+ } = event;
+ const responsePromise = this.handleRequest({
+ request,
+ event
+ });
+ if (responsePromise) {
+ event.respondWith(responsePromise);
+ }
+ });
+ }
+ /**
+ * Adds a message event listener for URLs to cache from the window.
+ * This is useful to cache resources loaded on the page prior to when the
+ * service worker started controlling it.
+ *
+ * The format of the message data sent from the window should be as follows.
+ * Where the `urlsToCache` array may consist of URL strings or an array of
+ * URL string + `requestInit` object (the same as you'd pass to `fetch()`).
+ *
+ * ```
+ * {
+ * type: 'CACHE_URLS',
+ * payload: {
+ * urlsToCache: [
+ * './script1.js',
+ * './script2.js',
+ * ['./script3.js', {mode: 'no-cors'}],
+ * ],
+ * },
+ * }
+ * ```
+ */
+ addCacheListener() {
+ // See https://github.com/Microsoft/TypeScript/issues/28357#issuecomment-436484705
+ self.addEventListener('message', event => {
+ // event.data is type 'any'
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
+ if (event.data && event.data.type === 'CACHE_URLS') {
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
+ const {
+ payload
+ } = event.data;
+ {
+ logger.debug(`Caching URLs from the window`, payload.urlsToCache);
+ }
+ const requestPromises = Promise.all(payload.urlsToCache.map(entry => {
+ if (typeof entry === 'string') {
+ entry = [entry];
+ }
+ const request = new Request(...entry);
+ return this.handleRequest({
+ request,
+ event
+ });
+ // TODO(philipwalton): TypeScript errors without this typecast for
+ // some reason (probably a bug). The real type here should work but
+ // doesn't: `Array | undefined>`.
+ })); // TypeScript
+ event.waitUntil(requestPromises);
+ // If a MessageChannel was used, reply to the message on success.
+ if (event.ports && event.ports[0]) {
+ void requestPromises.then(() => event.ports[0].postMessage(true));
+ }
+ }
+ });
+ }
+ /**
+ * Apply the routing rules to a FetchEvent object to get a Response from an
+ * appropriate Route's handler.
+ *
+ * @param {Object} options
+ * @param {Request} options.request The request to handle.
+ * @param {ExtendableEvent} options.event The event that triggered the
+ * request.
+ * @return {Promise|undefined} A promise is returned if a
+ * registered route can handle the request. If there is no matching
+ * route and there's no `defaultHandler`, `undefined` is returned.
+ */
+ handleRequest({
+ request,
+ event
+ }) {
+ {
+ finalAssertExports.isInstance(request, Request, {
+ moduleName: 'workbox-routing',
+ className: 'Router',
+ funcName: 'handleRequest',
+ paramName: 'options.request'
+ });
+ }
+ const url = new URL(request.url, location.href);
+ if (!url.protocol.startsWith('http')) {
+ {
+ logger.debug(`Workbox Router only supports URLs that start with 'http'.`);
+ }
+ return;
+ }
+ const sameOrigin = url.origin === location.origin;
+ const {
+ params,
+ route
+ } = this.findMatchingRoute({
+ event,
+ request,
+ sameOrigin,
+ url
+ });
+ let handler = route && route.handler;
+ const debugMessages = [];
+ {
+ if (handler) {
+ debugMessages.push([`Found a route to handle this request:`, route]);
+ if (params) {
+ debugMessages.push([`Passing the following params to the route's handler:`, params]);
+ }
+ }
+ }
+ // If we don't have a handler because there was no matching route, then
+ // fall back to defaultHandler if that's defined.
+ const method = request.method;
+ if (!handler && this._defaultHandlerMap.has(method)) {
+ {
+ debugMessages.push(`Failed to find a matching route. Falling ` + `back to the default handler for ${method}.`);
+ }
+ handler = this._defaultHandlerMap.get(method);
+ }
+ if (!handler) {
+ {
+ // No handler so Workbox will do nothing. If logs is set of debug
+ // i.e. verbose, we should print out this information.
+ logger.debug(`No route found for: ${getFriendlyURL(url)}`);
+ }
+ return;
+ }
+ {
+ // We have a handler, meaning Workbox is going to handle the route.
+ // print the routing details to the console.
+ logger.groupCollapsed(`Router is responding to: ${getFriendlyURL(url)}`);
+ debugMessages.forEach(msg => {
+ if (Array.isArray(msg)) {
+ logger.log(...msg);
+ } else {
+ logger.log(msg);
+ }
+ });
+ logger.groupEnd();
+ }
+ // Wrap in try and catch in case the handle method throws a synchronous
+ // error. It should still callback to the catch handler.
+ let responsePromise;
+ try {
+ responsePromise = handler.handle({
+ url,
+ request,
+ event,
+ params
+ });
+ } catch (err) {
+ responsePromise = Promise.reject(err);
+ }
+ // Get route's catch handler, if it exists
+ const catchHandler = route && route.catchHandler;
+ if (responsePromise instanceof Promise && (this._catchHandler || catchHandler)) {
+ responsePromise = responsePromise.catch(async err => {
+ // If there's a route catch handler, process that first
+ if (catchHandler) {
+ {
+ // Still include URL here as it will be async from the console group
+ // and may not make sense without the URL
+ logger.groupCollapsed(`Error thrown when responding to: ` + ` ${getFriendlyURL(url)}. Falling back to route's Catch Handler.`);
+ logger.error(`Error thrown by:`, route);
+ logger.error(err);
+ logger.groupEnd();
+ }
+ try {
+ return await catchHandler.handle({
+ url,
+ request,
+ event,
+ params
+ });
+ } catch (catchErr) {
+ if (catchErr instanceof Error) {
+ err = catchErr;
+ }
+ }
+ }
+ if (this._catchHandler) {
+ {
+ // Still include URL here as it will be async from the console group
+ // and may not make sense without the URL
+ logger.groupCollapsed(`Error thrown when responding to: ` + ` ${getFriendlyURL(url)}. Falling back to global Catch Handler.`);
+ logger.error(`Error thrown by:`, route);
+ logger.error(err);
+ logger.groupEnd();
+ }
+ return this._catchHandler.handle({
+ url,
+ request,
+ event
+ });
+ }
+ throw err;
+ });
+ }
+ return responsePromise;
+ }
+ /**
+ * Checks a request and URL (and optionally an event) against the list of
+ * registered routes, and if there's a match, returns the corresponding
+ * route along with any params generated by the match.
+ *
+ * @param {Object} options
+ * @param {URL} options.url
+ * @param {boolean} options.sameOrigin The result of comparing `url.origin`
+ * against the current origin.
+ * @param {Request} options.request The request to match.
+ * @param {Event} options.event The corresponding event.
+ * @return {Object} An object with `route` and `params` properties.
+ * They are populated if a matching route was found or `undefined`
+ * otherwise.
+ */
+ findMatchingRoute({
+ url,
+ sameOrigin,
+ request,
+ event
+ }) {
+ const routes = this._routes.get(request.method) || [];
+ for (const route of routes) {
+ let params;
+ // route.match returns type any, not possible to change right now.
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
+ const matchResult = route.match({
+ url,
+ sameOrigin,
+ request,
+ event
+ });
+ if (matchResult) {
+ {
+ // Warn developers that using an async matchCallback is almost always
+ // not the right thing to do.
+ if (matchResult instanceof Promise) {
+ logger.warn(`While routing ${getFriendlyURL(url)}, an async ` + `matchCallback function was used. Please convert the ` + `following route to use a synchronous matchCallback function:`, route);
+ }
+ }
+ // See https://github.com/GoogleChrome/workbox/issues/2079
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
+ params = matchResult;
+ if (Array.isArray(params) && params.length === 0) {
+ // Instead of passing an empty array in as params, use undefined.
+ params = undefined;
+ } else if (matchResult.constructor === Object &&
+ // eslint-disable-line
+ Object.keys(matchResult).length === 0) {
+ // Instead of passing an empty object in as params, use undefined.
+ params = undefined;
+ } else if (typeof matchResult === 'boolean') {
+ // For the boolean value true (rather than just something truth-y),
+ // don't set params.
+ // See https://github.com/GoogleChrome/workbox/pull/2134#issuecomment-513924353
+ params = undefined;
+ }
+ // Return early if have a match.
+ return {
+ route,
+ params
+ };
+ }
+ }
+ // If no match was found above, return and empty object.
+ return {};
+ }
+ /**
+ * Define a default `handler` that's called when no routes explicitly
+ * match the incoming request.
+ *
+ * Each HTTP method ('GET', 'POST', etc.) gets its own default handler.
+ *
+ * Without a default handler, unmatched requests will go against the
+ * network as if there were no service worker present.
+ *
+ * @param {workbox-routing~handlerCallback} handler A callback
+ * function that returns a Promise resulting in a Response.
+ * @param {string} [method='GET'] The HTTP method to associate with this
+ * default handler. Each method has its own default.
+ */
+ setDefaultHandler(handler, method = defaultMethod) {
+ this._defaultHandlerMap.set(method, normalizeHandler(handler));
+ }
+ /**
+ * If a Route throws an error while handling a request, this `handler`
+ * will be called and given a chance to provide a response.
+ *
+ * @param {workbox-routing~handlerCallback} handler A callback
+ * function that returns a Promise resulting in a Response.
+ */
+ setCatchHandler(handler) {
+ this._catchHandler = normalizeHandler(handler);
+ }
+ /**
+ * Registers a route with the router.
+ *
+ * @param {workbox-routing.Route} route The route to register.
+ */
+ registerRoute(route) {
+ {
+ finalAssertExports.isType(route, 'object', {
+ moduleName: 'workbox-routing',
+ className: 'Router',
+ funcName: 'registerRoute',
+ paramName: 'route'
+ });
+ finalAssertExports.hasMethod(route, 'match', {
+ moduleName: 'workbox-routing',
+ className: 'Router',
+ funcName: 'registerRoute',
+ paramName: 'route'
+ });
+ finalAssertExports.isType(route.handler, 'object', {
+ moduleName: 'workbox-routing',
+ className: 'Router',
+ funcName: 'registerRoute',
+ paramName: 'route'
+ });
+ finalAssertExports.hasMethod(route.handler, 'handle', {
+ moduleName: 'workbox-routing',
+ className: 'Router',
+ funcName: 'registerRoute',
+ paramName: 'route.handler'
+ });
+ finalAssertExports.isType(route.method, 'string', {
+ moduleName: 'workbox-routing',
+ className: 'Router',
+ funcName: 'registerRoute',
+ paramName: 'route.method'
+ });
+ }
+ if (!this._routes.has(route.method)) {
+ this._routes.set(route.method, []);
+ }
+ // Give precedence to all of the earlier routes by adding this additional
+ // route to the end of the array.
+ this._routes.get(route.method).push(route);
+ }
+ /**
+ * Unregisters a route with the router.
+ *
+ * @param {workbox-routing.Route} route The route to unregister.
+ */
+ unregisterRoute(route) {
+ if (!this._routes.has(route.method)) {
+ throw new WorkboxError('unregister-route-but-not-found-with-method', {
+ method: route.method
+ });
+ }
+ const routeIndex = this._routes.get(route.method).indexOf(route);
+ if (routeIndex > -1) {
+ this._routes.get(route.method).splice(routeIndex, 1);
+ } else {
+ throw new WorkboxError('unregister-route-route-not-registered');
+ }
+ }
+ }
+
+ /*
+ Copyright 2019 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ let defaultRouter;
+ /**
+ * Creates a new, singleton Router instance if one does not exist. If one
+ * does already exist, that instance is returned.
+ *
+ * @private
+ * @return {Router}
+ */
+ const getOrCreateDefaultRouter = () => {
+ if (!defaultRouter) {
+ defaultRouter = new Router();
+ // The helpers that use the default Router assume these listeners exist.
+ defaultRouter.addFetchListener();
+ defaultRouter.addCacheListener();
+ }
+ return defaultRouter;
+ };
+
+ /*
+ Copyright 2019 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * Easily register a RegExp, string, or function with a caching
+ * strategy to a singleton Router instance.
+ *
+ * This method will generate a Route for you if needed and
+ * call {@link workbox-routing.Router#registerRoute}.
+ *
+ * @param {RegExp|string|workbox-routing.Route~matchCallback|workbox-routing.Route} capture
+ * If the capture param is a `Route`, all other arguments will be ignored.
+ * @param {workbox-routing~handlerCallback} [handler] A callback
+ * function that returns a Promise resulting in a Response. This parameter
+ * is required if `capture` is not a `Route` object.
+ * @param {string} [method='GET'] The HTTP method to match the Route
+ * against.
+ * @return {workbox-routing.Route} The generated `Route`.
+ *
+ * @memberof workbox-routing
+ */
+ function registerRoute(capture, handler, method) {
+ let route;
+ if (typeof capture === 'string') {
+ const captureUrl = new URL(capture, location.href);
+ {
+ if (!(capture.startsWith('/') || capture.startsWith('http'))) {
+ throw new WorkboxError('invalid-string', {
+ moduleName: 'workbox-routing',
+ funcName: 'registerRoute',
+ paramName: 'capture'
+ });
+ }
+ // We want to check if Express-style wildcards are in the pathname only.
+ // TODO: Remove this log message in v4.
+ const valueToCheck = capture.startsWith('http') ? captureUrl.pathname : capture;
+ // See https://github.com/pillarjs/path-to-regexp#parameters
+ const wildcards = '[*:?+]';
+ if (new RegExp(`${wildcards}`).exec(valueToCheck)) {
+ logger.debug(`The '$capture' parameter contains an Express-style wildcard ` + `character (${wildcards}). Strings are now always interpreted as ` + `exact matches; use a RegExp for partial or wildcard matches.`);
+ }
+ }
+ const matchCallback = ({
+ url
+ }) => {
+ {
+ if (url.pathname === captureUrl.pathname && url.origin !== captureUrl.origin) {
+ logger.debug(`${capture} only partially matches the cross-origin URL ` + `${url.toString()}. This route will only handle cross-origin requests ` + `if they match the entire URL.`);
+ }
+ }
+ return url.href === captureUrl.href;
+ };
+ // If `capture` is a string then `handler` and `method` must be present.
+ route = new Route(matchCallback, handler, method);
+ } else if (capture instanceof RegExp) {
+ // If `capture` is a `RegExp` then `handler` and `method` must be present.
+ route = new RegExpRoute(capture, handler, method);
+ } else if (typeof capture === 'function') {
+ // If `capture` is a function then `handler` and `method` must be present.
+ route = new Route(capture, handler, method);
+ } else if (capture instanceof Route) {
+ route = capture;
+ } else {
+ throw new WorkboxError('unsupported-route-type', {
+ moduleName: 'workbox-routing',
+ funcName: 'registerRoute',
+ paramName: 'capture'
+ });
+ }
+ const defaultRouter = getOrCreateDefaultRouter();
+ defaultRouter.registerRoute(route);
+ return route;
+ }
+
+ /*
+ Copyright 2018 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ const _cacheNameDetails = {
+ googleAnalytics: 'googleAnalytics',
+ precache: 'precache-v2',
+ prefix: 'workbox',
+ runtime: 'runtime',
+ suffix: typeof registration !== 'undefined' ? registration.scope : ''
+ };
+ const _createCacheName = cacheName => {
+ return [_cacheNameDetails.prefix, cacheName, _cacheNameDetails.suffix].filter(value => value && value.length > 0).join('-');
+ };
+ const eachCacheNameDetail = fn => {
+ for (const key of Object.keys(_cacheNameDetails)) {
+ fn(key);
+ }
+ };
+ const cacheNames = {
+ updateDetails: details => {
+ eachCacheNameDetail(key => {
+ if (typeof details[key] === 'string') {
+ _cacheNameDetails[key] = details[key];
+ }
+ });
+ },
+ getGoogleAnalyticsName: userCacheName => {
+ return userCacheName || _createCacheName(_cacheNameDetails.googleAnalytics);
+ },
+ getPrecacheName: userCacheName => {
+ return userCacheName || _createCacheName(_cacheNameDetails.precache);
+ },
+ getPrefix: () => {
+ return _cacheNameDetails.prefix;
+ },
+ getRuntimeName: userCacheName => {
+ return userCacheName || _createCacheName(_cacheNameDetails.runtime);
+ },
+ getSuffix: () => {
+ return _cacheNameDetails.suffix;
+ }
+ };
+
+ /*
+ Copyright 2020 Google LLC
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * A utility method that makes it easier to use `event.waitUntil` with
+ * async functions and return the result.
+ *
+ * @param {ExtendableEvent} event
+ * @param {Function} asyncFn
+ * @return {Function}
+ * @private
+ */
+ function waitUntil(event, asyncFn) {
+ const returnPromise = asyncFn();
+ event.waitUntil(returnPromise);
+ return returnPromise;
+ }
+
+ // @ts-ignore
+ try {
+ self['workbox:precaching:7.0.0'] && _();
+ } catch (e) {}
+
+ /*
+ Copyright 2018 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ // Name of the search parameter used to store revision info.
+ const REVISION_SEARCH_PARAM = '__WB_REVISION__';
+ /**
+ * Converts a manifest entry into a versioned URL suitable for precaching.
+ *
+ * @param {Object|string} entry
+ * @return {string} A URL with versioning info.
+ *
+ * @private
+ * @memberof workbox-precaching
+ */
+ function createCacheKey(entry) {
+ if (!entry) {
+ throw new WorkboxError('add-to-cache-list-unexpected-type', {
+ entry
+ });
+ }
+ // If a precache manifest entry is a string, it's assumed to be a versioned
+ // URL, like '/app.abcd1234.js'. Return as-is.
+ if (typeof entry === 'string') {
+ const urlObject = new URL(entry, location.href);
+ return {
+ cacheKey: urlObject.href,
+ url: urlObject.href
+ };
+ }
+ const {
+ revision,
+ url
+ } = entry;
+ if (!url) {
+ throw new WorkboxError('add-to-cache-list-unexpected-type', {
+ entry
+ });
+ }
+ // If there's just a URL and no revision, then it's also assumed to be a
+ // versioned URL.
+ if (!revision) {
+ const urlObject = new URL(url, location.href);
+ return {
+ cacheKey: urlObject.href,
+ url: urlObject.href
+ };
+ }
+ // Otherwise, construct a properly versioned URL using the custom Workbox
+ // search parameter along with the revision info.
+ const cacheKeyURL = new URL(url, location.href);
+ const originalURL = new URL(url, location.href);
+ cacheKeyURL.searchParams.set(REVISION_SEARCH_PARAM, revision);
+ return {
+ cacheKey: cacheKeyURL.href,
+ url: originalURL.href
+ };
+ }
+
+ /*
+ Copyright 2020 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * A plugin, designed to be used with PrecacheController, to determine the
+ * of assets that were updated (or not updated) during the install event.
+ *
+ * @private
+ */
+ class PrecacheInstallReportPlugin {
+ constructor() {
+ this.updatedURLs = [];
+ this.notUpdatedURLs = [];
+ this.handlerWillStart = async ({
+ request,
+ state
+ }) => {
+ // TODO: `state` should never be undefined...
+ if (state) {
+ state.originalRequest = request;
+ }
+ };
+ this.cachedResponseWillBeUsed = async ({
+ event,
+ state,
+ cachedResponse
+ }) => {
+ if (event.type === 'install') {
+ if (state && state.originalRequest && state.originalRequest instanceof Request) {
+ // TODO: `state` should never be undefined...
+ const url = state.originalRequest.url;
+ if (cachedResponse) {
+ this.notUpdatedURLs.push(url);
+ } else {
+ this.updatedURLs.push(url);
+ }
+ }
+ }
+ return cachedResponse;
+ };
+ }
+ }
+
+ /*
+ Copyright 2020 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * A plugin, designed to be used with PrecacheController, to translate URLs into
+ * the corresponding cache key, based on the current revision info.
+ *
+ * @private
+ */
+ class PrecacheCacheKeyPlugin {
+ constructor({
+ precacheController
+ }) {
+ this.cacheKeyWillBeUsed = async ({
+ request,
+ params
+ }) => {
+ // Params is type any, can't change right now.
+ /* eslint-disable */
+ const cacheKey = (params === null || params === void 0 ? void 0 : params.cacheKey) || this._precacheController.getCacheKeyForURL(request.url);
+ /* eslint-enable */
+ return cacheKey ? new Request(cacheKey, {
+ headers: request.headers
+ }) : request;
+ };
+ this._precacheController = precacheController;
+ }
+ }
+
+ /*
+ Copyright 2018 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * @param {string} groupTitle
+ * @param {Array} deletedURLs
+ *
+ * @private
+ */
+ const logGroup = (groupTitle, deletedURLs) => {
+ logger.groupCollapsed(groupTitle);
+ for (const url of deletedURLs) {
+ logger.log(url);
+ }
+ logger.groupEnd();
+ };
+ /**
+ * @param {Array} deletedURLs
+ *
+ * @private
+ * @memberof workbox-precaching
+ */
+ function printCleanupDetails(deletedURLs) {
+ const deletionCount = deletedURLs.length;
+ if (deletionCount > 0) {
+ logger.groupCollapsed(`During precaching cleanup, ` + `${deletionCount} cached ` + `request${deletionCount === 1 ? ' was' : 's were'} deleted.`);
+ logGroup('Deleted Cache Requests', deletedURLs);
+ logger.groupEnd();
+ }
+ }
+
+ /*
+ Copyright 2018 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * @param {string} groupTitle
+ * @param {Array} urls
+ *
+ * @private
+ */
+ function _nestedGroup(groupTitle, urls) {
+ if (urls.length === 0) {
+ return;
+ }
+ logger.groupCollapsed(groupTitle);
+ for (const url of urls) {
+ logger.log(url);
+ }
+ logger.groupEnd();
+ }
+ /**
+ * @param {Array} urlsToPrecache
+ * @param {Array} urlsAlreadyPrecached
+ *
+ * @private
+ * @memberof workbox-precaching
+ */
+ function printInstallDetails(urlsToPrecache, urlsAlreadyPrecached) {
+ const precachedCount = urlsToPrecache.length;
+ const alreadyPrecachedCount = urlsAlreadyPrecached.length;
+ if (precachedCount || alreadyPrecachedCount) {
+ let message = `Precaching ${precachedCount} file${precachedCount === 1 ? '' : 's'}.`;
+ if (alreadyPrecachedCount > 0) {
+ message += ` ${alreadyPrecachedCount} ` + `file${alreadyPrecachedCount === 1 ? ' is' : 's are'} already cached.`;
+ }
+ logger.groupCollapsed(message);
+ _nestedGroup(`View newly precached URLs.`, urlsToPrecache);
+ _nestedGroup(`View previously precached URLs.`, urlsAlreadyPrecached);
+ logger.groupEnd();
+ }
+ }
+
+ /*
+ Copyright 2019 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ let supportStatus;
+ /**
+ * A utility function that determines whether the current browser supports
+ * constructing a new `Response` from a `response.body` stream.
+ *
+ * @return {boolean} `true`, if the current browser can successfully
+ * construct a `Response` from a `response.body` stream, `false` otherwise.
+ *
+ * @private
+ */
+ function canConstructResponseFromBodyStream() {
+ if (supportStatus === undefined) {
+ const testResponse = new Response('');
+ if ('body' in testResponse) {
+ try {
+ new Response(testResponse.body);
+ supportStatus = true;
+ } catch (error) {
+ supportStatus = false;
+ }
+ }
+ supportStatus = false;
+ }
+ return supportStatus;
+ }
+
+ /*
+ Copyright 2019 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * Allows developers to copy a response and modify its `headers`, `status`,
+ * or `statusText` values (the values settable via a
+ * [`ResponseInit`]{@link https://developer.mozilla.org/en-US/docs/Web/API/Response/Response#Syntax}
+ * object in the constructor).
+ * To modify these values, pass a function as the second argument. That
+ * function will be invoked with a single object with the response properties
+ * `{headers, status, statusText}`. The return value of this function will
+ * be used as the `ResponseInit` for the new `Response`. To change the values
+ * either modify the passed parameter(s) and return it, or return a totally
+ * new object.
+ *
+ * This method is intentionally limited to same-origin responses, regardless of
+ * whether CORS was used or not.
+ *
+ * @param {Response} response
+ * @param {Function} modifier
+ * @memberof workbox-core
+ */
+ async function copyResponse(response, modifier) {
+ let origin = null;
+ // If response.url isn't set, assume it's cross-origin and keep origin null.
+ if (response.url) {
+ const responseURL = new URL(response.url);
+ origin = responseURL.origin;
+ }
+ if (origin !== self.location.origin) {
+ throw new WorkboxError('cross-origin-copy-response', {
+ origin
+ });
+ }
+ const clonedResponse = response.clone();
+ // Create a fresh `ResponseInit` object by cloning the headers.
+ const responseInit = {
+ headers: new Headers(clonedResponse.headers),
+ status: clonedResponse.status,
+ statusText: clonedResponse.statusText
+ };
+ // Apply any user modifications.
+ const modifiedResponseInit = modifier ? modifier(responseInit) : responseInit;
+ // Create the new response from the body stream and `ResponseInit`
+ // modifications. Note: not all browsers support the Response.body stream,
+ // so fall back to reading the entire body into memory as a blob.
+ const body = canConstructResponseFromBodyStream() ? clonedResponse.body : await clonedResponse.blob();
+ return new Response(body, modifiedResponseInit);
+ }
+
+ /*
+ Copyright 2020 Google LLC
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ function stripParams(fullURL, ignoreParams) {
+ const strippedURL = new URL(fullURL);
+ for (const param of ignoreParams) {
+ strippedURL.searchParams.delete(param);
+ }
+ return strippedURL.href;
+ }
+ /**
+ * Matches an item in the cache, ignoring specific URL params. This is similar
+ * to the `ignoreSearch` option, but it allows you to ignore just specific
+ * params (while continuing to match on the others).
+ *
+ * @private
+ * @param {Cache} cache
+ * @param {Request} request
+ * @param {Object} matchOptions
+ * @param {Array} ignoreParams
+ * @return {Promise}
+ */
+ async function cacheMatchIgnoreParams(cache, request, ignoreParams, matchOptions) {
+ const strippedRequestURL = stripParams(request.url, ignoreParams);
+ // If the request doesn't include any ignored params, match as normal.
+ if (request.url === strippedRequestURL) {
+ return cache.match(request, matchOptions);
+ }
+ // Otherwise, match by comparing keys
+ const keysOptions = Object.assign(Object.assign({}, matchOptions), {
+ ignoreSearch: true
+ });
+ const cacheKeys = await cache.keys(request, keysOptions);
+ for (const cacheKey of cacheKeys) {
+ const strippedCacheKeyURL = stripParams(cacheKey.url, ignoreParams);
+ if (strippedRequestURL === strippedCacheKeyURL) {
+ return cache.match(cacheKey, matchOptions);
+ }
+ }
+ return;
+ }
+
+ /*
+ Copyright 2018 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * The Deferred class composes Promises in a way that allows for them to be
+ * resolved or rejected from outside the constructor. In most cases promises
+ * should be used directly, but Deferreds can be necessary when the logic to
+ * resolve a promise must be separate.
+ *
+ * @private
+ */
+ class Deferred {
+ /**
+ * Creates a promise and exposes its resolve and reject functions as methods.
+ */
+ constructor() {
+ this.promise = new Promise((resolve, reject) => {
+ this.resolve = resolve;
+ this.reject = reject;
+ });
+ }
+ }
+
+ /*
+ Copyright 2018 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ // Callbacks to be executed whenever there's a quota error.
+ // Can't change Function type right now.
+ // eslint-disable-next-line @typescript-eslint/ban-types
+ const quotaErrorCallbacks = new Set();
+
+ /*
+ Copyright 2018 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * Runs all of the callback functions, one at a time sequentially, in the order
+ * in which they were registered.
+ *
+ * @memberof workbox-core
+ * @private
+ */
+ async function executeQuotaErrorCallbacks() {
+ {
+ logger.log(`About to run ${quotaErrorCallbacks.size} ` + `callbacks to clean up caches.`);
+ }
+ for (const callback of quotaErrorCallbacks) {
+ await callback();
+ {
+ logger.log(callback, 'is complete.');
+ }
+ }
+ {
+ logger.log('Finished running callbacks.');
+ }
+ }
+
+ /*
+ Copyright 2019 Google LLC
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * Returns a promise that resolves and the passed number of milliseconds.
+ * This utility is an async/await-friendly version of `setTimeout`.
+ *
+ * @param {number} ms
+ * @return {Promise}
+ * @private
+ */
+ function timeout(ms) {
+ return new Promise(resolve => setTimeout(resolve, ms));
+ }
+
+ // @ts-ignore
+ try {
+ self['workbox:strategies:7.0.0'] && _();
+ } catch (e) {}
+
+ /*
+ Copyright 2020 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ function toRequest(input) {
+ return typeof input === 'string' ? new Request(input) : input;
+ }
+ /**
+ * A class created every time a Strategy instance instance calls
+ * {@link workbox-strategies.Strategy~handle} or
+ * {@link workbox-strategies.Strategy~handleAll} that wraps all fetch and
+ * cache actions around plugin callbacks and keeps track of when the strategy
+ * is "done" (i.e. all added `event.waitUntil()` promises have resolved).
+ *
+ * @memberof workbox-strategies
+ */
+ class StrategyHandler {
+ /**
+ * Creates a new instance associated with the passed strategy and event
+ * that's handling the request.
+ *
+ * The constructor also initializes the state that will be passed to each of
+ * the plugins handling this request.
+ *
+ * @param {workbox-strategies.Strategy} strategy
+ * @param {Object} options
+ * @param {Request|string} options.request A request to run this strategy for.
+ * @param {ExtendableEvent} options.event The event associated with the
+ * request.
+ * @param {URL} [options.url]
+ * @param {*} [options.params] The return value from the
+ * {@link workbox-routing~matchCallback} (if applicable).
+ */
+ constructor(strategy, options) {
+ this._cacheKeys = {};
+ /**
+ * The request the strategy is performing (passed to the strategy's
+ * `handle()` or `handleAll()` method).
+ * @name request
+ * @instance
+ * @type {Request}
+ * @memberof workbox-strategies.StrategyHandler
+ */
+ /**
+ * The event associated with this request.
+ * @name event
+ * @instance
+ * @type {ExtendableEvent}
+ * @memberof workbox-strategies.StrategyHandler
+ */
+ /**
+ * A `URL` instance of `request.url` (if passed to the strategy's
+ * `handle()` or `handleAll()` method).
+ * Note: the `url` param will be present if the strategy was invoked
+ * from a workbox `Route` object.
+ * @name url
+ * @instance
+ * @type {URL|undefined}
+ * @memberof workbox-strategies.StrategyHandler
+ */
+ /**
+ * A `param` value (if passed to the strategy's
+ * `handle()` or `handleAll()` method).
+ * Note: the `param` param will be present if the strategy was invoked
+ * from a workbox `Route` object and the
+ * {@link workbox-routing~matchCallback} returned
+ * a truthy value (it will be that value).
+ * @name params
+ * @instance
+ * @type {*|undefined}
+ * @memberof workbox-strategies.StrategyHandler
+ */
+ {
+ finalAssertExports.isInstance(options.event, ExtendableEvent, {
+ moduleName: 'workbox-strategies',
+ className: 'StrategyHandler',
+ funcName: 'constructor',
+ paramName: 'options.event'
+ });
+ }
+ Object.assign(this, options);
+ this.event = options.event;
+ this._strategy = strategy;
+ this._handlerDeferred = new Deferred();
+ this._extendLifetimePromises = [];
+ // Copy the plugins list (since it's mutable on the strategy),
+ // so any mutations don't affect this handler instance.
+ this._plugins = [...strategy.plugins];
+ this._pluginStateMap = new Map();
+ for (const plugin of this._plugins) {
+ this._pluginStateMap.set(plugin, {});
+ }
+ this.event.waitUntil(this._handlerDeferred.promise);
+ }
+ /**
+ * Fetches a given request (and invokes any applicable plugin callback
+ * methods) using the `fetchOptions` (for non-navigation requests) and
+ * `plugins` defined on the `Strategy` object.
+ *
+ * The following plugin lifecycle methods are invoked when using this method:
+ * - `requestWillFetch()`
+ * - `fetchDidSucceed()`
+ * - `fetchDidFail()`
+ *
+ * @param {Request|string} input The URL or request to fetch.
+ * @return {Promise}
+ */
+ async fetch(input) {
+ const {
+ event
+ } = this;
+ let request = toRequest(input);
+ if (request.mode === 'navigate' && event instanceof FetchEvent && event.preloadResponse) {
+ const possiblePreloadResponse = await event.preloadResponse;
+ if (possiblePreloadResponse) {
+ {
+ logger.log(`Using a preloaded navigation response for ` + `'${getFriendlyURL(request.url)}'`);
+ }
+ return possiblePreloadResponse;
+ }
+ }
+ // If there is a fetchDidFail plugin, we need to save a clone of the
+ // original request before it's either modified by a requestWillFetch
+ // plugin or before the original request's body is consumed via fetch().
+ const originalRequest = this.hasCallback('fetchDidFail') ? request.clone() : null;
+ try {
+ for (const cb of this.iterateCallbacks('requestWillFetch')) {
+ request = await cb({
+ request: request.clone(),
+ event
+ });
+ }
+ } catch (err) {
+ if (err instanceof Error) {
+ throw new WorkboxError('plugin-error-request-will-fetch', {
+ thrownErrorMessage: err.message
+ });
+ }
+ }
+ // The request can be altered by plugins with `requestWillFetch` making
+ // the original request (most likely from a `fetch` event) different
+ // from the Request we make. Pass both to `fetchDidFail` to aid debugging.
+ const pluginFilteredRequest = request.clone();
+ try {
+ let fetchResponse;
+ // See https://github.com/GoogleChrome/workbox/issues/1796
+ fetchResponse = await fetch(request, request.mode === 'navigate' ? undefined : this._strategy.fetchOptions);
+ if ("development" !== 'production') {
+ logger.debug(`Network request for ` + `'${getFriendlyURL(request.url)}' returned a response with ` + `status '${fetchResponse.status}'.`);
+ }
+ for (const callback of this.iterateCallbacks('fetchDidSucceed')) {
+ fetchResponse = await callback({
+ event,
+ request: pluginFilteredRequest,
+ response: fetchResponse
+ });
+ }
+ return fetchResponse;
+ } catch (error) {
+ {
+ logger.log(`Network request for ` + `'${getFriendlyURL(request.url)}' threw an error.`, error);
+ }
+ // `originalRequest` will only exist if a `fetchDidFail` callback
+ // is being used (see above).
+ if (originalRequest) {
+ await this.runCallbacks('fetchDidFail', {
+ error: error,
+ event,
+ originalRequest: originalRequest.clone(),
+ request: pluginFilteredRequest.clone()
+ });
+ }
+ throw error;
+ }
+ }
+ /**
+ * Calls `this.fetch()` and (in the background) runs `this.cachePut()` on
+ * the response generated by `this.fetch()`.
+ *
+ * The call to `this.cachePut()` automatically invokes `this.waitUntil()`,
+ * so you do not have to manually call `waitUntil()` on the event.
+ *
+ * @param {Request|string} input The request or URL to fetch and cache.
+ * @return {Promise}
+ */
+ async fetchAndCachePut(input) {
+ const response = await this.fetch(input);
+ const responseClone = response.clone();
+ void this.waitUntil(this.cachePut(input, responseClone));
+ return response;
+ }
+ /**
+ * Matches a request from the cache (and invokes any applicable plugin
+ * callback methods) using the `cacheName`, `matchOptions`, and `plugins`
+ * defined on the strategy object.
+ *
+ * The following plugin lifecycle methods are invoked when using this method:
+ * - cacheKeyWillByUsed()
+ * - cachedResponseWillByUsed()
+ *
+ * @param {Request|string} key The Request or URL to use as the cache key.
+ * @return {Promise} A matching response, if found.
+ */
+ async cacheMatch(key) {
+ const request = toRequest(key);
+ let cachedResponse;
+ const {
+ cacheName,
+ matchOptions
+ } = this._strategy;
+ const effectiveRequest = await this.getCacheKey(request, 'read');
+ const multiMatchOptions = Object.assign(Object.assign({}, matchOptions), {
+ cacheName
+ });
+ cachedResponse = await caches.match(effectiveRequest, multiMatchOptions);
+ {
+ if (cachedResponse) {
+ logger.debug(`Found a cached response in '${cacheName}'.`);
+ } else {
+ logger.debug(`No cached response found in '${cacheName}'.`);
+ }
+ }
+ for (const callback of this.iterateCallbacks('cachedResponseWillBeUsed')) {
+ cachedResponse = (await callback({
+ cacheName,
+ matchOptions,
+ cachedResponse,
+ request: effectiveRequest,
+ event: this.event
+ })) || undefined;
+ }
+ return cachedResponse;
+ }
+ /**
+ * Puts a request/response pair in the cache (and invokes any applicable
+ * plugin callback methods) using the `cacheName` and `plugins` defined on
+ * the strategy object.
+ *
+ * The following plugin lifecycle methods are invoked when using this method:
+ * - cacheKeyWillByUsed()
+ * - cacheWillUpdate()
+ * - cacheDidUpdate()
+ *
+ * @param {Request|string} key The request or URL to use as the cache key.
+ * @param {Response} response The response to cache.
+ * @return {Promise} `false` if a cacheWillUpdate caused the response
+ * not be cached, and `true` otherwise.
+ */
+ async cachePut(key, response) {
+ const request = toRequest(key);
+ // Run in the next task to avoid blocking other cache reads.
+ // https://github.com/w3c/ServiceWorker/issues/1397
+ await timeout(0);
+ const effectiveRequest = await this.getCacheKey(request, 'write');
+ {
+ if (effectiveRequest.method && effectiveRequest.method !== 'GET') {
+ throw new WorkboxError('attempt-to-cache-non-get-request', {
+ url: getFriendlyURL(effectiveRequest.url),
+ method: effectiveRequest.method
+ });
+ }
+ // See https://github.com/GoogleChrome/workbox/issues/2818
+ const vary = response.headers.get('Vary');
+ if (vary) {
+ logger.debug(`The response for ${getFriendlyURL(effectiveRequest.url)} ` + `has a 'Vary: ${vary}' header. ` + `Consider setting the {ignoreVary: true} option on your strategy ` + `to ensure cache matching and deletion works as expected.`);
+ }
+ }
+ if (!response) {
+ {
+ logger.error(`Cannot cache non-existent response for ` + `'${getFriendlyURL(effectiveRequest.url)}'.`);
+ }
+ throw new WorkboxError('cache-put-with-no-response', {
+ url: getFriendlyURL(effectiveRequest.url)
+ });
+ }
+ const responseToCache = await this._ensureResponseSafeToCache(response);
+ if (!responseToCache) {
+ {
+ logger.debug(`Response '${getFriendlyURL(effectiveRequest.url)}' ` + `will not be cached.`, responseToCache);
+ }
+ return false;
+ }
+ const {
+ cacheName,
+ matchOptions
+ } = this._strategy;
+ const cache = await self.caches.open(cacheName);
+ const hasCacheUpdateCallback = this.hasCallback('cacheDidUpdate');
+ const oldResponse = hasCacheUpdateCallback ? await cacheMatchIgnoreParams(
+ // TODO(philipwalton): the `__WB_REVISION__` param is a precaching
+ // feature. Consider into ways to only add this behavior if using
+ // precaching.
+ cache, effectiveRequest.clone(), ['__WB_REVISION__'], matchOptions) : null;
+ {
+ logger.debug(`Updating the '${cacheName}' cache with a new Response ` + `for ${getFriendlyURL(effectiveRequest.url)}.`);
+ }
+ try {
+ await cache.put(effectiveRequest, hasCacheUpdateCallback ? responseToCache.clone() : responseToCache);
+ } catch (error) {
+ if (error instanceof Error) {
+ // See https://developer.mozilla.org/en-US/docs/Web/API/DOMException#exception-QuotaExceededError
+ if (error.name === 'QuotaExceededError') {
+ await executeQuotaErrorCallbacks();
+ }
+ throw error;
+ }
+ }
+ for (const callback of this.iterateCallbacks('cacheDidUpdate')) {
+ await callback({
+ cacheName,
+ oldResponse,
+ newResponse: responseToCache.clone(),
+ request: effectiveRequest,
+ event: this.event
+ });
+ }
+ return true;
+ }
+ /**
+ * Checks the list of plugins for the `cacheKeyWillBeUsed` callback, and
+ * executes any of those callbacks found in sequence. The final `Request`
+ * object returned by the last plugin is treated as the cache key for cache
+ * reads and/or writes. If no `cacheKeyWillBeUsed` plugin callbacks have
+ * been registered, the passed request is returned unmodified
+ *
+ * @param {Request} request
+ * @param {string} mode
+ * @return {Promise}
+ */
+ async getCacheKey(request, mode) {
+ const key = `${request.url} | ${mode}`;
+ if (!this._cacheKeys[key]) {
+ let effectiveRequest = request;
+ for (const callback of this.iterateCallbacks('cacheKeyWillBeUsed')) {
+ effectiveRequest = toRequest(await callback({
+ mode,
+ request: effectiveRequest,
+ event: this.event,
+ // params has a type any can't change right now.
+ params: this.params // eslint-disable-line
+ }));
+ }
+ this._cacheKeys[key] = effectiveRequest;
+ }
+ return this._cacheKeys[key];
+ }
+ /**
+ * Returns true if the strategy has at least one plugin with the given
+ * callback.
+ *
+ * @param {string} name The name of the callback to check for.
+ * @return {boolean}
+ */
+ hasCallback(name) {
+ for (const plugin of this._strategy.plugins) {
+ if (name in plugin) {
+ return true;
+ }
+ }
+ return false;
+ }
+ /**
+ * Runs all plugin callbacks matching the given name, in order, passing the
+ * given param object (merged ith the current plugin state) as the only
+ * argument.
+ *
+ * Note: since this method runs all plugins, it's not suitable for cases
+ * where the return value of a callback needs to be applied prior to calling
+ * the next callback. See
+ * {@link workbox-strategies.StrategyHandler#iterateCallbacks}
+ * below for how to handle that case.
+ *
+ * @param {string} name The name of the callback to run within each plugin.
+ * @param {Object} param The object to pass as the first (and only) param
+ * when executing each callback. This object will be merged with the
+ * current plugin state prior to callback execution.
+ */
+ async runCallbacks(name, param) {
+ for (const callback of this.iterateCallbacks(name)) {
+ // TODO(philipwalton): not sure why `any` is needed. It seems like
+ // this should work with `as WorkboxPluginCallbackParam[C]`.
+ await callback(param);
+ }
+ }
+ /**
+ * Accepts a callback and returns an iterable of matching plugin callbacks,
+ * where each callback is wrapped with the current handler state (i.e. when
+ * you call each callback, whatever object parameter you pass it will
+ * be merged with the plugin's current state).
+ *
+ * @param {string} name The name fo the callback to run
+ * @return {Array}
+ */
+ *iterateCallbacks(name) {
+ for (const plugin of this._strategy.plugins) {
+ if (typeof plugin[name] === 'function') {
+ const state = this._pluginStateMap.get(plugin);
+ const statefulCallback = param => {
+ const statefulParam = Object.assign(Object.assign({}, param), {
+ state
+ });
+ // TODO(philipwalton): not sure why `any` is needed. It seems like
+ // this should work with `as WorkboxPluginCallbackParam[C]`.
+ return plugin[name](statefulParam);
+ };
+ yield statefulCallback;
+ }
+ }
+ }
+ /**
+ * Adds a promise to the
+ * [extend lifetime promises]{@link https://w3c.github.io/ServiceWorker/#extendableevent-extend-lifetime-promises}
+ * of the event event associated with the request being handled (usually a
+ * `FetchEvent`).
+ *
+ * Note: you can await
+ * {@link workbox-strategies.StrategyHandler~doneWaiting}
+ * to know when all added promises have settled.
+ *
+ * @param {Promise} promise A promise to add to the extend lifetime promises
+ * of the event that triggered the request.
+ */
+ waitUntil(promise) {
+ this._extendLifetimePromises.push(promise);
+ return promise;
+ }
+ /**
+ * Returns a promise that resolves once all promises passed to
+ * {@link workbox-strategies.StrategyHandler~waitUntil}
+ * have settled.
+ *
+ * Note: any work done after `doneWaiting()` settles should be manually
+ * passed to an event's `waitUntil()` method (not this handler's
+ * `waitUntil()` method), otherwise the service worker thread my be killed
+ * prior to your work completing.
+ */
+ async doneWaiting() {
+ let promise;
+ while (promise = this._extendLifetimePromises.shift()) {
+ await promise;
+ }
+ }
+ /**
+ * Stops running the strategy and immediately resolves any pending
+ * `waitUntil()` promises.
+ */
+ destroy() {
+ this._handlerDeferred.resolve(null);
+ }
+ /**
+ * This method will call cacheWillUpdate on the available plugins (or use
+ * status === 200) to determine if the Response is safe and valid to cache.
+ *
+ * @param {Request} options.request
+ * @param {Response} options.response
+ * @return {Promise}
+ *
+ * @private
+ */
+ async _ensureResponseSafeToCache(response) {
+ let responseToCache = response;
+ let pluginsUsed = false;
+ for (const callback of this.iterateCallbacks('cacheWillUpdate')) {
+ responseToCache = (await callback({
+ request: this.request,
+ response: responseToCache,
+ event: this.event
+ })) || undefined;
+ pluginsUsed = true;
+ if (!responseToCache) {
+ break;
+ }
+ }
+ if (!pluginsUsed) {
+ if (responseToCache && responseToCache.status !== 200) {
+ responseToCache = undefined;
+ }
+ {
+ if (responseToCache) {
+ if (responseToCache.status !== 200) {
+ if (responseToCache.status === 0) {
+ logger.warn(`The response for '${this.request.url}' ` + `is an opaque response. The caching strategy that you're ` + `using will not cache opaque responses by default.`);
+ } else {
+ logger.debug(`The response for '${this.request.url}' ` + `returned a status code of '${response.status}' and won't ` + `be cached as a result.`);
+ }
+ }
+ }
+ }
+ }
+ return responseToCache;
+ }
+ }
+
+ /*
+ Copyright 2020 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * An abstract base class that all other strategy classes must extend from:
+ *
+ * @memberof workbox-strategies
+ */
+ class Strategy {
+ /**
+ * Creates a new instance of the strategy and sets all documented option
+ * properties as public instance properties.
+ *
+ * Note: if a custom strategy class extends the base Strategy class and does
+ * not need more than these properties, it does not need to define its own
+ * constructor.
+ *
+ * @param {Object} [options]
+ * @param {string} [options.cacheName] Cache name to store and retrieve
+ * requests. Defaults to the cache names provided by
+ * {@link workbox-core.cacheNames}.
+ * @param {Array} [options.plugins] [Plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins}
+ * to use in conjunction with this caching strategy.
+ * @param {Object} [options.fetchOptions] Values passed along to the
+ * [`init`](https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters)
+ * of [non-navigation](https://github.com/GoogleChrome/workbox/issues/1796)
+ * `fetch()` requests made by this strategy.
+ * @param {Object} [options.matchOptions] The
+ * [`CacheQueryOptions`]{@link https://w3c.github.io/ServiceWorker/#dictdef-cachequeryoptions}
+ * for any `cache.match()` or `cache.put()` calls made by this strategy.
+ */
+ constructor(options = {}) {
+ /**
+ * Cache name to store and retrieve
+ * requests. Defaults to the cache names provided by
+ * {@link workbox-core.cacheNames}.
+ *
+ * @type {string}
+ */
+ this.cacheName = cacheNames.getRuntimeName(options.cacheName);
+ /**
+ * The list
+ * [Plugins]{@link https://developers.google.com/web/tools/workbox/guides/using-plugins}
+ * used by this strategy.
+ *
+ * @type {Array}
+ */
+ this.plugins = options.plugins || [];
+ /**
+ * Values passed along to the
+ * [`init`]{@link https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters}
+ * of all fetch() requests made by this strategy.
+ *
+ * @type {Object}
+ */
+ this.fetchOptions = options.fetchOptions;
+ /**
+ * The
+ * [`CacheQueryOptions`]{@link https://w3c.github.io/ServiceWorker/#dictdef-cachequeryoptions}
+ * for any `cache.match()` or `cache.put()` calls made by this strategy.
+ *
+ * @type {Object}
+ */
+ this.matchOptions = options.matchOptions;
+ }
+ /**
+ * Perform a request strategy and returns a `Promise` that will resolve with
+ * a `Response`, invoking all relevant plugin callbacks.
+ *
+ * When a strategy instance is registered with a Workbox
+ * {@link workbox-routing.Route}, this method is automatically
+ * called when the route matches.
+ *
+ * Alternatively, this method can be used in a standalone `FetchEvent`
+ * listener by passing it to `event.respondWith()`.
+ *
+ * @param {FetchEvent|Object} options A `FetchEvent` or an object with the
+ * properties listed below.
+ * @param {Request|string} options.request A request to run this strategy for.
+ * @param {ExtendableEvent} options.event The event associated with the
+ * request.
+ * @param {URL} [options.url]
+ * @param {*} [options.params]
+ */
+ handle(options) {
+ const [responseDone] = this.handleAll(options);
+ return responseDone;
+ }
+ /**
+ * Similar to {@link workbox-strategies.Strategy~handle}, but
+ * instead of just returning a `Promise` that resolves to a `Response` it
+ * it will return an tuple of `[response, done]` promises, where the former
+ * (`response`) is equivalent to what `handle()` returns, and the latter is a
+ * Promise that will resolve once any promises that were added to
+ * `event.waitUntil()` as part of performing the strategy have completed.
+ *
+ * You can await the `done` promise to ensure any extra work performed by
+ * the strategy (usually caching responses) completes successfully.
+ *
+ * @param {FetchEvent|Object} options A `FetchEvent` or an object with the
+ * properties listed below.
+ * @param {Request|string} options.request A request to run this strategy for.
+ * @param {ExtendableEvent} options.event The event associated with the
+ * request.
+ * @param {URL} [options.url]
+ * @param {*} [options.params]
+ * @return {Array} A tuple of [response, done]
+ * promises that can be used to determine when the response resolves as
+ * well as when the handler has completed all its work.
+ */
+ handleAll(options) {
+ // Allow for flexible options to be passed.
+ if (options instanceof FetchEvent) {
+ options = {
+ event: options,
+ request: options.request
+ };
+ }
+ const event = options.event;
+ const request = typeof options.request === 'string' ? new Request(options.request) : options.request;
+ const params = 'params' in options ? options.params : undefined;
+ const handler = new StrategyHandler(this, {
+ event,
+ request,
+ params
+ });
+ const responseDone = this._getResponse(handler, request, event);
+ const handlerDone = this._awaitComplete(responseDone, handler, request, event);
+ // Return an array of promises, suitable for use with Promise.all().
+ return [responseDone, handlerDone];
+ }
+ async _getResponse(handler, request, event) {
+ await handler.runCallbacks('handlerWillStart', {
+ event,
+ request
+ });
+ let response = undefined;
+ try {
+ response = await this._handle(request, handler);
+ // The "official" Strategy subclasses all throw this error automatically,
+ // but in case a third-party Strategy doesn't, ensure that we have a
+ // consistent failure when there's no response or an error response.
+ if (!response || response.type === 'error') {
+ throw new WorkboxError('no-response', {
+ url: request.url
+ });
+ }
+ } catch (error) {
+ if (error instanceof Error) {
+ for (const callback of handler.iterateCallbacks('handlerDidError')) {
+ response = await callback({
+ error,
+ event,
+ request
+ });
+ if (response) {
+ break;
+ }
+ }
+ }
+ if (!response) {
+ throw error;
+ } else {
+ logger.log(`While responding to '${getFriendlyURL(request.url)}', ` + `an ${error instanceof Error ? error.toString() : ''} error occurred. Using a fallback response provided by ` + `a handlerDidError plugin.`);
+ }
+ }
+ for (const callback of handler.iterateCallbacks('handlerWillRespond')) {
+ response = await callback({
+ event,
+ request,
+ response
+ });
+ }
+ return response;
+ }
+ async _awaitComplete(responseDone, handler, request, event) {
+ let response;
+ let error;
+ try {
+ response = await responseDone;
+ } catch (error) {
+ // Ignore errors, as response errors should be caught via the `response`
+ // promise above. The `done` promise will only throw for errors in
+ // promises passed to `handler.waitUntil()`.
+ }
+ try {
+ await handler.runCallbacks('handlerDidRespond', {
+ event,
+ request,
+ response
+ });
+ await handler.doneWaiting();
+ } catch (waitUntilError) {
+ if (waitUntilError instanceof Error) {
+ error = waitUntilError;
+ }
+ }
+ await handler.runCallbacks('handlerDidComplete', {
+ event,
+ request,
+ response,
+ error: error
+ });
+ handler.destroy();
+ if (error) {
+ throw error;
+ }
+ }
+ }
+ /**
+ * Classes extending the `Strategy` based class should implement this method,
+ * and leverage the {@link workbox-strategies.StrategyHandler}
+ * arg to perform all fetching and cache logic, which will ensure all relevant
+ * cache, cache options, fetch options and plugins are used (per the current
+ * strategy instance).
+ *
+ * @name _handle
+ * @instance
+ * @abstract
+ * @function
+ * @param {Request} request
+ * @param {workbox-strategies.StrategyHandler} handler
+ * @return {Promise}
+ *
+ * @memberof workbox-strategies.Strategy
+ */
+
+ /*
+ Copyright 2020 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * A {@link workbox-strategies.Strategy} implementation
+ * specifically designed to work with
+ * {@link workbox-precaching.PrecacheController}
+ * to both cache and fetch precached assets.
+ *
+ * Note: an instance of this class is created automatically when creating a
+ * `PrecacheController`; it's generally not necessary to create this yourself.
+ *
+ * @extends workbox-strategies.Strategy
+ * @memberof workbox-precaching
+ */
+ class PrecacheStrategy extends Strategy {
+ /**
+ *
+ * @param {Object} [options]
+ * @param {string} [options.cacheName] Cache name to store and retrieve
+ * requests. Defaults to the cache names provided by
+ * {@link workbox-core.cacheNames}.
+ * @param {Array} [options.plugins] {@link https://developers.google.com/web/tools/workbox/guides/using-plugins|Plugins}
+ * to use in conjunction with this caching strategy.
+ * @param {Object} [options.fetchOptions] Values passed along to the
+ * {@link https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters|init}
+ * of all fetch() requests made by this strategy.
+ * @param {Object} [options.matchOptions] The
+ * {@link https://w3c.github.io/ServiceWorker/#dictdef-cachequeryoptions|CacheQueryOptions}
+ * for any `cache.match()` or `cache.put()` calls made by this strategy.
+ * @param {boolean} [options.fallbackToNetwork=true] Whether to attempt to
+ * get the response from the network if there's a precache miss.
+ */
+ constructor(options = {}) {
+ options.cacheName = cacheNames.getPrecacheName(options.cacheName);
+ super(options);
+ this._fallbackToNetwork = options.fallbackToNetwork === false ? false : true;
+ // Redirected responses cannot be used to satisfy a navigation request, so
+ // any redirected response must be "copied" rather than cloned, so the new
+ // response doesn't contain the `redirected` flag. See:
+ // https://bugs.chromium.org/p/chromium/issues/detail?id=669363&desc=2#c1
+ this.plugins.push(PrecacheStrategy.copyRedirectedCacheableResponsesPlugin);
+ }
+ /**
+ * @private
+ * @param {Request|string} request A request to run this strategy for.
+ * @param {workbox-strategies.StrategyHandler} handler The event that
+ * triggered the request.
+ * @return {Promise}
+ */
+ async _handle(request, handler) {
+ const response = await handler.cacheMatch(request);
+ if (response) {
+ return response;
+ }
+ // If this is an `install` event for an entry that isn't already cached,
+ // then populate the cache.
+ if (handler.event && handler.event.type === 'install') {
+ return await this._handleInstall(request, handler);
+ }
+ // Getting here means something went wrong. An entry that should have been
+ // precached wasn't found in the cache.
+ return await this._handleFetch(request, handler);
+ }
+ async _handleFetch(request, handler) {
+ let response;
+ const params = handler.params || {};
+ // Fall back to the network if we're configured to do so.
+ if (this._fallbackToNetwork) {
+ {
+ logger.warn(`The precached response for ` + `${getFriendlyURL(request.url)} in ${this.cacheName} was not ` + `found. Falling back to the network.`);
+ }
+ const integrityInManifest = params.integrity;
+ const integrityInRequest = request.integrity;
+ const noIntegrityConflict = !integrityInRequest || integrityInRequest === integrityInManifest;
+ // Do not add integrity if the original request is no-cors
+ // See https://github.com/GoogleChrome/workbox/issues/3096
+ response = await handler.fetch(new Request(request, {
+ integrity: request.mode !== 'no-cors' ? integrityInRequest || integrityInManifest : undefined
+ }));
+ // It's only "safe" to repair the cache if we're using SRI to guarantee
+ // that the response matches the precache manifest's expectations,
+ // and there's either a) no integrity property in the incoming request
+ // or b) there is an integrity, and it matches the precache manifest.
+ // See https://github.com/GoogleChrome/workbox/issues/2858
+ // Also if the original request users no-cors we don't use integrity.
+ // See https://github.com/GoogleChrome/workbox/issues/3096
+ if (integrityInManifest && noIntegrityConflict && request.mode !== 'no-cors') {
+ this._useDefaultCacheabilityPluginIfNeeded();
+ const wasCached = await handler.cachePut(request, response.clone());
+ {
+ if (wasCached) {
+ logger.log(`A response for ${getFriendlyURL(request.url)} ` + `was used to "repair" the precache.`);
+ }
+ }
+ }
+ } else {
+ // This shouldn't normally happen, but there are edge cases:
+ // https://github.com/GoogleChrome/workbox/issues/1441
+ throw new WorkboxError('missing-precache-entry', {
+ cacheName: this.cacheName,
+ url: request.url
+ });
+ }
+ {
+ const cacheKey = params.cacheKey || (await handler.getCacheKey(request, 'read'));
+ // Workbox is going to handle the route.
+ // print the routing details to the console.
+ logger.groupCollapsed(`Precaching is responding to: ` + getFriendlyURL(request.url));
+ logger.log(`Serving the precached url: ${getFriendlyURL(cacheKey instanceof Request ? cacheKey.url : cacheKey)}`);
+ logger.groupCollapsed(`View request details here.`);
+ logger.log(request);
+ logger.groupEnd();
+ logger.groupCollapsed(`View response details here.`);
+ logger.log(response);
+ logger.groupEnd();
+ logger.groupEnd();
+ }
+ return response;
+ }
+ async _handleInstall(request, handler) {
+ this._useDefaultCacheabilityPluginIfNeeded();
+ const response = await handler.fetch(request);
+ // Make sure we defer cachePut() until after we know the response
+ // should be cached; see https://github.com/GoogleChrome/workbox/issues/2737
+ const wasCached = await handler.cachePut(request, response.clone());
+ if (!wasCached) {
+ // Throwing here will lead to the `install` handler failing, which
+ // we want to do if *any* of the responses aren't safe to cache.
+ throw new WorkboxError('bad-precaching-response', {
+ url: request.url,
+ status: response.status
+ });
+ }
+ return response;
+ }
+ /**
+ * This method is complex, as there a number of things to account for:
+ *
+ * The `plugins` array can be set at construction, and/or it might be added to
+ * to at any time before the strategy is used.
+ *
+ * At the time the strategy is used (i.e. during an `install` event), there
+ * needs to be at least one plugin that implements `cacheWillUpdate` in the
+ * array, other than `copyRedirectedCacheableResponsesPlugin`.
+ *
+ * - If this method is called and there are no suitable `cacheWillUpdate`
+ * plugins, we need to add `defaultPrecacheCacheabilityPlugin`.
+ *
+ * - If this method is called and there is exactly one `cacheWillUpdate`, then
+ * we don't have to do anything (this might be a previously added
+ * `defaultPrecacheCacheabilityPlugin`, or it might be a custom plugin).
+ *
+ * - If this method is called and there is more than one `cacheWillUpdate`,
+ * then we need to check if one is `defaultPrecacheCacheabilityPlugin`. If so,
+ * we need to remove it. (This situation is unlikely, but it could happen if
+ * the strategy is used multiple times, the first without a `cacheWillUpdate`,
+ * and then later on after manually adding a custom `cacheWillUpdate`.)
+ *
+ * See https://github.com/GoogleChrome/workbox/issues/2737 for more context.
+ *
+ * @private
+ */
+ _useDefaultCacheabilityPluginIfNeeded() {
+ let defaultPluginIndex = null;
+ let cacheWillUpdatePluginCount = 0;
+ for (const [index, plugin] of this.plugins.entries()) {
+ // Ignore the copy redirected plugin when determining what to do.
+ if (plugin === PrecacheStrategy.copyRedirectedCacheableResponsesPlugin) {
+ continue;
+ }
+ // Save the default plugin's index, in case it needs to be removed.
+ if (plugin === PrecacheStrategy.defaultPrecacheCacheabilityPlugin) {
+ defaultPluginIndex = index;
+ }
+ if (plugin.cacheWillUpdate) {
+ cacheWillUpdatePluginCount++;
+ }
+ }
+ if (cacheWillUpdatePluginCount === 0) {
+ this.plugins.push(PrecacheStrategy.defaultPrecacheCacheabilityPlugin);
+ } else if (cacheWillUpdatePluginCount > 1 && defaultPluginIndex !== null) {
+ // Only remove the default plugin; multiple custom plugins are allowed.
+ this.plugins.splice(defaultPluginIndex, 1);
+ }
+ // Nothing needs to be done if cacheWillUpdatePluginCount is 1
+ }
+ }
+ PrecacheStrategy.defaultPrecacheCacheabilityPlugin = {
+ async cacheWillUpdate({
+ response
+ }) {
+ if (!response || response.status >= 400) {
+ return null;
+ }
+ return response;
+ }
+ };
+ PrecacheStrategy.copyRedirectedCacheableResponsesPlugin = {
+ async cacheWillUpdate({
+ response
+ }) {
+ return response.redirected ? await copyResponse(response) : response;
+ }
+ };
+
+ /*
+ Copyright 2019 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * Performs efficient precaching of assets.
+ *
+ * @memberof workbox-precaching
+ */
+ class PrecacheController {
+ /**
+ * Create a new PrecacheController.
+ *
+ * @param {Object} [options]
+ * @param {string} [options.cacheName] The cache to use for precaching.
+ * @param {string} [options.plugins] Plugins to use when precaching as well
+ * as responding to fetch events for precached assets.
+ * @param {boolean} [options.fallbackToNetwork=true] Whether to attempt to
+ * get the response from the network if there's a precache miss.
+ */
+ constructor({
+ cacheName,
+ plugins = [],
+ fallbackToNetwork = true
+ } = {}) {
+ this._urlsToCacheKeys = new Map();
+ this._urlsToCacheModes = new Map();
+ this._cacheKeysToIntegrities = new Map();
+ this._strategy = new PrecacheStrategy({
+ cacheName: cacheNames.getPrecacheName(cacheName),
+ plugins: [...plugins, new PrecacheCacheKeyPlugin({
+ precacheController: this
+ })],
+ fallbackToNetwork
+ });
+ // Bind the install and activate methods to the instance.
+ this.install = this.install.bind(this);
+ this.activate = this.activate.bind(this);
+ }
+ /**
+ * @type {workbox-precaching.PrecacheStrategy} The strategy created by this controller and
+ * used to cache assets and respond to fetch events.
+ */
+ get strategy() {
+ return this._strategy;
+ }
+ /**
+ * Adds items to the precache list, removing any duplicates and
+ * stores the files in the
+ * {@link workbox-core.cacheNames|"precache cache"} when the service
+ * worker installs.
+ *
+ * This method can be called multiple times.
+ *
+ * @param {Array} [entries=[]] Array of entries to precache.
+ */
+ precache(entries) {
+ this.addToCacheList(entries);
+ if (!this._installAndActiveListenersAdded) {
+ self.addEventListener('install', this.install);
+ self.addEventListener('activate', this.activate);
+ this._installAndActiveListenersAdded = true;
+ }
+ }
+ /**
+ * This method will add items to the precache list, removing duplicates
+ * and ensuring the information is valid.
+ *
+ * @param {Array} entries
+ * Array of entries to precache.
+ */
+ addToCacheList(entries) {
+ {
+ finalAssertExports.isArray(entries, {
+ moduleName: 'workbox-precaching',
+ className: 'PrecacheController',
+ funcName: 'addToCacheList',
+ paramName: 'entries'
+ });
+ }
+ const urlsToWarnAbout = [];
+ for (const entry of entries) {
+ // See https://github.com/GoogleChrome/workbox/issues/2259
+ if (typeof entry === 'string') {
+ urlsToWarnAbout.push(entry);
+ } else if (entry && entry.revision === undefined) {
+ urlsToWarnAbout.push(entry.url);
+ }
+ const {
+ cacheKey,
+ url
+ } = createCacheKey(entry);
+ const cacheMode = typeof entry !== 'string' && entry.revision ? 'reload' : 'default';
+ if (this._urlsToCacheKeys.has(url) && this._urlsToCacheKeys.get(url) !== cacheKey) {
+ throw new WorkboxError('add-to-cache-list-conflicting-entries', {
+ firstEntry: this._urlsToCacheKeys.get(url),
+ secondEntry: cacheKey
+ });
+ }
+ if (typeof entry !== 'string' && entry.integrity) {
+ if (this._cacheKeysToIntegrities.has(cacheKey) && this._cacheKeysToIntegrities.get(cacheKey) !== entry.integrity) {
+ throw new WorkboxError('add-to-cache-list-conflicting-integrities', {
+ url
+ });
+ }
+ this._cacheKeysToIntegrities.set(cacheKey, entry.integrity);
+ }
+ this._urlsToCacheKeys.set(url, cacheKey);
+ this._urlsToCacheModes.set(url, cacheMode);
+ if (urlsToWarnAbout.length > 0) {
+ const warningMessage = `Workbox is precaching URLs without revision ` + `info: ${urlsToWarnAbout.join(', ')}\nThis is generally NOT safe. ` + `Learn more at https://bit.ly/wb-precache`;
+ {
+ logger.warn(warningMessage);
+ }
+ }
+ }
+ }
+ /**
+ * Precaches new and updated assets. Call this method from the service worker
+ * install event.
+ *
+ * Note: this method calls `event.waitUntil()` for you, so you do not need
+ * to call it yourself in your event handlers.
+ *
+ * @param {ExtendableEvent} event
+ * @return {Promise}
+ */
+ install(event) {
+ // waitUntil returns Promise
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-return
+ return waitUntil(event, async () => {
+ const installReportPlugin = new PrecacheInstallReportPlugin();
+ this.strategy.plugins.push(installReportPlugin);
+ // Cache entries one at a time.
+ // See https://github.com/GoogleChrome/workbox/issues/2528
+ for (const [url, cacheKey] of this._urlsToCacheKeys) {
+ const integrity = this._cacheKeysToIntegrities.get(cacheKey);
+ const cacheMode = this._urlsToCacheModes.get(url);
+ const request = new Request(url, {
+ integrity,
+ cache: cacheMode,
+ credentials: 'same-origin'
+ });
+ await Promise.all(this.strategy.handleAll({
+ params: {
+ cacheKey
+ },
+ request,
+ event
+ }));
+ }
+ const {
+ updatedURLs,
+ notUpdatedURLs
+ } = installReportPlugin;
+ {
+ printInstallDetails(updatedURLs, notUpdatedURLs);
+ }
+ return {
+ updatedURLs,
+ notUpdatedURLs
+ };
+ });
+ }
+ /**
+ * Deletes assets that are no longer present in the current precache manifest.
+ * Call this method from the service worker activate event.
+ *
+ * Note: this method calls `event.waitUntil()` for you, so you do not need
+ * to call it yourself in your event handlers.
+ *
+ * @param {ExtendableEvent} event
+ * @return {Promise}
+ */
+ activate(event) {
+ // waitUntil returns Promise
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-return
+ return waitUntil(event, async () => {
+ const cache = await self.caches.open(this.strategy.cacheName);
+ const currentlyCachedRequests = await cache.keys();
+ const expectedCacheKeys = new Set(this._urlsToCacheKeys.values());
+ const deletedURLs = [];
+ for (const request of currentlyCachedRequests) {
+ if (!expectedCacheKeys.has(request.url)) {
+ await cache.delete(request);
+ deletedURLs.push(request.url);
+ }
+ }
+ {
+ printCleanupDetails(deletedURLs);
+ }
+ return {
+ deletedURLs
+ };
+ });
+ }
+ /**
+ * Returns a mapping of a precached URL to the corresponding cache key, taking
+ * into account the revision information for the URL.
+ *
+ * @return {Map} A URL to cache key mapping.
+ */
+ getURLsToCacheKeys() {
+ return this._urlsToCacheKeys;
+ }
+ /**
+ * Returns a list of all the URLs that have been precached by the current
+ * service worker.
+ *
+ * @return {Array} The precached URLs.
+ */
+ getCachedURLs() {
+ return [...this._urlsToCacheKeys.keys()];
+ }
+ /**
+ * Returns the cache key used for storing a given URL. If that URL is
+ * unversioned, like `/index.html', then the cache key will be the original
+ * URL with a search parameter appended to it.
+ *
+ * @param {string} url A URL whose cache key you want to look up.
+ * @return {string} The versioned URL that corresponds to a cache key
+ * for the original URL, or undefined if that URL isn't precached.
+ */
+ getCacheKeyForURL(url) {
+ const urlObject = new URL(url, location.href);
+ return this._urlsToCacheKeys.get(urlObject.href);
+ }
+ /**
+ * @param {string} url A cache key whose SRI you want to look up.
+ * @return {string} The subresource integrity associated with the cache key,
+ * or undefined if it's not set.
+ */
+ getIntegrityForCacheKey(cacheKey) {
+ return this._cacheKeysToIntegrities.get(cacheKey);
+ }
+ /**
+ * This acts as a drop-in replacement for
+ * [`cache.match()`](https://developer.mozilla.org/en-US/docs/Web/API/Cache/match)
+ * with the following differences:
+ *
+ * - It knows what the name of the precache is, and only checks in that cache.
+ * - It allows you to pass in an "original" URL without versioning parameters,
+ * and it will automatically look up the correct cache key for the currently
+ * active revision of that URL.
+ *
+ * E.g., `matchPrecache('index.html')` will find the correct precached
+ * response for the currently active service worker, even if the actual cache
+ * key is `'/index.html?__WB_REVISION__=1234abcd'`.
+ *
+ * @param {string|Request} request The key (without revisioning parameters)
+ * to look up in the precache.
+ * @return {Promise}
+ */
+ async matchPrecache(request) {
+ const url = request instanceof Request ? request.url : request;
+ const cacheKey = this.getCacheKeyForURL(url);
+ if (cacheKey) {
+ const cache = await self.caches.open(this.strategy.cacheName);
+ return cache.match(cacheKey);
+ }
+ return undefined;
+ }
+ /**
+ * Returns a function that looks up `url` in the precache (taking into
+ * account revision information), and returns the corresponding `Response`.
+ *
+ * @param {string} url The precached URL which will be used to lookup the
+ * `Response`.
+ * @return {workbox-routing~handlerCallback}
+ */
+ createHandlerBoundToURL(url) {
+ const cacheKey = this.getCacheKeyForURL(url);
+ if (!cacheKey) {
+ throw new WorkboxError('non-precached-url', {
+ url
+ });
+ }
+ return options => {
+ options.request = new Request(url);
+ options.params = Object.assign({
+ cacheKey
+ }, options.params);
+ return this.strategy.handle(options);
+ };
+ }
+ }
+
+ /*
+ Copyright 2019 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ let precacheController;
+ /**
+ * @return {PrecacheController}
+ * @private
+ */
+ const getOrCreatePrecacheController = () => {
+ if (!precacheController) {
+ precacheController = new PrecacheController();
+ }
+ return precacheController;
+ };
+
+ /*
+ Copyright 2018 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * Removes any URL search parameters that should be ignored.
+ *
+ * @param {URL} urlObject The original URL.
+ * @param {Array} ignoreURLParametersMatching RegExps to test against
+ * each search parameter name. Matches mean that the search parameter should be
+ * ignored.
+ * @return {URL} The URL with any ignored search parameters removed.
+ *
+ * @private
+ * @memberof workbox-precaching
+ */
+ function removeIgnoredSearchParams(urlObject, ignoreURLParametersMatching = []) {
+ // Convert the iterable into an array at the start of the loop to make sure
+ // deletion doesn't mess up iteration.
+ for (const paramName of [...urlObject.searchParams.keys()]) {
+ if (ignoreURLParametersMatching.some(regExp => regExp.test(paramName))) {
+ urlObject.searchParams.delete(paramName);
+ }
+ }
+ return urlObject;
+ }
+
+ /*
+ Copyright 2019 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * Generator function that yields possible variations on the original URL to
+ * check, one at a time.
+ *
+ * @param {string} url
+ * @param {Object} options
+ *
+ * @private
+ * @memberof workbox-precaching
+ */
+ function* generateURLVariations(url, {
+ ignoreURLParametersMatching = [/^utm_/, /^fbclid$/],
+ directoryIndex = 'index.html',
+ cleanURLs = true,
+ urlManipulation
+ } = {}) {
+ const urlObject = new URL(url, location.href);
+ urlObject.hash = '';
+ yield urlObject.href;
+ const urlWithoutIgnoredParams = removeIgnoredSearchParams(urlObject, ignoreURLParametersMatching);
+ yield urlWithoutIgnoredParams.href;
+ if (directoryIndex && urlWithoutIgnoredParams.pathname.endsWith('/')) {
+ const directoryURL = new URL(urlWithoutIgnoredParams.href);
+ directoryURL.pathname += directoryIndex;
+ yield directoryURL.href;
+ }
+ if (cleanURLs) {
+ const cleanURL = new URL(urlWithoutIgnoredParams.href);
+ cleanURL.pathname += '.html';
+ yield cleanURL.href;
+ }
+ if (urlManipulation) {
+ const additionalURLs = urlManipulation({
+ url: urlObject
+ });
+ for (const urlToAttempt of additionalURLs) {
+ yield urlToAttempt.href;
+ }
+ }
+ }
+
+ /*
+ Copyright 2020 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * A subclass of {@link workbox-routing.Route} that takes a
+ * {@link workbox-precaching.PrecacheController}
+ * instance and uses it to match incoming requests and handle fetching
+ * responses from the precache.
+ *
+ * @memberof workbox-precaching
+ * @extends workbox-routing.Route
+ */
+ class PrecacheRoute extends Route {
+ /**
+ * @param {PrecacheController} precacheController A `PrecacheController`
+ * instance used to both match requests and respond to fetch events.
+ * @param {Object} [options] Options to control how requests are matched
+ * against the list of precached URLs.
+ * @param {string} [options.directoryIndex=index.html] The `directoryIndex` will
+ * check cache entries for a URLs ending with '/' to see if there is a hit when
+ * appending the `directoryIndex` value.
+ * @param {Array} [options.ignoreURLParametersMatching=[/^utm_/, /^fbclid$/]] An
+ * array of regex's to remove search params when looking for a cache match.
+ * @param {boolean} [options.cleanURLs=true] The `cleanURLs` option will
+ * check the cache for the URL with a `.html` added to the end of the end.
+ * @param {workbox-precaching~urlManipulation} [options.urlManipulation]
+ * This is a function that should take a URL and return an array of
+ * alternative URLs that should be checked for precache matches.
+ */
+ constructor(precacheController, options) {
+ const match = ({
+ request
+ }) => {
+ const urlsToCacheKeys = precacheController.getURLsToCacheKeys();
+ for (const possibleURL of generateURLVariations(request.url, options)) {
+ const cacheKey = urlsToCacheKeys.get(possibleURL);
+ if (cacheKey) {
+ const integrity = precacheController.getIntegrityForCacheKey(cacheKey);
+ return {
+ cacheKey,
+ integrity
+ };
+ }
+ }
+ {
+ logger.debug(`Precaching did not find a match for ` + getFriendlyURL(request.url));
+ }
+ return;
+ };
+ super(match, precacheController.strategy);
+ }
+ }
+
+ /*
+ Copyright 2019 Google LLC
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * Add a `fetch` listener to the service worker that will
+ * respond to
+ * [network requests]{@link https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API/Using_Service_Workers#Custom_responses_to_requests}
+ * with precached assets.
+ *
+ * Requests for assets that aren't precached, the `FetchEvent` will not be
+ * responded to, allowing the event to fall through to other `fetch` event
+ * listeners.
+ *
+ * @param {Object} [options] See the {@link workbox-precaching.PrecacheRoute}
+ * options.
+ *
+ * @memberof workbox-precaching
+ */
+ function addRoute(options) {
+ const precacheController = getOrCreatePrecacheController();
+ const precacheRoute = new PrecacheRoute(precacheController, options);
+ registerRoute(precacheRoute);
+ }
+
+ /*
+ Copyright 2019 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * Adds items to the precache list, removing any duplicates and
+ * stores the files in the
+ * {@link workbox-core.cacheNames|"precache cache"} when the service
+ * worker installs.
+ *
+ * This method can be called multiple times.
+ *
+ * Please note: This method **will not** serve any of the cached files for you.
+ * It only precaches files. To respond to a network request you call
+ * {@link workbox-precaching.addRoute}.
+ *
+ * If you have a single array of files to precache, you can just call
+ * {@link workbox-precaching.precacheAndRoute}.
+ *
+ * @param {Array} [entries=[]] Array of entries to precache.
+ *
+ * @memberof workbox-precaching
+ */
+ function precache(entries) {
+ const precacheController = getOrCreatePrecacheController();
+ precacheController.precache(entries);
+ }
+
+ /*
+ Copyright 2019 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * This method will add entries to the precache list and add a route to
+ * respond to fetch events.
+ *
+ * This is a convenience method that will call
+ * {@link workbox-precaching.precache} and
+ * {@link workbox-precaching.addRoute} in a single call.
+ *
+ * @param {Array} entries Array of entries to precache.
+ * @param {Object} [options] See the
+ * {@link workbox-precaching.PrecacheRoute} options.
+ *
+ * @memberof workbox-precaching
+ */
+ function precacheAndRoute(entries, options) {
+ precache(entries);
+ addRoute(options);
+ }
+
+ /*
+ Copyright 2018 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ const SUBSTRING_TO_FIND = '-precache-';
+ /**
+ * Cleans up incompatible precaches that were created by older versions of
+ * Workbox, by a service worker registered under the current scope.
+ *
+ * This is meant to be called as part of the `activate` event.
+ *
+ * This should be safe to use as long as you don't include `substringToFind`
+ * (defaulting to `-precache-`) in your non-precache cache names.
+ *
+ * @param {string} currentPrecacheName The cache name currently in use for
+ * precaching. This cache won't be deleted.
+ * @param {string} [substringToFind='-precache-'] Cache names which include this
+ * substring will be deleted (excluding `currentPrecacheName`).
+ * @return {Array} A list of all the cache names that were deleted.
+ *
+ * @private
+ * @memberof workbox-precaching
+ */
+ const deleteOutdatedCaches = async (currentPrecacheName, substringToFind = SUBSTRING_TO_FIND) => {
+ const cacheNames = await self.caches.keys();
+ const cacheNamesToDelete = cacheNames.filter(cacheName => {
+ return cacheName.includes(substringToFind) && cacheName.includes(self.registration.scope) && cacheName !== currentPrecacheName;
+ });
+ await Promise.all(cacheNamesToDelete.map(cacheName => self.caches.delete(cacheName)));
+ return cacheNamesToDelete;
+ };
+
+ /*
+ Copyright 2019 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * Adds an `activate` event listener which will clean up incompatible
+ * precaches that were created by older versions of Workbox.
+ *
+ * @memberof workbox-precaching
+ */
+ function cleanupOutdatedCaches() {
+ // See https://github.com/Microsoft/TypeScript/issues/28357#issuecomment-436484705
+ self.addEventListener('activate', event => {
+ const cacheName = cacheNames.getPrecacheName();
+ event.waitUntil(deleteOutdatedCaches(cacheName).then(cachesDeleted => {
+ {
+ if (cachesDeleted.length > 0) {
+ logger.log(`The following out-of-date precaches were cleaned up ` + `automatically:`, cachesDeleted);
+ }
+ }
+ }));
+ });
+ }
+
+ /*
+ Copyright 2018 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * NavigationRoute makes it easy to create a
+ * {@link workbox-routing.Route} that matches for browser
+ * [navigation requests]{@link https://developers.google.com/web/fundamentals/primers/service-workers/high-performance-loading#first_what_are_navigation_requests}.
+ *
+ * It will only match incoming Requests whose
+ * {@link https://fetch.spec.whatwg.org/#concept-request-mode|mode}
+ * is set to `navigate`.
+ *
+ * You can optionally only apply this route to a subset of navigation requests
+ * by using one or both of the `denylist` and `allowlist` parameters.
+ *
+ * @memberof workbox-routing
+ * @extends workbox-routing.Route
+ */
+ class NavigationRoute extends Route {
+ /**
+ * If both `denylist` and `allowlist` are provided, the `denylist` will
+ * take precedence and the request will not match this route.
+ *
+ * The regular expressions in `allowlist` and `denylist`
+ * are matched against the concatenated
+ * [`pathname`]{@link https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/pathname}
+ * and [`search`]{@link https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/search}
+ * portions of the requested URL.
+ *
+ * *Note*: These RegExps may be evaluated against every destination URL during
+ * a navigation. Avoid using
+ * [complex RegExps](https://github.com/GoogleChrome/workbox/issues/3077),
+ * or else your users may see delays when navigating your site.
+ *
+ * @param {workbox-routing~handlerCallback} handler A callback
+ * function that returns a Promise resulting in a Response.
+ * @param {Object} options
+ * @param {Array} [options.denylist] If any of these patterns match,
+ * the route will not handle the request (even if a allowlist RegExp matches).
+ * @param {Array} [options.allowlist=[/./]] If any of these patterns
+ * match the URL's pathname and search parameter, the route will handle the
+ * request (assuming the denylist doesn't match).
+ */
+ constructor(handler, {
+ allowlist = [/./],
+ denylist = []
+ } = {}) {
+ {
+ finalAssertExports.isArrayOfClass(allowlist, RegExp, {
+ moduleName: 'workbox-routing',
+ className: 'NavigationRoute',
+ funcName: 'constructor',
+ paramName: 'options.allowlist'
+ });
+ finalAssertExports.isArrayOfClass(denylist, RegExp, {
+ moduleName: 'workbox-routing',
+ className: 'NavigationRoute',
+ funcName: 'constructor',
+ paramName: 'options.denylist'
+ });
+ }
+ super(options => this._match(options), handler);
+ this._allowlist = allowlist;
+ this._denylist = denylist;
+ }
+ /**
+ * Routes match handler.
+ *
+ * @param {Object} options
+ * @param {URL} options.url
+ * @param {Request} options.request
+ * @return {boolean}
+ *
+ * @private
+ */
+ _match({
+ url,
+ request
+ }) {
+ if (request && request.mode !== 'navigate') {
+ return false;
+ }
+ const pathnameAndSearch = url.pathname + url.search;
+ for (const regExp of this._denylist) {
+ if (regExp.test(pathnameAndSearch)) {
+ {
+ logger.log(`The navigation route ${pathnameAndSearch} is not ` + `being used, since the URL matches this denylist pattern: ` + `${regExp.toString()}`);
+ }
+ return false;
+ }
+ }
+ if (this._allowlist.some(regExp => regExp.test(pathnameAndSearch))) {
+ {
+ logger.debug(`The navigation route ${pathnameAndSearch} ` + `is being used.`);
+ }
+ return true;
+ }
+ {
+ logger.log(`The navigation route ${pathnameAndSearch} is not ` + `being used, since the URL being navigated to doesn't ` + `match the allowlist.`);
+ }
+ return false;
+ }
+ }
+
+ /*
+ Copyright 2019 Google LLC
+
+ Use of this source code is governed by an MIT-style
+ license that can be found in the LICENSE file or at
+ https://opensource.org/licenses/MIT.
+ */
+ /**
+ * Helper function that calls
+ * {@link PrecacheController#createHandlerBoundToURL} on the default
+ * {@link PrecacheController} instance.
+ *
+ * If you are creating your own {@link PrecacheController}, then call the
+ * {@link PrecacheController#createHandlerBoundToURL} on that instance,
+ * instead of using this function.
+ *
+ * @param {string} url The precached URL which will be used to lookup the
+ * `Response`.
+ * @param {boolean} [fallbackToNetwork=true] Whether to attempt to get the
+ * response from the network if there's a precache miss.
+ * @return {workbox-routing~handlerCallback}
+ *
+ * @memberof workbox-precaching
+ */
+ function createHandlerBoundToURL(url) {
+ const precacheController = getOrCreatePrecacheController();
+ return precacheController.createHandlerBoundToURL(url);
+ }
+
+ exports.NavigationRoute = NavigationRoute;
+ exports.cleanupOutdatedCaches = cleanupOutdatedCaches;
+ exports.clientsClaim = clientsClaim;
+ exports.createHandlerBoundToURL = createHandlerBoundToURL;
+ exports.precacheAndRoute = precacheAndRoute;
+ exports.registerRoute = registerRoute;
+
+}));
diff --git a/packages/client/eslint.config.js b/packages/client/eslint.config.js
index 092408a..b28293c 100644
--- a/packages/client/eslint.config.js
+++ b/packages/client/eslint.config.js
@@ -1,28 +1,34 @@
-import js from '@eslint/js'
-import globals from 'globals'
-import reactHooks from 'eslint-plugin-react-hooks'
-import reactRefresh from 'eslint-plugin-react-refresh'
-import tseslint from 'typescript-eslint'
+import js from "@eslint/js";
+import globals from "globals";
+import reactHooks from "eslint-plugin-react-hooks";
+import reactRefresh from "eslint-plugin-react-refresh";
+import reactQuery from "@tanstack/eslint-plugin-query";
+import tseslint from "typescript-eslint";
export default tseslint.config(
- { ignores: ['dist'] },
+ { ignores: ["dist"] },
{
- extends: [js.configs.recommended, ...tseslint.configs.recommended],
- files: ['**/*.{ts,tsx}'],
+ extends: [
+ js.configs.recommended,
+ ...tseslint.configs.recommended,
+ "plugin:@tanstack/eslint-plugin-query/recommended",
+ ],
+ files: ["**/*.{ts,tsx}"],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
plugins: {
- 'react-hooks': reactHooks,
- 'react-refresh': reactRefresh,
+ "react-hooks": reactHooks,
+ "react-refresh": reactRefresh,
+ "@tanstack/query": reactQuery,
},
rules: {
...reactHooks.configs.recommended.rules,
- 'react-refresh/only-export-components': [
- 'warn',
+ "react-refresh/only-export-components": [
+ "warn",
{ allowConstantExport: true },
],
},
- },
-)
+ }
+);
diff --git a/packages/client/graphql.config.yml b/packages/client/graphql.config.yml
new file mode 100644
index 0000000..409f53a
--- /dev/null
+++ b/packages/client/graphql.config.yml
@@ -0,0 +1,3 @@
+schema:
+ - https://sepolia.easscan.org/graphql
+documents: '**/*.graphql'
diff --git a/packages/client/index.html b/packages/client/index.html
index 0c12346..3177631 100644
--- a/packages/client/index.html
+++ b/packages/client/index.html
@@ -2,12 +2,80 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Green Goods
-
-
+
+
diff --git a/packages/client/package.json b/packages/client/package.json
index 1dbf11d..9142ca8 100644
--- a/packages/client/package.json
+++ b/packages/client/package.json
@@ -10,24 +10,41 @@
"preview": "vite preview"
},
"dependencies": {
+ "@hookform/resolvers": "3.9.0",
+ "@phosphor-icons/react": "2.1.7",
"@privy-io/react-auth": "^1.80.0",
- "lucide-react": "0.436.0",
+ "@privy-io/server-auth": "1.11.1",
+ "@remixicon/react": "^4.2.0",
+ "@tanstack/react-query": "^5.52.2",
+ "@urql/core": "^5.0.4",
+ "@vercel/functions": "1.4.1",
+ "gql.tada": "^1.8.2",
"permissionless": "^0.1.45",
+ "pinata": "^0.4.0",
"react": "^18.3.1",
+ "react-device-frameset": "1.3.4",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
- "react-hot-toast": "2.4.1",
- "react-router-dom": "6.26.1",
- "xstate": "^5.17.4",
+ "react-hot-toast": "^2.4.1",
+ "react-intl": "6.6.8",
+ "react-router-dom": "^6.26.1",
+ "react-select": "5.8.0",
+ "react-tailwindcss-datepicker": "^1.7.2",
"zod": "^3.23.8"
},
"devDependencies": {
+ "@0no-co/graphqlsp": "^1.12.12",
+ "daisyui": "4.12.10",
"@eslint/js": "^9.9.0",
+ "@tanstack/eslint-plugin-query": "5.52.0",
+ "@tailwindcss/forms": "^0.5.7",
+ "@tailwindcss/typography": "0.5.15",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
+ "@vercel/node": "3.2.10",
"@vitejs/plugin-react": "^4.3.1",
- "@xstate/react": "^4.1.1",
"autoprefixer": "^10.4.20",
+ "dotenv-expand": "11.0.6",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
@@ -35,10 +52,10 @@
"postcss": "^8.4.41",
"tailwindcss": "^3.4.10",
"tailwindcss-animate": "^1.0.7",
+ "typescript": "^5.5.4",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.1",
"vite-plugin-mkcert": "^1.17.5",
- "vite-plugin-pwa": "^0.20.1",
- "vite-plugin-svgr": "^4.2.0"
+ "vite-plugin-pwa": "^0.20.1"
}
}
diff --git a/packages/client/public/apple-icon.png b/packages/client/public/apple-icon.png
new file mode 100644
index 0000000..7196aa0
Binary files /dev/null and b/packages/client/public/apple-icon.png differ
diff --git a/packages/client/public/favicon.ico b/packages/client/public/favicon.ico
new file mode 100644
index 0000000..4a88d1b
Binary files /dev/null and b/packages/client/public/favicon.ico differ
diff --git a/packages/client/public/icon.png b/packages/client/public/icon.png
new file mode 100644
index 0000000..42268d6
Binary files /dev/null and b/packages/client/public/icon.png differ
diff --git a/packages/client/public/images/android-icon-144x144.png b/packages/client/public/images/android-icon-144x144.png
new file mode 100644
index 0000000..53d9d1c
Binary files /dev/null and b/packages/client/public/images/android-icon-144x144.png differ
diff --git a/packages/client/public/images/android-icon-36x36.png b/packages/client/public/images/android-icon-36x36.png
new file mode 100644
index 0000000..ebe6eea
Binary files /dev/null and b/packages/client/public/images/android-icon-36x36.png differ
diff --git a/packages/client/public/images/android-icon-48x48.png b/packages/client/public/images/android-icon-48x48.png
new file mode 100644
index 0000000..a334cc5
Binary files /dev/null and b/packages/client/public/images/android-icon-48x48.png differ
diff --git a/packages/client/public/images/android-icon-72x72.png b/packages/client/public/images/android-icon-72x72.png
new file mode 100644
index 0000000..46f0a59
Binary files /dev/null and b/packages/client/public/images/android-icon-72x72.png differ
diff --git a/packages/client/public/images/app-mock.png b/packages/client/public/images/app-mock.png
new file mode 100644
index 0000000..0ff419d
Binary files /dev/null and b/packages/client/public/images/app-mock.png differ
diff --git a/packages/client/public/images/apple-icon-120x120.png b/packages/client/public/images/apple-icon-120x120.png
new file mode 100644
index 0000000..dcf3c97
Binary files /dev/null and b/packages/client/public/images/apple-icon-120x120.png differ
diff --git a/packages/client/public/images/apple-icon-144x144.png b/packages/client/public/images/apple-icon-144x144.png
new file mode 100644
index 0000000..53d9d1c
Binary files /dev/null and b/packages/client/public/images/apple-icon-144x144.png differ
diff --git a/packages/client/public/images/apple-icon-57x57.png b/packages/client/public/images/apple-icon-57x57.png
new file mode 100644
index 0000000..9c79ff6
Binary files /dev/null and b/packages/client/public/images/apple-icon-57x57.png differ
diff --git a/packages/client/public/images/apple-icon-60x60.png b/packages/client/public/images/apple-icon-60x60.png
new file mode 100644
index 0000000..a7539aa
Binary files /dev/null and b/packages/client/public/images/apple-icon-60x60.png differ
diff --git a/packages/client/public/images/apple-icon-72x72.png b/packages/client/public/images/apple-icon-72x72.png
new file mode 100644
index 0000000..46f0a59
Binary files /dev/null and b/packages/client/public/images/apple-icon-72x72.png differ
diff --git a/packages/client/public/images/avatar.png b/packages/client/public/images/avatar.png
new file mode 100644
index 0000000..f15e8b3
Binary files /dev/null and b/packages/client/public/images/avatar.png differ
diff --git a/packages/client/public/images/ms-icon-144x144.png b/packages/client/public/images/ms-icon-144x144.png
new file mode 100644
index 0000000..53d9d1c
Binary files /dev/null and b/packages/client/public/images/ms-icon-144x144.png differ
diff --git a/packages/client/public/images/ms-icon-310x310.png b/packages/client/public/images/ms-icon-310x310.png
new file mode 100644
index 0000000..9196760
Binary files /dev/null and b/packages/client/public/images/ms-icon-310x310.png differ
diff --git a/packages/client/public/images/ms-icon-70x70.png b/packages/client/public/images/ms-icon-70x70.png
new file mode 100644
index 0000000..7a10100
Binary files /dev/null and b/packages/client/public/images/ms-icon-70x70.png differ
diff --git a/packages/client/public/social-image.png b/packages/client/public/social-image.png
new file mode 100644
index 0000000..b4a1195
Binary files /dev/null and b/packages/client/public/social-image.png differ
diff --git a/packages/client/public/vite.svg b/packages/client/public/vite.svg
deleted file mode 100644
index e7b8dfb..0000000
--- a/packages/client/public/vite.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/packages/client/src/App.tsx b/packages/client/src/App.tsx
index 6fb5ffc..8a8617a 100644
--- a/packages/client/src/App.tsx
+++ b/packages/client/src/App.tsx
@@ -1,32 +1,71 @@
-import { useState } from "react";
import { usePrivy } from "@privy-io/react-auth";
+import { QueryClientProvider } from "@tanstack/react-query";
+import { Route, Routes, Navigate, BrowserRouter } from "react-router-dom";
-import viteLogo from "/vite.svg";
+import { queryClient } from "@/modules/react-query";
+
+import { WorkProvider } from "@/providers/WorkProvider";
+import { GardenProvider } from "@/providers/GardenProvider";
+
+import { usePWA } from "@/providers/PWAProvider";
+import { useUser } from "@/providers/UserProvider";
+
+import Views from "@/views";
+import Login from "@/views/Login";
+import Landing from "@/views/Landing";
+import { Appbar } from "@/components/Layout/AppBar";
function App() {
- const [count, setCount] = useState(0);
+ const { authenticated } = usePrivy();
+ const { isMobile, isInstalled, locale } = usePWA();
+ const { smartAccountReady } = useUser();
+
+ console.log("PWA", isMobile, isInstalled, locale);
- const { login, logout } = usePrivy();
+ const isDownloaded = isMobile;
+ const isAuthenticated = authenticated && smartAccountReady;
return (
- <>
-
- Vite + React
-
-
setCount((count) => count + 1)}>
- count is {count}
-
-
- Edit src/App.tsx
and save to test HMR
-
-
Login
-
Logout
-
- >
+
+
+
+ {/* Landing */}
+ : }
+ />
+ {/* Login */}
+
+ :
+ :
+ }
+ />
+ {/* Main: Show app or navigate to login, onboarding, or landing page based on conditions */}
+
+
+
+
+
+
+ :
+ :
+ }
+ />
+ {/* Catch-all: Redirect to the appropriate place */}
+ {/* } /> */}
+
+
+
);
}
diff --git a/packages/client/src/components/AppBar.tsx b/packages/client/src/components/AppBar.tsx
deleted file mode 100644
index 57ff76f..0000000
--- a/packages/client/src/components/AppBar.tsx
+++ /dev/null
@@ -1,80 +0,0 @@
-import { Link, useLocation } from "react-router-dom";
-// import { a, config, useSpring } from "@react-spring/web";
-
-import { HomeIcon, PlusIcon, CircleUserRoundIcon } from "lucide-react";
-
-const tabs: {
- path: string;
- title: string;
- Icon: React.FunctionComponent<
- React.SVGProps & {
- title?: string | undefined;
- }
- >;
-}[] = [
- {
- path: "/home",
- title: "Home",
- Icon: HomeIcon,
- },
- {
- path: "/contribute",
- title: "Contribute",
- Icon: PlusIcon,
- },
- {
- path: "/profile",
- title: "Profile",
- Icon: CircleUserRoundIcon,
- },
-];
-
-export const Appbar = () => {
- const { pathname } = useLocation();
-
- // const spring = useSpring({
- // from: {
- // opacity: 0,
- // transform: "translateY(100%)",
- // },
- // to: {
- // opacity: 1,
- // transform: "translateY(0)",
- // },
- // config: {
- // ...config.slow,
- // friction: 48,
- // clamp: true,
- // },
- // });
-
- return (
-
- {tabs.map(({ path, Icon, title }) => (
-
-
-
-
- {title}
-
-
-
- ))}
-
- );
-};
diff --git a/packages/client/src/components/Button.tsx b/packages/client/src/components/Button.tsx
index 155abf2..9dbbd1c 100644
--- a/packages/client/src/components/Button.tsx
+++ b/packages/client/src/components/Button.tsx
@@ -1,49 +1,83 @@
-import React from "react";
+import { forwardRef } from "react";
+import { RemixiconComponentType } from "@remixicon/react";
interface ButtonProps {
- title: string;
- onClick?: (e: React.MouseEvent) => void;
- full?: boolean;
- active?: boolean;
+ label: string;
+ style?: "solid" | "soft" | "outline" | "ghost";
+ variant?: "primary" | "secondary" | "tertiary";
+ size?: "small" | "medium" | "large";
+ className?: string;
+ fullWidth?: boolean;
disabled?: boolean;
- state?: "default" | "loading" | "success" | "error";
- variant?: "primary" | "secondary";
+ loading?: boolean;
+ Icon?: RemixiconComponentType;
+ type?: "button" | "submit" | "reset";
+ onClick?: () => void;
}
-export const Button: React.FC = ({
- title,
- onClick,
- full,
- // active,
- disabled,
- variant,
-}) => {
- if (variant === "secondary") {
+const sizes = {
+ small: "py-2 px-3",
+ medium: "py-3 px-4 text-xl",
+ large: "p-4 sm:p-5 text-xl",
+};
+
+const variantColors = {
+ primary: "#367D42",
+ secondary: "#D2B48C",
+ tertiary: "blue",
+};
+
+function generateStyles(variant: "primary" | "secondary" | "tertiary") {
+ return {
+ solid: `border-transparent bg-[${variantColors[variant]}] text-white hover:bg-${variantColors[variant]}-700`,
+ soft: `border-transparent bg-${variantColors[variant]}-100 text-${variantColors[variant]}-800 hover:bg-${variantColors[variant]}-200 dark:hover:bg-${variantColors[variant]}-900 dark:text-${variantColors[variant]}-500 dark:hover:text-${variantColors[variant]}-400`,
+ outline: `border-${variantColors[variant]}-500 text-${variantColors[variant]}-500 hover:border-${variantColors[variant]}-400 hover:text-${variantColors[variant]}-400 `,
+ ghost: `border-transparent text-${variantColors[variant]}-500 hover:bg-${variantColors[variant]}-100 hover:text-${variantColors[variant]}-800 dark:hover:bg-${variantColors[variant]}-800/30 dark:hover:text-${variantColors[variant]}-400`,
+ };
+}
+
+export const Button = forwardRef(
+ (
+ {
+ label,
+ style = "solid",
+ variant = "primary",
+ size = "medium",
+ className,
+ fullWidth = false,
+ disabled = false,
+ loading = false,
+ Icon,
+ ...props
+ },
+ ref
+ ) => {
+ const sizeClasses = sizes[size];
+ const styleClasses = generateStyles(variant)[style];
+
return (
-
- {title}
-
+ {label}
+ {Icon && }
+ {loading && (
+
+ )}
);
}
- return (
-
-
- {title}
-
-
- );
-};
+);
+
+Button.displayName = "Button";
diff --git a/packages/client/src/components/Footer.tsx b/packages/client/src/components/Footer.tsx
deleted file mode 100644
index e69de29..0000000
diff --git a/packages/client/src/components/Form/Date.tsx b/packages/client/src/components/Form/Date.tsx
new file mode 100644
index 0000000..a0ec981
--- /dev/null
+++ b/packages/client/src/components/Form/Date.tsx
@@ -0,0 +1,42 @@
+import Datepicker from "react-tailwindcss-datepicker";
+import { InputHTMLAttributes, forwardRef } from "react";
+
+interface FormDateProps extends InputHTMLAttributes {
+ label: string;
+ helperText?: string;
+ error?: string;
+}
+
+export const FormDate = forwardRef(
+ ({ label, helperText, error, className, ...props }, _ref) => (
+
+
+ {label}
+
+
{}}
+ inputClassName=""
+ containerClassName=""
+ toggleClassName=""
+ />
+
+ {helperText ?? error}
+
+
+ )
+);
+
+FormDate.displayName = "FormDate";
diff --git a/packages/client/src/components/Form/Info.tsx b/packages/client/src/components/Form/Info.tsx
new file mode 100644
index 0000000..069b198
--- /dev/null
+++ b/packages/client/src/components/Form/Info.tsx
@@ -0,0 +1,33 @@
+import { RemixiconComponentType } from "@remixicon/react";
+
+interface FormInfoProps {
+ title: string;
+ info: string;
+ variant?: "primary" | "secondary" | "tertiary";
+ Icon?: RemixiconComponentType;
+}
+
+const variants = {
+ primary: "bg-teal-50 border-teal-200 border-1 shadow-md",
+ secondary: "bg-green-100 text-green-700",
+ tertiary: "bg-yellow-100 text-yellow-700",
+};
+
+export const FormInfo = ({
+ title,
+ info,
+ variant = "primary",
+ ...props
+}: FormInfoProps) => {
+ const variantClasses = variants[variant];
+
+ return (
+
+ );
+};
diff --git a/packages/client/src/components/Form/Input.tsx b/packages/client/src/components/Form/Input.tsx
new file mode 100644
index 0000000..431764b
--- /dev/null
+++ b/packages/client/src/components/Form/Input.tsx
@@ -0,0 +1,33 @@
+import { InputHTMLAttributes, forwardRef } from "react";
+
+interface FormInputProps extends InputHTMLAttributes {
+ label: string;
+ helperText?: string;
+ error?: string;
+}
+
+export const FormInput = forwardRef(
+ ({ label, helperText, error, className, ...props }, ref) => (
+
+
+ {label}
+
+
+
+ {helperText ?? error}
+
+
+ )
+);
+
+FormInput.displayName = "FormInput";
diff --git a/packages/client/src/components/Form/Progress.tsx b/packages/client/src/components/Form/Progress.tsx
new file mode 100644
index 0000000..db3285e
--- /dev/null
+++ b/packages/client/src/components/Form/Progress.tsx
@@ -0,0 +1,46 @@
+import { RiCheckFill } from "@remixicon/react";
+
+interface FormProgressProps {
+ currentStep: number;
+ steps: string[];
+}
+
+export const FormProgress = ({ currentStep, steps }: FormProgressProps) => {
+ return (
+
+ {steps.map((step, index) => (
+
+
+
index + 1 ? "bg-teal-500"
+ : currentStep === index + 1 ?
+ "bg-teal-500 text-white before:absolute before:-inset-1 before:bg-teal-200 before:rounded-full before:w-13 before:h-13 before:z-[-1] before:m-auto"
+ : "bg-slate-200 text-black"
+ }
+ `}
+ >
+ {currentStep > index + 1 ?
+
+ : index + 1}
+
+
index + 1 ? "bg-teal-400" : "bg-slate-400"} ms-2 w-full h-px flex-1 group-last:hidden`}
+ >
+
+
+
+ {step}
+
+
+
+ ))}
+
+ );
+};
diff --git a/packages/client/src/components/Form/Select.tsx b/packages/client/src/components/Form/Select.tsx
new file mode 100644
index 0000000..24c889f
--- /dev/null
+++ b/packages/client/src/components/Form/Select.tsx
@@ -0,0 +1,72 @@
+import "react-tailwindcss-select/dist/index.css";
+
+import Select from "react-select";
+import { forwardRef } from "react";
+import { RiCloseFill } from "@remixicon/react";
+import { Control, Controller } from "react-hook-form";
+
+interface FormSelectProps {
+ label: string;
+ placeholder: string;
+ selected: string[];
+ onRemove: (value: string) => void;
+ error?: string;
+ helperText?: string;
+ options: { label: string; value: string }[];
+ control: Control;
+}
+
+export const FormSelect = forwardRef(
+ (
+ {
+ label,
+ selected,
+ onRemove,
+ // error,
+ // helperText,
+ options,
+ control,
+ // ...props
+ },
+ _ref
+ ) => {
+ return (
+ (
+
+
+ {label}
+
+ {selected.length > 0 &&
+ selected.map((id) => (
+
+
+
+ {options.find((option) => option.value === id)?.label}
+ onRemove(id)}
+ className="h-3 ml-2 mt-2.5 cursor-pointer"
+ />
+
+
+ ))}
+
+
+ )}
+ />
+ );
+ }
+);
+
+FormSelect.displayName = "FormSelect";
diff --git a/packages/client/src/components/Form/Text.tsx b/packages/client/src/components/Form/Text.tsx
new file mode 100644
index 0000000..082efe4
--- /dev/null
+++ b/packages/client/src/components/Form/Text.tsx
@@ -0,0 +1,39 @@
+import { InputHTMLAttributes, forwardRef } from "react";
+
+interface FormTextProps extends InputHTMLAttributes {
+ rows: number;
+ label: string;
+ error?: string;
+ className?: string;
+ helperText?: string;
+}
+
+export const FormText = forwardRef(
+ ({ rows, label, error, className, helperText, ...props }, ref) => {
+ return (
+
+
+ {label}
+
+
+
+ {helperText ?? error}
+
+
+ );
+ }
+);
+
+FormText.displayName = "FormText";
diff --git a/packages/client/src/components/Garden/Actions.tsx b/packages/client/src/components/Garden/Actions.tsx
new file mode 100644
index 0000000..6cfbb59
--- /dev/null
+++ b/packages/client/src/components/Garden/Actions.tsx
@@ -0,0 +1,50 @@
+import { useState } from "react";
+
+import { GardenWorkApproval } from "./WorkApproval";
+
+interface GardenActionsProps {
+ actions: Action[];
+ works: Work[];
+}
+
+export const GardenActions: React.FC = ({
+ actions,
+ works,
+}) => {
+ const [work, setWork] = useState(null);
+
+ return (
+
+
+ {actions.map((action) => (
+
+ {action.title}
+ {action.instructions}
+
+ ))}
+
+
Work
+
+ {works.map((work) => (
+ setWork(work)}>
+ {work.title}
+ {work.feedback}
+
+ ))}
+
+
setWork(null)}
+ open={!!work}
+ >
+
+ {work && }
+
+
+
+
+ );
+};
diff --git a/packages/client/src/components/Garden/Asessments.tsx b/packages/client/src/components/Garden/Asessments.tsx
new file mode 100644
index 0000000..3237ad8
--- /dev/null
+++ b/packages/client/src/components/Garden/Asessments.tsx
@@ -0,0 +1,18 @@
+interface GardenAssessmentsProps {
+ assessments: GardenAssessment[];
+}
+
+export const GardenAssessments: React.FC = ({
+ assessments,
+}) => {
+ return (
+
+ {assessments.map((assessment) => (
+
+ {assessment.tags}
+ {assessment.issues}
+
+ ))}
+
+ );
+};
diff --git a/packages/client/src/components/Garden/Gardeners.tsx b/packages/client/src/components/Garden/Gardeners.tsx
new file mode 100644
index 0000000..d369630
--- /dev/null
+++ b/packages/client/src/components/Garden/Gardeners.tsx
@@ -0,0 +1,25 @@
+import { Gardener } from "@/providers/GardenProvider";
+
+interface GardenGardenersProps {
+ gardeners: Gardener[];
+}
+
+export const GardenGardeners: React.FC = ({
+ gardeners,
+}) => {
+ return (
+
+ {gardeners.map((user) => (
+
+
+
+ {user?.email?.address || user.phone?.number || "Unknown User"}
+
+
+ ))}
+
+ );
+};
diff --git a/packages/client/src/components/Garden/WorkApproval.tsx b/packages/client/src/components/Garden/WorkApproval.tsx
new file mode 100644
index 0000000..85f14f7
--- /dev/null
+++ b/packages/client/src/components/Garden/WorkApproval.tsx
@@ -0,0 +1,103 @@
+import { z } from "zod";
+import toast from "react-hot-toast";
+import { Form, useForm } from "react-hook-form";
+import { useMutation } from "@tanstack/react-query";
+import { zodResolver } from "@hookform/resolvers/zod";
+
+import { EAS } from "@/constants";
+import { encodeWorkApprovalData } from "@/utils/eas";
+
+import { queryClient } from "@/modules/react-query";
+
+import { useUser } from "@/providers/UserProvider";
+
+import { FormInput } from "../Form/Input";
+import { Button } from "../Button";
+
+interface GardenWorkApprovalProps {
+ work: Work;
+}
+
+const workApprovalSchema = z.object({
+ actionUID: z.string(),
+ workUID: z.string(),
+ approved: z.boolean(),
+ feedback: z.string(),
+});
+
+export const GardenWorkApproval: React.FC = ({
+ work,
+}) => {
+ const { title, feedback, media } = work;
+
+ const { smartAccountClient } = useUser();
+ const { register, handleSubmit } = useForm({
+ defaultValues: {
+ actionUID: work.actionUID,
+ workUID: work.id,
+ approved: false,
+ feedback: "",
+ },
+ resolver: zodResolver(workApprovalSchema),
+ });
+
+ const workApprovalMutation = useMutation({
+ mutationFn: async (draft: WorkApprovalDraft) => {
+ if (!smartAccountClient) {
+ throw new Error("No smart account client found");
+ }
+
+ const recipient = work.gardenerAddress as `0x${string}`;
+
+ const data = encodeWorkApprovalData(draft, recipient);
+
+ const receipt = await smartAccountClient.sendTransaction({
+ to: EAS["42161"].EAS.address as `0x${string}`,
+ data,
+ });
+
+ return receipt;
+ },
+ onMutate: () => {
+ toast.loading("Approving work...");
+ },
+ onSuccess: () => {
+ toast.success("Work approved!");
+ queryClient.invalidateQueries({ queryKey: ["workApprovals"] });
+ },
+ onError: () => {
+ toast.error("Work approval failed!");
+ },
+ });
+
+ return (
+
+ );
+};
diff --git a/packages/client/src/components/Hero.tsx b/packages/client/src/components/Hero.tsx
deleted file mode 100644
index d1e3170..0000000
--- a/packages/client/src/components/Hero.tsx
+++ /dev/null
@@ -1,93 +0,0 @@
-import React, { useState } from "react";
-
-type SubscribeState = "idle" | "subscribing" | "subscribed" | "error";
-
-function wait(ms: number) {
- return new Promise((resolve) => setTimeout(resolve, ms));
-}
-
-const url =
- "https://house.us21.list-manage.com/subscribe/post-json?u=f9cd12d07ddbdbe80d68c3e28&id=792284a5e1&&c=1;f_id=00ddeae6f0";
-
-export const Hero: React.FC = () => {
- const [, setSubscribeState] = useState("idle");
- const [, setSubscribeError] = useState(null);
-
- function handleSubscribe(e: React.FormEvent) {
- e.preventDefault();
-
- setSubscribeState("subscribing");
- setSubscribeError(null);
-
- const formData = new FormData(e.currentTarget);
- const email = formData.get("email") as string;
-
- console.log(email);
-
- fetch(url + "&" + formData, {
- method: "GET",
- headers: {
- "Content-Type": "application/json",
- },
- mode: "cors",
- cache: "default",
- })
- .then((response) => response.json())
- .then((data) => {
- if (data["result"] !== "success") {
- // ERROR
- console.log(data["msg"]);
-
- setSubscribeError("Something went wrong. Please try again.");
- setSubscribeState("error");
- } else {
- // SUCCESS - Show notification
- console.log(data["msg"]);
-
- setSubscribeState("subscribed");
-
- wait(2000).then(() => {
- setSubscribeState("idle");
- });
- }
- })
- .catch((error) => {
- console.error("Error:", error);
-
- setSubscribeError(error.message);
- setSubscribeState("error");
- });
- }
-
- return (
-
-
-
-
- 📲 Visit app.campgreen.world on
- phone to install app
-
-
-
-
- );
-};
diff --git a/packages/client/src/components/Layout/AppBar.tsx b/packages/client/src/components/Layout/AppBar.tsx
new file mode 100644
index 0000000..dcc4078
--- /dev/null
+++ b/packages/client/src/components/Layout/AppBar.tsx
@@ -0,0 +1,66 @@
+import { Link, useLocation } from "react-router-dom";
+
+import {
+ RiHome2Fill,
+ RiCrossFill,
+ RiProfileFill,
+ RemixiconComponentType,
+} from "@remixicon/react";
+
+const tabs: {
+ path: string;
+ title: string;
+ Icon: RemixiconComponentType;
+}[] = [
+ {
+ path: "/gardens",
+ title: "Home",
+ Icon: RiHome2Fill,
+ },
+ {
+ path: "/garden",
+ title: "Garden",
+ Icon: RiCrossFill,
+ },
+ {
+ path: "/profile",
+ title: "Profile",
+ Icon: RiProfileFill,
+ },
+];
+
+export const Appbar = () => {
+ const { pathname } = useLocation();
+
+ return (
+
+ // style={spring}
+ >
+ {tabs.map(({ path, Icon, title }) => (
+
+
+
+
+ {title}
+
+
+
+ ))}
+
+ );
+};
diff --git a/packages/client/src/components/Layout/Footer.tsx b/packages/client/src/components/Layout/Footer.tsx
new file mode 100644
index 0000000..86bbdad
--- /dev/null
+++ b/packages/client/src/components/Layout/Footer.tsx
@@ -0,0 +1,48 @@
+// import {
+// RiTwitterFill,
+// RiGithubFill,
+// RemixiconComponentType,
+// } from "@remixicon/react";
+import React from "react";
+
+interface FooterProps {}
+
+// interface Link {
+// title: string;
+// Icon: RemixiconComponentType;
+// link: string;
+// action?: () => void;
+// }
+
+// const links: Link[] = [
+// { title: "x", Icon: RiTwitterFill, link: "https://x.com/gp_dev_guild" },
+// {
+// title: "github",
+// Icon: RiGithubFill,
+// link: "https://github.com/greenpill-dev-guild",
+// },
+// ];
+
+export const Footer: React.FC = () => {
+ return (
+
+ );
+};
diff --git a/packages/client/src/components/Layout/Header.tsx b/packages/client/src/components/Layout/Header.tsx
new file mode 100644
index 0000000..96614f4
--- /dev/null
+++ b/packages/client/src/components/Layout/Header.tsx
@@ -0,0 +1,47 @@
+import { APP_NAME } from "@/constants";
+import {
+ RiGithubLine,
+ RiTwitterLine,
+ RemixiconComponentType,
+} from "@remixicon/react";
+import React from "react";
+
+interface HeaderProps {}
+
+const links: Link[] = [
+ {
+ title: "twitter",
+ Icon: RiTwitterLine,
+ link: "https://x.com/greengoodsapp",
+ },
+ {
+ title: "github",
+ Icon: RiGithubLine,
+ link: "https://github.com/greenpill-dev-guild/green-goods",
+ },
+];
+
+export const Header: React.FC = () => {
+ return (
+
+ );
+};
diff --git a/packages/client/src/components/Layout/Hero.tsx b/packages/client/src/components/Layout/Hero.tsx
new file mode 100644
index 0000000..25b5eea
--- /dev/null
+++ b/packages/client/src/components/Layout/Hero.tsx
@@ -0,0 +1,135 @@
+import { usePWA } from "@/providers/PWAProvider";
+import React, { useState } from "react";
+import { DeviceFrameset } from "react-device-frameset";
+import "react-device-frameset/styles/marvel-devices.min.css";
+import toast from "react-hot-toast";
+
+type SubscribeState = "idle" | "subscribing" | "subscribed" | "error";
+
+const url =
+ "https://app.us13.list-manage.com/subscribe/post?u=16db3a1a92dd56e81459cd500&id=c6c12d1a3f&f_id=0021fae1f0";
+
+export const Hero: React.FC = () => {
+ const { isMobile } = usePWA();
+ const [state, setSubscribeState] = useState("idle");
+
+ function handleSubscribe(e: React.FormEvent) {
+ e.preventDefault();
+
+ setSubscribeState("subscribing");
+
+ const formData = new FormData(e.currentTarget);
+ const email = formData.get("email") as string;
+
+ console.log(email);
+
+ fetch(url + "&" + formData, {
+ method: "GET",
+ headers: {
+ "Content-Type": "application/json",
+ },
+ mode: "cors",
+ cache: "default",
+ })
+ .then((response) => response.json())
+ .then((data) => {
+ if (data["result"] !== "success") {
+ // ERROR
+ console.log(data["msg"]);
+
+ throw new Error(data["msg"]);
+ } else {
+ // SUCCESS - Show notification
+ console.log(data["msg"]);
+
+ toast.success("Successfilly subscribed!");
+
+ setSubscribeState("subscribed");
+ }
+ })
+ .catch((error) => {
+ console.error("Error:", error);
+
+ setSubscribeState("error");
+ toast.error("Something went wrong. Please try again.");
+ });
+ }
+
+ return (
+
+
+
+ {!isMobile && (
+
+
+
+
+
+ )}
+
+
+ );
+};
diff --git a/packages/client/src/components/Layout/Splash.tsx b/packages/client/src/components/Layout/Splash.tsx
new file mode 100644
index 0000000..0b15f5c
--- /dev/null
+++ b/packages/client/src/components/Layout/Splash.tsx
@@ -0,0 +1,33 @@
+import React from "react";
+
+import { APP_NAME } from "@/constants";
+
+import { Button } from "../Button";
+
+interface SplashProps {
+ login: () => void;
+ isLoggingIn: boolean;
+ buttonLabel: string;
+}
+
+export const Splash: React.FC = ({
+ login,
+ isLoggingIn,
+ buttonLabel,
+}) => {
+ return (
+
+
+
+ {APP_NAME}
+
+
+
+ );
+};
diff --git a/packages/client/src/components/Loader.tsx b/packages/client/src/components/Loader.tsx
index 9afc5d5..76c9ef6 100644
--- a/packages/client/src/components/Loader.tsx
+++ b/packages/client/src/components/Loader.tsx
@@ -1,50 +1,45 @@
import React from "react";
-// import { a, config, useSpring } from "@react-spring/web";
export const CircleLoader: React.FC = () => {
- // const spring = useSpring({
- // from: { opacity: 0 },
- // to: { opacity: 1 },
- // config: { ...config.default, clamp: true },
- // });
-
return (
-
-
-
-
+
+ className="relative h-12 w-12"
+ // style={spring}
+ >
+
+
+
+
+
);
};
diff --git a/packages/client/src/constants.ts b/packages/client/src/constants.ts
new file mode 100644
index 0000000..0db93f9
--- /dev/null
+++ b/packages/client/src/constants.ts
@@ -0,0 +1,34 @@
+import schemas from "../../eas/src/resources/schemas.json";
+
+export const APP_NAME = "Green Goods";
+export const APP_DEFAULT_TITLE = "Green Goods";
+export const APP_TITLE_TEMPLATE = "%s - Green Goods";
+export const APP_DESCRIPTION = "Start Bringing Biodiversity Onchain";
+export const APP_URL = "https://greengoods.app";
+export const APP_ICON = "https://greengoods.app/icon.png";
+
+export const EAS = {
+ "42161": {
+ GARDEN_ASSESSMENT: {
+ uid: schemas[0].UID,
+ schema: schemas[0].parsed,
+ },
+ WORK: {
+ uid: schemas[1].UID,
+ schema: schemas[1].parsed,
+ },
+ WORK_APPROVAL: {
+ uid: schemas[2].UID,
+ schema: schemas[2].parsed,
+ },
+ EAS: {
+ address: "0xbD75f629A22Dc1ceD33dDA0b68c546A1c035c458",
+ },
+ },
+};
+
+export const GREEN_GOODS_GARDEN_OPERATOR_WHITELIST = [
+ "afo@greenpill.builders",
+ "coi@greenpill.builders",
+ "nansel@greenpill.builders",
+];
diff --git a/packages/client/src/i18n/en.json b/packages/client/src/i18n/en.json
new file mode 100644
index 0000000..dcc8bd5
--- /dev/null
+++ b/packages/client/src/i18n/en.json
@@ -0,0 +1,11 @@
+{
+ "app.title": "Welcome to the App",
+ "app.login": "Login",
+ "app.logout": "Logout",
+ "app.home": "Home",
+ "app.home.title": "Gardens",
+ "app.profile": "Profile",
+ "app.profile.account": "Account",
+ "app.profile.help": "Help",
+ "app.profile.settings": "Settings"
+}
diff --git a/packages/client/src/i18n/pt.json b/packages/client/src/i18n/pt.json
new file mode 100644
index 0000000..57abcc6
--- /dev/null
+++ b/packages/client/src/i18n/pt.json
@@ -0,0 +1,5 @@
+{
+ "app.title": "Bienvenido a la aplicación",
+ "app.login": "Iniciar sesión",
+ "app.logout": "Cerrar sesión"
+}
diff --git a/packages/client/src/index.css b/packages/client/src/index.css
index eb6f360..4df05e4 100644
--- a/packages/client/src/index.css
+++ b/packages/client/src/index.css
@@ -3,169 +3,117 @@
@tailwind utilities;
:root {
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
- line-height: 1.5;
- font-weight: 400;
-
color-scheme: light dark;
- color: rgba(255, 255, 255, 0.87);
- background-color: #242424;
+ color: #213547;
+ background-color: #ffffff;
+
+ scrollbar-width: none;
+ -ms-overflow-style: none; /* IE and Edge */
+
+ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
+ font-style: normal;
+ font-weight: 400;
font-synthesis: none;
+ font-optical-sizing: auto;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
-a {
- font-weight: 500;
- color: #646cff;
- text-decoration: inherit;
-}
-a:hover {
- color: #535bf2;
-}
+/* @media (prefers-color-scheme: dark) {
+ :root {
+ color: rgba(255, 255, 255, 0.87);
+ background-color: #242424;
+ }
+} */
-body {
- margin: 0;
- display: flex;
- place-items: center;
- min-width: 320px;
- min-height: 100vh;
+::-webkit-scrollbar {
+ display: none;
}
+/*
+ Typography
+*/
h1 {
- font-size: 3.2em;
- line-height: 1.1;
+ @apply text-6xl;
+ @apply font-medium;
}
h2 {
- @apply text-4xl;
- @apply font-bold;
+ @apply text-5xl;
+ @apply font-medium;
}
h3 {
- @apply text-3xl;
+ @apply text-4xl;
@apply font-medium;
}
h4 {
@apply text-2xl;
+ @apply font-medium;
}
h5 {
@apply text-xl;
+ @apply font-medium;
+}
+
+p {
+ @apply text-base;
+ @apply font-normal;
+}
+
+span {
+ @apply text-base;
+ @apply font-normal;
}
-h6,
-p,
-span,
-a,
-li,
label {
- font-weight: 300;
+ @apply text-base;
+ @apply font-medium;
}
+a {
+ @apply text-base;
+ @apply font-medium;
+ color: #646cff;
+ text-decoration: inherit;
+}
+
+.small {
+ @apply text-sm;
+ @apply font-normal;
+}
+
+/* a:hover {
+ color: #535bf2;
+} */
+
+/*
+ Components
+*/
button {
border-radius: 8px;
border: 1px solid transparent;
padding: 0.6em 1.2em;
font-size: 1em;
font-weight: 500;
- font-family: inherit;
- background-color: #1a1a1a;
cursor: pointer;
transition: border-color 0.25s;
}
+
button:hover {
border-color: #646cff;
}
+
button:focus,
button:focus-visible {
outline: 4px auto -webkit-focus-ring-color;
}
-@media (prefers-color-scheme: light) {
- :root {
- color: #213547;
- background-color: #ffffff;
- }
- a:hover {
- color: #747bff;
- }
- button {
- background-color: #f9f9f9;
- }
-}
-
-#root {
- max-width: 1280px;
- margin: 0 auto;
- padding: 2rem;
- text-align: center;
-}
-
-.logo {
- height: 6em;
- padding: 1.5em;
- will-change: filter;
- transition: filter 300ms;
-}
-.logo:hover {
- filter: drop-shadow(0 0 2em #646cffaa);
-}
-.logo.react:hover {
- filter: drop-shadow(0 0 2em #61dafbaa);
-}
-
-@keyframes logo-spin {
- from {
- transform: rotate(0deg);
- }
- to {
- transform: rotate(360deg);
- }
-}
-
-@media (prefers-reduced-motion: no-preference) {
- a:nth-of-type(2) .logo {
- animation: logo-spin infinite 20s linear;
- }
-}
-
-.card {
- padding: 2em;
-}
-
-.read-the-docs {
- color: #888;
-}
-
-#root {
- width: 100%;
- height: 100%;
- overflow-y: visible;
- overflow: hidden;
-}
-
-/* #root > div {
- width: 100%;
- height: 100%;
- overflow: hidden;
- overflow-y: visible;
-} */
-
-::-webkit-scrollbar {
- display: none;
-}
-
-/*
- Components
-*/
-.particle-pwe-btn {
- z-index: 0 !important;
-}
-.dot {
+.loader {
position: absolute;
opacity: 0.27;
animation: dot-fade 1s infinite;
diff --git a/packages/client/src/machines/work.ts b/packages/client/src/machines/work.ts
deleted file mode 100644
index e69de29..0000000
diff --git a/packages/client/src/main.tsx b/packages/client/src/main.tsx
index a9e11f9..eba6b35 100644
--- a/packages/client/src/main.tsx
+++ b/packages/client/src/main.tsx
@@ -1,34 +1,46 @@
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
-import { PrivyProvider } from "@privy-io/react-auth";
+
import { arbitrum } from "viem/chains";
+import { Toaster } from "react-hot-toast";
+import { PrivyProvider } from "@privy-io/react-auth";
-import { SmartAccountProvider } from "./providers/SmartAccountProvider.tsx";
+import { PWAProvider } from "@/providers/PWAProvider.tsx";
+import { UserProvider } from "@/providers/UserProvider.tsx";
-import App from "./App.tsx";
-import "./index.css";
+import { APP_DESCRIPTION } from "@/constants";
+import App from "@/App.tsx";
+import "@/index.css";
createRoot(document.getElementById("root")!).render(
-
-
-
-
-
+
+
+
+
+
+
+
+
);
diff --git a/packages/client/src/modules/eas.ts b/packages/client/src/modules/eas.ts
index e69de29..10cfae3 100644
--- a/packages/client/src/modules/eas.ts
+++ b/packages/client/src/modules/eas.ts
@@ -0,0 +1,228 @@
+import { graphql } from "gql.tada";
+
+import { EAS } from "@/constants";
+
+import { getFileByHash } from "./pinata";
+import { easArbitrumClient } from "./urql";
+
+const parseDataToWork = async (
+ workUID: string,
+ attestation: {
+ attester: string;
+ recipient: string;
+ time: number;
+ },
+ decodedDataJson: any
+): Promise => {
+ const data = JSON.parse(decodedDataJson);
+
+ const media: string[] = data.filter((d: any) => d.name === "media")[0].value
+ .value!;
+
+ const mediaUrls = await Promise.all(
+ media.map(async (hash: string) => {
+ const file = await getFileByHash(hash);
+ return file.data;
+ })
+ );
+
+ const filteredMedia = mediaUrls.filter((url) => typeof url === "string");
+
+ return {
+ id: workUID,
+ gardenerAddress: attestation.attester,
+ gardenAddress: attestation.recipient,
+ actionUID: data.filter((d: any) => d.name === "actionUID")[0].value.value!,
+ title: data.filter((d: any) => d.name === "title")[0].value.value!,
+ feedback: data.filter((d: any) => d.name === "feedback")[0].value.value!,
+ metadata: data.filter((d: any) => d.name === "metadata")[0].value.value!,
+ media: filteredMedia,
+ createdAt: attestation.time,
+ approvals: [],
+ };
+};
+
+const parseDataToWorkApproval = (
+ workApprovalUID: string,
+ attestation: {
+ attester: string;
+ recipient: string;
+ time: number;
+ },
+ decodedDataJson: any
+): WorkApproval => {
+ const data = JSON.parse(decodedDataJson);
+
+ return {
+ id: workApprovalUID,
+ approverAddress: attestation.attester,
+ recipientAddress: attestation.recipient,
+ actionUID: data.filter((d: any) => d.name === "actionUID")[0].value.value!,
+ workUID: data.filter((d: any) => d.name === "workUID")[0].value.value!,
+ approved: data.filter((d: any) => d.name === "approved")[0].value.value!,
+ feedback: data.filter((d: any) => d.name === "feedback")[0].value.value!,
+ createdAt: attestation.time,
+ };
+};
+
+const parseDataToGardenAssessment = (
+ gardenAssessmentUID: string,
+ attestation: {
+ attester: string;
+ recipient: string;
+ time: number;
+ },
+ decodedDataJson: any
+): GardenAssessment => {
+ const data = JSON.parse(decodedDataJson);
+
+ return {
+ id: gardenAssessmentUID,
+ authorAddress: attestation.attester,
+ gardenAddress: attestation.recipient,
+ soilMoisturePercentage: data.filter(
+ (d: any) => d.name === "soilMoisturePercentage"
+ )[0].value.value!,
+ carbonTonStock: data.filter((d: any) => d.name === "carbonTonStock")[0]
+ .value.value!,
+ carbonTonPotential: data.filter(
+ (d: any) => d.name === "carbonTonPotential"
+ )[0].value.value!,
+ gardenSquareMeters: data.filter(
+ (d: any) => d.name === "gardenSquareMeters"
+ )[0].value.value!,
+ biome: data.filter((d: any) => d.name === "biome")[0].value.value!,
+ remoteReportCID: data.filter((d: any) => d.name === "remoteReportPDF")[0]
+ .value.value!,
+ speciesRegistryCID: data.filter(
+ (d: any) => d.name === "speciesRegistryJSON"
+ )[0].value.value!,
+ polygonCoordinates: data.filter(
+ (d: any) => d.name === "polygonCoordinates"
+ )[0].value.value!,
+ treeGenusesObserved: data.filter(
+ (d: any) => d.name === "treeGenusesObserved"
+ )[0].value.value!,
+ weedGenusesObserved: data.filter(
+ (d: any) => d.name === "weedGenusesObserved"
+ )[0].value.value!,
+ issues: data.filter((d: any) => d.name === "issues")[0].value.value!,
+ tags: data.filter((d: any) => d.name === "tags")[0].value.value!,
+ createdAt: attestation.time,
+ };
+};
+
+export const getWorks = async (): Promise => {
+ // TODO add 'where: valid: true' filter
+ const QUERY = graphql(/* GraphQL */ `
+ query Attestations($where: AttestationWhereInput) {
+ attestations(where: $where) {
+ id
+ attester
+ recipient
+ timeCreated
+ decodedDataJson
+ }
+ }
+ `);
+
+ const { data, error } = await easArbitrumClient
+ .query(QUERY, {
+ where: {
+ schemaId: { equals: EAS["42161"].WORK.uid },
+ },
+ })
+ .toPromise();
+
+ if (error) console.error(error);
+ if (!data) console.error("No data found");
+
+ const works = Promise.all(
+ data?.attestations.map(
+ async ({ id, recipient, timeCreated, decodedDataJson }) =>
+ await parseDataToWork(
+ id,
+ { attester: recipient, recipient, time: timeCreated },
+ decodedDataJson
+ )
+ ) ?? []
+ );
+
+ return works;
+};
+
+export const getWorkApprovals = async (): Promise => {
+ // TODO add 'where: valid: true' filter
+ const QUERY = graphql(/* GraphQL */ `
+ query Attestations($where: AttestationWhereInput) {
+ attestations(where: $where) {
+ id
+ attester
+ recipient
+ timeCreated
+ decodedDataJson
+ }
+ }
+ `);
+
+ const { data, error } = await easArbitrumClient
+ .query(QUERY, {
+ where: {
+ schemaId: { equals: EAS["42161"].WORK_APPROVAL.uid },
+ },
+ })
+ .toPromise();
+
+ if (error) console.error(error);
+ if (!data) console.error("No data found");
+
+ return (
+ data?.attestations.map(({ id, recipient, timeCreated, decodedDataJson }) =>
+ parseDataToWorkApproval(
+ id,
+ { attester: recipient, recipient, time: timeCreated },
+ decodedDataJson
+ )
+ ) ?? []
+ );
+};
+
+export const getGardenAssessments = async (): Promise => {
+ // TODO add 'where: valid: true' filter
+ const QUERY = graphql(/* GraphQL */ `
+ query Attestations($where: AttestationWhereInput) {
+ attestations(where: $where) {
+ id
+ attester
+ recipient
+ timeCreated
+ decodedDataJson
+ }
+ }
+ `);
+
+ const { data, error } = await easArbitrumClient
+ .query(QUERY, {
+ where: {
+ schemaId: { equals: EAS["42161"].GARDEN_ASSESSMENT.uid },
+ },
+ })
+ .toPromise();
+
+ if (error) console.error(error);
+ if (!data) console.error("No data found");
+
+ return (
+ data?.attestations.map(({ id, recipient, timeCreated, decodedDataJson }) =>
+ parseDataToGardenAssessment(
+ id,
+ {
+ attester: recipient,
+ recipient,
+ time: timeCreated,
+ },
+ decodedDataJson
+ )
+ ) ?? []
+ );
+};
diff --git a/packages/client/src/modules/greengoods.ts b/packages/client/src/modules/greengoods.ts
new file mode 100644
index 0000000..e49b45a
--- /dev/null
+++ b/packages/client/src/modules/greengoods.ts
@@ -0,0 +1,75 @@
+import { User } from "@privy-io/react-auth";
+
+import plantActionInstructions from "../utils/actions/plant.json";
+import observerActionInstructions from "../utils/actions/observe.json";
+
+export function getActions(): Action[] {
+ return [
+ {
+ id: 0,
+ startTime: 0,
+ endTime: 0,
+ title: "Observation",
+ instructions: "cid:0x1234",
+ capitals: [Capital.LIVING],
+ media: [],
+ createdAt: 0,
+ description: plantActionInstructions.description,
+ inputs: plantActionInstructions.details.inputs as WorkInput[],
+ mediaInfo: plantActionInstructions.media,
+ details: plantActionInstructions.details,
+ review: plantActionInstructions.review,
+ },
+ {
+ id: 0,
+ startTime: 0,
+ endTime: 0,
+ title: "Planting",
+ instructions: "cid:0x1234",
+ capitals: [Capital.LIVING],
+ media: [],
+ createdAt: 0,
+ description: observerActionInstructions.description,
+ inputs: observerActionInstructions.details.inputs as WorkInput[],
+ mediaInfo: observerActionInstructions.media,
+ details: observerActionInstructions.details,
+ review: observerActionInstructions.review,
+ },
+ ];
+}
+
+export function getGardens(): Garden[] {
+ const operators = [
+ "0x2aa64E6d80390F5C017F0313cB908051BE2FD35e",
+ "0xAcD59e854adf632d2322404198624F757C868C97,",
+ "0x29e6cbF2450F86006292D10A3cF791955600a457",
+ "0x41f842E28c5a18aAF1fCA0e5908E16d3Ff7e4E9c",
+ "0x742fa58340df9Ad7c691De4Ed999CF7f71079A8F",
+ "0xb084b8258e3409deCa8a5847aa5Ee9fda07a62A8",
+ ];
+
+ return [
+ {
+ id: "0xa9Cb249a3B651Ce82bf9E9cc48BCF41957647F48",
+ name: "Root Planet",
+ location: "Rio Claro, São Paulo",
+ bannerImage: "",
+ operators,
+ gardeners: operators,
+ gardenAssessments: [],
+ description:
+ "Observing invasive species and planting natives species to improve biodiversity.",
+ tokenAddress: "0x9EF896a314B7aE98609eC0c0cA43724C768046B4",
+ tokenID: 0,
+ },
+ ];
+}
+
+export async function getGardeners(): Promise {
+ const request = await fetch(
+ import.meta.env.DEV ? "http://localhost:3000/api/users" : "/api/users"
+ );
+ const response: User[] = await request.json();
+
+ return response;
+}
diff --git a/packages/client/src/modules/indexer.ts b/packages/client/src/modules/indexer.ts
deleted file mode 100644
index 8b13789..0000000
--- a/packages/client/src/modules/indexer.ts
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/packages/client/src/modules/pinata.ts b/packages/client/src/modules/pinata.ts
index e69de29..64eaddd 100644
--- a/packages/client/src/modules/pinata.ts
+++ b/packages/client/src/modules/pinata.ts
@@ -0,0 +1,21 @@
+import { PinataSDK } from "pinata";
+
+export const pinata = new PinataSDK({
+ pinataJwt: import.meta.env.VITE_PINATA_JWT as string,
+});
+
+export async function uploadFileToIPFS(file: File) {
+ return await pinata.upload.file(file);
+}
+
+export async function uploadFilesToIPFS(files: File[]) {
+ return await pinata.upload.fileArray(files);
+}
+
+export async function uploadJSONToIPFS(json: Record) {
+ return await pinata.upload.json(json);
+}
+
+export async function getFileByHash(hash: string) {
+ return await pinata.gateways.get(hash);
+}
diff --git a/packages/client/src/modules/react-query.ts b/packages/client/src/modules/react-query.ts
new file mode 100644
index 0000000..6c7b9de
--- /dev/null
+++ b/packages/client/src/modules/react-query.ts
@@ -0,0 +1,3 @@
+import { QueryClient } from "@tanstack/react-query";
+
+export const queryClient = new QueryClient();
diff --git a/packages/client/src/modules/urql.ts b/packages/client/src/modules/urql.ts
new file mode 100644
index 0000000..1794d82
--- /dev/null
+++ b/packages/client/src/modules/urql.ts
@@ -0,0 +1,14 @@
+import { Client, cacheExchange, fetchExchange } from "@urql/core";
+
+export const greenGoodsIndexer = new Client({
+ url:
+ import.meta.env.DEV ?
+ "http://localhost:8000"
+ : "https://green-goods-indever.herokuapp.com",
+ exchanges: [cacheExchange, fetchExchange],
+});
+
+export const easArbitrumClient = new Client({
+ url: "https://arbitrum.easscan.org/graphql",
+ exchanges: [cacheExchange, fetchExchange],
+});
diff --git a/packages/client/src/providers/GardenProvider.tsx b/packages/client/src/providers/GardenProvider.tsx
index e69de29..90d0ace 100644
--- a/packages/client/src/providers/GardenProvider.tsx
+++ b/packages/client/src/providers/GardenProvider.tsx
@@ -0,0 +1,74 @@
+import React, { useContext } from "react";
+import { User } from "@privy-io/react-auth";
+import { useQuery } from "@tanstack/react-query";
+
+import { getGardenAssessments } from "@/modules/eas";
+import { getActions, getGardeners, getGardens } from "@/modules/greengoods";
+
+import { GREEN_GOODS_GARDEN_OPERATOR_WHITELIST } from "@/constants";
+
+export type Gardener = User & { operator: boolean };
+
+export interface GardenDataProps {
+ actions: Action[];
+ gardens: Garden[];
+ gardeners: Gardener[];
+}
+
+const GardenContext = React.createContext({
+ actions: [],
+ gardens: [],
+ gardeners: [],
+});
+
+export const useGarden = () => {
+ return useContext(GardenContext);
+};
+
+export const GardenProvider = ({ children }: { children: React.ReactNode }) => {
+ // QUERIES
+ const { data: actions } = useQuery({
+ queryKey: ["actions"],
+ queryFn: getActions,
+ });
+
+ const { data: gardens } = useQuery({
+ queryKey: ["gardens"],
+ queryFn: async () => {
+ const gardens = getGardens();
+ const assessments = await getGardenAssessments();
+
+ return gardens.map((garden) => {
+ garden.gardenAssessments = assessments.filter(
+ (assessment) => assessment.gardenAddress === garden.id
+ );
+
+ return garden;
+ });
+ },
+ });
+ const { data: gardeners } = useQuery({
+ queryKey: ["gardeners"],
+ queryFn: getGardeners,
+ });
+
+ return (
+ {
+ return {
+ ...gardener,
+ operator: GREEN_GOODS_GARDEN_OPERATOR_WHITELIST.includes(
+ gardener.email?.address || gardener.phone?.number || ""
+ ),
+ };
+ }) || [],
+ }}
+ >
+ {children}
+
+ );
+};
diff --git a/packages/client/src/providers/PWAProvider.tsx b/packages/client/src/providers/PWAProvider.tsx
index 9cb3717..a4f8ed5 100644
--- a/packages/client/src/providers/PWAProvider.tsx
+++ b/packages/client/src/providers/PWAProvider.tsx
@@ -1,16 +1,38 @@
-import { useEffect, useState } from "react";
-
-export type DisplayMode = "standalone" | "browser" | "twa";
-export type InstallState = "idle" | "prompt" | "installed" | "unsupported";
-
+import { IntlProvider } from "react-intl";
+import React, { useState, useEffect, useContext } from "react";
+
+import enMessages from "@/i18n/en.json";
+import ptMessages from "@/i18n/pt.json";
+
+export type InstallState =
+ | "idle"
+ | "not-installed"
+ | "installed"
+ | "unsupported";
+export type Locale = "en" | "pt";
export type Platform = "ios" | "android" | "windows" | "unknown";
export interface PWADataProps {
+ isMobile: boolean;
+ isInstalled: boolean;
platform: Platform;
- installState: InstallState;
+ locale: Locale;
+ deferredPrompt: BeforeInstallPromptEvent | null;
+ promptInstall: () => void;
handleInstallCheck: (e: any) => void;
+ switchLanguage: (lang: Locale) => void;
+}
+
+interface BeforeInstallPromptEvent extends Event {
+ prompt: () => Promise;
+ userChoice: Promise<{ outcome: "accepted" | "dismissed" }>;
}
+const messages = {
+ en: enMessages,
+ pt: ptMessages,
+};
+
function getMobileOperatingSystem(): Platform {
// @ts-ignore
var userAgent = navigator.userAgent || navigator.vendor || window.opera;
@@ -33,73 +55,108 @@ function getMobileOperatingSystem(): Platform {
return "unknown";
}
-export const isHandheld = detectHandheld();
+const PWAContext = React.createContext({
+ isMobile: false,
+ isInstalled: false,
+ locale: "en",
+ deferredPrompt: null,
+ platform: "unknown",
+ promptInstall: () => {},
+ handleInstallCheck: () => {},
+ switchLanguage: () => {},
+});
+
+export const usePWA = () => {
+ return useContext(PWAContext);
+};
-export const usePWA = (): PWADataProps => {
- const [installState, setInstalledState] = useState(
- isHandheld ? "installed" : "unsupported"
- );
+export const PWAProvider = ({ children }: { children: React.ReactNode }) => {
+ const [locale, setLocale] = useState("en");
+ const [deferredPrompt, setDeferredPrompt] =
+ useState(null);
+ const [installState, setInstalledState] = useState("idle");
const platform = getMobileOperatingSystem();
- async function handleInstallCheck(e: any) {
+ async function handleInstallCheck(e: any | null) {
+ e?.preventDefault(); // Prevent the automatic prompt
+ setDeferredPrompt(e);
+
if (
window.matchMedia("(display-mode: standalone)").matches ||
- window.matchMedia("(display-mode: fullscreen)").matches
+ window.matchMedia("(display-mode: fullscreen)").matches ||
+ (window.navigator as any).standalone
) {
setInstalledState("installed");
console.log("PWA was installed", e);
} else {
- // setInstalledState("prompt");
- setInstalledState("installed"); // TODO: Update PWA flow
+ setInstalledState("not-installed");
console.log("PWA was not installed", e);
}
}
+ function handleBeforeInstall(e: Event) {
+ e.preventDefault();
+ setDeferredPrompt(e as BeforeInstallPromptEvent);
+ }
+
function handlePWAInstalled() {
setInstalledState("installed");
// TODO: Add analytics and fire notification
}
+ function switchLanguage(lang: Locale) {
+ setLocale(lang);
+ }
+
+ const promptInstall = () => {
+ if (deferredPrompt) {
+ deferredPrompt.prompt(); // Show the install prompt
+ deferredPrompt.userChoice.then((choiceResult) => {
+ if (choiceResult.outcome === "accepted") {
+ console.log("User accepted the install prompt");
+ } else {
+ console.log("User dismissed the install prompt");
+ }
+ setDeferredPrompt(null); // Clear the saved prompt
+ });
+ }
+ };
+
useEffect(() => {
- isHandheld &&
- window.addEventListener("beforeinstallprompt", handleInstallCheck);
- isHandheld && window.addEventListener("appinstalled", handlePWAInstalled);
+ handleInstallCheck(null);
+
+ window.addEventListener("beforeinstallprompt", handleBeforeInstall);
+ window.addEventListener("appinstalled", handlePWAInstalled);
return () => {
- isHandheld &&
- window.removeEventListener("beforeinstallprompt", handleInstallCheck);
- isHandheld &&
- window.removeEventListener("appinstalled", handlePWAInstalled);
+ window.removeEventListener("beforeinstallprompt", handleBeforeInstall);
+ window.removeEventListener("appinstalled", handlePWAInstalled);
};
}, []);
- return {
- platform,
- installState,
- handleInstallCheck,
- };
-};
-function detectHandheld(): boolean {
- const userAgent =
- navigator.userAgent || navigator.vendor || (window as any).opera;
-
- // Check if the user agent contains any keywords indicating a handheld device
- const handheldKeywords = [
- "Android",
- "webOS",
- "iPhone",
- "iPad",
- "iPod",
- "BlackBerry",
- "Windows Phone",
- ];
- const isHandheld = handheldKeywords.some((keyword) =>
- userAgent.includes(keyword)
+ return (
+
+
+ {children}
+
+
);
-
- return isHandheld;
-}
+};
diff --git a/packages/client/src/providers/SmartAccountProvider.tsx b/packages/client/src/providers/UserProvider.tsx
similarity index 65%
rename from packages/client/src/providers/SmartAccountProvider.tsx
rename to packages/client/src/providers/UserProvider.tsx
index 720137e..99664c5 100644
--- a/packages/client/src/providers/SmartAccountProvider.tsx
+++ b/packages/client/src/providers/UserProvider.tsx
@@ -1,3 +1,13 @@
+import React, { useState, useEffect, useContext } from "react";
+import {
+ User,
+ useLogin,
+ useLogout,
+ usePrivy,
+ useWallets,
+ ConnectedWallet,
+} from "@privy-io/react-auth";
+
import {
ENTRYPOINT_ADDRESS_V07,
type SmartAccountClient,
@@ -12,68 +22,67 @@ import {
createPimlicoBundlerClient,
createPimlicoPaymasterClient,
} from "permissionless/clients/pimlico";
-import { Chain, Transport } from "viem";
-import { arbitrum } from "viem/chains";
import { EntryPoint } from "permissionless/types";
-import React, { useState, useEffect, useContext } from "react";
-import { ConnectedWallet, usePrivy, useWallets } from "@privy-io/react-auth";
+
+import { arbitrum } from "viem/chains";
+import { Chain, Transport } from "viem";
import { createPublicClient, createWalletClient, custom, http } from "viem";
-interface SmartAccountInterface {
- eoa: ConnectedWallet | undefined;
+type SAC = SmartAccountClient<
+ EntryPoint,
+ Transport,
+ Chain,
+ SmartAccount
+>;
+
+interface UserInterface {
+ user: User | null;
+ isOnboarded: boolean;
+ eoa?: ConnectedWallet;
smartAccountReady: boolean;
- smartAccountAddress: `0x${string}` | undefined;
- smartAccountClient:
- | SmartAccountClient<
- EntryPoint,
- Transport,
- Chain,
- SmartAccount
- >
- | Transport
- | any
- | SmartAccount
- | null;
+ smartAccountAddress?: `0x${string}`;
+ smartAccountClient: SAC | null;
+ login: () => void;
+ logout: () => void;
}
-const SmartAccountContext = React.createContext({
+const UserContext = React.createContext({
+ user: null,
+ isOnboarded: false,
eoa: undefined,
- smartAccountClient: undefined,
+ smartAccountClient: null,
smartAccountAddress: undefined,
smartAccountReady: false,
+ login: () => {},
+ logout: () => {},
});
-export const useSmartAccount = () => {
- return useContext(SmartAccountContext);
+export const useUser = () => {
+ return useContext(UserContext);
};
-export const SmartAccountProvider = ({
- children,
-}: {
- children: React.ReactNode;
-}) => {
- // Get a list of all of the wallets (EOAs) the user has connected to your site
+export const UserProvider = ({ children }: { children: React.ReactNode }) => {
+ const [isOnboarded, setOnboarded] = useState(false);
+
const { wallets } = useWallets();
- const { ready } = usePrivy();
- // Find the embedded wallet by finding the entry in the list with a `walletClientType` of 'privy'
+ const { ready, user } = usePrivy();
+ const { login } = useLogin({
+ onComplete(isNewUser) {
+ setOnboarded(!isNewUser);
+ },
+ onError(error) {
+ console.error("Privy error logging in", error);
+ },
+ });
+ const { logout } = useLogout();
const embeddedWallet = wallets.find(
(wallet) => wallet.walletClientType === "privy"
);
- // States to store the smart account and its status
const [eoa, setEoa] = useState();
- const [smartAccountClient, setSmartAccountClient] = useState<
- | SmartAccountClient<
- EntryPoint,
- Transport,
- Chain,
- SmartAccount
- >
- | Transport
- | any
- | SmartAccount
- | null
- >();
+ const [smartAccountClient, setSmartAccountClient] = useState(
+ null
+ );
const [smartAccountAddress, setSmartAccountAddress] = useState<
`0x${string}` | undefined
>();
@@ -84,8 +93,6 @@ export const SmartAccountProvider = ({
}, [ready, embeddedWallet]);
useEffect(() => {
- // Creates a smart account given a Privy `ConnectedWallet` object representing
- // the user's EOA.
const createSmartWallet = async (eoa: ConnectedWallet) => {
setEoa(eoa);
// Get an EIP1193 provider and viem WalletClient for the EOA
@@ -141,28 +148,39 @@ export const SmartAccountProvider = ({
const smartAccountAddress = smartAccountClient.account?.address;
- setSmartAccountClient(smartAccountClient);
+ // Todo: Add test attestation to check if smart account is ready
+
+ setSmartAccountClient(
+ smartAccountClient as SmartAccountClient<
+ EntryPoint,
+ Transport,
+ Chain,
+ SmartAccount
+ >
+ );
setSmartAccountAddress(smartAccountAddress);
setSmartAccountReady(true);
- console.log("smartAccountClient", smartAccountClient.account.address);
+ console.log("smartAccountClient", smartAccountAddress);
};
if (embeddedWallet) createSmartWallet(embeddedWallet);
}, [embeddedWallet?.address]);
- console.log("client", smartAccountClient);
-
return (
-
{children}
-
+
);
};
diff --git a/packages/client/src/providers/WorkProvider.tsx b/packages/client/src/providers/WorkProvider.tsx
index bdfecd9..76b3734 100644
--- a/packages/client/src/providers/WorkProvider.tsx
+++ b/packages/client/src/providers/WorkProvider.tsx
@@ -1,22 +1,161 @@
-// import { getContract } from "viem";
+import { z } from "zod";
+import toast from "react-hot-toast";
+import React, { useContext, useState } from "react";
+import { zodResolver } from "@hookform/resolvers/zod";
+import { useMutation, useQuery } from "@tanstack/react-query";
+import { FormState, useForm, UseFormRegister } from "react-hook-form";
-// import { useSmartAccount } from "./SmartAccountProvider";
+import { EAS } from "@/constants";
+
+import { queryClient } from "@/modules/react-query";
+
+import { useUser } from "./UserProvider";
+import { useGarden } from "./GardenProvider";
+import { encodeWorkData } from "@/utils/eas";
+
+export interface WorkDataProps {
+ actions: Action[];
+ works: Work[];
+ workApprovals: WorkApprovalCard[];
+ form: {
+ state: FormState;
+ actionUID: number | null;
+ images: File[];
+ setImages: React.Dispatch>;
+ setActionUID: React.Dispatch>;
+ register: UseFormRegister;
+ uploadWork?: (e?: React.BaseSyntheticEvent) => Promise;
+ };
+}
+
+const workSchema = z.object({
+ actionUID: z.number(),
+ title: z.string(),
+ feedback: z.string(),
+ metadata: z.string(),
+ plantSelection: z.array(z.string()),
+ plantCount: z.number(),
+ media: z.array(z.instanceof(File)),
+});
+
+const WorkContext = React.createContext({
+ actions: [],
+ actionUID: null,
+ setActionUID: () => {},
+ works: [],
+ workApprovals: [],
+ uploadWork: async () => "",
+ form: {
+ // @ts-ignore
+ register: () => {},
+ actionUID: null,
+ setActionUID: () => {},
+ uploadWork: async () => {},
+ },
+});
export const useWork = () => {
- // const { smartAccountClient } = useSmartAccount();
+ return useContext(WorkContext);
+};
- // const easContract = getContract({
- // address: "0x6d3dC0Fe5351087E3Af3bDe8eB3F7350ed894fc3",
- // abi: [],
- // client: smartAccountClient,
- // });
+export const WorkProvider = ({ children }: { children: React.ReactNode }) => {
+ const { smartAccountClient } = useUser();
+ const { actions } = useGarden();
- function uploadWork() {
- // easContract.write.
- console.log("uploadWork");
- }
+ // QUERIES
+ const { data: works } = useQuery({
+ queryKey: ["works"],
+ queryFn: () => [],
+ });
+ const { data: workApprovals } = useQuery({
+ queryKey: ["workApprovals"],
+ queryFn: () => [],
+ });
- return {
- uploadWork,
- };
+ // MUTATIONS
+ const [actionUID, setActionUID] = useState(null);
+ const [images, setImages] = useState([]);
+
+ const { register, handleSubmit, formState } = useForm({
+ defaultValues: {
+ actionUID: 0,
+ title: "",
+ feedback: "",
+ plantSelection: [],
+ plantCount: 0,
+ // metadata: {},
+ media: [],
+ },
+ resolver: zodResolver(workSchema),
+ });
+
+ const workMutation = useMutation({
+ mutationFn: async (draft: WorkDraft) => {
+ if (!smartAccountClient) {
+ throw new Error("No smart account client found");
+ }
+
+ const encodedData = encodeWorkData(
+ {
+ ...draft,
+ media: images,
+ },
+ "0x"
+ );
+
+ const encodedFunctionCall: `0x${string}` = `0x${encodedData}`; // Todo encode function call and arguments
+
+ const receipt = await smartAccountClient.sendTransaction({
+ to: EAS["42161"].EAS.address as `0x${string}`,
+ data: encodedFunctionCall, // Todo encode solidty function call and arguments
+ });
+
+ return receipt;
+ },
+ onMutate: () => {
+ toast.loading("Uploading work...");
+ },
+ onSuccess: () => {
+ toast.success("Work uploaded!");
+ queryClient.invalidateQueries({ queryKey: ["works"] });
+ },
+ onError: () => {
+ toast.error("Work upload failed!");
+ },
+ });
+
+ const uploadWork = handleSubmit((data) => {
+ workMutation.mutate(data);
+ });
+
+ return (
+ {
+ return {
+ ...work,
+ metadata: JSON.parse(work.metadata),
+ approvals:
+ workApprovals?.filter(
+ (approval) => approval.workUID === work.id
+ ) || [],
+ };
+ }) || [],
+ workApprovals: workApprovals || [],
+ form: {
+ state: formState,
+ register,
+ actionUID,
+ images,
+ setImages,
+ setActionUID,
+ uploadWork,
+ },
+ }}
+ >
+ {children}
+
+ );
};
diff --git a/packages/client/src/types/app.d.ts b/packages/client/src/types/app.d.ts
new file mode 100644
index 0000000..f15f90a
--- /dev/null
+++ b/packages/client/src/types/app.d.ts
@@ -0,0 +1,6 @@
+declare interface Link {
+ title: string;
+ Icon: T;
+ link: string;
+ action?: () => void;
+}
diff --git a/packages/client/src/types/eas.d.ts b/packages/client/src/types/eas.d.ts
new file mode 100644
index 0000000..4c4396b
--- /dev/null
+++ b/packages/client/src/types/eas.d.ts
@@ -0,0 +1,249 @@
+/* eslint-disable */
+/* prettier-ignore */
+
+/** An IntrospectionQuery representation of your schema.
+ *
+ * @remarks
+ * This is an introspection of your schema saved as a file by GraphQLSP.
+ * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents.
+ * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to
+ * instead save to a .ts instead of a .d.ts file.
+ */
+export type introspection = {
+ name: never;
+ query: 'Query';
+ mutation: 'Mutation';
+ subscription: never;
+ types: {
+ 'AffectedRowsOutput': { kind: 'OBJECT'; name: 'AffectedRowsOutput'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
+ 'AggregateAttestation': { kind: 'OBJECT'; name: 'AggregateAttestation'; fields: { '_avg': { name: '_avg'; type: { kind: 'OBJECT'; name: 'AttestationAvgAggregate'; ofType: null; } }; '_count': { name: '_count'; type: { kind: 'OBJECT'; name: 'AttestationCountAggregate'; ofType: null; } }; '_max': { name: '_max'; type: { kind: 'OBJECT'; name: 'AttestationMaxAggregate'; ofType: null; } }; '_min': { name: '_min'; type: { kind: 'OBJECT'; name: 'AttestationMinAggregate'; ofType: null; } }; '_sum': { name: '_sum'; type: { kind: 'OBJECT'; name: 'AttestationSumAggregate'; ofType: null; } }; }; };
+ 'AggregateEnsName': { kind: 'OBJECT'; name: 'AggregateEnsName'; fields: { '_avg': { name: '_avg'; type: { kind: 'OBJECT'; name: 'EnsNameAvgAggregate'; ofType: null; } }; '_count': { name: '_count'; type: { kind: 'OBJECT'; name: 'EnsNameCountAggregate'; ofType: null; } }; '_max': { name: '_max'; type: { kind: 'OBJECT'; name: 'EnsNameMaxAggregate'; ofType: null; } }; '_min': { name: '_min'; type: { kind: 'OBJECT'; name: 'EnsNameMinAggregate'; ofType: null; } }; '_sum': { name: '_sum'; type: { kind: 'OBJECT'; name: 'EnsNameSumAggregate'; ofType: null; } }; }; };
+ 'AggregateOffchainRevocation': { kind: 'OBJECT'; name: 'AggregateOffchainRevocation'; fields: { '_avg': { name: '_avg'; type: { kind: 'OBJECT'; name: 'OffchainRevocationAvgAggregate'; ofType: null; } }; '_count': { name: '_count'; type: { kind: 'OBJECT'; name: 'OffchainRevocationCountAggregate'; ofType: null; } }; '_max': { name: '_max'; type: { kind: 'OBJECT'; name: 'OffchainRevocationMaxAggregate'; ofType: null; } }; '_min': { name: '_min'; type: { kind: 'OBJECT'; name: 'OffchainRevocationMinAggregate'; ofType: null; } }; '_sum': { name: '_sum'; type: { kind: 'OBJECT'; name: 'OffchainRevocationSumAggregate'; ofType: null; } }; }; };
+ 'AggregateSchema': { kind: 'OBJECT'; name: 'AggregateSchema'; fields: { '_avg': { name: '_avg'; type: { kind: 'OBJECT'; name: 'SchemaAvgAggregate'; ofType: null; } }; '_count': { name: '_count'; type: { kind: 'OBJECT'; name: 'SchemaCountAggregate'; ofType: null; } }; '_max': { name: '_max'; type: { kind: 'OBJECT'; name: 'SchemaMaxAggregate'; ofType: null; } }; '_min': { name: '_min'; type: { kind: 'OBJECT'; name: 'SchemaMinAggregate'; ofType: null; } }; '_sum': { name: '_sum'; type: { kind: 'OBJECT'; name: 'SchemaSumAggregate'; ofType: null; } }; }; };
+ 'AggregateSchemaName': { kind: 'OBJECT'; name: 'AggregateSchemaName'; fields: { '_avg': { name: '_avg'; type: { kind: 'OBJECT'; name: 'SchemaNameAvgAggregate'; ofType: null; } }; '_count': { name: '_count'; type: { kind: 'OBJECT'; name: 'SchemaNameCountAggregate'; ofType: null; } }; '_max': { name: '_max'; type: { kind: 'OBJECT'; name: 'SchemaNameMaxAggregate'; ofType: null; } }; '_min': { name: '_min'; type: { kind: 'OBJECT'; name: 'SchemaNameMinAggregate'; ofType: null; } }; '_sum': { name: '_sum'; type: { kind: 'OBJECT'; name: 'SchemaNameSumAggregate'; ofType: null; } }; }; };
+ 'AggregateServiceStat': { kind: 'OBJECT'; name: 'AggregateServiceStat'; fields: { '_count': { name: '_count'; type: { kind: 'OBJECT'; name: 'ServiceStatCountAggregate'; ofType: null; } }; '_max': { name: '_max'; type: { kind: 'OBJECT'; name: 'ServiceStatMaxAggregate'; ofType: null; } }; '_min': { name: '_min'; type: { kind: 'OBJECT'; name: 'ServiceStatMinAggregate'; ofType: null; } }; }; };
+ 'AggregateTimestamp': { kind: 'OBJECT'; name: 'AggregateTimestamp'; fields: { '_avg': { name: '_avg'; type: { kind: 'OBJECT'; name: 'TimestampAvgAggregate'; ofType: null; } }; '_count': { name: '_count'; type: { kind: 'OBJECT'; name: 'TimestampCountAggregate'; ofType: null; } }; '_max': { name: '_max'; type: { kind: 'OBJECT'; name: 'TimestampMaxAggregate'; ofType: null; } }; '_min': { name: '_min'; type: { kind: 'OBJECT'; name: 'TimestampMinAggregate'; ofType: null; } }; '_sum': { name: '_sum'; type: { kind: 'OBJECT'; name: 'TimestampSumAggregate'; ofType: null; } }; }; };
+ 'Attestation': { kind: 'OBJECT'; name: 'Attestation'; fields: { 'attester': { name: 'attester'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'data': { name: 'data'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'decodedDataJson': { name: 'decodedDataJson'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'expirationTime': { name: 'expirationTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'ipfsHash': { name: 'ipfsHash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'isOffchain': { name: 'isOffchain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'recipient': { name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'refUID': { name: 'refUID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'revocable': { name: 'revocable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'revocationTime': { name: 'revocationTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'revoked': { name: 'revoked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'schema': { name: 'schema'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Schema'; ofType: null; }; } }; 'schemaId': { name: 'schemaId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'time': { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'timeCreated': { name: 'timeCreated'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'txid': { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
+ 'AttestationAvgAggregate': { kind: 'OBJECT'; name: 'AttestationAvgAggregate'; fields: { 'expirationTime': { name: 'expirationTime'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'revocationTime': { name: 'revocationTime'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'time': { name: 'time'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; 'timeCreated': { name: 'timeCreated'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
+ 'AttestationAvgOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'AttestationAvgOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'time'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timeCreated'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'expirationTime'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revocationTime'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'AttestationCountAggregate': { kind: 'OBJECT'; name: 'AttestationCountAggregate'; fields: { '_all': { name: '_all'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'attester': { name: 'attester'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'data': { name: 'data'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'decodedDataJson': { name: 'decodedDataJson'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'expirationTime': { name: 'expirationTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'ipfsHash': { name: 'ipfsHash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'isOffchain': { name: 'isOffchain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'recipient': { name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'refUID': { name: 'refUID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'revocable': { name: 'revocable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'revocationTime': { name: 'revocationTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'revoked': { name: 'revoked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'schemaId': { name: 'schemaId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'time': { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'timeCreated': { name: 'timeCreated'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'txid': { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
+ 'AttestationCountOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'AttestationCountOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'decodedDataJson'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'attester'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timeCreated'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'expirationTime'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revocationTime'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'refUID'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revoked'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'schemaId'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'ipfsHash'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'isOffchain'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'AttestationCreateInput': { kind: 'INPUT_OBJECT'; name: 'AttestationCreateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'data'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'decodedDataJson'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'attester'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'timeCreated'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'expirationTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'revocationTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'refUID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'revoked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ipfsHash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'isOffchain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'schema'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaCreateNestedOneWithoutAttestationsInput'; ofType: null; }; }; defaultValue: null }]; };
+ 'AttestationCreateManyInput': { kind: 'INPUT_OBJECT'; name: 'AttestationCreateManyInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'data'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'decodedDataJson'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'attester'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'timeCreated'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'expirationTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'revocationTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'refUID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'revoked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'schemaId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ipfsHash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'isOffchain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }]; };
+ 'AttestationCreateManySchemaInput': { kind: 'INPUT_OBJECT'; name: 'AttestationCreateManySchemaInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'data'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'decodedDataJson'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'attester'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'timeCreated'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'expirationTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'revocationTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'refUID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'revoked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ipfsHash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'isOffchain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }]; };
+ 'AttestationCreateManySchemaInputEnvelope': { kind: 'INPUT_OBJECT'; name: 'AttestationCreateManySchemaInputEnvelope'; isOneOf: false; inputFields: [{ name: 'data'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationCreateManySchemaInput'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'skipDuplicates'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }]; };
+ 'AttestationCreateNestedManyWithoutSchemaInput': { kind: 'INPUT_OBJECT'; name: 'AttestationCreateNestedManyWithoutSchemaInput'; isOneOf: false; inputFields: [{ name: 'create'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationCreateWithoutSchemaInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectOrCreate'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationCreateOrConnectWithoutSchemaInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'createMany'; type: { kind: 'INPUT_OBJECT'; name: 'AttestationCreateManySchemaInputEnvelope'; ofType: null; }; defaultValue: null }, { name: 'connect'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationWhereUniqueInput'; ofType: null; }; }; }; defaultValue: null }]; };
+ 'AttestationCreateOrConnectWithoutSchemaInput': { kind: 'INPUT_OBJECT'; name: 'AttestationCreateOrConnectWithoutSchemaInput'; isOneOf: false; inputFields: [{ name: 'where'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationWhereUniqueInput'; ofType: null; }; }; defaultValue: null }, { name: 'create'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationCreateWithoutSchemaInput'; ofType: null; }; }; defaultValue: null }]; };
+ 'AttestationCreateWithoutSchemaInput': { kind: 'INPUT_OBJECT'; name: 'AttestationCreateWithoutSchemaInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'data'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'decodedDataJson'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'attester'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'timeCreated'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'expirationTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'revocationTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'refUID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'revoked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'ipfsHash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'isOffchain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }]; };
+ 'AttestationGroupBy': { kind: 'OBJECT'; name: 'AttestationGroupBy'; fields: { '_avg': { name: '_avg'; type: { kind: 'OBJECT'; name: 'AttestationAvgAggregate'; ofType: null; } }; '_count': { name: '_count'; type: { kind: 'OBJECT'; name: 'AttestationCountAggregate'; ofType: null; } }; '_max': { name: '_max'; type: { kind: 'OBJECT'; name: 'AttestationMaxAggregate'; ofType: null; } }; '_min': { name: '_min'; type: { kind: 'OBJECT'; name: 'AttestationMinAggregate'; ofType: null; } }; '_sum': { name: '_sum'; type: { kind: 'OBJECT'; name: 'AttestationSumAggregate'; ofType: null; } }; 'attester': { name: 'attester'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'data': { name: 'data'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'decodedDataJson': { name: 'decodedDataJson'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'expirationTime': { name: 'expirationTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'ipfsHash': { name: 'ipfsHash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'isOffchain': { name: 'isOffchain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'recipient': { name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'refUID': { name: 'refUID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'revocable': { name: 'revocable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'revocationTime': { name: 'revocationTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'revoked': { name: 'revoked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'schemaId': { name: 'schemaId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'time': { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'timeCreated': { name: 'timeCreated'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'txid': { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
+ 'AttestationListRelationFilter': { kind: 'INPUT_OBJECT'; name: 'AttestationListRelationFilter'; isOneOf: false; inputFields: [{ name: 'every'; type: { kind: 'INPUT_OBJECT'; name: 'AttestationWhereInput'; ofType: null; }; defaultValue: null }, { name: 'some'; type: { kind: 'INPUT_OBJECT'; name: 'AttestationWhereInput'; ofType: null; }; defaultValue: null }, { name: 'none'; type: { kind: 'INPUT_OBJECT'; name: 'AttestationWhereInput'; ofType: null; }; defaultValue: null }]; };
+ 'AttestationMaxAggregate': { kind: 'OBJECT'; name: 'AttestationMaxAggregate'; fields: { 'attester': { name: 'attester'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'data': { name: 'data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'decodedDataJson': { name: 'decodedDataJson'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'expirationTime': { name: 'expirationTime'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ipfsHash': { name: 'ipfsHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'isOffchain': { name: 'isOffchain'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'recipient': { name: 'recipient'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'refUID': { name: 'refUID'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'revocable': { name: 'revocable'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'revocationTime': { name: 'revocationTime'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'revoked': { name: 'revoked'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'schemaId': { name: 'schemaId'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'time': { name: 'time'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'timeCreated': { name: 'timeCreated'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'txid': { name: 'txid'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
+ 'AttestationMaxOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'AttestationMaxOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'decodedDataJson'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'attester'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timeCreated'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'expirationTime'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revocationTime'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'refUID'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revoked'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'schemaId'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'ipfsHash'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'isOffchain'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'AttestationMinAggregate': { kind: 'OBJECT'; name: 'AttestationMinAggregate'; fields: { 'attester': { name: 'attester'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'data': { name: 'data'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'decodedDataJson': { name: 'decodedDataJson'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'expirationTime': { name: 'expirationTime'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'ipfsHash': { name: 'ipfsHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'isOffchain': { name: 'isOffchain'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'recipient': { name: 'recipient'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'refUID': { name: 'refUID'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'revocable': { name: 'revocable'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'revocationTime': { name: 'revocationTime'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'revoked': { name: 'revoked'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'schemaId': { name: 'schemaId'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'time': { name: 'time'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'timeCreated': { name: 'timeCreated'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'txid': { name: 'txid'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
+ 'AttestationMinOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'AttestationMinOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'decodedDataJson'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'attester'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timeCreated'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'expirationTime'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revocationTime'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'refUID'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revoked'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'schemaId'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'ipfsHash'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'isOffchain'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'AttestationOrderByRelationAggregateInput': { kind: 'INPUT_OBJECT'; name: 'AttestationOrderByRelationAggregateInput'; isOneOf: false; inputFields: [{ name: '_count'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'AttestationOrderByWithAggregationInput': { kind: 'INPUT_OBJECT'; name: 'AttestationOrderByWithAggregationInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'decodedDataJson'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'attester'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timeCreated'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'expirationTime'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revocationTime'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'refUID'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revoked'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'schemaId'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'ipfsHash'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'isOffchain'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: '_count'; type: { kind: 'INPUT_OBJECT'; name: 'AttestationCountOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_avg'; type: { kind: 'INPUT_OBJECT'; name: 'AttestationAvgOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_max'; type: { kind: 'INPUT_OBJECT'; name: 'AttestationMaxOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_min'; type: { kind: 'INPUT_OBJECT'; name: 'AttestationMinOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_sum'; type: { kind: 'INPUT_OBJECT'; name: 'AttestationSumOrderByAggregateInput'; ofType: null; }; defaultValue: null }]; };
+ 'AttestationOrderByWithRelationInput': { kind: 'INPUT_OBJECT'; name: 'AttestationOrderByWithRelationInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'decodedDataJson'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'attester'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timeCreated'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'expirationTime'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revocationTime'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'refUID'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revoked'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'schemaId'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'ipfsHash'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'isOffchain'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'schema'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaOrderByWithRelationInput'; ofType: null; }; defaultValue: null }]; };
+ 'AttestationScalarFieldEnum': { name: 'AttestationScalarFieldEnum'; enumValues: 'id' | 'data' | 'decodedDataJson' | 'recipient' | 'attester' | 'time' | 'timeCreated' | 'expirationTime' | 'revocationTime' | 'refUID' | 'revocable' | 'revoked' | 'txid' | 'schemaId' | 'ipfsHash' | 'isOffchain'; };
+ 'AttestationScalarWhereInput': { kind: 'INPUT_OBJECT'; name: 'AttestationScalarWhereInput'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationScalarWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationScalarWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'NOT'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationScalarWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'decodedDataJson'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'attester'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'INPUT_OBJECT'; name: 'IntFilter'; ofType: null; }; defaultValue: null }, { name: 'timeCreated'; type: { kind: 'INPUT_OBJECT'; name: 'IntFilter'; ofType: null; }; defaultValue: null }, { name: 'expirationTime'; type: { kind: 'INPUT_OBJECT'; name: 'IntFilter'; ofType: null; }; defaultValue: null }, { name: 'revocationTime'; type: { kind: 'INPUT_OBJECT'; name: 'IntFilter'; ofType: null; }; defaultValue: null }, { name: 'refUID'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFilter'; ofType: null; }; defaultValue: null }, { name: 'revoked'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFilter'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'schemaId'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'ipfsHash'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'isOffchain'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFilter'; ofType: null; }; defaultValue: null }]; };
+ 'AttestationScalarWhereWithAggregatesInput': { kind: 'INPUT_OBJECT'; name: 'AttestationScalarWhereWithAggregatesInput'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationScalarWhereWithAggregatesInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationScalarWhereWithAggregatesInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'NOT'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationScalarWhereWithAggregatesInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'decodedDataJson'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'attester'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'INPUT_OBJECT'; name: 'IntWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'timeCreated'; type: { kind: 'INPUT_OBJECT'; name: 'IntWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'expirationTime'; type: { kind: 'INPUT_OBJECT'; name: 'IntWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'revocationTime'; type: { kind: 'INPUT_OBJECT'; name: 'IntWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'refUID'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'INPUT_OBJECT'; name: 'BoolWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'revoked'; type: { kind: 'INPUT_OBJECT'; name: 'BoolWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'schemaId'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'ipfsHash'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'isOffchain'; type: { kind: 'INPUT_OBJECT'; name: 'BoolWithAggregatesFilter'; ofType: null; }; defaultValue: null }]; };
+ 'AttestationSumAggregate': { kind: 'OBJECT'; name: 'AttestationSumAggregate'; fields: { 'expirationTime': { name: 'expirationTime'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'revocationTime': { name: 'revocationTime'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'time': { name: 'time'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'timeCreated': { name: 'timeCreated'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; };
+ 'AttestationSumOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'AttestationSumOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'time'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timeCreated'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'expirationTime'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revocationTime'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'AttestationUpdateInput': { kind: 'INPUT_OBJECT'; name: 'AttestationUpdateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'decodedDataJson'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'attester'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'timeCreated'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'expirationTime'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'revocationTime'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'refUID'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'revoked'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'ipfsHash'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'isOffchain'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'schema'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaUpdateOneRequiredWithoutAttestationsNestedInput'; ofType: null; }; defaultValue: null }]; };
+ 'AttestationUpdateManyMutationInput': { kind: 'INPUT_OBJECT'; name: 'AttestationUpdateManyMutationInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'decodedDataJson'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'attester'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'timeCreated'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'expirationTime'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'revocationTime'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'refUID'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'revoked'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'ipfsHash'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'isOffchain'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }]; };
+ 'AttestationUpdateManyWithWhereWithoutSchemaInput': { kind: 'INPUT_OBJECT'; name: 'AttestationUpdateManyWithWhereWithoutSchemaInput'; isOneOf: false; inputFields: [{ name: 'where'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationScalarWhereInput'; ofType: null; }; }; defaultValue: null }, { name: 'data'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationUpdateManyMutationInput'; ofType: null; }; }; defaultValue: null }]; };
+ 'AttestationUpdateManyWithoutSchemaNestedInput': { kind: 'INPUT_OBJECT'; name: 'AttestationUpdateManyWithoutSchemaNestedInput'; isOneOf: false; inputFields: [{ name: 'create'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationCreateWithoutSchemaInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectOrCreate'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationCreateOrConnectWithoutSchemaInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'upsert'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationUpsertWithWhereUniqueWithoutSchemaInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'createMany'; type: { kind: 'INPUT_OBJECT'; name: 'AttestationCreateManySchemaInputEnvelope'; ofType: null; }; defaultValue: null }, { name: 'set'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationWhereUniqueInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'disconnect'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationWhereUniqueInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'delete'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationWhereUniqueInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'connect'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationWhereUniqueInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'update'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationUpdateWithWhereUniqueWithoutSchemaInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'updateMany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationUpdateManyWithWhereWithoutSchemaInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'deleteMany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationScalarWhereInput'; ofType: null; }; }; }; defaultValue: null }]; };
+ 'AttestationUpdateWithWhereUniqueWithoutSchemaInput': { kind: 'INPUT_OBJECT'; name: 'AttestationUpdateWithWhereUniqueWithoutSchemaInput'; isOneOf: false; inputFields: [{ name: 'where'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationWhereUniqueInput'; ofType: null; }; }; defaultValue: null }, { name: 'data'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationUpdateWithoutSchemaInput'; ofType: null; }; }; defaultValue: null }]; };
+ 'AttestationUpdateWithoutSchemaInput': { kind: 'INPUT_OBJECT'; name: 'AttestationUpdateWithoutSchemaInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'decodedDataJson'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'attester'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'timeCreated'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'expirationTime'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'revocationTime'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'refUID'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'revoked'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'ipfsHash'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'isOffchain'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }]; };
+ 'AttestationUpsertWithWhereUniqueWithoutSchemaInput': { kind: 'INPUT_OBJECT'; name: 'AttestationUpsertWithWhereUniqueWithoutSchemaInput'; isOneOf: false; inputFields: [{ name: 'where'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationWhereUniqueInput'; ofType: null; }; }; defaultValue: null }, { name: 'update'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationUpdateWithoutSchemaInput'; ofType: null; }; }; defaultValue: null }, { name: 'create'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationCreateWithoutSchemaInput'; ofType: null; }; }; defaultValue: null }]; };
+ 'AttestationWhereInput': { kind: 'INPUT_OBJECT'; name: 'AttestationWhereInput'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'NOT'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AttestationWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'data'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'decodedDataJson'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'attester'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'INPUT_OBJECT'; name: 'IntFilter'; ofType: null; }; defaultValue: null }, { name: 'timeCreated'; type: { kind: 'INPUT_OBJECT'; name: 'IntFilter'; ofType: null; }; defaultValue: null }, { name: 'expirationTime'; type: { kind: 'INPUT_OBJECT'; name: 'IntFilter'; ofType: null; }; defaultValue: null }, { name: 'revocationTime'; type: { kind: 'INPUT_OBJECT'; name: 'IntFilter'; ofType: null; }; defaultValue: null }, { name: 'refUID'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFilter'; ofType: null; }; defaultValue: null }, { name: 'revoked'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFilter'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'schemaId'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'ipfsHash'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'isOffchain'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFilter'; ofType: null; }; defaultValue: null }, { name: 'schema'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaRelationFilter'; ofType: null; }; defaultValue: null }]; };
+ 'AttestationWhereUniqueInput': { kind: 'INPUT_OBJECT'; name: 'AttestationWhereUniqueInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; };
+ 'BoolFieldUpdateOperationsInput': { kind: 'INPUT_OBJECT'; name: 'BoolFieldUpdateOperationsInput'; isOneOf: false; inputFields: [{ name: 'set'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }]; };
+ 'BoolFilter': { kind: 'INPUT_OBJECT'; name: 'BoolFilter'; isOneOf: false; inputFields: [{ name: 'equals'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'not'; type: { kind: 'INPUT_OBJECT'; name: 'NestedBoolFilter'; ofType: null; }; defaultValue: null }]; };
+ 'BoolWithAggregatesFilter': { kind: 'INPUT_OBJECT'; name: 'BoolWithAggregatesFilter'; isOneOf: false; inputFields: [{ name: 'equals'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'not'; type: { kind: 'INPUT_OBJECT'; name: 'NestedBoolWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: '_count'; type: { kind: 'INPUT_OBJECT'; name: 'NestedIntFilter'; ofType: null; }; defaultValue: null }, { name: '_min'; type: { kind: 'INPUT_OBJECT'; name: 'NestedBoolFilter'; ofType: null; }; defaultValue: null }, { name: '_max'; type: { kind: 'INPUT_OBJECT'; name: 'NestedBoolFilter'; ofType: null; }; defaultValue: null }]; };
+ 'Boolean': unknown;
+ 'EnsName': { kind: 'OBJECT'; name: 'EnsName'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
+ 'EnsNameAvgAggregate': { kind: 'OBJECT'; name: 'EnsNameAvgAggregate'; fields: { 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
+ 'EnsNameAvgOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'EnsNameAvgOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'timestamp'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'EnsNameCountAggregate': { kind: 'OBJECT'; name: 'EnsNameCountAggregate'; fields: { '_all': { name: '_all'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
+ 'EnsNameCountOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'EnsNameCountOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'EnsNameCreateInput': { kind: 'INPUT_OBJECT'; name: 'EnsNameCreateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; };
+ 'EnsNameCreateManyInput': { kind: 'INPUT_OBJECT'; name: 'EnsNameCreateManyInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; };
+ 'EnsNameGroupBy': { kind: 'OBJECT'; name: 'EnsNameGroupBy'; fields: { '_avg': { name: '_avg'; type: { kind: 'OBJECT'; name: 'EnsNameAvgAggregate'; ofType: null; } }; '_count': { name: '_count'; type: { kind: 'OBJECT'; name: 'EnsNameCountAggregate'; ofType: null; } }; '_max': { name: '_max'; type: { kind: 'OBJECT'; name: 'EnsNameMaxAggregate'; ofType: null; } }; '_min': { name: '_min'; type: { kind: 'OBJECT'; name: 'EnsNameMinAggregate'; ofType: null; } }; '_sum': { name: '_sum'; type: { kind: 'OBJECT'; name: 'EnsNameSumAggregate'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
+ 'EnsNameMaxAggregate': { kind: 'OBJECT'; name: 'EnsNameMaxAggregate'; fields: { 'id': { name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; };
+ 'EnsNameMaxOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'EnsNameMaxOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'EnsNameMinAggregate': { kind: 'OBJECT'; name: 'EnsNameMinAggregate'; fields: { 'id': { name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; };
+ 'EnsNameMinOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'EnsNameMinOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'EnsNameOrderByWithAggregationInput': { kind: 'INPUT_OBJECT'; name: 'EnsNameOrderByWithAggregationInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: '_count'; type: { kind: 'INPUT_OBJECT'; name: 'EnsNameCountOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_avg'; type: { kind: 'INPUT_OBJECT'; name: 'EnsNameAvgOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_max'; type: { kind: 'INPUT_OBJECT'; name: 'EnsNameMaxOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_min'; type: { kind: 'INPUT_OBJECT'; name: 'EnsNameMinOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_sum'; type: { kind: 'INPUT_OBJECT'; name: 'EnsNameSumOrderByAggregateInput'; ofType: null; }; defaultValue: null }]; };
+ 'EnsNameOrderByWithRelationInput': { kind: 'INPUT_OBJECT'; name: 'EnsNameOrderByWithRelationInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'EnsNameScalarFieldEnum': { name: 'EnsNameScalarFieldEnum'; enumValues: 'id' | 'name' | 'timestamp'; };
+ 'EnsNameScalarWhereWithAggregatesInput': { kind: 'INPUT_OBJECT'; name: 'EnsNameScalarWhereWithAggregatesInput'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EnsNameScalarWhereWithAggregatesInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EnsNameScalarWhereWithAggregatesInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'NOT'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EnsNameScalarWhereWithAggregatesInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'IntWithAggregatesFilter'; ofType: null; }; defaultValue: null }]; };
+ 'EnsNameSumAggregate': { kind: 'OBJECT'; name: 'EnsNameSumAggregate'; fields: { 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; };
+ 'EnsNameSumOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'EnsNameSumOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'timestamp'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'EnsNameUpdateInput': { kind: 'INPUT_OBJECT'; name: 'EnsNameUpdateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }]; };
+ 'EnsNameUpdateManyMutationInput': { kind: 'INPUT_OBJECT'; name: 'EnsNameUpdateManyMutationInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }]; };
+ 'EnsNameWhereInput': { kind: 'INPUT_OBJECT'; name: 'EnsNameWhereInput'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EnsNameWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EnsNameWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'NOT'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'EnsNameWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'IntFilter'; ofType: null; }; defaultValue: null }]; };
+ 'EnsNameWhereUniqueInput': { kind: 'INPUT_OBJECT'; name: 'EnsNameWhereUniqueInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; };
+ 'Float': unknown;
+ 'Int': unknown;
+ 'IntFieldUpdateOperationsInput': { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; isOneOf: false; inputFields: [{ name: 'set'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'increment'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'decrement'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'multiply'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'divide'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; };
+ 'IntFilter': { kind: 'INPUT_OBJECT'; name: 'IntFilter'; isOneOf: false; inputFields: [{ name: 'equals'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'notIn'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'not'; type: { kind: 'INPUT_OBJECT'; name: 'NestedIntFilter'; ofType: null; }; defaultValue: null }]; };
+ 'IntWithAggregatesFilter': { kind: 'INPUT_OBJECT'; name: 'IntWithAggregatesFilter'; isOneOf: false; inputFields: [{ name: 'equals'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'notIn'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'not'; type: { kind: 'INPUT_OBJECT'; name: 'NestedIntWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: '_count'; type: { kind: 'INPUT_OBJECT'; name: 'NestedIntFilter'; ofType: null; }; defaultValue: null }, { name: '_avg'; type: { kind: 'INPUT_OBJECT'; name: 'NestedFloatFilter'; ofType: null; }; defaultValue: null }, { name: '_sum'; type: { kind: 'INPUT_OBJECT'; name: 'NestedIntFilter'; ofType: null; }; defaultValue: null }, { name: '_min'; type: { kind: 'INPUT_OBJECT'; name: 'NestedIntFilter'; ofType: null; }; defaultValue: null }, { name: '_max'; type: { kind: 'INPUT_OBJECT'; name: 'NestedIntFilter'; ofType: null; }; defaultValue: null }]; };
+ 'Mutation': { kind: 'OBJECT'; name: 'Mutation'; fields: { 'createManyAttestation': { name: 'createManyAttestation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AffectedRowsOutput'; ofType: null; }; } }; 'createManyEnsName': { name: 'createManyEnsName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AffectedRowsOutput'; ofType: null; }; } }; 'createManyOffchainRevocation': { name: 'createManyOffchainRevocation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AffectedRowsOutput'; ofType: null; }; } }; 'createManySchema': { name: 'createManySchema'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AffectedRowsOutput'; ofType: null; }; } }; 'createManySchemaName': { name: 'createManySchemaName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AffectedRowsOutput'; ofType: null; }; } }; 'createManyServiceStat': { name: 'createManyServiceStat'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AffectedRowsOutput'; ofType: null; }; } }; 'createManyTimestamp': { name: 'createManyTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AffectedRowsOutput'; ofType: null; }; } }; 'createOneAttestation': { name: 'createOneAttestation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Attestation'; ofType: null; }; } }; 'createOneEnsName': { name: 'createOneEnsName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EnsName'; ofType: null; }; } }; 'createOneOffchainRevocation': { name: 'createOneOffchainRevocation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OffchainRevocation'; ofType: null; }; } }; 'createOneSchema': { name: 'createOneSchema'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Schema'; ofType: null; }; } }; 'createOneSchemaName': { name: 'createOneSchemaName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SchemaName'; ofType: null; }; } }; 'createOneServiceStat': { name: 'createOneServiceStat'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ServiceStat'; ofType: null; }; } }; 'createOneTimestamp': { name: 'createOneTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Timestamp'; ofType: null; }; } }; 'deleteManyAttestation': { name: 'deleteManyAttestation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AffectedRowsOutput'; ofType: null; }; } }; 'deleteManyEnsName': { name: 'deleteManyEnsName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AffectedRowsOutput'; ofType: null; }; } }; 'deleteManyOffchainRevocation': { name: 'deleteManyOffchainRevocation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AffectedRowsOutput'; ofType: null; }; } }; 'deleteManySchema': { name: 'deleteManySchema'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AffectedRowsOutput'; ofType: null; }; } }; 'deleteManySchemaName': { name: 'deleteManySchemaName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AffectedRowsOutput'; ofType: null; }; } }; 'deleteManyServiceStat': { name: 'deleteManyServiceStat'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AffectedRowsOutput'; ofType: null; }; } }; 'deleteManyTimestamp': { name: 'deleteManyTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AffectedRowsOutput'; ofType: null; }; } }; 'deleteOneAttestation': { name: 'deleteOneAttestation'; type: { kind: 'OBJECT'; name: 'Attestation'; ofType: null; } }; 'deleteOneEnsName': { name: 'deleteOneEnsName'; type: { kind: 'OBJECT'; name: 'EnsName'; ofType: null; } }; 'deleteOneOffchainRevocation': { name: 'deleteOneOffchainRevocation'; type: { kind: 'OBJECT'; name: 'OffchainRevocation'; ofType: null; } }; 'deleteOneSchema': { name: 'deleteOneSchema'; type: { kind: 'OBJECT'; name: 'Schema'; ofType: null; } }; 'deleteOneSchemaName': { name: 'deleteOneSchemaName'; type: { kind: 'OBJECT'; name: 'SchemaName'; ofType: null; } }; 'deleteOneServiceStat': { name: 'deleteOneServiceStat'; type: { kind: 'OBJECT'; name: 'ServiceStat'; ofType: null; } }; 'deleteOneTimestamp': { name: 'deleteOneTimestamp'; type: { kind: 'OBJECT'; name: 'Timestamp'; ofType: null; } }; 'updateManyAttestation': { name: 'updateManyAttestation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AffectedRowsOutput'; ofType: null; }; } }; 'updateManyEnsName': { name: 'updateManyEnsName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AffectedRowsOutput'; ofType: null; }; } }; 'updateManyOffchainRevocation': { name: 'updateManyOffchainRevocation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AffectedRowsOutput'; ofType: null; }; } }; 'updateManySchema': { name: 'updateManySchema'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AffectedRowsOutput'; ofType: null; }; } }; 'updateManySchemaName': { name: 'updateManySchemaName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AffectedRowsOutput'; ofType: null; }; } }; 'updateManyServiceStat': { name: 'updateManyServiceStat'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AffectedRowsOutput'; ofType: null; }; } }; 'updateManyTimestamp': { name: 'updateManyTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AffectedRowsOutput'; ofType: null; }; } }; 'updateOneAttestation': { name: 'updateOneAttestation'; type: { kind: 'OBJECT'; name: 'Attestation'; ofType: null; } }; 'updateOneEnsName': { name: 'updateOneEnsName'; type: { kind: 'OBJECT'; name: 'EnsName'; ofType: null; } }; 'updateOneOffchainRevocation': { name: 'updateOneOffchainRevocation'; type: { kind: 'OBJECT'; name: 'OffchainRevocation'; ofType: null; } }; 'updateOneSchema': { name: 'updateOneSchema'; type: { kind: 'OBJECT'; name: 'Schema'; ofType: null; } }; 'updateOneSchemaName': { name: 'updateOneSchemaName'; type: { kind: 'OBJECT'; name: 'SchemaName'; ofType: null; } }; 'updateOneServiceStat': { name: 'updateOneServiceStat'; type: { kind: 'OBJECT'; name: 'ServiceStat'; ofType: null; } }; 'updateOneTimestamp': { name: 'updateOneTimestamp'; type: { kind: 'OBJECT'; name: 'Timestamp'; ofType: null; } }; 'upsertOneAttestation': { name: 'upsertOneAttestation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Attestation'; ofType: null; }; } }; 'upsertOneEnsName': { name: 'upsertOneEnsName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EnsName'; ofType: null; }; } }; 'upsertOneOffchainRevocation': { name: 'upsertOneOffchainRevocation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OffchainRevocation'; ofType: null; }; } }; 'upsertOneSchema': { name: 'upsertOneSchema'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Schema'; ofType: null; }; } }; 'upsertOneSchemaName': { name: 'upsertOneSchemaName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SchemaName'; ofType: null; }; } }; 'upsertOneServiceStat': { name: 'upsertOneServiceStat'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ServiceStat'; ofType: null; }; } }; 'upsertOneTimestamp': { name: 'upsertOneTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Timestamp'; ofType: null; }; } }; }; };
+ 'NestedBoolFilter': { kind: 'INPUT_OBJECT'; name: 'NestedBoolFilter'; isOneOf: false; inputFields: [{ name: 'equals'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'not'; type: { kind: 'INPUT_OBJECT'; name: 'NestedBoolFilter'; ofType: null; }; defaultValue: null }]; };
+ 'NestedBoolWithAggregatesFilter': { kind: 'INPUT_OBJECT'; name: 'NestedBoolWithAggregatesFilter'; isOneOf: false; inputFields: [{ name: 'equals'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'not'; type: { kind: 'INPUT_OBJECT'; name: 'NestedBoolWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: '_count'; type: { kind: 'INPUT_OBJECT'; name: 'NestedIntFilter'; ofType: null; }; defaultValue: null }, { name: '_min'; type: { kind: 'INPUT_OBJECT'; name: 'NestedBoolFilter'; ofType: null; }; defaultValue: null }, { name: '_max'; type: { kind: 'INPUT_OBJECT'; name: 'NestedBoolFilter'; ofType: null; }; defaultValue: null }]; };
+ 'NestedFloatFilter': { kind: 'INPUT_OBJECT'; name: 'NestedFloatFilter'; isOneOf: false; inputFields: [{ name: 'equals'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; }; defaultValue: null }, { name: 'notIn'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; }; }; defaultValue: null }, { name: 'lt'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'lte'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'gt'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'gte'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; }; defaultValue: null }, { name: 'not'; type: { kind: 'INPUT_OBJECT'; name: 'NestedFloatFilter'; ofType: null; }; defaultValue: null }]; };
+ 'NestedIntFilter': { kind: 'INPUT_OBJECT'; name: 'NestedIntFilter'; isOneOf: false; inputFields: [{ name: 'equals'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'notIn'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'not'; type: { kind: 'INPUT_OBJECT'; name: 'NestedIntFilter'; ofType: null; }; defaultValue: null }]; };
+ 'NestedIntWithAggregatesFilter': { kind: 'INPUT_OBJECT'; name: 'NestedIntWithAggregatesFilter'; isOneOf: false; inputFields: [{ name: 'equals'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'notIn'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'not'; type: { kind: 'INPUT_OBJECT'; name: 'NestedIntWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: '_count'; type: { kind: 'INPUT_OBJECT'; name: 'NestedIntFilter'; ofType: null; }; defaultValue: null }, { name: '_avg'; type: { kind: 'INPUT_OBJECT'; name: 'NestedFloatFilter'; ofType: null; }; defaultValue: null }, { name: '_sum'; type: { kind: 'INPUT_OBJECT'; name: 'NestedIntFilter'; ofType: null; }; defaultValue: null }, { name: '_min'; type: { kind: 'INPUT_OBJECT'; name: 'NestedIntFilter'; ofType: null; }; defaultValue: null }, { name: '_max'; type: { kind: 'INPUT_OBJECT'; name: 'NestedIntFilter'; ofType: null; }; defaultValue: null }]; };
+ 'NestedStringFilter': { kind: 'INPUT_OBJECT'; name: 'NestedStringFilter'; isOneOf: false; inputFields: [{ name: 'equals'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'notIn'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'startsWith'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'endsWith'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'not'; type: { kind: 'INPUT_OBJECT'; name: 'NestedStringFilter'; ofType: null; }; defaultValue: null }]; };
+ 'NestedStringWithAggregatesFilter': { kind: 'INPUT_OBJECT'; name: 'NestedStringWithAggregatesFilter'; isOneOf: false; inputFields: [{ name: 'equals'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'notIn'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'startsWith'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'endsWith'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'not'; type: { kind: 'INPUT_OBJECT'; name: 'NestedStringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: '_count'; type: { kind: 'INPUT_OBJECT'; name: 'NestedIntFilter'; ofType: null; }; defaultValue: null }, { name: '_min'; type: { kind: 'INPUT_OBJECT'; name: 'NestedStringFilter'; ofType: null; }; defaultValue: null }, { name: '_max'; type: { kind: 'INPUT_OBJECT'; name: 'NestedStringFilter'; ofType: null; }; defaultValue: null }]; };
+ 'OffchainRevocation': { kind: 'OBJECT'; name: 'OffchainRevocation'; fields: { 'from': { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'txid': { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'uid': { name: 'uid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
+ 'OffchainRevocationAvgAggregate': { kind: 'OBJECT'; name: 'OffchainRevocationAvgAggregate'; fields: { 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
+ 'OffchainRevocationAvgOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationAvgOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'timestamp'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'OffchainRevocationCountAggregate': { kind: 'OBJECT'; name: 'OffchainRevocationCountAggregate'; fields: { '_all': { name: '_all'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'from': { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'txid': { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'uid': { name: 'uid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
+ 'OffchainRevocationCountOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationCountOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'uid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'OffchainRevocationCreateInput': { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationCreateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'uid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; };
+ 'OffchainRevocationCreateManyInput': { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationCreateManyInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'uid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; };
+ 'OffchainRevocationGroupBy': { kind: 'OBJECT'; name: 'OffchainRevocationGroupBy'; fields: { '_avg': { name: '_avg'; type: { kind: 'OBJECT'; name: 'OffchainRevocationAvgAggregate'; ofType: null; } }; '_count': { name: '_count'; type: { kind: 'OBJECT'; name: 'OffchainRevocationCountAggregate'; ofType: null; } }; '_max': { name: '_max'; type: { kind: 'OBJECT'; name: 'OffchainRevocationMaxAggregate'; ofType: null; } }; '_min': { name: '_min'; type: { kind: 'OBJECT'; name: 'OffchainRevocationMinAggregate'; ofType: null; } }; '_sum': { name: '_sum'; type: { kind: 'OBJECT'; name: 'OffchainRevocationSumAggregate'; ofType: null; } }; 'from': { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'txid': { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'uid': { name: 'uid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
+ 'OffchainRevocationMaxAggregate': { kind: 'OBJECT'; name: 'OffchainRevocationMaxAggregate'; fields: { 'from': { name: 'from'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'txid': { name: 'txid'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'uid': { name: 'uid'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
+ 'OffchainRevocationMaxOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationMaxOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'uid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'OffchainRevocationMinAggregate': { kind: 'OBJECT'; name: 'OffchainRevocationMinAggregate'; fields: { 'from': { name: 'from'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'txid': { name: 'txid'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'uid': { name: 'uid'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
+ 'OffchainRevocationMinOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationMinOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'uid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'OffchainRevocationOrderByWithAggregationInput': { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationOrderByWithAggregationInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'uid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: '_count'; type: { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationCountOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_avg'; type: { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationAvgOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_max'; type: { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationMaxOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_min'; type: { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationMinOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_sum'; type: { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationSumOrderByAggregateInput'; ofType: null; }; defaultValue: null }]; };
+ 'OffchainRevocationOrderByWithRelationInput': { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationOrderByWithRelationInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'uid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'OffchainRevocationScalarFieldEnum': { name: 'OffchainRevocationScalarFieldEnum'; enumValues: 'id' | 'from' | 'uid' | 'txid' | 'timestamp'; };
+ 'OffchainRevocationScalarWhereWithAggregatesInput': { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationScalarWhereWithAggregatesInput'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationScalarWhereWithAggregatesInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationScalarWhereWithAggregatesInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'NOT'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationScalarWhereWithAggregatesInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'uid'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'IntWithAggregatesFilter'; ofType: null; }; defaultValue: null }]; };
+ 'OffchainRevocationSumAggregate': { kind: 'OBJECT'; name: 'OffchainRevocationSumAggregate'; fields: { 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; };
+ 'OffchainRevocationSumOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationSumOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'timestamp'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'OffchainRevocationUpdateInput': { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationUpdateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'uid'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }]; };
+ 'OffchainRevocationUpdateManyMutationInput': { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationUpdateManyMutationInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'uid'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }]; };
+ 'OffchainRevocationWhereInput': { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationWhereInput'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'NOT'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'uid'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'IntFilter'; ofType: null; }; defaultValue: null }]; };
+ 'OffchainRevocationWhereUniqueInput': { kind: 'INPUT_OBJECT'; name: 'OffchainRevocationWhereUniqueInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; };
+ 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { 'aggregateAttestation': { name: 'aggregateAttestation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AggregateAttestation'; ofType: null; }; } }; 'aggregateEnsName': { name: 'aggregateEnsName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AggregateEnsName'; ofType: null; }; } }; 'aggregateOffchainRevocation': { name: 'aggregateOffchainRevocation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AggregateOffchainRevocation'; ofType: null; }; } }; 'aggregateSchema': { name: 'aggregateSchema'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AggregateSchema'; ofType: null; }; } }; 'aggregateSchemaName': { name: 'aggregateSchemaName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AggregateSchemaName'; ofType: null; }; } }; 'aggregateServiceStat': { name: 'aggregateServiceStat'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AggregateServiceStat'; ofType: null; }; } }; 'aggregateTimestamp': { name: 'aggregateTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AggregateTimestamp'; ofType: null; }; } }; 'attestation': { name: 'attestation'; type: { kind: 'OBJECT'; name: 'Attestation'; ofType: null; } }; 'attestations': { name: 'attestations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Attestation'; ofType: null; }; }; }; } }; 'ensName': { name: 'ensName'; type: { kind: 'OBJECT'; name: 'EnsName'; ofType: null; } }; 'ensNames': { name: 'ensNames'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EnsName'; ofType: null; }; }; }; } }; 'findFirstAttestation': { name: 'findFirstAttestation'; type: { kind: 'OBJECT'; name: 'Attestation'; ofType: null; } }; 'findFirstAttestationOrThrow': { name: 'findFirstAttestationOrThrow'; type: { kind: 'OBJECT'; name: 'Attestation'; ofType: null; } }; 'findFirstEnsName': { name: 'findFirstEnsName'; type: { kind: 'OBJECT'; name: 'EnsName'; ofType: null; } }; 'findFirstEnsNameOrThrow': { name: 'findFirstEnsNameOrThrow'; type: { kind: 'OBJECT'; name: 'EnsName'; ofType: null; } }; 'findFirstOffchainRevocation': { name: 'findFirstOffchainRevocation'; type: { kind: 'OBJECT'; name: 'OffchainRevocation'; ofType: null; } }; 'findFirstOffchainRevocationOrThrow': { name: 'findFirstOffchainRevocationOrThrow'; type: { kind: 'OBJECT'; name: 'OffchainRevocation'; ofType: null; } }; 'findFirstSchema': { name: 'findFirstSchema'; type: { kind: 'OBJECT'; name: 'Schema'; ofType: null; } }; 'findFirstSchemaName': { name: 'findFirstSchemaName'; type: { kind: 'OBJECT'; name: 'SchemaName'; ofType: null; } }; 'findFirstSchemaNameOrThrow': { name: 'findFirstSchemaNameOrThrow'; type: { kind: 'OBJECT'; name: 'SchemaName'; ofType: null; } }; 'findFirstSchemaOrThrow': { name: 'findFirstSchemaOrThrow'; type: { kind: 'OBJECT'; name: 'Schema'; ofType: null; } }; 'findFirstServiceStat': { name: 'findFirstServiceStat'; type: { kind: 'OBJECT'; name: 'ServiceStat'; ofType: null; } }; 'findFirstServiceStatOrThrow': { name: 'findFirstServiceStatOrThrow'; type: { kind: 'OBJECT'; name: 'ServiceStat'; ofType: null; } }; 'findFirstTimestamp': { name: 'findFirstTimestamp'; type: { kind: 'OBJECT'; name: 'Timestamp'; ofType: null; } }; 'findFirstTimestampOrThrow': { name: 'findFirstTimestampOrThrow'; type: { kind: 'OBJECT'; name: 'Timestamp'; ofType: null; } }; 'getAttestation': { name: 'getAttestation'; type: { kind: 'OBJECT'; name: 'Attestation'; ofType: null; } }; 'getEnsName': { name: 'getEnsName'; type: { kind: 'OBJECT'; name: 'EnsName'; ofType: null; } }; 'getOffchainRevocation': { name: 'getOffchainRevocation'; type: { kind: 'OBJECT'; name: 'OffchainRevocation'; ofType: null; } }; 'getSchema': { name: 'getSchema'; type: { kind: 'OBJECT'; name: 'Schema'; ofType: null; } }; 'getSchemaName': { name: 'getSchemaName'; type: { kind: 'OBJECT'; name: 'SchemaName'; ofType: null; } }; 'getServiceStat': { name: 'getServiceStat'; type: { kind: 'OBJECT'; name: 'ServiceStat'; ofType: null; } }; 'getTimestamp': { name: 'getTimestamp'; type: { kind: 'OBJECT'; name: 'Timestamp'; ofType: null; } }; 'groupByAttestation': { name: 'groupByAttestation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AttestationGroupBy'; ofType: null; }; }; }; } }; 'groupByEnsName': { name: 'groupByEnsName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EnsNameGroupBy'; ofType: null; }; }; }; } }; 'groupByOffchainRevocation': { name: 'groupByOffchainRevocation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OffchainRevocationGroupBy'; ofType: null; }; }; }; } }; 'groupBySchema': { name: 'groupBySchema'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SchemaGroupBy'; ofType: null; }; }; }; } }; 'groupBySchemaName': { name: 'groupBySchemaName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SchemaNameGroupBy'; ofType: null; }; }; }; } }; 'groupByServiceStat': { name: 'groupByServiceStat'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ServiceStatGroupBy'; ofType: null; }; }; }; } }; 'groupByTimestamp': { name: 'groupByTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TimestampGroupBy'; ofType: null; }; }; }; } }; 'offchainRevocation': { name: 'offchainRevocation'; type: { kind: 'OBJECT'; name: 'OffchainRevocation'; ofType: null; } }; 'offchainRevocations': { name: 'offchainRevocations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OffchainRevocation'; ofType: null; }; }; }; } }; 'schema': { name: 'schema'; type: { kind: 'OBJECT'; name: 'Schema'; ofType: null; } }; 'schemaName': { name: 'schemaName'; type: { kind: 'OBJECT'; name: 'SchemaName'; ofType: null; } }; 'schemaNames': { name: 'schemaNames'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SchemaName'; ofType: null; }; }; }; } }; 'schemata': { name: 'schemata'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Schema'; ofType: null; }; }; }; } }; 'serviceStat': { name: 'serviceStat'; type: { kind: 'OBJECT'; name: 'ServiceStat'; ofType: null; } }; 'serviceStats': { name: 'serviceStats'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ServiceStat'; ofType: null; }; }; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'OBJECT'; name: 'Timestamp'; ofType: null; } }; 'timestamps': { name: 'timestamps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Timestamp'; ofType: null; }; }; }; } }; }; };
+ 'QueryMode': { name: 'QueryMode'; enumValues: 'default' | 'insensitive'; };
+ 'Schema': { kind: 'OBJECT'; name: 'Schema'; fields: { '_count': { name: '_count'; type: { kind: 'OBJECT'; name: 'SchemaCount'; ofType: null; } }; 'attestations': { name: 'attestations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Attestation'; ofType: null; }; }; }; } }; 'creator': { name: 'creator'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'index': { name: 'index'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'resolver': { name: 'resolver'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'revocable': { name: 'revocable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'schema': { name: 'schema'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'schemaNames': { name: 'schemaNames'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SchemaName'; ofType: null; }; }; }; } }; 'time': { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'txid': { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
+ 'SchemaAvgAggregate': { kind: 'OBJECT'; name: 'SchemaAvgAggregate'; fields: { 'time': { name: 'time'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
+ 'SchemaAvgOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'SchemaAvgOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'time'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaCount': { kind: 'OBJECT'; name: 'SchemaCount'; fields: { 'attestations': { name: 'attestations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'schemaNames': { name: 'schemaNames'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
+ 'SchemaCountAggregate': { kind: 'OBJECT'; name: 'SchemaCountAggregate'; fields: { '_all': { name: '_all'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'creator': { name: 'creator'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'index': { name: 'index'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'resolver': { name: 'resolver'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'revocable': { name: 'revocable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'schema': { name: 'schema'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'time': { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'txid': { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
+ 'SchemaCountOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'SchemaCountOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'schema'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'creator'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'resolver'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'index'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaCreateInput': { kind: 'INPUT_OBJECT'; name: 'SchemaCreateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'schema'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'creator'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'resolver'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'index'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'attestations'; type: { kind: 'INPUT_OBJECT'; name: 'AttestationCreateNestedManyWithoutSchemaInput'; ofType: null; }; defaultValue: null }, { name: 'schemaNames'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaNameCreateNestedManyWithoutSchemaInput'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaCreateManyInput': { kind: 'INPUT_OBJECT'; name: 'SchemaCreateManyInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'schema'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'creator'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'resolver'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'index'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; };
+ 'SchemaCreateNestedOneWithoutAttestationsInput': { kind: 'INPUT_OBJECT'; name: 'SchemaCreateNestedOneWithoutAttestationsInput'; isOneOf: false; inputFields: [{ name: 'create'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaCreateWithoutAttestationsInput'; ofType: null; }; defaultValue: null }, { name: 'connectOrCreate'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaCreateOrConnectWithoutAttestationsInput'; ofType: null; }; defaultValue: null }, { name: 'connect'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaWhereUniqueInput'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaCreateNestedOneWithoutSchemaNamesInput': { kind: 'INPUT_OBJECT'; name: 'SchemaCreateNestedOneWithoutSchemaNamesInput'; isOneOf: false; inputFields: [{ name: 'create'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaCreateWithoutSchemaNamesInput'; ofType: null; }; defaultValue: null }, { name: 'connectOrCreate'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaCreateOrConnectWithoutSchemaNamesInput'; ofType: null; }; defaultValue: null }, { name: 'connect'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaWhereUniqueInput'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaCreateOrConnectWithoutAttestationsInput': { kind: 'INPUT_OBJECT'; name: 'SchemaCreateOrConnectWithoutAttestationsInput'; isOneOf: false; inputFields: [{ name: 'where'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaWhereUniqueInput'; ofType: null; }; }; defaultValue: null }, { name: 'create'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaCreateWithoutAttestationsInput'; ofType: null; }; }; defaultValue: null }]; };
+ 'SchemaCreateOrConnectWithoutSchemaNamesInput': { kind: 'INPUT_OBJECT'; name: 'SchemaCreateOrConnectWithoutSchemaNamesInput'; isOneOf: false; inputFields: [{ name: 'where'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaWhereUniqueInput'; ofType: null; }; }; defaultValue: null }, { name: 'create'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaCreateWithoutSchemaNamesInput'; ofType: null; }; }; defaultValue: null }]; };
+ 'SchemaCreateWithoutAttestationsInput': { kind: 'INPUT_OBJECT'; name: 'SchemaCreateWithoutAttestationsInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'schema'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'creator'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'resolver'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'index'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'schemaNames'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaNameCreateNestedManyWithoutSchemaInput'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaCreateWithoutSchemaNamesInput': { kind: 'INPUT_OBJECT'; name: 'SchemaCreateWithoutSchemaNamesInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'schema'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'creator'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'resolver'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'index'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'attestations'; type: { kind: 'INPUT_OBJECT'; name: 'AttestationCreateNestedManyWithoutSchemaInput'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaGroupBy': { kind: 'OBJECT'; name: 'SchemaGroupBy'; fields: { '_avg': { name: '_avg'; type: { kind: 'OBJECT'; name: 'SchemaAvgAggregate'; ofType: null; } }; '_count': { name: '_count'; type: { kind: 'OBJECT'; name: 'SchemaCountAggregate'; ofType: null; } }; '_max': { name: '_max'; type: { kind: 'OBJECT'; name: 'SchemaMaxAggregate'; ofType: null; } }; '_min': { name: '_min'; type: { kind: 'OBJECT'; name: 'SchemaMinAggregate'; ofType: null; } }; '_sum': { name: '_sum'; type: { kind: 'OBJECT'; name: 'SchemaSumAggregate'; ofType: null; } }; 'creator': { name: 'creator'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'index': { name: 'index'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'resolver': { name: 'resolver'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'revocable': { name: 'revocable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'schema': { name: 'schema'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'time': { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'txid': { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
+ 'SchemaMaxAggregate': { kind: 'OBJECT'; name: 'SchemaMaxAggregate'; fields: { 'creator': { name: 'creator'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'index': { name: 'index'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'resolver': { name: 'resolver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'revocable': { name: 'revocable'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'schema': { name: 'schema'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'time': { name: 'time'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'txid': { name: 'txid'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
+ 'SchemaMaxOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'SchemaMaxOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'schema'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'creator'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'resolver'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'index'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaMinAggregate': { kind: 'OBJECT'; name: 'SchemaMinAggregate'; fields: { 'creator': { name: 'creator'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'index': { name: 'index'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'resolver': { name: 'resolver'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'revocable': { name: 'revocable'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'schema': { name: 'schema'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'time': { name: 'time'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'txid': { name: 'txid'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
+ 'SchemaMinOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'SchemaMinOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'schema'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'creator'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'resolver'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'index'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaName': { kind: 'OBJECT'; name: 'SchemaName'; fields: { 'attesterAddress': { name: 'attesterAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'isCreator': { name: 'isCreator'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'schema': { name: 'schema'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Schema'; ofType: null; }; } }; 'schemaId': { name: 'schemaId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'time': { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
+ 'SchemaNameAvgAggregate': { kind: 'OBJECT'; name: 'SchemaNameAvgAggregate'; fields: { 'time': { name: 'time'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
+ 'SchemaNameAvgOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameAvgOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'time'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaNameCountAggregate': { kind: 'OBJECT'; name: 'SchemaNameCountAggregate'; fields: { '_all': { name: '_all'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'attesterAddress': { name: 'attesterAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'isCreator': { name: 'isCreator'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'schemaId': { name: 'schemaId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'time': { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
+ 'SchemaNameCountOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameCountOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'schemaId'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'attesterAddress'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'isCreator'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaNameCreateInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameCreateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'attesterAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'isCreator'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'schema'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaCreateNestedOneWithoutSchemaNamesInput'; ofType: null; }; }; defaultValue: null }]; };
+ 'SchemaNameCreateManyInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameCreateManyInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'schemaId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'attesterAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'isCreator'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }]; };
+ 'SchemaNameCreateManySchemaInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameCreateManySchemaInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'attesterAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'isCreator'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }]; };
+ 'SchemaNameCreateManySchemaInputEnvelope': { kind: 'INPUT_OBJECT'; name: 'SchemaNameCreateManySchemaInputEnvelope'; isOneOf: false; inputFields: [{ name: 'data'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameCreateManySchemaInput'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'skipDuplicates'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaNameCreateNestedManyWithoutSchemaInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameCreateNestedManyWithoutSchemaInput'; isOneOf: false; inputFields: [{ name: 'create'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameCreateWithoutSchemaInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectOrCreate'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameCreateOrConnectWithoutSchemaInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'createMany'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaNameCreateManySchemaInputEnvelope'; ofType: null; }; defaultValue: null }, { name: 'connect'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameWhereUniqueInput'; ofType: null; }; }; }; defaultValue: null }]; };
+ 'SchemaNameCreateOrConnectWithoutSchemaInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameCreateOrConnectWithoutSchemaInput'; isOneOf: false; inputFields: [{ name: 'where'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameWhereUniqueInput'; ofType: null; }; }; defaultValue: null }, { name: 'create'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameCreateWithoutSchemaInput'; ofType: null; }; }; defaultValue: null }]; };
+ 'SchemaNameCreateWithoutSchemaInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameCreateWithoutSchemaInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'attesterAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }, { name: 'isCreator'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }]; };
+ 'SchemaNameGroupBy': { kind: 'OBJECT'; name: 'SchemaNameGroupBy'; fields: { '_avg': { name: '_avg'; type: { kind: 'OBJECT'; name: 'SchemaNameAvgAggregate'; ofType: null; } }; '_count': { name: '_count'; type: { kind: 'OBJECT'; name: 'SchemaNameCountAggregate'; ofType: null; } }; '_max': { name: '_max'; type: { kind: 'OBJECT'; name: 'SchemaNameMaxAggregate'; ofType: null; } }; '_min': { name: '_min'; type: { kind: 'OBJECT'; name: 'SchemaNameMinAggregate'; ofType: null; } }; '_sum': { name: '_sum'; type: { kind: 'OBJECT'; name: 'SchemaNameSumAggregate'; ofType: null; } }; 'attesterAddress': { name: 'attesterAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'isCreator': { name: 'isCreator'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'schemaId': { name: 'schemaId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'time': { name: 'time'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
+ 'SchemaNameListRelationFilter': { kind: 'INPUT_OBJECT'; name: 'SchemaNameListRelationFilter'; isOneOf: false; inputFields: [{ name: 'every'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaNameWhereInput'; ofType: null; }; defaultValue: null }, { name: 'some'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaNameWhereInput'; ofType: null; }; defaultValue: null }, { name: 'none'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaNameWhereInput'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaNameMaxAggregate': { kind: 'OBJECT'; name: 'SchemaNameMaxAggregate'; fields: { 'attesterAddress': { name: 'attesterAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'isCreator': { name: 'isCreator'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'schemaId': { name: 'schemaId'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'time': { name: 'time'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; };
+ 'SchemaNameMaxOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameMaxOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'schemaId'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'attesterAddress'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'isCreator'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaNameMinAggregate': { kind: 'OBJECT'; name: 'SchemaNameMinAggregate'; fields: { 'attesterAddress': { name: 'attesterAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'isCreator': { name: 'isCreator'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'schemaId': { name: 'schemaId'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'time': { name: 'time'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; };
+ 'SchemaNameMinOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameMinOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'schemaId'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'attesterAddress'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'isCreator'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaNameOrderByRelationAggregateInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameOrderByRelationAggregateInput'; isOneOf: false; inputFields: [{ name: '_count'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaNameOrderByWithAggregationInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameOrderByWithAggregationInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'schemaId'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'attesterAddress'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'isCreator'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: '_count'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaNameCountOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_avg'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaNameAvgOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_max'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaNameMaxOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_min'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaNameMinOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_sum'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaNameSumOrderByAggregateInput'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaNameOrderByWithRelationInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameOrderByWithRelationInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'schemaId'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'attesterAddress'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'isCreator'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'schema'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaOrderByWithRelationInput'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaNameScalarFieldEnum': { name: 'SchemaNameScalarFieldEnum'; enumValues: 'id' | 'schemaId' | 'attesterAddress' | 'name' | 'time' | 'isCreator'; };
+ 'SchemaNameScalarWhereInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameScalarWhereInput'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameScalarWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameScalarWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'NOT'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameScalarWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'schemaId'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'attesterAddress'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'INPUT_OBJECT'; name: 'IntFilter'; ofType: null; }; defaultValue: null }, { name: 'isCreator'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFilter'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaNameScalarWhereWithAggregatesInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameScalarWhereWithAggregatesInput'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameScalarWhereWithAggregatesInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameScalarWhereWithAggregatesInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'NOT'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameScalarWhereWithAggregatesInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'schemaId'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'attesterAddress'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'INPUT_OBJECT'; name: 'IntWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'isCreator'; type: { kind: 'INPUT_OBJECT'; name: 'BoolWithAggregatesFilter'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaNameSumAggregate': { kind: 'OBJECT'; name: 'SchemaNameSumAggregate'; fields: { 'time': { name: 'time'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; };
+ 'SchemaNameSumOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameSumOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'time'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaNameUpdateInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameUpdateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'attesterAddress'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'isCreator'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'schema'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaUpdateOneRequiredWithoutSchemaNamesNestedInput'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaNameUpdateManyMutationInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameUpdateManyMutationInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'attesterAddress'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'isCreator'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaNameUpdateManyWithWhereWithoutSchemaInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameUpdateManyWithWhereWithoutSchemaInput'; isOneOf: false; inputFields: [{ name: 'where'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameScalarWhereInput'; ofType: null; }; }; defaultValue: null }, { name: 'data'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameUpdateManyMutationInput'; ofType: null; }; }; defaultValue: null }]; };
+ 'SchemaNameUpdateManyWithoutSchemaNestedInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameUpdateManyWithoutSchemaNestedInput'; isOneOf: false; inputFields: [{ name: 'create'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameCreateWithoutSchemaInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'connectOrCreate'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameCreateOrConnectWithoutSchemaInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'upsert'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameUpsertWithWhereUniqueWithoutSchemaInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'createMany'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaNameCreateManySchemaInputEnvelope'; ofType: null; }; defaultValue: null }, { name: 'set'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameWhereUniqueInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'disconnect'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameWhereUniqueInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'delete'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameWhereUniqueInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'connect'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameWhereUniqueInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'update'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameUpdateWithWhereUniqueWithoutSchemaInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'updateMany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameUpdateManyWithWhereWithoutSchemaInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'deleteMany'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameScalarWhereInput'; ofType: null; }; }; }; defaultValue: null }]; };
+ 'SchemaNameUpdateWithWhereUniqueWithoutSchemaInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameUpdateWithWhereUniqueWithoutSchemaInput'; isOneOf: false; inputFields: [{ name: 'where'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameWhereUniqueInput'; ofType: null; }; }; defaultValue: null }, { name: 'data'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameUpdateWithoutSchemaInput'; ofType: null; }; }; defaultValue: null }]; };
+ 'SchemaNameUpdateWithoutSchemaInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameUpdateWithoutSchemaInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'attesterAddress'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'isCreator'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaNameUpsertWithWhereUniqueWithoutSchemaInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameUpsertWithWhereUniqueWithoutSchemaInput'; isOneOf: false; inputFields: [{ name: 'where'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameWhereUniqueInput'; ofType: null; }; }; defaultValue: null }, { name: 'update'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameUpdateWithoutSchemaInput'; ofType: null; }; }; defaultValue: null }, { name: 'create'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameCreateWithoutSchemaInput'; ofType: null; }; }; defaultValue: null }]; };
+ 'SchemaNameWhereInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameWhereInput'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'NOT'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaNameWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'schemaId'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'attesterAddress'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'INPUT_OBJECT'; name: 'IntFilter'; ofType: null; }; defaultValue: null }, { name: 'isCreator'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFilter'; ofType: null; }; defaultValue: null }, { name: 'schema'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaRelationFilter'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaNameWhereUniqueInput': { kind: 'INPUT_OBJECT'; name: 'SchemaNameWhereUniqueInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaOrderByWithAggregationInput': { kind: 'INPUT_OBJECT'; name: 'SchemaOrderByWithAggregationInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'schema'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'creator'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'resolver'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'index'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: '_count'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaCountOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_avg'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaAvgOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_max'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaMaxOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_min'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaMinOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_sum'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaSumOrderByAggregateInput'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaOrderByWithRelationInput': { kind: 'INPUT_OBJECT'; name: 'SchemaOrderByWithRelationInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'schema'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'creator'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'resolver'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'index'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'attestations'; type: { kind: 'INPUT_OBJECT'; name: 'AttestationOrderByRelationAggregateInput'; ofType: null; }; defaultValue: null }, { name: 'schemaNames'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaNameOrderByRelationAggregateInput'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaRelationFilter': { kind: 'INPUT_OBJECT'; name: 'SchemaRelationFilter'; isOneOf: false; inputFields: [{ name: 'is'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaWhereInput'; ofType: null; }; defaultValue: null }, { name: 'isNot'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaWhereInput'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaScalarFieldEnum': { name: 'SchemaScalarFieldEnum'; enumValues: 'id' | 'schema' | 'creator' | 'resolver' | 'revocable' | 'index' | 'txid' | 'time'; };
+ 'SchemaScalarWhereWithAggregatesInput': { kind: 'INPUT_OBJECT'; name: 'SchemaScalarWhereWithAggregatesInput'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaScalarWhereWithAggregatesInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaScalarWhereWithAggregatesInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'NOT'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaScalarWhereWithAggregatesInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'schema'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'creator'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'resolver'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'INPUT_OBJECT'; name: 'BoolWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'index'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'INPUT_OBJECT'; name: 'IntWithAggregatesFilter'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaSumAggregate': { kind: 'OBJECT'; name: 'SchemaSumAggregate'; fields: { 'time': { name: 'time'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; };
+ 'SchemaSumOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'SchemaSumOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'time'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaUpdateInput': { kind: 'INPUT_OBJECT'; name: 'SchemaUpdateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'schema'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'creator'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'resolver'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'index'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'attestations'; type: { kind: 'INPUT_OBJECT'; name: 'AttestationUpdateManyWithoutSchemaNestedInput'; ofType: null; }; defaultValue: null }, { name: 'schemaNames'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaNameUpdateManyWithoutSchemaNestedInput'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaUpdateManyMutationInput': { kind: 'INPUT_OBJECT'; name: 'SchemaUpdateManyMutationInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'schema'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'creator'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'resolver'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'index'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaUpdateOneRequiredWithoutAttestationsNestedInput': { kind: 'INPUT_OBJECT'; name: 'SchemaUpdateOneRequiredWithoutAttestationsNestedInput'; isOneOf: false; inputFields: [{ name: 'create'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaCreateWithoutAttestationsInput'; ofType: null; }; defaultValue: null }, { name: 'connectOrCreate'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaCreateOrConnectWithoutAttestationsInput'; ofType: null; }; defaultValue: null }, { name: 'upsert'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaUpsertWithoutAttestationsInput'; ofType: null; }; defaultValue: null }, { name: 'connect'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaWhereUniqueInput'; ofType: null; }; defaultValue: null }, { name: 'update'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaUpdateWithoutAttestationsInput'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaUpdateOneRequiredWithoutSchemaNamesNestedInput': { kind: 'INPUT_OBJECT'; name: 'SchemaUpdateOneRequiredWithoutSchemaNamesNestedInput'; isOneOf: false; inputFields: [{ name: 'create'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaCreateWithoutSchemaNamesInput'; ofType: null; }; defaultValue: null }, { name: 'connectOrCreate'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaCreateOrConnectWithoutSchemaNamesInput'; ofType: null; }; defaultValue: null }, { name: 'upsert'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaUpsertWithoutSchemaNamesInput'; ofType: null; }; defaultValue: null }, { name: 'connect'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaWhereUniqueInput'; ofType: null; }; defaultValue: null }, { name: 'update'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaUpdateWithoutSchemaNamesInput'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaUpdateWithoutAttestationsInput': { kind: 'INPUT_OBJECT'; name: 'SchemaUpdateWithoutAttestationsInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'schema'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'creator'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'resolver'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'index'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'schemaNames'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaNameUpdateManyWithoutSchemaNestedInput'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaUpdateWithoutSchemaNamesInput': { kind: 'INPUT_OBJECT'; name: 'SchemaUpdateWithoutSchemaNamesInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'schema'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'creator'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'resolver'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'index'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'attestations'; type: { kind: 'INPUT_OBJECT'; name: 'AttestationUpdateManyWithoutSchemaNestedInput'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaUpsertWithoutAttestationsInput': { kind: 'INPUT_OBJECT'; name: 'SchemaUpsertWithoutAttestationsInput'; isOneOf: false; inputFields: [{ name: 'update'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaUpdateWithoutAttestationsInput'; ofType: null; }; }; defaultValue: null }, { name: 'create'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaCreateWithoutAttestationsInput'; ofType: null; }; }; defaultValue: null }]; };
+ 'SchemaUpsertWithoutSchemaNamesInput': { kind: 'INPUT_OBJECT'; name: 'SchemaUpsertWithoutSchemaNamesInput'; isOneOf: false; inputFields: [{ name: 'update'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaUpdateWithoutSchemaNamesInput'; ofType: null; }; }; defaultValue: null }, { name: 'create'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaCreateWithoutSchemaNamesInput'; ofType: null; }; }; defaultValue: null }]; };
+ 'SchemaWhereInput': { kind: 'INPUT_OBJECT'; name: 'SchemaWhereInput'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'NOT'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SchemaWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'schema'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'creator'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'resolver'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'revocable'; type: { kind: 'INPUT_OBJECT'; name: 'BoolFilter'; ofType: null; }; defaultValue: null }, { name: 'index'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'time'; type: { kind: 'INPUT_OBJECT'; name: 'IntFilter'; ofType: null; }; defaultValue: null }, { name: 'attestations'; type: { kind: 'INPUT_OBJECT'; name: 'AttestationListRelationFilter'; ofType: null; }; defaultValue: null }, { name: 'schemaNames'; type: { kind: 'INPUT_OBJECT'; name: 'SchemaNameListRelationFilter'; ofType: null; }; defaultValue: null }]; };
+ 'SchemaWhereUniqueInput': { kind: 'INPUT_OBJECT'; name: 'SchemaWhereUniqueInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; };
+ 'ServiceStat': { kind: 'OBJECT'; name: 'ServiceStat'; fields: { 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
+ 'ServiceStatCountAggregate': { kind: 'OBJECT'; name: 'ServiceStatCountAggregate'; fields: { '_all': { name: '_all'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
+ 'ServiceStatCountOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'ServiceStatCountOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'ServiceStatCreateInput': { kind: 'INPUT_OBJECT'; name: 'ServiceStatCreateInput'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
+ 'ServiceStatCreateManyInput': { kind: 'INPUT_OBJECT'; name: 'ServiceStatCreateManyInput'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
+ 'ServiceStatGroupBy': { kind: 'OBJECT'; name: 'ServiceStatGroupBy'; fields: { '_count': { name: '_count'; type: { kind: 'OBJECT'; name: 'ServiceStatCountAggregate'; ofType: null; } }; '_max': { name: '_max'; type: { kind: 'OBJECT'; name: 'ServiceStatMaxAggregate'; ofType: null; } }; '_min': { name: '_min'; type: { kind: 'OBJECT'; name: 'ServiceStatMinAggregate'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
+ 'ServiceStatMaxAggregate': { kind: 'OBJECT'; name: 'ServiceStatMaxAggregate'; fields: { 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'value': { name: 'value'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
+ 'ServiceStatMaxOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'ServiceStatMaxOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'ServiceStatMinAggregate': { kind: 'OBJECT'; name: 'ServiceStatMinAggregate'; fields: { 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'value': { name: 'value'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
+ 'ServiceStatMinOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'ServiceStatMinOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'ServiceStatOrderByWithAggregationInput': { kind: 'INPUT_OBJECT'; name: 'ServiceStatOrderByWithAggregationInput'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: '_count'; type: { kind: 'INPUT_OBJECT'; name: 'ServiceStatCountOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_max'; type: { kind: 'INPUT_OBJECT'; name: 'ServiceStatMaxOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_min'; type: { kind: 'INPUT_OBJECT'; name: 'ServiceStatMinOrderByAggregateInput'; ofType: null; }; defaultValue: null }]; };
+ 'ServiceStatOrderByWithRelationInput': { kind: 'INPUT_OBJECT'; name: 'ServiceStatOrderByWithRelationInput'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'ServiceStatScalarFieldEnum': { name: 'ServiceStatScalarFieldEnum'; enumValues: 'name' | 'value'; };
+ 'ServiceStatScalarWhereWithAggregatesInput': { kind: 'INPUT_OBJECT'; name: 'ServiceStatScalarWhereWithAggregatesInput'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ServiceStatScalarWhereWithAggregatesInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ServiceStatScalarWhereWithAggregatesInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'NOT'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ServiceStatScalarWhereWithAggregatesInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }]; };
+ 'ServiceStatUpdateInput': { kind: 'INPUT_OBJECT'; name: 'ServiceStatUpdateInput'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }]; };
+ 'ServiceStatUpdateManyMutationInput': { kind: 'INPUT_OBJECT'; name: 'ServiceStatUpdateManyMutationInput'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }]; };
+ 'ServiceStatWhereInput': { kind: 'INPUT_OBJECT'; name: 'ServiceStatWhereInput'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ServiceStatWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ServiceStatWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'NOT'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ServiceStatWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'value'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }]; };
+ 'ServiceStatWhereUniqueInput': { kind: 'INPUT_OBJECT'; name: 'ServiceStatWhereUniqueInput'; isOneOf: false; inputFields: [{ name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; };
+ 'SortOrder': { name: 'SortOrder'; enumValues: 'asc' | 'desc'; };
+ 'String': unknown;
+ 'StringFieldUpdateOperationsInput': { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; isOneOf: false; inputFields: [{ name: 'set'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; };
+ 'StringFilter': { kind: 'INPUT_OBJECT'; name: 'StringFilter'; isOneOf: false; inputFields: [{ name: 'equals'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'notIn'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'startsWith'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'endsWith'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'mode'; type: { kind: 'ENUM'; name: 'QueryMode'; ofType: null; }; defaultValue: null }, { name: 'not'; type: { kind: 'INPUT_OBJECT'; name: 'NestedStringFilter'; ofType: null; }; defaultValue: null }]; };
+ 'StringWithAggregatesFilter': { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; isOneOf: false; inputFields: [{ name: 'equals'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'notIn'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'startsWith'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'endsWith'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'mode'; type: { kind: 'ENUM'; name: 'QueryMode'; ofType: null; }; defaultValue: null }, { name: 'not'; type: { kind: 'INPUT_OBJECT'; name: 'NestedStringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: '_count'; type: { kind: 'INPUT_OBJECT'; name: 'NestedIntFilter'; ofType: null; }; defaultValue: null }, { name: '_min'; type: { kind: 'INPUT_OBJECT'; name: 'NestedStringFilter'; ofType: null; }; defaultValue: null }, { name: '_max'; type: { kind: 'INPUT_OBJECT'; name: 'NestedStringFilter'; ofType: null; }; defaultValue: null }]; };
+ 'Timestamp': { kind: 'OBJECT'; name: 'Timestamp'; fields: { 'from': { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'tree': { name: 'tree'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'txid': { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
+ 'TimestampAvgAggregate': { kind: 'OBJECT'; name: 'TimestampAvgAggregate'; fields: { 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Float'; ofType: null; } }; }; };
+ 'TimestampAvgOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'TimestampAvgOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'timestamp'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'TimestampCountAggregate': { kind: 'OBJECT'; name: 'TimestampCountAggregate'; fields: { '_all': { name: '_all'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'from': { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'tree': { name: 'tree'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'txid': { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
+ 'TimestampCountOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'TimestampCountOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'tree'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'TimestampCreateInput': { kind: 'INPUT_OBJECT'; name: 'TimestampCreateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'tree'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; };
+ 'TimestampCreateManyInput': { kind: 'INPUT_OBJECT'; name: 'TimestampCreateManyInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'tree'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; };
+ 'TimestampGroupBy': { kind: 'OBJECT'; name: 'TimestampGroupBy'; fields: { '_avg': { name: '_avg'; type: { kind: 'OBJECT'; name: 'TimestampAvgAggregate'; ofType: null; } }; '_count': { name: '_count'; type: { kind: 'OBJECT'; name: 'TimestampCountAggregate'; ofType: null; } }; '_max': { name: '_max'; type: { kind: 'OBJECT'; name: 'TimestampMaxAggregate'; ofType: null; } }; '_min': { name: '_min'; type: { kind: 'OBJECT'; name: 'TimestampMinAggregate'; ofType: null; } }; '_sum': { name: '_sum'; type: { kind: 'OBJECT'; name: 'TimestampSumAggregate'; ofType: null; } }; 'from': { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'tree': { name: 'tree'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'txid': { name: 'txid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
+ 'TimestampMaxAggregate': { kind: 'OBJECT'; name: 'TimestampMaxAggregate'; fields: { 'from': { name: 'from'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'tree': { name: 'tree'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'txid': { name: 'txid'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
+ 'TimestampMaxOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'TimestampMaxOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'tree'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'TimestampMinAggregate': { kind: 'OBJECT'; name: 'TimestampMinAggregate'; fields: { 'from': { name: 'from'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'tree': { name: 'tree'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'txid': { name: 'txid'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
+ 'TimestampMinOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'TimestampMinOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'tree'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'TimestampOrderByWithAggregationInput': { kind: 'INPUT_OBJECT'; name: 'TimestampOrderByWithAggregationInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'tree'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: '_count'; type: { kind: 'INPUT_OBJECT'; name: 'TimestampCountOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_avg'; type: { kind: 'INPUT_OBJECT'; name: 'TimestampAvgOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_max'; type: { kind: 'INPUT_OBJECT'; name: 'TimestampMaxOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_min'; type: { kind: 'INPUT_OBJECT'; name: 'TimestampMinOrderByAggregateInput'; ofType: null; }; defaultValue: null }, { name: '_sum'; type: { kind: 'INPUT_OBJECT'; name: 'TimestampSumOrderByAggregateInput'; ofType: null; }; defaultValue: null }]; };
+ 'TimestampOrderByWithRelationInput': { kind: 'INPUT_OBJECT'; name: 'TimestampOrderByWithRelationInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'tree'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'TimestampScalarFieldEnum': { name: 'TimestampScalarFieldEnum'; enumValues: 'id' | 'from' | 'txid' | 'tree' | 'timestamp'; };
+ 'TimestampScalarWhereWithAggregatesInput': { kind: 'INPUT_OBJECT'; name: 'TimestampScalarWhereWithAggregatesInput'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TimestampScalarWhereWithAggregatesInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TimestampScalarWhereWithAggregatesInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'NOT'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TimestampScalarWhereWithAggregatesInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'tree'; type: { kind: 'INPUT_OBJECT'; name: 'StringWithAggregatesFilter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'IntWithAggregatesFilter'; ofType: null; }; defaultValue: null }]; };
+ 'TimestampSumAggregate': { kind: 'OBJECT'; name: 'TimestampSumAggregate'; fields: { 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; };
+ 'TimestampSumOrderByAggregateInput': { kind: 'INPUT_OBJECT'; name: 'TimestampSumOrderByAggregateInput'; isOneOf: false; inputFields: [{ name: 'timestamp'; type: { kind: 'ENUM'; name: 'SortOrder'; ofType: null; }; defaultValue: null }]; };
+ 'TimestampUpdateInput': { kind: 'INPUT_OBJECT'; name: 'TimestampUpdateInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'tree'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }]; };
+ 'TimestampUpdateManyMutationInput': { kind: 'INPUT_OBJECT'; name: 'TimestampUpdateManyMutationInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'tree'; type: { kind: 'INPUT_OBJECT'; name: 'StringFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'IntFieldUpdateOperationsInput'; ofType: null; }; defaultValue: null }]; };
+ 'TimestampWhereInput': { kind: 'INPUT_OBJECT'; name: 'TimestampWhereInput'; isOneOf: false; inputFields: [{ name: 'AND'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TimestampWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'OR'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TimestampWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'NOT'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TimestampWhereInput'; ofType: null; }; }; }; defaultValue: null }, { name: 'id'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'txid'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'tree'; type: { kind: 'INPUT_OBJECT'; name: 'StringFilter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'INPUT_OBJECT'; name: 'IntFilter'; ofType: null; }; defaultValue: null }]; };
+ 'TimestampWhereUniqueInput': { kind: 'INPUT_OBJECT'; name: 'TimestampWhereUniqueInput'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; };
+ };
+};
+
+import * as gqlTada from 'gql.tada';
+
+declare module 'gql.tada' {
+ interface setupSchema {
+ introspection: introspection
+ }
+}
\ No newline at end of file
diff --git a/packages/client/src/types/greengoods.d.ts b/packages/client/src/types/greengoods.d.ts
index e69de29..4c42e34 100644
--- a/packages/client/src/types/greengoods.d.ts
+++ b/packages/client/src/types/greengoods.d.ts
@@ -0,0 +1,162 @@
+declare enum Capital {
+ SOCIAL,
+ MATERIAL,
+ FINANCIAL,
+ LIVING,
+ INTELLECTUAL,
+ EXPERIENTIAL,
+ SPIRITUAL,
+ CULTURAL,
+}
+
+declare type Plant =
+ | "Jatoba"
+ | "uvaia"
+ | "avocado"
+ | "banana"
+ | "jambo"
+ | "inga"
+ | "ipê";
+
+// declare interface UserCard {
+// id: string; // Privy ID
+// username: string; // Unique username
+// gardenerAddress: string; // Smart Account Address
+// avatar?: string;
+// location?: string;
+// createdAt?: string;
+// }
+
+// declare interface UserDraft {
+// username: string;
+// avatar: string;
+// location: string;
+// }
+
+// declare interface User extends UserDraft, UserCard {
+// eoaAddress: string; // EOA address
+// onboarded: boolean;
+// email?: string;
+// phoneNumber?: string;
+// }
+
+declare interface GardenAssessment {
+ id: string;
+ authorAddress: string;
+ gardenAddress: string;
+ soilMoisturePercentage: number;
+ carbonTonStock: number;
+ carbonTonPotential: number;
+ gardenSquareMeters: number;
+ biome: string;
+ remoteReportCID: string;
+ speciesRegistryCID: string;
+ polygonCoordinates: string;
+ treeGenusesObserved: string[];
+ weedGenusesObserved: string[];
+ issues: string[];
+ tags: string[];
+ createdAt: number;
+}
+
+declare interface GardenCard {
+ id: string;
+ name: string;
+ location: string;
+ bannerImage: string;
+ operators: string[];
+}
+
+declare interface Garden extends GardenCard {
+ description: string;
+ tokenAddress: string;
+ tokenID: number;
+ gardeners: string[];
+ gardenAssessments: GardenAssessment[];
+}
+
+declare interface ActionCard {
+ id: number;
+ startTime: number;
+ endTime: number;
+ title: string;
+ instructions: string;
+ capitals: Captial[];
+ media: string[];
+ createdAt: number;
+}
+
+declare interface Action extends ActionCard {
+ description: string;
+ inputs: WorkInput[];
+ mediaInfo: {
+ title: string;
+ description: string;
+ maxImageCount: number;
+ };
+ details: {
+ title: string;
+ description: string;
+ feedbackPlaceholder: string;
+ };
+ review: {
+ title: string;
+ description: string;
+ };
+}
+
+declare interface WorkInput {
+ title: string;
+ placeholder: string;
+ type: "text" | "textarea" | "select" | "number";
+ required: boolean;
+ options: string[];
+}
+
+declare interface WorkDraft {
+ actionUID: number;
+ title: string;
+ plantSelection: string[];
+ plantCount: number;
+ feedback: string;
+ // metadata: Record;
+ media: File[];
+}
+
+declare interface WorkCard {
+ id: string;
+ title: string;
+ actionUID: number;
+ gardenerAddress: string;
+ gardenAddress: string;
+ feedback: string;
+ metadata: string;
+ media: string[];
+ createdAt: number;
+}
+
+declare interface WorkMetadata {
+ [key: string]: string | number | boolean | string[];
+}
+
+declare interface Work extends WorkCard {
+ approvals: WorkApproval[];
+}
+
+declare interface WorkApprovalDraft {
+ actionUID: number;
+ workUID: string;
+ approved: boolean;
+ feedback: string;
+}
+
+declare interface WorkApprovalCard {
+ id: string;
+ workUID: string;
+ approved: boolean;
+ recipientAddress: string;
+ approverAddress: string;
+ createdAt: number;
+}
+
+declare interface WorkApproval extends WorkApprovalDraft, WorkApprovalCard {}
diff --git a/packages/client/src/types/vite-env.d.ts b/packages/client/src/types/vite-env.d.ts
index 7cb47f4..7751425 100644
--- a/packages/client/src/types/vite-env.d.ts
+++ b/packages/client/src/types/vite-env.d.ts
@@ -1,9 +1,15 @@
///
///
-// declare namespace NodeJS {
-// interface ProcessEnv {
-// readonly NODE_ENV: "development" | "production" | "test";
-// readonly PUBLIC_URL: string;
-// }
-// }
+interface ImportMetaEnv {
+ readonly NODE_ENV: "development" | "production" | "test";
+ readonly PUBLIC_URL: string;
+ readonly VITE_ALCHEMY_API_KEY: string;
+ readonly VITE_PRIVY_APP_ID: string;
+ readonly VITE_PIMLICO_API_KEY: string;
+ readonly VITE_PINATA_API_KEY: string;
+}
+
+interface ImportMeta {
+ readonly env: ImportMetaEnv;
+}
diff --git a/packages/client/src/utils/EAS.json b/packages/client/src/utils/EAS.json
deleted file mode 100644
index 899ca7e..0000000
--- a/packages/client/src/utils/EAS.json
+++ /dev/null
@@ -1,1185 +0,0 @@
-{
- "_format": "hh-sol-artifact-1",
- "contractName": "EAS",
- "sourceName": "contracts/EAS.sol",
- "abi": [
- {
- "inputs": [
- {
- "internalType": "contract ISchemaRegistry",
- "name": "registry",
- "type": "address"
- }
- ],
- "stateMutability": "nonpayable",
- "type": "constructor"
- },
- {
- "inputs": [],
- "name": "AccessDenied",
- "type": "error"
- },
- {
- "inputs": [
- {
- "internalType": "address",
- "name": "account",
- "type": "address"
- }
- ],
- "name": "AddressInsufficientBalance",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "AlreadyRevoked",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "AlreadyRevokedOffchain",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "AlreadyTimestamped",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "DeadlineExpired",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "FailedInnerCall",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "InsufficientValue",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "InvalidAttestation",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "InvalidAttestations",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "InvalidExpirationTime",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "InvalidLength",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "InvalidNonce",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "InvalidOffset",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "InvalidRegistry",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "InvalidRevocation",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "InvalidRevocations",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "InvalidSchema",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "InvalidShortString",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "InvalidSignature",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "InvalidVerifier",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "Irrevocable",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "NotFound",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "NotPayable",
- "type": "error"
- },
- {
- "inputs": [
- {
- "internalType": "string",
- "name": "str",
- "type": "string"
- }
- ],
- "name": "StringTooLong",
- "type": "error"
- },
- {
- "inputs": [],
- "name": "WrongSchema",
- "type": "error"
- },
- {
- "anonymous": false,
- "inputs": [
- {
- "indexed": true,
- "internalType": "address",
- "name": "recipient",
- "type": "address"
- },
- {
- "indexed": true,
- "internalType": "address",
- "name": "attester",
- "type": "address"
- },
- {
- "indexed": false,
- "internalType": "bytes32",
- "name": "uid",
- "type": "bytes32"
- },
- {
- "indexed": true,
- "internalType": "bytes32",
- "name": "schemaUID",
- "type": "bytes32"
- }
- ],
- "name": "Attested",
- "type": "event"
- },
- {
- "anonymous": false,
- "inputs": [],
- "name": "EIP712DomainChanged",
- "type": "event"
- },
- {
- "anonymous": false,
- "inputs": [
- {
- "indexed": false,
- "internalType": "uint256",
- "name": "oldNonce",
- "type": "uint256"
- },
- {
- "indexed": false,
- "internalType": "uint256",
- "name": "newNonce",
- "type": "uint256"
- }
- ],
- "name": "NonceIncreased",
- "type": "event"
- },
- {
- "anonymous": false,
- "inputs": [
- {
- "indexed": true,
- "internalType": "address",
- "name": "recipient",
- "type": "address"
- },
- {
- "indexed": true,
- "internalType": "address",
- "name": "attester",
- "type": "address"
- },
- {
- "indexed": false,
- "internalType": "bytes32",
- "name": "uid",
- "type": "bytes32"
- },
- {
- "indexed": true,
- "internalType": "bytes32",
- "name": "schemaUID",
- "type": "bytes32"
- }
- ],
- "name": "Revoked",
- "type": "event"
- },
- {
- "anonymous": false,
- "inputs": [
- {
- "indexed": true,
- "internalType": "address",
- "name": "revoker",
- "type": "address"
- },
- {
- "indexed": true,
- "internalType": "bytes32",
- "name": "data",
- "type": "bytes32"
- },
- {
- "indexed": true,
- "internalType": "uint64",
- "name": "timestamp",
- "type": "uint64"
- }
- ],
- "name": "RevokedOffchain",
- "type": "event"
- },
- {
- "anonymous": false,
- "inputs": [
- {
- "indexed": true,
- "internalType": "bytes32",
- "name": "data",
- "type": "bytes32"
- },
- {
- "indexed": true,
- "internalType": "uint64",
- "name": "timestamp",
- "type": "uint64"
- }
- ],
- "name": "Timestamped",
- "type": "event"
- },
- {
- "inputs": [
- {
- "components": [
- {
- "internalType": "bytes32",
- "name": "schema",
- "type": "bytes32"
- },
- {
- "components": [
- {
- "internalType": "address",
- "name": "recipient",
- "type": "address"
- },
- {
- "internalType": "uint64",
- "name": "expirationTime",
- "type": "uint64"
- },
- {
- "internalType": "bool",
- "name": "revocable",
- "type": "bool"
- },
- {
- "internalType": "bytes32",
- "name": "refUID",
- "type": "bytes32"
- },
- {
- "internalType": "bytes",
- "name": "data",
- "type": "bytes"
- },
- {
- "internalType": "uint256",
- "name": "value",
- "type": "uint256"
- }
- ],
- "internalType": "struct AttestationRequestData",
- "name": "data",
- "type": "tuple"
- }
- ],
- "internalType": "struct AttestationRequest",
- "name": "request",
- "type": "tuple"
- }
- ],
- "name": "attest",
- "outputs": [
- {
- "internalType": "bytes32",
- "name": "",
- "type": "bytes32"
- }
- ],
- "stateMutability": "payable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "components": [
- {
- "internalType": "bytes32",
- "name": "schema",
- "type": "bytes32"
- },
- {
- "components": [
- {
- "internalType": "address",
- "name": "recipient",
- "type": "address"
- },
- {
- "internalType": "uint64",
- "name": "expirationTime",
- "type": "uint64"
- },
- {
- "internalType": "bool",
- "name": "revocable",
- "type": "bool"
- },
- {
- "internalType": "bytes32",
- "name": "refUID",
- "type": "bytes32"
- },
- {
- "internalType": "bytes",
- "name": "data",
- "type": "bytes"
- },
- {
- "internalType": "uint256",
- "name": "value",
- "type": "uint256"
- }
- ],
- "internalType": "struct AttestationRequestData",
- "name": "data",
- "type": "tuple"
- },
- {
- "components": [
- {
- "internalType": "uint8",
- "name": "v",
- "type": "uint8"
- },
- {
- "internalType": "bytes32",
- "name": "r",
- "type": "bytes32"
- },
- {
- "internalType": "bytes32",
- "name": "s",
- "type": "bytes32"
- }
- ],
- "internalType": "struct Signature",
- "name": "signature",
- "type": "tuple"
- },
- {
- "internalType": "address",
- "name": "attester",
- "type": "address"
- },
- {
- "internalType": "uint64",
- "name": "deadline",
- "type": "uint64"
- }
- ],
- "internalType": "struct DelegatedAttestationRequest",
- "name": "delegatedRequest",
- "type": "tuple"
- }
- ],
- "name": "attestByDelegation",
- "outputs": [
- {
- "internalType": "bytes32",
- "name": "",
- "type": "bytes32"
- }
- ],
- "stateMutability": "payable",
- "type": "function"
- },
- {
- "inputs": [],
- "name": "eip712Domain",
- "outputs": [
- {
- "internalType": "bytes1",
- "name": "fields",
- "type": "bytes1"
- },
- {
- "internalType": "string",
- "name": "name",
- "type": "string"
- },
- {
- "internalType": "string",
- "name": "version",
- "type": "string"
- },
- {
- "internalType": "uint256",
- "name": "chainId",
- "type": "uint256"
- },
- {
- "internalType": "address",
- "name": "verifyingContract",
- "type": "address"
- },
- {
- "internalType": "bytes32",
- "name": "salt",
- "type": "bytes32"
- },
- {
- "internalType": "uint256[]",
- "name": "extensions",
- "type": "uint256[]"
- }
- ],
- "stateMutability": "view",
- "type": "function"
- },
- {
- "inputs": [],
- "name": "getAttestTypeHash",
- "outputs": [
- {
- "internalType": "bytes32",
- "name": "",
- "type": "bytes32"
- }
- ],
- "stateMutability": "pure",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "bytes32",
- "name": "uid",
- "type": "bytes32"
- }
- ],
- "name": "getAttestation",
- "outputs": [
- {
- "components": [
- {
- "internalType": "bytes32",
- "name": "uid",
- "type": "bytes32"
- },
- {
- "internalType": "bytes32",
- "name": "schema",
- "type": "bytes32"
- },
- {
- "internalType": "uint64",
- "name": "time",
- "type": "uint64"
- },
- {
- "internalType": "uint64",
- "name": "expirationTime",
- "type": "uint64"
- },
- {
- "internalType": "uint64",
- "name": "revocationTime",
- "type": "uint64"
- },
- {
- "internalType": "bytes32",
- "name": "refUID",
- "type": "bytes32"
- },
- {
- "internalType": "address",
- "name": "recipient",
- "type": "address"
- },
- {
- "internalType": "address",
- "name": "attester",
- "type": "address"
- },
- {
- "internalType": "bool",
- "name": "revocable",
- "type": "bool"
- },
- {
- "internalType": "bytes",
- "name": "data",
- "type": "bytes"
- }
- ],
- "internalType": "struct Attestation",
- "name": "",
- "type": "tuple"
- }
- ],
- "stateMutability": "view",
- "type": "function"
- },
- {
- "inputs": [],
- "name": "getDomainSeparator",
- "outputs": [
- {
- "internalType": "bytes32",
- "name": "",
- "type": "bytes32"
- }
- ],
- "stateMutability": "view",
- "type": "function"
- },
- {
- "inputs": [],
- "name": "getName",
- "outputs": [
- {
- "internalType": "string",
- "name": "",
- "type": "string"
- }
- ],
- "stateMutability": "view",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "address",
- "name": "account",
- "type": "address"
- }
- ],
- "name": "getNonce",
- "outputs": [
- {
- "internalType": "uint256",
- "name": "",
- "type": "uint256"
- }
- ],
- "stateMutability": "view",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "address",
- "name": "revoker",
- "type": "address"
- },
- {
- "internalType": "bytes32",
- "name": "data",
- "type": "bytes32"
- }
- ],
- "name": "getRevokeOffchain",
- "outputs": [
- {
- "internalType": "uint64",
- "name": "",
- "type": "uint64"
- }
- ],
- "stateMutability": "view",
- "type": "function"
- },
- {
- "inputs": [],
- "name": "getRevokeTypeHash",
- "outputs": [
- {
- "internalType": "bytes32",
- "name": "",
- "type": "bytes32"
- }
- ],
- "stateMutability": "pure",
- "type": "function"
- },
- {
- "inputs": [],
- "name": "getSchemaRegistry",
- "outputs": [
- {
- "internalType": "contract ISchemaRegistry",
- "name": "",
- "type": "address"
- }
- ],
- "stateMutability": "view",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "bytes32",
- "name": "data",
- "type": "bytes32"
- }
- ],
- "name": "getTimestamp",
- "outputs": [
- {
- "internalType": "uint64",
- "name": "",
- "type": "uint64"
- }
- ],
- "stateMutability": "view",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "uint256",
- "name": "newNonce",
- "type": "uint256"
- }
- ],
- "name": "increaseNonce",
- "outputs": [],
- "stateMutability": "nonpayable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "bytes32",
- "name": "uid",
- "type": "bytes32"
- }
- ],
- "name": "isAttestationValid",
- "outputs": [
- {
- "internalType": "bool",
- "name": "",
- "type": "bool"
- }
- ],
- "stateMutability": "view",
- "type": "function"
- },
- {
- "inputs": [
- {
- "components": [
- {
- "internalType": "bytes32",
- "name": "schema",
- "type": "bytes32"
- },
- {
- "components": [
- {
- "internalType": "address",
- "name": "recipient",
- "type": "address"
- },
- {
- "internalType": "uint64",
- "name": "expirationTime",
- "type": "uint64"
- },
- {
- "internalType": "bool",
- "name": "revocable",
- "type": "bool"
- },
- {
- "internalType": "bytes32",
- "name": "refUID",
- "type": "bytes32"
- },
- {
- "internalType": "bytes",
- "name": "data",
- "type": "bytes"
- },
- {
- "internalType": "uint256",
- "name": "value",
- "type": "uint256"
- }
- ],
- "internalType": "struct AttestationRequestData[]",
- "name": "data",
- "type": "tuple[]"
- }
- ],
- "internalType": "struct MultiAttestationRequest[]",
- "name": "multiRequests",
- "type": "tuple[]"
- }
- ],
- "name": "multiAttest",
- "outputs": [
- {
- "internalType": "bytes32[]",
- "name": "",
- "type": "bytes32[]"
- }
- ],
- "stateMutability": "payable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "components": [
- {
- "internalType": "bytes32",
- "name": "schema",
- "type": "bytes32"
- },
- {
- "components": [
- {
- "internalType": "address",
- "name": "recipient",
- "type": "address"
- },
- {
- "internalType": "uint64",
- "name": "expirationTime",
- "type": "uint64"
- },
- {
- "internalType": "bool",
- "name": "revocable",
- "type": "bool"
- },
- {
- "internalType": "bytes32",
- "name": "refUID",
- "type": "bytes32"
- },
- {
- "internalType": "bytes",
- "name": "data",
- "type": "bytes"
- },
- {
- "internalType": "uint256",
- "name": "value",
- "type": "uint256"
- }
- ],
- "internalType": "struct AttestationRequestData[]",
- "name": "data",
- "type": "tuple[]"
- },
- {
- "components": [
- {
- "internalType": "uint8",
- "name": "v",
- "type": "uint8"
- },
- {
- "internalType": "bytes32",
- "name": "r",
- "type": "bytes32"
- },
- {
- "internalType": "bytes32",
- "name": "s",
- "type": "bytes32"
- }
- ],
- "internalType": "struct Signature[]",
- "name": "signatures",
- "type": "tuple[]"
- },
- {
- "internalType": "address",
- "name": "attester",
- "type": "address"
- },
- {
- "internalType": "uint64",
- "name": "deadline",
- "type": "uint64"
- }
- ],
- "internalType": "struct MultiDelegatedAttestationRequest[]",
- "name": "multiDelegatedRequests",
- "type": "tuple[]"
- }
- ],
- "name": "multiAttestByDelegation",
- "outputs": [
- {
- "internalType": "bytes32[]",
- "name": "",
- "type": "bytes32[]"
- }
- ],
- "stateMutability": "payable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "components": [
- {
- "internalType": "bytes32",
- "name": "schema",
- "type": "bytes32"
- },
- {
- "components": [
- {
- "internalType": "bytes32",
- "name": "uid",
- "type": "bytes32"
- },
- {
- "internalType": "uint256",
- "name": "value",
- "type": "uint256"
- }
- ],
- "internalType": "struct RevocationRequestData[]",
- "name": "data",
- "type": "tuple[]"
- }
- ],
- "internalType": "struct MultiRevocationRequest[]",
- "name": "multiRequests",
- "type": "tuple[]"
- }
- ],
- "name": "multiRevoke",
- "outputs": [],
- "stateMutability": "payable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "components": [
- {
- "internalType": "bytes32",
- "name": "schema",
- "type": "bytes32"
- },
- {
- "components": [
- {
- "internalType": "bytes32",
- "name": "uid",
- "type": "bytes32"
- },
- {
- "internalType": "uint256",
- "name": "value",
- "type": "uint256"
- }
- ],
- "internalType": "struct RevocationRequestData[]",
- "name": "data",
- "type": "tuple[]"
- },
- {
- "components": [
- {
- "internalType": "uint8",
- "name": "v",
- "type": "uint8"
- },
- {
- "internalType": "bytes32",
- "name": "r",
- "type": "bytes32"
- },
- {
- "internalType": "bytes32",
- "name": "s",
- "type": "bytes32"
- }
- ],
- "internalType": "struct Signature[]",
- "name": "signatures",
- "type": "tuple[]"
- },
- {
- "internalType": "address",
- "name": "revoker",
- "type": "address"
- },
- {
- "internalType": "uint64",
- "name": "deadline",
- "type": "uint64"
- }
- ],
- "internalType": "struct MultiDelegatedRevocationRequest[]",
- "name": "multiDelegatedRequests",
- "type": "tuple[]"
- }
- ],
- "name": "multiRevokeByDelegation",
- "outputs": [],
- "stateMutability": "payable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "bytes32[]",
- "name": "data",
- "type": "bytes32[]"
- }
- ],
- "name": "multiRevokeOffchain",
- "outputs": [
- {
- "internalType": "uint64",
- "name": "",
- "type": "uint64"
- }
- ],
- "stateMutability": "nonpayable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "bytes32[]",
- "name": "data",
- "type": "bytes32[]"
- }
- ],
- "name": "multiTimestamp",
- "outputs": [
- {
- "internalType": "uint64",
- "name": "",
- "type": "uint64"
- }
- ],
- "stateMutability": "nonpayable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "components": [
- {
- "internalType": "bytes32",
- "name": "schema",
- "type": "bytes32"
- },
- {
- "components": [
- {
- "internalType": "bytes32",
- "name": "uid",
- "type": "bytes32"
- },
- {
- "internalType": "uint256",
- "name": "value",
- "type": "uint256"
- }
- ],
- "internalType": "struct RevocationRequestData",
- "name": "data",
- "type": "tuple"
- }
- ],
- "internalType": "struct RevocationRequest",
- "name": "request",
- "type": "tuple"
- }
- ],
- "name": "revoke",
- "outputs": [],
- "stateMutability": "payable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "components": [
- {
- "internalType": "bytes32",
- "name": "schema",
- "type": "bytes32"
- },
- {
- "components": [
- {
- "internalType": "bytes32",
- "name": "uid",
- "type": "bytes32"
- },
- {
- "internalType": "uint256",
- "name": "value",
- "type": "uint256"
- }
- ],
- "internalType": "struct RevocationRequestData",
- "name": "data",
- "type": "tuple"
- },
- {
- "components": [
- {
- "internalType": "uint8",
- "name": "v",
- "type": "uint8"
- },
- {
- "internalType": "bytes32",
- "name": "r",
- "type": "bytes32"
- },
- {
- "internalType": "bytes32",
- "name": "s",
- "type": "bytes32"
- }
- ],
- "internalType": "struct Signature",
- "name": "signature",
- "type": "tuple"
- },
- {
- "internalType": "address",
- "name": "revoker",
- "type": "address"
- },
- {
- "internalType": "uint64",
- "name": "deadline",
- "type": "uint64"
- }
- ],
- "internalType": "struct DelegatedRevocationRequest",
- "name": "delegatedRequest",
- "type": "tuple"
- }
- ],
- "name": "revokeByDelegation",
- "outputs": [],
- "stateMutability": "payable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "bytes32",
- "name": "data",
- "type": "bytes32"
- }
- ],
- "name": "revokeOffchain",
- "outputs": [
- {
- "internalType": "uint64",
- "name": "",
- "type": "uint64"
- }
- ],
- "stateMutability": "nonpayable",
- "type": "function"
- },
- {
- "inputs": [
- {
- "internalType": "bytes32",
- "name": "data",
- "type": "bytes32"
- }
- ],
- "name": "timestamp",
- "outputs": [
- {
- "internalType": "uint64",
- "name": "",
- "type": "uint64"
- }
- ],
- "stateMutability": "nonpayable",
- "type": "function"
- },
- {
- "inputs": [],
- "name": "version",
- "outputs": [
- {
- "internalType": "string",
- "name": "",
- "type": "string"
- }
- ],
- "stateMutability": "view",
- "type": "function"
- }
- ],
- "bytecode": "0x6101e060405234801561001157600080fd5b50604051614e58380380614e58833981016040819052610030916101f3565b60408051808201825260038082526245415360e81b602080840191909152835180850190945260058452640312e332e360dc1b90840152600160805260a052600060c081905290919082908290610088908390610179565b61018052610097816001610179565b6101a0528151602080840191909120610140528151908201206101605246610100526101276101405161016051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b60e05250503061012052600261013d83826102c2565b5050506001600160a01b038116610167576040516311a1e69760e01b815260040160405180910390fd5b6001600160a01b03166101c0526103f2565b60006020835110156101955761018e836101ac565b90506101a6565b816101a084826102c2565b5060ff90505b92915050565b600080829050601f815111156101e0578260405163305a27a960e01b81526004016101d79190610380565b60405180910390fd5b80516101eb826103ce565b179392505050565b60006020828403121561020557600080fd5b81516001600160a01b038116811461021c57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168061024d57607f821691505b60208210810361026d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156102bd57806000526020600020601f840160051c8101602085101561029a5750805b601f840160051c820191505b818110156102ba57600081556001016102a6565b50505b505050565b81516001600160401b038111156102db576102db610223565b6102ef816102e98454610239565b84610273565b6020601f821160018114610323576000831561030b5750848201515b600019600385901b1c1916600184901b1784556102ba565b600084815260208120601f198516915b828110156103535787850151825560209485019460019092019101610333565b50848210156103715786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b602081526000825180602084015260005b818110156103ae5760208186018101516040868401015201610391565b506000604082850101526040601f19601f83011684010191505092915050565b8051602080830151919081101561026d5760001960209190910360031b1b16919050565b60805160a05160c05160e05161010051610120516101405161016051610180516101a0516101c0516149d261048660003960008181610538015281816115c10152611ef901526000612824015260006127f70152600061293101526000612909015260006128640152600061288e015260006128b801526000610c3401526000610c0b01526000610be201526149d26000f3fe6080604052600436106101965760003560e01c806384b0196e116100e1578063cf190f341161008a578063e71ff36511610064578063e71ff365146104dc578063ed24911d146104fc578063f10b5cc814610511578063f17325e71461056257600080fd5b8063cf190f3414610446578063d45c443514610466578063e30bb5631461049d57600080fd5b8063a6d4dbc7116100bb578063a6d4dbc7146103a6578063b469318d146103b9578063b83010d31461041357600080fd5b806384b0196e1461033e5780639541152514610366578063a3112a641461037957600080fd5b806344adc90e116101435780634d0030701161011d5780634d003070146102e957806354fd4d501461030957806379f7573a1461031e57600080fd5b806344adc90e146102a357806346926267146102c35780634cb7e9e5146102d657600080fd5b806317d7de7c1161017457806317d7de7c1461022b5780632d0335ab1461024d5780633c0427151461029057600080fd5b80630eabf6601461019b57806312b11a17146101b057806313893f61146101f2575b600080fd5b6101ae6101a936600461378d565b610575565b005b3480156101bc57600080fd5b507ffeb2925a02bae3dae48d424a0437a2b6ac939aa9230ddc55a1a76f065d9880765b6040519081526020015b60405180910390f35b3480156101fe57600080fd5b5061021261020d36600461378d565b61070c565b60405167ffffffffffffffff90911681526020016101e9565b34801561023757600080fd5b50610240610751565b6040516101e9919061383d565b34801561025957600080fd5b506101df610268366004613889565b73ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b6101df61029e3660046138a6565b6107e3565b6102b66102b136600461378d565b6108e6565b6040516101e991906138e1565b6101ae6102d1366004613924565b610a67565b6101ae6102e436600461378d565b610aeb565b3480156102f557600080fd5b5061021261030436600461393f565b610bce565b34801561031557600080fd5b50610240610bdb565b34801561032a57600080fd5b506101ae61033936600461393f565b610c7e565b34801561034a57600080fd5b50610353610d17565b6040516101e99796959493929190613994565b6102b661037436600461378d565b610d79565b34801561038557600080fd5b5061039961039436600461393f565b610fec565b6040516101e99190613b16565b6101ae6103b4366004613b29565b6111ae565b3480156103c557600080fd5b506102126103d4366004613b3d565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205467ffffffffffffffff1690565b34801561041f57600080fd5b507fb5d556f07587ec0f08cf386545cc4362c702a001650c2058002615ee5c9d1e756101df565b34801561045257600080fd5b5061021261046136600461393f565b611253565b34801561047257600080fd5b5061021261048136600461393f565b60009081526005602052604090205467ffffffffffffffff1690565b3480156104a957600080fd5b506104cc6104b836600461393f565b600090815260046020526040902054151590565b60405190151581526020016101e9565b3480156104e857600080fd5b506102126104f736600461378d565b611261565b34801561050857600080fd5b506101df611299565b34801561051d57600080fd5b5060405173ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001681526020016101e9565b6101df610570366004613b69565b6112a8565b348160005b81811015610705577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8201811460008686848181106105bb576105bb613ba4565b90506020028101906105cd9190613bd3565b6105d690613e69565b60208101518051919250908015806105f357508260400151518114155b1561062a576040517f947d5a8400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b818110156106ce576106c66040518060a001604052808660000151815260200185848151811061065f5761065f613ba4565b602002602001015181526020018660400151848151811061068257610682613ba4565b60200260200101518152602001866060015173ffffffffffffffffffffffffffffffffffffffff168152602001866080015167ffffffffffffffff16815250611366565b60010161062d565b506106e483600001518385606001518a88611578565b6106ee9088613f99565b9650505050506106fe8160010190565b905061057a565b5050505050565b60004282825b818110156107455761073d3387878481811061073057610730613ba4565b9050602002013585611bc9565b600101610712565b50909150505b92915050565b60606002805461076090613fac565b80601f016020809104026020016040519081016040528092919081815260200182805461078c90613fac565b80156107d95780601f106107ae576101008083540402835291602001916107d9565b820191906000526020600020905b8154815290600101906020018083116107bc57829003601f168201915b5050505050905090565b60006107f66107f183614126565b611cc8565b604080516001808252818301909252600091816020015b6040805160c081018252600080825260208083018290529282018190526060808301829052608083015260a082015282527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90920191018161080d57905050905061087b60208401846141a1565b610884906141d5565b8160008151811061089757610897613ba4565b60209081029190910101526108c08335826108b860c0870160a08801613889565b346001611e53565b602001516000815181106108d6576108d6613ba4565b6020026020010151915050919050565b60608160008167ffffffffffffffff81111561090457610904613c11565b60405190808252806020026020018201604052801561093757816020015b60608152602001906001900390816109225790505b509050600034815b84811015610a51577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff850181143689898481811061097f5761097f613ba4565b905060200281019061099191906141e1565b90506109a06020820182614215565b90506000036109db576040517f947d5a8400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610a0082356109ef6020850185614215565b6109f89161427d565b338887611e53565b8051909150610a0f9086613f99565b94508060200151878581518110610a2857610a28613ba4565b602002602001018190525080602001515186019550505050610a4a8160010190565b905061093f565b50610a5c8383612586565b979650505050505050565b604080516001808252818301909252600091816020015b6040805180820190915260008082526020820152815260200190600190039081610a7e579050509050610ab9368390038301602084016142e3565b81600081518110610acc57610acc613ba4565b6020908102919091010152610ae682358233346001611578565b505050565b348160005b81811015610705577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8201811436868684818110610b3057610b30613ba4565b9050602002810190610b4291906141e1565b9050610baf8135610b5660208401846142ff565b808060200260200160405190810160405280939291908181526020016000905b82821015610ba257610b93604083028601368190038101906142e3565b81526020019060010190610b76565b5050505050338886611578565b610bb99086613f99565b94505050610bc78160010190565b9050610af0565b60004261074b8382612670565b6060610c067f0000000000000000000000000000000000000000000000000000000000000000612732565b610c2f7f0000000000000000000000000000000000000000000000000000000000000000612732565b610c587f0000000000000000000000000000000000000000000000000000000000000000612732565b604051602001610c6a93929190614367565b604051602081830303815290604052905090565b33600090815260036020526040902054808211610cc7576040517f756688fe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360009081526003602090815260409182902084905581518381529081018490527f57b09af877df9068fd60a69d7b21f5576b8b38955812d6ae4ac52942f1e38fb7910160405180910390a15050565b600060608060008060006060610d2b6127f0565b610d3361281d565b604080516000808252602082019092527f0f000000000000000000000000000000000000000000000000000000000000009b939a50919850469750309650945092509050565b60608160008167ffffffffffffffff811115610d9757610d97613c11565b604051908082528060200260200182016040528015610dca57816020015b6060815260200190600190039081610db55790505b509050600034815b84811015610a51577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8501811436898984818110610e1257610e12613ba4565b9050602002810190610e249190613bd3565b9050366000610e366020840184614215565b909250905080801580610e575750610e5160408501856143fe565b90508114155b15610e8e576040517f947d5a8400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b81811015610f6f57610f676040518060a0016040528087600001358152602001868685818110610ec357610ec3613ba4565b9050602002810190610ed591906141a1565b610ede906141d5565b8152602001610ef060408901896143fe565b85818110610f0057610f00613ba4565b905060600201803603810190610f169190614465565b8152602001610f2b6080890160608a01613889565b73ffffffffffffffffffffffffffffffffffffffff168152602001610f5660a0890160808a01614481565b67ffffffffffffffff169052611cc8565b600101610e91565b506000610f988535610f81858761427d565b610f916080890160608a01613889565b8b8a611e53565b8051909150610fa79089613f99565b975080602001518a8881518110610fc057610fc0613ba4565b602002602001018190525080602001515189019850505050505050610fe58160010190565b9050610dd2565b604080516101408101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820183905261010082019290925261012081019190915260008281526004602081815260409283902083516101408101855281548152600182015492810192909252600281015467ffffffffffffffff808216958401959095526801000000000000000081048516606084015270010000000000000000000000000000000090049093166080820152600383015460a08201529082015473ffffffffffffffffffffffffffffffffffffffff90811660c0830152600583015490811660e083015274010000000000000000000000000000000000000000900460ff1615156101008201526006820180549192916101208401919061112590613fac565b80601f016020809104026020016040519081016040528092919081815260200182805461115190613fac565b801561119e5780601f106111735761010080835404028352916020019161119e565b820191906000526020600020905b81548152906001019060200180831161118157829003601f168201915b5050505050815250509050919050565b6111c56111c03683900383018361449c565b611366565b604080516001808252818301909252600091816020015b60408051808201909152600080825260208201528152602001906001900390816111dc579050509050611217368390038301602084016142e3565b8160008151811061122a5761122a613ba4565b6020908102919091010152610ae682358261124b60e0860160c08701613889565b346001611578565b60004261074b338483611bc9565b60004282825b818110156107455761129186868381811061128457611284613ba4565b9050602002013584612670565b600101611267565b60006112a361284a565b905090565b604080516001808252818301909252600091829190816020015b6040805160c081018252600080825260208083018290529282018190526060808301829052608083015260a082015282527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9092019101816112c257905050905061133060208401846141a1565b611339906141d5565b8160008151811061134c5761134c613ba4565b60209081029190910101526108c083358233346001611e53565b608081015167ffffffffffffffff161580159061139a57504267ffffffffffffffff16816080015167ffffffffffffffff16105b156113d1576040517f1ab7da6b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6020808201516040808401516060850151855184518587015173ffffffffffffffffffffffffffffffffffffffff84166000908152600390985294872080549697949694956114c6957fb5d556f07587ec0f08cf386545cc4362c702a001650c2058002615ee5c9d1e7595949392886114498361450c565b909155506080808c015160408051602081019990995273ffffffffffffffffffffffffffffffffffffffff9097169688019690965260608701949094529285019190915260a084015260c083015267ffffffffffffffff1660e0820152610100015b60405160208183030381529060405280519060200120612982565b905061153c84606001518284602001518560400151866000015160405160200161152893929190928352602083019190915260f81b7fff0000000000000000000000000000000000000000000000000000000000000016604082015260410190565b6040516020818303038152906040526129ca565b611572576040517f8baa579f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040517fa2ea7c6e00000000000000000000000000000000000000000000000000000000815260048101869052600090819073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063a2ea7c6e90602401600060405180830381865afa158015611608573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820160405261164e9190810190614544565b8051909150611689576040517fbf37b20e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b855160008167ffffffffffffffff8111156116a6576116a6613c11565b60405190808252806020026020018201604052801561174557816020015b60408051610140810182526000808252602080830182905292820181905260608083018290526080830182905260a0830182905260c0830182905260e0830182905261010083019190915261012082015282527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9092019101816116c45790505b50905060008267ffffffffffffffff81111561176357611763613c11565b60405190808252806020026020018201604052801561178c578160200160208202803683370190505b50905060005b83811015611bab5760008a82815181106117ae576117ae613ba4565b6020908102919091018101518051600090815260049092526040909120805491925090611807576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8c816001015414611844576040517fbf37b20e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600581015473ffffffffffffffffffffffffffffffffffffffff8c811691161461189a576040517f4ca8886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600581015474010000000000000000000000000000000000000000900460ff166118f0576040517f157bd4c300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002810154700100000000000000000000000000000000900467ffffffffffffffff161561194a576040517f905e710700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b426002820180547fffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff811670010000000000000000000000000000000067ffffffffffffffff948516810291821793849055604080516101408101825287548152600188015460208201529386169286169290921791830191909152680100000000000000008304841660608301529091049091166080820152600382015460a0820152600482015473ffffffffffffffffffffffffffffffffffffffff90811660c0830152600583015490811660e083015274010000000000000000000000000000000000000000900460ff1615156101008201526006820180548391610120840191611a5690613fac565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8290613fac565b8015611acf5780601f10611aa457610100808354040283529160200191611acf565b820191906000526020600020905b815481529060010190602001808311611ab257829003601f168201915b505050505081525050858481518110611aea57611aea613ba4565b60200260200101819052508160200151848481518110611b0c57611b0c613ba4565b6020026020010181815250508c8b73ffffffffffffffffffffffffffffffffffffffff16868581518110611b4257611b42613ba4565b602002602001015160c0015173ffffffffffffffffffffffffffffffffffffffff167ff930a6e2523c9cc298691873087a740550b8fc85a0680830414c148ed927f6158560000151604051611b9991815260200190565b60405180910390a45050600101611792565b50611bbb84838360018b8b612a46565b9a9950505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600660209081526040808320858452918290529091205467ffffffffffffffff1615611c3d576040517fec9d6eeb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008381526020829052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001667ffffffffffffffff861690811790915590519091859173ffffffffffffffffffffffffffffffffffffffff8816917f92a1f7a41a7c585a8b09e25b195e225b1d43248daca46b0faf9e0792777a222991a450505050565b608081015167ffffffffffffffff1615801590611cfc57504267ffffffffffffffff16816080015167ffffffffffffffff16105b15611d33576040517f1ab7da6b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6020808201516040808401516060808601518651855186880151868801519488015160808901518051908b012060a08a015173ffffffffffffffffffffffffffffffffffffffff871660009081526003909c52988b2080549a9b989a98996114c6997ffeb2925a02bae3dae48d424a0437a2b6ac939aa9230ddc55a1a76f065d988076999493928c611dc48361450c565b919050558e608001516040516020016114ab9b9a999897969594939291909a8b5273ffffffffffffffffffffffffffffffffffffffff998a1660208c015260408b019890985295909716606089015267ffffffffffffffff938416608089015291151560a088015260c087015260e0860152610100850193909352610120840152166101408201526101600190565b60408051808201909152600081526060602082015284516040805180820190915260008152606060208201528167ffffffffffffffff811115611e9857611e98613c11565b604051908082528060200260200182016040528015611ec1578160200160208202803683370190505b5060208201526040517fa2ea7c6e000000000000000000000000000000000000000000000000000000008152600481018990526000907f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063a2ea7c6e90602401600060405180830381865afa158015611f55573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052611f9b9190810190614544565b8051909150611fd6576040517fbf37b20e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008367ffffffffffffffff811115611ff157611ff1613c11565b60405190808252806020026020018201604052801561209057816020015b60408051610140810182526000808252602080830182905292820181905260608083018290526080830182905260a0830182905260c0830182905260e0830182905261010083019190915261012082015282527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90920191018161200f5790505b50905060008467ffffffffffffffff8111156120ae576120ae613c11565b6040519080825280602002602001820160405280156120d7578160200160208202803683370190505b50905060005b858110156125655760008b82815181106120f9576120f9613ba4565b60200260200101519050600067ffffffffffffffff16816020015167ffffffffffffffff161415801561214457504267ffffffffffffffff16816020015167ffffffffffffffff1611155b1561217b576040517f08e8b93700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b846040015115801561218e575080604001515b156121c5576040517f157bd4c300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006040518061014001604052806000801b81526020018f81526020016121e94290565b67ffffffffffffffff168152602001836020015167ffffffffffffffff168152602001600067ffffffffffffffff16815260200183606001518152602001836000015173ffffffffffffffffffffffffffffffffffffffff1681526020018d73ffffffffffffffffffffffffffffffffffffffff16815260200183604001511515815260200183608001518152509050600080600090505b61228b8382612e35565b600081815260046020526040902054909250156122aa57600101612281565b81835260008281526004602081815260409283902086518155908601516001820155918501516002830180546060880151608089015167ffffffffffffffff908116700100000000000000000000000000000000027fffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff92821668010000000000000000027fffffffffffffffffffffffffffffffff000000000000000000000000000000009094169190951617919091171691909117905560a0850151600383015560c0850151908201805473ffffffffffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffff000000000000000000000000000000000000000090911617905560e0850151600583018054610100880151151574010000000000000000000000000000000000000000027fffffffffffffffffffffff000000000000000000000000000000000000000000909116929093169190911791909117905561012084015184919060068201906124299082614669565b505050606084015115612480576060840151600090815260046020526040902054612480576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8287868151811061249357612493613ba4565b60200260200101819052508360a001518686815181106124b5576124b5613ba4565b60200260200101818152505081896020015186815181106124d8576124d8613ba4565b6020026020010181815250508f8e73ffffffffffffffffffffffffffffffffffffffff16856000015173ffffffffffffffffffffffffffffffffffffffff167f8bf46bf4cfd674fa735a3d63ec1c9ad4153f033c290341f3a588b75685141b358560405161254891815260200190565b60405180910390a45050505061255e8160010190565b90506120dd565b5061257583838360008c8c612a46565b845250919998505050505050505050565b606060008267ffffffffffffffff8111156125a3576125a3613c11565b6040519080825280602002602001820160405280156125cc578160200160208202803683370190505b508451909150600090815b818110156126655760008782815181106125f3576125f3613ba4565b6020026020010151905060008151905060005b818110156126515782818151811061262057612620613ba4565b602002602001015187878151811061263a5761263a613ba4565b602090810291909101015260019586019501612606565b50505061265e8160010190565b90506125d7565b509195945050505050565b60008281526005602052604090205467ffffffffffffffff16156126c0576040517f2e26794600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526005602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001667ffffffffffffffff85169081179091559051909184917f5aafceeb1c7ad58e4a84898bdee37c02c0fc46e7d24e6b60e8209449f183459f9190a35050565b6060600061273f83612e94565b600101905060008167ffffffffffffffff81111561275f5761275f613c11565b6040519080825280601f01601f191660200182016040528015612789576020820181803683370190505b5090508181016020015b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a850494508461279357509392505050565b60606112a37f00000000000000000000000000000000000000000000000000000000000000006000612f76565b60606112a37f00000000000000000000000000000000000000000000000000000000000000006001612f76565b60003073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000161480156128b057507f000000000000000000000000000000000000000000000000000000000000000046145b156128da57507f000000000000000000000000000000000000000000000000000000000000000090565b6112a3604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b600061074b61298f61284a565b836040517f19010000000000000000000000000000000000000000000000000000000000008152600281019290925260228201526042902090565b60008060006129d98585613021565b50909250905060008160038111156129f3576129f3614782565b148015612a2b57508573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80612a3c5750612a3c86868661306e565b9695505050505050565b84516000906001819003612a9e57612a968888600081518110612a6b57612a6b613ba4565b602002602001015188600081518110612a8657612a86613ba4565b60200260200101518888886131bb565b915050612a3c565b602088015173ffffffffffffffffffffffffffffffffffffffff8116612b3f5760005b82811015612b2457878181518110612adb57612adb613ba4565b6020026020010151600014612b1c576040517f1574f9f300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600101612ac1565b508315612b3457612b34856134da565b600092505050612a3c565b6000808273ffffffffffffffffffffffffffffffffffffffff1663ce46e0466040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bb191906147b1565b905060005b84811015612c6e5760008a8281518110612bd257612bd2613ba4565b6020026020010151905080600003612bea5750612c66565b82612c21576040517f1574f9f300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b88811115612c5b576040517f1101129400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b978890039792909201915b600101612bb6565b508715612d49576040517f88e5b2d900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8416906388e5b2d9908490612ccb908e908e906004016147ce565b60206040518083038185885af1158015612ce9573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612d0e91906147b1565b612d44576040517fbf2f3a8b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e18565b6040517f91db0b7e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8416906391db0b7e908490612d9f908e908e906004016147ce565b60206040518083038185885af1158015612dbd573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612de291906147b1565b612e18576040517fe8bee83900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8515612e2757612e27876134da565b509998505050505050505050565b60208083015160c084015160e0850151604080870151606088015161010089015160a08a01516101208b01519451600099612e7699989796918c9101614864565b60405160208183030381529060405280519060200120905092915050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612edd577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310612f09576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612f2757662386f26fc10000830492506010015b6305f5e1008310612f3f576305f5e100830492506008015b6127108310612f5357612710830492506004015b60648310612f65576064830492506002015b600a831061074b5760010192915050565b606060ff8314612f9057612f89836134ed565b905061074b565b818054612f9c90613fac565b80601f0160208091040260200160405190810160405280929190818152602001828054612fc890613fac565b80156130155780601f10612fea57610100808354040283529160200191613015565b820191906000526020600020905b815481529060010190602001808311612ff857829003601f168201915b5050505050905061074b565b6000806000835160410361305b5760208401516040850151606086015160001a61304d8882858561352c565b955095509550505050613067565b50508151600091506002905b9250925092565b60008060008573ffffffffffffffffffffffffffffffffffffffff16858560405160240161309d929190614981565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f1626ba7e000000000000000000000000000000000000000000000000000000001790525161311e919061499a565b600060405180830381855afa9150503d8060008114613159576040519150601f19603f3d011682016040523d82523d6000602084013e61315e565b606091505b509150915081801561317257506020815110155b8015612a3c575080517f1626ba7e00000000000000000000000000000000000000000000000000000000906131b090830160209081019084016149ac565b149695505050505050565b602086015160009073ffffffffffffffffffffffffffffffffffffffff811661322f578515613216576040517f1574f9f300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b821561322557613225846134da565b6000915050612a3c565b851561331a578073ffffffffffffffffffffffffffffffffffffffff1663ce46e0466040518163ffffffff1660e01b8152600401602060405180830381865afa158015613280573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132a491906147b1565b6132da576040517f1574f9f300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83861115613314576040517f1101129400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b85840393505b84156133f2576040517fe49617e100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82169063e49617e1908890613374908b90600401613b16565b60206040518083038185885af1158015613392573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906133b791906147b1565b6133ed576040517fccf3bb2700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134bf565b6040517fe60c350500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82169063e60c3505908890613446908b90600401613b16565b60206040518083038185885af1158015613464573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061348991906147b1565b6134bf576040517fbd8ba84d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82156134ce576134ce846134da565b50939695505050505050565b80156134ea576134ea3382613626565b50565b606060006134fa83613700565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115613567575060009150600390508261361c565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa1580156135bb573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166136125750600092506001915082905061361c565b9250600091508190505b9450945094915050565b80471015613666576040517fcd78605900000000000000000000000000000000000000000000000000000000815230600482015260240160405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d80600081146136c0576040519150601f19603f3d011682016040523d82523d6000602084013e6136c5565b606091505b5050905080610ae6576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060ff8216601f81111561074b576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008083601f84011261375357600080fd5b50813567ffffffffffffffff81111561376b57600080fd5b6020830191508360208260051b850101111561378657600080fd5b9250929050565b600080602083850312156137a057600080fd5b823567ffffffffffffffff8111156137b757600080fd5b6137c385828601613741565b90969095509350505050565b60005b838110156137ea5781810151838201526020016137d2565b50506000910152565b6000815180845261380b8160208601602086016137cf565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061385060208301846137f3565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff811681146134ea57600080fd5b803561388481613857565b919050565b60006020828403121561389b57600080fd5b813561385081613857565b6000602082840312156138b857600080fd5b813567ffffffffffffffff8111156138cf57600080fd5b820160e0818503121561385057600080fd5b602080825282518282018190526000918401906040840190835b818110156139195783518352602093840193909201916001016138fb565b509095945050505050565b6000606082840312801561393757600080fd5b509092915050565b60006020828403121561395157600080fd5b5035919050565b600081518084526020840193506020830160005b8281101561398a57815186526020958601959091019060010161396c565b5093949350505050565b7fff000000000000000000000000000000000000000000000000000000000000008816815260e0602082015260006139cf60e08301896137f3565b82810360408401526139e181896137f3565b905086606084015273ffffffffffffffffffffffffffffffffffffffff861660808401528460a084015282810360c0840152611bbb8185613958565b805182526020810151602083015260006040820151613a48604085018267ffffffffffffffff169052565b506060820151613a64606085018267ffffffffffffffff169052565b506080820151613a80608085018267ffffffffffffffff169052565b5060a082015160a084015260c0820151613ab260c085018273ffffffffffffffffffffffffffffffffffffffff169052565b5060e0820151613ada60e085018273ffffffffffffffffffffffffffffffffffffffff169052565b50610100820151613af061010085018215159052565b50610120820151610140610120850152613b0e6101408501826137f3565b949350505050565b6020815260006138506020830184613a1d565b600061010082840312801561393757600080fd5b60008060408385031215613b5057600080fd5b8235613b5b81613857565b946020939093013593505050565b600060208284031215613b7b57600080fd5b813567ffffffffffffffff811115613b9257600080fd5b82016040818503121561385057600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61833603018112613c0757600080fd5b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405160a0810167ffffffffffffffff81118282101715613c6357613c63613c11565b60405290565b60405160c0810167ffffffffffffffff81118282101715613c6357613c63613c11565b6040516080810167ffffffffffffffff81118282101715613c6357613c63613c11565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715613cf657613cf6613c11565b604052919050565b600067ffffffffffffffff821115613d1857613d18613c11565b5060051b60200190565b600060408284031215613d3457600080fd5b6040805190810167ffffffffffffffff81118282101715613d5757613d57613c11565b604052823581526020928301359281019290925250919050565b600060608284031215613d8357600080fd5b6040516060810167ffffffffffffffff81118282101715613da657613da6613c11565b604052905080823560ff81168114613dbd57600080fd5b815260208381013590820152604092830135920191909152919050565b600082601f830112613deb57600080fd5b8135613dfe613df982613cfe565b613caf565b80828252602082019150602060608402860101925085831115613e2057600080fd5b602085015b83811015613e4757613e378782613d71565b8352602090920191606001613e25565b5095945050505050565b803567ffffffffffffffff8116811461388457600080fd5b600060a08236031215613e7b57600080fd5b613e83613c40565b82358152602083013567ffffffffffffffff811115613ea157600080fd5b830136601f820112613eb257600080fd5b8035613ec0613df982613cfe565b8082825260208201915060208360061b850101925036831115613ee257600080fd5b6020840193505b82841015613f0e57613efb3685613d22565b8252602082019150604084019350613ee9565b6020850152505050604083013567ffffffffffffffff811115613f3057600080fd5b613f3c36828601613dda565b604083015250613f4e60608401613879565b6060820152613f5f60808401613e51565b608082015292915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8181038181111561074b5761074b613f6a565b600181811c90821680613fc057607f821691505b602082108103613ff9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b80151581146134ea57600080fd5b600067ffffffffffffffff82111561402757614027613c11565b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b600060c0828403121561406557600080fd5b61406d613c69565b9050813561407a81613857565b815261408860208301613e51565b6020820152604082013561409b81613fff565b604082015260608281013590820152608082013567ffffffffffffffff8111156140c457600080fd5b8201601f810184136140d557600080fd5b80356140e3613df98261400d565b8181528560208385010111156140f857600080fd5b8160208401602083013760009181016020019190915260808301525060a09182013591810191909152919050565b600060e0823603121561413857600080fd5b614140613c40565b82358152602083013567ffffffffffffffff81111561415e57600080fd5b61416a36828601614053565b60208301525061417d3660408501613d71565b604082015260a083013561419081613857565b6060820152613f5f60c08401613e51565b600082357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff41833603018112613c0757600080fd5b600061074b3683614053565b600082357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc1833603018112613c0757600080fd5b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811261424a57600080fd5b83018035915067ffffffffffffffff82111561426557600080fd5b6020019150600581901b360382131561378657600080fd5b600061428b613df984613cfe565b8381526020810190600585901b8401368111156142a757600080fd5b845b8181101561391957803567ffffffffffffffff8111156142c857600080fd5b6142d436828901614053565b855250602093840193016142a9565b6000604082840312156142f557600080fd5b6138508383613d22565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811261433457600080fd5b83018035915067ffffffffffffffff82111561434f57600080fd5b6020019150600681901b360382131561378657600080fd5b600084516143798184602089016137cf565b7f2e0000000000000000000000000000000000000000000000000000000000000090830190815284516143b38160018401602089016137cf565b7f2e000000000000000000000000000000000000000000000000000000000000006001929091019182015283516143f18160028401602088016137cf565b0160020195945050505050565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811261443357600080fd5b83018035915067ffffffffffffffff82111561444e57600080fd5b602001915060608102360382131561378657600080fd5b60006060828403121561447757600080fd5b6138508383613d71565b60006020828403121561449357600080fd5b61385082613e51565b60006101008284031280156144b057600080fd5b506144b9613c40565b823581526144ca8460208501613d22565b60208201526144dc8460608501613d71565b604082015260c08301356144ef81613857565b606082015261450060e08401613e51565b60808201529392505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361453d5761453d613f6a565b5060010190565b60006020828403121561455657600080fd5b815167ffffffffffffffff81111561456d57600080fd5b82016080818503121561457f57600080fd5b614587613c8c565b81518152602082015161459981613857565b602082015260408201516145ac81613fff565b6040820152606082015167ffffffffffffffff8111156145cb57600080fd5b80830192505084601f8301126145e057600080fd5b81516145ee613df98261400d565b81815286602083860101111561460357600080fd5b6146148260208301602087016137cf565b606083015250949350505050565b601f821115610ae657806000526020600020601f840160051c810160208510156146495750805b601f840160051c820191505b818110156107055760008155600101614655565b815167ffffffffffffffff81111561468357614683613c11565b614697816146918454613fac565b84614622565b6020601f8211600181146146e957600083156146b35750848201515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600385901b1c1916600184901b178455610705565b6000848152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08516915b828110156147375787850151825560209485019460019092019101614717565b508482101561477357868401517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b60f8161c191681555b50505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000602082840312156147c357600080fd5b815161385081613fff565b6000604082016040835280855180835260608501915060608160051b86010192506020870160005b82811015614845577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa0878603018452614830858351613a1d565b945060209384019391909101906001016147f6565b50505050828103602084015261485b8185613958565b95945050505050565b8981527fffffffffffffffffffffffffffffffffffffffff0000000000000000000000008960601b1660208201527fffffffffffffffffffffffffffffffffffffffff0000000000000000000000008860601b1660348201527fffffffffffffffff0000000000000000000000000000000000000000000000008760c01b1660488201527fffffffffffffffff0000000000000000000000000000000000000000000000008660c01b16605082015284151560f81b60588201528360598201526000607982016000855161493c818460208a016137cf565b8201905061496e818660e01b7fffffffff00000000000000000000000000000000000000000000000000000000169052565b6004019c9b505050505050505050505050565b828152604060208201526000613b0e60408301846137f3565b60008251613c078184602087016137cf565b6000602082840312156149be57600080fd5b505191905056fea164736f6c634300081a000a",
- "deployedBytecode": "0x6080604052600436106101965760003560e01c806384b0196e116100e1578063cf190f341161008a578063e71ff36511610064578063e71ff365146104dc578063ed24911d146104fc578063f10b5cc814610511578063f17325e71461056257600080fd5b8063cf190f3414610446578063d45c443514610466578063e30bb5631461049d57600080fd5b8063a6d4dbc7116100bb578063a6d4dbc7146103a6578063b469318d146103b9578063b83010d31461041357600080fd5b806384b0196e1461033e5780639541152514610366578063a3112a641461037957600080fd5b806344adc90e116101435780634d0030701161011d5780634d003070146102e957806354fd4d501461030957806379f7573a1461031e57600080fd5b806344adc90e146102a357806346926267146102c35780634cb7e9e5146102d657600080fd5b806317d7de7c1161017457806317d7de7c1461022b5780632d0335ab1461024d5780633c0427151461029057600080fd5b80630eabf6601461019b57806312b11a17146101b057806313893f61146101f2575b600080fd5b6101ae6101a936600461378d565b610575565b005b3480156101bc57600080fd5b507ffeb2925a02bae3dae48d424a0437a2b6ac939aa9230ddc55a1a76f065d9880765b6040519081526020015b60405180910390f35b3480156101fe57600080fd5b5061021261020d36600461378d565b61070c565b60405167ffffffffffffffff90911681526020016101e9565b34801561023757600080fd5b50610240610751565b6040516101e9919061383d565b34801561025957600080fd5b506101df610268366004613889565b73ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b6101df61029e3660046138a6565b6107e3565b6102b66102b136600461378d565b6108e6565b6040516101e991906138e1565b6101ae6102d1366004613924565b610a67565b6101ae6102e436600461378d565b610aeb565b3480156102f557600080fd5b5061021261030436600461393f565b610bce565b34801561031557600080fd5b50610240610bdb565b34801561032a57600080fd5b506101ae61033936600461393f565b610c7e565b34801561034a57600080fd5b50610353610d17565b6040516101e99796959493929190613994565b6102b661037436600461378d565b610d79565b34801561038557600080fd5b5061039961039436600461393f565b610fec565b6040516101e99190613b16565b6101ae6103b4366004613b29565b6111ae565b3480156103c557600080fd5b506102126103d4366004613b3d565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205467ffffffffffffffff1690565b34801561041f57600080fd5b507fb5d556f07587ec0f08cf386545cc4362c702a001650c2058002615ee5c9d1e756101df565b34801561045257600080fd5b5061021261046136600461393f565b611253565b34801561047257600080fd5b5061021261048136600461393f565b60009081526005602052604090205467ffffffffffffffff1690565b3480156104a957600080fd5b506104cc6104b836600461393f565b600090815260046020526040902054151590565b60405190151581526020016101e9565b3480156104e857600080fd5b506102126104f736600461378d565b611261565b34801561050857600080fd5b506101df611299565b34801561051d57600080fd5b5060405173ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001681526020016101e9565b6101df610570366004613b69565b6112a8565b348160005b81811015610705577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8201811460008686848181106105bb576105bb613ba4565b90506020028101906105cd9190613bd3565b6105d690613e69565b60208101518051919250908015806105f357508260400151518114155b1561062a576040517f947d5a8400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b818110156106ce576106c66040518060a001604052808660000151815260200185848151811061065f5761065f613ba4565b602002602001015181526020018660400151848151811061068257610682613ba4565b60200260200101518152602001866060015173ffffffffffffffffffffffffffffffffffffffff168152602001866080015167ffffffffffffffff16815250611366565b60010161062d565b506106e483600001518385606001518a88611578565b6106ee9088613f99565b9650505050506106fe8160010190565b905061057a565b5050505050565b60004282825b818110156107455761073d3387878481811061073057610730613ba4565b9050602002013585611bc9565b600101610712565b50909150505b92915050565b60606002805461076090613fac565b80601f016020809104026020016040519081016040528092919081815260200182805461078c90613fac565b80156107d95780601f106107ae576101008083540402835291602001916107d9565b820191906000526020600020905b8154815290600101906020018083116107bc57829003601f168201915b5050505050905090565b60006107f66107f183614126565b611cc8565b604080516001808252818301909252600091816020015b6040805160c081018252600080825260208083018290529282018190526060808301829052608083015260a082015282527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90920191018161080d57905050905061087b60208401846141a1565b610884906141d5565b8160008151811061089757610897613ba4565b60209081029190910101526108c08335826108b860c0870160a08801613889565b346001611e53565b602001516000815181106108d6576108d6613ba4565b6020026020010151915050919050565b60608160008167ffffffffffffffff81111561090457610904613c11565b60405190808252806020026020018201604052801561093757816020015b60608152602001906001900390816109225790505b509050600034815b84811015610a51577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff850181143689898481811061097f5761097f613ba4565b905060200281019061099191906141e1565b90506109a06020820182614215565b90506000036109db576040517f947d5a8400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610a0082356109ef6020850185614215565b6109f89161427d565b338887611e53565b8051909150610a0f9086613f99565b94508060200151878581518110610a2857610a28613ba4565b602002602001018190525080602001515186019550505050610a4a8160010190565b905061093f565b50610a5c8383612586565b979650505050505050565b604080516001808252818301909252600091816020015b6040805180820190915260008082526020820152815260200190600190039081610a7e579050509050610ab9368390038301602084016142e3565b81600081518110610acc57610acc613ba4565b6020908102919091010152610ae682358233346001611578565b505050565b348160005b81811015610705577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8201811436868684818110610b3057610b30613ba4565b9050602002810190610b4291906141e1565b9050610baf8135610b5660208401846142ff565b808060200260200160405190810160405280939291908181526020016000905b82821015610ba257610b93604083028601368190038101906142e3565b81526020019060010190610b76565b5050505050338886611578565b610bb99086613f99565b94505050610bc78160010190565b9050610af0565b60004261074b8382612670565b6060610c067f0000000000000000000000000000000000000000000000000000000000000000612732565b610c2f7f0000000000000000000000000000000000000000000000000000000000000000612732565b610c587f0000000000000000000000000000000000000000000000000000000000000000612732565b604051602001610c6a93929190614367565b604051602081830303815290604052905090565b33600090815260036020526040902054808211610cc7576040517f756688fe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360009081526003602090815260409182902084905581518381529081018490527f57b09af877df9068fd60a69d7b21f5576b8b38955812d6ae4ac52942f1e38fb7910160405180910390a15050565b600060608060008060006060610d2b6127f0565b610d3361281d565b604080516000808252602082019092527f0f000000000000000000000000000000000000000000000000000000000000009b939a50919850469750309650945092509050565b60608160008167ffffffffffffffff811115610d9757610d97613c11565b604051908082528060200260200182016040528015610dca57816020015b6060815260200190600190039081610db55790505b509050600034815b84811015610a51577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8501811436898984818110610e1257610e12613ba4565b9050602002810190610e249190613bd3565b9050366000610e366020840184614215565b909250905080801580610e575750610e5160408501856143fe565b90508114155b15610e8e576040517f947d5a8400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b81811015610f6f57610f676040518060a0016040528087600001358152602001868685818110610ec357610ec3613ba4565b9050602002810190610ed591906141a1565b610ede906141d5565b8152602001610ef060408901896143fe565b85818110610f0057610f00613ba4565b905060600201803603810190610f169190614465565b8152602001610f2b6080890160608a01613889565b73ffffffffffffffffffffffffffffffffffffffff168152602001610f5660a0890160808a01614481565b67ffffffffffffffff169052611cc8565b600101610e91565b506000610f988535610f81858761427d565b610f916080890160608a01613889565b8b8a611e53565b8051909150610fa79089613f99565b975080602001518a8881518110610fc057610fc0613ba4565b602002602001018190525080602001515189019850505050505050610fe58160010190565b9050610dd2565b604080516101408101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820183905261010082019290925261012081019190915260008281526004602081815260409283902083516101408101855281548152600182015492810192909252600281015467ffffffffffffffff808216958401959095526801000000000000000081048516606084015270010000000000000000000000000000000090049093166080820152600383015460a08201529082015473ffffffffffffffffffffffffffffffffffffffff90811660c0830152600583015490811660e083015274010000000000000000000000000000000000000000900460ff1615156101008201526006820180549192916101208401919061112590613fac565b80601f016020809104026020016040519081016040528092919081815260200182805461115190613fac565b801561119e5780601f106111735761010080835404028352916020019161119e565b820191906000526020600020905b81548152906001019060200180831161118157829003601f168201915b5050505050815250509050919050565b6111c56111c03683900383018361449c565b611366565b604080516001808252818301909252600091816020015b60408051808201909152600080825260208201528152602001906001900390816111dc579050509050611217368390038301602084016142e3565b8160008151811061122a5761122a613ba4565b6020908102919091010152610ae682358261124b60e0860160c08701613889565b346001611578565b60004261074b338483611bc9565b60004282825b818110156107455761129186868381811061128457611284613ba4565b9050602002013584612670565b600101611267565b60006112a361284a565b905090565b604080516001808252818301909252600091829190816020015b6040805160c081018252600080825260208083018290529282018190526060808301829052608083015260a082015282527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9092019101816112c257905050905061133060208401846141a1565b611339906141d5565b8160008151811061134c5761134c613ba4565b60209081029190910101526108c083358233346001611e53565b608081015167ffffffffffffffff161580159061139a57504267ffffffffffffffff16816080015167ffffffffffffffff16105b156113d1576040517f1ab7da6b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6020808201516040808401516060850151855184518587015173ffffffffffffffffffffffffffffffffffffffff84166000908152600390985294872080549697949694956114c6957fb5d556f07587ec0f08cf386545cc4362c702a001650c2058002615ee5c9d1e7595949392886114498361450c565b909155506080808c015160408051602081019990995273ffffffffffffffffffffffffffffffffffffffff9097169688019690965260608701949094529285019190915260a084015260c083015267ffffffffffffffff1660e0820152610100015b60405160208183030381529060405280519060200120612982565b905061153c84606001518284602001518560400151866000015160405160200161152893929190928352602083019190915260f81b7fff0000000000000000000000000000000000000000000000000000000000000016604082015260410190565b6040516020818303038152906040526129ca565b611572576040517f8baa579f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040517fa2ea7c6e00000000000000000000000000000000000000000000000000000000815260048101869052600090819073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063a2ea7c6e90602401600060405180830381865afa158015611608573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820160405261164e9190810190614544565b8051909150611689576040517fbf37b20e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b855160008167ffffffffffffffff8111156116a6576116a6613c11565b60405190808252806020026020018201604052801561174557816020015b60408051610140810182526000808252602080830182905292820181905260608083018290526080830182905260a0830182905260c0830182905260e0830182905261010083019190915261012082015282527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9092019101816116c45790505b50905060008267ffffffffffffffff81111561176357611763613c11565b60405190808252806020026020018201604052801561178c578160200160208202803683370190505b50905060005b83811015611bab5760008a82815181106117ae576117ae613ba4565b6020908102919091018101518051600090815260049092526040909120805491925090611807576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8c816001015414611844576040517fbf37b20e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600581015473ffffffffffffffffffffffffffffffffffffffff8c811691161461189a576040517f4ca8886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600581015474010000000000000000000000000000000000000000900460ff166118f0576040517f157bd4c300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002810154700100000000000000000000000000000000900467ffffffffffffffff161561194a576040517f905e710700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b426002820180547fffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff811670010000000000000000000000000000000067ffffffffffffffff948516810291821793849055604080516101408101825287548152600188015460208201529386169286169290921791830191909152680100000000000000008304841660608301529091049091166080820152600382015460a0820152600482015473ffffffffffffffffffffffffffffffffffffffff90811660c0830152600583015490811660e083015274010000000000000000000000000000000000000000900460ff1615156101008201526006820180548391610120840191611a5690613fac565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8290613fac565b8015611acf5780601f10611aa457610100808354040283529160200191611acf565b820191906000526020600020905b815481529060010190602001808311611ab257829003601f168201915b505050505081525050858481518110611aea57611aea613ba4565b60200260200101819052508160200151848481518110611b0c57611b0c613ba4565b6020026020010181815250508c8b73ffffffffffffffffffffffffffffffffffffffff16868581518110611b4257611b42613ba4565b602002602001015160c0015173ffffffffffffffffffffffffffffffffffffffff167ff930a6e2523c9cc298691873087a740550b8fc85a0680830414c148ed927f6158560000151604051611b9991815260200190565b60405180910390a45050600101611792565b50611bbb84838360018b8b612a46565b9a9950505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600660209081526040808320858452918290529091205467ffffffffffffffff1615611c3d576040517fec9d6eeb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008381526020829052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001667ffffffffffffffff861690811790915590519091859173ffffffffffffffffffffffffffffffffffffffff8816917f92a1f7a41a7c585a8b09e25b195e225b1d43248daca46b0faf9e0792777a222991a450505050565b608081015167ffffffffffffffff1615801590611cfc57504267ffffffffffffffff16816080015167ffffffffffffffff16105b15611d33576040517f1ab7da6b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6020808201516040808401516060808601518651855186880151868801519488015160808901518051908b012060a08a015173ffffffffffffffffffffffffffffffffffffffff871660009081526003909c52988b2080549a9b989a98996114c6997ffeb2925a02bae3dae48d424a0437a2b6ac939aa9230ddc55a1a76f065d988076999493928c611dc48361450c565b919050558e608001516040516020016114ab9b9a999897969594939291909a8b5273ffffffffffffffffffffffffffffffffffffffff998a1660208c015260408b019890985295909716606089015267ffffffffffffffff938416608089015291151560a088015260c087015260e0860152610100850193909352610120840152166101408201526101600190565b60408051808201909152600081526060602082015284516040805180820190915260008152606060208201528167ffffffffffffffff811115611e9857611e98613c11565b604051908082528060200260200182016040528015611ec1578160200160208202803683370190505b5060208201526040517fa2ea7c6e000000000000000000000000000000000000000000000000000000008152600481018990526000907f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063a2ea7c6e90602401600060405180830381865afa158015611f55573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052611f9b9190810190614544565b8051909150611fd6576040517fbf37b20e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008367ffffffffffffffff811115611ff157611ff1613c11565b60405190808252806020026020018201604052801561209057816020015b60408051610140810182526000808252602080830182905292820181905260608083018290526080830182905260a0830182905260c0830182905260e0830182905261010083019190915261012082015282527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90920191018161200f5790505b50905060008467ffffffffffffffff8111156120ae576120ae613c11565b6040519080825280602002602001820160405280156120d7578160200160208202803683370190505b50905060005b858110156125655760008b82815181106120f9576120f9613ba4565b60200260200101519050600067ffffffffffffffff16816020015167ffffffffffffffff161415801561214457504267ffffffffffffffff16816020015167ffffffffffffffff1611155b1561217b576040517f08e8b93700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b846040015115801561218e575080604001515b156121c5576040517f157bd4c300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006040518061014001604052806000801b81526020018f81526020016121e94290565b67ffffffffffffffff168152602001836020015167ffffffffffffffff168152602001600067ffffffffffffffff16815260200183606001518152602001836000015173ffffffffffffffffffffffffffffffffffffffff1681526020018d73ffffffffffffffffffffffffffffffffffffffff16815260200183604001511515815260200183608001518152509050600080600090505b61228b8382612e35565b600081815260046020526040902054909250156122aa57600101612281565b81835260008281526004602081815260409283902086518155908601516001820155918501516002830180546060880151608089015167ffffffffffffffff908116700100000000000000000000000000000000027fffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff92821668010000000000000000027fffffffffffffffffffffffffffffffff000000000000000000000000000000009094169190951617919091171691909117905560a0850151600383015560c0850151908201805473ffffffffffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffff000000000000000000000000000000000000000090911617905560e0850151600583018054610100880151151574010000000000000000000000000000000000000000027fffffffffffffffffffffff000000000000000000000000000000000000000000909116929093169190911791909117905561012084015184919060068201906124299082614669565b505050606084015115612480576060840151600090815260046020526040902054612480576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8287868151811061249357612493613ba4565b60200260200101819052508360a001518686815181106124b5576124b5613ba4565b60200260200101818152505081896020015186815181106124d8576124d8613ba4565b6020026020010181815250508f8e73ffffffffffffffffffffffffffffffffffffffff16856000015173ffffffffffffffffffffffffffffffffffffffff167f8bf46bf4cfd674fa735a3d63ec1c9ad4153f033c290341f3a588b75685141b358560405161254891815260200190565b60405180910390a45050505061255e8160010190565b90506120dd565b5061257583838360008c8c612a46565b845250919998505050505050505050565b606060008267ffffffffffffffff8111156125a3576125a3613c11565b6040519080825280602002602001820160405280156125cc578160200160208202803683370190505b508451909150600090815b818110156126655760008782815181106125f3576125f3613ba4565b6020026020010151905060008151905060005b818110156126515782818151811061262057612620613ba4565b602002602001015187878151811061263a5761263a613ba4565b602090810291909101015260019586019501612606565b50505061265e8160010190565b90506125d7565b509195945050505050565b60008281526005602052604090205467ffffffffffffffff16156126c0576040517f2e26794600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526005602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001667ffffffffffffffff85169081179091559051909184917f5aafceeb1c7ad58e4a84898bdee37c02c0fc46e7d24e6b60e8209449f183459f9190a35050565b6060600061273f83612e94565b600101905060008167ffffffffffffffff81111561275f5761275f613c11565b6040519080825280601f01601f191660200182016040528015612789576020820181803683370190505b5090508181016020015b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a850494508461279357509392505050565b60606112a37f00000000000000000000000000000000000000000000000000000000000000006000612f76565b60606112a37f00000000000000000000000000000000000000000000000000000000000000006001612f76565b60003073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000161480156128b057507f000000000000000000000000000000000000000000000000000000000000000046145b156128da57507f000000000000000000000000000000000000000000000000000000000000000090565b6112a3604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b600061074b61298f61284a565b836040517f19010000000000000000000000000000000000000000000000000000000000008152600281019290925260228201526042902090565b60008060006129d98585613021565b50909250905060008160038111156129f3576129f3614782565b148015612a2b57508573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80612a3c5750612a3c86868661306e565b9695505050505050565b84516000906001819003612a9e57612a968888600081518110612a6b57612a6b613ba4565b602002602001015188600081518110612a8657612a86613ba4565b60200260200101518888886131bb565b915050612a3c565b602088015173ffffffffffffffffffffffffffffffffffffffff8116612b3f5760005b82811015612b2457878181518110612adb57612adb613ba4565b6020026020010151600014612b1c576040517f1574f9f300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600101612ac1565b508315612b3457612b34856134da565b600092505050612a3c565b6000808273ffffffffffffffffffffffffffffffffffffffff1663ce46e0466040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bb191906147b1565b905060005b84811015612c6e5760008a8281518110612bd257612bd2613ba4565b6020026020010151905080600003612bea5750612c66565b82612c21576040517f1574f9f300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b88811115612c5b576040517f1101129400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b978890039792909201915b600101612bb6565b508715612d49576040517f88e5b2d900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8416906388e5b2d9908490612ccb908e908e906004016147ce565b60206040518083038185885af1158015612ce9573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612d0e91906147b1565b612d44576040517fbf2f3a8b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e18565b6040517f91db0b7e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8416906391db0b7e908490612d9f908e908e906004016147ce565b60206040518083038185885af1158015612dbd573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612de291906147b1565b612e18576040517fe8bee83900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8515612e2757612e27876134da565b509998505050505050505050565b60208083015160c084015160e0850151604080870151606088015161010089015160a08a01516101208b01519451600099612e7699989796918c9101614864565b60405160208183030381529060405280519060200120905092915050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612edd577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310612f09576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612f2757662386f26fc10000830492506010015b6305f5e1008310612f3f576305f5e100830492506008015b6127108310612f5357612710830492506004015b60648310612f65576064830492506002015b600a831061074b5760010192915050565b606060ff8314612f9057612f89836134ed565b905061074b565b818054612f9c90613fac565b80601f0160208091040260200160405190810160405280929190818152602001828054612fc890613fac565b80156130155780601f10612fea57610100808354040283529160200191613015565b820191906000526020600020905b815481529060010190602001808311612ff857829003601f168201915b5050505050905061074b565b6000806000835160410361305b5760208401516040850151606086015160001a61304d8882858561352c565b955095509550505050613067565b50508151600091506002905b9250925092565b60008060008573ffffffffffffffffffffffffffffffffffffffff16858560405160240161309d929190614981565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f1626ba7e000000000000000000000000000000000000000000000000000000001790525161311e919061499a565b600060405180830381855afa9150503d8060008114613159576040519150601f19603f3d011682016040523d82523d6000602084013e61315e565b606091505b509150915081801561317257506020815110155b8015612a3c575080517f1626ba7e00000000000000000000000000000000000000000000000000000000906131b090830160209081019084016149ac565b149695505050505050565b602086015160009073ffffffffffffffffffffffffffffffffffffffff811661322f578515613216576040517f1574f9f300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b821561322557613225846134da565b6000915050612a3c565b851561331a578073ffffffffffffffffffffffffffffffffffffffff1663ce46e0466040518163ffffffff1660e01b8152600401602060405180830381865afa158015613280573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132a491906147b1565b6132da576040517f1574f9f300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83861115613314576040517f1101129400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b85840393505b84156133f2576040517fe49617e100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82169063e49617e1908890613374908b90600401613b16565b60206040518083038185885af1158015613392573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906133b791906147b1565b6133ed576040517fccf3bb2700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6134bf565b6040517fe60c350500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82169063e60c3505908890613446908b90600401613b16565b60206040518083038185885af1158015613464573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061348991906147b1565b6134bf576040517fbd8ba84d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82156134ce576134ce846134da565b50939695505050505050565b80156134ea576134ea3382613626565b50565b606060006134fa83613700565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115613567575060009150600390508261361c565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa1580156135bb573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166136125750600092506001915082905061361c565b9250600091508190505b9450945094915050565b80471015613666576040517fcd78605900000000000000000000000000000000000000000000000000000000815230600482015260240160405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d80600081146136c0576040519150601f19603f3d011682016040523d82523d6000602084013e6136c5565b606091505b5050905080610ae6576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060ff8216601f81111561074b576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008083601f84011261375357600080fd5b50813567ffffffffffffffff81111561376b57600080fd5b6020830191508360208260051b850101111561378657600080fd5b9250929050565b600080602083850312156137a057600080fd5b823567ffffffffffffffff8111156137b757600080fd5b6137c385828601613741565b90969095509350505050565b60005b838110156137ea5781810151838201526020016137d2565b50506000910152565b6000815180845261380b8160208601602086016137cf565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061385060208301846137f3565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff811681146134ea57600080fd5b803561388481613857565b919050565b60006020828403121561389b57600080fd5b813561385081613857565b6000602082840312156138b857600080fd5b813567ffffffffffffffff8111156138cf57600080fd5b820160e0818503121561385057600080fd5b602080825282518282018190526000918401906040840190835b818110156139195783518352602093840193909201916001016138fb565b509095945050505050565b6000606082840312801561393757600080fd5b509092915050565b60006020828403121561395157600080fd5b5035919050565b600081518084526020840193506020830160005b8281101561398a57815186526020958601959091019060010161396c565b5093949350505050565b7fff000000000000000000000000000000000000000000000000000000000000008816815260e0602082015260006139cf60e08301896137f3565b82810360408401526139e181896137f3565b905086606084015273ffffffffffffffffffffffffffffffffffffffff861660808401528460a084015282810360c0840152611bbb8185613958565b805182526020810151602083015260006040820151613a48604085018267ffffffffffffffff169052565b506060820151613a64606085018267ffffffffffffffff169052565b506080820151613a80608085018267ffffffffffffffff169052565b5060a082015160a084015260c0820151613ab260c085018273ffffffffffffffffffffffffffffffffffffffff169052565b5060e0820151613ada60e085018273ffffffffffffffffffffffffffffffffffffffff169052565b50610100820151613af061010085018215159052565b50610120820151610140610120850152613b0e6101408501826137f3565b949350505050565b6020815260006138506020830184613a1d565b600061010082840312801561393757600080fd5b60008060408385031215613b5057600080fd5b8235613b5b81613857565b946020939093013593505050565b600060208284031215613b7b57600080fd5b813567ffffffffffffffff811115613b9257600080fd5b82016040818503121561385057600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61833603018112613c0757600080fd5b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405160a0810167ffffffffffffffff81118282101715613c6357613c63613c11565b60405290565b60405160c0810167ffffffffffffffff81118282101715613c6357613c63613c11565b6040516080810167ffffffffffffffff81118282101715613c6357613c63613c11565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715613cf657613cf6613c11565b604052919050565b600067ffffffffffffffff821115613d1857613d18613c11565b5060051b60200190565b600060408284031215613d3457600080fd5b6040805190810167ffffffffffffffff81118282101715613d5757613d57613c11565b604052823581526020928301359281019290925250919050565b600060608284031215613d8357600080fd5b6040516060810167ffffffffffffffff81118282101715613da657613da6613c11565b604052905080823560ff81168114613dbd57600080fd5b815260208381013590820152604092830135920191909152919050565b600082601f830112613deb57600080fd5b8135613dfe613df982613cfe565b613caf565b80828252602082019150602060608402860101925085831115613e2057600080fd5b602085015b83811015613e4757613e378782613d71565b8352602090920191606001613e25565b5095945050505050565b803567ffffffffffffffff8116811461388457600080fd5b600060a08236031215613e7b57600080fd5b613e83613c40565b82358152602083013567ffffffffffffffff811115613ea157600080fd5b830136601f820112613eb257600080fd5b8035613ec0613df982613cfe565b8082825260208201915060208360061b850101925036831115613ee257600080fd5b6020840193505b82841015613f0e57613efb3685613d22565b8252602082019150604084019350613ee9565b6020850152505050604083013567ffffffffffffffff811115613f3057600080fd5b613f3c36828601613dda565b604083015250613f4e60608401613879565b6060820152613f5f60808401613e51565b608082015292915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8181038181111561074b5761074b613f6a565b600181811c90821680613fc057607f821691505b602082108103613ff9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b80151581146134ea57600080fd5b600067ffffffffffffffff82111561402757614027613c11565b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b600060c0828403121561406557600080fd5b61406d613c69565b9050813561407a81613857565b815261408860208301613e51565b6020820152604082013561409b81613fff565b604082015260608281013590820152608082013567ffffffffffffffff8111156140c457600080fd5b8201601f810184136140d557600080fd5b80356140e3613df98261400d565b8181528560208385010111156140f857600080fd5b8160208401602083013760009181016020019190915260808301525060a09182013591810191909152919050565b600060e0823603121561413857600080fd5b614140613c40565b82358152602083013567ffffffffffffffff81111561415e57600080fd5b61416a36828601614053565b60208301525061417d3660408501613d71565b604082015260a083013561419081613857565b6060820152613f5f60c08401613e51565b600082357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff41833603018112613c0757600080fd5b600061074b3683614053565b600082357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc1833603018112613c0757600080fd5b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811261424a57600080fd5b83018035915067ffffffffffffffff82111561426557600080fd5b6020019150600581901b360382131561378657600080fd5b600061428b613df984613cfe565b8381526020810190600585901b8401368111156142a757600080fd5b845b8181101561391957803567ffffffffffffffff8111156142c857600080fd5b6142d436828901614053565b855250602093840193016142a9565b6000604082840312156142f557600080fd5b6138508383613d22565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811261433457600080fd5b83018035915067ffffffffffffffff82111561434f57600080fd5b6020019150600681901b360382131561378657600080fd5b600084516143798184602089016137cf565b7f2e0000000000000000000000000000000000000000000000000000000000000090830190815284516143b38160018401602089016137cf565b7f2e000000000000000000000000000000000000000000000000000000000000006001929091019182015283516143f18160028401602088016137cf565b0160020195945050505050565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe184360301811261443357600080fd5b83018035915067ffffffffffffffff82111561444e57600080fd5b602001915060608102360382131561378657600080fd5b60006060828403121561447757600080fd5b6138508383613d71565b60006020828403121561449357600080fd5b61385082613e51565b60006101008284031280156144b057600080fd5b506144b9613c40565b823581526144ca8460208501613d22565b60208201526144dc8460608501613d71565b604082015260c08301356144ef81613857565b606082015261450060e08401613e51565b60808201529392505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361453d5761453d613f6a565b5060010190565b60006020828403121561455657600080fd5b815167ffffffffffffffff81111561456d57600080fd5b82016080818503121561457f57600080fd5b614587613c8c565b81518152602082015161459981613857565b602082015260408201516145ac81613fff565b6040820152606082015167ffffffffffffffff8111156145cb57600080fd5b80830192505084601f8301126145e057600080fd5b81516145ee613df98261400d565b81815286602083860101111561460357600080fd5b6146148260208301602087016137cf565b606083015250949350505050565b601f821115610ae657806000526020600020601f840160051c810160208510156146495750805b601f840160051c820191505b818110156107055760008155600101614655565b815167ffffffffffffffff81111561468357614683613c11565b614697816146918454613fac565b84614622565b6020601f8211600181146146e957600083156146b35750848201515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600385901b1c1916600184901b178455610705565b6000848152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08516915b828110156147375787850151825560209485019460019092019101614717565b508482101561477357868401517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b60f8161c191681555b50505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000602082840312156147c357600080fd5b815161385081613fff565b6000604082016040835280855180835260608501915060608160051b86010192506020870160005b82811015614845577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa0878603018452614830858351613a1d565b945060209384019391909101906001016147f6565b50505050828103602084015261485b8185613958565b95945050505050565b8981527fffffffffffffffffffffffffffffffffffffffff0000000000000000000000008960601b1660208201527fffffffffffffffffffffffffffffffffffffffff0000000000000000000000008860601b1660348201527fffffffffffffffff0000000000000000000000000000000000000000000000008760c01b1660488201527fffffffffffffffff0000000000000000000000000000000000000000000000008660c01b16605082015284151560f81b60588201528360598201526000607982016000855161493c818460208a016137cf565b8201905061496e818660e01b7fffffffff00000000000000000000000000000000000000000000000000000000169052565b6004019c9b505050505050505050505050565b828152604060208201526000613b0e60408301846137f3565b60008251613c078184602087016137cf565b6000602082840312156149be57600080fd5b505191905056fea164736f6c634300081a000a",
- "linkReferences": {},
- "deployedLinkReferences": {}
-}
diff --git a/packages/client/src/utils/actions/observe.json b/packages/client/src/utils/actions/observe.json
new file mode 100644
index 0000000..3185ecb
--- /dev/null
+++ b/packages/client/src/utils/actions/observe.json
@@ -0,0 +1,33 @@
+{
+ "description": "Observe the growth and health of the plants, including the location, date, and any other relevant details. Each observation action should be documented separately.",
+ "media": {
+ "title": "Capture the Observation",
+ "description": "Please take a photo of the location where you will be observing the plants. You can also take photos of the plants to document their growth and health.",
+ "maxImageCount": 7
+ },
+ "details": {
+ "title": "Input Observation Details",
+ "description": "Please provide the following details about the observation.",
+ "feedbackPlaceholder": "Provide feedback or any issues during the observation process",
+ "inputs": [
+ {
+ "title": "Plants Observed",
+ "placeholder": "Select the different species observed",
+ "type": "select",
+ "required": false,
+ "options": []
+ },
+ {
+ "title": "Number of Plants Observed",
+ "placeholder": "Enter the number of plants observed",
+ "type": "number",
+ "required": false,
+ "options": []
+ }
+ ]
+ },
+ "review": {
+ "title": "Review Observation Details",
+ "description": "Please review the details you have provided before submitting."
+ }
+}
diff --git a/packages/client/src/utils/actions/plant.json b/packages/client/src/utils/actions/plant.json
new file mode 100644
index 0000000..cbb520f
--- /dev/null
+++ b/packages/client/src/utils/actions/plant.json
@@ -0,0 +1,33 @@
+{
+ "description": "Capture the planting process for seedlings or saplings, including the location, date, and any other relevant details. Each planting action should be documented separately.",
+ "media": {
+ "title": "Photograph the Plot",
+ "description": "Please take a photo of the location where you will be planting Seedlings or Saplings.",
+ "maxImageCount": 8
+ },
+ "details": {
+ "title": "Input Planting Details",
+ "description": "Please provide the following details about the planting process.",
+ "feedbackPlaceholder": "Provide feedback or any issues during the planting process",
+ "inputs": [
+ {
+ "title": "Plants Planted",
+ "placeholder": "Select the different species planted",
+ "type": "select",
+ "required": true,
+ "options": ["Acacia", "Eucalyptus", "Pine", "Other"]
+ },
+ {
+ "title": "How many plants were planted?",
+ "placeholder": "Enter the number of plants planted",
+ "type": "number",
+ "required": true,
+ "options": []
+ }
+ ]
+ },
+ "review": {
+ "title": "Review Planting Details",
+ "description": "Please review the details you have provided before submitting."
+ }
+}
diff --git a/packages/client/src/utils/eas.ts b/packages/client/src/utils/eas.ts
new file mode 100644
index 0000000..4174c9f
--- /dev/null
+++ b/packages/client/src/utils/eas.ts
@@ -0,0 +1,144 @@
+import { encodeFunctionData } from "viem";
+import {
+ SchemaEncoder,
+ ZERO_BYTES32,
+ NO_EXPIRATION,
+} from "@ethereum-attestation-service/eas-sdk";
+
+import { EAS } from "@/constants";
+import { uploadFileToIPFS, uploadJSONToIPFS } from "@/modules/pinata";
+
+const value = 0n;
+
+export function encodeAttestCallData(
+ schema: `0x${string}`,
+ data: `0x${string}`,
+ recipient: `0x${string}`
+) {
+ return encodeFunctionData({
+ abi: [
+ {
+ inputs: [
+ {
+ components: [
+ {
+ internalType: "bytes32",
+ name: "schema",
+ type: "bytes32",
+ },
+ {
+ components: [
+ {
+ internalType: "address",
+ name: "recipient",
+ type: "address",
+ },
+ {
+ internalType: "uint64",
+ name: "expirationTime",
+ type: "uint64",
+ },
+ {
+ internalType: "bool",
+ name: "revocable",
+ type: "bool",
+ },
+ {
+ internalType: "bytes32",
+ name: "refUID",
+ type: "bytes32",
+ },
+ {
+ internalType: "bytes",
+ name: "data",
+ type: "bytes",
+ },
+ {
+ internalType: "uint256",
+ name: "value",
+ type: "uint256",
+ },
+ ],
+ internalType: "struct AttestationRequestData",
+ name: "data",
+ type: "tuple",
+ },
+ ],
+ internalType: "struct AttestationRequest",
+ name: "request",
+ type: "tuple",
+ },
+ ],
+ name: "attest",
+ outputs: [
+ {
+ internalType: "bytes32",
+ name: "",
+ type: "bytes32",
+ },
+ ],
+ stateMutability: "payable",
+ type: "function",
+ },
+ ],
+ args: [
+ {
+ schema,
+ data: {
+ data,
+ recipient,
+ value,
+ revocable: true,
+ refUID: ZERO_BYTES32,
+ expirationTime: NO_EXPIRATION,
+ },
+ },
+ ],
+ });
+}
+
+export async function encodeWorkData(
+ data: WorkDraft,
+ recipient: `0x${string}`
+) {
+ const schema = EAS["42161"].WORK.schema as `0x${string}`;
+ const schemaEncoder = new SchemaEncoder(schema);
+
+ const media = await Promise.all(
+ data.media.map(async (file) => {
+ return (await uploadFileToIPFS(file)).IpfsHash;
+ })
+ );
+
+ const metadata = await uploadJSONToIPFS({
+ plantSelection: data.plantSelection,
+ plantCount: data.plantCount,
+ });
+
+ const encodedData = schemaEncoder.encodeData([
+ { name: "actionUID", value: data.actionUID, type: "uint256" },
+ { name: "title", value: data.title, type: "string" },
+ { name: "feedback", value: data.feedback, type: "string" },
+ { name: "metadata", value: metadata, type: "string" },
+ { name: "media", value: media, type: "string[]" },
+ ]) as `0x${string}`;
+
+ return encodeAttestCallData(schema, encodedData, recipient);
+}
+
+export function encodeWorkApprovalData(
+ data: WorkApprovalDraft,
+ recipient: `0x${string}`
+) {
+ const schema = EAS["42161"].WORK_APPROVAL.schema as `0x${string}`;
+ const schemaEncoder = new SchemaEncoder(schema);
+
+ const encodedData = schemaEncoder.encodeData([
+ { name: "actionUID", value: data.actionUID, type: "uint256" },
+ { name: "workUID", value: data.workUID, type: "bytes32" },
+ { name: "approved", value: data.approved, type: "bool" },
+ { name: "feedback", value: data.feedback, type: "string" },
+ ]) as `0x${string}`;
+
+ return encodeAttestCallData(schema, encodedData, recipient);
+}
diff --git a/packages/client/src/utils/text.ts b/packages/client/src/utils/text.ts
new file mode 100644
index 0000000..dc8aa00
--- /dev/null
+++ b/packages/client/src/utils/text.ts
@@ -0,0 +1,97 @@
+export const formatAddress: (arg0: string) => string = (address) => {
+ if (!address) return "no address provided";
+ if (address.includes(".eth")) return address;
+
+ const start = address.slice(0, 6);
+ const end = address.slice(address.length - 4);
+ return `${start}...${end}`;
+};
+
+export function truncate(str: string, n: number) {
+ return str.length > n ? str.slice(0, n - 1) + "..." : str;
+}
+
+export function isValidEmail(email: string) {
+ // eslint-disable-next-line no-useless-escape
+ return /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(
+ email
+ );
+}
+
+export function truncateDescription(description: string) {
+ return description.length > 80
+ ? description.slice(0, 80 - 1) + "..."
+ : description;
+}
+
+export function formatPrice(
+ price: number | null,
+ currency?: "ETH" | "USDC" | "OP"
+) {
+ return price?.toLocaleString("en-US", {
+ style: "currency",
+ currency: currency ?? "USD",
+ });
+}
+
+export function formatLastUpdated(updatedAt: string) {
+ const updatedDate = new Date(updatedAt).getSeconds();
+ const now = new Date().getSeconds();
+
+ const differenceInSeconds = Math.floor((now - updatedDate) / 1000);
+
+ const intervals = [
+ { label: "year", seconds: 31536000 },
+ { label: "month", seconds: 2592000 },
+ { label: "day", seconds: 86400 },
+ { label: "hour", seconds: 3600 },
+ { label: "minute", seconds: 60 },
+ { label: "second", seconds: 1 },
+ ];
+
+ for (const interval of intervals) {
+ const count = Math.floor(differenceInSeconds / interval.seconds);
+ if (count !== 0) {
+ return `${count} ${interval.label}${count !== 1 ? "s" : ""} ago`;
+ }
+ }
+
+ return "just now";
+}
+
+export function determineSocialMedia(link: string) {
+ if (link.includes("https://twitter.com") || link.includes(" https://x.com"))
+ return {
+ icon: "/icons/x.svg",
+ label: "X",
+ };
+
+ if (link.includes("https://warpcast.com"))
+ return {
+ icon: "/icons/farcaster.svg",
+ label: "farcaster",
+ };
+
+ if (link.includes("https://mirror.xyz"))
+ return {
+ icon: "/icons/mirror.svg",
+ label: "mirror",
+ };
+
+ if (link.includes("https://discord.com"))
+ return {
+ icon: "/icons/discord.svg",
+ label: "discord",
+ };
+
+ if (link.includes("https://t.me"))
+ return {
+ icon: "/icons/telegram.svg",
+ label: "telegram",
+ };
+
+ return {
+ icon: "/icons/globe-alt.svg",
+ label: "link",
+ };
+}
diff --git a/packages/client/src/views/Gardens/Card.tsx b/packages/client/src/views/Gardens/Card.tsx
new file mode 100644
index 0000000..32a6400
--- /dev/null
+++ b/packages/client/src/views/Gardens/Card.tsx
@@ -0,0 +1,56 @@
+import React from "react";
+import {
+ RiMapPin2Fill,
+ // RiCalendar2Fill,
+ // RiThumbUpFill,
+} from "@remixicon/react";
+import { Button } from "@/components/Button";
+
+// import { truncateDescription } from "../../utils/text";
+// import { Button } from "../Button";
+
+export interface GardenCardProps extends Garden {
+ onCardClick: () => void;
+}
+
+export const GardenCard: React.FC = ({
+ // id,
+ name,
+ location,
+ bannerImage,
+ // operators,
+ onCardClick,
+}) => {
+ return (
+
+
+
+
+
+
+ {name}
+
+
+
+ {location}
+
+ {/*
{problem}
*/}
+
+
+
+
+
+ );
+};
diff --git a/packages/client/src/views/Gardens/Garden.tsx b/packages/client/src/views/Gardens/Garden.tsx
new file mode 100644
index 0000000..2722128
--- /dev/null
+++ b/packages/client/src/views/Gardens/Garden.tsx
@@ -0,0 +1,128 @@
+import {
+ RiMapPin2Fill,
+ RiArrowLeftFill,
+ RiCalendarEventFill,
+ RiProfileFill,
+ // RiThumbUpFill,
+ // PencilLineIcon,
+} from "@remixicon/react";
+import React, { useState } from "react";
+import { useParams } from "react-router-dom";
+
+import { formatAddress } from "@/utils/text";
+
+import { useGarden } from "@/providers/GardenProvider";
+
+import { CircleLoader } from "@/components/Loader";
+import { GardenActions } from "@/components/Garden/Actions";
+import { GardenAssessments } from "@/components/Garden/Asessments";
+import { GardenGardeners } from "@/components/Garden/Gardeners";
+import { useWork } from "@/providers/WorkProvider";
+
+enum GardenTab {
+ Actions = "actions",
+ Assessments = "assessments",
+ Gardeners = "gardeners",
+}
+
+interface GardenProps {}
+
+export const cardStyles = "bg-white border rounded-xl shadow-sm";
+export const cardTitleStyles = "text-base font-medium bg-teal-100 py-2 px-3";
+export const cardContentStyles = "text-sm leading-1 mt-2 px-3 pb-2";
+
+export const Garden: React.FC = () => {
+ const { id } = useParams<{
+ id: string;
+ }>();
+ const { actions, gardens, gardeners } = useGarden();
+ const { works } = useWork();
+ const [activeTab, setActiveTab] = useState(GardenTab.Actions);
+
+ const garden = gardens.find((garden) => garden.id === id);
+
+ if (!garden) return ;
+
+ const { name, bannerImage, location, operators, gardenAssessments } = garden;
+
+ const gardenWorks = works.filter((work) => work.gardenAddress === id);
+ const gardenGardeners = gardeners.filter((gardener) =>
+ garden.gardeners.includes(gardener.wallet?.address ?? "")
+ );
+
+ const renderTabContent = () => {
+ switch (activeTab) {
+ case GardenTab.Actions:
+ return ;
+ case GardenTab.Assessments:
+ return ;
+ case GardenTab.Gardeners:
+ return ;
+ default:
+ return null;
+ }
+ };
+
+ return (
+
+
+
+
{name}
+
+
+
+
+
+ {operators
+ .map((operator) => formatAddress(operator))
+ .join(", ")}
+
+
+
+
+ {location}
+
+
+
+ {/*
+ {start_date && end_date ?
+ `${start_date.toLocaleDateString()} - ${end_date.toLocaleDateString()}`
+ : "No timeline provided."}
+ */}
+
+
+
+
+
+
+ {Object.values(GardenTab).map((tab) => (
+ setActiveTab(tab)}
+ style={{
+ fontWeight: activeTab === tab ? "bold" : "normal",
+ cursor: "pointer",
+ }}
+ >
+ {tab}
+
+ ))}
+
+ {renderTabContent()}
+
+
+ );
+};
diff --git a/packages/client/src/views/Gardens/index.tsx b/packages/client/src/views/Gardens/index.tsx
new file mode 100644
index 0000000..342a209
--- /dev/null
+++ b/packages/client/src/views/Gardens/index.tsx
@@ -0,0 +1,49 @@
+import { Outlet, useLocation, useNavigate } from "react-router-dom";
+
+import { useGarden } from "@/providers/GardenProvider";
+
+import { GardenCard } from "./Card";
+
+export interface GardensProps {}
+
+const Gardens: React.FC = () => {
+ const { gardens } = useGarden();
+ const navigate = useNavigate();
+ const location = useLocation();
+
+ function handleCardClick(id: string) {
+ navigate(`/gardens/${id}`);
+ }
+
+ return (
+
+ );
+};
+
+export default Gardens;
diff --git a/packages/client/src/views/Home/index.tsx b/packages/client/src/views/Home/index.tsx
deleted file mode 100644
index e69de29..0000000
diff --git a/packages/client/src/views/Landing/index.tsx b/packages/client/src/views/Landing/index.tsx
new file mode 100644
index 0000000..8331eb0
--- /dev/null
+++ b/packages/client/src/views/Landing/index.tsx
@@ -0,0 +1,19 @@
+import React from "react";
+
+import { Hero } from "@/components/Layout/Hero";
+import { Header } from "@/components/Layout/Header";
+import { Footer } from "@/components/Layout/Footer";
+
+interface LandingProps {}
+
+const Landing: React.FC = () => {
+ return (
+ <>
+
+
+
+ >
+ );
+};
+
+export default Landing;
diff --git a/packages/client/src/views/Login/index.tsx b/packages/client/src/views/Login/index.tsx
index e69de29..8cd0d34 100644
--- a/packages/client/src/views/Login/index.tsx
+++ b/packages/client/src/views/Login/index.tsx
@@ -0,0 +1,14 @@
+import React from "react";
+import { usePrivy } from "@privy-io/react-auth";
+
+import { Splash } from "@/components/Layout/Splash";
+
+interface LoginProps {}
+
+const Login: React.FC = () => {
+ const { login } = usePrivy();
+
+ return ;
+};
+
+export default Login;
diff --git a/packages/client/src/views/Profile/Account.tsx b/packages/client/src/views/Profile/Account.tsx
new file mode 100644
index 0000000..9971d73
--- /dev/null
+++ b/packages/client/src/views/Profile/Account.tsx
@@ -0,0 +1,98 @@
+import {
+ RiKeyLine,
+ RiMailFill,
+ RiPhoneLine,
+ RiUserLine,
+} from "@remixicon/react";
+import { usePrivy } from "@privy-io/react-auth";
+
+import { usePWA } from "@/providers/PWAProvider";
+import { useUser } from "@/providers/UserProvider";
+
+interface LinkedAccount {
+ title: string;
+ description: string;
+ isLinked: boolean;
+ Icon: React.ReactNode;
+ link: () => void;
+ unlink: () => void;
+}
+
+interface ProfileAccountProps {}
+
+export const ProfileAccount: React.FC = () => {
+ const {
+ user,
+ linkEmail,
+ linkPhone,
+ linkPasskey,
+ linkFarcaster,
+ unlinkEmail,
+ unlinkPhone,
+ // unlinkPasskey,
+ unlinkFarcaster,
+ } = usePrivy();
+ const { switchLanguage } = usePWA();
+ const { logout } = useUser();
+
+ const linkedAccounts: LinkedAccount[] = [
+ {
+ title: "Email",
+ description: user?.email?.address || "Not Linked",
+ isLinked: !!user?.email?.address,
+ Icon: ,
+ link: linkEmail,
+ unlink: () => user?.email?.address && unlinkEmail(user?.email?.address),
+ },
+ {
+ title: "Phone",
+ description: user?.phone?.number || "Not Linked",
+ isLinked: !!user?.phone?.number,
+ Icon: ,
+ link: linkPhone,
+ unlink: () => user?.phone?.number && unlinkPhone(user?.phone?.number),
+ },
+ {
+ title: "Passkey",
+ description: user?.mfaMethods.includes("passkey") ? "" : "Not Linked",
+ isLinked: !!user?.mfaMethods.includes("passkey"),
+ Icon: ,
+ link: linkPasskey,
+ unlink: () => {},
+ },
+ {
+ title: "Farcaster",
+ description: user?.farcaster?.displayName || "Not Linked",
+ isLinked: !!user?.farcaster?.displayName,
+ Icon: ,
+ link: linkFarcaster,
+ unlink: () =>
+ user?.farcaster?.fid && unlinkFarcaster(user?.farcaster?.fid),
+ },
+ ];
+
+ return (
+
+
Languages
+
switchLanguage("en")}>English
+
switchLanguage("pt")}>Português
+
Linked Accounts
+
+ {linkedAccounts.map(
+ ({ title, Icon, description, isLinked, link, unlink }) => (
+
+ {Icon}
+ {title}
+ {description}
+
+ {isLinked ? "Unlink" : "Link"}
+
+
+ )
+ )}
+
+
Settings
+
Logout
+
+ );
+};
diff --git a/packages/client/src/views/Profile/Help.tsx b/packages/client/src/views/Profile/Help.tsx
new file mode 100644
index 0000000..2b438bb
--- /dev/null
+++ b/packages/client/src/views/Profile/Help.tsx
@@ -0,0 +1,105 @@
+import { RiTelegramLine, RiWhatsappLine } from "@remixicon/react";
+
+interface Social {
+ title: string;
+ description: string;
+ url: string;
+ Icon: React.ReactNode;
+}
+
+interface FAQ {
+ question: string;
+ answer: string;
+}
+
+interface ProfileHelpProps {}
+
+const faqs: FAQ[] = [
+ {
+ question: "What is Green Goods?",
+ answer:
+ "Green Goods is a platform that allows you to bring biodiversity onchain.",
+ },
+ {
+ question: "What is biodiversity?",
+ answer:
+ "Biodiversity is the variety of life on Earth. It includes all living organisms, from plants and animals to fungi and bacteria.",
+ },
+ {
+ question: "How can I bring biodiversity onchain?",
+ answer:
+ "You can bring biodiversity onchain by creating a garden assessment and submitting it to the Green Goods EAS.",
+ },
+ {
+ question: "What is EAS?",
+ answer:
+ "EAS stands for Ethereum Attestation Service. It is a service that allows you to submit and verify data on the Ethereum blockchain.",
+ },
+ {
+ question: "Who can submit garden work?",
+ answer:
+ "Anyone can submit garden work to the Green Goods EAS. You do not need to be a professional gardener to participate.",
+ },
+ {
+ question: "How can I get involved with Green Goods?",
+ answer:
+ "You can get involved with Green Goods by creating a garden assessment, joining the community, and sharing your knowledge and expertise.",
+ },
+ {
+ question: "How can I learn more about Green Goods?",
+ answer:
+ "You can learn more about Green Goods by visiting our website, joining our Discord server, and following us on social media.",
+ },
+ {
+ question: "How can I contact Green Goods?",
+ answer:
+ "You can contact Green Goods by sending an email at greengoods@greenpill.builders.",
+ },
+];
+
+const socials: Social[] = [
+ {
+ title: "WhatsApp",
+ description: "Join our community on WhatsApp",
+ url: "https://discord.gg/greengoods",
+ Icon: ,
+ },
+ {
+ title: "Telegram",
+ description: "Join our community on Telegram",
+ url: "https://t.me/gp_dev_guild",
+ Icon: ,
+ },
+];
+
+export const ProfileHelp: React.FC = () => {
+ return (
+
+
Get In Touch
+
+
Frequently Asked Questions
+
+ {faqs.map((faq) => (
+
+ {faq.question}
+ {faq.answer}
+
+ ))}
+
+
+ );
+};
diff --git a/packages/client/src/views/Profile/index.tsx b/packages/client/src/views/Profile/index.tsx
index e69de29..ecece47 100644
--- a/packages/client/src/views/Profile/index.tsx
+++ b/packages/client/src/views/Profile/index.tsx
@@ -0,0 +1,66 @@
+import React, { useState } from "react";
+
+import { formatAddress } from "@/utils/text";
+
+import { useUser } from "@/providers/UserProvider";
+
+import { ProfileHelp } from "./Help";
+import { ProfileAccount } from "./Account";
+
+interface ProfileProps {}
+
+enum ProfileTabs {
+ Account = "account",
+ Help = "help",
+}
+
+const Profile: React.FC = () => {
+ const { user } = useUser();
+ const [activeTab, setActiveTab] = useState(ProfileTabs.Account);
+
+ const renderTabContent = () => {
+ switch (activeTab) {
+ case ProfileTabs.Account:
+ return ;
+ case ProfileTabs.Help:
+ return ;
+ default:
+ return null;
+ }
+ };
+
+ return (
+
+
+
+
{user?.email?.address || user?.phone?.number}
+ {user?.wallet?.address && (
+
{formatAddress(user?.wallet?.address)}
+ )}
+
+
+
+ {Object.values(ProfileTabs).map((activeTab) => (
+ setActiveTab(activeTab)}
+ style={{
+ fontWeight: activeTab === activeTab ? "bold" : "normal",
+ cursor: "pointer",
+ }}
+ >
+ {activeTab}
+
+ ))}
+
+ {renderTabContent()}
+
+
+ );
+};
+
+export default Profile;
diff --git a/packages/client/src/views/Work/Details.tsx b/packages/client/src/views/Work/Details.tsx
new file mode 100644
index 0000000..5828ad5
--- /dev/null
+++ b/packages/client/src/views/Work/Details.tsx
@@ -0,0 +1,89 @@
+import { UseFormRegister } from "react-hook-form";
+
+import { FormText } from "@/components/Form/Text";
+import { FormInput } from "@/components/Form/Input";
+// import { FormSelect } from "@/components/Form/Select";
+
+interface WorkDetailsProps {
+ title?: string;
+ description: string;
+ feedbackPlaceholder: string;
+ inputs: WorkInput[];
+ register: UseFormRegister;
+}
+
+export const WorkDetails: React.FC = ({
+ title,
+ description,
+ feedbackPlaceholder,
+ register,
+ inputs,
+}) => {
+ return (
+
+
{title}
+
{description}
+ {inputs.map(({ placeholder, required, title, type }, index) => {
+ if (type === "number") {
+ return (
+
+ );
+ } else if (type === "select") {
+ return (
+ //
({
+ // label: option,
+ // value: option,
+ // }))}
+ // />
+ null
+ );
+ } else if (type === "text") {
+ return (
+
+ );
+ } else if (type === "textarea") {
+ return (
+
+ );
+ } else {
+ return null;
+ }
+ })}
+
+
+ );
+};
diff --git a/packages/client/src/views/Work/Media.tsx b/packages/client/src/views/Work/Media.tsx
new file mode 100644
index 0000000..e7d7a6d
--- /dev/null
+++ b/packages/client/src/views/Work/Media.tsx
@@ -0,0 +1,98 @@
+import React, { useState } from "react";
+
+interface WorkMediaProps {
+ title?: string;
+ description?: string;
+ images: File[];
+ setImages: React.Dispatch>;
+}
+
+export const WorkMedia: React.FC = ({
+ title,
+ description,
+ images,
+ setImages,
+}) => {
+ const [previewModalOpen, setPreviewModalOpen] = useState(false);
+
+ const handleImageUpload = (event: React.ChangeEvent) => {
+ const files = event.target.files;
+ if (files) {
+ setImages((prevImages) => [...prevImages, ...Array.from(files)]);
+ }
+ };
+
+ const removeImage = (index: number) => {
+ setImages((prevImages) => prevImages.filter((_, i) => i !== index));
+ };
+
+ return (
+
+
{title}
+
{description}
+
+
+ Upload Images
+
+
+
+
+ {images.map((file, index) => (
+
setPreviewModalOpen(true)}
+ >
+
+
{
+ e.stopPropagation();
+ removeImage(index);
+ }}
+ type="button"
+ >
+ ✕
+
+
+ ))}
+
+ {previewModalOpen && (
+
setPreviewModalOpen(false)}
+ >
+
+
setPreviewModalOpen(false)}
+ className="btn btn-sm btn-circle absolute right-2 top-2"
+ >
+ ✕
+
+
+ {images.map((file, index) => (
+
+
+
+ ))}
+
+
+
+ )}
+
+ );
+};
diff --git a/packages/client/src/views/Work/Review.tsx b/packages/client/src/views/Work/Review.tsx
new file mode 100644
index 0000000..100262f
--- /dev/null
+++ b/packages/client/src/views/Work/Review.tsx
@@ -0,0 +1,45 @@
+interface WorkReviewProps {
+ title: string;
+ description: string;
+ images: File[];
+ plantSelection: string[];
+ plantCount: number;
+ feedback: string;
+}
+
+export const WorkReview: React.FC = ({
+ title,
+ description,
+ images,
+ plantSelection,
+ plantCount,
+ feedback,
+}) => {
+ return (
+
+
{title}
+
{description}
+
+ {images.map((file, index) => (
+
+
+
+ ))}
+
+
Plant Selection
+
+ {plantSelection.map((plant) => (
+ {plant}
+ ))}
+
+
Plant Count
+
{plantCount}
+
Feedback
+
{feedback}
+
+ );
+};
diff --git a/packages/client/src/views/Work/index.tsx b/packages/client/src/views/Work/index.tsx
index e69de29..1578814 100644
--- a/packages/client/src/views/Work/index.tsx
+++ b/packages/client/src/views/Work/index.tsx
@@ -0,0 +1,73 @@
+import { useState } from "react";
+
+import { useWork } from "@/providers/WorkProvider";
+
+import { WorkMedia } from "./Media";
+import { WorkDetails } from "./Details";
+import { WorkReview } from "./Review";
+
+interface WorkProps {}
+
+enum WorkTab {
+ Media = "Media",
+ Details = "Details",
+ Review = "Review",
+}
+
+const Work: React.FC = () => {
+ const { actions, form } = useWork();
+ const [activeTab, setActiveTab] = useState(WorkTab.Media);
+
+ if (!form) {
+ return null;
+ }
+
+ const { images, setImages, actionUID, register, uploadWork } = form;
+ const action = actions.find((action) => action.id === actionUID);
+
+ const renderTabContent = () => {
+ switch (activeTab) {
+ case WorkTab.Media:
+ return ;
+ case WorkTab.Details:
+ return (
+
+ );
+ case WorkTab.Review:
+ return (
+
+ );
+ default:
+ return null;
+ }
+ };
+
+ return (
+
+ {renderTabContent()}
+
+ {activeTab !== WorkTab.Media && (
+ setActiveTab(WorkTab.Media)}>Back
+ )}
+ {activeTab !== WorkTab.Review && (
+ setActiveTab(WorkTab.Review)}>Next
+ )}
+
+
+ );
+};
+
+export default Work;
diff --git a/packages/client/src/views/index.tsx b/packages/client/src/views/index.tsx
index e69de29..c67142b 100644
--- a/packages/client/src/views/index.tsx
+++ b/packages/client/src/views/index.tsx
@@ -0,0 +1,24 @@
+import { Navigate, Route, Routes } from "react-router-dom";
+
+import Work from "./Work";
+import Profile from "./Profile";
+import Gardens from "./Gardens";
+import { Garden } from "./Gardens/Garden";
+
+export default function Views() {
+ return (
+
+
+ }>
+ } />
+
+ } />
+ } />
+ } />
+
+
+ );
+ // ));
+}
diff --git a/packages/client/tailwind.config.js b/packages/client/tailwind.config.js
index d5f3438..c400921 100644
--- a/packages/client/tailwind.config.js
+++ b/packages/client/tailwind.config.js
@@ -5,5 +5,10 @@ export default {
theme: {
extend: {},
},
- plugins: [require("tailwindcss-animate")],
+ plugins: [
+ require("tailwindcss-animate"),
+ require("@tailwindcss/forms"),
+ require("@tailwindcss/typography"),
+ require("daisyui"),
+ ],
};
diff --git a/packages/client/tsconfig.app.json b/packages/client/tsconfig.app.json
index aedb34b..64960d6 100644
--- a/packages/client/tsconfig.app.json
+++ b/packages/client/tsconfig.app.json
@@ -26,17 +26,6 @@
"paths": {
"@/*": ["./src/*"]
}
-
- // "plugins": [
- // {
- // "name": "@0no-co/graphqlsp",
- // "schema": "https://easscan.org/graphql",
- // "tadaOutputLocation": "src/types/graphql-env.d.ts"
- // },
- // {
- // "name": "next"
- // }
- // ]
},
- "include": ["src"]
+ "include": ["src", "../../eas/src/resources/schemas.json"]
}
diff --git a/packages/client/tsconfig.node.json b/packages/client/tsconfig.node.json
index 0d3d714..dde7f94 100644
--- a/packages/client/tsconfig.node.json
+++ b/packages/client/tsconfig.node.json
@@ -16,7 +16,21 @@
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
- "noFallthroughCasesInSwitch": true
+ "noFallthroughCasesInSwitch": true,
+
+ /* Plugins */
+ "plugins": [
+ {
+ "name": "@0no-co/graphqlsp",
+ "schema": "https://easscan.org/graphql",
+ "tadaOutputLocation": "src/types/eas.d.ts"
+ }
+ // {
+ // "name": "@0no-co/graphqlsp",
+ // "schema": "../../indexer/schema.graphql",
+ // "tadaOutputLocation": "src/types/gg-indexer.d.ts"
+ // }
+ ]
},
- "include": ["vite.config.ts"]
+ "include": ["vite.config.ts", "api", "../../indexer/schema.graphql"]
}
diff --git a/packages/client/vercel.json b/packages/client/vercel.json
new file mode 100644
index 0000000..1323cda
--- /dev/null
+++ b/packages/client/vercel.json
@@ -0,0 +1,8 @@
+{
+ "rewrites": [
+ {
+ "source": "/(.*)",
+ "destination": "/index.html"
+ }
+ ]
+}
diff --git a/packages/client/vite.config.ts b/packages/client/vite.config.ts
index 5a33944..563a02f 100644
--- a/packages/client/vite.config.ts
+++ b/packages/client/vite.config.ts
@@ -1,7 +1,143 @@
-import { defineConfig } from 'vite'
-import react from '@vitejs/plugin-react'
+import path from "path";
+import dotenvExpand from "dotenv-expand";
+
+import mkcert from "vite-plugin-mkcert";
+import react from "@vitejs/plugin-react";
+import { VitePWA } from "vite-plugin-pwa";
+import { defineConfig, loadEnv } from "vite";
// https://vitejs.dev/config/
-export default defineConfig({
- plugins: [react()],
-})
+export default defineConfig(({ mode }) => {
+ // This check is important!
+ if (mode === "development") {
+ const env = loadEnv(mode, process.cwd(), "");
+ dotenvExpand.expand({ parsed: env });
+ }
+
+ return {
+ plugins: [
+ mkcert(),
+ react(),
+ VitePWA({
+ includeAssets: [
+ "favicon.ico",
+ "icon.png",
+ "apple-icon.png",
+ "images/android-icon-36x36.png",
+ "images/android-icon-48x48.png",
+ "images/android-icon-72x72.png",
+ "images/android-icon-144x144.png",
+ "images/apple-icon-57x57.png",
+ "images/apple-icon-60x60.png",
+ "images/apple-icon-72x72.png",
+ "images/apple-icon-120x120.png",
+ "images/apple-icon-144x144.png",
+ "images/ms-icon-70x70.png",
+ "images/ms-icon-144x144.png",
+ "images/ms-icon-310.png",
+ "images/home.png",
+ "images/work.png",
+ "images/profile.png",
+ ],
+ injectRegister: "auto",
+ registerType: "autoUpdate",
+ devOptions: {
+ enabled: true,
+ },
+ workbox: {
+ // globPatterns: ["**/*.{js,css,html,ico,png,svg}"],
+ },
+ manifest: {
+ name: "Green Goods",
+ short_name: "Green Goods",
+ icons: [
+ {
+ src: "/images/android-icon-36x36.png",
+ sizes: "36x36",
+ type: "image/png",
+ },
+ {
+ src: "/images/android-icon-48x48.png",
+ sizes: "48x48",
+ type: "image/png",
+ },
+ {
+ src: "/images/android-icon-72x72.png",
+ sizes: "72x72",
+ type: "image/png",
+ },
+ {
+ src: "/images/android-icon-144x144.png",
+ sizes: "144x144",
+ type: "image/png",
+ },
+ {
+ src: "/icon.png",
+ sizes: "192x192",
+ type: "image/png",
+ },
+ ],
+ start_url: "/",
+ scope: "/",
+ display: "standalone",
+ orientation: "portrait-primary",
+ theme_color: "#367D42",
+ background_color: "#000",
+ shortcuts: [
+ {
+ name: "Home",
+ description: "View Gardens",
+ url: "/profile",
+ icons: [
+ {
+ src: "images/home.png",
+ sizes: "64x64",
+ type: "image/png",
+ },
+ ],
+ },
+ {
+ name: "Work",
+ description: "Upload your work",
+ url: "/profile",
+ icons: [
+ {
+ src: "images/work.png",
+ sizes: "64x64",
+ type: "image/png",
+ },
+ ],
+ },
+ {
+ name: "Profile",
+ description: "View your profile",
+ url: "/profile",
+ icons: [
+ {
+ src: "images/profile.png",
+ sizes: "64x64",
+ type: "image/png",
+ },
+ ],
+ },
+ ],
+ related_applications: [
+ {
+ platform: "webapp",
+ url: "https://localhost:3001/manifest.webmanifest",
+ },
+ ],
+ categories: [],
+ },
+ }),
+ ],
+ resolve: {
+ alias: {
+ "@": path.resolve(__dirname, "./src"),
+ },
+ },
+ server: {
+ port: 3001,
+ },
+ };
+});
diff --git a/packages/contracts/package.json b/packages/contracts/package.json
index ce4fd07..521f584 100644
--- a/packages/contracts/package.json
+++ b/packages/contracts/package.json
@@ -17,7 +17,8 @@
"deploy:counter": "source .env && forge script script/Counter.s.sol:CounterScript --private-key $PRIVATE_KEY --etherscan-api-key $API_KEY_ETHERSCAN",
"deploy:action": "source .env && forge script script/DeployActionRegistry.s.sol:DeployActionRegistry --private-key $PRIVATE_KEY --etherscan-api-key $API_KEY_ETHERSCAN",
"deploy:garden": "source .env && forge script script/DeployGardenToken.s.sol:DeployGardenToken --private-key $PRIVATE_KEY --etherscan-api-key $API_KEY_ETHERSCAN",
- "deploy:resolvers": "source .env && forge script script/DeployResolvers.s.sol:DeployResolvers --private-key $PRIVATE_KEY --etherscan-api-key $API_KEY_ETHERSCAN"
+ "deploy:resolvers": "source .env && forge script script/DeployResolvers.s.sol:DeployResolvers --private-key $PRIVATE_KEY --etherscan-api-key $API_KEY_ETHERSCAN",
+ "deploy:operators": "source .env && forge script script/DeployGardenOperators.s.sol:DeployGardenOperators --private-key $PRIVATE_KEY --etherscan-api-key $API_KEY_ETHERSCAN"
},
"dependencies": {
"@ethereum-attestation-service/eas-contracts": "1.7.1",
diff --git a/packages/contracts/script/DeployActionRegistry.s.sol b/packages/contracts/script/DeployActionRegistry.s.sol
index 9991520..4a1af55 100644
--- a/packages/contracts/script/DeployActionRegistry.s.sol
+++ b/packages/contracts/script/DeployActionRegistry.s.sol
@@ -25,26 +25,32 @@ contract DeployActionRegistry is Script {
Capital[] memory capitals = new Capital[](1);
capitals[0] = Capital.LIVING;
- string[] memory media = new string[](2);
- media[0] = "QmWYQY9vnb9ot7u49UMeH41DdjZghrgr2YoaYaNwYSpeAn";
- media[1] = "QmS9K5EdyakRPW7gV86xivaUNx1AuhPUzUSRD53WnjL4Uz";
+ string[] memory observeMedia = new string[](3);
+ observeMedia[0] = "QmVvKqpnfJm8UwRq9SF15V2jgJ86yCBsmMBmpEaoQU92bD";
+ observeMedia[1] = "QmXeV9zWpXHzTGFS3jJRBRYBTHkcVE23qpdhhtQKX1uC4L";
+ observeMedia[2] = "QmXp5fEnjHbsLniCE5BD1LyjoGgvoHKuajqQnDCPAZih2X";
+
+ string[] memory plantMedia = new string[](3);
+ plantMedia[0] = "QmY6h53RyAY6VQfqqUTBwkVkG8JpCon9SdVkqtB5YzPVwx";
+ plantMedia[1] = "QmZAeu9sEtNqXZBmiYiAt7bd4M38TmE73ekj47n7JDU2xm";
+ plantMedia[2] = "QmdYz2JsVhyzZe591vR1sBQQjLWjGCTp1yJ1t1EicrAnYH";
newRegistry.initialize(address(this));
newRegistry.registerAction(
block.timestamp,
block.timestamp + 30 days,
- "Test Action 1",
- "QmTmbcRyKtkMpMFWsm6D8YpgwMUuds3jE4sJdjqhqFGvWe",
+ "Observe",
+ "QmX8rLExs7TDGPNAg9w22R8iYeRUYsrkkLg6LUUK8oNDUJ",
capitals,
- media
+ observeMedia
);
newRegistry.registerAction(
block.timestamp,
block.timestamp + 30 days,
- "Test Action 2",
- "QmTmbcRyKtkMpMFWsm6D8YpgwMUuds3jE4sJdjqhqFGvWe",
+ "Plant",
+ "QmZGJBdZeCVx7S42KqovzUhwrGhqwxVCaoofzUE2YRhb2s",
capitals,
- media
+ plantMedia
);
vm.stopBroadcast();
diff --git a/packages/contracts/script/DeployGardenOperators.s.sol b/packages/contracts/script/DeployGardenOperators.s.sol
new file mode 100644
index 0000000..76d914e
--- /dev/null
+++ b/packages/contracts/script/DeployGardenOperators.s.sol
@@ -0,0 +1,27 @@
+// SPDX-License-Identifier: UNLICENSED
+/* solhint-disable max-line-length */
+/* solhint-disable quotes */
+pragma solidity ^0.8.25;
+
+import { Script, console } from "forge-std/Script.sol";
+
+import { GardenAccount } from "../src/accounts/Garden.sol";
+
+import { ROOT_PLANET_GARDEN } from "../src/Constants.sol";
+
+/// @title DeployGardenOperators
+/// @notice Script for deploying the GardenToken contract and minting a garden for Rio Claro, São Paulo.
+contract DeployGardenOperators is Script {
+ function run() external {
+ // Deploy GardenOperators
+ vm.startBroadcast();
+ GardenAccount gardenAccount = GardenAccount(payable(ROOT_PLANET_GARDEN));
+
+ gardenAccount.addGardener(0x742fa58340df9Ad7c691De4Ed999CF7f71079A8F);
+ gardenAccount.addGardenOperator(0x742fa58340df9Ad7c691De4Ed999CF7f71079A8F);
+
+ vm.stopBroadcast();
+
+ console.log("Operator added to the garden");
+ }
+}
diff --git a/packages/contracts/script/DeployGardenToken.s.sol b/packages/contracts/script/DeployGardenToken.s.sol
index cdf7ac5..e89614e 100644
--- a/packages/contracts/script/DeployGardenToken.s.sol
+++ b/packages/contracts/script/DeployGardenToken.s.sol
@@ -97,16 +97,22 @@ contract DeployGardenToken is Script {
gardeners[0] = 0x2aa64E6d80390F5C017F0313cB908051BE2FD35e; // afo-wefa.eth
gardeners[1] = 0xAcD59e854adf632d2322404198624F757C868C97; // groweco.eth
gardeners[2] = 0x29e6cbF2450F86006292D10A3cF791955600a457; // marcin
- gardeners[3] = 0x2aa64E6d80390F5C017F0313cB908051BE2FD35e; // afo@greenpill.builders
+ gardeners[3] = 0x742fa58340df9Ad7c691De4Ed999CF7f71079A8F; // afo@greenpill.builders
gardenOperators[0] = 0x2aa64E6d80390F5C017F0313cB908051BE2FD35e; // afo-wefa.eth
gardenOperators[1] = 0xAcD59e854adf632d2322404198624F757C868C97; // groweco.eth
gardenOperators[2] = 0x29e6cbF2450F86006292D10A3cF791955600a457; // marcin
- gardenOperators[3] = 0x2aa64E6d80390F5C017F0313cB908051BE2FD35e; // afo@greenpill.builders
+ gardenOperators[3] = 0x742fa58340df9Ad7c691De4Ed999CF7f71079A8F; // afo@greenpill.builders
- gardenAccount = gardenToken.mintGarden(communityToken, "Root Planet", gardeners, gardenOperators);
+ gardenAccount = gardenToken.mintGarden(
+ communityToken,
+ "Root Planet",
+ "Observing invasive species and planting natives to improve biodiversity.",
+ gardeners,
+ gardenOperators
+ );
vm.stopBroadcast();
- console.log("Root Plane Garden for Rio Claro, S\u00e3o Paulo minted.");
+ console.log("Root Plane Garden for Rio Claro, S\u00e3o Paulo minted.", gardenAccount);
} else {
console.log("Garden Token already exists at:", token);
}
diff --git a/packages/contracts/src/Constants.sol b/packages/contracts/src/Constants.sol
index b5192e2..97018d4 100644
--- a/packages/contracts/src/Constants.sol
+++ b/packages/contracts/src/Constants.sol
@@ -3,15 +3,15 @@ pragma solidity ^0.8.25;
// GREEN GOODS
address constant GREEN_GOODS_SAFE = 0x1B9Ac97Ea62f69521A14cbe6F45eb24aD6612C19;
-address constant ACTION_REGISTRY = 0x70Df51173B3EF27A245e1a0F129e2BAab39A937E;
-address constant WORK_RESOLVER = 0x380217CB03B2AA6838C2B6F615F36C677D7922dB;
-address constant WORK_APPROVAL_RESOLVER = 0xECdD5C72D468b2b1d0566102050C42e99A37Ca14;
+address constant ACTION_REGISTRY = 0x9AF3D5Bb1a6d057B99A4948420c5d24ff1e482Ce;
+address constant WORK_RESOLVER = 0x4d394ec4dcDC93e451a27C9c9D915Baee9D43A78;
+address constant WORK_APPROVAL_RESOLVER = 0xAD93d365C83784F245780d914460D60cBa11d1FA;
address constant COMMUNITY_TOKEN_ARBITRUM = 0x633d825006E4c659b061db7FB9378eDEe8bd95f3;
address constant COMMUNITY_TOKEN_SEPOLIA = 0x4cB67033da4FD849a552A4C5553E7F532B93E516;
-address constant GARDEN_TOKEN = 0x5D29C573581270d2bF436382820B3b64904AEeD7;
-address constant GARDEN_ACCOUNT_IMPLEMENTATION = 0x5c4FFaAa4aA538D75f531Ebd5b9B08F37d9a65a2;
-address constant GARDENER_ACCOUNT_IMPLEMENTATION = 0x0000000000000000000000000000000000000000;
+address constant GARDEN_TOKEN = 0x9EF896a314B7aE98609eC0c0cA43724C768046B4;
+address constant GARDEN_ACCOUNT_IMPLEMENTATION = 0x0E69cFBF71cc21490f25c0b61dc833d16BBd4634;
+address constant ROOT_PLANET_GARDEN = 0xa9Cb249a3B651Ce82bf9E9cc48BCF41957647F48;
// TOKENBOUND (FUTURE PRIMTIVE)
bytes32 constant SALT = 0x6551655165516551655165516551655165516551655165516551655165516551;
diff --git a/packages/contracts/src/accounts/Garden.sol b/packages/contracts/src/accounts/Garden.sol
index e494919..fb17557 100644
--- a/packages/contracts/src/accounts/Garden.sol
+++ b/packages/contracts/src/accounts/Garden.sol
@@ -4,7 +4,10 @@ pragma solidity >=0.8.25;
import { AccountV3Upgradable } from "@tokenbound/AccountV3Upgradable.sol";
import { Initializable } from "@openzeppelin/contracts/proxy/utils/Initializable.sol";
+// import { Action } from "../registries/Action.sol";
+
error NotGardenOwner();
+error NotGardenOperator();
/// @title GardenAccount Contract
/// @notice Manages gardeners and operators for a Garden, and supports community token management.
@@ -49,12 +52,30 @@ contract GardenAccount is AccountV3Upgradable, Initializable {
/// @notice The description of the garden.
string public description;
+ // TODO: Add banner image property
+
/// @notice Mapping of gardener addresses to their status.
mapping(address gardener => bool isGardener) public gardeners;
/// @notice Mapping of garden operator addresses to their status.
mapping(address operator => bool isOperator) public gardenOperators;
+ modifier onlyGardenOwner() {
+ if (_isValidSigner(_msgSender(), "") == false) {
+ revert NotGardenOwner();
+ }
+
+ _;
+ }
+
+ modifier onlyOperator() {
+ if (!gardenOperators[_msgSender()]) {
+ revert NotGardenOperator();
+ }
+
+ _;
+ }
+
/// @notice Initializes the contract with the necessary dependencies.
/// @dev This constructor is for the upgradable pattern and uses Initializable for upgrade safety.
/// @param erc4337EntryPoint The entry point address for ERC-4337 operations.
@@ -109,11 +130,7 @@ contract GardenAccount is AccountV3Upgradable, Initializable {
/// @notice Updates the name of the garden.
/// @dev Only callable by a valid signer of the contract.
/// @param _name The new name of the garden.
- function updateName(string memory _name) external {
- if (_isValidSigner(_msgSender(), "")) {
- revert NotGardenOwner();
- }
-
+ function updateName(string memory _name) external onlyGardenOwner {
name = _name;
emit NameUpdated(_msgSender(), _name);
@@ -123,10 +140,6 @@ contract GardenAccount is AccountV3Upgradable, Initializable {
/// @dev Only callable by a valid signer of the contract.
/// @param _description The new description of the garden.
function updateDescription(string memory _description) external {
- if (_isValidSigner(_msgSender(), "")) {
- revert NotGardenOwner();
- }
-
description = _description;
emit DescriptionUpdated(_msgSender(), _description);
@@ -135,11 +148,7 @@ contract GardenAccount is AccountV3Upgradable, Initializable {
/// @notice Adds a new gardener to the garden.
/// @dev Only callable by a valid signer of the contract.
/// @param gardener The address of the gardener to add.
- function addGardener(address gardener) external {
- if (_isValidSigner(_msgSender(), "")) {
- revert NotGardenOwner();
- }
-
+ function addGardener(address gardener) external onlyOperator {
gardeners[gardener] = true;
emit GardenerAdded(_msgSender(), gardener);
@@ -148,11 +157,7 @@ contract GardenAccount is AccountV3Upgradable, Initializable {
/// @notice Removes an existing gardener from the garden.
/// @dev Only callable by a valid signer of the contract.
/// @param gardener The address of the gardener to remove.
- function removeGardener(address gardener) external {
- if (_isValidSigner(_msgSender(), "")) {
- revert NotGardenOwner();
- }
-
+ function removeGardener(address gardener) external onlyOperator {
gardeners[gardener] = false;
emit GardenerRemoved(_msgSender(), gardener);
@@ -161,11 +166,7 @@ contract GardenAccount is AccountV3Upgradable, Initializable {
/// @notice Adds a new operator to the garden.
/// @dev Only callable by a valid signer of the contract.
/// @param operator The address of the operator to add.
- function addGardenOperator(address operator) external {
- if (_isValidSigner(_msgSender(), "")) {
- revert NotGardenOwner();
- }
-
+ function addGardenOperator(address operator) external onlyOperator {
gardenOperators[operator] = true;
emit GardenOperatorAdded(_msgSender(), operator);
@@ -174,11 +175,7 @@ contract GardenAccount is AccountV3Upgradable, Initializable {
/// @notice Removes an existing operator from the garden.
/// @dev Only callable by a valid signer of the contract.
/// @param operator The address of the operator to remove.
- function removeGardenOperator(address operator) external {
- if (_isValidSigner(_msgSender(), "")) {
- revert NotGardenOwner();
- }
-
+ function removeGardenOperator(address operator) external onlyGardenOwner {
gardenOperators[operator] = false;
emit GardenOperatorRemoved(_msgSender(), operator);
diff --git a/packages/contracts/src/registries/Action.sol b/packages/contracts/src/registries/Action.sol
index 0435f39..e6478ab 100644
--- a/packages/contracts/src/registries/Action.sol
+++ b/packages/contracts/src/registries/Action.sol
@@ -26,7 +26,8 @@ contract ActionRegistry is UUPSUpgradeable, OwnableUpgradeable {
/// @param owner The address of the action owner.
/// @param actionUID The unique identifier of the action.
/// @param action The details of the registered action.
- event ActionRegistered(address indexed owner, uint256 indexed actionUID, Action indexed action);
+ /// @param timestamp The timestamp of the registration.
+ event ActionRegistered(address indexed owner, uint256 indexed actionUID, Action indexed action, uint256 timestamp);
/// @notice Emitted when an existing action is start time is updated.
/// @param owner The address of the action owner.
@@ -105,7 +106,7 @@ contract ActionRegistry is UUPSUpgradeable, OwnableUpgradeable {
actionToOwner[actionUID] = _msgSender();
idToAction[actionUID] = Action(_startTime, _endTime, _title, _instructions, _capitals, _media);
- emit ActionRegistered(_msgSender(), actionUID, idToAction[actionUID]);
+ emit ActionRegistered(_msgSender(), actionUID, idToAction[actionUID], block.timestamp);
}
/// @notice Updates the start time of an existing action.
@@ -123,7 +124,8 @@ contract ActionRegistry is UUPSUpgradeable, OwnableUpgradeable {
function updateActionEndTime(uint256 actionUID, uint256 _endTime) external onlyActionOwner(actionUID) {
idToAction[actionUID].endTime = _endTime;
- emit ActionEndTimeUpdated(actionToOwner[actionUID], actionUID, _endTime);}
+ emit ActionEndTimeUpdated(actionToOwner[actionUID], actionUID, _endTime);
+ }
/// @notice Updates the title of an existing action.
/// @param actionUID The unique identifier of the action to update.
diff --git a/packages/contracts/src/tokens/Garden.sol b/packages/contracts/src/tokens/Garden.sol
index 10f103f..8e9f9f9 100644
--- a/packages/contracts/src/tokens/Garden.sol
+++ b/packages/contracts/src/tokens/Garden.sol
@@ -18,7 +18,7 @@ contract GardenToken is ERC721Upgradeable, OwnableUpgradeable, UUPSUpgradeable {
/// @notice Emitted when a new Garden is minted.
/// @param owner The owner of the minted Garden token.
/// @param tokenId The unique identifier of the minted Garden token.
- /// @param name The name of the Garden associated with the minted token.
+ /// @param account The address of the associated Garden account.
event GardenMinted(address indexed owner, uint256 indexed tokenId, address indexed account);
/// @custom:oz-upgrades-unsafe-allow constructor
@@ -41,11 +41,13 @@ contract GardenToken is ERC721Upgradeable, OwnableUpgradeable, UUPSUpgradeable {
/// @dev The Garden account is initialized with the provided parameters.
/// @param communityToken The address of the community token associated with the Garden.
/// @param name The name of the Garden.
+ /// @param description The description of the Garden.
/// @param gardeners An array of addresses representing the gardeners of the Garden.
/// @param gardenOperators An array of addresses representing the operators of the Garden.
function mintGarden(
address communityToken,
string calldata name,
+ string calldata description,
address[] calldata gardeners,
address[] calldata gardenOperators
) external onlyOwner returns (address) {
@@ -54,9 +56,9 @@ contract GardenToken is ERC721Upgradeable, OwnableUpgradeable, UUPSUpgradeable {
address gardenAccount = TBALib.createAccount(_gardenAccountImplementation, address(this), tokenId);
- GardenAccount(payable(gardenAccount)).initialize(communityToken, name, gardeners, gardenOperators);
+ GardenAccount(payable(gardenAccount)).initialize(communityToken, name, description, gardeners, gardenOperators);
- emit GardenMinted(_msgSender(), tokenId, gardenAccount);
+ emit GardenMinted(_msgSender(), tokenId, gardenAccount);
return gardenAccount;
}
diff --git a/packages/contracts/test/GardenAccount.t.sol b/packages/contracts/test/GardenAccount.t.sol
index 8189aaa..f2bbe86 100644
--- a/packages/contracts/test/GardenAccount.t.sol
+++ b/packages/contracts/test/GardenAccount.t.sol
@@ -26,7 +26,7 @@ contract GardenAccountTest is Test {
gardeners[0] = address(0x100);
gardenOperators[0] = address(0x200);
- gardenAccount.initialize(address(0x555), "Test Garden", gardeners, gardenOperators);
+ gardenAccount.initialize(address(0x555), "Test Garden", "Test Description", gardeners, gardenOperators);
}
function testInitialize() public {
diff --git a/packages/contracts/test/WorkApprovalResolver.t.sol b/packages/contracts/test/WorkApprovalResolver.t.sol
index a53ecd2..768e540 100644
--- a/packages/contracts/test/WorkApprovalResolver.t.sol
+++ b/packages/contracts/test/WorkApprovalResolver.t.sol
@@ -29,7 +29,13 @@ contract WorkApprovalResolverTest is Test {
mockIEAS = new MockEAS();
mockActionRegistry.initialize(multisig);
- mockGardenAccount.initialize(address(0x555), "Test Garden", new address[](0), new address[](0));
+ mockGardenAccount.initialize(
+ address(0x555),
+ "Test Garden",
+ "Test Description",
+ new address[](0),
+ new address[](0)
+ );
// Deploy the WorkApprovalResolver contract
workApprovalResolver = new WorkApprovalResolver(address(address(0x007)), address(mockActionRegistry));
diff --git a/packages/contracts/test/WorkResolver.t.sol b/packages/contracts/test/WorkResolver.t.sol
index 3813b22..a2e079a 100644
--- a/packages/contracts/test/WorkResolver.t.sol
+++ b/packages/contracts/test/WorkResolver.t.sol
@@ -29,7 +29,13 @@ contract WorkResolverTest is Test {
mockIEAS = new MockEAS();
mockActionRegistry.initialize(multisig);
- mockGardenAccount.initialize(address(0x545), "Test Garden", new address[](0), new address[](0));
+ mockGardenAccount.initialize(
+ address(0x545),
+ "Test Garden",
+ "Test Description",
+ new address[](0),
+ new address[](0)
+ );
// Deploy the WorkResolver contract
workResolver = new WorkResolver(address(mockIEAS), address(mockActionRegistry));
diff --git a/packages/eas/src/resources/schemas.json b/packages/eas/src/resources/schemas.json
index 581c4cc..2d07e13 100644
--- a/packages/eas/src/resources/schemas.json
+++ b/packages/eas/src/resources/schemas.json
@@ -81,8 +81,8 @@
"name": "media"
}
],
- "resolver": "0x380217CB03B2AA6838C2B6F615F36C677D7922dB",
- "UID": "0x9341009d07b8de3eb72b96ac42246c549f3e32636cb31a75961fbee6db44a0eb",
+ "resolver": "0x4d394ec4dcDC93e451a27C9c9D915Baee9D43A78",
+ "UID": "0x2bd111016993f4d61d129189141146ec8b2ef88366033d98cd8e9e901be6de00",
"parsed": "uint256 actionUID, string title, string feedback, string metadata, string[] media"
},
{
@@ -106,8 +106,8 @@
"name": "feedback"
}
],
- "resolver": "0xECdD5C72D468b2b1d0566102050C42e99A37Ca14",
- "UID": "0x019249c30ec1d02ae41abb3fbbeeb56b9bbb2261cf94191fac73089308aa662a",
+ "resolver": "0xAD93d365C83784F245780d914460D60cBa11d1FA",
+ "UID": "0xa287afbe9c2243542a5067e6bea39f02fb95bfa32f49dd0910118763794202c9",
"parsed": "uint256 actionUID bytes32 workUID, bool approved, string feedback"
}
]
diff --git a/packages/indexer/config.yaml b/packages/indexer/config.yaml
index 1385874..5905548 100644
--- a/packages/indexer/config.yaml
+++ b/packages/indexer/config.yaml
@@ -7,7 +7,11 @@ contracts:
handler: src/EventHandlers.ts
events:
- event: ActionRegistered
- - event: ActionUpdated
+ - event: ActionStartTimeUpdated
+ - event: ActionEndTimeUpdated
+ - event: ActionTitleUpdated
+ - event: ActionInstructionsUpdated
+ - event: ActionMediaUpdated
- name: GardenToken
abi_file_path: ../contracts/out/Garden.sol/GardenToken.json
handler: src/EventHandlers.ts
@@ -18,6 +22,7 @@ contracts:
handler: src/EventHandlers.ts
events:
- event: NameUpdated
+ - event: DescriptionUpdated
- event: GardenerAdded
- event: GardenerRemoved
- event: GardenOperatorAdded
@@ -27,6 +32,6 @@ networks:
start_block: 242630858
contracts:
- name: ActionRegistry
- address: 0x70Df51173B3EF27A245e1a0F129e2BAab39A937E
+ address: 0x9AF3D5Bb1a6d057B99A4948420c5d24ff1e482Ce
- name: GardenToken
- address: 0x5D29C573581270d2bF436382820B3b64904AEeD7
+ address: 0xf226185e4e76d05EC2cbb9BF1B04e67E25532ecA
diff --git a/packages/indexer/pnpm-lock.yaml b/packages/indexer/pnpm-lock.yaml
index 75f7a08..8b3d84e 100644
--- a/packages/indexer/pnpm-lock.yaml
+++ b/packages/indexer/pnpm-lock.yaml
@@ -920,10 +920,6 @@ packages:
resolution: {integrity: sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==}
engines: {node: '>=10'}
- minimatch@5.1.6:
- resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
- engines: {node: '>=10'}
-
minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
@@ -2011,7 +2007,7 @@ snapshots:
fs.realpath: 1.0.0
inflight: 1.0.6
inherits: 2.0.4
- minimatch: 5.1.6
+ minimatch: 5.0.1
once: 1.4.0
gopd@1.0.1:
@@ -2218,10 +2214,6 @@ snapshots:
dependencies:
brace-expansion: 2.0.1
- minimatch@5.1.6:
- dependencies:
- brace-expansion: 2.0.1
-
minimist@1.2.8: {}
mkdirp@0.5.6:
diff --git a/packages/indexer/schema.graphql b/packages/indexer/schema.graphql
index 931028a..5a99ca1 100644
--- a/packages/indexer/schema.graphql
+++ b/packages/indexer/schema.graphql
@@ -11,22 +11,27 @@ enum Capital {
}
type Action {
- id: ID! # Bytes32
+ id: Int!
ownerAddress: String! # Address
- startTime: Int!
- endTime: Int!
+ startTime: BigInt!
+ endTime: BigInt!
title: String!
instructions: String!
capitals: [Capital!]!
media: [String!]!
- createdAt: BigInt!
+ createdAt: Int!
}
type Garden {
id: ID! # Address
tokenAddress: String! # Address
- tokenID: Int!
+ tokenID: BigInt!
name: String!
description: String!
- createdAt: BigInt!
+ location: String!
+ bannerImage: String!
+ createdAt: Int!
+
+ gardeners: [String!]! # Address
+ operators: [String!]! # Address
}
diff --git a/packages/indexer/src/EventHandlers.ts b/packages/indexer/src/EventHandlers.ts
index 7cfbafc..4eeb531 100644
--- a/packages/indexer/src/EventHandlers.ts
+++ b/packages/indexer/src/EventHandlers.ts
@@ -2,78 +2,225 @@ import {
ActionRegistry,
GardenToken,
GardenAccount,
+ Capital,
Action,
- // Garden,
+ Garden,
} from "generated";
// Handler for the ActionRegistered event
ActionRegistry.ActionRegistered.handler(async ({ event, context }) => {
- // const actionId = event.params.action[0].toString(); // ToDo: add action id to event
- // const capitals: Capital_t[] = event.params.action[4].map((capital) => {
- // const number = Number(capital);
- // if (number === 1) {
- // return "SOCIAL";
- // } else if (number === 2) {
- // return "MATERIAL";
- // } else if (number === 3) {
- // return "FINANCIAL";
- // } else if (number === 4) {
- // return "LIVING";
- // } else if (number === 5) {
- // return "INTELLECTUAL";
- // } else if (number === 6) {
- // return "SPIRITUAL";
- // } else if (number === 7) {
- // return "CULTURAL";
- // } else {
- // return "UNKNOWN";
- // }
- // });
- // // Update or create a new Action entity
+ // const actionId = event.params.actionUID.toString();
+ // // const capitals: Capital[] = event.params.action[4].map((capital) => {
+ // // const number = Number(capital);
+ // // if (number === 1) {
+ // // return "SOCIAL";
+ // // } else if (number === 2) {
+ // // return "MATERIAL";
+ // // } else if (number === 3) {
+ // // return "FINANCIAL";
+ // // } else if (number === 4) {
+ // // return "LIVING";
+ // // } else if (number === 5) {
+ // // return "INTELLECTUAL";
+ // // } else if (number === 6) {
+ // // return "SPIRITUAL";
+ // // } else if (number === 7) {
+ // // return "CULTURAL";
+ // // } else {
+ // // return "UNKNOWN";
+ // // }
+ // // });
+ // // // Update or create a new Action entity
// const actionEntity: Action = {
// id: actionId,
// ownerAddress: event.params.owner,
- // startTime: Number(event.params.action[0]),
- // endTime: Number(event.params.action[1]),
+ // startTime: event.params.action[0],
+ // endTime: event.params.action[1],
// title: event.params.action[2],
- // instructions: "",
- // capitals,
+ // instructions: event.params.action[3],
+ // capitals: [],
// media: event.params.action[5],
+ // createdAt: event.block.timestamp,
// };
// context.Action.set(actionEntity);
});
-// Handler for the ActionUpdated event
-ActionRegistry.ActionUpdated.handler(async ({ event, context }) => {
- const actionId = event.params.action[0].toString();
+// Handler for the ActionStartTimeUpdated event
+ActionRegistry.ActionStartTimeUpdated.handler(async ({ event, context }) => {
+ const actionId = event.params.actionUID.toString();
- const currentActionEntity: Action | undefined =
- await context.Action.get(actionId);
+ const currentActionEntity = await context.Action.get(actionId);
if (currentActionEntity) {
// Clear the latestGreeting
context.Action.set({
...currentActionEntity,
+ startTime: event.params.startTime,
+ });
+ }
+});
+
+// Handler for the ActionEndTimeUpdated event
+ActionRegistry.ActionEndTimeUpdated.handler(async ({ event, context }) => {
+ const actionId = event.params.actionUID.toString();
+
+ const currentActionEntity = await context.Action.get(actionId);
+
+ if (currentActionEntity) {
+ // Clear the latestGreeting
+ context.Action.set({
+ ...currentActionEntity,
+ endTime: event.params.endTime,
+ });
+ }
+});
+
+// Handler for the ActionTitleUpdated event
+ActionRegistry.ActionTitleUpdated.handler(async ({ event, context }) => {
+ const actionId = event.params.actionUID.toString();
+
+ const currentActionEntity = await context.Action.get(actionId);
+
+ if (currentActionEntity) {
+ // Clear the latestGreeting
+ context.Action.set({
+ ...currentActionEntity,
+ title: event.params.title,
+ });
+ }
+});
+
+// Handler for the ActionInstructionsUpdated event
+ActionRegistry.ActionInstructionsUpdated.handler(async ({ event, context }) => {
+ const actionId = event.params.actionUID.toString();
+
+ const currentActionEntity = await context.Action.get(actionId);
+
+ if (currentActionEntity) {
+ // Clear the latestGreeting
+ context.Action.set({
+ ...currentActionEntity,
+ instructions: event.params.instructions,
+ });
+ }
+});
+
+// Handler for the ActionMediaUpdated event
+ActionRegistry.ActionMediaUpdated.handler(async ({ event, context }) => {
+ const actionId = event.params.actionUID.toString();
+
+ const currentActionEntity = await context.Action.get(actionId);
+
+ if (currentActionEntity) {
+ // Clear the latestGreeting
+ context.Action.set({
+ ...currentActionEntity,
+ media: event.params.media,
});
}
});
// Handler for the GardenMinted event
+GardenToken.GardenMinted.handler(async ({ event, context }) => {
+ // create a new Garden entity
+ const gardenEntity: Garden = {
+ id: event.params.account,
+ name: "",
+ description: "",
+ bannerImage: "",
+ location: "",
+ gardeners: [],
+ operators: [],
+ tokenAddress: event.srcAddress,
+ tokenID: event.params.tokenId,
+ createdAt: event.block.timestamp,
+ };
+
+ context.Garden.set(gardenEntity);
+});
+
GardenToken.GardenMinted.contractRegister(({ event, context }) => {
- // context.addGardenAccount(event.params.) // ToDo: Add garden account to event
+ context.addGardenAccount(event.params.account);
+});
+
+// Handler for the GardenNameUpdated event
+GardenAccount.NameUpdated.handler(async ({ event, context }) => {
+ const gardenAccount = event.srcAddress;
+ const gardenAccountEntity = await context.Garden.get(gardenAccount);
+
+ if (gardenAccountEntity) {
+ context.Garden.set({
+ ...gardenAccountEntity,
+ name: event.params.newName,
+ });
+ }
+});
+
+// Handler for the GardenDescriptionUpdated event
+GardenAccount.DescriptionUpdated.handler(async ({ event, context }) => {
+ const gardenAccount = event.srcAddress;
+ const gardenAccountEntity = await context.Garden.get(gardenAccount);
+
+ if (gardenAccountEntity) {
+ context.Garden.set({
+ ...gardenAccountEntity,
+ description: event.params.newDescription,
+ });
+ }
});
-// Handler for the GardenAccount NameUpdated event
-GardenAccount.NameUpdated.handler(async ({ event, context }) => {});
+// Handler for the GardenerAdded event
+GardenAccount.GardenerAdded.handler(async ({ event, context }) => {
+ const gardenAccount = event.srcAddress;
+ const gardenAccountEntity = await context.Garden.get(gardenAccount);
-// Handler for the GardenAccount GardenerAdded event
-GardenAccount.GardenerAdded.handler(async ({ event, context }) => {});
+ if (gardenAccountEntity) {
+ context.Garden.set({
+ ...gardenAccountEntity,
+ gardeners: [...gardenAccountEntity.gardeners, event.params.gardener],
+ });
+ }
+});
-// Handler for the GardenAccount GardenerRemoved event
-GardenAccount.GardenerRemoved.handler(async ({ event, context }) => {});
+// Handler for the GardenerRemoved event
+GardenAccount.GardenerRemoved.handler(async ({ event, context }) => {
+ const gardenAccount = event.srcAddress;
+ const gardenAccountEntity = await context.Garden.get(gardenAccount);
+
+ if (gardenAccountEntity) {
+ context.Garden.set({
+ ...gardenAccountEntity,
+ gardeners: gardenAccountEntity.gardeners.filter(
+ (g) => g !== event.params.gardener
+ ),
+ });
+ }
+});
-// Handler for the GardenAccount GardenOperatorAdded event
-GardenAccount.GardenOperatorAdded.handler(async ({ event, context }) => {});
+// Handler for the GardenOperatorAdded event
+GardenAccount.GardenOperatorAdded.handler(async ({ event, context }) => {
+ const gardenAccount = event.srcAddress;
+ const gardenAccountEntity = await context.Garden.get(gardenAccount);
+
+ if (gardenAccountEntity) {
+ context.Garden.set({
+ ...gardenAccountEntity,
+ operators: [...gardenAccountEntity.operators, event.params.operator],
+ });
+ }
+});
// Handler for the GardenAccount GardenOperatorRemoved event
-GardenAccount.GardenOperatorRemoved.handler(async ({ event, context }) => {});
+GardenAccount.GardenOperatorRemoved.handler(async ({ event, context }) => {
+ const gardenAccount = event.srcAddress;
+ const gardenAccountEntity = await context.Garden.get(gardenAccount);
+
+ if (gardenAccountEntity) {
+ context.Garden.set({
+ ...gardenAccountEntity,
+ operators: gardenAccountEntity.operators.filter(
+ (g) => g !== event.params.operator
+ ),
+ });
+ }
+});
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 384f7cd..47962b7 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,155 +1,80 @@
-lockfileVersion: "9.0"
+lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
+
.:
dependencies:
- "@ethereum-attestation-service/eas-sdk":
+ '@ethereum-attestation-service/eas-sdk':
specifier: ^2.5.0
- version: 2.5.0(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10)
+ version: 2.5.0(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.5.1)(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10)
dotenv:
specifier: 16.4.5
version: 16.4.5
ethers:
specifier: ^6.13.2
- version: 6.13.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ version: 6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
viem:
specifier: ^2.19.6
- version: 2.19.6(bufferutil@4.0.7)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.23.8)
+ version: 2.19.6(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.23.8)
devDependencies:
+ '@types/node':
+ specifier: 22.5.1
+ version: 22.5.1
concurrently:
specifier: 8.2.2
version: 8.2.2
prettier:
specifier: ^3.3.3
version: 3.3.3
- typescript:
- specifier: ^5.5.4
- version: 5.5.4
wait-port:
specifier: 1.1.0
version: 1.1.0
- packages/app:
- dependencies:
- "@ethereum-attestation-service/eas-sdk":
- specifier: 2.5.0
- version: 2.5.0(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10)
- "@hookform/resolvers":
- specifier: ^3.3.4
- version: 3.3.4(react-hook-form@7.51.0(react@18.2.0))
- "@privy-io/react-auth":
- specifier: 1.77.0
- version: 1.77.0(@babel/core@7.25.2)(@types/react@18.3.3)(bufferutil@4.0.7)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)
- "@xstate/react":
- specifier: 3.2.2
- version: 3.2.2(@types/react@18.3.3)(react@18.2.0)(xstate@4.38.2)
- graphql:
- specifier: 16.9.0
- version: 16.9.0
- lucide-react:
- specifier: ^0.424.0
- version: 0.424.0(react@18.2.0)
- permissionless:
- specifier: 0.1.44
- version: 0.1.44(viem@2.19.6(bufferutil@4.0.7)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4))
- react:
- specifier: ^18.2.0
- version: 18.2.0
- react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
- react-dropzone:
- specifier: 14.2.3
- version: 14.2.3(react@18.2.0)
- react-hook-form:
- specifier: ^7.51.0
- version: 7.51.0(react@18.2.0)
- react-hot-toast:
- specifier: 2.4.1
- version: 2.4.1(csstype@3.1.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react-router-dom:
- specifier: 6.22.2
- version: 6.22.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- tailwindcss-animate:
- specifier: ^1.0.7
- version: 1.0.7(tailwindcss@3.4.1(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4)))
- xstate:
- specifier: 4.38.2
- version: 4.38.2
- zod:
- specifier: ^3.22.4
- version: 3.22.4
- devDependencies:
- "@types/node":
- specifier: 22.1.0
- version: 22.1.0
- "@types/react":
- specifier: ^18.3.3
- version: 18.3.3
- "@types/react-dom":
- specifier: ^18.3.0
- version: 18.3.0
- "@typescript-eslint/eslint-plugin":
- specifier: ^8.0.1
- version: 8.1.0(@typescript-eslint/parser@8.1.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
- "@typescript-eslint/parser":
- specifier: ^8.0.1
- version: 8.1.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
- "@vitejs/plugin-react":
- specifier: ^4.3.1
- version: 4.3.1(vite@5.4.0(@types/node@22.1.0)(terser@5.21.0))
- autoprefixer:
- specifier: 10.4.20
- version: 10.4.20(postcss@8.4.41)
- eslint:
- specifier: ^9.8.0
- version: 9.9.0(jiti@1.21.0)
- eslint-plugin-react-hooks:
- specifier: ^4.6.0
- version: 4.6.0(eslint@9.9.0(jiti@1.21.0))
- eslint-plugin-react-refresh:
- specifier: ^0.4.9
- version: 0.4.9(eslint@9.9.0(jiti@1.21.0))
- postcss:
- specifier: 8.4.41
- version: 8.4.41
- preline:
- specifier: 2.4.1
- version: 2.4.1
- tailwindcss:
- specifier: 3.4.1
- version: 3.4.1(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4))
- vite:
- specifier: ^5.4.0
- version: 5.4.0(@types/node@22.1.0)(terser@5.21.0)
- vite-plugin-mkcert:
- specifier: 1.17.5
- version: 1.17.5(vite@5.4.0(@types/node@22.1.0)(terser@5.21.0))
- vite-plugin-pwa:
- specifier: 0.20.1
- version: 0.20.1(vite@5.4.0(@types/node@22.1.0)(terser@5.21.0))(workbox-build@7.0.0(@types/babel__core@7.20.5))(workbox-window@7.0.0)
- vite-plugin-svgr:
- specifier: 4.2.0
- version: 4.2.0(rollup@2.79.1)(typescript@5.5.4)(vite@5.4.0(@types/node@22.1.0)(terser@5.21.0))
-
packages/client:
dependencies:
- "@privy-io/react-auth":
+ '@hookform/resolvers':
+ specifier: 3.9.0
+ version: 3.9.0(react-hook-form@7.53.0(react@18.3.1))
+ '@phosphor-icons/react':
+ specifier: 2.1.7
+ version: 2.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@privy-io/react-auth':
specifier: ^1.80.0
- version: 1.80.0(@babel/core@7.25.2)(@types/react@18.3.3)(bufferutil@4.0.7)(react-dom@18.3.1(react@18.3.1))(react-is@18.2.0)(react@18.3.1)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.23.8)
- lucide-react:
- specifier: 0.436.0
- version: 0.436.0(react@18.3.1)
+ version: 1.80.0(@babel/core@7.25.2)(@types/react@18.3.3)(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-is@18.2.0)(react@18.3.1)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.23.8)
+ '@privy-io/server-auth':
+ specifier: 1.11.1
+ version: 1.11.1(encoding@0.1.13)
+ '@remixicon/react':
+ specifier: ^4.2.0
+ version: 4.2.0(react@18.3.1)
+ '@tanstack/react-query':
+ specifier: ^5.52.2
+ version: 5.52.2(react@18.3.1)
+ '@urql/core':
+ specifier: ^5.0.4
+ version: 5.0.6(graphql@16.9.0)
+ '@vercel/functions':
+ specifier: 1.4.1
+ version: 1.4.1
+ gql.tada:
+ specifier: ^1.8.2
+ version: 1.8.6(graphql@16.9.0)(typescript@5.5.4)
permissionless:
specifier: ^0.1.45
- version: 0.1.45(viem@2.19.6(bufferutil@4.0.7)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.23.8))
+ version: 0.1.45(viem@2.19.6(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.23.8))
+ pinata:
+ specifier: ^0.4.0
+ version: 0.4.0
react:
specifier: ^18.3.1
version: 18.3.1
+ react-device-frameset:
+ specifier: 1.3.4
+ version: 1.3.4(react@18.3.1)
react-dom:
specifier: ^18.3.1
version: 18.3.1(react@18.3.1)
@@ -157,36 +82,60 @@ importers:
specifier: ^7.53.0
version: 7.53.0(react@18.3.1)
react-hot-toast:
- specifier: 2.4.1
+ specifier: ^2.4.1
version: 2.4.1(csstype@3.1.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-intl:
+ specifier: 6.6.8
+ version: 6.6.8(react@18.3.1)(typescript@5.5.4)
react-router-dom:
- specifier: 6.26.1
+ specifier: ^6.26.1
version: 6.26.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- xstate:
- specifier: ^5.17.4
- version: 5.17.4
+ react-select:
+ specifier: 5.8.0
+ version: 5.8.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-tailwindcss-datepicker:
+ specifier: ^1.7.2
+ version: 1.7.2(dayjs@1.11.13)(react@18.3.1)
zod:
specifier: ^3.23.8
version: 3.23.8
devDependencies:
- "@eslint/js":
+ '@0no-co/graphqlsp':
+ specifier: ^1.12.12
+ version: 1.12.13(graphql@16.9.0)(typescript@5.5.4)
+ '@eslint/js':
specifier: ^9.9.0
version: 9.9.0
- "@types/react":
+ '@tailwindcss/forms':
+ specifier: ^0.5.7
+ version: 0.5.7(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11)(@types/node@16.18.11)(typescript@5.5.4)))
+ '@tailwindcss/typography':
+ specifier: 0.5.15
+ version: 0.5.15(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11)(@types/node@16.18.11)(typescript@5.5.4)))
+ '@tanstack/eslint-plugin-query':
+ specifier: 5.52.0
+ version: 5.52.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
+ '@types/react':
specifier: ^18.3.3
version: 18.3.3
- "@types/react-dom":
+ '@types/react-dom':
specifier: ^18.3.0
version: 18.3.0
- "@vitejs/plugin-react":
+ '@vercel/node':
+ specifier: 3.2.10
+ version: 3.2.10(@swc/core@1.7.11)(encoding@0.1.13)
+ '@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.1(vite@5.4.2(@types/node@22.1.0)(terser@5.21.0))
- "@xstate/react":
- specifier: ^4.1.1
- version: 4.1.1(@types/react@18.3.3)(react@18.3.1)(xstate@5.17.4)
+ version: 4.3.1(vite@5.4.2(@types/node@16.18.11)(terser@5.21.0))
autoprefixer:
specifier: ^10.4.20
version: 10.4.20(postcss@8.4.41)
+ daisyui:
+ specifier: 4.12.10
+ version: 4.12.10(postcss@8.4.41)
+ dotenv-expand:
+ specifier: 11.0.6
+ version: 11.0.6
eslint:
specifier: ^9.9.0
version: 9.9.0(jiti@1.21.0)
@@ -204,40 +153,40 @@ importers:
version: 8.4.41
tailwindcss:
specifier: ^3.4.10
- version: 3.4.10(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4))
+ version: 3.4.10(ts-node@10.9.2(@swc/core@1.7.11)(@types/node@16.18.11)(typescript@5.5.4))
tailwindcss-animate:
specifier: ^1.0.7
- version: 1.0.7(tailwindcss@3.4.10(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4)))
+ version: 1.0.7(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11)(@types/node@16.18.11)(typescript@5.5.4)))
+ typescript:
+ specifier: ^5.5.4
+ version: 5.5.4
typescript-eslint:
specifier: ^8.0.1
version: 8.2.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
vite:
specifier: ^5.4.1
- version: 5.4.2(@types/node@22.1.0)(terser@5.21.0)
+ version: 5.4.2(@types/node@16.18.11)(terser@5.21.0)
vite-plugin-mkcert:
specifier: ^1.17.5
- version: 1.17.5(vite@5.4.2(@types/node@22.1.0)(terser@5.21.0))
+ version: 1.17.5(vite@5.4.2(@types/node@16.18.11)(terser@5.21.0))
vite-plugin-pwa:
specifier: ^0.20.1
- version: 0.20.1(vite@5.4.2(@types/node@22.1.0)(terser@5.21.0))(workbox-build@7.0.0(@types/babel__core@7.20.5))(workbox-window@7.0.0)
- vite-plugin-svgr:
- specifier: ^4.2.0
- version: 4.2.0(rollup@4.20.0)(typescript@5.5.4)(vite@5.4.2(@types/node@22.1.0)(terser@5.21.0))
+ version: 0.20.1(vite@5.4.2(@types/node@16.18.11)(terser@5.21.0))(workbox-build@7.0.0(@types/babel__core@7.20.5))(workbox-window@7.0.0)
packages/contracts:
dependencies:
- "@ethereum-attestation-service/eas-contracts":
+ '@ethereum-attestation-service/eas-contracts':
specifier: 1.7.1
- version: 1.7.1(bufferutil@4.0.7)(ts-node@10.9.2(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10)
- "@openzeppelin/contracts-upgradeable":
+ version: 1.7.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.5.1)(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10)
+ '@openzeppelin/contracts-upgradeable':
specifier: 4.9.6
version: 4.9.6
devDependencies:
- "@types/prettier":
- specifier: "2"
+ '@types/prettier':
+ specifier: '2'
version: 2.7.3
- "@types/qrcode":
- specifier: "1"
+ '@types/qrcode':
+ specifier: '1'
version: 1.5.5
envfile:
specifier: ~6.18.0
@@ -256,7 +205,7 @@ importers:
version: 5.0.3(typescript@5.5.4)
solidity-coverage:
specifier: ^0.8.12
- version: 0.8.12(hardhat@2.22.4(bufferutil@4.0.7)(ts-node@10.9.2(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10))
+ version: 0.8.12(hardhat@2.22.4(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.5.1)(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10))
toml:
specifier: ~3.0.0
version: 3.0.0
@@ -270,18 +219,18 @@ importers:
specifier: ^3.23.8
version: 3.23.8
devDependencies:
- "@biomejs/biome":
+ '@biomejs/biome':
specifier: 1.7.3
version: 1.7.3
- "@swc/core":
+ '@swc/core':
specifier: ^1.5.24
version: 1.7.11(@swc/helpers@0.5.12)
- "@swc/helpers":
+ '@swc/helpers':
specifier: ^0.5.11
version: 0.5.12
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.1.0)(typescript@5.5.4)
+ version: 10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.5.1)(typescript@5.5.4)
packages/indexer:
dependencies:
@@ -293,19 +242,19 @@ importers:
version: 2.1.0
ethers:
specifier: 6.8.0
- version: 6.8.0(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ version: 6.8.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
optionalDependencies:
generated:
specifier: ./generated
version: link:generated
devDependencies:
- "@types/chai":
+ '@types/chai':
specifier: ^4.3.11
- version: 4.3.17
- "@types/mocha":
+ version: 4.3.19
+ '@types/mocha':
specifier: 10.0.6
version: 10.0.6
- "@types/node":
+ '@types/node':
specifier: 20.8.8
version: 20.8.8
mocha:
@@ -322,3652 +271,2291 @@ importers:
version: 5.2.2
packages:
- "@aashutoshrathi/word-wrap@1.2.6":
- resolution:
- {
- integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==,
- }
- engines: { node: ">=0.10.0" }
-
- "@adraffy/ens-normalize@1.10.0":
- resolution:
- {
- integrity: sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q==,
- }
-
- "@adraffy/ens-normalize@1.10.1":
- resolution:
- {
- integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==,
- }
-
- "@alloc/quick-lru@5.2.0":
- resolution:
- {
- integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==,
- }
- engines: { node: ">=10" }
-
- "@ampproject/remapping@2.2.1":
- resolution:
- {
- integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==,
- }
- engines: { node: ">=6.0.0" }
-
- "@apideck/better-ajv-errors@0.3.6":
- resolution:
- {
- integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==,
- }
- engines: { node: ">=10" }
+
+ '@0no-co/graphql.web@1.0.8':
+ resolution: {integrity: sha512-8BG6woLtDMvXB9Ajb/uE+Zr/U7y4qJ3upXi0JQHZmsKUJa7HjF/gFvmL2f3/mSmfZoQGRr9VoY97LCX2uaFMzA==}
+ peerDependencies:
+ graphql: ^14.0.0 || ^15.0.0 || ^16.0.0
+ peerDependenciesMeta:
+ graphql:
+ optional: true
+
+ '@0no-co/graphqlsp@1.12.13':
+ resolution: {integrity: sha512-/C9yXft+mq+VdoniBgWvA+iK5X6cB50KKThg1je4bFIhhBNccLJlNbWFxOglXseKuisq+h5oIY4ELTVKs6GhRQ==}
+ peerDependencies:
+ graphql: ^15.5.0 || ^16.0.0 || ^17.0.0
+ typescript: ^5.0.0
+
+ '@aashutoshrathi/word-wrap@1.2.6':
+ resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
+ engines: {node: '>=0.10.0'}
+
+ '@adraffy/ens-normalize@1.10.0':
+ resolution: {integrity: sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q==}
+
+ '@adraffy/ens-normalize@1.10.1':
+ resolution: {integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==}
+
+ '@alloc/quick-lru@5.2.0':
+ resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
+ engines: {node: '>=10'}
+
+ '@ampproject/remapping@2.2.1':
+ resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
+ engines: {node: '>=6.0.0'}
+
+ '@apideck/better-ajv-errors@0.3.6':
+ resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==}
+ engines: {node: '>=10'}
peerDependencies:
- ajv: ">=8"
-
- "@babel/code-frame@7.24.7":
- resolution:
- {
- integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/compat-data@7.25.2":
- resolution:
- {
- integrity: sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/core@7.25.2":
- resolution:
- {
- integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/generator@7.25.0":
- resolution:
- {
- integrity: sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-annotate-as-pure@7.22.5":
- resolution:
- {
- integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-builder-binary-assignment-operator-visitor@7.22.15":
- resolution:
- {
- integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-compilation-targets@7.25.2":
- resolution:
- {
- integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-create-class-features-plugin@7.22.15":
- resolution:
- {
- integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==,
- }
- engines: { node: ">=6.9.0" }
+ ajv: '>=8'
+
+ '@babel/code-frame@7.24.7':
+ resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/compat-data@7.25.2':
+ resolution: {integrity: sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/core@7.25.2':
+ resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/generator@7.25.0':
+ resolution: {integrity: sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-annotate-as-pure@7.22.5':
+ resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15':
+ resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-compilation-targets@7.25.2':
+ resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-create-class-features-plugin@7.22.15':
+ resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/helper-create-regexp-features-plugin@7.22.15":
- resolution:
- {
- integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-create-regexp-features-plugin@7.22.15':
+ resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0
+ '@babel/core': ^7.0.0
- "@babel/helper-define-polyfill-provider@0.4.2":
- resolution:
- {
- integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==,
- }
+ '@babel/helper-define-polyfill-provider@0.4.2':
+ resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==}
peerDependencies:
- "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
-
- "@babel/helper-environment-visitor@7.22.20":
- resolution:
- {
- integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-function-name@7.23.0":
- resolution:
- {
- integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-hoist-variables@7.22.5":
- resolution:
- {
- integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-member-expression-to-functions@7.23.0":
- resolution:
- {
- integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-module-imports@7.24.7":
- resolution:
- {
- integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-module-transforms@7.25.2":
- resolution:
- {
- integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
+ '@babel/helper-environment-visitor@7.22.20':
+ resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-function-name@7.23.0':
+ resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-hoist-variables@7.22.5':
+ resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-member-expression-to-functions@7.23.0':
+ resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-module-imports@7.24.7':
+ resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-module-transforms@7.25.2':
+ resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/helper-optimise-call-expression@7.22.5":
- resolution:
- {
- integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-plugin-utils@7.24.8":
- resolution:
- {
- integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-remap-async-to-generator@7.22.20":
- resolution:
- {
- integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-optimise-call-expression@7.22.5':
+ resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-plugin-utils@7.24.8':
+ resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-remap-async-to-generator@7.22.20':
+ resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/helper-replace-supers@7.22.20":
- resolution:
- {
- integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-replace-supers@7.22.20':
+ resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/helper-simple-access@7.24.7":
- resolution:
- {
- integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-skip-transparent-expression-wrappers@7.22.5":
- resolution:
- {
- integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-split-export-declaration@7.22.6":
- resolution:
- {
- integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-string-parser@7.23.4":
- resolution:
- {
- integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-string-parser@7.24.8":
- resolution:
- {
- integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-validator-identifier@7.22.20":
- resolution:
- {
- integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-validator-identifier@7.24.7":
- resolution:
- {
- integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-validator-option@7.24.8":
- resolution:
- {
- integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-wrap-function@7.22.20":
- resolution:
- {
- integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helpers@7.25.0":
- resolution:
- {
- integrity: sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/highlight@7.24.7":
- resolution:
- {
- integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/parser@7.24.0":
- resolution:
- {
- integrity: sha512-QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR+rDgHg==,
- }
- engines: { node: ">=6.0.0" }
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-simple-access@7.24.7':
+ resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
+ resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-split-export-declaration@7.22.6':
+ resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-string-parser@7.23.4':
+ resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-string-parser@7.24.8':
+ resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-validator-identifier@7.22.20':
+ resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-validator-identifier@7.24.7':
+ resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-validator-option@7.24.8':
+ resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-wrap-function@7.22.20':
+ resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helpers@7.25.0':
+ resolution: {integrity: sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/highlight@7.24.7':
+ resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/parser@7.24.0':
+ resolution: {integrity: sha512-QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR+rDgHg==}
+ engines: {node: '>=6.0.0'}
hasBin: true
- "@babel/parser@7.25.3":
- resolution:
- {
- integrity: sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==,
- }
- engines: { node: ">=6.0.0" }
+ '@babel/parser@7.25.3':
+ resolution: {integrity: sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==}
+ engines: {node: '>=6.0.0'}
hasBin: true
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15":
- resolution:
- {
- integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15':
+ resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15":
- resolution:
- {
- integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15':
+ resolution: {integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.13.0
-
- "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2":
- resolution:
- {
- integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.13.0
+
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2':
+ resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-async-generators@7.8.4":
- resolution:
- {
- integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==,
- }
+ '@babel/plugin-syntax-async-generators@7.8.4':
+ resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-class-properties@7.12.13":
- resolution:
- {
- integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==,
- }
+ '@babel/plugin-syntax-class-properties@7.12.13':
+ resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-class-static-block@7.14.5":
- resolution:
- {
- integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-class-static-block@7.14.5':
+ resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-dynamic-import@7.8.3":
- resolution:
- {
- integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==,
- }
+ '@babel/plugin-syntax-dynamic-import@7.8.3':
+ resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-export-namespace-from@7.8.3":
- resolution:
- {
- integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==,
- }
+ '@babel/plugin-syntax-export-namespace-from@7.8.3':
+ resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-import-assertions@7.22.5":
- resolution:
- {
- integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-import-assertions@7.22.5':
+ resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-import-attributes@7.22.5":
- resolution:
- {
- integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-import-attributes@7.22.5':
+ resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-import-meta@7.10.4":
- resolution:
- {
- integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==,
- }
+ '@babel/plugin-syntax-import-meta@7.10.4':
+ resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-json-strings@7.8.3":
- resolution:
- {
- integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==,
- }
+ '@babel/plugin-syntax-json-strings@7.8.3':
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-jsx@7.23.3":
- resolution:
- {
- integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-jsx@7.23.3':
+ resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-logical-assignment-operators@7.10.4":
- resolution:
- {
- integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==,
- }
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4':
+ resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3":
- resolution:
- {
- integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==,
- }
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3':
+ resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-numeric-separator@7.10.4":
- resolution:
- {
- integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==,
- }
+ '@babel/plugin-syntax-numeric-separator@7.10.4':
+ resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-object-rest-spread@7.8.3":
- resolution:
- {
- integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==,
- }
+ '@babel/plugin-syntax-object-rest-spread@7.8.3':
+ resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-optional-catch-binding@7.8.3":
- resolution:
- {
- integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==,
- }
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3':
+ resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/plugin-syntax-optional-chaining@7.8.3":
- resolution:
- {
- integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==,
- }
+ '@babel/plugin-syntax-optional-chaining@7.8.3':
+ resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-private-property-in-object@7.14.5":
- resolution:
- {
- integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-private-property-in-object@7.14.5':
+ resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-top-level-await@7.14.5":
- resolution:
- {
- integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-top-level-await@7.14.5':
+ resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-unicode-sets-regex@7.18.6":
- resolution:
- {
- integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6':
+ resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/plugin-transform-arrow-functions@7.22.5":
- resolution:
- {
- integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-transform-arrow-functions@7.22.5':
+ resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-async-generator-functions@7.22.15":
- resolution:
- {
- integrity: sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-async-generator-functions@7.22.15':
+ resolution: {integrity: sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-async-to-generator@7.22.5":
- resolution:
- {
- integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-async-to-generator@7.22.5':
+ resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-block-scoped-functions@7.22.5":
- resolution:
- {
- integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-block-scoped-functions@7.22.5':
+ resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-block-scoping@7.23.0":
- resolution:
- {
- integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-block-scoping@7.23.0':
+ resolution: {integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-class-properties@7.22.5":
- resolution:
- {
- integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-class-properties@7.22.5':
+ resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-class-static-block@7.22.11":
- resolution:
- {
- integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-class-static-block@7.22.11':
+ resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.12.0
-
- "@babel/plugin-transform-classes@7.22.15":
- resolution:
- {
- integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.12.0
+
+ '@babel/plugin-transform-classes@7.22.15':
+ resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-computed-properties@7.22.5":
- resolution:
- {
- integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-computed-properties@7.22.5':
+ resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-destructuring@7.23.0":
- resolution:
- {
- integrity: sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-destructuring@7.23.0':
+ resolution: {integrity: sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-dotall-regex@7.22.5":
- resolution:
- {
- integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-dotall-regex@7.22.5':
+ resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-duplicate-keys@7.22.5":
- resolution:
- {
- integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-duplicate-keys@7.22.5':
+ resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-dynamic-import@7.22.11":
- resolution:
- {
- integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-dynamic-import@7.22.11':
+ resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-exponentiation-operator@7.22.5":
- resolution:
- {
- integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-exponentiation-operator@7.22.5':
+ resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-export-namespace-from@7.22.11":
- resolution:
- {
- integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-export-namespace-from@7.22.11':
+ resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-for-of@7.22.15":
- resolution:
- {
- integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-for-of@7.22.15':
+ resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-function-name@7.22.5":
- resolution:
- {
- integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-function-name@7.22.5':
+ resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-json-strings@7.22.11":
- resolution:
- {
- integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-json-strings@7.22.11':
+ resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-literals@7.22.5":
- resolution:
- {
- integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-literals@7.22.5':
+ resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-logical-assignment-operators@7.22.11":
- resolution:
- {
- integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-logical-assignment-operators@7.22.11':
+ resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-member-expression-literals@7.22.5":
- resolution:
- {
- integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-member-expression-literals@7.22.5':
+ resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-modules-amd@7.23.0":
- resolution:
- {
- integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-modules-amd@7.23.0':
+ resolution: {integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-modules-commonjs@7.23.0":
- resolution:
- {
- integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-modules-commonjs@7.23.0':
+ resolution: {integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-modules-systemjs@7.23.0":
- resolution:
- {
- integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-modules-systemjs@7.23.0':
+ resolution: {integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-modules-umd@7.22.5":
- resolution:
- {
- integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-modules-umd@7.22.5':
+ resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-named-capturing-groups-regex@7.22.5":
- resolution:
- {
- integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-named-capturing-groups-regex@7.22.5':
+ resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/plugin-transform-new-target@7.22.5":
- resolution:
- {
- integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-transform-new-target@7.22.5':
+ resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-nullish-coalescing-operator@7.22.11":
- resolution:
- {
- integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-nullish-coalescing-operator@7.22.11':
+ resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-numeric-separator@7.22.11":
- resolution:
- {
- integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-numeric-separator@7.22.11':
+ resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-object-rest-spread@7.22.15":
- resolution:
- {
- integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-object-rest-spread@7.22.15':
+ resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-object-super@7.22.5":
- resolution:
- {
- integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-object-super@7.22.5':
+ resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-optional-catch-binding@7.22.11":
- resolution:
- {
- integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-optional-catch-binding@7.22.11':
+ resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-optional-chaining@7.23.0":
- resolution:
- {
- integrity: sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-optional-chaining@7.23.0':
+ resolution: {integrity: sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-parameters@7.22.15":
- resolution:
- {
- integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-parameters@7.22.15':
+ resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-private-methods@7.22.5":
- resolution:
- {
- integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-private-methods@7.22.5':
+ resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-private-property-in-object@7.22.11":
- resolution:
- {
- integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-private-property-in-object@7.22.11':
+ resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-property-literals@7.22.5":
- resolution:
- {
- integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-property-literals@7.22.5':
+ resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-react-jsx-self@7.24.7":
- resolution:
- {
- integrity: sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-react-jsx-self@7.24.7':
+ resolution: {integrity: sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-react-jsx-source@7.24.7":
- resolution:
- {
- integrity: sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-react-jsx-source@7.24.7':
+ resolution: {integrity: sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-regenerator@7.22.10":
- resolution:
- {
- integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-regenerator@7.22.10':
+ resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-reserved-words@7.22.5":
- resolution:
- {
- integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-reserved-words@7.22.5':
+ resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-shorthand-properties@7.22.5":
- resolution:
- {
- integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-shorthand-properties@7.22.5':
+ resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-spread@7.22.5":
- resolution:
- {
- integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-spread@7.22.5':
+ resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-sticky-regex@7.22.5":
- resolution:
- {
- integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-sticky-regex@7.22.5':
+ resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-template-literals@7.22.5":
- resolution:
- {
- integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-template-literals@7.22.5':
+ resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-typeof-symbol@7.22.5":
- resolution:
- {
- integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-typeof-symbol@7.22.5':
+ resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-unicode-escapes@7.22.10":
- resolution:
- {
- integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-unicode-escapes@7.22.10':
+ resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-unicode-property-regex@7.22.5":
- resolution:
- {
- integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-unicode-property-regex@7.22.5':
+ resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-unicode-regex@7.22.5":
- resolution:
- {
- integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-unicode-regex@7.22.5':
+ resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-transform-unicode-sets-regex@7.22.5":
- resolution:
- {
- integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-unicode-sets-regex@7.22.5':
+ resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0
-
- "@babel/preset-env@7.22.20":
- resolution:
- {
- integrity: sha512-11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg==,
- }
- engines: { node: ">=6.9.0" }
+ '@babel/core': ^7.0.0
+
+ '@babel/preset-env@7.22.20':
+ resolution: {integrity: sha512-11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
- "@babel/core": ^7.0.0-0
+ '@babel/core': ^7.0.0-0
- "@babel/preset-modules@0.1.6-no-external-plugins":
- resolution:
- {
- integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==,
- }
+ '@babel/preset-modules@0.1.6-no-external-plugins':
+ resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
- "@babel/core": ^7.0.0-0 || ^8.0.0-0 <8.0.0
-
- "@babel/regjsgen@0.8.0":
- resolution:
- {
- integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==,
- }
-
- "@babel/runtime@7.24.0":
- resolution:
- {
- integrity: sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/template@7.25.0":
- resolution:
- {
- integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/traverse@7.25.3":
- resolution:
- {
- integrity: sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/types@7.24.0":
- resolution:
- {
- integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/types@7.25.2":
- resolution:
- {
- integrity: sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==,
- }
- engines: { node: ">=6.9.0" }
-
- "@biomejs/biome@1.7.3":
- resolution:
- {
- integrity: sha512-ogFQI+fpXftr+tiahA6bIXwZ7CSikygASdqMtH07J2cUzrpjyTMVc9Y97v23c7/tL1xCZhM+W9k4hYIBm7Q6cQ==,
- }
- engines: { node: ">=14.21.3" }
+ '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
+
+ '@babel/regjsgen@0.8.0':
+ resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
+
+ '@babel/runtime@7.24.0':
+ resolution: {integrity: sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/template@7.25.0':
+ resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/traverse@7.25.3':
+ resolution: {integrity: sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/types@7.24.0':
+ resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/types@7.25.2':
+ resolution: {integrity: sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==}
+ engines: {node: '>=6.9.0'}
+
+ '@biomejs/biome@1.7.3':
+ resolution: {integrity: sha512-ogFQI+fpXftr+tiahA6bIXwZ7CSikygASdqMtH07J2cUzrpjyTMVc9Y97v23c7/tL1xCZhM+W9k4hYIBm7Q6cQ==}
+ engines: {node: '>=14.21.3'}
hasBin: true
- "@biomejs/cli-darwin-arm64@1.7.3":
- resolution:
- {
- integrity: sha512-eDvLQWmGRqrPIRY7AIrkPHkQ3visEItJKkPYSHCscSDdGvKzYjmBJwG1Gu8+QC5ed6R7eiU63LEC0APFBobmfQ==,
- }
- engines: { node: ">=14.21.3" }
+ '@biomejs/cli-darwin-arm64@1.7.3':
+ resolution: {integrity: sha512-eDvLQWmGRqrPIRY7AIrkPHkQ3visEItJKkPYSHCscSDdGvKzYjmBJwG1Gu8+QC5ed6R7eiU63LEC0APFBobmfQ==}
+ engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [darwin]
- "@biomejs/cli-darwin-x64@1.7.3":
- resolution:
- {
- integrity: sha512-JXCaIseKRER7dIURsVlAJacnm8SG5I0RpxZ4ya3dudASYUc68WGl4+FEN03ABY3KMIq7hcK1tzsJiWlmXyosZg==,
- }
- engines: { node: ">=14.21.3" }
+ '@biomejs/cli-darwin-x64@1.7.3':
+ resolution: {integrity: sha512-JXCaIseKRER7dIURsVlAJacnm8SG5I0RpxZ4ya3dudASYUc68WGl4+FEN03ABY3KMIq7hcK1tzsJiWlmXyosZg==}
+ engines: {node: '>=14.21.3'}
cpu: [x64]
os: [darwin]
- "@biomejs/cli-linux-arm64-musl@1.7.3":
- resolution:
- {
- integrity: sha512-c8AlO45PNFZ1BYcwaKzdt46kYbuP6xPGuGQ6h4j3XiEDpyseRRUy/h+6gxj07XovmyxKnSX9GSZ6nVbZvcVUAw==,
- }
- engines: { node: ">=14.21.3" }
+ '@biomejs/cli-linux-arm64-musl@1.7.3':
+ resolution: {integrity: sha512-c8AlO45PNFZ1BYcwaKzdt46kYbuP6xPGuGQ6h4j3XiEDpyseRRUy/h+6gxj07XovmyxKnSX9GSZ6nVbZvcVUAw==}
+ engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [linux]
- "@biomejs/cli-linux-arm64@1.7.3":
- resolution:
- {
- integrity: sha512-phNTBpo7joDFastnmZsFjYcDYobLTx4qR4oPvc9tJ486Bd1SfEVPHEvJdNJrMwUQK56T+TRClOQd/8X1nnjA9w==,
- }
- engines: { node: ">=14.21.3" }
+ '@biomejs/cli-linux-arm64@1.7.3':
+ resolution: {integrity: sha512-phNTBpo7joDFastnmZsFjYcDYobLTx4qR4oPvc9tJ486Bd1SfEVPHEvJdNJrMwUQK56T+TRClOQd/8X1nnjA9w==}
+ engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [linux]
- "@biomejs/cli-linux-x64-musl@1.7.3":
- resolution:
- {
- integrity: sha512-UdEHKtYGWEX3eDmVWvQeT+z05T9/Sdt2+F/7zmMOFQ7boANeX8pcO6EkJPK3wxMudrApsNEKT26rzqK6sZRTRA==,
- }
- engines: { node: ">=14.21.3" }
+ '@biomejs/cli-linux-x64-musl@1.7.3':
+ resolution: {integrity: sha512-UdEHKtYGWEX3eDmVWvQeT+z05T9/Sdt2+F/7zmMOFQ7boANeX8pcO6EkJPK3wxMudrApsNEKT26rzqK6sZRTRA==}
+ engines: {node: '>=14.21.3'}
cpu: [x64]
os: [linux]
- "@biomejs/cli-linux-x64@1.7.3":
- resolution:
- {
- integrity: sha512-vnedYcd5p4keT3iD48oSKjOIRPYcjSNNbd8MO1bKo9ajg3GwQXZLAH+0Cvlr+eMsO67/HddWmscSQwTFrC/uPA==,
- }
- engines: { node: ">=14.21.3" }
+ '@biomejs/cli-linux-x64@1.7.3':
+ resolution: {integrity: sha512-vnedYcd5p4keT3iD48oSKjOIRPYcjSNNbd8MO1bKo9ajg3GwQXZLAH+0Cvlr+eMsO67/HddWmscSQwTFrC/uPA==}
+ engines: {node: '>=14.21.3'}
cpu: [x64]
os: [linux]
- "@biomejs/cli-win32-arm64@1.7.3":
- resolution:
- {
- integrity: sha512-unNCDqUKjujYkkSxs7gFIfdasttbDC4+z0kYmcqzRk6yWVoQBL4dNLcCbdnJS+qvVDNdI9rHp2NwpQ0WAdla4Q==,
- }
- engines: { node: ">=14.21.3" }
+ '@biomejs/cli-win32-arm64@1.7.3':
+ resolution: {integrity: sha512-unNCDqUKjujYkkSxs7gFIfdasttbDC4+z0kYmcqzRk6yWVoQBL4dNLcCbdnJS+qvVDNdI9rHp2NwpQ0WAdla4Q==}
+ engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [win32]
- "@biomejs/cli-win32-x64@1.7.3":
- resolution:
- {
- integrity: sha512-ZmByhbrnmz/UUFYB622CECwhKIPjJLLPr5zr3edhu04LzbfcOrz16VYeNq5dpO1ADG70FORhAJkaIGdaVBG00w==,
- }
- engines: { node: ">=14.21.3" }
+ '@biomejs/cli-win32-x64@1.7.3':
+ resolution: {integrity: sha512-ZmByhbrnmz/UUFYB622CECwhKIPjJLLPr5zr3edhu04LzbfcOrz16VYeNq5dpO1ADG70FORhAJkaIGdaVBG00w==}
+ engines: {node: '>=14.21.3'}
cpu: [x64]
os: [win32]
- "@coinbase/wallet-sdk@4.0.3":
- resolution:
- {
- integrity: sha512-y/OGEjlvosikjfB+wk+4CVb9OxD1ob9cidEBLI5h8Hxaf/Qoob2XoVT1uvhtAzBx34KpGYSd+alKvh/GCRre4Q==,
- }
-
- "@cspotcode/source-map-support@0.8.1":
- resolution:
- {
- integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==,
- }
- engines: { node: ">=12" }
-
- "@emotion/is-prop-valid@1.2.2":
- resolution:
- {
- integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==,
- }
-
- "@emotion/memoize@0.8.1":
- resolution:
- {
- integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==,
- }
-
- "@emotion/stylis@0.8.5":
- resolution:
- {
- integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==,
- }
-
- "@emotion/unitless@0.7.5":
- resolution:
- {
- integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==,
- }
-
- "@esbuild/aix-ppc64@0.21.5":
- resolution:
- {
- integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==,
- }
- engines: { node: ">=12" }
+ '@chainsafe/is-ip@2.0.2':
+ resolution: {integrity: sha512-ndGqEMG1W5WkGagaqOZHpPU172AGdxr+LD15sv3WIUvT5oCFUrG1Y0CW/v2Egwj4JXEvSibaIIIqImsm98y1nA==}
+
+ '@chainsafe/netmask@2.0.0':
+ resolution: {integrity: sha512-I3Z+6SWUoaljh3TBzCnCxjlUyN8tA+NAk5L6m9IxvCf1BENQTePzPMis97CoN/iMW1St3WN+AWCCRp+TTBRiDg==}
+
+ '@coinbase/wallet-sdk@4.0.3':
+ resolution: {integrity: sha512-y/OGEjlvosikjfB+wk+4CVb9OxD1ob9cidEBLI5h8Hxaf/Qoob2XoVT1uvhtAzBx34KpGYSd+alKvh/GCRre4Q==}
+
+ '@cspotcode/source-map-support@0.8.1':
+ resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
+ engines: {node: '>=12'}
+
+ '@edge-runtime/format@2.2.1':
+ resolution: {integrity: sha512-JQTRVuiusQLNNLe2W9tnzBlV/GvSVcozLl4XZHk5swnRZ/v6jp8TqR8P7sqmJsQqblDZ3EztcWmLDbhRje/+8g==}
+ engines: {node: '>=16'}
+
+ '@edge-runtime/node-utils@2.3.0':
+ resolution: {integrity: sha512-uUtx8BFoO1hNxtHjp3eqVPC/mWImGb2exOfGjMLUoipuWgjej+f4o/VP4bUI8U40gu7Teogd5VTeZUkGvJSPOQ==}
+ engines: {node: '>=16'}
+
+ '@edge-runtime/ponyfill@2.4.2':
+ resolution: {integrity: sha512-oN17GjFr69chu6sDLvXxdhg0Qe8EZviGSuqzR9qOiKh4MhFYGdBBcqRNzdmYeAdeRzOW2mM9yil4RftUQ7sUOA==}
+ engines: {node: '>=16'}
+
+ '@edge-runtime/primitives@4.1.0':
+ resolution: {integrity: sha512-Vw0lbJ2lvRUqc7/soqygUX216Xb8T3WBZ987oywz6aJqRxcwSVWwr9e+Nqo2m9bxobA9mdbWNNoRY6S9eko1EQ==}
+ engines: {node: '>=16'}
+
+ '@edge-runtime/vm@3.2.0':
+ resolution: {integrity: sha512-0dEVyRLM/lG4gp1R/Ik5bfPl/1wX00xFwd5KcNH602tzBa09oF7pbTKETEhR1GjZ75K6OJnYFu8II2dyMhONMw==}
+ engines: {node: '>=16'}
+
+ '@emotion/babel-plugin@11.12.0':
+ resolution: {integrity: sha512-y2WQb+oP8Jqvvclh8Q55gLUyb7UFvgv7eJfsj7td5TToBrIUtPay2kMrZi4xjq9qw2vD0ZR5fSho0yqoFgX7Rw==}
+
+ '@emotion/cache@11.13.1':
+ resolution: {integrity: sha512-iqouYkuEblRcXmylXIwwOodiEK5Ifl7JcX7o6V4jI3iW4mLXX3dmt5xwBtIkJiQEXFAI+pC8X0i67yiPkH9Ucw==}
+
+ '@emotion/hash@0.9.2':
+ resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
+
+ '@emotion/is-prop-valid@1.2.2':
+ resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==}
+
+ '@emotion/memoize@0.8.1':
+ resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==}
+
+ '@emotion/memoize@0.9.0':
+ resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==}
+
+ '@emotion/react@11.13.3':
+ resolution: {integrity: sha512-lIsdU6JNrmYfJ5EbUCf4xW1ovy5wKQ2CkPRM4xogziOxH1nXxBSjpC9YqbFAP7circxMfYp+6x676BqWcEiixg==}
+ peerDependencies:
+ '@types/react': '*'
+ react: '>=16.8.0'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@emotion/serialize@1.3.1':
+ resolution: {integrity: sha512-dEPNKzBPU+vFPGa+z3axPRn8XVDetYORmDC0wAiej+TNcOZE70ZMJa0X7JdeoM6q/nWTMZeLpN/fTnD9o8MQBA==}
+
+ '@emotion/sheet@1.4.0':
+ resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==}
+
+ '@emotion/stylis@0.8.5':
+ resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==}
+
+ '@emotion/unitless@0.10.0':
+ resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==}
+
+ '@emotion/unitless@0.7.5':
+ resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==}
+
+ '@emotion/use-insertion-effect-with-fallbacks@1.1.0':
+ resolution: {integrity: sha512-+wBOcIV5snwGgI2ya3u99D7/FJquOIniQT1IKyDsBmEgwvpxMNeS65Oib7OnE2d2aY+3BU4OiH+0Wchf8yk3Hw==}
+ peerDependencies:
+ react: '>=16.8.0'
+
+ '@emotion/utils@1.4.0':
+ resolution: {integrity: sha512-spEnrA1b6hDR/C68lC2M7m6ALPUHZC0lIY7jAS/B/9DuuO1ZP04eov8SMv/6fwRd8pzmsn2AuJEznRREWlQrlQ==}
+
+ '@emotion/weak-memoize@0.4.0':
+ resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==}
+
+ '@esbuild/aix-ppc64@0.21.5':
+ resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
+ engines: {node: '>=12'}
cpu: [ppc64]
os: [aix]
- "@esbuild/android-arm64@0.21.5":
- resolution:
- {
- integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==,
- }
- engines: { node: ">=12" }
+ '@esbuild/android-arm64@0.21.5':
+ resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
+ engines: {node: '>=12'}
cpu: [arm64]
os: [android]
- "@esbuild/android-arm@0.21.5":
- resolution:
- {
- integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/android-arm@0.21.5':
+ resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
+ engines: {node: '>=12'}
cpu: [arm]
os: [android]
- "@esbuild/android-x64@0.21.5":
- resolution:
- {
- integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==,
- }
- engines: { node: ">=12" }
+ '@esbuild/android-x64@0.21.5':
+ resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [android]
- "@esbuild/darwin-arm64@0.21.5":
- resolution:
- {
- integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==,
- }
- engines: { node: ">=12" }
+ '@esbuild/darwin-arm64@0.21.5':
+ resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
+ engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
- "@esbuild/darwin-x64@0.21.5":
- resolution:
- {
- integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==,
- }
- engines: { node: ">=12" }
+ '@esbuild/darwin-x64@0.21.5':
+ resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
- "@esbuild/freebsd-arm64@0.21.5":
- resolution:
- {
- integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==,
- }
- engines: { node: ">=12" }
+ '@esbuild/freebsd-arm64@0.21.5':
+ resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
+ engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
- "@esbuild/freebsd-x64@0.21.5":
- resolution:
- {
- integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==,
- }
- engines: { node: ">=12" }
+ '@esbuild/freebsd-x64@0.21.5':
+ resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
- "@esbuild/linux-arm64@0.21.5":
- resolution:
- {
- integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-arm64@0.21.5':
+ resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
+ engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
- "@esbuild/linux-arm@0.21.5":
- resolution:
- {
- integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-arm@0.21.5':
+ resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
+ engines: {node: '>=12'}
cpu: [arm]
os: [linux]
- "@esbuild/linux-ia32@0.21.5":
- resolution:
- {
- integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-ia32@0.21.5':
+ resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
+ engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
- "@esbuild/linux-loong64@0.21.5":
- resolution:
- {
- integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-loong64@0.21.5':
+ resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
+ engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
- "@esbuild/linux-mips64el@0.21.5":
- resolution:
- {
- integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-mips64el@0.21.5':
+ resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
+ engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
- "@esbuild/linux-ppc64@0.21.5":
- resolution:
- {
- integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-ppc64@0.21.5':
+ resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
+ engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
- "@esbuild/linux-riscv64@0.21.5":
- resolution:
- {
- integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-riscv64@0.21.5':
+ resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
+ engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
- "@esbuild/linux-s390x@0.21.5":
- resolution:
- {
- integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-s390x@0.21.5':
+ resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
+ engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
- "@esbuild/linux-x64@0.21.5":
- resolution:
- {
- integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==,
- }
- engines: { node: ">=12" }
+ '@esbuild/linux-x64@0.21.5':
+ resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [linux]
- "@esbuild/netbsd-x64@0.21.5":
- resolution:
- {
- integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/netbsd-x64@0.21.5':
+ resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
- "@esbuild/openbsd-x64@0.21.5":
- resolution:
- {
- integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==,
- }
- engines: { node: ">=12" }
+ '@esbuild/openbsd-x64@0.21.5':
+ resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
- "@esbuild/sunos-x64@0.21.5":
- resolution:
- {
- integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==,
- }
- engines: { node: ">=12" }
+ '@esbuild/sunos-x64@0.21.5':
+ resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
- "@esbuild/win32-arm64@0.21.5":
- resolution:
- {
- integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==,
- }
- engines: { node: ">=12" }
+ '@esbuild/win32-arm64@0.21.5':
+ resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
+ engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
- "@esbuild/win32-ia32@0.21.5":
- resolution:
- {
- integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==,
- }
- engines: { node: ">=12" }
+ '@esbuild/win32-ia32@0.21.5':
+ resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
+ engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
- "@esbuild/win32-x64@0.21.5":
- resolution:
- {
- integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==,
- }
- engines: { node: ">=12" }
+ '@esbuild/win32-x64@0.21.5':
+ resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
+ engines: {node: '>=12'}
cpu: [x64]
os: [win32]
- "@eslint-community/eslint-utils@4.4.0":
- resolution:
- {
- integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==,
- }
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ '@eslint-community/eslint-utils@4.4.0':
+ resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- "@eslint-community/regexpp@4.11.0":
- resolution:
- {
- integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==,
- }
- engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 }
-
- "@eslint/config-array@0.17.1":
- resolution:
- {
- integrity: sha512-BlYOpej8AQ8Ev9xVqroV7a02JK3SkBAaN9GfMMH9W6Ch8FlQlkjGw4Ir7+FgYwfirivAf4t+GtzuAxqfukmISA==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
-
- "@eslint/eslintrc@3.1.0":
- resolution:
- {
- integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
-
- "@eslint/js@9.9.0":
- resolution:
- {
- integrity: sha512-hhetes6ZHP3BlXLxmd8K2SNgkhNSi+UcecbnwWKwpP7kyi/uC75DJ1lOOBO3xrC4jyojtGE3YxKZPHfk4yrgug==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
-
- "@eslint/object-schema@2.1.4":
- resolution:
- {
- integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
-
- "@ethereum-attestation-service/eas-contracts@1.4.1":
- resolution:
- {
- integrity: sha512-c+yaTMrEjOESG3yFztPQnNCGARZOBde6r7RnH4hK/T7BS84rC0Y0BbUv/4tOwGBAhN9ke8MJ7G/qySngVtJk3w==,
- }
-
- "@ethereum-attestation-service/eas-contracts@1.7.1":
- resolution:
- {
- integrity: sha512-z2MeCrkp4JrtOMBHQt5fcdbxryC+xxofoPzzv3wcx5GbfG27PpkXRKxlSlb1l2jIT1YfDc701rixbP6vHaEN3Q==,
- }
-
- "@ethereum-attestation-service/eas-sdk@2.5.0":
- resolution:
- {
- integrity: sha512-3Lt7mDmrIjJqfWcR2rMpwzOOcbcn39G02ziXJbkO9R9FNro4U9uZSyhh1iQsbXUgf0LLisd3LrcrmNg8Wo9rKA==,
- }
-
- "@ethereumjs/common@3.2.0":
- resolution:
- {
- integrity: sha512-pksvzI0VyLgmuEF2FA/JR/4/y6hcPq8OUail3/AvycBaW1d5VSauOZzqGvJ3RTmR4MU35lWE8KseKOsEhrFRBA==,
- }
-
- "@ethereumjs/rlp@4.0.1":
- resolution:
- {
- integrity: sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw==,
- }
- engines: { node: ">=14" }
+ '@eslint-community/regexpp@4.11.0':
+ resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==}
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+
+ '@eslint/config-array@0.17.1':
+ resolution: {integrity: sha512-BlYOpej8AQ8Ev9xVqroV7a02JK3SkBAaN9GfMMH9W6Ch8FlQlkjGw4Ir7+FgYwfirivAf4t+GtzuAxqfukmISA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/eslintrc@3.1.0':
+ resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/js@9.9.0':
+ resolution: {integrity: sha512-hhetes6ZHP3BlXLxmd8K2SNgkhNSi+UcecbnwWKwpP7kyi/uC75DJ1lOOBO3xrC4jyojtGE3YxKZPHfk4yrgug==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/object-schema@2.1.4':
+ resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@ethereum-attestation-service/eas-contracts@1.4.1':
+ resolution: {integrity: sha512-c+yaTMrEjOESG3yFztPQnNCGARZOBde6r7RnH4hK/T7BS84rC0Y0BbUv/4tOwGBAhN9ke8MJ7G/qySngVtJk3w==}
+
+ '@ethereum-attestation-service/eas-contracts@1.7.1':
+ resolution: {integrity: sha512-z2MeCrkp4JrtOMBHQt5fcdbxryC+xxofoPzzv3wcx5GbfG27PpkXRKxlSlb1l2jIT1YfDc701rixbP6vHaEN3Q==}
+
+ '@ethereum-attestation-service/eas-sdk@2.5.0':
+ resolution: {integrity: sha512-3Lt7mDmrIjJqfWcR2rMpwzOOcbcn39G02ziXJbkO9R9FNro4U9uZSyhh1iQsbXUgf0LLisd3LrcrmNg8Wo9rKA==}
+
+ '@ethereumjs/common@3.2.0':
+ resolution: {integrity: sha512-pksvzI0VyLgmuEF2FA/JR/4/y6hcPq8OUail3/AvycBaW1d5VSauOZzqGvJ3RTmR4MU35lWE8KseKOsEhrFRBA==}
+
+ '@ethereumjs/rlp@4.0.1':
+ resolution: {integrity: sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw==}
+ engines: {node: '>=14'}
hasBin: true
- "@ethereumjs/tx@4.2.0":
- resolution:
- {
- integrity: sha512-1nc6VO4jtFd172BbSnTnDQVr9IYBFl1y4xPzZdtkrkKIncBCkdbgfdRV+MiTkJYAtTxvV12GRZLqBFT1PNK6Yw==,
- }
- engines: { node: ">=14" }
-
- "@ethereumjs/util@8.1.0":
- resolution:
- {
- integrity: sha512-zQ0IqbdX8FZ9aw11vP+dZkKDkS+kgIvQPHnSAXzP9pLu+Rfu3D3XEeLbicvoXJTYnhZiPmsZUxgdzXwNKxRPbA==,
- }
- engines: { node: ">=14" }
-
- "@ethersproject/abi@5.7.0":
- resolution:
- {
- integrity: sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA==,
- }
-
- "@ethersproject/abstract-provider@5.7.0":
- resolution:
- {
- integrity: sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw==,
- }
-
- "@ethersproject/abstract-signer@5.7.0":
- resolution:
- {
- integrity: sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ==,
- }
-
- "@ethersproject/address@5.7.0":
- resolution:
- {
- integrity: sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA==,
- }
-
- "@ethersproject/base64@5.7.0":
- resolution:
- {
- integrity: sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ==,
- }
-
- "@ethersproject/basex@5.7.0":
- resolution:
- {
- integrity: sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==,
- }
-
- "@ethersproject/bignumber@5.7.0":
- resolution:
- {
- integrity: sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==,
- }
-
- "@ethersproject/bytes@5.7.0":
- resolution:
- {
- integrity: sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A==,
- }
-
- "@ethersproject/constants@5.7.0":
- resolution:
- {
- integrity: sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA==,
- }
-
- "@ethersproject/contracts@5.7.0":
- resolution:
- {
- integrity: sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==,
- }
-
- "@ethersproject/hash@5.7.0":
- resolution:
- {
- integrity: sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g==,
- }
-
- "@ethersproject/hdnode@5.7.0":
- resolution:
- {
- integrity: sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==,
- }
-
- "@ethersproject/json-wallets@5.7.0":
- resolution:
- {
- integrity: sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==,
- }
-
- "@ethersproject/keccak256@5.7.0":
- resolution:
- {
- integrity: sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==,
- }
-
- "@ethersproject/logger@5.7.0":
- resolution:
- {
- integrity: sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==,
- }
-
- "@ethersproject/networks@5.7.1":
- resolution:
- {
- integrity: sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==,
- }
-
- "@ethersproject/pbkdf2@5.7.0":
- resolution:
- {
- integrity: sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==,
- }
-
- "@ethersproject/properties@5.7.0":
- resolution:
- {
- integrity: sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw==,
- }
-
- "@ethersproject/providers@5.7.2":
- resolution:
- {
- integrity: sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==,
- }
-
- "@ethersproject/random@5.7.0":
- resolution:
- {
- integrity: sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==,
- }
-
- "@ethersproject/rlp@5.7.0":
- resolution:
- {
- integrity: sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==,
- }
-
- "@ethersproject/sha2@5.7.0":
- resolution:
- {
- integrity: sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==,
- }
-
- "@ethersproject/signing-key@5.7.0":
- resolution:
- {
- integrity: sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q==,
- }
-
- "@ethersproject/solidity@5.7.0":
- resolution:
- {
- integrity: sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==,
- }
-
- "@ethersproject/strings@5.7.0":
- resolution:
- {
- integrity: sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg==,
- }
-
- "@ethersproject/transactions@5.7.0":
- resolution:
- {
- integrity: sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ==,
- }
-
- "@ethersproject/units@5.7.0":
- resolution:
- {
- integrity: sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg==,
- }
-
- "@ethersproject/wallet@5.7.0":
- resolution:
- {
- integrity: sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==,
- }
-
- "@ethersproject/web@5.7.1":
- resolution:
- {
- integrity: sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==,
- }
-
- "@ethersproject/wordlists@5.7.0":
- resolution:
- {
- integrity: sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==,
- }
-
- "@fastify/busboy@2.0.0":
- resolution:
- {
- integrity: sha512-JUFJad5lv7jxj926GPgymrWQxxjPYuJNiNjNMzqT+HiuP6Vl3dk5xzG+8sTX96np0ZAluvaMzPsjhHZ5rNuNQQ==,
- }
- engines: { node: ">=14" }
-
- "@headlessui/react@1.7.18":
- resolution:
- {
- integrity: sha512-4i5DOrzwN4qSgNsL4Si61VMkUcWbcSKueUV7sFhpHzQcSShdlHENE5+QBntMSRvHt8NyoFO2AGG8si9lq+w4zQ==,
- }
- engines: { node: ">=10" }
+ '@ethereumjs/tx@4.2.0':
+ resolution: {integrity: sha512-1nc6VO4jtFd172BbSnTnDQVr9IYBFl1y4xPzZdtkrkKIncBCkdbgfdRV+MiTkJYAtTxvV12GRZLqBFT1PNK6Yw==}
+ engines: {node: '>=14'}
+
+ '@ethereumjs/util@8.1.0':
+ resolution: {integrity: sha512-zQ0IqbdX8FZ9aw11vP+dZkKDkS+kgIvQPHnSAXzP9pLu+Rfu3D3XEeLbicvoXJTYnhZiPmsZUxgdzXwNKxRPbA==}
+ engines: {node: '>=14'}
+
+ '@ethersproject/abi@5.7.0':
+ resolution: {integrity: sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA==}
+
+ '@ethersproject/abstract-provider@5.7.0':
+ resolution: {integrity: sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw==}
+
+ '@ethersproject/abstract-signer@5.7.0':
+ resolution: {integrity: sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ==}
+
+ '@ethersproject/address@5.7.0':
+ resolution: {integrity: sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA==}
+
+ '@ethersproject/base64@5.7.0':
+ resolution: {integrity: sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ==}
+
+ '@ethersproject/basex@5.7.0':
+ resolution: {integrity: sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==}
+
+ '@ethersproject/bignumber@5.7.0':
+ resolution: {integrity: sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==}
+
+ '@ethersproject/bytes@5.7.0':
+ resolution: {integrity: sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A==}
+
+ '@ethersproject/constants@5.7.0':
+ resolution: {integrity: sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA==}
+
+ '@ethersproject/contracts@5.7.0':
+ resolution: {integrity: sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==}
+
+ '@ethersproject/hash@5.7.0':
+ resolution: {integrity: sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g==}
+
+ '@ethersproject/hdnode@5.7.0':
+ resolution: {integrity: sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==}
+
+ '@ethersproject/json-wallets@5.7.0':
+ resolution: {integrity: sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==}
+
+ '@ethersproject/keccak256@5.7.0':
+ resolution: {integrity: sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==}
+
+ '@ethersproject/logger@5.7.0':
+ resolution: {integrity: sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==}
+
+ '@ethersproject/networks@5.7.1':
+ resolution: {integrity: sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==}
+
+ '@ethersproject/pbkdf2@5.7.0':
+ resolution: {integrity: sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==}
+
+ '@ethersproject/properties@5.7.0':
+ resolution: {integrity: sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw==}
+
+ '@ethersproject/providers@5.7.2':
+ resolution: {integrity: sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==}
+
+ '@ethersproject/random@5.7.0':
+ resolution: {integrity: sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==}
+
+ '@ethersproject/rlp@5.7.0':
+ resolution: {integrity: sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==}
+
+ '@ethersproject/sha2@5.7.0':
+ resolution: {integrity: sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==}
+
+ '@ethersproject/signing-key@5.7.0':
+ resolution: {integrity: sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q==}
+
+ '@ethersproject/solidity@5.7.0':
+ resolution: {integrity: sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==}
+
+ '@ethersproject/strings@5.7.0':
+ resolution: {integrity: sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg==}
+
+ '@ethersproject/transactions@5.7.0':
+ resolution: {integrity: sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ==}
+
+ '@ethersproject/units@5.7.0':
+ resolution: {integrity: sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg==}
+
+ '@ethersproject/wallet@5.7.0':
+ resolution: {integrity: sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==}
+
+ '@ethersproject/web@5.7.1':
+ resolution: {integrity: sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==}
+
+ '@ethersproject/wordlists@5.7.0':
+ resolution: {integrity: sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==}
+
+ '@fastify/busboy@2.0.0':
+ resolution: {integrity: sha512-JUFJad5lv7jxj926GPgymrWQxxjPYuJNiNjNMzqT+HiuP6Vl3dk5xzG+8sTX96np0ZAluvaMzPsjhHZ5rNuNQQ==}
+ engines: {node: '>=14'}
+
+ '@floating-ui/core@1.6.7':
+ resolution: {integrity: sha512-yDzVT/Lm101nQ5TCVeK65LtdN7Tj4Qpr9RTXJ2vPFLqtLxwOrpoxAHAJI8J3yYWUc40J0BDBheaitK5SJmno2g==}
+
+ '@floating-ui/dom@1.6.10':
+ resolution: {integrity: sha512-fskgCFv8J8OamCmyun8MfjB1Olfn+uZKjOKZ0vhYF3gRmEUXcGOjxWL8bBr7i4kIuPZ2KD2S3EUIOxnjC8kl2A==}
+
+ '@floating-ui/utils@0.2.7':
+ resolution: {integrity: sha512-X8R8Oj771YRl/w+c1HqAC1szL8zWQRwFvgDwT129k9ACdBoud/+/rX9V0qiMl6LWUdP9voC2nDVZYPMQQsb6eA==}
+
+ '@formatjs/ecma402-abstract@2.0.0':
+ resolution: {integrity: sha512-rRqXOqdFmk7RYvj4khklyqzcfQl9vEL/usogncBHRZfZBDOwMGuSRNFl02fu5KGHXdbinju+YXyuR+Nk8xlr/g==}
+
+ '@formatjs/fast-memoize@2.2.0':
+ resolution: {integrity: sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA==}
+
+ '@formatjs/icu-messageformat-parser@2.7.8':
+ resolution: {integrity: sha512-nBZJYmhpcSX0WeJ5SDYUkZ42AgR3xiyhNCsQweFx3cz/ULJjym8bHAzWKvG5e2+1XO98dBYC0fWeeAECAVSwLA==}
+
+ '@formatjs/icu-skeleton-parser@1.8.2':
+ resolution: {integrity: sha512-k4ERKgw7aKGWJZgTarIcNEmvyTVD9FYh0mTrrBMHZ1b8hUu6iOJ4SzsZlo3UNAvHYa+PnvntIwRPt1/vy4nA9Q==}
+
+ '@formatjs/intl-displaynames@6.6.8':
+ resolution: {integrity: sha512-Lgx6n5KxN16B3Pb05z3NLEBQkGoXnGjkTBNCZI+Cn17YjHJ3fhCeEJJUqRlIZmJdmaXQhjcQVDp6WIiNeRYT5g==}
+
+ '@formatjs/intl-listformat@7.5.7':
+ resolution: {integrity: sha512-MG2TSChQJQT9f7Rlv+eXwUFiG24mKSzmF144PLb8m8OixyXqn4+YWU+5wZracZGCgVTVmx8viCf7IH3QXoiB2g==}
+
+ '@formatjs/intl-localematcher@0.5.4':
+ resolution: {integrity: sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==}
+
+ '@formatjs/intl@2.10.4':
+ resolution: {integrity: sha512-56483O+HVcL0c7VucAS2tyH020mt9XTozZO67cwtGg0a7KWDukS/FzW3OnvaHmTHDuYsoPIzO+ZHVfU6fT/bJw==}
+ peerDependencies:
+ typescript: ^4.7 || 5
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@gql.tada/cli-utils@1.6.1':
+ resolution: {integrity: sha512-ZfYa5+rbK51c6ociTUL66qW1lyB9dXoAKNZMEAp2pWgPp16qZVBwopUaYxSKq4BML9eSiv0ocoJ7H6VW51ud7w==}
+ peerDependencies:
+ '@0no-co/graphqlsp': ^1.12.13
+ '@gql.tada/svelte-support': 1.0.1
+ '@gql.tada/vue-support': 1.0.1
+ graphql: ^15.5.0 || ^16.0.0 || ^17.0.0
+ typescript: ^5.0.0
+ peerDependenciesMeta:
+ '@gql.tada/svelte-support':
+ optional: true
+ '@gql.tada/vue-support':
+ optional: true
+
+ '@gql.tada/internal@1.0.7':
+ resolution: {integrity: sha512-mI/7l7If7YR4rBlgnkXihh1qxD7eO41o8nf5ZYjwYl4s6FGFQFZY1E1reV3AgRy8tDXbiuMz1bIVLpnxPXxKIQ==}
+ peerDependencies:
+ graphql: ^15.5.0 || ^16.0.0 || ^17.0.0
+ typescript: ^5.0.0
+
+ '@headlessui/react@1.7.18':
+ resolution: {integrity: sha512-4i5DOrzwN4qSgNsL4Si61VMkUcWbcSKueUV7sFhpHzQcSShdlHENE5+QBntMSRvHt8NyoFO2AGG8si9lq+w4zQ==}
+ engines: {node: '>=10'}
peerDependencies:
react: ^16 || ^17 || ^18
react-dom: ^16 || ^17 || ^18
- "@heroicons/react@2.1.1":
- resolution:
- {
- integrity: sha512-JyyN9Lo66kirbCMuMMRPtJxtKJoIsXKS569ebHGGRKbl8s4CtUfLnyKJxteA+vIKySocO4s1SkTkGS4xtG/yEA==,
- }
+ '@heroicons/react@2.1.1':
+ resolution: {integrity: sha512-JyyN9Lo66kirbCMuMMRPtJxtKJoIsXKS569ebHGGRKbl8s4CtUfLnyKJxteA+vIKySocO4s1SkTkGS4xtG/yEA==}
peerDependencies:
- react: ">= 16"
+ react: '>= 16'
- "@hookform/resolvers@3.3.4":
- resolution:
- {
- integrity: sha512-o5cgpGOuJYrd+iMKvkttOclgwRW86EsWJZZRC23prf0uU2i48Htq4PuT73AVb9ionFyZrwYEITuOFGF+BydEtQ==,
- }
+ '@hookform/resolvers@3.9.0':
+ resolution: {integrity: sha512-bU0Gr4EepJ/EQsH/IwEzYLsT/PEj5C0ynLQ4m+GSHS+xKH4TfSelhluTgOaoc4kA5s7eCsQbM4wvZLzELmWzUg==}
peerDependencies:
react-hook-form: ^7.0.0
- "@humanwhocodes/module-importer@1.0.1":
- resolution:
- {
- integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==,
- }
- engines: { node: ">=12.22" }
-
- "@humanwhocodes/retry@0.3.0":
- resolution:
- {
- integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==,
- }
- engines: { node: ">=18.18" }
-
- "@ioredis/commands@1.2.0":
- resolution:
- {
- integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==,
- }
-
- "@jridgewell/gen-mapping@0.3.3":
- resolution:
- {
- integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==,
- }
- engines: { node: ">=6.0.0" }
-
- "@jridgewell/gen-mapping@0.3.5":
- resolution:
- {
- integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==,
- }
- engines: { node: ">=6.0.0" }
-
- "@jridgewell/resolve-uri@3.1.1":
- resolution:
- {
- integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==,
- }
- engines: { node: ">=6.0.0" }
-
- "@jridgewell/set-array@1.1.2":
- resolution:
- {
- integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==,
- }
- engines: { node: ">=6.0.0" }
-
- "@jridgewell/set-array@1.2.1":
- resolution:
- {
- integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==,
- }
- engines: { node: ">=6.0.0" }
-
- "@jridgewell/source-map@0.3.5":
- resolution:
- {
- integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==,
- }
-
- "@jridgewell/sourcemap-codec@1.4.15":
- resolution:
- {
- integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==,
- }
-
- "@jridgewell/trace-mapping@0.3.25":
- resolution:
- {
- integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==,
- }
-
- "@jridgewell/trace-mapping@0.3.9":
- resolution:
- {
- integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==,
- }
-
- "@lit-labs/ssr-dom-shim@1.2.0":
- resolution:
- {
- integrity: sha512-yWJKmpGE6lUURKAaIltoPIE/wrbY3TEkqQt+X0m+7fQNnAv0keydnYvbiJFP1PnMhizmIWRWOG5KLhYyc/xl+g==,
- }
-
- "@lit/reactive-element@1.6.3":
- resolution:
- {
- integrity: sha512-QuTgnG52Poic7uM1AN5yJ09QMe0O28e10XzSvWDz02TJiiKee4stsiownEIadWm8nYzyDAyT+gKzUoZmiWQtsQ==,
- }
-
- "@marsidev/react-turnstile@0.4.1":
- resolution:
- {
- integrity: sha512-uZusUW9mPr0csWpls8bApe5iuRK0YK7H1PCKqfM4djW3OA9GB9rU68irjk7xRO8qlHyj0aDTeVu9tTLPExBO4Q==,
- }
+ '@humanwhocodes/module-importer@1.0.1':
+ resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
+ engines: {node: '>=12.22'}
+
+ '@humanwhocodes/retry@0.3.0':
+ resolution: {integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==}
+ engines: {node: '>=18.18'}
+
+ '@ioredis/commands@1.2.0':
+ resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==}
+
+ '@jridgewell/gen-mapping@0.3.3':
+ resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
+ engines: {node: '>=6.0.0'}
+
+ '@jridgewell/gen-mapping@0.3.5':
+ resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
+ engines: {node: '>=6.0.0'}
+
+ '@jridgewell/resolve-uri@3.1.1':
+ resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
+ engines: {node: '>=6.0.0'}
+
+ '@jridgewell/set-array@1.1.2':
+ resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
+ engines: {node: '>=6.0.0'}
+
+ '@jridgewell/set-array@1.2.1':
+ resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
+ engines: {node: '>=6.0.0'}
+
+ '@jridgewell/source-map@0.3.5':
+ resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==}
+
+ '@jridgewell/sourcemap-codec@1.4.15':
+ resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
+
+ '@jridgewell/trace-mapping@0.3.25':
+ resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
+
+ '@jridgewell/trace-mapping@0.3.9':
+ resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
+
+ '@leichtgewicht/ip-codec@2.0.5':
+ resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==}
+
+ '@libp2p/interface@1.7.0':
+ resolution: {integrity: sha512-/zFyaIaIGW0aihhsH7/93vQdpWInUzFocxF11RO/029Y6h0SVjs24HHbils+DqaFDTqN+L7oNlBx2rM2MnmTjA==}
+
+ '@lit-labs/ssr-dom-shim@1.2.0':
+ resolution: {integrity: sha512-yWJKmpGE6lUURKAaIltoPIE/wrbY3TEkqQt+X0m+7fQNnAv0keydnYvbiJFP1PnMhizmIWRWOG5KLhYyc/xl+g==}
+
+ '@lit/reactive-element@1.6.3':
+ resolution: {integrity: sha512-QuTgnG52Poic7uM1AN5yJ09QMe0O28e10XzSvWDz02TJiiKee4stsiownEIadWm8nYzyDAyT+gKzUoZmiWQtsQ==}
+
+ '@mapbox/node-pre-gyp@1.0.11':
+ resolution: {integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==}
+ hasBin: true
+
+ '@marsidev/react-turnstile@0.4.1':
+ resolution: {integrity: sha512-uZusUW9mPr0csWpls8bApe5iuRK0YK7H1PCKqfM4djW3OA9GB9rU68irjk7xRO8qlHyj0aDTeVu9tTLPExBO4Q==}
peerDependencies:
- react: ">=16.8.0"
- react-dom: ">=16.8.0"
-
- "@metamask/abi-utils@1.2.0":
- resolution:
- {
- integrity: sha512-Hf7fnBDM9ptCPDtq/wQffWbw859CdVGMwlpWUEsTH6gLXhXONGrRXHA2piyYPRuia8YYTdJvRC/zSK1/nyLvYg==,
- }
- engines: { node: ">=14.0.0" }
-
- "@metamask/eth-sig-util@4.0.1":
- resolution:
- {
- integrity: sha512-tghyZKLHZjcdlDqCA3gNZmLeR0XvOE9U1qoQO9ohyAZT6Pya+H9vkBPcsyXytmYLNgVoin7CKCmweo/R43V+tQ==,
- }
- engines: { node: ">=12.0.0" }
-
- "@metamask/eth-sig-util@6.0.2":
- resolution:
- {
- integrity: sha512-D6IIefM2vS+4GUGGtezdBbkwUYQC4bCosYx/JteUuF0zfe6lyxR4cruA8+2QHoUg7F7edNH1xymYpqYq1BeOkw==,
- }
- engines: { node: ">=14.0.0" }
-
- "@metamask/utils@3.6.0":
- resolution:
- {
- integrity: sha512-9cIRrfkWvHblSiNDVXsjivqa9Ak0RYo/1H6tqTqTbAx+oBK2Sva0lWDHxGchOqA7bySGUJKAWSNJvH6gdHZ0gQ==,
- }
- engines: { node: ">=14.0.0" }
-
- "@metamask/utils@5.0.2":
- resolution:
- {
- integrity: sha512-yfmE79bRQtnMzarnKfX7AEJBwFTxvTyw3nBQlu/5rmGXrjAeAMltoGxO62TFurxrQAFMNa/fEjIHNvungZp0+g==,
- }
- engines: { node: ">=14.0.0" }
-
- "@motionone/animation@10.17.0":
- resolution:
- {
- integrity: sha512-ANfIN9+iq1kGgsZxs+Nz96uiNcPLGTXwfNo2Xz/fcJXniPYpaz/Uyrfa+7I5BPLxCP82sh7quVDudf1GABqHbg==,
- }
-
- "@motionone/dom@10.17.0":
- resolution:
- {
- integrity: sha512-cMm33swRlCX/qOPHWGbIlCl0K9Uwi6X5RiL8Ma6OrlJ/TP7Q+Np5GE4xcZkFptysFjMTi4zcZzpnNQGQ5D6M0Q==,
- }
-
- "@motionone/easing@10.17.0":
- resolution:
- {
- integrity: sha512-Bxe2wSuLu/qxqW4rBFS5m9tMLOw+QBh8v5A7Z5k4Ul4sTj5jAOfZG5R0bn5ywmk+Fs92Ij1feZ5pmC4TeXA8Tg==,
- }
-
- "@motionone/generators@10.17.0":
- resolution:
- {
- integrity: sha512-T6Uo5bDHrZWhIfxG/2Aut7qyWQyJIWehk6OB4qNvr/jwA/SRmixwbd7SOrxZi1z5rH3LIeFFBKK1xHnSbGPZSQ==,
- }
-
- "@motionone/svelte@10.16.4":
- resolution:
- {
- integrity: sha512-zRVqk20lD1xqe+yEDZhMYgftsuHc25+9JSo+r0a0OWUJFocjSV9D/+UGhX4xgJsuwB9acPzXLr20w40VnY2PQA==,
- }
-
- "@motionone/types@10.17.0":
- resolution:
- {
- integrity: sha512-EgeeqOZVdRUTEHq95Z3t8Rsirc7chN5xFAPMYFobx8TPubkEfRSm5xihmMUkbaR2ErKJTUw3347QDPTHIW12IA==,
- }
-
- "@motionone/utils@10.17.0":
- resolution:
- {
- integrity: sha512-bGwrki4896apMWIj9yp5rAS2m0xyhxblg6gTB/leWDPt+pb410W8lYWsxyurX+DH+gO1zsQsfx2su/c1/LtTpg==,
- }
-
- "@motionone/vue@10.16.4":
- resolution:
- {
- integrity: sha512-z10PF9JV6SbjFq+/rYabM+8CVlMokgl8RFGvieSGNTmrkQanfHn+15XBrhG3BgUfvmTeSeyShfOHpG0i9zEdcg==,
- }
+ react: '>=16.8.0'
+ react-dom: '>=16.8.0'
+
+ '@metamask/abi-utils@1.2.0':
+ resolution: {integrity: sha512-Hf7fnBDM9ptCPDtq/wQffWbw859CdVGMwlpWUEsTH6gLXhXONGrRXHA2piyYPRuia8YYTdJvRC/zSK1/nyLvYg==}
+ engines: {node: '>=14.0.0'}
+
+ '@metamask/eth-sig-util@4.0.1':
+ resolution: {integrity: sha512-tghyZKLHZjcdlDqCA3gNZmLeR0XvOE9U1qoQO9ohyAZT6Pya+H9vkBPcsyXytmYLNgVoin7CKCmweo/R43V+tQ==}
+ engines: {node: '>=12.0.0'}
+
+ '@metamask/eth-sig-util@6.0.2':
+ resolution: {integrity: sha512-D6IIefM2vS+4GUGGtezdBbkwUYQC4bCosYx/JteUuF0zfe6lyxR4cruA8+2QHoUg7F7edNH1xymYpqYq1BeOkw==}
+ engines: {node: '>=14.0.0'}
+
+ '@metamask/utils@3.6.0':
+ resolution: {integrity: sha512-9cIRrfkWvHblSiNDVXsjivqa9Ak0RYo/1H6tqTqTbAx+oBK2Sva0lWDHxGchOqA7bySGUJKAWSNJvH6gdHZ0gQ==}
+ engines: {node: '>=14.0.0'}
+
+ '@metamask/utils@5.0.2':
+ resolution: {integrity: sha512-yfmE79bRQtnMzarnKfX7AEJBwFTxvTyw3nBQlu/5rmGXrjAeAMltoGxO62TFurxrQAFMNa/fEjIHNvungZp0+g==}
+ engines: {node: '>=14.0.0'}
+
+ '@motionone/animation@10.17.0':
+ resolution: {integrity: sha512-ANfIN9+iq1kGgsZxs+Nz96uiNcPLGTXwfNo2Xz/fcJXniPYpaz/Uyrfa+7I5BPLxCP82sh7quVDudf1GABqHbg==}
+
+ '@motionone/dom@10.17.0':
+ resolution: {integrity: sha512-cMm33swRlCX/qOPHWGbIlCl0K9Uwi6X5RiL8Ma6OrlJ/TP7Q+Np5GE4xcZkFptysFjMTi4zcZzpnNQGQ5D6M0Q==}
+
+ '@motionone/easing@10.17.0':
+ resolution: {integrity: sha512-Bxe2wSuLu/qxqW4rBFS5m9tMLOw+QBh8v5A7Z5k4Ul4sTj5jAOfZG5R0bn5ywmk+Fs92Ij1feZ5pmC4TeXA8Tg==}
+
+ '@motionone/generators@10.17.0':
+ resolution: {integrity: sha512-T6Uo5bDHrZWhIfxG/2Aut7qyWQyJIWehk6OB4qNvr/jwA/SRmixwbd7SOrxZi1z5rH3LIeFFBKK1xHnSbGPZSQ==}
+
+ '@motionone/svelte@10.16.4':
+ resolution: {integrity: sha512-zRVqk20lD1xqe+yEDZhMYgftsuHc25+9JSo+r0a0OWUJFocjSV9D/+UGhX4xgJsuwB9acPzXLr20w40VnY2PQA==}
+
+ '@motionone/types@10.17.0':
+ resolution: {integrity: sha512-EgeeqOZVdRUTEHq95Z3t8Rsirc7chN5xFAPMYFobx8TPubkEfRSm5xihmMUkbaR2ErKJTUw3347QDPTHIW12IA==}
+
+ '@motionone/utils@10.17.0':
+ resolution: {integrity: sha512-bGwrki4896apMWIj9yp5rAS2m0xyhxblg6gTB/leWDPt+pb410W8lYWsxyurX+DH+gO1zsQsfx2su/c1/LtTpg==}
+
+ '@motionone/vue@10.16.4':
+ resolution: {integrity: sha512-z10PF9JV6SbjFq+/rYabM+8CVlMokgl8RFGvieSGNTmrkQanfHn+15XBrhG3BgUfvmTeSeyShfOHpG0i9zEdcg==}
deprecated: Motion One for Vue is deprecated. Use Oku Motion instead https://oku-ui.com/motion
- "@noble/curves@1.1.0":
- resolution:
- {
- integrity: sha512-091oBExgENk/kGj3AZmtBDMpxQPDtxQABR2B9lb1JbVTs6ytdzZNwvhxQ4MWasRNEzlbEH8jCWFCwhF/Obj5AA==,
- }
-
- "@noble/curves@1.2.0":
- resolution:
- {
- integrity: sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==,
- }
-
- "@noble/curves@1.4.0":
- resolution:
- {
- integrity: sha512-p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==,
- }
-
- "@noble/hashes@1.2.0":
- resolution:
- {
- integrity: sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==,
- }
-
- "@noble/hashes@1.3.1":
- resolution:
- {
- integrity: sha512-EbqwksQwz9xDRGfDST86whPBgM65E0OH/pCgqW0GBVzO22bNE+NuIbeTb714+IfSjU3aRk47EUvXIb5bTsenKA==,
- }
- engines: { node: ">= 16" }
-
- "@noble/hashes@1.3.2":
- resolution:
- {
- integrity: sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==,
- }
- engines: { node: ">= 16" }
-
- "@noble/hashes@1.3.3":
- resolution:
- {
- integrity: sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA==,
- }
- engines: { node: ">= 16" }
-
- "@noble/hashes@1.4.0":
- resolution:
- {
- integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==,
- }
- engines: { node: ">= 16" }
-
- "@noble/secp256k1@1.7.1":
- resolution:
- {
- integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==,
- }
-
- "@nodelib/fs.scandir@2.1.5":
- resolution:
- {
- integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==,
- }
- engines: { node: ">= 8" }
-
- "@nodelib/fs.stat@2.0.5":
- resolution:
- {
- integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==,
- }
- engines: { node: ">= 8" }
-
- "@nodelib/fs.walk@1.2.8":
- resolution:
- {
- integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==,
- }
- engines: { node: ">= 8" }
-
- "@nomicfoundation/edr-darwin-arm64@0.3.8":
- resolution:
- {
- integrity: sha512-eB0leCexS8sQEmfyD72cdvLj9djkBzQGP4wSQw6SNf2I4Sw4Cnzb3d45caG2FqFFjbvfqL0t+badUUIceqQuMw==,
- }
- engines: { node: ">= 18" }
-
- "@nomicfoundation/edr-darwin-x64@0.3.8":
- resolution:
- {
- integrity: sha512-JksVCS1N5ClwVF14EvO25HCQ+Laljh/KRfHERMVAC9ZwPbTuAd/9BtKvToCBi29uCHWqsXMI4lxCApYQv2nznw==,
- }
- engines: { node: ">= 18" }
-
- "@nomicfoundation/edr-linux-arm64-gnu@0.3.8":
- resolution:
- {
- integrity: sha512-raCE+fOeNXhVBLUo87cgsHSGvYYRB6arih4eG6B9KGACWK5Veebtm9xtKeiD8YCsdUlUfat6F7ibpeNm91fpsA==,
- }
- engines: { node: ">= 18" }
-
- "@nomicfoundation/edr-linux-arm64-musl@0.3.8":
- resolution:
- {
- integrity: sha512-PwiDp4wBZWMCIy29eKkv8moTKRrpiSDlrc+GQMSZLhOAm8T33JKKXPwD/2EbplbhCygJDGXZdtEKl9x9PaH66A==,
- }
- engines: { node: ">= 18" }
-
- "@nomicfoundation/edr-linux-x64-gnu@0.3.8":
- resolution:
- {
- integrity: sha512-6AcvA/XKoipGap5jJmQ9Y6yT7Uf39D9lu2hBcDCXnXbMcXaDGw4mn1/L4R63D+9VGZyu1PqlcJixCUZlGGIWlg==,
- }
- engines: { node: ">= 18" }
-
- "@nomicfoundation/edr-linux-x64-musl@0.3.8":
- resolution:
- {
- integrity: sha512-cxb0sEmZjlwhYWO28sPsV64VDx31ekskhC1IsDXU1p9ntjHSJRmW4KEIqJ2O3QwJap/kLKfMS6TckvY10gjc6w==,
- }
- engines: { node: ">= 18" }
-
- "@nomicfoundation/edr-win32-x64-msvc@0.3.8":
- resolution:
- {
- integrity: sha512-yVuVPqRRNLZk7TbBMkKw7lzCvI8XO8fNTPTYxymGadjr9rEGRuNTU1yBXjfJ59I1jJU/X2TSkRk1OFX0P5tpZQ==,
- }
- engines: { node: ">= 18" }
-
- "@nomicfoundation/edr@0.3.8":
- resolution:
- {
- integrity: sha512-u2UJ5QpznSHVkZRh6ePWoeVb6kmPrrqh08gCnZ9FHlJV9CITqlrTQHJkacd+INH31jx88pTAJnxePE4XAiH5qg==,
- }
- engines: { node: ">= 18" }
-
- "@nomicfoundation/ethereumjs-common@4.0.4":
- resolution:
- {
- integrity: sha512-9Rgb658lcWsjiicr5GzNCjI1llow/7r0k50dLL95OJ+6iZJcVbi15r3Y0xh2cIO+zgX0WIHcbzIu6FeQf9KPrg==,
- }
-
- "@nomicfoundation/ethereumjs-rlp@5.0.4":
- resolution:
- {
- integrity: sha512-8H1S3s8F6QueOc/X92SdrA4RDenpiAEqMg5vJH99kcQaCy/a3Q6fgseo75mgWlbanGJXSlAPtnCeG9jvfTYXlw==,
- }
- engines: { node: ">=18" }
+ '@multiformats/dns@1.0.6':
+ resolution: {integrity: sha512-nt/5UqjMPtyvkG9BQYdJ4GfLK3nMqGpFZOzf4hAmIa0sJh2LlS9YKXZ4FgwBDsaHvzZqR/rUFIywIc7pkHNNuw==}
+
+ '@multiformats/mafmt@12.1.6':
+ resolution: {integrity: sha512-tlJRfL21X+AKn9b5i5VnaTD6bNttpSpcqwKVmDmSHLwxoz97fAHaepqFOk/l1fIu94nImIXneNbhsJx/RQNIww==}
+
+ '@multiformats/multiaddr@12.3.0':
+ resolution: {integrity: sha512-JQ8Gc/jgucqqvEaDTFN/AvxlYDHEE7lgEWLMYW7hKZkWggER+GvG/tVxUgUxIP8M0vFpvEHKKHE0lKzyMsgi8Q==}
+
+ '@noble/curves@1.1.0':
+ resolution: {integrity: sha512-091oBExgENk/kGj3AZmtBDMpxQPDtxQABR2B9lb1JbVTs6ytdzZNwvhxQ4MWasRNEzlbEH8jCWFCwhF/Obj5AA==}
+
+ '@noble/curves@1.2.0':
+ resolution: {integrity: sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==}
+
+ '@noble/curves@1.4.0':
+ resolution: {integrity: sha512-p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==}
+
+ '@noble/hashes@1.2.0':
+ resolution: {integrity: sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==}
+
+ '@noble/hashes@1.3.1':
+ resolution: {integrity: sha512-EbqwksQwz9xDRGfDST86whPBgM65E0OH/pCgqW0GBVzO22bNE+NuIbeTb714+IfSjU3aRk47EUvXIb5bTsenKA==}
+ engines: {node: '>= 16'}
+
+ '@noble/hashes@1.3.2':
+ resolution: {integrity: sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==}
+ engines: {node: '>= 16'}
+
+ '@noble/hashes@1.3.3':
+ resolution: {integrity: sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA==}
+ engines: {node: '>= 16'}
+
+ '@noble/hashes@1.4.0':
+ resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==}
+ engines: {node: '>= 16'}
+
+ '@noble/secp256k1@1.7.1':
+ resolution: {integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==}
+
+ '@nodelib/fs.scandir@2.1.5':
+ resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
+ engines: {node: '>= 8'}
+
+ '@nodelib/fs.stat@2.0.5':
+ resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
+ engines: {node: '>= 8'}
+
+ '@nodelib/fs.walk@1.2.8':
+ resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
+ engines: {node: '>= 8'}
+
+ '@nomicfoundation/edr-darwin-arm64@0.3.8':
+ resolution: {integrity: sha512-eB0leCexS8sQEmfyD72cdvLj9djkBzQGP4wSQw6SNf2I4Sw4Cnzb3d45caG2FqFFjbvfqL0t+badUUIceqQuMw==}
+ engines: {node: '>= 18'}
+
+ '@nomicfoundation/edr-darwin-x64@0.3.8':
+ resolution: {integrity: sha512-JksVCS1N5ClwVF14EvO25HCQ+Laljh/KRfHERMVAC9ZwPbTuAd/9BtKvToCBi29uCHWqsXMI4lxCApYQv2nznw==}
+ engines: {node: '>= 18'}
+
+ '@nomicfoundation/edr-linux-arm64-gnu@0.3.8':
+ resolution: {integrity: sha512-raCE+fOeNXhVBLUo87cgsHSGvYYRB6arih4eG6B9KGACWK5Veebtm9xtKeiD8YCsdUlUfat6F7ibpeNm91fpsA==}
+ engines: {node: '>= 18'}
+
+ '@nomicfoundation/edr-linux-arm64-musl@0.3.8':
+ resolution: {integrity: sha512-PwiDp4wBZWMCIy29eKkv8moTKRrpiSDlrc+GQMSZLhOAm8T33JKKXPwD/2EbplbhCygJDGXZdtEKl9x9PaH66A==}
+ engines: {node: '>= 18'}
+
+ '@nomicfoundation/edr-linux-x64-gnu@0.3.8':
+ resolution: {integrity: sha512-6AcvA/XKoipGap5jJmQ9Y6yT7Uf39D9lu2hBcDCXnXbMcXaDGw4mn1/L4R63D+9VGZyu1PqlcJixCUZlGGIWlg==}
+ engines: {node: '>= 18'}
+
+ '@nomicfoundation/edr-linux-x64-musl@0.3.8':
+ resolution: {integrity: sha512-cxb0sEmZjlwhYWO28sPsV64VDx31ekskhC1IsDXU1p9ntjHSJRmW4KEIqJ2O3QwJap/kLKfMS6TckvY10gjc6w==}
+ engines: {node: '>= 18'}
+
+ '@nomicfoundation/edr-win32-x64-msvc@0.3.8':
+ resolution: {integrity: sha512-yVuVPqRRNLZk7TbBMkKw7lzCvI8XO8fNTPTYxymGadjr9rEGRuNTU1yBXjfJ59I1jJU/X2TSkRk1OFX0P5tpZQ==}
+ engines: {node: '>= 18'}
+
+ '@nomicfoundation/edr@0.3.8':
+ resolution: {integrity: sha512-u2UJ5QpznSHVkZRh6ePWoeVb6kmPrrqh08gCnZ9FHlJV9CITqlrTQHJkacd+INH31jx88pTAJnxePE4XAiH5qg==}
+ engines: {node: '>= 18'}
+
+ '@nomicfoundation/ethereumjs-common@4.0.4':
+ resolution: {integrity: sha512-9Rgb658lcWsjiicr5GzNCjI1llow/7r0k50dLL95OJ+6iZJcVbi15r3Y0xh2cIO+zgX0WIHcbzIu6FeQf9KPrg==}
+
+ '@nomicfoundation/ethereumjs-rlp@5.0.4':
+ resolution: {integrity: sha512-8H1S3s8F6QueOc/X92SdrA4RDenpiAEqMg5vJH99kcQaCy/a3Q6fgseo75mgWlbanGJXSlAPtnCeG9jvfTYXlw==}
+ engines: {node: '>=18'}
hasBin: true
- "@nomicfoundation/ethereumjs-tx@5.0.4":
- resolution:
- {
- integrity: sha512-Xjv8wAKJGMrP1f0n2PeyfFCCojHd7iS3s/Ab7qzF1S64kxZ8Z22LCMynArYsVqiFx6rzYy548HNVEyI+AYN/kw==,
- }
- engines: { node: ">=18" }
+ '@nomicfoundation/ethereumjs-tx@5.0.4':
+ resolution: {integrity: sha512-Xjv8wAKJGMrP1f0n2PeyfFCCojHd7iS3s/Ab7qzF1S64kxZ8Z22LCMynArYsVqiFx6rzYy548HNVEyI+AYN/kw==}
+ engines: {node: '>=18'}
peerDependencies:
c-kzg: ^2.1.2
peerDependenciesMeta:
c-kzg:
optional: true
- "@nomicfoundation/ethereumjs-util@9.0.4":
- resolution:
- {
- integrity: sha512-sLOzjnSrlx9Bb9EFNtHzK/FJFsfg2re6bsGqinFinH1gCqVfz9YYlXiMWwDM4C/L4ywuHFCYwfKTVr/QHQcU0Q==,
- }
- engines: { node: ">=18" }
+ '@nomicfoundation/ethereumjs-util@9.0.4':
+ resolution: {integrity: sha512-sLOzjnSrlx9Bb9EFNtHzK/FJFsfg2re6bsGqinFinH1gCqVfz9YYlXiMWwDM4C/L4ywuHFCYwfKTVr/QHQcU0Q==}
+ engines: {node: '>=18'}
peerDependencies:
c-kzg: ^2.1.2
peerDependenciesMeta:
c-kzg:
optional: true
- "@nomicfoundation/solidity-analyzer-darwin-arm64@0.1.1":
- resolution:
- {
- integrity: sha512-KcTodaQw8ivDZyF+D76FokN/HdpgGpfjc/gFCImdLUyqB6eSWVaZPazMbeAjmfhx3R0zm/NYVzxwAokFKgrc0w==,
- }
- engines: { node: ">= 10" }
+ '@nomicfoundation/solidity-analyzer-darwin-arm64@0.1.1':
+ resolution: {integrity: sha512-KcTodaQw8ivDZyF+D76FokN/HdpgGpfjc/gFCImdLUyqB6eSWVaZPazMbeAjmfhx3R0zm/NYVzxwAokFKgrc0w==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- "@nomicfoundation/solidity-analyzer-darwin-x64@0.1.1":
- resolution:
- {
- integrity: sha512-XhQG4BaJE6cIbjAVtzGOGbK3sn1BO9W29uhk9J8y8fZF1DYz0Doj8QDMfpMu+A6TjPDs61lbsmeYodIDnfveSA==,
- }
- engines: { node: ">= 10" }
+ '@nomicfoundation/solidity-analyzer-darwin-x64@0.1.1':
+ resolution: {integrity: sha512-XhQG4BaJE6cIbjAVtzGOGbK3sn1BO9W29uhk9J8y8fZF1DYz0Doj8QDMfpMu+A6TjPDs61lbsmeYodIDnfveSA==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- "@nomicfoundation/solidity-analyzer-freebsd-x64@0.1.1":
- resolution:
- {
- integrity: sha512-GHF1VKRdHW3G8CndkwdaeLkVBi5A9u2jwtlS7SLhBc8b5U/GcoL39Q+1CSO3hYqePNP+eV5YI7Zgm0ea6kMHoA==,
- }
- engines: { node: ">= 10" }
+ '@nomicfoundation/solidity-analyzer-freebsd-x64@0.1.1':
+ resolution: {integrity: sha512-GHF1VKRdHW3G8CndkwdaeLkVBi5A9u2jwtlS7SLhBc8b5U/GcoL39Q+1CSO3hYqePNP+eV5YI7Zgm0ea6kMHoA==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [freebsd]
- "@nomicfoundation/solidity-analyzer-linux-arm64-gnu@0.1.1":
- resolution:
- {
- integrity: sha512-g4Cv2fO37ZsUENQ2vwPnZc2zRenHyAxHcyBjKcjaSmmkKrFr64yvzeNO8S3GBFCo90rfochLs99wFVGT/0owpg==,
- }
- engines: { node: ">= 10" }
+ '@nomicfoundation/solidity-analyzer-linux-arm64-gnu@0.1.1':
+ resolution: {integrity: sha512-g4Cv2fO37ZsUENQ2vwPnZc2zRenHyAxHcyBjKcjaSmmkKrFr64yvzeNO8S3GBFCo90rfochLs99wFVGT/0owpg==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- "@nomicfoundation/solidity-analyzer-linux-arm64-musl@0.1.1":
- resolution:
- {
- integrity: sha512-WJ3CE5Oek25OGE3WwzK7oaopY8xMw9Lhb0mlYuJl/maZVo+WtP36XoQTb7bW/i8aAdHW5Z+BqrHMux23pvxG3w==,
- }
- engines: { node: ">= 10" }
+ '@nomicfoundation/solidity-analyzer-linux-arm64-musl@0.1.1':
+ resolution: {integrity: sha512-WJ3CE5Oek25OGE3WwzK7oaopY8xMw9Lhb0mlYuJl/maZVo+WtP36XoQTb7bW/i8aAdHW5Z+BqrHMux23pvxG3w==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- "@nomicfoundation/solidity-analyzer-linux-x64-gnu@0.1.1":
- resolution:
- {
- integrity: sha512-5WN7leSr5fkUBBjE4f3wKENUy9HQStu7HmWqbtknfXkkil+eNWiBV275IOlpXku7v3uLsXTOKpnnGHJYI2qsdA==,
- }
- engines: { node: ">= 10" }
+ '@nomicfoundation/solidity-analyzer-linux-x64-gnu@0.1.1':
+ resolution: {integrity: sha512-5WN7leSr5fkUBBjE4f3wKENUy9HQStu7HmWqbtknfXkkil+eNWiBV275IOlpXku7v3uLsXTOKpnnGHJYI2qsdA==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- "@nomicfoundation/solidity-analyzer-linux-x64-musl@0.1.1":
- resolution:
- {
- integrity: sha512-KdYMkJOq0SYPQMmErv/63CwGwMm5XHenEna9X9aB8mQmhDBrYrlAOSsIPgFCUSL0hjxE3xHP65/EPXR/InD2+w==,
- }
- engines: { node: ">= 10" }
+ '@nomicfoundation/solidity-analyzer-linux-x64-musl@0.1.1':
+ resolution: {integrity: sha512-KdYMkJOq0SYPQMmErv/63CwGwMm5XHenEna9X9aB8mQmhDBrYrlAOSsIPgFCUSL0hjxE3xHP65/EPXR/InD2+w==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- "@nomicfoundation/solidity-analyzer-win32-arm64-msvc@0.1.1":
- resolution:
- {
- integrity: sha512-VFZASBfl4qiBYwW5xeY20exWhmv6ww9sWu/krWSesv3q5hA0o1JuzmPHR4LPN6SUZj5vcqci0O6JOL8BPw+APg==,
- }
- engines: { node: ">= 10" }
+ '@nomicfoundation/solidity-analyzer-win32-arm64-msvc@0.1.1':
+ resolution: {integrity: sha512-VFZASBfl4qiBYwW5xeY20exWhmv6ww9sWu/krWSesv3q5hA0o1JuzmPHR4LPN6SUZj5vcqci0O6JOL8BPw+APg==}
+ engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- "@nomicfoundation/solidity-analyzer-win32-ia32-msvc@0.1.1":
- resolution:
- {
- integrity: sha512-JnFkYuyCSA70j6Si6cS1A9Gh1aHTEb8kOTBApp/c7NRTFGNMH8eaInKlyuuiIbvYFhlXW4LicqyYuWNNq9hkpQ==,
- }
- engines: { node: ">= 10" }
+ '@nomicfoundation/solidity-analyzer-win32-ia32-msvc@0.1.1':
+ resolution: {integrity: sha512-JnFkYuyCSA70j6Si6cS1A9Gh1aHTEb8kOTBApp/c7NRTFGNMH8eaInKlyuuiIbvYFhlXW4LicqyYuWNNq9hkpQ==}
+ engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
- "@nomicfoundation/solidity-analyzer-win32-x64-msvc@0.1.1":
- resolution:
- {
- integrity: sha512-HrVJr6+WjIXGnw3Q9u6KQcbZCtk0caVWhCdFADySvRyUxJ8PnzlaP+MhwNE8oyT8OZ6ejHBRrrgjSqDCFXGirw==,
- }
- engines: { node: ">= 10" }
+ '@nomicfoundation/solidity-analyzer-win32-x64-msvc@0.1.1':
+ resolution: {integrity: sha512-HrVJr6+WjIXGnw3Q9u6KQcbZCtk0caVWhCdFADySvRyUxJ8PnzlaP+MhwNE8oyT8OZ6ejHBRrrgjSqDCFXGirw==}
+ engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- "@nomicfoundation/solidity-analyzer@0.1.1":
- resolution:
- {
- integrity: sha512-1LMtXj1puAxyFusBgUIy5pZk3073cNXYnXUpuNKFghHbIit/xZgbk0AokpUADbNm3gyD6bFWl3LRFh3dhVdREg==,
- }
- engines: { node: ">= 12" }
-
- "@octokit/auth-token@4.0.0":
- resolution:
- {
- integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==,
- }
- engines: { node: ">= 18" }
-
- "@octokit/core@5.1.0":
- resolution:
- {
- integrity: sha512-BDa2VAMLSh3otEiaMJ/3Y36GU4qf6GI+VivQ/P41NC6GHcdxpKlqV0ikSZ5gdQsmS3ojXeRx5vasgNTinF0Q4g==,
- }
- engines: { node: ">= 18" }
-
- "@octokit/endpoint@9.0.4":
- resolution:
- {
- integrity: sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==,
- }
- engines: { node: ">= 18" }
-
- "@octokit/graphql@7.0.2":
- resolution:
- {
- integrity: sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==,
- }
- engines: { node: ">= 18" }
-
- "@octokit/openapi-types@20.0.0":
- resolution:
- {
- integrity: sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==,
- }
-
- "@octokit/plugin-paginate-rest@9.2.1":
- resolution:
- {
- integrity: sha512-wfGhE/TAkXZRLjksFXuDZdmGnJQHvtU/joFQdweXUgzo1XwvBCD4o4+75NtFfjfLK5IwLf9vHTfSiU3sLRYpRw==,
- }
- engines: { node: ">= 18" }
+ '@nomicfoundation/solidity-analyzer@0.1.1':
+ resolution: {integrity: sha512-1LMtXj1puAxyFusBgUIy5pZk3073cNXYnXUpuNKFghHbIit/xZgbk0AokpUADbNm3gyD6bFWl3LRFh3dhVdREg==}
+ engines: {node: '>= 12'}
+
+ '@octokit/auth-token@4.0.0':
+ resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==}
+ engines: {node: '>= 18'}
+
+ '@octokit/core@5.1.0':
+ resolution: {integrity: sha512-BDa2VAMLSh3otEiaMJ/3Y36GU4qf6GI+VivQ/P41NC6GHcdxpKlqV0ikSZ5gdQsmS3ojXeRx5vasgNTinF0Q4g==}
+ engines: {node: '>= 18'}
+
+ '@octokit/endpoint@9.0.4':
+ resolution: {integrity: sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==}
+ engines: {node: '>= 18'}
+
+ '@octokit/graphql@7.0.2':
+ resolution: {integrity: sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==}
+ engines: {node: '>= 18'}
+
+ '@octokit/openapi-types@20.0.0':
+ resolution: {integrity: sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==}
+
+ '@octokit/plugin-paginate-rest@9.2.1':
+ resolution: {integrity: sha512-wfGhE/TAkXZRLjksFXuDZdmGnJQHvtU/joFQdweXUgzo1XwvBCD4o4+75NtFfjfLK5IwLf9vHTfSiU3sLRYpRw==}
+ engines: {node: '>= 18'}
peerDependencies:
- "@octokit/core": "5"
-
- "@octokit/plugin-request-log@4.0.1":
- resolution:
- {
- integrity: sha512-GihNqNpGHorUrO7Qa9JbAl0dbLnqJVrV8OXe2Zm5/Y4wFkZQDfTreBzVmiRfJVfE4mClXdihHnbpyyO9FSX4HA==,
- }
- engines: { node: ">= 18" }
+ '@octokit/core': '5'
+
+ '@octokit/plugin-request-log@4.0.1':
+ resolution: {integrity: sha512-GihNqNpGHorUrO7Qa9JbAl0dbLnqJVrV8OXe2Zm5/Y4wFkZQDfTreBzVmiRfJVfE4mClXdihHnbpyyO9FSX4HA==}
+ engines: {node: '>= 18'}
peerDependencies:
- "@octokit/core": "5"
-
- "@octokit/plugin-rest-endpoint-methods@10.4.0":
- resolution:
- {
- integrity: sha512-INw5rGXWlbv/p/VvQL63dhlXr38qYTHkQ5bANi9xofrF9OraqmjHsIGyenmjmul1JVRHpUlw5heFOj1UZLEolA==,
- }
- engines: { node: ">= 18" }
+ '@octokit/core': '5'
+
+ '@octokit/plugin-rest-endpoint-methods@10.4.0':
+ resolution: {integrity: sha512-INw5rGXWlbv/p/VvQL63dhlXr38qYTHkQ5bANi9xofrF9OraqmjHsIGyenmjmul1JVRHpUlw5heFOj1UZLEolA==}
+ engines: {node: '>= 18'}
peerDependencies:
- "@octokit/core": ">=5"
-
- "@octokit/request-error@5.0.1":
- resolution:
- {
- integrity: sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==,
- }
- engines: { node: ">= 18" }
-
- "@octokit/request@8.2.0":
- resolution:
- {
- integrity: sha512-exPif6x5uwLqv1N1irkLG1zZNJkOtj8bZxuVHd71U5Ftuxf2wGNvAJyNBcPbPC+EBzwYEbBDdSFb8EPcjpYxPQ==,
- }
- engines: { node: ">= 18" }
-
- "@octokit/rest@20.0.2":
- resolution:
- {
- integrity: sha512-Ux8NDgEraQ/DMAU1PlAohyfBBXDwhnX2j33Z1nJNziqAfHi70PuxkFYIcIt8aIAxtRE7KVuKp8lSR8pA0J5iOQ==,
- }
- engines: { node: ">= 18" }
-
- "@octokit/types@12.6.0":
- resolution:
- {
- integrity: sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==,
- }
-
- "@openzeppelin/contracts-upgradeable@4.9.6":
- resolution:
- {
- integrity: sha512-m4iHazOsOCv1DgM7eD7GupTJ+NFVujRZt1wzddDPSVGpWdKq1SKkla5htKG7+IS4d2XOCtzkUNwRZ7Vq5aEUMA==,
- }
-
- "@openzeppelin/merkle-tree@1.0.6":
- resolution:
- {
- integrity: sha512-cGWOb2WBWbJhqvupzxjnKAwGLxxAEYPg51sk76yZ5nVe5D03mw7Vx5yo8llaIEqYhP5O39M8QlrNWclgLfKVrA==,
- }
-
- "@parcel/watcher-android-arm64@2.4.1":
- resolution:
- {
- integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==,
- }
- engines: { node: ">= 10.0.0" }
+ '@octokit/core': '>=5'
+
+ '@octokit/request-error@5.0.1':
+ resolution: {integrity: sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==}
+ engines: {node: '>= 18'}
+
+ '@octokit/request@8.2.0':
+ resolution: {integrity: sha512-exPif6x5uwLqv1N1irkLG1zZNJkOtj8bZxuVHd71U5Ftuxf2wGNvAJyNBcPbPC+EBzwYEbBDdSFb8EPcjpYxPQ==}
+ engines: {node: '>= 18'}
+
+ '@octokit/rest@20.0.2':
+ resolution: {integrity: sha512-Ux8NDgEraQ/DMAU1PlAohyfBBXDwhnX2j33Z1nJNziqAfHi70PuxkFYIcIt8aIAxtRE7KVuKp8lSR8pA0J5iOQ==}
+ engines: {node: '>= 18'}
+
+ '@octokit/types@12.6.0':
+ resolution: {integrity: sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==}
+
+ '@openzeppelin/contracts-upgradeable@4.9.6':
+ resolution: {integrity: sha512-m4iHazOsOCv1DgM7eD7GupTJ+NFVujRZt1wzddDPSVGpWdKq1SKkla5htKG7+IS4d2XOCtzkUNwRZ7Vq5aEUMA==}
+
+ '@openzeppelin/merkle-tree@1.0.6':
+ resolution: {integrity: sha512-cGWOb2WBWbJhqvupzxjnKAwGLxxAEYPg51sk76yZ5nVe5D03mw7Vx5yo8llaIEqYhP5O39M8QlrNWclgLfKVrA==}
+
+ '@parcel/watcher-android-arm64@2.4.1':
+ resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==}
+ engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [android]
- "@parcel/watcher-darwin-arm64@2.4.1":
- resolution:
- {
- integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-darwin-arm64@2.4.1':
+ resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==}
+ engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [darwin]
- "@parcel/watcher-darwin-x64@2.4.1":
- resolution:
- {
- integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-darwin-x64@2.4.1':
+ resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==}
+ engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [darwin]
- "@parcel/watcher-freebsd-x64@2.4.1":
- resolution:
- {
- integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-freebsd-x64@2.4.1':
+ resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==}
+ engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [freebsd]
- "@parcel/watcher-linux-arm-glibc@2.4.1":
- resolution:
- {
- integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-linux-arm-glibc@2.4.1':
+ resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==}
+ engines: {node: '>= 10.0.0'}
cpu: [arm]
os: [linux]
- "@parcel/watcher-linux-arm64-glibc@2.4.1":
- resolution:
- {
- integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-linux-arm64-glibc@2.4.1':
+ resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==}
+ engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
- "@parcel/watcher-linux-arm64-musl@2.4.1":
- resolution:
- {
- integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-linux-arm64-musl@2.4.1':
+ resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==}
+ engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
- "@parcel/watcher-linux-x64-glibc@2.4.1":
- resolution:
- {
- integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-linux-x64-glibc@2.4.1':
+ resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==}
+ engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
- "@parcel/watcher-linux-x64-musl@2.4.1":
- resolution:
- {
- integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-linux-x64-musl@2.4.1':
+ resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==}
+ engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
- "@parcel/watcher-wasm@2.4.1":
- resolution:
- {
- integrity: sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-wasm@2.4.1':
+ resolution: {integrity: sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==}
+ engines: {node: '>= 10.0.0'}
bundledDependencies:
- napi-wasm
- "@parcel/watcher-win32-arm64@2.4.1":
- resolution:
- {
- integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-win32-arm64@2.4.1':
+ resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==}
+ engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [win32]
- "@parcel/watcher-win32-ia32@2.4.1":
- resolution:
- {
- integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-win32-ia32@2.4.1':
+ resolution: {integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==}
+ engines: {node: '>= 10.0.0'}
cpu: [ia32]
os: [win32]
- "@parcel/watcher-win32-x64@2.4.1":
- resolution:
- {
- integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==,
- }
- engines: { node: ">= 10.0.0" }
+ '@parcel/watcher-win32-x64@2.4.1':
+ resolution: {integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==}
+ engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [win32]
- "@parcel/watcher@2.4.1":
- resolution:
- {
- integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==,
- }
- engines: { node: ">= 10.0.0" }
-
- "@pnpm/config.env-replace@1.1.0":
- resolution:
- {
- integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==,
- }
- engines: { node: ">=12.22.0" }
-
- "@pnpm/network.ca-file@1.0.2":
- resolution:
- {
- integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==,
- }
- engines: { node: ">=12.22.0" }
-
- "@pnpm/npm-conf@2.2.2":
- resolution:
- {
- integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==,
- }
- engines: { node: ">=12" }
-
- "@popperjs/core@2.11.8":
- resolution:
- {
- integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==,
- }
-
- "@privy-io/api-base@1.2.2":
- resolution:
- {
- integrity: sha512-z9G7Kd/Mz/t8Frl6DTIzGHcu0ITF+eG4BHw+XzExuxmTH/iljDJWQwGoiosbu2k2T1p4OEOqZhaxhgRTA6CeaA==,
- }
- engines: { node: ">=18.0.0", npm: ">=8.0.0" }
-
- "@privy-io/js-sdk-core@0.26.0":
- resolution:
- {
- integrity: sha512-pEdyi7VpuxSn0YaN3SpmiZcQ5N/YAGcIfpHKJ1kOm29DAwuhOtqCVEWsb+GynVYJjt/Ec2KKgPTBkQjF+JsWbQ==,
- }
-
- "@privy-io/js-sdk-core@0.26.2":
- resolution:
- {
- integrity: sha512-a22YR0zDXFIXgreIcYUEvryYWoS42wBN7XlX6MHiyWRySMOvXVenAMazwZM7TePcOVeYLImpSxe3quQT0tICQA==,
- }
-
- "@privy-io/public-api@2.8.3":
- resolution:
- {
- integrity: sha512-CYmITfRNnAOpbUaRE9ehPPGHV3hDQuI4soOYJdmFra568QWGmhFRCu7Q+7vpezq/i3dr5eLk9ljZuYHw9ZwxWg==,
- }
- engines: { node: ">=18.0.0", npm: ">=8.0.0" }
-
- "@privy-io/public-api@2.8.5":
- resolution:
- {
- integrity: sha512-GEXm5i1MPeB4P1u5W2L9sWBk3CyTwQ63RBn42qj6/KyvdC+3tNXGXP+lW7bHoYcXAKv5RcCGrszjj7zfmopNWQ==,
- }
- engines: { node: ">=18.0.0", npm: ">=8.0.0" }
-
- "@privy-io/react-auth@1.77.0":
- resolution:
- {
- integrity: sha512-EbrRZhstEHAMJVH7ilpLoYJW1ZtiMPmEZUrjPX7+rEa0ecwyLpyCGfRG/9/Wqj5l74gRSyIJEtS2CQDCMDm4sg==,
- }
+ '@parcel/watcher@2.4.1':
+ resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==}
+ engines: {node: '>= 10.0.0'}
+
+ '@phosphor-icons/react@2.1.7':
+ resolution: {integrity: sha512-g2e2eVAn1XG2a+LI09QU3IORLhnFNAFkNbo2iwbX6NOKSLOwvEMmTa7CgOzEbgNWR47z8i8kwjdvYZ5fkGx1mQ==}
+ engines: {node: '>=10'}
peerDependencies:
- react: ^18
- react-dom: ^18
+ react: '>= 16.8'
+ react-dom: '>= 16.8'
+
+ '@pnpm/config.env-replace@1.1.0':
+ resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==}
+ engines: {node: '>=12.22.0'}
+
+ '@pnpm/network.ca-file@1.0.2':
+ resolution: {integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==}
+ engines: {node: '>=12.22.0'}
+
+ '@pnpm/npm-conf@2.2.2':
+ resolution: {integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==}
+ engines: {node: '>=12'}
+
+ '@privy-io/api-base@1.2.2':
+ resolution: {integrity: sha512-z9G7Kd/Mz/t8Frl6DTIzGHcu0ITF+eG4BHw+XzExuxmTH/iljDJWQwGoiosbu2k2T1p4OEOqZhaxhgRTA6CeaA==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+
+ '@privy-io/js-sdk-core@0.26.2':
+ resolution: {integrity: sha512-a22YR0zDXFIXgreIcYUEvryYWoS42wBN7XlX6MHiyWRySMOvXVenAMazwZM7TePcOVeYLImpSxe3quQT0tICQA==}
+
+ '@privy-io/public-api@2.8.5':
+ resolution: {integrity: sha512-GEXm5i1MPeB4P1u5W2L9sWBk3CyTwQ63RBn42qj6/KyvdC+3tNXGXP+lW7bHoYcXAKv5RcCGrszjj7zfmopNWQ==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
- "@privy-io/react-auth@1.80.0":
- resolution:
- {
- integrity: sha512-b7JqLFv/g/Xy+e2FND1Xx48lCpa/e5hEjlMMLaOuKkLN/Rw3H9DneNtf8ee6KhS6VAf+A2lvTNU98MYjgxpZqQ==,
- }
+ '@privy-io/react-auth@1.80.0':
+ resolution: {integrity: sha512-b7JqLFv/g/Xy+e2FND1Xx48lCpa/e5hEjlMMLaOuKkLN/Rw3H9DneNtf8ee6KhS6VAf+A2lvTNU98MYjgxpZqQ==}
peerDependencies:
react: ^18
react-dom: ^18
- "@remix-run/router@1.15.2":
- resolution:
- {
- integrity: sha512-+Rnav+CaoTE5QJc4Jcwh5toUpnVLKYbpU6Ys0zqbakqbaLQHeglLVHPfxOiQqdNmUy5C2lXz5dwC6tQNX2JW2Q==,
- }
- engines: { node: ">=14.0.0" }
-
- "@remix-run/router@1.19.1":
- resolution:
- {
- integrity: sha512-S45oynt/WH19bHbIXjtli6QmwNYvaz+vtnubvNpNDvUOoA/OWh6j1OikIP3G+v5GHdxyC6EXoChG3HgYGEUfcg==,
- }
- engines: { node: ">=14.0.0" }
-
- "@rollup/plugin-babel@5.3.1":
- resolution:
- {
- integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==,
- }
- engines: { node: ">= 10.0.0" }
+ '@privy-io/server-auth@1.11.1':
+ resolution: {integrity: sha512-ITVwC+Q+ioRX0TJfdETD9Z3OOZe4HP1cAffS5Ws9RQqNlfGXBxrn5BlQxOljw2dwOBSFyOD3/ek6npWN0WlJGA==}
+
+ '@remix-run/router@1.19.1':
+ resolution: {integrity: sha512-S45oynt/WH19bHbIXjtli6QmwNYvaz+vtnubvNpNDvUOoA/OWh6j1OikIP3G+v5GHdxyC6EXoChG3HgYGEUfcg==}
+ engines: {node: '>=14.0.0'}
+
+ '@remixicon/react@4.2.0':
+ resolution: {integrity: sha512-eGhKpZ88OU0qkcY9pJu6khBmItDV82nU130E6C68yc+FbljueHlUYy/4CrJsmf860RIDMay2Rpzl27OSJ81miw==}
+ peerDependencies:
+ react: '>=18.2.0'
+
+ '@rollup/plugin-babel@5.3.1':
+ resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
+ engines: {node: '>= 10.0.0'}
peerDependencies:
- "@babel/core": ^7.0.0
- "@types/babel__core": ^7.1.9
+ '@babel/core': ^7.0.0
+ '@types/babel__core': ^7.1.9
rollup: ^1.20.0||^2.0.0
peerDependenciesMeta:
- "@types/babel__core":
+ '@types/babel__core':
optional: true
- "@rollup/plugin-node-resolve@11.2.1":
- resolution:
- {
- integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==,
- }
- engines: { node: ">= 10.0.0" }
+ '@rollup/plugin-node-resolve@11.2.1':
+ resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==}
+ engines: {node: '>= 10.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0
- "@rollup/plugin-replace@2.4.2":
- resolution:
- {
- integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==,
- }
+ '@rollup/plugin-replace@2.4.2':
+ resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==}
peerDependencies:
rollup: ^1.20.0 || ^2.0.0
- "@rollup/pluginutils@3.1.0":
- resolution:
- {
- integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==,
- }
- engines: { node: ">= 8.0.0" }
+ '@rollup/pluginutils@3.1.0':
+ resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==}
+ engines: {node: '>= 8.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0
- "@rollup/pluginutils@5.0.5":
- resolution:
- {
- integrity: sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==,
- }
- engines: { node: ">=14.0.0" }
- peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
- peerDependenciesMeta:
- rollup:
- optional: true
+ '@rollup/pluginutils@4.2.1':
+ resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
+ engines: {node: '>= 8.0.0'}
- "@rollup/rollup-android-arm-eabi@4.20.0":
- resolution:
- {
- integrity: sha512-TSpWzflCc4VGAUJZlPpgAJE1+V60MePDQnBd7PPkpuEmOy8i87aL6tinFGKBFKuEDikYpig72QzdT3QPYIi+oA==,
- }
+ '@rollup/rollup-android-arm-eabi@4.20.0':
+ resolution: {integrity: sha512-TSpWzflCc4VGAUJZlPpgAJE1+V60MePDQnBd7PPkpuEmOy8i87aL6tinFGKBFKuEDikYpig72QzdT3QPYIi+oA==}
cpu: [arm]
os: [android]
- "@rollup/rollup-android-arm64@4.20.0":
- resolution:
- {
- integrity: sha512-u00Ro/nok7oGzVuh/FMYfNoGqxU5CPWz1mxV85S2w9LxHR8OoMQBuSk+3BKVIDYgkpeOET5yXkx90OYFc+ytpQ==,
- }
+ '@rollup/rollup-android-arm64@4.20.0':
+ resolution: {integrity: sha512-u00Ro/nok7oGzVuh/FMYfNoGqxU5CPWz1mxV85S2w9LxHR8OoMQBuSk+3BKVIDYgkpeOET5yXkx90OYFc+ytpQ==}
cpu: [arm64]
os: [android]
- "@rollup/rollup-darwin-arm64@4.20.0":
- resolution:
- {
- integrity: sha512-uFVfvzvsdGtlSLuL0ZlvPJvl6ZmrH4CBwLGEFPe7hUmf7htGAN+aXo43R/V6LATyxlKVC/m6UsLb7jbG+LG39Q==,
- }
+ '@rollup/rollup-darwin-arm64@4.20.0':
+ resolution: {integrity: sha512-uFVfvzvsdGtlSLuL0ZlvPJvl6ZmrH4CBwLGEFPe7hUmf7htGAN+aXo43R/V6LATyxlKVC/m6UsLb7jbG+LG39Q==}
cpu: [arm64]
os: [darwin]
- "@rollup/rollup-darwin-x64@4.20.0":
- resolution:
- {
- integrity: sha512-xbrMDdlev53vNXexEa6l0LffojxhqDTBeL+VUxuuIXys4x6xyvbKq5XqTXBCEUA8ty8iEJblHvFaWRJTk/icAQ==,
- }
+ '@rollup/rollup-darwin-x64@4.20.0':
+ resolution: {integrity: sha512-xbrMDdlev53vNXexEa6l0LffojxhqDTBeL+VUxuuIXys4x6xyvbKq5XqTXBCEUA8ty8iEJblHvFaWRJTk/icAQ==}
cpu: [x64]
os: [darwin]
- "@rollup/rollup-linux-arm-gnueabihf@4.20.0":
- resolution:
- {
- integrity: sha512-jMYvxZwGmoHFBTbr12Xc6wOdc2xA5tF5F2q6t7Rcfab68TT0n+r7dgawD4qhPEvasDsVpQi+MgDzj2faOLsZjA==,
- }
+ '@rollup/rollup-linux-arm-gnueabihf@4.20.0':
+ resolution: {integrity: sha512-jMYvxZwGmoHFBTbr12Xc6wOdc2xA5tF5F2q6t7Rcfab68TT0n+r7dgawD4qhPEvasDsVpQi+MgDzj2faOLsZjA==}
cpu: [arm]
os: [linux]
- "@rollup/rollup-linux-arm-musleabihf@4.20.0":
- resolution:
- {
- integrity: sha512-1asSTl4HKuIHIB1GcdFHNNZhxAYEdqML/MW4QmPS4G0ivbEcBr1JKlFLKsIRqjSwOBkdItn3/ZDlyvZ/N6KPlw==,
- }
+ '@rollup/rollup-linux-arm-musleabihf@4.20.0':
+ resolution: {integrity: sha512-1asSTl4HKuIHIB1GcdFHNNZhxAYEdqML/MW4QmPS4G0ivbEcBr1JKlFLKsIRqjSwOBkdItn3/ZDlyvZ/N6KPlw==}
cpu: [arm]
os: [linux]
- "@rollup/rollup-linux-arm64-gnu@4.20.0":
- resolution:
- {
- integrity: sha512-COBb8Bkx56KldOYJfMf6wKeYJrtJ9vEgBRAOkfw6Ens0tnmzPqvlpjZiLgkhg6cA3DGzCmLmmd319pmHvKWWlQ==,
- }
+ '@rollup/rollup-linux-arm64-gnu@4.20.0':
+ resolution: {integrity: sha512-COBb8Bkx56KldOYJfMf6wKeYJrtJ9vEgBRAOkfw6Ens0tnmzPqvlpjZiLgkhg6cA3DGzCmLmmd319pmHvKWWlQ==}
cpu: [arm64]
os: [linux]
- "@rollup/rollup-linux-arm64-musl@4.20.0":
- resolution:
- {
- integrity: sha512-+it+mBSyMslVQa8wSPvBx53fYuZK/oLTu5RJoXogjk6x7Q7sz1GNRsXWjn6SwyJm8E/oMjNVwPhmNdIjwP135Q==,
- }
+ '@rollup/rollup-linux-arm64-musl@4.20.0':
+ resolution: {integrity: sha512-+it+mBSyMslVQa8wSPvBx53fYuZK/oLTu5RJoXogjk6x7Q7sz1GNRsXWjn6SwyJm8E/oMjNVwPhmNdIjwP135Q==}
cpu: [arm64]
os: [linux]
- "@rollup/rollup-linux-powerpc64le-gnu@4.20.0":
- resolution:
- {
- integrity: sha512-yAMvqhPfGKsAxHN8I4+jE0CpLWD8cv4z7CK7BMmhjDuz606Q2tFKkWRY8bHR9JQXYcoLfopo5TTqzxgPUjUMfw==,
- }
+ '@rollup/rollup-linux-powerpc64le-gnu@4.20.0':
+ resolution: {integrity: sha512-yAMvqhPfGKsAxHN8I4+jE0CpLWD8cv4z7CK7BMmhjDuz606Q2tFKkWRY8bHR9JQXYcoLfopo5TTqzxgPUjUMfw==}
cpu: [ppc64]
os: [linux]
- "@rollup/rollup-linux-riscv64-gnu@4.20.0":
- resolution:
- {
- integrity: sha512-qmuxFpfmi/2SUkAw95TtNq/w/I7Gpjurx609OOOV7U4vhvUhBcftcmXwl3rqAek+ADBwSjIC4IVNLiszoj3dPA==,
- }
+ '@rollup/rollup-linux-riscv64-gnu@4.20.0':
+ resolution: {integrity: sha512-qmuxFpfmi/2SUkAw95TtNq/w/I7Gpjurx609OOOV7U4vhvUhBcftcmXwl3rqAek+ADBwSjIC4IVNLiszoj3dPA==}
cpu: [riscv64]
os: [linux]
- "@rollup/rollup-linux-s390x-gnu@4.20.0":
- resolution:
- {
- integrity: sha512-I0BtGXddHSHjV1mqTNkgUZLnS3WtsqebAXv11D5BZE/gfw5KoyXSAXVqyJximQXNvNzUo4GKlCK/dIwXlz+jlg==,
- }
+ '@rollup/rollup-linux-s390x-gnu@4.20.0':
+ resolution: {integrity: sha512-I0BtGXddHSHjV1mqTNkgUZLnS3WtsqebAXv11D5BZE/gfw5KoyXSAXVqyJximQXNvNzUo4GKlCK/dIwXlz+jlg==}
cpu: [s390x]
os: [linux]
- "@rollup/rollup-linux-x64-gnu@4.20.0":
- resolution:
- {
- integrity: sha512-y+eoL2I3iphUg9tN9GB6ku1FA8kOfmF4oUEWhztDJ4KXJy1agk/9+pejOuZkNFhRwHAOxMsBPLbXPd6mJiCwew==,
- }
+ '@rollup/rollup-linux-x64-gnu@4.20.0':
+ resolution: {integrity: sha512-y+eoL2I3iphUg9tN9GB6ku1FA8kOfmF4oUEWhztDJ4KXJy1agk/9+pejOuZkNFhRwHAOxMsBPLbXPd6mJiCwew==}
cpu: [x64]
os: [linux]
- "@rollup/rollup-linux-x64-musl@4.20.0":
- resolution:
- {
- integrity: sha512-hM3nhW40kBNYUkZb/r9k2FKK+/MnKglX7UYd4ZUy5DJs8/sMsIbqWK2piZtVGE3kcXVNj3B2IrUYROJMMCikNg==,
- }
+ '@rollup/rollup-linux-x64-musl@4.20.0':
+ resolution: {integrity: sha512-hM3nhW40kBNYUkZb/r9k2FKK+/MnKglX7UYd4ZUy5DJs8/sMsIbqWK2piZtVGE3kcXVNj3B2IrUYROJMMCikNg==}
cpu: [x64]
os: [linux]
- "@rollup/rollup-win32-arm64-msvc@4.20.0":
- resolution:
- {
- integrity: sha512-psegMvP+Ik/Bg7QRJbv8w8PAytPA7Uo8fpFjXyCRHWm6Nt42L+JtoqH8eDQ5hRP7/XW2UiIriy1Z46jf0Oa1kA==,
- }
+ '@rollup/rollup-win32-arm64-msvc@4.20.0':
+ resolution: {integrity: sha512-psegMvP+Ik/Bg7QRJbv8w8PAytPA7Uo8fpFjXyCRHWm6Nt42L+JtoqH8eDQ5hRP7/XW2UiIriy1Z46jf0Oa1kA==}
cpu: [arm64]
os: [win32]
- "@rollup/rollup-win32-ia32-msvc@4.20.0":
- resolution:
- {
- integrity: sha512-GabekH3w4lgAJpVxkk7hUzUf2hICSQO0a/BLFA11/RMxQT92MabKAqyubzDZmMOC/hcJNlc+rrypzNzYl4Dx7A==,
- }
+ '@rollup/rollup-win32-ia32-msvc@4.20.0':
+ resolution: {integrity: sha512-GabekH3w4lgAJpVxkk7hUzUf2hICSQO0a/BLFA11/RMxQT92MabKAqyubzDZmMOC/hcJNlc+rrypzNzYl4Dx7A==}
cpu: [ia32]
os: [win32]
- "@rollup/rollup-win32-x64-msvc@4.20.0":
- resolution:
- {
- integrity: sha512-aJ1EJSuTdGnM6qbVC4B5DSmozPTqIag9fSzXRNNo+humQLG89XpPgdt16Ia56ORD7s+H8Pmyx44uczDQ0yDzpg==,
- }
+ '@rollup/rollup-win32-x64-msvc@4.20.0':
+ resolution: {integrity: sha512-aJ1EJSuTdGnM6qbVC4B5DSmozPTqIag9fSzXRNNo+humQLG89XpPgdt16Ia56ORD7s+H8Pmyx44uczDQ0yDzpg==}
cpu: [x64]
os: [win32]
- "@scure/base@1.1.7":
- resolution:
- {
- integrity: sha512-PPNYBslrLNNUQ/Yad37MHYsNQtK67EhWb6WtSvNLLPo7SdVZgkUjD6Dg+5On7zNwmskf8OX7I7Nx5oN+MIWE0g==,
- }
-
- "@scure/bip32@1.1.5":
- resolution:
- {
- integrity: sha512-XyNh1rB0SkEqd3tXcXMi+Xe1fvg+kUIcoRIEujP1Jgv7DqW2r9lg3Ah0NkFaCs9sTkQAQA8kw7xiRXzENi9Rtw==,
- }
-
- "@scure/bip32@1.3.1":
- resolution:
- {
- integrity: sha512-osvveYtyzdEVbt3OfwwXFr4P2iVBL5u1Q3q4ONBfDY/UpOuXmOlbgwc1xECEboY8wIays8Yt6onaWMUdUbfl0A==,
- }
-
- "@scure/bip32@1.4.0":
- resolution:
- {
- integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==,
- }
-
- "@scure/bip39@1.1.1":
- resolution:
- {
- integrity: sha512-t+wDck2rVkh65Hmv280fYdVdY25J9YeEUIgn2LG1WM6gxFkGzcksoDiUkWVpVp3Oex9xGC68JU2dSbUfwZ2jPg==,
- }
-
- "@scure/bip39@1.2.1":
- resolution:
- {
- integrity: sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg==,
- }
-
- "@scure/bip39@1.3.0":
- resolution:
- {
- integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==,
- }
-
- "@sentry/core@5.30.0":
- resolution:
- {
- integrity: sha512-TmfrII8w1PQZSZgPpUESqjB+jC6MvZJZdLtE/0hZ+SrnKhW3x5WlYLvTXZpcWePYBku7rl2wn1RZu6uT0qCTeg==,
- }
- engines: { node: ">=6" }
-
- "@sentry/hub@5.30.0":
- resolution:
- {
- integrity: sha512-2tYrGnzb1gKz2EkMDQcfLrDTvmGcQPuWxLnJKXJvYTQDGLlEvi2tWz1VIHjunmOvJrB5aIQLhm+dcMRwFZDCqQ==,
- }
- engines: { node: ">=6" }
-
- "@sentry/minimal@5.30.0":
- resolution:
- {
- integrity: sha512-BwWb/owZKtkDX+Sc4zCSTNcvZUq7YcH3uAVlmh/gtR9rmUvbzAA3ewLuB3myi4wWRAMEtny6+J/FN/x+2wn9Xw==,
- }
- engines: { node: ">=6" }
-
- "@sentry/node@5.30.0":
- resolution:
- {
- integrity: sha512-Br5oyVBF0fZo6ZS9bxbJZG4ApAjRqAnqFFurMVJJdunNb80brh7a5Qva2kjhm+U6r9NJAB5OmDyPkA1Qnt+QVg==,
- }
- engines: { node: ">=6" }
-
- "@sentry/tracing@5.30.0":
- resolution:
- {
- integrity: sha512-dUFowCr0AIMwiLD7Fs314Mdzcug+gBVo/+NCMyDw8tFxJkwWAKl7Qa2OZxLQ0ZHjakcj1hNKfCQJ9rhyfOl4Aw==,
- }
- engines: { node: ">=6" }
-
- "@sentry/types@5.30.0":
- resolution:
- {
- integrity: sha512-R8xOqlSTZ+htqrfteCWU5Nk0CDN5ApUTvrlvBuiH1DyP6czDZ4ktbZB0hAgBlVcK0U+qpD3ag3Tqqpa5Q67rPw==,
- }
- engines: { node: ">=6" }
-
- "@sentry/utils@5.30.0":
- resolution:
- {
- integrity: sha512-zaYmoH0NWWtvnJjC9/CBseXMtKHm/tm40sz3YfJRxeQjyzRqNQPgivpd9R/oDJCYj999mzdW382p/qi2ypjLww==,
- }
- engines: { node: ">=6" }
-
- "@simplewebauthn/browser@9.0.1":
- resolution:
- {
- integrity: sha512-wD2WpbkaEP4170s13/HUxPcAV5y4ZXaKo1TfNklS5zDefPinIgXOpgz1kpEvobAsaLPa2KeH7AKKX/od1mrBJw==,
- }
-
- "@simplewebauthn/types@9.0.1":
- resolution:
- {
- integrity: sha512-tGSRP1QvsAvsJmnOlRQyw/mvK9gnPtjEc5fg2+m8n+QUa+D7rvrKkOYyfpy42GTs90X3RDOnqJgfHt+qO67/+w==,
- }
-
- "@sindresorhus/is@5.6.0":
- resolution:
- {
- integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==,
- }
- engines: { node: ">=14.16" }
-
- "@solidity-parser/parser@0.18.0":
- resolution:
- {
- integrity: sha512-yfORGUIPgLck41qyN7nbwJRAx17/jAIXCTanHOJZhB6PJ1iAk/84b/xlsVKFSyNyLXIj0dhppoE0+CRws7wlzA==,
- }
-
- "@stablelib/aead@1.0.1":
- resolution:
- {
- integrity: sha512-q39ik6sxGHewqtO0nP4BuSe3db5G1fEJE8ukvngS2gLkBXyy6E7pLubhbYgnkDFv6V8cWaxcE4Xn0t6LWcJkyg==,
- }
-
- "@stablelib/binary@1.0.1":
- resolution:
- {
- integrity: sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q==,
- }
-
- "@stablelib/bytes@1.0.1":
- resolution:
- {
- integrity: sha512-Kre4Y4kdwuqL8BR2E9hV/R5sOrUj6NanZaZis0V6lX5yzqC3hBuVSDXUIBqQv/sCpmuWRiHLwqiT1pqqjuBXoQ==,
- }
-
- "@stablelib/chacha20poly1305@1.0.1":
- resolution:
- {
- integrity: sha512-MmViqnqHd1ymwjOQfghRKw2R/jMIGT3wySN7cthjXCBdO+qErNPUBnRzqNpnvIwg7JBCg3LdeCZZO4de/yEhVA==,
- }
-
- "@stablelib/chacha@1.0.1":
- resolution:
- {
- integrity: sha512-Pmlrswzr0pBzDofdFuVe1q7KdsHKhhU24e8gkEwnTGOmlC7PADzLVxGdn2PoNVBBabdg0l/IfLKg6sHAbTQugg==,
- }
-
- "@stablelib/constant-time@1.0.1":
- resolution:
- {
- integrity: sha512-tNOs3uD0vSJcK6z1fvef4Y+buN7DXhzHDPqRLSXUel1UfqMB1PWNsnnAezrKfEwTLpN0cGH2p9NNjs6IqeD0eg==,
- }
-
- "@stablelib/ed25519@1.0.3":
- resolution:
- {
- integrity: sha512-puIMWaX9QlRsbhxfDc5i+mNPMY+0TmQEskunY1rZEBPi1acBCVQAhnsk/1Hk50DGPtVsZtAWQg4NHGlVaO9Hqg==,
- }
-
- "@stablelib/hash@1.0.1":
- resolution:
- {
- integrity: sha512-eTPJc/stDkdtOcrNMZ6mcMK1e6yBbqRBaNW55XA1jU8w/7QdnCF0CmMmOD1m7VSkBR44PWrMHU2l6r8YEQHMgg==,
- }
-
- "@stablelib/hkdf@1.0.1":
- resolution:
- {
- integrity: sha512-SBEHYE16ZXlHuaW5RcGk533YlBj4grMeg5TooN80W3NpcHRtLZLLXvKyX0qcRFxf+BGDobJLnwkvgEwHIDBR6g==,
- }
-
- "@stablelib/hmac@1.0.1":
- resolution:
- {
- integrity: sha512-V2APD9NSnhVpV/QMYgCVMIYKiYG6LSqw1S65wxVoirhU/51ACio6D4yDVSwMzuTJXWZoVHbDdINioBwKy5kVmA==,
- }
-
- "@stablelib/int@1.0.1":
- resolution:
- {
- integrity: sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w==,
- }
-
- "@stablelib/keyagreement@1.0.1":
- resolution:
- {
- integrity: sha512-VKL6xBwgJnI6l1jKrBAfn265cspaWBPAPEc62VBQrWHLqVgNRE09gQ/AnOEyKUWrrqfD+xSQ3u42gJjLDdMDQg==,
- }
-
- "@stablelib/poly1305@1.0.1":
- resolution:
- {
- integrity: sha512-1HlG3oTSuQDOhSnLwJRKeTRSAdFNVB/1djy2ZbS35rBSJ/PFqx9cf9qatinWghC2UbfOYD8AcrtbUQl8WoxabA==,
- }
-
- "@stablelib/random@1.0.2":
- resolution:
- {
- integrity: sha512-rIsE83Xpb7clHPVRlBj8qNe5L8ISQOzjghYQm/dZ7VaM2KHYwMW5adjQjrzTZCchFnNCNhkwtnOBa9HTMJCI8w==,
- }
-
- "@stablelib/sha256@1.0.1":
- resolution:
- {
- integrity: sha512-GIIH3e6KH+91FqGV42Kcj71Uefd/QEe7Dy42sBTeqppXV95ggCcxLTk39bEr+lZfJmp+ghsR07J++ORkRELsBQ==,
- }
-
- "@stablelib/sha512@1.0.1":
- resolution:
- {
- integrity: sha512-13gl/iawHV9zvDKciLo1fQ8Bgn2Pvf7OV6amaRVKiq3pjQ3UmEpXxWiAfV8tYjUpeZroBxtyrwtdooQT/i3hzw==,
- }
-
- "@stablelib/wipe@1.0.1":
- resolution:
- {
- integrity: sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg==,
- }
-
- "@stablelib/x25519@1.0.3":
- resolution:
- {
- integrity: sha512-KnTbKmUhPhHavzobclVJQG5kuivH+qDLpe84iRqX3CLrKp881cF160JvXJ+hjn1aMyCwYOKeIZefIH/P5cJoRw==,
- }
-
- "@surma/rollup-plugin-off-main-thread@2.2.3":
- resolution:
- {
- integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==,
- }
-
- "@svgr/babel-plugin-add-jsx-attribute@8.0.0":
- resolution:
- {
- integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==,
- }
- engines: { node: ">=14" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@svgr/babel-plugin-remove-jsx-attribute@8.0.0":
- resolution:
- {
- integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==,
- }
- engines: { node: ">=14" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0":
- resolution:
- {
- integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==,
- }
- engines: { node: ">=14" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0":
- resolution:
- {
- integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==,
- }
- engines: { node: ">=14" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@svgr/babel-plugin-svg-dynamic-title@8.0.0":
- resolution:
- {
- integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==,
- }
- engines: { node: ">=14" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@svgr/babel-plugin-svg-em-dimensions@8.0.0":
- resolution:
- {
- integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==,
- }
- engines: { node: ">=14" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@svgr/babel-plugin-transform-react-native-svg@8.1.0":
- resolution:
- {
- integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==,
- }
- engines: { node: ">=14" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@svgr/babel-plugin-transform-svg-component@8.0.0":
- resolution:
- {
- integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==,
- }
- engines: { node: ">=12" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@svgr/babel-preset@8.1.0":
- resolution:
- {
- integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==,
- }
- engines: { node: ">=14" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@svgr/core@8.1.0":
- resolution:
- {
- integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==,
- }
- engines: { node: ">=14" }
-
- "@svgr/hast-util-to-babel-ast@8.0.0":
- resolution:
- {
- integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==,
- }
- engines: { node: ">=14" }
-
- "@svgr/plugin-jsx@8.1.0":
- resolution:
- {
- integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==,
- }
- engines: { node: ">=14" }
- peerDependencies:
- "@svgr/core": "*"
-
- "@swc/core-darwin-arm64@1.7.11":
- resolution:
- {
- integrity: sha512-HRQv4qIeMBPThZ6Y/4yYW52rGsS6yrpusvuxLGyoFo45Y0y12/V2yXkOIA/0HIQyrqoUAxn1k4zQXpPaPNCmnw==,
- }
- engines: { node: ">=10" }
+ '@scure/base@1.1.7':
+ resolution: {integrity: sha512-PPNYBslrLNNUQ/Yad37MHYsNQtK67EhWb6WtSvNLLPo7SdVZgkUjD6Dg+5On7zNwmskf8OX7I7Nx5oN+MIWE0g==}
+
+ '@scure/bip32@1.1.5':
+ resolution: {integrity: sha512-XyNh1rB0SkEqd3tXcXMi+Xe1fvg+kUIcoRIEujP1Jgv7DqW2r9lg3Ah0NkFaCs9sTkQAQA8kw7xiRXzENi9Rtw==}
+
+ '@scure/bip32@1.3.1':
+ resolution: {integrity: sha512-osvveYtyzdEVbt3OfwwXFr4P2iVBL5u1Q3q4ONBfDY/UpOuXmOlbgwc1xECEboY8wIays8Yt6onaWMUdUbfl0A==}
+
+ '@scure/bip32@1.4.0':
+ resolution: {integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==}
+
+ '@scure/bip39@1.1.1':
+ resolution: {integrity: sha512-t+wDck2rVkh65Hmv280fYdVdY25J9YeEUIgn2LG1WM6gxFkGzcksoDiUkWVpVp3Oex9xGC68JU2dSbUfwZ2jPg==}
+
+ '@scure/bip39@1.2.1':
+ resolution: {integrity: sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg==}
+
+ '@scure/bip39@1.3.0':
+ resolution: {integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==}
+
+ '@sentry/core@5.30.0':
+ resolution: {integrity: sha512-TmfrII8w1PQZSZgPpUESqjB+jC6MvZJZdLtE/0hZ+SrnKhW3x5WlYLvTXZpcWePYBku7rl2wn1RZu6uT0qCTeg==}
+ engines: {node: '>=6'}
+
+ '@sentry/hub@5.30.0':
+ resolution: {integrity: sha512-2tYrGnzb1gKz2EkMDQcfLrDTvmGcQPuWxLnJKXJvYTQDGLlEvi2tWz1VIHjunmOvJrB5aIQLhm+dcMRwFZDCqQ==}
+ engines: {node: '>=6'}
+
+ '@sentry/minimal@5.30.0':
+ resolution: {integrity: sha512-BwWb/owZKtkDX+Sc4zCSTNcvZUq7YcH3uAVlmh/gtR9rmUvbzAA3ewLuB3myi4wWRAMEtny6+J/FN/x+2wn9Xw==}
+ engines: {node: '>=6'}
+
+ '@sentry/node@5.30.0':
+ resolution: {integrity: sha512-Br5oyVBF0fZo6ZS9bxbJZG4ApAjRqAnqFFurMVJJdunNb80brh7a5Qva2kjhm+U6r9NJAB5OmDyPkA1Qnt+QVg==}
+ engines: {node: '>=6'}
+
+ '@sentry/tracing@5.30.0':
+ resolution: {integrity: sha512-dUFowCr0AIMwiLD7Fs314Mdzcug+gBVo/+NCMyDw8tFxJkwWAKl7Qa2OZxLQ0ZHjakcj1hNKfCQJ9rhyfOl4Aw==}
+ engines: {node: '>=6'}
+
+ '@sentry/types@5.30.0':
+ resolution: {integrity: sha512-R8xOqlSTZ+htqrfteCWU5Nk0CDN5ApUTvrlvBuiH1DyP6czDZ4ktbZB0hAgBlVcK0U+qpD3ag3Tqqpa5Q67rPw==}
+ engines: {node: '>=6'}
+
+ '@sentry/utils@5.30.0':
+ resolution: {integrity: sha512-zaYmoH0NWWtvnJjC9/CBseXMtKHm/tm40sz3YfJRxeQjyzRqNQPgivpd9R/oDJCYj999mzdW382p/qi2ypjLww==}
+ engines: {node: '>=6'}
+
+ '@simplewebauthn/browser@9.0.1':
+ resolution: {integrity: sha512-wD2WpbkaEP4170s13/HUxPcAV5y4ZXaKo1TfNklS5zDefPinIgXOpgz1kpEvobAsaLPa2KeH7AKKX/od1mrBJw==}
+
+ '@simplewebauthn/types@9.0.1':
+ resolution: {integrity: sha512-tGSRP1QvsAvsJmnOlRQyw/mvK9gnPtjEc5fg2+m8n+QUa+D7rvrKkOYyfpy42GTs90X3RDOnqJgfHt+qO67/+w==}
+
+ '@sindresorhus/is@5.6.0':
+ resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==}
+ engines: {node: '>=14.16'}
+
+ '@solidity-parser/parser@0.18.0':
+ resolution: {integrity: sha512-yfORGUIPgLck41qyN7nbwJRAx17/jAIXCTanHOJZhB6PJ1iAk/84b/xlsVKFSyNyLXIj0dhppoE0+CRws7wlzA==}
+
+ '@stablelib/aead@1.0.1':
+ resolution: {integrity: sha512-q39ik6sxGHewqtO0nP4BuSe3db5G1fEJE8ukvngS2gLkBXyy6E7pLubhbYgnkDFv6V8cWaxcE4Xn0t6LWcJkyg==}
+
+ '@stablelib/base64@1.0.1':
+ resolution: {integrity: sha512-1bnPQqSxSuc3Ii6MhBysoWCg58j97aUjuCSZrGSmDxNqtytIi0k8utUenAwTZN4V5mXXYGsVUI9zeBqy+jBOSQ==}
+
+ '@stablelib/binary@1.0.1':
+ resolution: {integrity: sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q==}
+
+ '@stablelib/bytes@1.0.1':
+ resolution: {integrity: sha512-Kre4Y4kdwuqL8BR2E9hV/R5sOrUj6NanZaZis0V6lX5yzqC3hBuVSDXUIBqQv/sCpmuWRiHLwqiT1pqqjuBXoQ==}
+
+ '@stablelib/chacha20poly1305@1.0.1':
+ resolution: {integrity: sha512-MmViqnqHd1ymwjOQfghRKw2R/jMIGT3wySN7cthjXCBdO+qErNPUBnRzqNpnvIwg7JBCg3LdeCZZO4de/yEhVA==}
+
+ '@stablelib/chacha@1.0.1':
+ resolution: {integrity: sha512-Pmlrswzr0pBzDofdFuVe1q7KdsHKhhU24e8gkEwnTGOmlC7PADzLVxGdn2PoNVBBabdg0l/IfLKg6sHAbTQugg==}
+
+ '@stablelib/constant-time@1.0.1':
+ resolution: {integrity: sha512-tNOs3uD0vSJcK6z1fvef4Y+buN7DXhzHDPqRLSXUel1UfqMB1PWNsnnAezrKfEwTLpN0cGH2p9NNjs6IqeD0eg==}
+
+ '@stablelib/ed25519@1.0.3':
+ resolution: {integrity: sha512-puIMWaX9QlRsbhxfDc5i+mNPMY+0TmQEskunY1rZEBPi1acBCVQAhnsk/1Hk50DGPtVsZtAWQg4NHGlVaO9Hqg==}
+
+ '@stablelib/hash@1.0.1':
+ resolution: {integrity: sha512-eTPJc/stDkdtOcrNMZ6mcMK1e6yBbqRBaNW55XA1jU8w/7QdnCF0CmMmOD1m7VSkBR44PWrMHU2l6r8YEQHMgg==}
+
+ '@stablelib/hkdf@1.0.1':
+ resolution: {integrity: sha512-SBEHYE16ZXlHuaW5RcGk533YlBj4grMeg5TooN80W3NpcHRtLZLLXvKyX0qcRFxf+BGDobJLnwkvgEwHIDBR6g==}
+
+ '@stablelib/hmac@1.0.1':
+ resolution: {integrity: sha512-V2APD9NSnhVpV/QMYgCVMIYKiYG6LSqw1S65wxVoirhU/51ACio6D4yDVSwMzuTJXWZoVHbDdINioBwKy5kVmA==}
+
+ '@stablelib/int@1.0.1':
+ resolution: {integrity: sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w==}
+
+ '@stablelib/keyagreement@1.0.1':
+ resolution: {integrity: sha512-VKL6xBwgJnI6l1jKrBAfn265cspaWBPAPEc62VBQrWHLqVgNRE09gQ/AnOEyKUWrrqfD+xSQ3u42gJjLDdMDQg==}
+
+ '@stablelib/poly1305@1.0.1':
+ resolution: {integrity: sha512-1HlG3oTSuQDOhSnLwJRKeTRSAdFNVB/1djy2ZbS35rBSJ/PFqx9cf9qatinWghC2UbfOYD8AcrtbUQl8WoxabA==}
+
+ '@stablelib/random@1.0.2':
+ resolution: {integrity: sha512-rIsE83Xpb7clHPVRlBj8qNe5L8ISQOzjghYQm/dZ7VaM2KHYwMW5adjQjrzTZCchFnNCNhkwtnOBa9HTMJCI8w==}
+
+ '@stablelib/sha256@1.0.1':
+ resolution: {integrity: sha512-GIIH3e6KH+91FqGV42Kcj71Uefd/QEe7Dy42sBTeqppXV95ggCcxLTk39bEr+lZfJmp+ghsR07J++ORkRELsBQ==}
+
+ '@stablelib/sha512@1.0.1':
+ resolution: {integrity: sha512-13gl/iawHV9zvDKciLo1fQ8Bgn2Pvf7OV6amaRVKiq3pjQ3UmEpXxWiAfV8tYjUpeZroBxtyrwtdooQT/i3hzw==}
+
+ '@stablelib/wipe@1.0.1':
+ resolution: {integrity: sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg==}
+
+ '@stablelib/x25519@1.0.3':
+ resolution: {integrity: sha512-KnTbKmUhPhHavzobclVJQG5kuivH+qDLpe84iRqX3CLrKp881cF160JvXJ+hjn1aMyCwYOKeIZefIH/P5cJoRw==}
+
+ '@surma/rollup-plugin-off-main-thread@2.2.3':
+ resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==}
+
+ '@swc/core-darwin-arm64@1.7.11':
+ resolution: {integrity: sha512-HRQv4qIeMBPThZ6Y/4yYW52rGsS6yrpusvuxLGyoFo45Y0y12/V2yXkOIA/0HIQyrqoUAxn1k4zQXpPaPNCmnw==}
+ engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
- "@swc/core-darwin-x64@1.7.11":
- resolution:
- {
- integrity: sha512-vtMQj0F3oYwDu5yhO7SKDRg1XekRSi6/TbzHAbBXv+dBhlGGvcZZynT1H90EVFTv+7w7Sh+lOFvRv5Z4ZTcxow==,
- }
- engines: { node: ">=10" }
+ '@swc/core-darwin-x64@1.7.11':
+ resolution: {integrity: sha512-vtMQj0F3oYwDu5yhO7SKDRg1XekRSi6/TbzHAbBXv+dBhlGGvcZZynT1H90EVFTv+7w7Sh+lOFvRv5Z4ZTcxow==}
+ engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
- "@swc/core-linux-arm-gnueabihf@1.7.11":
- resolution:
- {
- integrity: sha512-mHtzWKxhtyreI4CSxs+3+ENv8t/Qo35WFoYG66qHEgJz/Z2Lh6jv1E+MYgHdYwnpQHgHbdvAco7HsBu/Dt6xXw==,
- }
- engines: { node: ">=10" }
+ '@swc/core-linux-arm-gnueabihf@1.7.11':
+ resolution: {integrity: sha512-mHtzWKxhtyreI4CSxs+3+ENv8t/Qo35WFoYG66qHEgJz/Z2Lh6jv1E+MYgHdYwnpQHgHbdvAco7HsBu/Dt6xXw==}
+ engines: {node: '>=10'}
cpu: [arm]
os: [linux]
- "@swc/core-linux-arm64-gnu@1.7.11":
- resolution:
- {
- integrity: sha512-FRwe/x0GfXSQjGP2lIk+NO0pUFS/lI/RorCLBPiK808EVE9JTbh9DKCc/4Bbb4jgScAjNkrFCUVObQYl3YKmpA==,
- }
- engines: { node: ">=10" }
+ '@swc/core-linux-arm64-gnu@1.7.11':
+ resolution: {integrity: sha512-FRwe/x0GfXSQjGP2lIk+NO0pUFS/lI/RorCLBPiK808EVE9JTbh9DKCc/4Bbb4jgScAjNkrFCUVObQYl3YKmpA==}
+ engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
- "@swc/core-linux-arm64-musl@1.7.11":
- resolution:
- {
- integrity: sha512-GY/rs0+GUq14Gbnza90KOrQd/9yHd5qQMii5jcSWcUCT5A8QTa8kiicsM2NxZeTJ69xlKmT7sLod5l99lki/2A==,
- }
- engines: { node: ">=10" }
+ '@swc/core-linux-arm64-musl@1.7.11':
+ resolution: {integrity: sha512-GY/rs0+GUq14Gbnza90KOrQd/9yHd5qQMii5jcSWcUCT5A8QTa8kiicsM2NxZeTJ69xlKmT7sLod5l99lki/2A==}
+ engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
- "@swc/core-linux-x64-gnu@1.7.11":
- resolution:
- {
- integrity: sha512-QDkGRwSPmp2RBOlSs503IUXlWYlny8DyznTT0QuK0ML2RpDFlXWU94K/EZhS0RBEUkMY/W51OacM8P8aS/dkCg==,
- }
- engines: { node: ">=10" }
+ '@swc/core-linux-x64-gnu@1.7.11':
+ resolution: {integrity: sha512-QDkGRwSPmp2RBOlSs503IUXlWYlny8DyznTT0QuK0ML2RpDFlXWU94K/EZhS0RBEUkMY/W51OacM8P8aS/dkCg==}
+ engines: {node: '>=10'}
cpu: [x64]
os: [linux]
- "@swc/core-linux-x64-musl@1.7.11":
- resolution:
- {
- integrity: sha512-SBEfKrXy6zQ6ksnyxw1FaCftrIH4fLfA81xNnKb7x/6iblv7Ko6H0aK3P5C86jyqF/82+ONl9C7ImGkUFQADig==,
- }
- engines: { node: ">=10" }
+ '@swc/core-linux-x64-musl@1.7.11':
+ resolution: {integrity: sha512-SBEfKrXy6zQ6ksnyxw1FaCftrIH4fLfA81xNnKb7x/6iblv7Ko6H0aK3P5C86jyqF/82+ONl9C7ImGkUFQADig==}
+ engines: {node: '>=10'}
cpu: [x64]
os: [linux]
- "@swc/core-win32-arm64-msvc@1.7.11":
- resolution:
- {
- integrity: sha512-a2Y4xxEsLLYHJN7sMnw9+YQJDi3M1BxEr9hklfopPuGGnYLFNnx5CypH1l9ReijEfWjIAHNi7pq3m023lzW1Hg==,
- }
- engines: { node: ">=10" }
+ '@swc/core-win32-arm64-msvc@1.7.11':
+ resolution: {integrity: sha512-a2Y4xxEsLLYHJN7sMnw9+YQJDi3M1BxEr9hklfopPuGGnYLFNnx5CypH1l9ReijEfWjIAHNi7pq3m023lzW1Hg==}
+ engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
- "@swc/core-win32-ia32-msvc@1.7.11":
- resolution:
- {
- integrity: sha512-ZbZFMwZO+j8ulhegJ7EhJ/QVZPoQ5qc30ylJQSxizizTJaen71Q7/13lXWc6ksuCKvg6dUKrp/TPgoxOOtSrFA==,
- }
- engines: { node: ">=10" }
+ '@swc/core-win32-ia32-msvc@1.7.11':
+ resolution: {integrity: sha512-ZbZFMwZO+j8ulhegJ7EhJ/QVZPoQ5qc30ylJQSxizizTJaen71Q7/13lXWc6ksuCKvg6dUKrp/TPgoxOOtSrFA==}
+ engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
- "@swc/core-win32-x64-msvc@1.7.11":
- resolution:
- {
- integrity: sha512-IUohZedSJyDu/ReEBG/mqX6uG29uA7zZ9z6dIAF+p6eFxjXmh9MuHryyM+H8ebUyoq/Ad3rL+rUCksnuYNnI0w==,
- }
- engines: { node: ">=10" }
+ '@swc/core-win32-x64-msvc@1.7.11':
+ resolution: {integrity: sha512-IUohZedSJyDu/ReEBG/mqX6uG29uA7zZ9z6dIAF+p6eFxjXmh9MuHryyM+H8ebUyoq/Ad3rL+rUCksnuYNnI0w==}
+ engines: {node: '>=10'}
cpu: [x64]
os: [win32]
- "@swc/core@1.7.11":
- resolution:
- {
- integrity: sha512-AB+qc45UrJrDfbhPKcUXk+9z/NmFfYYwJT6G7/iur0fCse9kXjx45gi40+u/O2zgarG/30/zV6E3ps8fUvjh7g==,
- }
- engines: { node: ">=10" }
- peerDependencies:
- "@swc/helpers": "*"
- peerDependenciesMeta:
- "@swc/helpers":
- optional: true
+ '@swc/core@1.7.11':
+ resolution: {integrity: sha512-AB+qc45UrJrDfbhPKcUXk+9z/NmFfYYwJT6G7/iur0fCse9kXjx45gi40+u/O2zgarG/30/zV6E3ps8fUvjh7g==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@swc/helpers': '*'
+ peerDependenciesMeta:
+ '@swc/helpers':
+ optional: true
+
+ '@swc/counter@0.1.3':
+ resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
+
+ '@swc/helpers@0.5.12':
+ resolution: {integrity: sha512-KMZNXiGibsW9kvZAO1Pam2JPTDBm+KSHMMHWdsyI/1DbIZjT2A6Gy3hblVXUMEDvUAKq+e0vL0X0o54owWji7g==}
+
+ '@swc/types@0.1.12':
+ resolution: {integrity: sha512-wBJA+SdtkbFhHjTMYH+dEH1y4VpfGdAc2Kw/LK09i9bXd/K6j6PkDcFCEzb6iVfZMkPRrl/q0e3toqTAJdkIVA==}
+
+ '@szmarczak/http-timer@5.0.1':
+ resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==}
+ engines: {node: '>=14.16'}
+
+ '@tailwindcss/forms@0.5.7':
+ resolution: {integrity: sha512-QE7X69iQI+ZXwldE+rzasvbJiyV/ju1FGHH0Qn2W3FKbuYtqp8LKcy6iSw79fVUT5/Vvf+0XgLCeYVG+UV6hOw==}
+ peerDependencies:
+ tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1'
+
+ '@tailwindcss/typography@0.5.15':
+ resolution: {integrity: sha512-AqhlCXl+8grUz8uqExv5OTtgpjuVIwFTSXTrh8y9/pw6q2ek7fJ+Y8ZEVw7EB2DCcuCOtEjf9w3+J3rzts01uA==}
+ peerDependencies:
+ tailwindcss: '>=3.0.0 || insiders || >=4.0.0-alpha.20'
+
+ '@tanstack/eslint-plugin-query@5.52.0':
+ resolution: {integrity: sha512-i02fOM3TRURI46AswPNlKb4Gwu+/mAPssI+pVu0AifA7/qzOJRgco17vdqjq/VgChKLLIltd9/KI4MCJFFfWEw==}
+ peerDependencies:
+ eslint: ^8 || ^9
+
+ '@tanstack/query-core@5.52.2':
+ resolution: {integrity: sha512-9vvbFecK4A0nDnrc/ks41e3UHONF1DAnGz8Tgbxkl59QcvKWmc0ewhYuIKRh8NC4ja5LTHT9EH16KHbn2AIYWA==}
+
+ '@tanstack/react-query@5.52.2':
+ resolution: {integrity: sha512-d4OwmobpP+6+SvuAxW1RzAY95Pv87Gu+0GjtErzFOUXo+n0FGcwxKvzhswCsXKxsgnAr3bU2eJ2u+GXQAutkCQ==}
+ peerDependencies:
+ react: ^18 || ^19
+
+ '@tanstack/react-virtual@3.1.3':
+ resolution: {integrity: sha512-YCzcbF/Ws/uZ0q3Z6fagH+JVhx4JLvbSflgldMgLsuvB8aXjZLLb3HvrEVxY480F9wFlBiXlvQxOyXb5ENPrNA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+
+ '@tanstack/virtual-core@3.1.3':
+ resolution: {integrity: sha512-Y5B4EYyv1j9V8LzeAoOVeTg0LI7Fo5InYKgAjkY1Pu9GjtUwX/EKxNcU7ng3sKr99WEf+bPTcktAeybyMOYo+g==}
+
+ '@ts-morph/common@0.11.1':
+ resolution: {integrity: sha512-7hWZS0NRpEsNV8vWJzg7FEz6V8MaLNeJOmwmghqUXTpzk16V1LLZhdo+4QvE/+zv4cVci0OviuJFnqhEfoV3+g==}
+
+ '@tsconfig/node10@1.0.11':
+ resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==}
+
+ '@tsconfig/node12@1.0.11':
+ resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
+
+ '@tsconfig/node14@1.0.3':
+ resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
+
+ '@tsconfig/node16@1.0.4':
+ resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
+
+ '@types/babel__core@7.20.5':
+ resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
+
+ '@types/babel__generator@7.6.8':
+ resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
+
+ '@types/babel__template@7.4.4':
+ resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
+
+ '@types/babel__traverse@7.20.5':
+ resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==}
+
+ '@types/bn.js@4.11.6':
+ resolution: {integrity: sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==}
+
+ '@types/bn.js@5.1.2':
+ resolution: {integrity: sha512-dkpZu0szUtn9UXTmw+e0AJFd4D2XAxDnsCLdc05SfqpqzPEBft8eQr8uaFitfo/dUUOZERaLec2hHMG87A4Dxg==}
+
+ '@types/chai@4.3.19':
+ resolution: {integrity: sha512-2hHHvQBVE2FiSK4eN0Br6snX9MtolHaTo/batnLjlGRhoQzlCL61iVpxoqO7SfFyOw+P/pwv+0zNHzKoGWz9Cw==}
+
+ '@types/debug@4.1.9':
+ resolution: {integrity: sha512-8Hz50m2eoS56ldRlepxSBa6PWEVCtzUo/92HgLc2qTMnotJNIm7xP+UZhyWoYsyOdd5dxZ+NZLb24rsKyFs2ow==}
+
+ '@types/dns-packet@5.6.5':
+ resolution: {integrity: sha512-qXOC7XLOEe43ehtWJCMnQXvgcIpv6rPmQ1jXT98Ad8A3TB1Ue50jsCbSSSyuazScEuZ/Q026vHbrOTVkmwA+7Q==}
+
+ '@types/estree@0.0.39':
+ resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==}
+
+ '@types/estree@1.0.5':
+ resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
+
+ '@types/glob@7.2.0':
+ resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
+
+ '@types/hoist-non-react-statics@3.3.5':
+ resolution: {integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==}
+
+ '@types/http-cache-semantics@4.0.4':
+ resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==}
+
+ '@types/json-schema@7.0.15':
+ resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
+
+ '@types/json5@0.0.29':
+ resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
+
+ '@types/lru-cache@5.1.1':
+ resolution: {integrity: sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw==}
+
+ '@types/minimatch@5.1.2':
+ resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
+
+ '@types/mocha@10.0.6':
+ resolution: {integrity: sha512-dJvrYWxP/UcXm36Qn36fxhUKu8A/xMRXVT2cliFF1Z7UA9liG5Psj3ezNSZw+5puH2czDXRLcXQxf8JbJt0ejg==}
+
+ '@types/ms@0.7.32':
+ resolution: {integrity: sha512-xPSg0jm4mqgEkNhowKgZFBNtwoEwF6gJ4Dhww+GFpm3IgtNseHQZ5IqdNwnquZEoANxyDAKDRAdVo4Z72VvD/g==}
+
+ '@types/node@12.20.55':
+ resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
+
+ '@types/node@16.18.11':
+ resolution: {integrity: sha512-3oJbGBUWuS6ahSnEq1eN2XrCyf4YsWI8OyCvo7c64zQJNplk3mO84t53o8lfTk+2ji59g5ycfc6qQ3fdHliHuA==}
+
+ '@types/node@18.15.13':
+ resolution: {integrity: sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==}
+
+ '@types/node@20.8.8':
+ resolution: {integrity: sha512-YRsdVxq6OaLfmR9Hy816IMp33xOBjfyOgUd77ehqg96CFywxAPbDbXvAsuN2KVg2HOT8Eh6uAfU+l4WffwPVrQ==}
+
+ '@types/node@22.5.1':
+ resolution: {integrity: sha512-KkHsxej0j9IW1KKOOAA/XBA0z08UFSrRQHErzEfA3Vgq57eXIMYboIlHJuYIfd+lwCQjtKqUu3UnmKbtUc9yRw==}
+
+ '@types/parse-json@4.0.2':
+ resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
+
+ '@types/pbkdf2@3.1.0':
+ resolution: {integrity: sha512-Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ==}
+
+ '@types/prettier@2.7.3':
+ resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==}
+
+ '@types/prop-types@15.7.11':
+ resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==}
+
+ '@types/qrcode@1.5.5':
+ resolution: {integrity: sha512-CdfBi/e3Qk+3Z/fXYShipBT13OJ2fDO2Q2w5CIP5anLTLIndQG9z6P1cnm+8zCWSpm5dnxMFd/uREtb0EXuQzg==}
+
+ '@types/react-dom@18.3.0':
+ resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
+
+ '@types/react-transition-group@4.4.11':
+ resolution: {integrity: sha512-RM05tAniPZ5DZPzzNFP+DmrcOdD0efDUxMy3145oljWSl3x9ZV5vhme98gTxFrj2lhXvmGNnUiuDyJgY9IKkNA==}
+
+ '@types/react@18.3.3':
+ resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==}
+
+ '@types/resolve@1.17.1':
+ resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
- "@swc/counter@0.1.3":
- resolution:
- {
- integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==,
- }
-
- "@swc/helpers@0.5.12":
- resolution:
- {
- integrity: sha512-KMZNXiGibsW9kvZAO1Pam2JPTDBm+KSHMMHWdsyI/1DbIZjT2A6Gy3hblVXUMEDvUAKq+e0vL0X0o54owWji7g==,
- }
-
- "@swc/types@0.1.12":
- resolution:
- {
- integrity: sha512-wBJA+SdtkbFhHjTMYH+dEH1y4VpfGdAc2Kw/LK09i9bXd/K6j6PkDcFCEzb6iVfZMkPRrl/q0e3toqTAJdkIVA==,
- }
-
- "@szmarczak/http-timer@5.0.1":
- resolution:
- {
- integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==,
- }
- engines: { node: ">=14.16" }
-
- "@tanstack/react-virtual@3.1.3":
- resolution:
- {
- integrity: sha512-YCzcbF/Ws/uZ0q3Z6fagH+JVhx4JLvbSflgldMgLsuvB8aXjZLLb3HvrEVxY480F9wFlBiXlvQxOyXb5ENPrNA==,
- }
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ '@types/secp256k1@4.0.4':
+ resolution: {integrity: sha512-oN0PFsYxDZnX/qSJ5S5OwaEDTYfekhvaM5vqui2bu1AA39pKofmgL104Q29KiOXizXS2yLjSzc5YdTyMKdcy4A==}
- "@tanstack/virtual-core@3.1.3":
- resolution:
- {
- integrity: sha512-Y5B4EYyv1j9V8LzeAoOVeTg0LI7Fo5InYKgAjkY1Pu9GjtUwX/EKxNcU7ng3sKr99WEf+bPTcktAeybyMOYo+g==,
- }
-
- "@tsconfig/node10@1.0.11":
- resolution:
- {
- integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==,
- }
-
- "@tsconfig/node12@1.0.11":
- resolution:
- {
- integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==,
- }
-
- "@tsconfig/node14@1.0.3":
- resolution:
- {
- integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==,
- }
-
- "@tsconfig/node16@1.0.4":
- resolution:
- {
- integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==,
- }
-
- "@types/babel__core@7.20.5":
- resolution:
- {
- integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==,
- }
-
- "@types/babel__generator@7.6.8":
- resolution:
- {
- integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==,
- }
-
- "@types/babel__template@7.4.4":
- resolution:
- {
- integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==,
- }
-
- "@types/babel__traverse@7.20.5":
- resolution:
- {
- integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==,
- }
-
- "@types/bn.js@4.11.6":
- resolution:
- {
- integrity: sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==,
- }
-
- "@types/bn.js@5.1.2":
- resolution:
- {
- integrity: sha512-dkpZu0szUtn9UXTmw+e0AJFd4D2XAxDnsCLdc05SfqpqzPEBft8eQr8uaFitfo/dUUOZERaLec2hHMG87A4Dxg==,
- }
-
- "@types/chai@4.3.17":
- resolution:
- {
- integrity: sha512-zmZ21EWzR71B4Sscphjief5djsLre50M6lI622OSySTmn9DB3j+C3kWroHfBQWXbOBwbgg/M8CG/hUxDLIloow==,
- }
-
- "@types/debug@4.1.9":
- resolution:
- {
- integrity: sha512-8Hz50m2eoS56ldRlepxSBa6PWEVCtzUo/92HgLc2qTMnotJNIm7xP+UZhyWoYsyOdd5dxZ+NZLb24rsKyFs2ow==,
- }
-
- "@types/estree@0.0.39":
- resolution:
- {
- integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==,
- }
-
- "@types/estree@1.0.5":
- resolution:
- {
- integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==,
- }
-
- "@types/glob@7.2.0":
- resolution:
- {
- integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==,
- }
-
- "@types/http-cache-semantics@4.0.4":
- resolution:
- {
- integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==,
- }
-
- "@types/json5@0.0.29":
- resolution:
- {
- integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==,
- }
-
- "@types/lru-cache@5.1.1":
- resolution:
- {
- integrity: sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw==,
- }
-
- "@types/minimatch@5.1.2":
- resolution:
- {
- integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==,
- }
-
- "@types/mocha@10.0.6":
- resolution:
- {
- integrity: sha512-dJvrYWxP/UcXm36Qn36fxhUKu8A/xMRXVT2cliFF1Z7UA9liG5Psj3ezNSZw+5puH2czDXRLcXQxf8JbJt0ejg==,
- }
-
- "@types/ms@0.7.32":
- resolution:
- {
- integrity: sha512-xPSg0jm4mqgEkNhowKgZFBNtwoEwF6gJ4Dhww+GFpm3IgtNseHQZ5IqdNwnquZEoANxyDAKDRAdVo4Z72VvD/g==,
- }
-
- "@types/node@12.20.55":
- resolution:
- {
- integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==,
- }
-
- "@types/node@18.15.13":
- resolution:
- {
- integrity: sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==,
- }
-
- "@types/node@20.8.8":
- resolution:
- {
- integrity: sha512-YRsdVxq6OaLfmR9Hy816IMp33xOBjfyOgUd77ehqg96CFywxAPbDbXvAsuN2KVg2HOT8Eh6uAfU+l4WffwPVrQ==,
- }
-
- "@types/node@22.1.0":
- resolution:
- {
- integrity: sha512-AOmuRF0R2/5j1knA3c6G3HOk523Ga+l+ZXltX8SF1+5oqcXijjfTd8fY3XRZqSihEu9XhtQnKYLmkFaoxgsJHw==,
- }
-
- "@types/pbkdf2@3.1.0":
- resolution:
- {
- integrity: sha512-Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ==,
- }
-
- "@types/prettier@2.7.3":
- resolution:
- {
- integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==,
- }
-
- "@types/prop-types@15.7.11":
- resolution:
- {
- integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==,
- }
-
- "@types/qrcode@1.5.5":
- resolution:
- {
- integrity: sha512-CdfBi/e3Qk+3Z/fXYShipBT13OJ2fDO2Q2w5CIP5anLTLIndQG9z6P1cnm+8zCWSpm5dnxMFd/uREtb0EXuQzg==,
- }
-
- "@types/react-dom@18.3.0":
- resolution:
- {
- integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==,
- }
-
- "@types/react@18.3.3":
- resolution:
- {
- integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==,
- }
-
- "@types/resolve@1.17.1":
- resolution:
- {
- integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==,
- }
-
- "@types/secp256k1@4.0.4":
- resolution:
- {
- integrity: sha512-oN0PFsYxDZnX/qSJ5S5OwaEDTYfekhvaM5vqui2bu1AA39pKofmgL104Q29KiOXizXS2yLjSzc5YdTyMKdcy4A==,
- }
-
- "@types/trusted-types@2.0.4":
- resolution:
- {
- integrity: sha512-IDaobHimLQhjwsQ/NMwRVfa/yL7L/wriQPMhw1ZJall0KX6E1oxk29XMDeilW5qTIg5aoiqf5Udy8U/51aNoQQ==,
- }
-
- "@typescript-eslint/eslint-plugin@8.1.0":
- resolution:
- {
- integrity: sha512-LlNBaHFCEBPHyD4pZXb35mzjGkuGKXU5eeCA1SxvHfiRES0E82dOounfVpL4DCqYvJEKab0bZIA0gCRpdLKkCw==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- peerDependencies:
- "@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0
- eslint: ^8.57.0 || ^9.0.0
- typescript: "*"
- peerDependenciesMeta:
- typescript:
- optional: true
+ '@types/trusted-types@2.0.4':
+ resolution: {integrity: sha512-IDaobHimLQhjwsQ/NMwRVfa/yL7L/wriQPMhw1ZJall0KX6E1oxk29XMDeilW5qTIg5aoiqf5Udy8U/51aNoQQ==}
- "@typescript-eslint/eslint-plugin@8.2.0":
- resolution:
- {
- integrity: sha512-02tJIs655em7fvt9gps/+4k4OsKULYGtLBPJfOsmOq1+3cdClYiF0+d6mHu6qDnTcg88wJBkcPLpQhq7FyDz0A==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ '@typescript-eslint/eslint-plugin@8.2.0':
+ resolution: {integrity: sha512-02tJIs655em7fvt9gps/+4k4OsKULYGtLBPJfOsmOq1+3cdClYiF0+d6mHu6qDnTcg88wJBkcPLpQhq7FyDz0A==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- "@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0
+ '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
eslint: ^8.57.0 || ^9.0.0
- typescript: "*"
+ typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- "@typescript-eslint/parser@8.1.0":
- resolution:
- {
- integrity: sha512-U7iTAtGgJk6DPX9wIWPPOlt1gO57097G06gIcl0N0EEnNw8RGD62c+2/DiP/zL7KrkqnnqF7gtFGR7YgzPllTA==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ '@typescript-eslint/parser@8.2.0':
+ resolution: {integrity: sha512-j3Di+o0lHgPrb7FxL3fdEy6LJ/j2NE8u+AP/5cQ9SKb+JLH6V6UHDqJ+e0hXBkHP1wn1YDFjYCS9LBQsZDlDEg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: "*"
+ typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- "@typescript-eslint/parser@8.2.0":
- resolution:
- {
- integrity: sha512-j3Di+o0lHgPrb7FxL3fdEy6LJ/j2NE8u+AP/5cQ9SKb+JLH6V6UHDqJ+e0hXBkHP1wn1YDFjYCS9LBQsZDlDEg==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: "*"
- peerDependenciesMeta:
- typescript:
- optional: true
+ '@typescript-eslint/scope-manager@8.0.0-alpha.30':
+ resolution: {integrity: sha512-FGW/iPWGyPFamAVZ60oCAthMqQrqafUGebF8UKuq/ha+e9SVG6YhJoRzurlQXOVf8dHfOhJ0ADMXyFnMc53clg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- "@typescript-eslint/scope-manager@8.1.0":
- resolution:
- {
- integrity: sha512-DsuOZQji687sQUjm4N6c9xABJa7fjvfIdjqpSIIVOgaENf2jFXiM9hIBZOL3hb6DHK9Nvd2d7zZnoMLf9e0OtQ==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
-
- "@typescript-eslint/scope-manager@8.2.0":
- resolution:
- {
- integrity: sha512-OFn80B38yD6WwpoHU2Tz/fTz7CgFqInllBoC3WP+/jLbTb4gGPTy9HBSTsbDWkMdN55XlVU0mMDYAtgvlUspGw==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
-
- "@typescript-eslint/type-utils@8.1.0":
- resolution:
- {
- integrity: sha512-oLYvTxljVvsMnldfl6jIKxTaU7ok7km0KDrwOt1RHYu6nxlhN3TIx8k5Q52L6wR33nOwDgM7VwW1fT1qMNfFIA==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- peerDependencies:
- typescript: "*"
- peerDependenciesMeta:
- typescript:
- optional: true
+ '@typescript-eslint/scope-manager@8.2.0':
+ resolution: {integrity: sha512-OFn80B38yD6WwpoHU2Tz/fTz7CgFqInllBoC3WP+/jLbTb4gGPTy9HBSTsbDWkMdN55XlVU0mMDYAtgvlUspGw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- "@typescript-eslint/type-utils@8.2.0":
- resolution:
- {
- integrity: sha512-g1CfXGFMQdT5S+0PSO0fvGXUaiSkl73U1n9LTK5aRAFnPlJ8dLKkXr4AaLFvPedW8lVDoMgLLE3JN98ZZfsj0w==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ '@typescript-eslint/type-utils@8.2.0':
+ resolution: {integrity: sha512-g1CfXGFMQdT5S+0PSO0fvGXUaiSkl73U1n9LTK5aRAFnPlJ8dLKkXr4AaLFvPedW8lVDoMgLLE3JN98ZZfsj0w==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: "*"
+ typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- "@typescript-eslint/types@8.1.0":
- resolution:
- {
- integrity: sha512-q2/Bxa0gMOu/2/AKALI0tCKbG2zppccnRIRCW6BaaTlRVaPKft4oVYPp7WOPpcnsgbr0qROAVCVKCvIQ0tbWog==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
-
- "@typescript-eslint/types@8.2.0":
- resolution:
- {
- integrity: sha512-6a9QSK396YqmiBKPkJtxsgZZZVjYQ6wQ/TlI0C65z7vInaETuC6HAHD98AGLC8DyIPqHytvNuS8bBVvNLKyqvQ==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
-
- "@typescript-eslint/typescript-estree@8.1.0":
- resolution:
- {
- integrity: sha512-NTHhmufocEkMiAord/g++gWKb0Fr34e9AExBRdqgWdVBaKoei2dIyYKD9Q0jBnvfbEA5zaf8plUFMUH6kQ0vGg==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ '@typescript-eslint/types@8.0.0-alpha.30':
+ resolution: {integrity: sha512-4WzLlw27SO9pK9UFj/Hu7WGo8WveT0SEiIpFVsV2WwtQmLps6kouwtVCB8GJPZKJyurhZhcqCoQVQFmpv441Vg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/types@8.2.0':
+ resolution: {integrity: sha512-6a9QSK396YqmiBKPkJtxsgZZZVjYQ6wQ/TlI0C65z7vInaETuC6HAHD98AGLC8DyIPqHytvNuS8bBVvNLKyqvQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/typescript-estree@8.0.0-alpha.30':
+ resolution: {integrity: sha512-WSXbc9ZcXI+7yC+6q95u77i8FXz6HOLsw3ST+vMUlFy1lFbXyFL/3e6HDKQCm2Clt0krnoCPiTGvIn+GkYPn4Q==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: "*"
+ typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- "@typescript-eslint/typescript-estree@8.2.0":
- resolution:
- {
- integrity: sha512-kiG4EDUT4dImplOsbh47B1QnNmXSoUqOjWDvCJw/o8LgfD0yr7k2uy54D5Wm0j4t71Ge1NkynGhpWdS0dEIAUA==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ '@typescript-eslint/typescript-estree@8.2.0':
+ resolution: {integrity: sha512-kiG4EDUT4dImplOsbh47B1QnNmXSoUqOjWDvCJw/o8LgfD0yr7k2uy54D5Wm0j4t71Ge1NkynGhpWdS0dEIAUA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: "*"
+ typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- "@typescript-eslint/utils@8.1.0":
- resolution:
- {
- integrity: sha512-ypRueFNKTIFwqPeJBfeIpxZ895PQhNyH4YID6js0UoBImWYoSjBsahUn9KMiJXh94uOjVBgHD9AmkyPsPnFwJA==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ '@typescript-eslint/utils@8.0.0-alpha.30':
+ resolution: {integrity: sha512-rfhqfLqFyXhHNDwMnHiVGxl/Z2q/3guQ1jLlGQ0hi9Rb7inmwz42crM+NnLPR+2vEnwyw1P/g7fnQgQ3qvFx4g==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- "@typescript-eslint/utils@8.2.0":
- resolution:
- {
- integrity: sha512-O46eaYKDlV3TvAVDNcoDzd5N550ckSe8G4phko++OCSC1dYIb9LTc3HDGYdWqWIAT5qDUKphO6sd9RrpIJJPfg==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ '@typescript-eslint/utils@8.2.0':
+ resolution: {integrity: sha512-O46eaYKDlV3TvAVDNcoDzd5N550ckSe8G4phko++OCSC1dYIb9LTc3HDGYdWqWIAT5qDUKphO6sd9RrpIJJPfg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- "@typescript-eslint/visitor-keys@8.1.0":
- resolution:
- {
- integrity: sha512-ba0lNI19awqZ5ZNKh6wCModMwoZs457StTebQ0q1NP58zSi2F6MOZRXwfKZy+jB78JNJ/WH8GSh2IQNzXX8Nag==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
-
- "@typescript-eslint/visitor-keys@8.2.0":
- resolution:
- {
- integrity: sha512-sbgsPMW9yLvS7IhCi8IpuK1oBmtbWUNP+hBdwl/I9nzqVsszGnNGti5r9dUtF5RLivHUFFIdRvLiTsPhzSyJ3Q==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
-
- "@vitejs/plugin-react@4.3.1":
- resolution:
- {
- integrity: sha512-m/V2syj5CuVnaxcUJOQRel/Wr31FFXRFlnOoq1TVtkCxsY5veGMTEmpWHndrhB2U8ScHtCQB1e+4hWYExQc6Lg==,
- }
- engines: { node: ^14.18.0 || >=16.0.0 }
- peerDependencies:
- vite: ^4.2.0 || ^5.0.0
+ '@typescript-eslint/visitor-keys@8.0.0-alpha.30':
+ resolution: {integrity: sha512-XZuNurZxBqmr6ZIRIwWFq7j5RZd6ZlkId/HZEWyfciK+CWoyOxSF9Pv2VXH9Rlu2ZG2PfbhLz2Veszl4Pfn7yA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- "@walletconnect/core@2.14.0":
- resolution:
- {
- integrity: sha512-E/dgBM9q3judXnTfZQ5ILvDpeSdDpabBLsXtYXa3Nyc26cfNplfLJ2nXm9FgtTdhM1nZ7yx4+zDPiXawBRZl2g==,
- }
-
- "@walletconnect/core@2.15.1":
- resolution:
- {
- integrity: sha512-9MWVt33MFrLiAeK9nqY/B30/y0M4uiq8v9EXenIBQdlgkmXM++RTcOnn7u7EAbthGgzx3WLPRm4ViwIb+rI/Cg==,
- }
- engines: { node: ">=18" }
-
- "@walletconnect/environment@1.0.1":
- resolution:
- {
- integrity: sha512-T426LLZtHj8e8rYnKfzsw1aG6+M0BT1ZxayMdv/p8yM0MU+eJDISqNY3/bccxRr4LrF9csq02Rhqt08Ibl0VRg==,
- }
-
- "@walletconnect/ethereum-provider@2.14.0":
- resolution:
- {
- integrity: sha512-Cc2/DCn85VciA10BrsNWFM//3VC1D8yjwrjfUKjGndLPDz0YIdAxTgYZViIlMjE0lzQC/DMvPYEAnGfW0O1Bwg==,
- }
-
- "@walletconnect/ethereum-provider@2.15.1":
- resolution:
- {
- integrity: sha512-3ssEAKc/rLYshwyE2ZIaoTxzi/p9Ws+kj/FIsd1Ed/CC37Rl5l/KYHaRJtevWeni9s4dGqyqKsYkJ0VwwUcnfQ==,
- }
-
- "@walletconnect/events@1.0.1":
- resolution:
- {
- integrity: sha512-NPTqaoi0oPBVNuLv7qPaJazmGHs5JGyO8eEAk5VGKmJzDR7AHzD4k6ilox5kxk1iwiOnFopBOOMLs86Oa76HpQ==,
- }
-
- "@walletconnect/heartbeat@1.2.2":
- resolution:
- {
- integrity: sha512-uASiRmC5MwhuRuf05vq4AT48Pq8RMi876zV8rr8cV969uTOzWdB/k+Lj5yI2PBtB1bGQisGen7MM1GcZlQTBXw==,
- }
-
- "@walletconnect/jsonrpc-http-connection@1.0.8":
- resolution:
- {
- integrity: sha512-+B7cRuaxijLeFDJUq5hAzNyef3e3tBDIxyaCNmFtjwnod5AGis3RToNqzFU33vpVcxFhofkpE7Cx+5MYejbMGw==,
- }
-
- "@walletconnect/jsonrpc-provider@1.0.14":
- resolution:
- {
- integrity: sha512-rtsNY1XqHvWj0EtITNeuf8PHMvlCLiS3EjQL+WOkxEOA4KPxsohFnBDeyPYiNm4ZvkQdLnece36opYidmtbmow==,
- }
-
- "@walletconnect/jsonrpc-types@1.0.4":
- resolution:
- {
- integrity: sha512-P6679fG/M+wuWg9TY8mh6xFSdYnFyFjwFelxyISxMDrlbXokorEVXYOxiqEbrU3x1BmBoCAJJ+vtEaEoMlpCBQ==,
- }
-
- "@walletconnect/jsonrpc-utils@1.0.8":
- resolution:
- {
- integrity: sha512-vdeb03bD8VzJUL6ZtzRYsFMq1eZQcM3EAzT0a3st59dyLfJ0wq+tKMpmGH7HlB7waD858UWgfIcudbPFsbzVdw==,
- }
-
- "@walletconnect/jsonrpc-ws-connection@1.0.14":
- resolution:
- {
- integrity: sha512-Jsl6fC55AYcbkNVkwNM6Jo+ufsuCQRqViOQ8ZBPH9pRREHH9welbBiszuTLqEJiQcO/6XfFDl6bzCJIkrEi8XA==,
- }
-
- "@walletconnect/keyvaluestorage@1.1.1":
- resolution:
- {
- integrity: sha512-V7ZQq2+mSxAq7MrRqDxanTzu2RcElfK1PfNYiaVnJgJ7Q7G7hTVwF8voIBx92qsRyGHZihrwNPHuZd1aKkd0rA==,
- }
+ '@typescript-eslint/visitor-keys@8.2.0':
+ resolution: {integrity: sha512-sbgsPMW9yLvS7IhCi8IpuK1oBmtbWUNP+hBdwl/I9nzqVsszGnNGti5r9dUtF5RLivHUFFIdRvLiTsPhzSyJ3Q==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@urql/core@5.0.6':
+ resolution: {integrity: sha512-38rgSDqVNihFDauw1Pm9V7XLWIKuK8V9CKgrUF7/xEKinze8ENKP1ZeBhkG+dxWzJan7CHK+SLl46kAdvZwIlA==}
+
+ '@vercel/build-utils@8.3.8':
+ resolution: {integrity: sha512-qcKV+owhfSwPJ3RyDpdS3xZdgDtPpVaeYTXRJjmMPv0PQIci5NRik/QNmYth0pyXCYbG5ES9/OYg9j5kAqPhZA==}
+
+ '@vercel/error-utils@2.0.2':
+ resolution: {integrity: sha512-Sj0LFafGpYr6pfCqrQ82X6ukRl5qpmVrHM/191kNYFqkkB9YkjlMAj6QcEsvCG259x4QZ7Tya++0AB85NDPbKQ==}
+
+ '@vercel/functions@1.4.1':
+ resolution: {integrity: sha512-987mKpoDCI18x2rDjrDbiuGOtxDMK/UhfhDZoN3A2SAt40BMaj8HEKwVqL6fOian5j/3RZcOuJnMOpatQGgpjw==}
+ engines: {node: '>= 16'}
peerDependencies:
- "@react-native-async-storage/async-storage": 1.x
+ '@aws-sdk/credential-provider-web-identity': '*'
peerDependenciesMeta:
- "@react-native-async-storage/async-storage":
+ '@aws-sdk/credential-provider-web-identity':
optional: true
- "@walletconnect/logger@2.1.2":
- resolution:
- {
- integrity: sha512-aAb28I3S6pYXZHQm5ESB+V6rDqIYfsnHaQyzFbwUUBFY4H0OXx/YtTl8lvhUNhMMfb9UxbwEBS253TlXUYJWSw==,
- }
-
- "@walletconnect/modal-core@2.6.2":
- resolution:
- {
- integrity: sha512-cv8ibvdOJQv2B+nyxP9IIFdxvQznMz8OOr/oR/AaUZym4hjXNL/l1a2UlSQBXrVjo3xxbouMxLb3kBsHoYP2CA==,
- }
-
- "@walletconnect/modal-ui@2.6.2":
- resolution:
- {
- integrity: sha512-rbdstM1HPGvr7jprQkyPggX7rP4XiCG85ZA+zWBEX0dVQg8PpAgRUqpeub4xQKDgY7pY/xLRXSiCVdWGqvG2HA==,
- }
-
- "@walletconnect/modal@2.6.2":
- resolution:
- {
- integrity: sha512-eFopgKi8AjKf/0U4SemvcYw9zlLpx9njVN8sf6DAkowC2Md0gPU/UNEbH1Wwj407pEKnEds98pKWib1NN1ACoA==,
- }
-
- "@walletconnect/relay-api@1.0.10":
- resolution:
- {
- integrity: sha512-tqrdd4zU9VBNqUaXXQASaexklv6A54yEyQQEXYOCr+Jz8Ket0dmPBDyg19LVSNUN2cipAghQc45/KVmfFJ0cYw==,
- }
-
- "@walletconnect/relay-api@1.0.11":
- resolution:
- {
- integrity: sha512-tLPErkze/HmC9aCmdZOhtVmYZq1wKfWTJtygQHoWtgg722Jd4homo54Cs4ak2RUFUZIGO2RsOpIcWipaua5D5Q==,
- }
-
- "@walletconnect/relay-auth@1.0.4":
- resolution:
- {
- integrity: sha512-kKJcS6+WxYq5kshpPaxGHdwf5y98ZwbfuS4EE/NkQzqrDFm5Cj+dP8LofzWvjrrLkZq7Afy7WrQMXdLy8Sx7HQ==,
- }
-
- "@walletconnect/safe-json@1.0.2":
- resolution:
- {
- integrity: sha512-Ogb7I27kZ3LPC3ibn8ldyUr5544t3/STow9+lzz7Sfo808YD7SBWk7SAsdBFlYgP2zDRy2hS3sKRcuSRM0OTmA==,
- }
-
- "@walletconnect/sign-client@2.14.0":
- resolution:
- {
- integrity: sha512-UrB3S3eLjPYfBLCN3WJ5u7+WcZ8kFMe/QIDqLf76Jk6TaLwkSUy563LvnSw4KW/kA+/cY1KBSdUDfX1tzYJJXg==,
- }
-
- "@walletconnect/sign-client@2.15.1":
- resolution:
- {
- integrity: sha512-YnLNEmCHgZ8yBpE3hwZnHD/bVznVMguSAlwLBNOoWUH2f4d9mR8bqa6KeVXqZ3e8mVHcxKTJTjTJ3oQMLyKIjw==,
- }
-
- "@walletconnect/time@1.0.2":
- resolution:
- {
- integrity: sha512-uzdd9woDcJ1AaBZRhqy5rNC9laqWGErfc4dxA9a87mPdKOgWMD85mcFo9dIYIts/Jwocfwn07EC6EzclKubk/g==,
- }
-
- "@walletconnect/types@2.14.0":
- resolution:
- {
- integrity: sha512-vevMi4jZLJ55vLuFOicQFmBBbLyb+S0sZS4IsaBdZkQflfGIq34HkN13c/KPl4Ye0aoR4/cUcUSitmGIzEQM5g==,
- }
-
- "@walletconnect/types@2.15.1":
- resolution:
- {
- integrity: sha512-4WkMsHD8ioZI5GmxNT0qMlz6msI7ZajBcTyDxfRncaNZVau0C+Btw1U4jWO+gxwJVDJY+Ue/cb1QKJ5BanZsyw==,
- }
-
- "@walletconnect/universal-provider@2.14.0":
- resolution:
- {
- integrity: sha512-Mr8uoTmD6H0+Hh+3gxBu4l3T2uP/nNPR02sVtwEujNum++F727mMk+ifPRIpkVo21V/bvXFEy8sHTs5hqyq5iA==,
- }
-
- "@walletconnect/universal-provider@2.15.1":
- resolution:
- {
- integrity: sha512-JvKwHoE/ugWSKOmrEr03go1V79N0bbYV6w24Lqlzz4VAoReZZo8TDKsya7UkJ1L5HUCgKVP+AVktuJv8khzJ6w==,
- }
-
- "@walletconnect/utils@2.14.0":
- resolution:
- {
- integrity: sha512-vRVomYQEtEAyCK2c5bzzEvtgxaGGITF8mWuIL+WYSAMyEJLY97mirP2urDucNwcUczwxUgI+no9RiNFbUHreQQ==,
- }
-
- "@walletconnect/utils@2.15.1":
- resolution:
- {
- integrity: sha512-i5AR8XpZdcX8ghaCjYV13Er/KAGe56c1mLaG9c2cv9kmnZMZijeMdInjX/flnSM1RFDUiZXvKPMUNwlCL4NsWw==,
- }
-
- "@walletconnect/window-getters@1.0.1":
- resolution:
- {
- integrity: sha512-vHp+HqzGxORPAN8gY03qnbTMnhqIwjeRJNOMOAzePRg4xVEEE2WvYsI9G2NMjOknA8hnuYbU3/hwLcKbjhc8+Q==,
- }
-
- "@walletconnect/window-metadata@1.0.1":
- resolution:
- {
- integrity: sha512-9koTqyGrM2cqFRW517BPY/iEtUDx2r1+Pwwu5m7sJ7ka79wi3EyqhqcICk/yDmv6jAS1rjKgTKXlEhanYjijcA==,
- }
-
- "@xstate/react@3.2.2":
- resolution:
- {
- integrity: sha512-feghXWLedyq8JeL13yda3XnHPZKwYDN5HPBLykpLeuNpr9178tQd2/3d0NrH6gSd0sG5mLuLeuD+ck830fgzLQ==,
- }
+ '@vercel/nft@0.27.3':
+ resolution: {integrity: sha512-oySTdDSzUAFDXpsSLk9Q943o+/Yu/+TCFxnehpFQEf/3khi2stMpTHPVNwFdvZq/Z4Ky93lE+MGHpXCRpMkSCA==}
+ engines: {node: '>=16'}
+ hasBin: true
+
+ '@vercel/node@3.2.10':
+ resolution: {integrity: sha512-NH3qPfIdu/Nxn7v34DnbSFiODIKUrqHWg8IAuRUccFfRIRp4EVreX7QfXGRgzvjTF/Ps+ATluw4IftlHQtVocA==}
+
+ '@vercel/static-config@3.0.0':
+ resolution: {integrity: sha512-2qtvcBJ1bGY0dYGYh3iM7yGKkk971FujLEDXzuW5wcZsPr1GSEjO/w2iSr3qve6nDDtBImsGoDEnus5FI4+fIw==}
+
+ '@vitejs/plugin-react@4.3.1':
+ resolution: {integrity: sha512-m/V2syj5CuVnaxcUJOQRel/Wr31FFXRFlnOoq1TVtkCxsY5veGMTEmpWHndrhB2U8ScHtCQB1e+4hWYExQc6Lg==}
+ engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
- "@xstate/fsm": ^2.0.0
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- xstate: ^4.37.2
- peerDependenciesMeta:
- "@xstate/fsm":
- optional: true
- xstate:
- optional: true
+ vite: ^4.2.0 || ^5.0.0
+
+ '@walletconnect/core@2.15.1':
+ resolution: {integrity: sha512-9MWVt33MFrLiAeK9nqY/B30/y0M4uiq8v9EXenIBQdlgkmXM++RTcOnn7u7EAbthGgzx3WLPRm4ViwIb+rI/Cg==}
+ engines: {node: '>=18'}
+
+ '@walletconnect/environment@1.0.1':
+ resolution: {integrity: sha512-T426LLZtHj8e8rYnKfzsw1aG6+M0BT1ZxayMdv/p8yM0MU+eJDISqNY3/bccxRr4LrF9csq02Rhqt08Ibl0VRg==}
+
+ '@walletconnect/ethereum-provider@2.15.1':
+ resolution: {integrity: sha512-3ssEAKc/rLYshwyE2ZIaoTxzi/p9Ws+kj/FIsd1Ed/CC37Rl5l/KYHaRJtevWeni9s4dGqyqKsYkJ0VwwUcnfQ==}
- "@xstate/react@4.1.1":
- resolution:
- {
- integrity: sha512-pFp/Y+bnczfaZ0V8B4LOhx3d6Gd71YKAPbzerGqydC2nsYN/mp7RZu3q/w6/kvI2hwR/jeDeetM7xc3JFZH2NA==,
- }
+ '@walletconnect/events@1.0.1':
+ resolution: {integrity: sha512-NPTqaoi0oPBVNuLv7qPaJazmGHs5JGyO8eEAk5VGKmJzDR7AHzD4k6ilox5kxk1iwiOnFopBOOMLs86Oa76HpQ==}
+
+ '@walletconnect/heartbeat@1.2.2':
+ resolution: {integrity: sha512-uASiRmC5MwhuRuf05vq4AT48Pq8RMi876zV8rr8cV969uTOzWdB/k+Lj5yI2PBtB1bGQisGen7MM1GcZlQTBXw==}
+
+ '@walletconnect/jsonrpc-http-connection@1.0.8':
+ resolution: {integrity: sha512-+B7cRuaxijLeFDJUq5hAzNyef3e3tBDIxyaCNmFtjwnod5AGis3RToNqzFU33vpVcxFhofkpE7Cx+5MYejbMGw==}
+
+ '@walletconnect/jsonrpc-provider@1.0.14':
+ resolution: {integrity: sha512-rtsNY1XqHvWj0EtITNeuf8PHMvlCLiS3EjQL+WOkxEOA4KPxsohFnBDeyPYiNm4ZvkQdLnece36opYidmtbmow==}
+
+ '@walletconnect/jsonrpc-types@1.0.4':
+ resolution: {integrity: sha512-P6679fG/M+wuWg9TY8mh6xFSdYnFyFjwFelxyISxMDrlbXokorEVXYOxiqEbrU3x1BmBoCAJJ+vtEaEoMlpCBQ==}
+
+ '@walletconnect/jsonrpc-utils@1.0.8':
+ resolution: {integrity: sha512-vdeb03bD8VzJUL6ZtzRYsFMq1eZQcM3EAzT0a3st59dyLfJ0wq+tKMpmGH7HlB7waD858UWgfIcudbPFsbzVdw==}
+
+ '@walletconnect/jsonrpc-ws-connection@1.0.14':
+ resolution: {integrity: sha512-Jsl6fC55AYcbkNVkwNM6Jo+ufsuCQRqViOQ8ZBPH9pRREHH9welbBiszuTLqEJiQcO/6XfFDl6bzCJIkrEi8XA==}
+
+ '@walletconnect/keyvaluestorage@1.1.1':
+ resolution: {integrity: sha512-V7ZQq2+mSxAq7MrRqDxanTzu2RcElfK1PfNYiaVnJgJ7Q7G7hTVwF8voIBx92qsRyGHZihrwNPHuZd1aKkd0rA==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- xstate: ^5.11.0
+ '@react-native-async-storage/async-storage': 1.x
peerDependenciesMeta:
- xstate:
+ '@react-native-async-storage/async-storage':
optional: true
+ '@walletconnect/logger@2.1.2':
+ resolution: {integrity: sha512-aAb28I3S6pYXZHQm5ESB+V6rDqIYfsnHaQyzFbwUUBFY4H0OXx/YtTl8lvhUNhMMfb9UxbwEBS253TlXUYJWSw==}
+
+ '@walletconnect/modal-core@2.6.2':
+ resolution: {integrity: sha512-cv8ibvdOJQv2B+nyxP9IIFdxvQznMz8OOr/oR/AaUZym4hjXNL/l1a2UlSQBXrVjo3xxbouMxLb3kBsHoYP2CA==}
+
+ '@walletconnect/modal-ui@2.6.2':
+ resolution: {integrity: sha512-rbdstM1HPGvr7jprQkyPggX7rP4XiCG85ZA+zWBEX0dVQg8PpAgRUqpeub4xQKDgY7pY/xLRXSiCVdWGqvG2HA==}
+
+ '@walletconnect/modal@2.6.2':
+ resolution: {integrity: sha512-eFopgKi8AjKf/0U4SemvcYw9zlLpx9njVN8sf6DAkowC2Md0gPU/UNEbH1Wwj407pEKnEds98pKWib1NN1ACoA==}
+
+ '@walletconnect/relay-api@1.0.11':
+ resolution: {integrity: sha512-tLPErkze/HmC9aCmdZOhtVmYZq1wKfWTJtygQHoWtgg722Jd4homo54Cs4ak2RUFUZIGO2RsOpIcWipaua5D5Q==}
+
+ '@walletconnect/relay-auth@1.0.4':
+ resolution: {integrity: sha512-kKJcS6+WxYq5kshpPaxGHdwf5y98ZwbfuS4EE/NkQzqrDFm5Cj+dP8LofzWvjrrLkZq7Afy7WrQMXdLy8Sx7HQ==}
+
+ '@walletconnect/safe-json@1.0.2':
+ resolution: {integrity: sha512-Ogb7I27kZ3LPC3ibn8ldyUr5544t3/STow9+lzz7Sfo808YD7SBWk7SAsdBFlYgP2zDRy2hS3sKRcuSRM0OTmA==}
+
+ '@walletconnect/sign-client@2.15.1':
+ resolution: {integrity: sha512-YnLNEmCHgZ8yBpE3hwZnHD/bVznVMguSAlwLBNOoWUH2f4d9mR8bqa6KeVXqZ3e8mVHcxKTJTjTJ3oQMLyKIjw==}
+
+ '@walletconnect/time@1.0.2':
+ resolution: {integrity: sha512-uzdd9woDcJ1AaBZRhqy5rNC9laqWGErfc4dxA9a87mPdKOgWMD85mcFo9dIYIts/Jwocfwn07EC6EzclKubk/g==}
+
+ '@walletconnect/types@2.15.1':
+ resolution: {integrity: sha512-4WkMsHD8ioZI5GmxNT0qMlz6msI7ZajBcTyDxfRncaNZVau0C+Btw1U4jWO+gxwJVDJY+Ue/cb1QKJ5BanZsyw==}
+
+ '@walletconnect/universal-provider@2.15.1':
+ resolution: {integrity: sha512-JvKwHoE/ugWSKOmrEr03go1V79N0bbYV6w24Lqlzz4VAoReZZo8TDKsya7UkJ1L5HUCgKVP+AVktuJv8khzJ6w==}
+
+ '@walletconnect/utils@2.15.1':
+ resolution: {integrity: sha512-i5AR8XpZdcX8ghaCjYV13Er/KAGe56c1mLaG9c2cv9kmnZMZijeMdInjX/flnSM1RFDUiZXvKPMUNwlCL4NsWw==}
+
+ '@walletconnect/window-getters@1.0.1':
+ resolution: {integrity: sha512-vHp+HqzGxORPAN8gY03qnbTMnhqIwjeRJNOMOAzePRg4xVEEE2WvYsI9G2NMjOknA8hnuYbU3/hwLcKbjhc8+Q==}
+
+ '@walletconnect/window-metadata@1.0.1':
+ resolution: {integrity: sha512-9koTqyGrM2cqFRW517BPY/iEtUDx2r1+Pwwu5m7sJ7ka79wi3EyqhqcICk/yDmv6jAS1rjKgTKXlEhanYjijcA==}
+
abbrev@1.0.9:
- resolution:
- {
- integrity: sha512-LEyx4aLEC3x6T0UguF6YILf+ntvmOaWsVfENmIW0E9H09vKlLDGelMjjSm0jkDHALj8A8quZ/HapKNigzwge+Q==,
- }
+ resolution: {integrity: sha512-LEyx4aLEC3x6T0UguF6YILf+ntvmOaWsVfENmIW0E9H09vKlLDGelMjjSm0jkDHALj8A8quZ/HapKNigzwge+Q==}
abitype@1.0.5:
- resolution:
- {
- integrity: sha512-YzDhti7cjlfaBhHutMaboYB21Ha3rXR9QTkNJFzYC4kC8YclaiwPBBBJY8ejFdu2wnJeZCVZSMlQJ7fi8S6hsw==,
- }
+ resolution: {integrity: sha512-YzDhti7cjlfaBhHutMaboYB21Ha3rXR9QTkNJFzYC4kC8YclaiwPBBBJY8ejFdu2wnJeZCVZSMlQJ7fi8S6hsw==}
peerDependencies:
- typescript: ">=5.0.4"
+ typescript: '>=5.0.4'
zod: ^3 >=3.22.0
peerDependenciesMeta:
typescript:
@@ -3976,2144 +2564,1486 @@ packages:
optional: true
abort-controller@3.0.0:
- resolution:
- {
- integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==,
- }
- engines: { node: ">=6.5" }
+ resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
+ engines: {node: '>=6.5'}
abortcontroller-polyfill@1.7.5:
- resolution:
- {
- integrity: sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ==,
- }
+ resolution: {integrity: sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ==}
+
+ acorn-import-attributes@1.9.5:
+ resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==}
+ peerDependencies:
+ acorn: ^8
acorn-jsx@5.3.2:
- resolution:
- {
- integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==,
- }
+ resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
acorn-walk@8.3.3:
- resolution:
- {
- integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==,
- }
- engines: { node: ">=0.4.0" }
+ resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==}
+ engines: {node: '>=0.4.0'}
acorn@8.12.1:
- resolution:
- {
- integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==,
- }
- engines: { node: ">=0.4.0" }
+ resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
+ engines: {node: '>=0.4.0'}
hasBin: true
adm-zip@0.4.16:
- resolution:
- {
- integrity: sha512-TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg==,
- }
- engines: { node: ">=0.3.0" }
+ resolution: {integrity: sha512-TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg==}
+ engines: {node: '>=0.3.0'}
aes-js@3.0.0:
- resolution:
- {
- integrity: sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==,
- }
+ resolution: {integrity: sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==}
aes-js@4.0.0-beta.5:
- resolution:
- {
- integrity: sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==,
- }
+ resolution: {integrity: sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==}
agent-base@6.0.2:
- resolution:
- {
- integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==,
- }
- engines: { node: ">= 6.0.0" }
+ resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
+ engines: {node: '>= 6.0.0'}
aggregate-error@3.1.0:
- resolution:
- {
- integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
+ engines: {node: '>=8'}
ajv@6.12.6:
- resolution:
- {
- integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==,
- }
+ resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
ajv@8.12.0:
- resolution:
- {
- integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==,
- }
+ resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
+
+ ajv@8.6.3:
+ resolution: {integrity: sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw==}
amdefine@1.0.1:
- resolution:
- {
- integrity: sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==,
- }
- engines: { node: ">=0.4.2" }
+ resolution: {integrity: sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==}
+ engines: {node: '>=0.4.2'}
ansi-align@3.0.1:
- resolution:
- {
- integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==,
- }
+ resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==}
ansi-colors@4.1.1:
- resolution:
- {
- integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==}
+ engines: {node: '>=6'}
ansi-colors@4.1.3:
- resolution:
- {
- integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
+ engines: {node: '>=6'}
ansi-escapes@4.3.2:
- resolution:
- {
- integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
+ engines: {node: '>=8'}
ansi-regex@5.0.1:
- resolution:
- {
- integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
+ engines: {node: '>=8'}
ansi-styles@3.2.1:
- resolution:
- {
- integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
+ engines: {node: '>=4'}
ansi-styles@4.3.0:
- resolution:
- {
- integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
+ engines: {node: '>=8'}
antlr4@4.13.1-patch-1:
- resolution:
- {
- integrity: sha512-OjFLWWLzDMV9rdFhpvroCWR4ooktNg9/nvVYSA5z28wuVpU36QUNuioR1XLnQtcjVlf8npjyz593PxnU/f/Cow==,
- }
- engines: { node: ">=16" }
+ resolution: {integrity: sha512-OjFLWWLzDMV9rdFhpvroCWR4ooktNg9/nvVYSA5z28wuVpU36QUNuioR1XLnQtcjVlf8npjyz593PxnU/f/Cow==}
+ engines: {node: '>=16'}
any-promise@1.3.0:
- resolution:
- {
- integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==,
- }
+ resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
anymatch@3.1.3:
- resolution:
- {
- integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
+ engines: {node: '>= 8'}
+
+ aproba@2.0.0:
+ resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==}
+
+ are-we-there-yet@2.0.0:
+ resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==}
+ engines: {node: '>=10'}
+ deprecated: This package is no longer supported.
arg@4.1.3:
- resolution:
- {
- integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==,
- }
+ resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
arg@5.0.2:
- resolution:
- {
- integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==,
- }
+ resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
argparse@1.0.10:
- resolution:
- {
- integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==,
- }
+ resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
argparse@2.0.1:
- resolution:
- {
- integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==,
- }
+ resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- array-buffer-byte-length@1.0.0:
- resolution:
- {
- integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==,
- }
+ array-buffer-byte-length@1.0.1:
+ resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
+ engines: {node: '>= 0.4'}
array-union@2.1.0:
- resolution:
- {
- integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==,
- }
- engines: { node: ">=8" }
-
- arraybuffer.prototype.slice@1.0.2:
- resolution:
- {
- integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
+ engines: {node: '>=8'}
+
+ arraybuffer.prototype.slice@1.0.3:
+ resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
+ engines: {node: '>= 0.4'}
arrify@1.0.1:
- resolution:
- {
- integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
+ engines: {node: '>=0.10.0'}
assertion-error@1.1.0:
- resolution:
- {
- integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==,
- }
+ resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
ast-parents@0.0.1:
- resolution:
- {
- integrity: sha512-XHusKxKz3zoYk1ic8Un640joHbFMhbqneyoZfoKnEGtf2ey9Uh/IdpcQplODdO/kENaMIWsD0nJm4+wX3UNLHA==,
- }
+ resolution: {integrity: sha512-XHusKxKz3zoYk1ic8Un640joHbFMhbqneyoZfoKnEGtf2ey9Uh/IdpcQplODdO/kENaMIWsD0nJm4+wX3UNLHA==}
astral-regex@2.0.0:
- resolution:
- {
- integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
+ engines: {node: '>=8'}
+
+ async-listen@3.0.0:
+ resolution: {integrity: sha512-V+SsTpDqkrWTimiotsyl33ePSjA5/KrithwupuvJ6ztsqPvGv6ge4OredFhPffVXiLN/QUWvE0XcqJaYgt6fOg==}
+ engines: {node: '>= 14'}
+
+ async-listen@3.0.1:
+ resolution: {integrity: sha512-cWMaNwUJnf37C/S5TfCkk/15MwbPRwVYALA2jtjkbHjCmAPiDXyNJy2q3p1KAZzDLHAWyarUWSujUoHR4pEgrA==}
+ engines: {node: '>= 14'}
+
+ async-sema@3.1.1:
+ resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==}
async@1.5.2:
- resolution:
- {
- integrity: sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==,
- }
+ resolution: {integrity: sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==}
async@3.2.4:
- resolution:
- {
- integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==,
- }
+ resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==}
asynckit@0.4.0:
- resolution:
- {
- integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==,
- }
+ resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
at-least-node@1.0.0:
- resolution:
- {
- integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==,
- }
- engines: { node: ">= 4.0.0" }
+ resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
+ engines: {node: '>= 4.0.0'}
atomic-sleep@1.0.0:
- resolution:
- {
- integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==,
- }
- engines: { node: ">=8.0.0" }
-
- attr-accept@2.2.2:
- resolution:
- {
- integrity: sha512-7prDjvt9HmqiZ0cl5CRjtS84sEyhsHP2coDkaZKRKVfCDo9s7iw7ChVmar78Gu9pC4SoR/28wFu/G5JJhTnqEg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==}
+ engines: {node: '>=8.0.0'}
autoprefixer@10.4.20:
- resolution:
- {
- integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==,
- }
- engines: { node: ^10 || ^12 || >=14 }
+ resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
+ engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
available-typed-arrays@1.0.5:
- resolution:
- {
- integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
+ engines: {node: '>= 0.4'}
+
+ available-typed-arrays@1.0.7:
+ resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
+ engines: {node: '>= 0.4'}
axios@1.7.3:
- resolution:
- {
- integrity: sha512-Ar7ND9pU99eJ9GpoGQKhKf58GpUOgnzuaB7ueNQ5BMi0p+LZ5oaEnfF999fAArcTIBwXTCHAmGcHOZJaWPq9Nw==,
- }
+ resolution: {integrity: sha512-Ar7ND9pU99eJ9GpoGQKhKf58GpUOgnzuaB7ueNQ5BMi0p+LZ5oaEnfF999fAArcTIBwXTCHAmGcHOZJaWPq9Nw==}
+
+ babel-plugin-macros@3.1.0:
+ resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
+ engines: {node: '>=10', npm: '>=6'}
babel-plugin-polyfill-corejs2@0.4.5:
- resolution:
- {
- integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==,
- }
+ resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==}
peerDependencies:
- "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
babel-plugin-polyfill-corejs3@0.8.4:
- resolution:
- {
- integrity: sha512-9l//BZZsPR+5XjyJMPtZSK4jv0BsTO1zDac2GC6ygx9WLGlcsnRd1Co0B2zT5fF5Ic6BZy+9m3HNZ3QcOeDKfg==,
- }
+ resolution: {integrity: sha512-9l//BZZsPR+5XjyJMPtZSK4jv0BsTO1zDac2GC6ygx9WLGlcsnRd1Co0B2zT5fF5Ic6BZy+9m3HNZ3QcOeDKfg==}
peerDependencies:
- "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
babel-plugin-polyfill-regenerator@0.5.2:
- resolution:
- {
- integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==,
- }
+ resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==}
peerDependencies:
- "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
babel-plugin-styled-components@2.1.4:
- resolution:
- {
- integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==,
- }
+ resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==}
peerDependencies:
- styled-components: ">= 2"
+ styled-components: '>= 2'
balanced-match@1.0.2:
- resolution:
- {
- integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==,
- }
+ resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
base-x@3.0.9:
- resolution:
- {
- integrity: sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==,
- }
+ resolution: {integrity: sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==}
base64-js@1.5.1:
- resolution:
- {
- integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==,
- }
+ resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
bech32@1.1.4:
- resolution:
- {
- integrity: sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==,
- }
+ resolution: {integrity: sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==}
before-after-hook@2.2.3:
- resolution:
- {
- integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==,
- }
+ resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==}
bignumber.js@9.1.2:
- resolution:
- {
- integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==,
- }
+ resolution: {integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==}
binary-extensions@2.2.0:
- resolution:
- {
- integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
+ engines: {node: '>=8'}
+
+ bindings@1.5.0:
+ resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
blakejs@1.2.1:
- resolution:
- {
- integrity: sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==,
- }
+ resolution: {integrity: sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==}
bn.js@4.11.6:
- resolution:
- {
- integrity: sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==,
- }
+ resolution: {integrity: sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==}
bn.js@4.12.0:
- resolution:
- {
- integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==,
- }
+ resolution: {integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==}
bn.js@5.2.1:
- resolution:
- {
- integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==,
- }
+ resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==}
boxen@5.1.2:
- resolution:
- {
- integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==}
+ engines: {node: '>=10'}
brace-expansion@1.1.11:
- resolution:
- {
- integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==,
- }
+ resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
brace-expansion@2.0.1:
- resolution:
- {
- integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==,
- }
+ resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
braces@3.0.2:
- resolution:
- {
- integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
+ engines: {node: '>=8'}
brorand@1.1.0:
- resolution:
- {
- integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==,
- }
+ resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==}
browser-stdout@1.3.1:
- resolution:
- {
- integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==,
- }
+ resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==}
browserify-aes@1.2.0:
- resolution:
- {
- integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==,
- }
+ resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==}
browserslist@4.23.3:
- resolution:
- {
- integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==,
- }
- engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
+ resolution: {integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
bs58@4.0.1:
- resolution:
- {
- integrity: sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==,
- }
+ resolution: {integrity: sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==}
bs58check@2.1.2:
- resolution:
- {
- integrity: sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==,
- }
+ resolution: {integrity: sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==}
buffer-from@1.1.2:
- resolution:
- {
- integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==,
- }
+ resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
buffer-xor@1.0.3:
- resolution:
- {
- integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==,
- }
+ resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==}
buffer@6.0.3:
- resolution:
- {
- integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==,
- }
-
- bufferutil@4.0.7:
- resolution:
- {
- integrity: sha512-kukuqc39WOHtdxtw4UScxF/WVnMFVSQVKhtx3AjZJzhd0RGZZldcrfSEbVsWWe6KNH253574cq5F+wpv0G9pJw==,
- }
- engines: { node: ">=6.14.2" }
+ resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
+
+ bufferutil@4.0.8:
+ resolution: {integrity: sha512-4T53u4PdgsXqKaIctwF8ifXlRTTmEPJ8iEPWFdGZvcf7sbwYo6FKFEX9eNNAnzFZ7EzJAQ3CJeOtCRA4rDp7Pw==}
+ engines: {node: '>=6.14.2'}
builtin-modules@3.3.0:
- resolution:
- {
- integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
+ engines: {node: '>=6'}
bytes@3.1.2:
- resolution:
- {
- integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
+ engines: {node: '>= 0.8'}
cacheable-lookup@7.0.0:
- resolution:
- {
- integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==,
- }
- engines: { node: ">=14.16" }
+ resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==}
+ engines: {node: '>=14.16'}
cacheable-request@10.2.14:
- resolution:
- {
- integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==,
- }
- engines: { node: ">=14.16" }
+ resolution: {integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==}
+ engines: {node: '>=14.16'}
call-bind@1.0.2:
- resolution:
- {
- integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==,
- }
+ resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
+
+ call-bind@1.0.7:
+ resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
+ engines: {node: '>= 0.4'}
callsites@3.1.0:
- resolution:
- {
- integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
+ engines: {node: '>=6'}
camelcase-css@2.0.1:
- resolution:
- {
- integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
+ engines: {node: '>= 6'}
camelcase@5.3.1:
- resolution:
- {
- integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
+ engines: {node: '>=6'}
camelcase@6.3.0:
- resolution:
- {
- integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
+ engines: {node: '>=10'}
camelize@1.0.1:
- resolution:
- {
- integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==,
- }
+ resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
caniuse-lite@1.0.30001651:
- resolution:
- {
- integrity: sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg==,
- }
+ resolution: {integrity: sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg==}
chai@4.3.10:
- resolution:
- {
- integrity: sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g==}
+ engines: {node: '>=4'}
chalk@2.4.2:
- resolution:
- {
- integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
+ engines: {node: '>=4'}
chalk@4.1.2:
- resolution:
- {
- integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
+ engines: {node: '>=10'}
charenc@0.0.2:
- resolution:
- {
- integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==,
- }
+ resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==}
check-error@1.0.3:
- resolution:
- {
- integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==,
- }
+ resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
chokidar@3.5.3:
- resolution:
- {
- integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==,
- }
- engines: { node: ">= 8.10.0" }
+ resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
+ engines: {node: '>= 8.10.0'}
+
+ chokidar@3.6.0:
+ resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
+ engines: {node: '>= 8.10.0'}
+
+ chownr@2.0.0:
+ resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
+ engines: {node: '>=10'}
ci-info@2.0.0:
- resolution:
- {
- integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==,
- }
+ resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
cipher-base@1.0.4:
- resolution:
- {
- integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==,
- }
+ resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==}
citty@0.1.6:
- resolution:
- {
- integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==,
- }
+ resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
+
+ cjs-module-lexer@1.2.3:
+ resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==}
clean-stack@2.2.0:
- resolution:
- {
- integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
+ engines: {node: '>=6'}
cli-boxes@2.2.1:
- resolution:
- {
- integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==}
+ engines: {node: '>=6'}
client-only@0.0.1:
- resolution:
- {
- integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==,
- }
+ resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
clipboardy@4.0.0:
- resolution:
- {
- integrity: sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==}
+ engines: {node: '>=18'}
cliui@6.0.0:
- resolution:
- {
- integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==,
- }
+ resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
cliui@7.0.4:
- resolution:
- {
- integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==,
- }
+ resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
cliui@8.0.1:
- resolution:
- {
- integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
+ engines: {node: '>=12'}
clsx@1.2.1:
- resolution:
- {
- integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
+ engines: {node: '>=6'}
cluster-key-slot@1.1.2:
- resolution:
- {
- integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==}
+ engines: {node: '>=0.10.0'}
+
+ code-block-writer@10.1.1:
+ resolution: {integrity: sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw==}
color-convert@1.9.3:
- resolution:
- {
- integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==,
- }
+ resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
color-convert@2.0.1:
- resolution:
- {
- integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==,
- }
- engines: { node: ">=7.0.0" }
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
+ engines: {node: '>=7.0.0'}
color-name@1.1.3:
- resolution:
- {
- integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==,
- }
+ resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
color-name@1.1.4:
- resolution:
- {
- integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==,
- }
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
+
+ color-support@1.1.3:
+ resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
+ hasBin: true
colorette@2.0.20:
- resolution:
- {
- integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==,
- }
+ resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
combined-stream@1.0.8:
- resolution:
- {
- integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
+ engines: {node: '>= 0.8'}
command-exists@1.2.9:
- resolution:
- {
- integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==,
- }
+ resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==}
commander@10.0.1:
- resolution:
- {
- integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==}
+ engines: {node: '>=14'}
commander@12.1.0:
- resolution:
- {
- integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==}
+ engines: {node: '>=18'}
commander@2.20.3:
- resolution:
- {
- integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==,
- }
+ resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
commander@3.0.2:
- resolution:
- {
- integrity: sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==,
- }
+ resolution: {integrity: sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==}
commander@4.1.1:
- resolution:
- {
- integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
+ engines: {node: '>= 6'}
commander@9.5.0:
- resolution:
- {
- integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==,
- }
- engines: { node: ^12.20.0 || >=14 }
+ resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==}
+ engines: {node: ^12.20.0 || >=14}
common-tags@1.8.2:
- resolution:
- {
- integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==,
- }
- engines: { node: ">=4.0.0" }
+ resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
+ engines: {node: '>=4.0.0'}
concat-map@0.0.1:
- resolution:
- {
- integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==,
- }
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
concurrently@8.2.2:
- resolution:
- {
- integrity: sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==,
- }
- engines: { node: ^14.13.0 || >=16.0.0 }
+ resolution: {integrity: sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==}
+ engines: {node: ^14.13.0 || >=16.0.0}
hasBin: true
config-chain@1.1.13:
- resolution:
- {
- integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==,
- }
+ resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
consola@3.2.3:
- resolution:
- {
- integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==,
- }
- engines: { node: ^14.18.0 || >=16.10.0 }
+ resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==}
+ engines: {node: ^14.18.0 || >=16.10.0}
+
+ console-control-strings@1.1.0:
+ resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
+
+ convert-hrtime@3.0.0:
+ resolution: {integrity: sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA==}
+ engines: {node: '>=8'}
+
+ convert-source-map@1.9.0:
+ resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
convert-source-map@2.0.0:
- resolution:
- {
- integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==,
- }
+ resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
cookie-es@1.0.0:
- resolution:
- {
- integrity: sha512-mWYvfOLrfEc996hlKcdABeIiPHUPC6DM2QYZdGGOvhOTbA3tjm2eBwqlJpoFdjC89NI4Qt6h0Pu06Mp+1Pj5OQ==,
- }
+ resolution: {integrity: sha512-mWYvfOLrfEc996hlKcdABeIiPHUPC6DM2QYZdGGOvhOTbA3tjm2eBwqlJpoFdjC89NI4Qt6h0Pu06Mp+1Pj5OQ==}
cookie@0.4.2:
- resolution:
- {
- integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==}
+ engines: {node: '>= 0.6'}
core-js-compat@3.33.0:
- resolution:
- {
- integrity: sha512-0w4LcLXsVEuNkIqwjjf9rjCoPhK8uqA4tMRh4Ge26vfLtUutshn+aRJU21I9LCJlh2QQHfisNToLjw1XEJLTWw==,
- }
+ resolution: {integrity: sha512-0w4LcLXsVEuNkIqwjjf9rjCoPhK8uqA4tMRh4Ge26vfLtUutshn+aRJU21I9LCJlh2QQHfisNToLjw1XEJLTWw==}
+
+ cosmiconfig@7.1.0:
+ resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
+ engines: {node: '>=10'}
cosmiconfig@8.3.6:
- resolution:
- {
- integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
+ engines: {node: '>=14'}
peerDependencies:
- typescript: ">=4.9.5"
+ typescript: '>=4.9.5'
peerDependenciesMeta:
typescript:
optional: true
crc-32@1.2.2:
- resolution:
- {
- integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==,
- }
- engines: { node: ">=0.8" }
+ resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==}
+ engines: {node: '>=0.8'}
hasBin: true
create-hash@1.2.0:
- resolution:
- {
- integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==,
- }
+ resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==}
create-hmac@1.1.7:
- resolution:
- {
- integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==,
- }
+ resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==}
create-require@1.1.1:
- resolution:
- {
- integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==,
- }
+ resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
cross-fetch@3.1.8:
- resolution:
- {
- integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==,
- }
+ resolution: {integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==}
cross-fetch@4.0.0:
- resolution:
- {
- integrity: sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==,
- }
+ resolution: {integrity: sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==}
cross-spawn@7.0.3:
- resolution:
- {
- integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
+ engines: {node: '>= 8'}
crossws@0.2.4:
- resolution:
- {
- integrity: sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg==,
- }
+ resolution: {integrity: sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg==}
peerDependencies:
- uWebSockets.js: "*"
+ uWebSockets.js: '*'
peerDependenciesMeta:
uWebSockets.js:
optional: true
crypt@0.0.2:
- resolution:
- {
- integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==,
- }
+ resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==}
crypto-random-string@2.0.0:
- resolution:
- {
- integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
+ engines: {node: '>=8'}
css-color-keywords@1.0.0:
- resolution:
- {
- integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
+ engines: {node: '>=4'}
+
+ css-selector-tokenizer@0.8.0:
+ resolution: {integrity: sha512-Jd6Ig3/pe62/qe5SBPTN8h8LeUg/pT4lLgtavPf7updwwHpvFzxvOQBHYj2LZDMjUnBzgvIUSjRcf6oT5HzHFg==}
css-to-react-native@3.2.0:
- resolution:
- {
- integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==,
- }
+ resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==}
cssesc@3.0.0:
- resolution:
- {
- integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
+ engines: {node: '>=4'}
hasBin: true
csstype@3.1.2:
- resolution:
- {
- integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==,
- }
+ resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
+
+ culori@3.3.0:
+ resolution: {integrity: sha512-pHJg+jbuFsCjz9iclQBqyL3B2HLCBF71BwVNujUYEvCeQMvV97R59MNK3R2+jgJ3a1fcZgI9B3vYgz8lzr/BFQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
d@1.0.2:
- resolution:
- {
- integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==,
- }
- engines: { node: ">=0.12" }
+ resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==}
+ engines: {node: '>=0.12'}
+
+ daisyui@4.12.10:
+ resolution: {integrity: sha512-jp1RAuzbHhGdXmn957Z2XsTZStXGHzFfF0FgIOZj3Wv9sH7OZgLfXTRZNfKVYxltGUOBsG1kbWAdF5SrqjebvA==}
+ engines: {node: '>=16.9.0'}
+
+ data-uri-to-buffer@4.0.1:
+ resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
+ engines: {node: '>= 12'}
+
+ data-view-buffer@1.0.1:
+ resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
+ engines: {node: '>= 0.4'}
+
+ data-view-byte-length@1.0.1:
+ resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
+ engines: {node: '>= 0.4'}
+
+ data-view-byte-offset@1.0.0:
+ resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
+ engines: {node: '>= 0.4'}
date-fns@2.30.0:
- resolution:
- {
- integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==,
- }
- engines: { node: ">=0.11" }
+ resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
+ engines: {node: '>=0.11'}
dateformat@4.6.3:
- resolution:
- {
- integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==,
- }
+ resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==}
+
+ dayjs@1.11.13:
+ resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
death@1.1.0:
- resolution:
- {
- integrity: sha512-vsV6S4KVHvTGxbEcij7hkWRv0It+sGGWVOM67dQde/o5Xjnr+KmLjxWJii2uEObIrt1CcM9w0Yaovx+iOlIL+w==,
- }
+ resolution: {integrity: sha512-vsV6S4KVHvTGxbEcij7hkWRv0It+sGGWVOM67dQde/o5Xjnr+KmLjxWJii2uEObIrt1CcM9w0Yaovx+iOlIL+w==}
debug@2.6.9:
- resolution:
- {
- integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==,
- }
+ resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
peerDependencies:
- supports-color: "*"
+ supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
debug@4.3.4:
- resolution:
- {
- integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==,
- }
- engines: { node: ">=6.0" }
+ resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
+ engines: {node: '>=6.0'}
peerDependencies:
- supports-color: "*"
+ supports-color: '*'
peerDependenciesMeta:
supports-color:
optional: true
decamelize@1.2.0:
- resolution:
- {
- integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
+ engines: {node: '>=0.10.0'}
decamelize@4.0.0:
- resolution:
- {
- integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==}
+ engines: {node: '>=10'}
decode-uri-component@0.2.2:
- resolution:
- {
- integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==,
- }
- engines: { node: ">=0.10" }
+ resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
+ engines: {node: '>=0.10'}
decompress-response@6.0.0:
- resolution:
- {
- integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
+ engines: {node: '>=10'}
deep-eql@4.1.4:
- resolution:
- {
- integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==}
+ engines: {node: '>=6'}
deep-extend@0.6.0:
- resolution:
- {
- integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==,
- }
- engines: { node: ">=4.0.0" }
+ resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
+ engines: {node: '>=4.0.0'}
deep-is@0.1.4:
- resolution:
- {
- integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==,
- }
+ resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
deepmerge@4.3.1:
- resolution:
- {
- integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
+ engines: {node: '>=0.10.0'}
defer-to-connect@2.0.1:
- resolution:
- {
- integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==,
- }
- engines: { node: ">=10" }
-
- define-data-property@1.1.0:
- resolution:
- {
- integrity: sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==}
+ engines: {node: '>=10'}
+
+ define-data-property@1.1.4:
+ resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
+ engines: {node: '>= 0.4'}
define-properties@1.2.1:
- resolution:
- {
- integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
+ engines: {node: '>= 0.4'}
defu@6.1.4:
- resolution:
- {
- integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==,
- }
+ resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
delayed-stream@1.0.0:
- resolution:
- {
- integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==,
- }
- engines: { node: ">=0.4.0" }
+ resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
+ engines: {node: '>=0.4.0'}
+
+ delegates@1.0.0:
+ resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
denque@2.1.0:
- resolution:
- {
- integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==,
- }
- engines: { node: ">=0.10" }
+ resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==}
+ engines: {node: '>=0.10'}
depd@2.0.0:
- resolution:
- {
- integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
+ engines: {node: '>= 0.8'}
deprecation@2.3.1:
- resolution:
- {
- integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==,
- }
+ resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==}
destr@2.0.3:
- resolution:
- {
- integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==,
- }
+ resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==}
detect-browser@5.3.0:
- resolution:
- {
- integrity: sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==,
- }
+ resolution: {integrity: sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==}
detect-libc@1.0.3:
- resolution:
- {
- integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==,
- }
- engines: { node: ">=0.10" }
+ resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
+ engines: {node: '>=0.10'}
hasBin: true
+ detect-libc@2.0.3:
+ resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
+ engines: {node: '>=8'}
+
didyoumean@1.2.2:
- resolution:
- {
- integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==,
- }
+ resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
diff@3.5.0:
- resolution:
- {
- integrity: sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==,
- }
- engines: { node: ">=0.3.1" }
+ resolution: {integrity: sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==}
+ engines: {node: '>=0.3.1'}
diff@4.0.2:
- resolution:
- {
- integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==,
- }
- engines: { node: ">=0.3.1" }
+ resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
+ engines: {node: '>=0.3.1'}
diff@5.0.0:
- resolution:
- {
- integrity: sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==,
- }
- engines: { node: ">=0.3.1" }
+ resolution: {integrity: sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==}
+ engines: {node: '>=0.3.1'}
difflib@0.2.4:
- resolution:
- {
- integrity: sha512-9YVwmMb0wQHQNr5J9m6BSj6fk4pfGITGQOOs+D9Fl+INODWFOfvhIU1hNv6GgR1RBoC/9NJcwu77zShxV0kT7w==,
- }
+ resolution: {integrity: sha512-9YVwmMb0wQHQNr5J9m6BSj6fk4pfGITGQOOs+D9Fl+INODWFOfvhIU1hNv6GgR1RBoC/9NJcwu77zShxV0kT7w==}
dijkstrajs@1.0.3:
- resolution:
- {
- integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==,
- }
+ resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==}
dir-glob@3.0.1:
- resolution:
- {
- integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
+ engines: {node: '>=8'}
dlv@1.1.3:
- resolution:
- {
- integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==,
- }
+ resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
+
+ dns-packet@5.6.1:
+ resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==}
+ engines: {node: '>=6'}
- dot-case@3.0.4:
- resolution:
- {
- integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==,
- }
+ dom-helpers@5.2.1:
+ resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
+
+ dotenv-expand@11.0.6:
+ resolution: {integrity: sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==}
+ engines: {node: '>=12'}
dotenv@16.4.5:
- resolution:
- {
- integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
+ engines: {node: '>=12'}
duplexify@4.1.2:
- resolution:
- {
- integrity: sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==,
- }
+ resolution: {integrity: sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==}
+
+ edge-runtime@2.5.9:
+ resolution: {integrity: sha512-pk+k0oK0PVXdlT4oRp4lwh+unuKB7Ng4iZ2HB+EZ7QCEQizX360Rp/F4aRpgpRgdP2ufB35N+1KppHmYjqIGSg==}
+ engines: {node: '>=16'}
+ hasBin: true
ejs@3.1.9:
- resolution:
- {
- integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==}
+ engines: {node: '>=0.10.0'}
hasBin: true
electron-to-chromium@1.5.6:
- resolution:
- {
- integrity: sha512-jwXWsM5RPf6j9dPYzaorcBSUg6AiqocPEyMpkchkvntaH9HGfOOMZwxMJjDY/XEs3T5dM7uyH1VhRMkqUU9qVw==,
- }
+ resolution: {integrity: sha512-jwXWsM5RPf6j9dPYzaorcBSUg6AiqocPEyMpkchkvntaH9HGfOOMZwxMJjDY/XEs3T5dM7uyH1VhRMkqUU9qVw==}
elliptic@6.5.4:
- resolution:
- {
- integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==,
- }
+ resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==}
emoji-regex@8.0.0:
- resolution:
- {
- integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==,
- }
+ resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
encode-utf8@1.0.3:
- resolution:
- {
- integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==,
- }
+ resolution: {integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==}
encoding@0.1.13:
- resolution:
- {
- integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==,
- }
+ resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
end-of-stream@1.4.4:
- resolution:
- {
- integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==,
- }
+ resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
enquirer@2.4.1:
- resolution:
- {
- integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==,
- }
- engines: { node: ">=8.6" }
-
- entities@4.5.0:
- resolution:
- {
- integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==,
- }
- engines: { node: ">=0.12" }
+ resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==}
+ engines: {node: '>=8.6'}
env-paths@2.2.1:
- resolution:
- {
- integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
+ engines: {node: '>=6'}
envfile@6.18.0:
- resolution:
- {
- integrity: sha512-IsYv64dtlNXTm4huvCBpbXsdZQurYUju9WoYCkSj+SDYpO3v4/dq346QsCnNZ3JcnWw0G3E6+saVkVtmPw98Gg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-IsYv64dtlNXTm4huvCBpbXsdZQurYUju9WoYCkSj+SDYpO3v4/dq346QsCnNZ3JcnWw0G3E6+saVkVtmPw98Gg==}
+ engines: {node: '>=10'}
hasBin: true
envio-darwin-arm64@2.1.0:
- resolution:
- {
- integrity: sha512-j3cCOIxhqOk8Gt4Q03BsI4mXEyrWsoMelFHqy6omO6ZFgX8f6SVK5z9b5lZKeUOBKuyX3M7x0jo2P/HKQSSCyw==,
- }
+ resolution: {integrity: sha512-j3cCOIxhqOk8Gt4Q03BsI4mXEyrWsoMelFHqy6omO6ZFgX8f6SVK5z9b5lZKeUOBKuyX3M7x0jo2P/HKQSSCyw==}
cpu: [arm64]
os: [darwin]
envio-darwin-x64@2.1.0:
- resolution:
- {
- integrity: sha512-PPPp0hUbnf07QPozElhESuCvK2ni4DNHCU3njghECAg6A5mEHR9pa/ow8Lr0sSvBqHmBhpCxx5RyF3X5i3lbYA==,
- }
+ resolution: {integrity: sha512-PPPp0hUbnf07QPozElhESuCvK2ni4DNHCU3njghECAg6A5mEHR9pa/ow8Lr0sSvBqHmBhpCxx5RyF3X5i3lbYA==}
cpu: [x64]
os: [darwin]
envio-linux-arm64@2.1.0:
- resolution:
- {
- integrity: sha512-okHUoQMEXtjUo4/x8uQXwrK5AnwfSAT1hQpAx67wZrRkrdqek7r4qfvNMgNQYnzo9/wjrmK5ZGA9uUcW7QuFlA==,
- }
+ resolution: {integrity: sha512-okHUoQMEXtjUo4/x8uQXwrK5AnwfSAT1hQpAx67wZrRkrdqek7r4qfvNMgNQYnzo9/wjrmK5ZGA9uUcW7QuFlA==}
cpu: [arm64]
os: [linux]
envio-linux-x64@2.1.0:
- resolution:
- {
- integrity: sha512-Y/FyhIGuyqgwHof1MXKTnhFRoBEJW6KgH3s4EKWBOPUidqvavKYzTiMzhuDAw2XHkgEvTPn9fhRf5gOz6QGH8w==,
- }
+ resolution: {integrity: sha512-Y/FyhIGuyqgwHof1MXKTnhFRoBEJW6KgH3s4EKWBOPUidqvavKYzTiMzhuDAw2XHkgEvTPn9fhRf5gOz6QGH8w==}
cpu: [x64]
os: [linux]
envio@2.1.0:
- resolution:
- {
- integrity: sha512-20ev9vY5Ko37oo2sh1rYMBDOoM8AVhjK8Roj+KCrNFMlrM2v2saVdExuzV/a+4Yjhb5Lle6VUkuBF6ODaHbJgw==,
- }
+ resolution: {integrity: sha512-20ev9vY5Ko37oo2sh1rYMBDOoM8AVhjK8Roj+KCrNFMlrM2v2saVdExuzV/a+4Yjhb5Lle6VUkuBF6ODaHbJgw==}
hasBin: true
error-ex@1.3.2:
- resolution:
- {
- integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==,
- }
-
- es-abstract@1.22.2:
- resolution:
- {
- integrity: sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==,
- }
- engines: { node: ">= 0.4" }
-
- es-set-tostringtag@2.0.1:
- resolution:
- {
- integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
+
+ es-abstract@1.23.3:
+ resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
+ engines: {node: '>= 0.4'}
+
+ es-define-property@1.0.0:
+ resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
+ engines: {node: '>= 0.4'}
+
+ es-errors@1.3.0:
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
+ engines: {node: '>= 0.4'}
+
+ es-module-lexer@1.4.1:
+ resolution: {integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==}
+
+ es-object-atoms@1.0.0:
+ resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
+ engines: {node: '>= 0.4'}
+
+ es-set-tostringtag@2.0.3:
+ resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
+ engines: {node: '>= 0.4'}
es-to-primitive@1.2.1:
- resolution:
- {
- integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
+ engines: {node: '>= 0.4'}
es5-ext@0.10.64:
- resolution:
- {
- integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==,
- }
- engines: { node: ">=0.10" }
+ resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==}
+ engines: {node: '>=0.10'}
es6-iterator@2.0.3:
- resolution:
- {
- integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==,
- }
+ resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
es6-promise@4.2.8:
- resolution:
- {
- integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==,
- }
+ resolution: {integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==}
es6-symbol@3.1.4:
- resolution:
- {
- integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==,
- }
- engines: { node: ">=0.12" }
+ resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==}
+ engines: {node: '>=0.12'}
+
+ esbuild-android-64@0.14.47:
+ resolution: {integrity: sha512-R13Bd9+tqLVFndncMHssZrPWe6/0Kpv2/dt4aA69soX4PRxlzsVpCvoJeFE8sOEoeVEiBkI0myjlkDodXlHa0g==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+
+ esbuild-android-arm64@0.14.47:
+ resolution: {integrity: sha512-OkwOjj7ts4lBp/TL6hdd8HftIzOy/pdtbrNA4+0oVWgGG64HrdVzAF5gxtJufAPOsEjkyh1oIYvKAUinKKQRSQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+
+ esbuild-darwin-64@0.14.47:
+ resolution: {integrity: sha512-R6oaW0y5/u6Eccti/TS6c/2c1xYTb1izwK3gajJwi4vIfNs1s8B1dQzI1UiC9T61YovOQVuePDcfqHLT3mUZJA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+
+ esbuild-darwin-arm64@0.14.47:
+ resolution: {integrity: sha512-seCmearlQyvdvM/noz1L9+qblC5vcBrhUaOoLEDDoLInF/VQ9IkobGiLlyTPYP5dW1YD4LXhtBgOyevoIHGGnw==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+
+ esbuild-freebsd-64@0.14.47:
+ resolution: {integrity: sha512-ZH8K2Q8/Ux5kXXvQMDsJcxvkIwut69KVrYQhza/ptkW50DC089bCVrJZZ3sKzIoOx+YPTrmsZvqeZERjyYrlvQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+
+ esbuild-freebsd-arm64@0.14.47:
+ resolution: {integrity: sha512-ZJMQAJQsIOhn3XTm7MPQfCzEu5b9STNC+s90zMWe2afy9EwnHV7Ov7ohEMv2lyWlc2pjqLW8QJnz2r0KZmeAEQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+
+ esbuild-linux-32@0.14.47:
+ resolution: {integrity: sha512-FxZOCKoEDPRYvq300lsWCTv1kcHgiiZfNrPtEhFAiqD7QZaXrad8LxyJ8fXGcWzIFzRiYZVtB3ttvITBvAFhKw==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+
+ esbuild-linux-64@0.14.47:
+ resolution: {integrity: sha512-nFNOk9vWVfvWYF9YNYksZptgQAdstnDCMtR6m42l5Wfugbzu11VpMCY9XrD4yFxvPo9zmzcoUL/88y0lfJZJJw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+
+ esbuild-linux-arm64@0.14.47:
+ resolution: {integrity: sha512-ywfme6HVrhWcevzmsufjd4iT3PxTfCX9HOdxA7Hd+/ZM23Y9nXeb+vG6AyA6jgq/JovkcqRHcL9XwRNpWG6XRw==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+
+ esbuild-linux-arm@0.14.47:
+ resolution: {integrity: sha512-ZGE1Bqg/gPRXrBpgpvH81tQHpiaGxa8c9Rx/XOylkIl2ypLuOcawXEAo8ls+5DFCcRGt/o3sV+PzpAFZobOsmA==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+
+ esbuild-linux-mips64le@0.14.47:
+ resolution: {integrity: sha512-mg3D8YndZ1LvUiEdDYR3OsmeyAew4MA/dvaEJxvyygahWmpv1SlEEnhEZlhPokjsUMfRagzsEF/d/2XF+kTQGg==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+
+ esbuild-linux-ppc64le@0.14.47:
+ resolution: {integrity: sha512-WER+f3+szmnZiWoK6AsrTKGoJoErG2LlauSmk73LEZFQ/iWC+KhhDsOkn1xBUpzXWsxN9THmQFltLoaFEH8F8w==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+
+ esbuild-linux-riscv64@0.14.47:
+ resolution: {integrity: sha512-1fI6bP3A3rvI9BsaaXbMoaOjLE3lVkJtLxsgLHqlBhLlBVY7UqffWBvkrX/9zfPhhVMd9ZRFiaqXnB1T7BsL2g==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+
+ esbuild-linux-s390x@0.14.47:
+ resolution: {integrity: sha512-eZrWzy0xFAhki1CWRGnhsHVz7IlSKX6yT2tj2Eg8lhAwlRE5E96Hsb0M1mPSE1dHGpt1QVwwVivXIAacF/G6mw==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+
+ esbuild-netbsd-64@0.14.47:
+ resolution: {integrity: sha512-Qjdjr+KQQVH5Q2Q1r6HBYswFTToPpss3gqCiSw2Fpq/ua8+eXSQyAMG+UvULPqXceOwpnPo4smyZyHdlkcPppQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+
+ esbuild-openbsd-64@0.14.47:
+ resolution: {integrity: sha512-QpgN8ofL7B9z8g5zZqJE+eFvD1LehRlxr25PBkjyyasakm4599iroUpaj96rdqRlO2ShuyqwJdr+oNqWwTUmQw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+
+ esbuild-sunos-64@0.14.47:
+ resolution: {integrity: sha512-uOeSgLUwukLioAJOiGYm3kNl+1wJjgJA8R671GYgcPgCx7QR73zfvYqXFFcIO93/nBdIbt5hd8RItqbbf3HtAQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+
+ esbuild-windows-32@0.14.47:
+ resolution: {integrity: sha512-H0fWsLTp2WBfKLBgwYT4OTfFly4Im/8B5f3ojDv1Kx//kiubVY0IQunP2Koc/fr/0wI7hj3IiBDbSrmKlrNgLQ==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+
+ esbuild-windows-64@0.14.47:
+ resolution: {integrity: sha512-/Pk5jIEH34T68r8PweKRi77W49KwanZ8X6lr3vDAtOlH5EumPE4pBHqkCUdELanvsT14yMXLQ/C/8XPi1pAtkQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+
+ esbuild-windows-arm64@0.14.47:
+ resolution: {integrity: sha512-HFSW2lnp62fl86/qPQlqw6asIwCnEsEoNIL1h2uVMgakddf+vUuMcCbtUY1i8sst7KkgHrVKCJQB33YhhOweCQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+
+ esbuild@0.14.47:
+ resolution: {integrity: sha512-wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA==}
+ engines: {node: '>=12'}
+ hasBin: true
esbuild@0.21.5:
- resolution:
- {
- integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
+ engines: {node: '>=12'}
hasBin: true
escalade@3.1.2:
- resolution:
- {
- integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
+ engines: {node: '>=6'}
escape-string-regexp@1.0.5:
- resolution:
- {
- integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==,
- }
- engines: { node: ">=0.8.0" }
+ resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
+ engines: {node: '>=0.8.0'}
escape-string-regexp@4.0.0:
- resolution:
- {
- integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
+ engines: {node: '>=10'}
escodegen@1.8.1:
- resolution:
- {
- integrity: sha512-yhi5S+mNTOuRvyW4gWlg5W1byMaQGWWSYHXsuFZ7GBo7tpyOwi2EdzMP/QWxh9hwkD2m+wDVHJsxhRIj+v/b/A==,
- }
- engines: { node: ">=0.12.0" }
+ resolution: {integrity: sha512-yhi5S+mNTOuRvyW4gWlg5W1byMaQGWWSYHXsuFZ7GBo7tpyOwi2EdzMP/QWxh9hwkD2m+wDVHJsxhRIj+v/b/A==}
+ engines: {node: '>=0.12.0'}
hasBin: true
- eslint-plugin-react-hooks@4.6.0:
- resolution:
- {
- integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==,
- }
- engines: { node: ">=10" }
- peerDependencies:
- eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
-
eslint-plugin-react-hooks@5.1.0-rc-fb9a90fa48-20240614:
- resolution:
- {
- integrity: sha512-xsiRwaDNF5wWNC4ZHLut+x/YcAxksUd9Rizt7LaEn3bV8VyYRpXnRJQlLOfYaVy9esk4DFP4zPPnoNVjq5Gc0w==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-xsiRwaDNF5wWNC4ZHLut+x/YcAxksUd9Rizt7LaEn3bV8VyYRpXnRJQlLOfYaVy9esk4DFP4zPPnoNVjq5Gc0w==}
+ engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
eslint-plugin-react-refresh@0.4.9:
- resolution:
- {
- integrity: sha512-QK49YrBAo5CLNLseZ7sZgvgTy21E6NEw22eZqc4teZfH8pxV3yXc9XXOYfUI6JNpw7mfHNkAeWtBxrTyykB6HA==,
- }
+ resolution: {integrity: sha512-QK49YrBAo5CLNLseZ7sZgvgTy21E6NEw22eZqc4teZfH8pxV3yXc9XXOYfUI6JNpw7mfHNkAeWtBxrTyykB6HA==}
peerDependencies:
- eslint: ">=7"
+ eslint: '>=7'
eslint-scope@8.0.2:
- resolution:
- {
- integrity: sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ resolution: {integrity: sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
eslint-visitor-keys@3.4.3:
- resolution:
- {
- integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==,
- }
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
eslint-visitor-keys@4.0.0:
- resolution:
- {
- integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
eslint@9.9.0:
- resolution:
- {
- integrity: sha512-JfiKJrbx0506OEerjK2Y1QlldtBxkAlLxT5OEcRF8uaQ86noDe2k31Vw9rnSWv+MXZHj7OOUV/dA0AhdLFcyvA==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ resolution: {integrity: sha512-JfiKJrbx0506OEerjK2Y1QlldtBxkAlLxT5OEcRF8uaQ86noDe2k31Vw9rnSWv+MXZHj7OOUV/dA0AhdLFcyvA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
- jiti: "*"
+ jiti: '*'
peerDependenciesMeta:
jiti:
optional: true
esniff@2.0.1:
- resolution:
- {
- integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==,
- }
- engines: { node: ">=0.10" }
+ resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==}
+ engines: {node: '>=0.10'}
espree@10.1.0:
- resolution:
- {
- integrity: sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==,
- }
- engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+ resolution: {integrity: sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
esprima@2.7.3:
- resolution:
- {
- integrity: sha512-OarPfz0lFCiW4/AV2Oy1Rp9qu0iusTKqykwTspGCZtPxmF81JR4MmIebvF1F9+UOKth2ZubLQ4XGGaU+hSn99A==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-OarPfz0lFCiW4/AV2Oy1Rp9qu0iusTKqykwTspGCZtPxmF81JR4MmIebvF1F9+UOKth2ZubLQ4XGGaU+hSn99A==}
+ engines: {node: '>=0.10.0'}
hasBin: true
esprima@4.0.1:
- resolution:
- {
- integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
+ engines: {node: '>=4'}
hasBin: true
esquery@1.5.0:
- resolution:
- {
- integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==,
- }
- engines: { node: ">=0.10" }
+ resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
+ engines: {node: '>=0.10'}
esrecurse@4.3.0:
- resolution:
- {
- integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==,
- }
- engines: { node: ">=4.0" }
+ resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
+ engines: {node: '>=4.0'}
estraverse@1.9.3:
- resolution:
- {
- integrity: sha512-25w1fMXQrGdoquWnScXZGckOv+Wes+JDnuN/+7ex3SauFRS72r2lFDec0EKPt2YD1wUJ/IrfEex+9yp4hfSOJA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-25w1fMXQrGdoquWnScXZGckOv+Wes+JDnuN/+7ex3SauFRS72r2lFDec0EKPt2YD1wUJ/IrfEex+9yp4hfSOJA==}
+ engines: {node: '>=0.10.0'}
estraverse@5.3.0:
- resolution:
- {
- integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==,
- }
- engines: { node: ">=4.0" }
+ resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
+ engines: {node: '>=4.0'}
estree-walker@1.0.1:
- resolution:
- {
- integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==,
- }
+ resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==}
estree-walker@2.0.2:
- resolution:
- {
- integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==,
- }
+ resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
esutils@2.0.3:
- resolution:
- {
- integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
+ engines: {node: '>=0.10.0'}
+
+ etag@1.8.1:
+ resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
+ engines: {node: '>= 0.6'}
ethereum-bloom-filters@1.0.10:
- resolution:
- {
- integrity: sha512-rxJ5OFN3RwjQxDcFP2Z5+Q9ho4eIdEmSc2ht0fCu8Se9nbXjZ7/031uXoUYJ87KHCOdVeiUuwSnoS7hmYAGVHA==,
- }
+ resolution: {integrity: sha512-rxJ5OFN3RwjQxDcFP2Z5+Q9ho4eIdEmSc2ht0fCu8Se9nbXjZ7/031uXoUYJ87KHCOdVeiUuwSnoS7hmYAGVHA==}
ethereum-cryptography@0.1.3:
- resolution:
- {
- integrity: sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==,
- }
+ resolution: {integrity: sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==}
ethereum-cryptography@1.2.0:
- resolution:
- {
- integrity: sha512-6yFQC9b5ug6/17CQpCyE3k9eKBMdhyVjzUy1WkiuY/E4vj/SXDBbCw8QEIaXqf0Mf2SnY6RmpDcwlUmBSS0EJw==,
- }
+ resolution: {integrity: sha512-6yFQC9b5ug6/17CQpCyE3k9eKBMdhyVjzUy1WkiuY/E4vj/SXDBbCw8QEIaXqf0Mf2SnY6RmpDcwlUmBSS0EJw==}
ethereum-cryptography@2.1.2:
- resolution:
- {
- integrity: sha512-Z5Ba0T0ImZ8fqXrJbpHcbpAvIswRte2wGNR/KePnu8GbbvgJ47lMxT/ZZPG6i9Jaht4azPDop4HaM00J0J59ug==,
- }
+ resolution: {integrity: sha512-Z5Ba0T0ImZ8fqXrJbpHcbpAvIswRte2wGNR/KePnu8GbbvgJ47lMxT/ZZPG6i9Jaht4azPDop4HaM00J0J59ug==}
ethereumjs-abi@0.6.8:
- resolution:
- {
- integrity: sha512-Tx0r/iXI6r+lRsdvkFDlut0N08jWMnKRZ6Gkq+Nmw75lZe4e6o3EkSnkaBP5NF6+m5PTGAr9JP43N3LyeoglsA==,
- }
+ resolution: {integrity: sha512-Tx0r/iXI6r+lRsdvkFDlut0N08jWMnKRZ6Gkq+Nmw75lZe4e6o3EkSnkaBP5NF6+m5PTGAr9JP43N3LyeoglsA==}
ethereumjs-util@6.2.1:
- resolution:
- {
- integrity: sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==,
- }
+ resolution: {integrity: sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==}
ethers@5.7.2:
- resolution:
- {
- integrity: sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==,
- }
+ resolution: {integrity: sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==}
ethers@6.13.2:
- resolution:
- {
- integrity: sha512-9VkriTTed+/27BGuY1s0hf441kqwHJ1wtN2edksEtiRvXx+soxRX3iSXTfFqq2+YwrOqbDoTHjIhQnjJRlzKmg==,
- }
- engines: { node: ">=14.0.0" }
+ resolution: {integrity: sha512-9VkriTTed+/27BGuY1s0hf441kqwHJ1wtN2edksEtiRvXx+soxRX3iSXTfFqq2+YwrOqbDoTHjIhQnjJRlzKmg==}
+ engines: {node: '>=14.0.0'}
ethers@6.8.0:
- resolution:
- {
- integrity: sha512-zrFbmQRlraM+cU5mE4CZTLBurZTs2gdp2ld0nG/f3ecBK+x6lZ69KSxBqZ4NjclxwfTxl5LeNufcBbMsTdY53Q==,
- }
- engines: { node: ">=14.0.0" }
+ resolution: {integrity: sha512-zrFbmQRlraM+cU5mE4CZTLBurZTs2gdp2ld0nG/f3ecBK+x6lZ69KSxBqZ4NjclxwfTxl5LeNufcBbMsTdY53Q==}
+ engines: {node: '>=14.0.0'}
ethjs-unit@0.1.6:
- resolution:
- {
- integrity: sha512-/Sn9Y0oKl0uqQuvgFk/zQgR7aw1g36qX/jzSQ5lSwlO0GigPymk4eGQfeNTD03w1dPOqfz8V77Cy43jH56pagw==,
- }
- engines: { node: ">=6.5.0", npm: ">=3" }
+ resolution: {integrity: sha512-/Sn9Y0oKl0uqQuvgFk/zQgR7aw1g36qX/jzSQ5lSwlO0GigPymk4eGQfeNTD03w1dPOqfz8V77Cy43jH56pagw==}
+ engines: {node: '>=6.5.0', npm: '>=3'}
ethjs-util@0.1.6:
- resolution:
- {
- integrity: sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==,
- }
- engines: { node: ">=6.5.0", npm: ">=3" }
+ resolution: {integrity: sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==}
+ engines: {node: '>=6.5.0', npm: '>=3'}
event-emitter@0.3.5:
- resolution:
- {
- integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==,
- }
+ resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
event-target-shim@5.0.1:
- resolution:
- {
- integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
+ engines: {node: '>=6'}
eventemitter3@4.0.4:
- resolution:
- {
- integrity: sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==,
- }
+ resolution: {integrity: sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==}
eventemitter3@5.0.1:
- resolution:
- {
- integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==,
- }
+ resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
events@3.3.0:
- resolution:
- {
- integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==,
- }
- engines: { node: ">=0.8.x" }
+ resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
+ engines: {node: '>=0.8.x'}
evp_bytestokey@1.0.3:
- resolution:
- {
- integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==,
- }
+ resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==}
execa@8.0.1:
- resolution:
- {
- integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==,
- }
- engines: { node: ">=16.17" }
+ resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
+ engines: {node: '>=16.17'}
ext@1.7.0:
- resolution:
- {
- integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==,
- }
+ resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
fast-copy@3.0.1:
- resolution:
- {
- integrity: sha512-Knr7NOtK3HWRYGtHoJrjkaWepqT8thIVGAwt0p0aUs1zqkAzXZV4vo9fFNwyb5fcqK1GKYFYxldQdIDVKhUAfA==,
- }
+ resolution: {integrity: sha512-Knr7NOtK3HWRYGtHoJrjkaWepqT8thIVGAwt0p0aUs1zqkAzXZV4vo9fFNwyb5fcqK1GKYFYxldQdIDVKhUAfA==}
fast-deep-equal@3.1.3:
- resolution:
- {
- integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==,
- }
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
fast-diff@1.3.0:
- resolution:
- {
- integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==,
- }
+ resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
fast-glob@3.3.2:
- resolution:
- {
- integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==,
- }
- engines: { node: ">=8.6.0" }
+ resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
+ engines: {node: '>=8.6.0'}
fast-json-stable-stringify@2.1.0:
- resolution:
- {
- integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==,
- }
+ resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
fast-levenshtein@2.0.6:
- resolution:
- {
- integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==,
- }
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
fast-password-entropy@1.1.1:
- resolution:
- {
- integrity: sha512-dxm29/BPFrNgyEDygg/lf9c2xQR0vnQhG7+hZjAI39M/3um9fD4xiqG6F0ZjW6bya5m9CI0u6YryHGRtxCGCiw==,
- }
+ resolution: {integrity: sha512-dxm29/BPFrNgyEDygg/lf9c2xQR0vnQhG7+hZjAI39M/3um9fD4xiqG6F0ZjW6bya5m9CI0u6YryHGRtxCGCiw==}
fast-redact@3.3.0:
- resolution:
- {
- integrity: sha512-6T5V1QK1u4oF+ATxs1lWUmlEk6P2T9HqJG3e2DnHOdVgZy2rFJBoEnrIedcTXlkAHU/zKC+7KETJ+KGGKwxgMQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-6T5V1QK1u4oF+ATxs1lWUmlEk6P2T9HqJG3e2DnHOdVgZy2rFJBoEnrIedcTXlkAHU/zKC+7KETJ+KGGKwxgMQ==}
+ engines: {node: '>=6'}
fast-safe-stringify@2.1.1:
- resolution:
- {
- integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==,
- }
+ resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==}
+
+ fast-sha256@1.3.0:
+ resolution: {integrity: sha512-n11RGP/lrWEFI/bWdygLxhI+pVeo1ZYIVwvvPkW7azl/rOy+F3HYRZ2K5zeE9mmkhQppyv9sQFx0JM9UabnpPQ==}
+
+ fastparse@1.1.2:
+ resolution: {integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==}
fastq@1.15.0:
- resolution:
- {
- integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==,
- }
+ resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
fdir@6.2.0:
- resolution:
- {
- integrity: sha512-9XaWcDl0riOX5j2kYfy0kKdg7skw3IY6kA4LFT8Tk2yF9UdrADUy8D6AJuBLtf7ISm/MksumwAHE3WVbMRyCLw==,
- }
+ resolution: {integrity: sha512-9XaWcDl0riOX5j2kYfy0kKdg7skw3IY6kA4LFT8Tk2yF9UdrADUy8D6AJuBLtf7ISm/MksumwAHE3WVbMRyCLw==}
peerDependencies:
picomatch: ^3 || ^4
peerDependenciesMeta:
picomatch:
optional: true
+ fetch-blob@3.2.0:
+ resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
+ engines: {node: ^12.20 || >= 14.13}
+
fetch-retry@5.0.6:
- resolution:
- {
- integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==,
- }
+ resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==}
file-entry-cache@8.0.0:
- resolution:
- {
- integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==,
- }
- engines: { node: ">=16.0.0" }
-
- file-selector@0.6.0:
- resolution:
- {
- integrity: sha512-QlZ5yJC0VxHxQQsQhXvBaC7VRJ2uaxTf+Tfpu4Z/OcVQJVpZO+DGU0rkoVW5ce2SccxugvpBJoMvUs59iILYdw==,
- }
- engines: { node: ">= 12" }
+ resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
+ engines: {node: '>=16.0.0'}
+
+ file-uri-to-path@1.0.0:
+ resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
filelist@1.0.4:
- resolution:
- {
- integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==,
- }
+ resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
fill-range@7.0.1:
- resolution:
- {
- integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
+ engines: {node: '>=8'}
filter-obj@1.1.0:
- resolution:
- {
- integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==}
+ engines: {node: '>=0.10.0'}
+
+ find-root@1.1.0:
+ resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==}
find-up@2.1.0:
- resolution:
- {
- integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==}
+ engines: {node: '>=4'}
find-up@4.1.0:
- resolution:
- {
- integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
+ engines: {node: '>=8'}
find-up@5.0.0:
- resolution:
- {
- integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
+ engines: {node: '>=10'}
flat-cache@4.0.1:
- resolution:
- {
- integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==,
- }
- engines: { node: ">=16" }
+ resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
+ engines: {node: '>=16'}
flat@5.0.2:
- resolution:
- {
- integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==,
- }
+ resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
hasBin: true
flatted@3.2.9:
- resolution:
- {
- integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==,
- }
-
- follow-redirects@1.15.5:
- resolution:
- {
- integrity: sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==,
- }
- engines: { node: ">=4.0" }
- peerDependencies:
- debug: "*"
- peerDependenciesMeta:
- debug:
- optional: true
+ resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
follow-redirects@1.15.6:
- resolution:
- {
- integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==,
- }
- engines: { node: ">=4.0" }
+ resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
+ engines: {node: '>=4.0'}
peerDependencies:
- debug: "*"
+ debug: '*'
peerDependenciesMeta:
debug:
optional: true
for-each@0.3.3:
- resolution:
- {
- integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==,
- }
+ resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
form-data-encoder@2.1.4:
- resolution:
- {
- integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==,
- }
- engines: { node: ">= 14.17" }
+ resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==}
+ engines: {node: '>= 14.17'}
form-data@4.0.0:
- resolution:
- {
- integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
+ engines: {node: '>= 6'}
+
+ formdata-polyfill@4.0.10:
+ resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
+ engines: {node: '>=12.20.0'}
fp-ts@1.19.3:
- resolution:
- {
- integrity: sha512-H5KQDspykdHuztLTg+ajGN0Z2qUjcEf3Ybxc6hLt0k7/zPkn29XnKnxlBPyW2XIddWrGaJBzBl4VLYOtk39yZg==,
- }
+ resolution: {integrity: sha512-H5KQDspykdHuztLTg+ajGN0Z2qUjcEf3Ybxc6hLt0k7/zPkn29XnKnxlBPyW2XIddWrGaJBzBl4VLYOtk39yZg==}
fraction.js@4.3.7:
- resolution:
- {
- integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==,
- }
+ resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
fs-extra@0.30.0:
- resolution:
- {
- integrity: sha512-UvSPKyhMn6LEd/WpUaV9C9t3zATuqoqfWc3QdPhPLb58prN9tqYPlPWi8Krxi44loBoUzlobqZ3+8tGpxxSzwA==,
- }
+ resolution: {integrity: sha512-UvSPKyhMn6LEd/WpUaV9C9t3zATuqoqfWc3QdPhPLb58prN9tqYPlPWi8Krxi44loBoUzlobqZ3+8tGpxxSzwA==}
fs-extra@7.0.1:
- resolution:
- {
- integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==,
- }
- engines: { node: ">=6 <7 || >=8" }
+ resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==}
+ engines: {node: '>=6 <7 || >=8'}
fs-extra@8.1.0:
- resolution:
- {
- integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==,
- }
- engines: { node: ">=6 <7 || >=8" }
+ resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
+ engines: {node: '>=6 <7 || >=8'}
fs-extra@9.1.0:
- resolution:
- {
- integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
+ engines: {node: '>=10'}
+
+ fs-minipass@2.1.0:
+ resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
+ engines: {node: '>= 8'}
fs.realpath@1.0.0:
- resolution:
- {
- integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==,
- }
+ resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
fsevents@2.3.3:
- resolution:
- {
- integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==,
- }
- engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 }
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
function-bind@1.1.1:
- resolution:
- {
- integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==,
- }
+ resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
+
+ function-bind@1.1.2:
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
function.prototype.name@1.1.6:
- resolution:
- {
- integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
+ engines: {node: '>= 0.4'}
functions-have-names@1.2.3:
- resolution:
- {
- integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==,
- }
+ resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
+
+ gauge@3.0.2:
+ resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==}
+ engines: {node: '>=10'}
+ deprecated: This package is no longer supported.
gensync@1.0.0-beta.2:
- resolution:
- {
- integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==,
- }
- engines: { node: ">=6.9.0" }
+ resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
+ engines: {node: '>=6.9.0'}
get-caller-file@2.0.5:
- resolution:
- {
- integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==,
- }
- engines: { node: 6.* || 8.* || >= 10.* }
+ resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
+ engines: {node: 6.* || 8.* || >= 10.*}
get-func-name@2.0.2:
- resolution:
- {
- integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==,
- }
+ resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
get-intrinsic@1.2.1:
- resolution:
- {
- integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==,
- }
+ resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==}
+
+ get-intrinsic@1.2.4:
+ resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
+ engines: {node: '>= 0.4'}
get-own-enumerable-property-symbols@3.0.2:
- resolution:
- {
- integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==,
- }
+ resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==}
get-port-please@3.1.2:
- resolution:
- {
- integrity: sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==,
- }
+ resolution: {integrity: sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==}
get-stream@6.0.1:
- resolution:
- {
- integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
+ engines: {node: '>=10'}
get-stream@8.0.1:
- resolution:
- {
- integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==,
- }
- engines: { node: ">=16" }
-
- get-symbol-description@1.0.0:
- resolution:
- {
- integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
+ engines: {node: '>=16'}
+
+ get-symbol-description@1.0.2:
+ resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
+ engines: {node: '>= 0.4'}
ghost-testrpc@0.0.2:
- resolution:
- {
- integrity: sha512-i08dAEgJ2g8z5buJIrCTduwPIhih3DP+hOCTyyryikfV8T0bNvHnGXO67i0DD1H4GBDETTclPy9njZbfluQYrQ==,
- }
+ resolution: {integrity: sha512-i08dAEgJ2g8z5buJIrCTduwPIhih3DP+hOCTyyryikfV8T0bNvHnGXO67i0DD1H4GBDETTclPy9njZbfluQYrQ==}
hasBin: true
glob-parent@5.1.2:
- resolution:
- {
- integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
+ engines: {node: '>= 6'}
glob-parent@6.0.2:
- resolution:
- {
- integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==,
- }
- engines: { node: ">=10.13.0" }
+ resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
+ engines: {node: '>=10.13.0'}
glob@5.0.15:
- resolution:
- {
- integrity: sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==,
- }
+ resolution: {integrity: sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==}
deprecated: Glob versions prior to v9 are no longer supported
glob@7.1.6:
- resolution:
- {
- integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==,
- }
+ resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==}
deprecated: Glob versions prior to v9 are no longer supported
glob@7.2.0:
- resolution:
- {
- integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==,
- }
+ resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==}
deprecated: Glob versions prior to v9 are no longer supported
glob@7.2.3:
- resolution:
- {
- integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==,
- }
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
deprecated: Glob versions prior to v9 are no longer supported
glob@8.1.0:
- resolution:
- {
- integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
+ engines: {node: '>=12'}
deprecated: Glob versions prior to v9 are no longer supported
global-modules@2.0.0:
- resolution:
- {
- integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==}
+ engines: {node: '>=6'}
global-prefix@3.0.0:
- resolution:
- {
- integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==}
+ engines: {node: '>=6'}
globals@11.12.0:
- resolution:
- {
- integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
+ engines: {node: '>=4'}
globals@14.0.0:
- resolution:
- {
- integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
+ engines: {node: '>=18'}
globals@15.9.0:
- resolution:
- {
- integrity: sha512-SmSKyLLKFbSr6rptvP8izbyxJL4ILwqO9Jg23UA0sDlGlu58V59D1//I3vlc0KJphVdUR7vMjHIplYnzBxorQA==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-SmSKyLLKFbSr6rptvP8izbyxJL4ILwqO9Jg23UA0sDlGlu58V59D1//I3vlc0KJphVdUR7vMjHIplYnzBxorQA==}
+ engines: {node: '>=18'}
globalthis@1.0.3:
- resolution:
- {
- integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
+ engines: {node: '>= 0.4'}
globby@10.0.2:
- resolution:
- {
- integrity: sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==}
+ engines: {node: '>=8'}
globby@11.1.0:
- resolution:
- {
- integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
+ engines: {node: '>=10'}
goober@2.1.13:
- resolution:
- {
- integrity: sha512-jFj3BQeleOoy7t93E9rZ2de+ScC4lQICLwiAQmKMg9F6roKGaLSHoCDYKkWlSafg138jejvq/mTdvmnwDQgqoQ==,
- }
+ resolution: {integrity: sha512-jFj3BQeleOoy7t93E9rZ2de+ScC4lQICLwiAQmKMg9F6roKGaLSHoCDYKkWlSafg138jejvq/mTdvmnwDQgqoQ==}
peerDependencies:
csstype: ^3.0.10
gopd@1.0.1:
- resolution:
- {
- integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==,
- }
+ resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
got@12.6.1:
- resolution:
- {
- integrity: sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==,
- }
- engines: { node: ">=14.16" }
+ resolution: {integrity: sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==}
+ engines: {node: '>=14.16'}
+
+ gql.tada@1.8.6:
+ resolution: {integrity: sha512-XyN/BkZVEJ5kxgK8oDjHluLwXBLdlUO6P4+u/AmYfknFDj5M5AnaZMm3pntMDO9tpaaEczy9pfXDEJ6tYuTlyA==}
+ hasBin: true
+ peerDependencies:
+ typescript: ^5.0.0
graceful-fs@4.2.10:
- resolution:
- {
- integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==,
- }
+ resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
graceful-fs@4.2.11:
- resolution:
- {
- integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==,
- }
+ resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
graphemer@1.4.0:
- resolution:
- {
- integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==,
- }
+ resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
graphql@16.9.0:
- resolution:
- {
- integrity: sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==,
- }
- engines: { node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0 }
+ resolution: {integrity: sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==}
+ engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0}
h3@1.11.1:
- resolution:
- {
- integrity: sha512-AbaH6IDnZN6nmbnJOH72y3c5Wwh9P97soSVdGSBbcDACRdkC0FEWf25pzx4f/NuOCK6quHmW18yF2Wx+G4Zi1A==,
- }
+ resolution: {integrity: sha512-AbaH6IDnZN6nmbnJOH72y3c5Wwh9P97soSVdGSBbcDACRdkC0FEWf25pzx4f/NuOCK6quHmW18yF2Wx+G4Zi1A==}
handlebars@4.7.8:
- resolution:
- {
- integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==,
- }
- engines: { node: ">=0.4.7" }
+ resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==}
+ engines: {node: '>=0.4.7'}
hasBin: true
hardhat@2.22.1:
- resolution:
- {
- integrity: sha512-cTWYIJc5jQ132XUI8oRI/TO9L6oavPoJRCTRU9sIjkVxvkxz0Axz0K83Z3BEdJTqBQ2W84ZRoTekti84kBwCjg==,
- }
+ resolution: {integrity: sha512-cTWYIJc5jQ132XUI8oRI/TO9L6oavPoJRCTRU9sIjkVxvkxz0Axz0K83Z3BEdJTqBQ2W84ZRoTekti84kBwCjg==}
hasBin: true
peerDependencies:
- ts-node: "*"
- typescript: "*"
+ ts-node: '*'
+ typescript: '*'
peerDependenciesMeta:
ts-node:
optional: true
@@ -6121,14 +4051,11 @@ packages:
optional: true
hardhat@2.22.4:
- resolution:
- {
- integrity: sha512-09qcXJFBHQUaraJkYNr7XlmwjOj27xBB0SL2rYS024hTj9tPMbp26AFjlf5quBMO9SR4AJFg+4qWahcYcvXBuQ==,
- }
+ resolution: {integrity: sha512-09qcXJFBHQUaraJkYNr7XlmwjOj27xBB0SL2rYS024hTj9tPMbp26AFjlf5quBMO9SR4AJFg+4qWahcYcvXBuQ==}
hasBin: true
peerDependencies:
- ts-node: "*"
- typescript: "*"
+ ts-node: '*'
+ typescript: '*'
peerDependenciesMeta:
ts-node:
optional: true
@@ -6136,1773 +4063,1099 @@ packages:
optional: true
has-bigints@1.0.2:
- resolution:
- {
- integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==,
- }
+ resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
has-flag@1.0.0:
- resolution:
- {
- integrity: sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==}
+ engines: {node: '>=0.10.0'}
has-flag@3.0.0:
- resolution:
- {
- integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
+ engines: {node: '>=4'}
has-flag@4.0.0:
- resolution:
- {
- integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==,
- }
- engines: { node: ">=8" }
-
- has-property-descriptors@1.0.0:
- resolution:
- {
- integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==,
- }
+ resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
+ engines: {node: '>=8'}
+
+ has-property-descriptors@1.0.2:
+ resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
has-proto@1.0.1:
- resolution:
- {
- integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
+ engines: {node: '>= 0.4'}
+
+ has-proto@1.0.3:
+ resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
+ engines: {node: '>= 0.4'}
has-symbols@1.0.3:
- resolution:
- {
- integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
+ engines: {node: '>= 0.4'}
has-tostringtag@1.0.0:
- resolution:
- {
- integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
+ engines: {node: '>= 0.4'}
+
+ has-tostringtag@1.0.2:
+ resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
+ engines: {node: '>= 0.4'}
+
+ has-unicode@2.0.1:
+ resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
has@1.0.3:
- resolution:
- {
- integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==,
- }
- engines: { node: ">= 0.4.0" }
+ resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
+ engines: {node: '>= 0.4.0'}
hash-base@3.1.0:
- resolution:
- {
- integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==}
+ engines: {node: '>=4'}
hash.js@1.1.7:
- resolution:
- {
- integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==,
- }
+ resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==}
+
+ hashlru@2.3.0:
+ resolution: {integrity: sha512-0cMsjjIC8I+D3M44pOQdsy0OHXGLVz6Z0beRuufhKa0KfaD2wGwAev6jILzXsd3/vpnNQJmWyZtIILqM1N+n5A==}
+
+ hasown@2.0.2:
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
+ engines: {node: '>= 0.4'}
he@1.2.0:
- resolution:
- {
- integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==,
- }
+ resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
heap@0.2.7:
- resolution:
- {
- integrity: sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==,
- }
+ resolution: {integrity: sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==}
help-me@5.0.0:
- resolution:
- {
- integrity: sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==,
- }
+ resolution: {integrity: sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==}
hey-listen@1.0.8:
- resolution:
- {
- integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==,
- }
+ resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==}
hmac-drbg@1.0.1:
- resolution:
- {
- integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==,
- }
+ resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==}
hoist-non-react-statics@3.3.2:
- resolution:
- {
- integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==,
- }
+ resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
http-cache-semantics@4.1.1:
- resolution:
- {
- integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==,
- }
+ resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
http-errors@2.0.0:
- resolution:
- {
- integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
+ engines: {node: '>= 0.8'}
http-https@1.0.0:
- resolution:
- {
- integrity: sha512-o0PWwVCSp3O0wS6FvNr6xfBCHgt0m1tvPLFOCc2iFDKTRAXhB7m8klDf7ErowFH8POa6dVdGatKU5I1YYwzUyg==,
- }
+ resolution: {integrity: sha512-o0PWwVCSp3O0wS6FvNr6xfBCHgt0m1tvPLFOCc2iFDKTRAXhB7m8klDf7ErowFH8POa6dVdGatKU5I1YYwzUyg==}
http-shutdown@1.2.2:
- resolution:
- {
- integrity: sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==,
- }
- engines: { iojs: ">= 1.0.0", node: ">= 0.12.0" }
+ resolution: {integrity: sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==}
+ engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
http2-wrapper@2.2.1:
- resolution:
- {
- integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==,
- }
- engines: { node: ">=10.19.0" }
+ resolution: {integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==}
+ engines: {node: '>=10.19.0'}
https-proxy-agent@5.0.1:
- resolution:
- {
- integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
+ engines: {node: '>= 6'}
human-signals@5.0.0:
- resolution:
- {
- integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==,
- }
- engines: { node: ">=16.17.0" }
+ resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
+ engines: {node: '>=16.17.0'}
iconv-lite@0.4.24:
- resolution:
- {
- integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
+ engines: {node: '>=0.10.0'}
iconv-lite@0.6.3:
- resolution:
- {
- integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
+ engines: {node: '>=0.10.0'}
idb-keyval@6.2.1:
- resolution:
- {
- integrity: sha512-8Sb3veuYCyrZL+VBt9LJfZjLUPWVvqn8tG28VqYNFCo43KHcKuq+b4EiXGeuaLAQWL2YmyDgMp2aSpH9JHsEQg==,
- }
+ resolution: {integrity: sha512-8Sb3veuYCyrZL+VBt9LJfZjLUPWVvqn8tG28VqYNFCo43KHcKuq+b4EiXGeuaLAQWL2YmyDgMp2aSpH9JHsEQg==}
idb@7.1.1:
- resolution:
- {
- integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==,
- }
+ resolution: {integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==}
ieee754@1.2.1:
- resolution:
- {
- integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==,
- }
+ resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
ignore@5.2.4:
- resolution:
- {
- integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==,
- }
- engines: { node: ">= 4" }
+ resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
+ engines: {node: '>= 4'}
ignore@5.3.2:
- resolution:
- {
- integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==,
- }
- engines: { node: ">= 4" }
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
+ engines: {node: '>= 4'}
immutable@4.3.4:
- resolution:
- {
- integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==,
- }
+ resolution: {integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==}
import-fresh@3.3.0:
- resolution:
- {
- integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
+ engines: {node: '>=6'}
imurmurhash@0.1.4:
- resolution:
- {
- integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==,
- }
- engines: { node: ">=0.8.19" }
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
+ engines: {node: '>=0.8.19'}
indent-string@4.0.0:
- resolution:
- {
- integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
+ engines: {node: '>=8'}
inflight@1.0.6:
- resolution:
- {
- integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==,
- }
+ resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
inherits@2.0.4:
- resolution:
- {
- integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==,
- }
+ resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
ini@1.3.8:
- resolution:
- {
- integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==,
- }
-
- internal-slot@1.0.5:
- resolution:
- {
- integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
+
+ internal-slot@1.0.7:
+ resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
+ engines: {node: '>= 0.4'}
interpret@1.4.0:
- resolution:
- {
- integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==,
- }
- engines: { node: ">= 0.10" }
+ resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==}
+ engines: {node: '>= 0.10'}
+
+ intl-messageformat@10.5.14:
+ resolution: {integrity: sha512-IjC6sI0X7YRjjyVH9aUgdftcmZK7WXdHeil4KwbjDnRWjnVitKpAx3rr6t6di1joFp5188VqKcobOPA6mCLG/w==}
io-ts@1.10.4:
- resolution:
- {
- integrity: sha512-b23PteSnYXSONJ6JQXRAlvJhuw8KOtkqa87W4wDtvMrud/DTJd5X+NpOOI+O/zZwVq6v0VLAaJ+1EDViKEuN9g==,
- }
+ resolution: {integrity: sha512-b23PteSnYXSONJ6JQXRAlvJhuw8KOtkqa87W4wDtvMrud/DTJd5X+NpOOI+O/zZwVq6v0VLAaJ+1EDViKEuN9g==}
ioredis@5.3.2:
- resolution:
- {
- integrity: sha512-1DKMMzlIHM02eBBVOFQ1+AolGjs6+xEcM4PDL7NqOS6szq7H9jSaEkIUH6/a5Hl241LzW6JLSiAbNvTQjUupUA==,
- }
- engines: { node: ">=12.22.0" }
+ resolution: {integrity: sha512-1DKMMzlIHM02eBBVOFQ1+AolGjs6+xEcM4PDL7NqOS6szq7H9jSaEkIUH6/a5Hl241LzW6JLSiAbNvTQjUupUA==}
+ engines: {node: '>=12.22.0'}
iron-webcrypto@1.0.0:
- resolution:
- {
- integrity: sha512-anOK1Mktt8U1Xi7fCM3RELTuYbnFikQY5VtrDj7kPgpejV7d43tWKhzgioO0zpkazLEL/j/iayRqnJhrGfqUsg==,
- }
+ resolution: {integrity: sha512-anOK1Mktt8U1Xi7fCM3RELTuYbnFikQY5VtrDj7kPgpejV7d43tWKhzgioO0zpkazLEL/j/iayRqnJhrGfqUsg==}
is-arguments@1.1.1:
- resolution:
- {
- integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==,
- }
- engines: { node: ">= 0.4" }
-
- is-array-buffer@3.0.2:
- resolution:
- {
- integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==,
- }
+ resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
+ engines: {node: '>= 0.4'}
+
+ is-array-buffer@3.0.4:
+ resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
+ engines: {node: '>= 0.4'}
is-arrayish@0.2.1:
- resolution:
- {
- integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==,
- }
+ resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
is-bigint@1.0.4:
- resolution:
- {
- integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==,
- }
+ resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
is-binary-path@2.1.0:
- resolution:
- {
- integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
+ engines: {node: '>=8'}
is-boolean-object@1.1.2:
- resolution:
- {
- integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
+ engines: {node: '>= 0.4'}
is-buffer@1.1.6:
- resolution:
- {
- integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==,
- }
+ resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
is-callable@1.2.7:
- resolution:
- {
- integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
+ engines: {node: '>= 0.4'}
is-core-module@2.13.0:
- resolution:
- {
- integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==,
- }
+ resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==}
+
+ is-data-view@1.0.1:
+ resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
+ engines: {node: '>= 0.4'}
is-date-object@1.0.5:
- resolution:
- {
- integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
+ engines: {node: '>= 0.4'}
is-docker@3.0.0:
- resolution:
- {
- integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
hasBin: true
is-extglob@2.1.1:
- resolution:
- {
- integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
+ engines: {node: '>=0.10.0'}
is-fullwidth-code-point@3.0.0:
- resolution:
- {
- integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
+ engines: {node: '>=8'}
is-generator-function@1.0.10:
- resolution:
- {
- integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
+ engines: {node: '>= 0.4'}
is-glob@4.0.3:
- resolution:
- {
- integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
+ engines: {node: '>=0.10.0'}
is-hex-prefixed@1.0.0:
- resolution:
- {
- integrity: sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==,
- }
- engines: { node: ">=6.5.0", npm: ">=3" }
+ resolution: {integrity: sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==}
+ engines: {node: '>=6.5.0', npm: '>=3'}
is-inside-container@1.0.0:
- resolution:
- {
- integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==,
- }
- engines: { node: ">=14.16" }
+ resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
+ engines: {node: '>=14.16'}
hasBin: true
+ is-ipfs@8.0.4:
+ resolution: {integrity: sha512-upkO6a8WgBSZMMmuPzmF2NQLWXtiJtHxdEfEiMWrOzCKoZ+XEiM0XlK4fFMfo/PyiRmPMJ4PsNrXyvJeqMrJXA==}
+ engines: {node: '>=16.0.0', npm: '>=7.0.0'}
+
is-module@1.0.0:
- resolution:
- {
- integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==,
- }
-
- is-negative-zero@2.0.2:
- resolution:
- {
- integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
+
+ is-negative-zero@2.0.3:
+ resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
+ engines: {node: '>= 0.4'}
is-number-object@1.0.7:
- resolution:
- {
- integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
+ engines: {node: '>= 0.4'}
is-number@7.0.0:
- resolution:
- {
- integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==,
- }
- engines: { node: ">=0.12.0" }
+ resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
+ engines: {node: '>=0.12.0'}
is-obj@1.0.1:
- resolution:
- {
- integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==}
+ engines: {node: '>=0.10.0'}
is-path-inside@3.0.3:
- resolution:
- {
- integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
+ engines: {node: '>=8'}
is-plain-obj@2.1.0:
- resolution:
- {
- integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
+ engines: {node: '>=8'}
is-regex@1.1.4:
- resolution:
- {
- integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
+ engines: {node: '>= 0.4'}
is-regexp@1.0.0:
- resolution:
- {
- integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==,
- }
- engines: { node: ">=0.10.0" }
-
- is-shared-array-buffer@1.0.2:
- resolution:
- {
- integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==,
- }
+ resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==}
+ engines: {node: '>=0.10.0'}
+
+ is-shared-array-buffer@1.0.3:
+ resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
+ engines: {node: '>= 0.4'}
is-stream@2.0.1:
- resolution:
- {
- integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
+ engines: {node: '>=8'}
is-stream@3.0.0:
- resolution:
- {
- integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
is-string@1.0.7:
- resolution:
- {
- integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
+ engines: {node: '>= 0.4'}
is-symbol@1.0.4:
- resolution:
- {
- integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
+ engines: {node: '>= 0.4'}
is-typed-array@1.1.12:
- resolution:
- {
- integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==}
+ engines: {node: '>= 0.4'}
+
+ is-typed-array@1.1.13:
+ resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
+ engines: {node: '>= 0.4'}
is-typedarray@1.0.0:
- resolution:
- {
- integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==,
- }
+ resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
is-unicode-supported@0.1.0:
- resolution:
- {
- integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
+ engines: {node: '>=10'}
is-weakref@1.0.2:
- resolution:
- {
- integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==,
- }
+ resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
is-wsl@3.1.0:
- resolution:
- {
- integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==,
- }
- engines: { node: ">=16" }
+ resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
+ engines: {node: '>=16'}
is64bit@2.0.0:
- resolution:
- {
- integrity: sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==}
+ engines: {node: '>=18'}
isarray@2.0.5:
- resolution:
- {
- integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==,
- }
+ resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
isexe@2.0.0:
- resolution:
- {
- integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==,
- }
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- isomorphic-unfetch@3.1.0:
- resolution:
- {
- integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==,
- }
+ iso-url@1.2.1:
+ resolution: {integrity: sha512-9JPDgCN4B7QPkLtYAAOrEuAWvP9rWvR5offAr0/SeF046wIkglqH3VXgYYP6NcsKslH80UIVgmPqNe3j7tG2ng==}
+ engines: {node: '>=12'}
isows@1.0.4:
- resolution:
- {
- integrity: sha512-hEzjY+x9u9hPmBom9IIAqdJCwNLax+xrPb51vEPpERoFlIxgmZcHzsT5jKG06nvInKOBGvReAVz80Umed5CczQ==,
- }
+ resolution: {integrity: sha512-hEzjY+x9u9hPmBom9IIAqdJCwNLax+xrPb51vEPpERoFlIxgmZcHzsT5jKG06nvInKOBGvReAVz80Umed5CczQ==}
peerDependencies:
- ws: "*"
+ ws: '*'
+
+ it-pushable@3.2.3:
+ resolution: {integrity: sha512-gzYnXYK8Y5t5b/BnJUr7glfQLO4U5vyb05gPx/TyTw+4Bv1zM9gFk4YsOrnulWefMewlphCjKkakFvj1y99Tcg==}
+
+ it-stream-types@2.0.1:
+ resolution: {integrity: sha512-6DmOs5r7ERDbvS4q8yLKENcj6Yecr7QQTqWApbZdfAUTEC947d+PEha7PCqhm//9oxaLYL7TWRekwhoXl2s6fg==}
+ engines: {node: '>=16.0.0', npm: '>=7.0.0'}
jake@10.8.7:
- resolution:
- {
- integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==}
+ engines: {node: '>=10'}
hasBin: true
jest-worker@26.6.2:
- resolution:
- {
- integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==,
- }
- engines: { node: ">= 10.13.0" }
+ resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
+ engines: {node: '>= 10.13.0'}
jiti@1.21.0:
- resolution:
- {
- integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==,
- }
+ resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
hasBin: true
jose@4.15.5:
- resolution:
- {
- integrity: sha512-jc7BFxgKPKi94uOvEmzlSWFFe2+vASyXaKUpdQKatWAESU2MWjDfFf0fdfc83CDKcA5QecabZeNLyfhe3yKNkg==,
- }
+ resolution: {integrity: sha512-jc7BFxgKPKi94uOvEmzlSWFFe2+vASyXaKUpdQKatWAESU2MWjDfFf0fdfc83CDKcA5QecabZeNLyfhe3yKNkg==}
joycon@3.1.1:
- resolution:
- {
- integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
+ engines: {node: '>=10'}
js-base64@3.7.7:
- resolution:
- {
- integrity: sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==,
- }
+ resolution: {integrity: sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==}
js-cookie@3.0.5:
- resolution:
- {
- integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==}
+ engines: {node: '>=14'}
js-sha3@0.8.0:
- resolution:
- {
- integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==,
- }
+ resolution: {integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==}
js-tokens@4.0.0:
- resolution:
- {
- integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==,
- }
+ resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
js-yaml@3.14.1:
- resolution:
- {
- integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==,
- }
+ resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
hasBin: true
js-yaml@4.1.0:
- resolution:
- {
- integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==,
- }
+ resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
jsesc@0.5.0:
- resolution:
- {
- integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==,
- }
+ resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
jsesc@2.5.2:
- resolution:
- {
- integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
+ engines: {node: '>=4'}
hasBin: true
json-buffer@3.0.1:
- resolution:
- {
- integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==,
- }
+ resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
json-parse-even-better-errors@2.3.1:
- resolution:
- {
- integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==,
- }
+ resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
+
+ json-schema-to-ts@1.6.4:
+ resolution: {integrity: sha512-pR4yQ9DHz6itqswtHCm26mw45FSNfQ9rEQjosaZErhn5J3J2sIViQiz8rDaezjKAhFGpmsoczYVBgGHzFw/stA==}
json-schema-traverse@0.4.1:
- resolution:
- {
- integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==,
- }
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
json-schema-traverse@1.0.0:
- resolution:
- {
- integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==,
- }
+ resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
json-schema@0.4.0:
- resolution:
- {
- integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==,
- }
+ resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
json-stable-stringify-without-jsonify@1.0.1:
- resolution:
- {
- integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==,
- }
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
json5@1.0.2:
- resolution:
- {
- integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==,
- }
+ resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
hasBin: true
json5@2.2.3:
- resolution:
- {
- integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
+ engines: {node: '>=6'}
hasBin: true
jsonc-parser@3.2.1:
- resolution:
- {
- integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==,
- }
+ resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==}
jsonfile@2.4.0:
- resolution:
- {
- integrity: sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==,
- }
+ resolution: {integrity: sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==}
jsonfile@4.0.0:
- resolution:
- {
- integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==,
- }
+ resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
jsonfile@6.1.0:
- resolution:
- {
- integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==,
- }
+ resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
jsonpointer@5.0.1:
- resolution:
- {
- integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==}
+ engines: {node: '>=0.10.0'}
jsonschema@1.4.1:
- resolution:
- {
- integrity: sha512-S6cATIPVv1z0IlxdN+zUk5EPjkGCdnhN4wVSBlvoUO1tOLJootbo9CquNJmbIh4yikWHiUedhRYrNPn1arpEmQ==,
- }
+ resolution: {integrity: sha512-S6cATIPVv1z0IlxdN+zUk5EPjkGCdnhN4wVSBlvoUO1tOLJootbo9CquNJmbIh4yikWHiUedhRYrNPn1arpEmQ==}
keccak@3.0.4:
- resolution:
- {
- integrity: sha512-3vKuW0jV8J3XNTzvfyicFR5qvxrSAGl7KIhvgOu5cmWwM7tZRj3fMbj/pfIf4be7aznbc+prBWGjywox/g2Y6Q==,
- }
- engines: { node: ">=10.0.0" }
+ resolution: {integrity: sha512-3vKuW0jV8J3XNTzvfyicFR5qvxrSAGl7KIhvgOu5cmWwM7tZRj3fMbj/pfIf4be7aznbc+prBWGjywox/g2Y6Q==}
+ engines: {node: '>=10.0.0'}
keyv@4.5.4:
- resolution:
- {
- integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==,
- }
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
keyvaluestorage-interface@1.0.0:
- resolution:
- {
- integrity: sha512-8t6Q3TclQ4uZynJY9IGr2+SsIGwK9JHcO6ootkHCGA0CrQCRy+VkouYNO2xicET6b9al7QKzpebNow+gkpCL8g==,
- }
+ resolution: {integrity: sha512-8t6Q3TclQ4uZynJY9IGr2+SsIGwK9JHcO6ootkHCGA0CrQCRy+VkouYNO2xicET6b9al7QKzpebNow+gkpCL8g==}
kind-of@6.0.3:
- resolution:
- {
- integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
+ engines: {node: '>=0.10.0'}
klaw@1.3.1:
- resolution:
- {
- integrity: sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw==,
- }
+ resolution: {integrity: sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw==}
latest-version@7.0.0:
- resolution:
- {
- integrity: sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==,
- }
- engines: { node: ">=14.16" }
+ resolution: {integrity: sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==}
+ engines: {node: '>=14.16'}
leven@3.1.0:
- resolution:
- {
- integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
+ engines: {node: '>=6'}
levn@0.3.0:
- resolution:
- {
- integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==,
- }
- engines: { node: ">= 0.8.0" }
+ resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==}
+ engines: {node: '>= 0.8.0'}
levn@0.4.1:
- resolution:
- {
- integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==,
- }
- engines: { node: ">= 0.8.0" }
+ resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
+ engines: {node: '>= 0.8.0'}
libphonenumber-js@1.10.47:
- resolution:
- {
- integrity: sha512-b4t7VQDV29xx/ni+58yl9KWPGjnDLDXCeCTLrD4V8vDpObXZRZBrg7uX/HWZ7YXiJKqdBDGgc+barUUTNB6Slw==,
- }
+ resolution: {integrity: sha512-b4t7VQDV29xx/ni+58yl9KWPGjnDLDXCeCTLrD4V8vDpObXZRZBrg7uX/HWZ7YXiJKqdBDGgc+barUUTNB6Slw==}
lilconfig@2.1.0:
- resolution:
- {
- integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
+ engines: {node: '>=10'}
lines-and-columns@1.2.4:
- resolution:
- {
- integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==,
- }
+ resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
listhen@1.7.2:
- resolution:
- {
- integrity: sha512-7/HamOm5YD9Wb7CFgAZkKgVPA96WwhcTQoqtm2VTZGVbVVn3IWKRBTgrU7cchA3Q8k9iCsG8Osoi9GX4JsGM9g==,
- }
+ resolution: {integrity: sha512-7/HamOm5YD9Wb7CFgAZkKgVPA96WwhcTQoqtm2VTZGVbVVn3IWKRBTgrU7cchA3Q8k9iCsG8Osoi9GX4JsGM9g==}
hasBin: true
lit-element@3.3.3:
- resolution:
- {
- integrity: sha512-XbeRxmTHubXENkV4h8RIPyr8lXc+Ff28rkcQzw3G6up2xg5E8Zu1IgOWIwBLEQsu3cOVFqdYwiVi0hv0SlpqUA==,
- }
+ resolution: {integrity: sha512-XbeRxmTHubXENkV4h8RIPyr8lXc+Ff28rkcQzw3G6up2xg5E8Zu1IgOWIwBLEQsu3cOVFqdYwiVi0hv0SlpqUA==}
lit-html@2.8.0:
- resolution:
- {
- integrity: sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==,
- }
+ resolution: {integrity: sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==}
lit@2.8.0:
- resolution:
- {
- integrity: sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==,
- }
+ resolution: {integrity: sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==}
locate-path@2.0.0:
- resolution:
- {
- integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==}
+ engines: {node: '>=4'}
locate-path@5.0.0:
- resolution:
- {
- integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
+ engines: {node: '>=8'}
locate-path@6.0.0:
- resolution:
- {
- integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
+ engines: {node: '>=10'}
+
+ lodash.castarray@4.4.0:
+ resolution: {integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==}
lodash.debounce@4.0.8:
- resolution:
- {
- integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==,
- }
+ resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
lodash.defaults@4.2.0:
- resolution:
- {
- integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==,
- }
+ resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==}
lodash.isarguments@3.1.0:
- resolution:
- {
- integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==,
- }
+ resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==}
lodash.isequal@4.5.0:
- resolution:
- {
- integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==,
- }
+ resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
+
+ lodash.isplainobject@4.0.6:
+ resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
lodash.merge@4.6.2:
- resolution:
- {
- integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==,
- }
+ resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
lodash.sortby@4.7.0:
- resolution:
- {
- integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==,
- }
+ resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
lodash.truncate@4.4.2:
- resolution:
- {
- integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==,
- }
+ resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
lodash@4.17.21:
- resolution:
- {
- integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==,
- }
+ resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
log-symbols@4.1.0:
- resolution:
- {
- integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
+ engines: {node: '>=10'}
lokijs@1.5.12:
- resolution:
- {
- integrity: sha512-Q5ALD6JiS6xAUWCwX3taQmgwxyveCtIIuL08+ml0nHwT3k0S/GIFJN+Hd38b1qYIMaE5X++iqsqWVksz7SYW+Q==,
- }
+ resolution: {integrity: sha512-Q5ALD6JiS6xAUWCwX3taQmgwxyveCtIIuL08+ml0nHwT3k0S/GIFJN+Hd38b1qYIMaE5X++iqsqWVksz7SYW+Q==}
loose-envify@1.4.0:
- resolution:
- {
- integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==,
- }
+ resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
loupe@2.3.7:
- resolution:
- {
- integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==,
- }
-
- lower-case@2.0.2:
- resolution:
- {
- integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==,
- }
+ resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
lowercase-keys@3.0.0:
- resolution:
- {
- integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
lru-cache@10.2.0:
- resolution:
- {
- integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==,
- }
- engines: { node: 14 || >=16.14 }
+ resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==}
+ engines: {node: 14 || >=16.14}
lru-cache@5.1.1:
- resolution:
- {
- integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==,
- }
+ resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
lru-cache@6.0.0:
- resolution:
- {
- integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
+ engines: {node: '>=10'}
lru_map@0.3.3:
- resolution:
- {
- integrity: sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==,
- }
-
- lucide-react@0.424.0:
- resolution:
- {
- integrity: sha512-x2Nj2aytk1iOyHqt4hKenfVlySq0rYxNeEf8hE0o+Yh0iE36Rqz0rkngVdv2uQtjZ70LAE73eeplhhptYt9x4Q==,
- }
- peerDependencies:
- react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc
-
- lucide-react@0.436.0:
- resolution:
- {
- integrity: sha512-N292bIxoqm1aObAg0MzFtvhYwgQE6qnIOWx/GLj5ONgcTPH6N0fD9bVq/GfdeC9ZORBXozt/XeEKDpiB3x3vlQ==,
- }
- peerDependencies:
- react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc
+ resolution: {integrity: sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==}
magic-string@0.25.9:
- resolution:
- {
- integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==,
- }
+ resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
+
+ make-dir@3.1.0:
+ resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
+ engines: {node: '>=8'}
make-error@1.3.6:
- resolution:
- {
- integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==,
- }
+ resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
md5.js@1.3.5:
- resolution:
- {
- integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==,
- }
+ resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==}
md5@2.3.0:
- resolution:
- {
- integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==,
- }
+ resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==}
+
+ memoize-one@6.0.0:
+ resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}
memorystream@0.3.1:
- resolution:
- {
- integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==,
- }
- engines: { node: ">= 0.10.0" }
+ resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
+ engines: {node: '>= 0.10.0'}
merge-stream@2.0.0:
- resolution:
- {
- integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==,
- }
+ resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
merge2@1.4.1:
- resolution:
- {
- integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
+ engines: {node: '>= 8'}
micro-ftch@0.3.1:
- resolution:
- {
- integrity: sha512-/0LLxhzP0tfiR5hcQebtudP56gUurs2CLkGarnCiB/OqEyUFQ6U3paQi/tgLv0hBJYt2rnr9MNpxz4fiiugstg==,
- }
+ resolution: {integrity: sha512-/0LLxhzP0tfiR5hcQebtudP56gUurs2CLkGarnCiB/OqEyUFQ6U3paQi/tgLv0hBJYt2rnr9MNpxz4fiiugstg==}
micromatch@4.0.5:
- resolution:
- {
- integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==,
- }
- engines: { node: ">=8.6" }
+ resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
+ engines: {node: '>=8.6'}
mime-db@1.52.0:
- resolution:
- {
- integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
+ engines: {node: '>= 0.6'}
mime-types@2.1.35:
- resolution:
- {
- integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==,
- }
- engines: { node: ">= 0.6" }
+ resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
+ engines: {node: '>= 0.6'}
mime@3.0.0:
- resolution:
- {
- integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==,
- }
- engines: { node: ">=10.0.0" }
+ resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
+ engines: {node: '>=10.0.0'}
hasBin: true
mimic-fn@4.0.0:
- resolution:
- {
- integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
+ engines: {node: '>=12'}
mimic-response@3.1.0:
- resolution:
- {
- integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
+ engines: {node: '>=10'}
mimic-response@4.0.0:
- resolution:
- {
- integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+ mini-svg-data-uri@1.4.4:
+ resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==}
+ hasBin: true
minimalistic-assert@1.0.1:
- resolution:
- {
- integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==,
- }
+ resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
minimalistic-crypto-utils@1.0.1:
- resolution:
- {
- integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==,
- }
+ resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==}
minimatch@3.1.2:
- resolution:
- {
- integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==,
- }
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
minimatch@5.0.1:
- resolution:
- {
- integrity: sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==}
+ engines: {node: '>=10'}
minimatch@5.1.6:
- resolution:
- {
- integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
+ engines: {node: '>=10'}
minimatch@9.0.5:
- resolution:
- {
- integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==,
- }
- engines: { node: ">=16 || 14 >=14.17" }
+ resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
+ engines: {node: '>=16 || 14 >=14.17'}
minimist@1.2.8:
- resolution:
- {
- integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==,
- }
+ resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
+
+ minipass@3.3.6:
+ resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
+ engines: {node: '>=8'}
+
+ minipass@5.0.0:
+ resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
+ engines: {node: '>=8'}
+
+ minizlib@2.1.2:
+ resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
+ engines: {node: '>= 8'}
mipd@0.0.7:
- resolution:
- {
- integrity: sha512-aAPZPNDQ3uMTdKbuO2YmAw2TxLHO0moa4YKAyETM/DTj5FloZo+a+8tU+iv4GmW+sOxKLSRwcSFuczk+Cpt6fg==,
- }
+ resolution: {integrity: sha512-aAPZPNDQ3uMTdKbuO2YmAw2TxLHO0moa4YKAyETM/DTj5FloZo+a+8tU+iv4GmW+sOxKLSRwcSFuczk+Cpt6fg==}
peerDependencies:
- typescript: ">=5.0.4"
+ typescript: '>=5.0.4'
peerDependenciesMeta:
typescript:
optional: true
mkdirp@0.5.6:
- resolution:
- {
- integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==,
- }
+ resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
+ hasBin: true
+
+ mkdirp@1.0.4:
+ resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
+ engines: {node: '>=10'}
hasBin: true
mlly@1.6.1:
- resolution:
- {
- integrity: sha512-vLgaHvaeunuOXHSmEbZ9izxPx3USsk8KCQ8iC+aTlp5sKRSoZvwhHh5L9VbKSaVC6sJDqbyohIS76E2VmHIPAA==,
- }
+ resolution: {integrity: sha512-vLgaHvaeunuOXHSmEbZ9izxPx3USsk8KCQ8iC+aTlp5sKRSoZvwhHh5L9VbKSaVC6sJDqbyohIS76E2VmHIPAA==}
mnemonist@0.38.5:
- resolution:
- {
- integrity: sha512-bZTFT5rrPKtPJxj8KSV0WkPyNxl72vQepqqVUAW2ARUpUSF2qXMB6jZj7hW5/k7C1rtpzqbD/IIbJwLXUjCHeg==,
- }
+ resolution: {integrity: sha512-bZTFT5rrPKtPJxj8KSV0WkPyNxl72vQepqqVUAW2ARUpUSF2qXMB6jZj7hW5/k7C1rtpzqbD/IIbJwLXUjCHeg==}
mocha@10.2.0:
- resolution:
- {
- integrity: sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==,
- }
- engines: { node: ">= 14.0.0" }
+ resolution: {integrity: sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==}
+ engines: {node: '>= 14.0.0'}
hasBin: true
motion@10.16.2:
- resolution:
- {
- integrity: sha512-p+PurYqfUdcJZvtnmAqu5fJgV2kR0uLFQuBKtLeFVTrYEVllI99tiOTSefVNYuip9ELTEkepIIDftNdze76NAQ==,
- }
+ resolution: {integrity: sha512-p+PurYqfUdcJZvtnmAqu5fJgV2kR0uLFQuBKtLeFVTrYEVllI99tiOTSefVNYuip9ELTEkepIIDftNdze76NAQ==}
mri@1.2.0:
- resolution:
- {
- integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
+ engines: {node: '>=4'}
ms@2.0.0:
- resolution:
- {
- integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==,
- }
+ resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
ms@2.1.2:
- resolution:
- {
- integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==,
- }
+ resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
ms@2.1.3:
- resolution:
- {
- integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==,
- }
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
+
+ multiformats@13.2.2:
+ resolution: {integrity: sha512-RWI+nyf0q64vyOxL8LbKtjJMki0sogRL/8axvklNtiTM0iFCVtHwME9w6+0P1/v4dQvsIg8A45oT3ka1t/M/+A==}
multiformats@9.9.0:
- resolution:
- {
- integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==,
- }
+ resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==}
mz@2.7.0:
- resolution:
- {
- integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==,
- }
+ resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
nanoid@3.3.3:
- resolution:
- {
- integrity: sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==,
- }
- engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
+ resolution: {integrity: sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==}
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
nanoid@3.3.7:
- resolution:
- {
- integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==,
- }
- engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
+ resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
natural-compare@1.4.0:
- resolution:
- {
- integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==,
- }
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
neo-async@2.6.2:
- resolution:
- {
- integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==,
- }
+ resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
next-tick@1.1.0:
- resolution:
- {
- integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==,
- }
-
- no-case@3.0.4:
- resolution:
- {
- integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==,
- }
+ resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
node-addon-api@2.0.2:
- resolution:
- {
- integrity: sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==,
- }
+ resolution: {integrity: sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==}
node-addon-api@7.1.0:
- resolution:
- {
- integrity: sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==,
- }
- engines: { node: ^16 || ^18 || >= 20 }
+ resolution: {integrity: sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==}
+ engines: {node: ^16 || ^18 || >= 20}
+
+ node-domexception@1.0.0:
+ resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
+ engines: {node: '>=10.5.0'}
node-emoji@1.11.0:
- resolution:
- {
- integrity: sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==,
- }
+ resolution: {integrity: sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==}
node-fetch-native@1.6.4:
- resolution:
- {
- integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==,
- }
+ resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==}
+
+ node-fetch@2.6.9:
+ resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==}
+ engines: {node: 4.x || >=6.0.0}
+ peerDependencies:
+ encoding: ^0.1.0
+ peerDependenciesMeta:
+ encoding:
+ optional: true
node-fetch@2.7.0:
- resolution:
- {
- integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==,
- }
- engines: { node: 4.x || >=6.0.0 }
+ resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
+ engines: {node: 4.x || >=6.0.0}
peerDependencies:
encoding: ^0.1.0
peerDependenciesMeta:
encoding:
optional: true
+ node-fetch@3.3.2:
+ resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
node-forge@1.3.1:
- resolution:
- {
- integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==,
- }
- engines: { node: ">= 6.13.0" }
+ resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
+ engines: {node: '>= 6.13.0'}
node-gyp-build@4.6.1:
- resolution:
- {
- integrity: sha512-24vnklJmyRS8ViBNI8KbtK/r/DmXQMRiOMXTNz2nrTnAYUwjmEEbnnpB/+kt+yWRv73bPsSPRFddrcIbAxSiMQ==,
- }
+ resolution: {integrity: sha512-24vnklJmyRS8ViBNI8KbtK/r/DmXQMRiOMXTNz2nrTnAYUwjmEEbnnpB/+kt+yWRv73bPsSPRFddrcIbAxSiMQ==}
hasBin: true
node-releases@2.0.18:
- resolution:
- {
- integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==,
- }
+ resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
nopt@3.0.6:
- resolution:
- {
- integrity: sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg==,
- }
+ resolution: {integrity: sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg==}
+ hasBin: true
+
+ nopt@5.0.0:
+ resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==}
+ engines: {node: '>=6'}
hasBin: true
normalize-path@3.0.0:
- resolution:
- {
- integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
+ engines: {node: '>=0.10.0'}
normalize-range@0.1.2:
- resolution:
- {
- integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
+ engines: {node: '>=0.10.0'}
normalize-url@8.0.1:
- resolution:
- {
- integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==,
- }
- engines: { node: ">=14.16" }
+ resolution: {integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==}
+ engines: {node: '>=14.16'}
npm-run-path@5.3.0:
- resolution:
- {
- integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==,
- }
- engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+ npmlog@5.0.1:
+ resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==}
+ deprecated: This package is no longer supported.
number-to-bn@1.7.0:
- resolution:
- {
- integrity: sha512-wsJ9gfSz1/s4ZsJN01lyonwuxA1tml6X1yBDnfpMglypcBRFZZkus26EdPSlqS5GJfYddVZa22p3VNb3z5m5Ig==,
- }
- engines: { node: ">=6.5.0", npm: ">=3" }
+ resolution: {integrity: sha512-wsJ9gfSz1/s4ZsJN01lyonwuxA1tml6X1yBDnfpMglypcBRFZZkus26EdPSlqS5GJfYddVZa22p3VNb3z5m5Ig==}
+ engines: {node: '>=6.5.0', npm: '>=3'}
object-assign@4.1.1:
- resolution:
- {
- integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
+ engines: {node: '>=0.10.0'}
object-hash@3.0.0:
- resolution:
- {
- integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==,
- }
- engines: { node: ">= 6" }
-
- object-inspect@1.12.3:
- resolution:
- {
- integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==,
- }
+ resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
+ engines: {node: '>= 6'}
+
+ object-inspect@1.13.2:
+ resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==}
+ engines: {node: '>= 0.4'}
object-keys@1.1.1:
- resolution:
- {
- integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==,
- }
- engines: { node: ">= 0.4" }
-
- object.assign@4.1.4:
- resolution:
- {
- integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
+ engines: {node: '>= 0.4'}
+
+ object.assign@4.1.5:
+ resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
+ engines: {node: '>= 0.4'}
obliterator@2.0.4:
- resolution:
- {
- integrity: sha512-lgHwxlxV1qIg1Eap7LgIeoBWIMFibOjbrYPIPJZcI1mmGAI2m3lNYpK12Y+GBdPQ0U1hRwSord7GIaawz962qQ==,
- }
+ resolution: {integrity: sha512-lgHwxlxV1qIg1Eap7LgIeoBWIMFibOjbrYPIPJZcI1mmGAI2m3lNYpK12Y+GBdPQ0U1hRwSord7GIaawz962qQ==}
oboe@2.1.5:
- resolution:
- {
- integrity: sha512-zRFWiF+FoicxEs3jNI/WYUrVEgA7DeET/InK0XQuudGHRg8iIob3cNPrJTKaz4004uaA9Pbe+Dwa8iluhjLZWA==,
- }
+ resolution: {integrity: sha512-zRFWiF+FoicxEs3jNI/WYUrVEgA7DeET/InK0XQuudGHRg8iIob3cNPrJTKaz4004uaA9Pbe+Dwa8iluhjLZWA==}
ofetch@1.3.4:
- resolution:
- {
- integrity: sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw==,
- }
+ resolution: {integrity: sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw==}
ohash@1.1.3:
- resolution:
- {
- integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==,
- }
+ resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==}
on-exit-leak-free@0.2.0:
- resolution:
- {
- integrity: sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==,
- }
+ resolution: {integrity: sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==}
on-exit-leak-free@2.1.2:
- resolution:
- {
- integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==,
- }
- engines: { node: ">=14.0.0" }
+ resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==}
+ engines: {node: '>=14.0.0'}
once@1.4.0:
- resolution:
- {
- integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==,
- }
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
onetime@6.0.0:
- resolution:
- {
- integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
+ engines: {node: '>=12'}
optionator@0.8.3:
- resolution:
- {
- integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==,
- }
- engines: { node: ">= 0.8.0" }
+ resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==}
+ engines: {node: '>= 0.8.0'}
optionator@0.9.3:
- resolution:
- {
- integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==,
- }
- engines: { node: ">= 0.8.0" }
+ resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
+ engines: {node: '>= 0.8.0'}
os-tmpdir@1.0.2:
- resolution:
- {
- integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
+ engines: {node: '>=0.10.0'}
p-cancelable@3.0.0:
- resolution:
- {
- integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==,
- }
- engines: { node: ">=12.20" }
+ resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==}
+ engines: {node: '>=12.20'}
+
+ p-defer@4.0.1:
+ resolution: {integrity: sha512-Mr5KC5efvAK5VUptYEIopP1bakB85k2IWXaRC0rsh1uwn1L6M0LVml8OIQ4Gudg4oyZakf7FmeRLkMMtZW1i5A==}
+ engines: {node: '>=12'}
p-limit@1.3.0:
- resolution:
- {
- integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==}
+ engines: {node: '>=4'}
p-limit@2.3.0:
- resolution:
- {
- integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
+ engines: {node: '>=6'}
p-limit@3.1.0:
- resolution:
- {
- integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
+ engines: {node: '>=10'}
p-locate@2.0.0:
- resolution:
- {
- integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==}
+ engines: {node: '>=4'}
p-locate@4.1.0:
- resolution:
- {
- integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
+ engines: {node: '>=8'}
p-locate@5.0.0:
- resolution:
- {
- integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
+ engines: {node: '>=10'}
p-map@4.0.0:
- resolution:
- {
- integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
+ engines: {node: '>=10'}
+
+ p-queue@8.0.1:
+ resolution: {integrity: sha512-NXzu9aQJTAzbBqOt2hwsR63ea7yvxJc0PwN/zobNAudYfb1B7R08SzB4TsLeSbUCuG467NhnoT0oO6w1qRO+BA==}
+ engines: {node: '>=18'}
+
+ p-timeout@6.1.2:
+ resolution: {integrity: sha512-UbD77BuZ9Bc9aABo74gfXhNvzC9Tx7SxtHSh1fxvx3jTLLYvmVhiQZZrJzqqU0jKbN32kb5VOKiLEQI/3bIjgQ==}
+ engines: {node: '>=14.16'}
p-try@1.0.0:
- resolution:
- {
- integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==}
+ engines: {node: '>=4'}
p-try@2.2.0:
- resolution:
- {
- integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
+ engines: {node: '>=6'}
package-json@8.1.1:
- resolution:
- {
- integrity: sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==,
- }
- engines: { node: ">=14.16" }
+ resolution: {integrity: sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==}
+ engines: {node: '>=14.16'}
pako@2.1.0:
- resolution:
- {
- integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==,
- }
+ resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==}
parent-module@1.0.1:
- resolution:
- {
- integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
+ engines: {node: '>=6'}
parse-json@5.2.0:
- resolution:
- {
- integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
+ engines: {node: '>=8'}
+
+ parse-ms@2.1.0:
+ resolution: {integrity: sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==}
+ engines: {node: '>=6'}
+
+ path-browserify@1.0.1:
+ resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
path-exists@3.0.0:
- resolution:
- {
- integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
+ engines: {node: '>=4'}
path-exists@4.0.0:
- resolution:
- {
- integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
+ engines: {node: '>=8'}
path-is-absolute@1.0.1:
- resolution:
- {
- integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
+ engines: {node: '>=0.10.0'}
path-key@3.1.1:
- resolution:
- {
- integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
+ engines: {node: '>=8'}
path-key@4.0.0:
- resolution:
- {
- integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
+ engines: {node: '>=12'}
path-parse@1.0.7:
- resolution:
- {
- integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==,
- }
+ resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
+
+ path-to-regexp@6.2.1:
+ resolution: {integrity: sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==}
path-type@4.0.0:
- resolution:
- {
- integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
+ engines: {node: '>=8'}
pathe@1.1.2:
- resolution:
- {
- integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==,
- }
+ resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
pathval@1.1.1:
- resolution:
- {
- integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==,
- }
+ resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
pbkdf2@3.1.2:
- resolution:
- {
- integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==,
- }
- engines: { node: ">=0.12" }
-
- permissionless@0.1.44:
- resolution:
- {
- integrity: sha512-NQBATmG4Fp3Zqy1IjjBihfp2huV6sTzUUzZzuSQ7xBnRNABOyIm8d+q76gy2B0LnFfu47RA/aW+fNfZjnbzl4Q==,
- }
- peerDependencies:
- viem: ">=2.14.1 <2.18.0"
+ resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==}
+ engines: {node: '>=0.12'}
permissionless@0.1.45:
- resolution:
- {
- integrity: sha512-YJJrNFeP3T7mmfXExZsGz0J8SfOPgYzT3fyRIJtImFcUI2UmnyBQLrFt+BaiIXNogzAQuBvOSi6KKtyBePJ2/Q==,
- }
+ resolution: {integrity: sha512-YJJrNFeP3T7mmfXExZsGz0J8SfOPgYzT3fyRIJtImFcUI2UmnyBQLrFt+BaiIXNogzAQuBvOSi6KKtyBePJ2/Q==}
peerDependencies:
- viem: ">=2.14.1 <2.18.0"
+ viem: '>=2.14.1 <2.18.0'
picocolors@1.0.0:
- resolution:
- {
- integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==,
- }
+ resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
picocolors@1.0.1:
- resolution:
- {
- integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==,
- }
+ resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
picomatch@2.3.1:
- resolution:
- {
- integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==,
- }
- engines: { node: ">=8.6" }
+ resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
+ engines: {node: '>=8.6'}
picomatch@4.0.2:
- resolution:
- {
- integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
+ engines: {node: '>=12'}
pify@2.3.0:
- resolution:
- {
- integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
+ engines: {node: '>=0.10.0'}
pify@4.0.1:
- resolution:
- {
- integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
+ engines: {node: '>=6'}
+
+ pinata@0.4.0:
+ resolution: {integrity: sha512-FUpVWGStibuPTnLHgtoQPy2dPZY8uZBEHV8dhemVt1CNE70e3uKJEPJgQBOGDXYpek7x1cV2MhBS/zWyg1+Drg==}
pino-abstract-transport@0.5.0:
- resolution:
- {
- integrity: sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==,
- }
+ resolution: {integrity: sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==}
pino-abstract-transport@1.1.0:
- resolution:
- {
- integrity: sha512-lsleG3/2a/JIWUtf9Q5gUNErBqwIu1tUKTT3dUzaf5DySw9ra1wcqKjJjLX1VTY64Wk1eEOYsVGSaGfCK85ekA==,
- }
+ resolution: {integrity: sha512-lsleG3/2a/JIWUtf9Q5gUNErBqwIu1tUKTT3dUzaf5DySw9ra1wcqKjJjLX1VTY64Wk1eEOYsVGSaGfCK85ekA==}
pino-pretty@10.3.1:
- resolution:
- {
- integrity: sha512-az8JbIYeN/1iLj2t0jR9DV48/LQ3RC6hZPpapKPkb84Q+yTidMCpgWxIT3N0flnBDilyBQ1luWNpOeJptjdp/g==,
- }
+ resolution: {integrity: sha512-az8JbIYeN/1iLj2t0jR9DV48/LQ3RC6hZPpapKPkb84Q+yTidMCpgWxIT3N0flnBDilyBQ1luWNpOeJptjdp/g==}
hasBin: true
pino-std-serializers@4.0.0:
- resolution:
- {
- integrity: sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==,
- }
+ resolution: {integrity: sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==}
pino@7.11.0:
- resolution:
- {
- integrity: sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==,
- }
+ resolution: {integrity: sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==}
hasBin: true
pirates@4.0.6:
- resolution:
- {
- integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
+ engines: {node: '>= 6'}
pkg-types@1.0.3:
- resolution:
- {
- integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==,
- }
+ resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==}
pluralize@8.0.0:
- resolution:
- {
- integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
+ engines: {node: '>=4'}
pngjs@5.0.0:
- resolution:
- {
- integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==,
- }
- engines: { node: ">=10.13.0" }
+ resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==}
+ engines: {node: '>=10.13.0'}
+
+ possible-typed-array-names@1.0.0:
+ resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
+ engines: {node: '>= 0.4'}
postcss-import@15.1.0:
- resolution:
- {
- integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==,
- }
- engines: { node: ">=14.0.0" }
+ resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
+ engines: {node: '>=14.0.0'}
peerDependencies:
postcss: ^8.0.0
postcss-js@4.0.1:
- resolution:
- {
- integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==,
- }
- engines: { node: ^12 || ^14 || >= 16 }
+ resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
+ engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
postcss: ^8.4.21
postcss-load-config@4.0.1:
- resolution:
- {
- integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==,
- }
- engines: { node: ">= 14" }
+ resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
+ engines: {node: '>= 14'}
peerDependencies:
- postcss: ">=8.0.9"
- ts-node: ">=9.0.0"
+ postcss: '>=8.0.9'
+ ts-node: '>=9.0.0'
peerDependenciesMeta:
postcss:
optional: true
@@ -7910,1861 +5163,1154 @@ packages:
optional: true
postcss-nested@6.0.1:
- resolution:
- {
- integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==,
- }
- engines: { node: ">=12.0" }
+ resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
+ engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
+ postcss-selector-parser@6.0.10:
+ resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
+ engines: {node: '>=4'}
+
postcss-selector-parser@6.0.13:
- resolution:
- {
- integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==}
+ engines: {node: '>=4'}
postcss-value-parser@4.2.0:
- resolution:
- {
- integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==,
- }
+ resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
postcss@8.4.41:
- resolution:
- {
- integrity: sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==,
- }
- engines: { node: ^10 || ^12 || >=14 }
+ resolution: {integrity: sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==}
+ engines: {node: ^10 || ^12 || >=14}
preact@10.19.6:
- resolution:
- {
- integrity: sha512-gympg+T2Z1fG1unB8NH29yHJwnEaCH37Z32diPDku316OTnRPeMbiRV9kTrfZpocXjdfnWuFUl/Mj4BHaf6gnw==,
- }
-
- preline@2.4.1:
- resolution:
- {
- integrity: sha512-30yx5s2gEOTBWXSTPa+Th23/kGryn9Inhmp9KPzz9G8DZPp9j/LkGyyrSvdsuXh4Clc/sJFLObumFrbI/WmB0w==,
- }
+ resolution: {integrity: sha512-gympg+T2Z1fG1unB8NH29yHJwnEaCH37Z32diPDku316OTnRPeMbiRV9kTrfZpocXjdfnWuFUl/Mj4BHaf6gnw==}
prelude-ls@1.1.2:
- resolution:
- {
- integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==,
- }
- engines: { node: ">= 0.8.0" }
+ resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==}
+ engines: {node: '>= 0.8.0'}
prelude-ls@1.2.1:
- resolution:
- {
- integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==,
- }
- engines: { node: ">= 0.8.0" }
+ resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
+ engines: {node: '>= 0.8.0'}
prettier-plugin-solidity@1.4.0:
- resolution:
- {
- integrity: sha512-XXEOjKaY4nC0Hjqv+DMo+A7ZNbS70jil0phl1mdMAbKf45pkxfhPXrNBMDSWsTYTldwSX+8JOwsUynO3enVc5A==,
- }
- engines: { node: ">=16" }
+ resolution: {integrity: sha512-XXEOjKaY4nC0Hjqv+DMo+A7ZNbS70jil0phl1mdMAbKf45pkxfhPXrNBMDSWsTYTldwSX+8JOwsUynO3enVc5A==}
+ engines: {node: '>=16'}
peerDependencies:
- prettier: ">=2.3.0"
+ prettier: '>=2.3.0'
prettier@2.8.8:
- resolution:
- {
- integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==,
- }
- engines: { node: ">=10.13.0" }
+ resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
+ engines: {node: '>=10.13.0'}
hasBin: true
prettier@3.3.3:
- resolution:
- {
- integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==}
+ engines: {node: '>=14'}
hasBin: true
pretty-bytes@5.6.0:
- resolution:
- {
- integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
+ engines: {node: '>=6'}
pretty-bytes@6.1.1:
- resolution:
- {
- integrity: sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==,
- }
- engines: { node: ^14.13.1 || >=16.0.0 }
+ resolution: {integrity: sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==}
+ engines: {node: ^14.13.1 || >=16.0.0}
+
+ pretty-ms@7.0.1:
+ resolution: {integrity: sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==}
+ engines: {node: '>=10'}
process-warning@1.0.0:
- resolution:
- {
- integrity: sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==,
- }
+ resolution: {integrity: sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==}
process@0.11.10:
- resolution:
- {
- integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==,
- }
- engines: { node: ">= 0.6.0" }
+ resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
+ engines: {node: '>= 0.6.0'}
+
+ progress-events@1.0.1:
+ resolution: {integrity: sha512-MOzLIwhpt64KIVN64h1MwdKWiyKFNc/S6BoYKPIVUHFg0/eIEyBulhWCgn678v/4c0ri3FdGuzXymNCv02MUIw==}
prop-types@15.8.1:
- resolution:
- {
- integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==,
- }
+ resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
proto-list@1.2.4:
- resolution:
- {
- integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==,
- }
+ resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
proxy-compare@2.5.1:
- resolution:
- {
- integrity: sha512-oyfc0Tx87Cpwva5ZXezSp5V9vht1c7dZBhvuV/y3ctkgMVUmiAGDVeeB0dKhGSyT0v1ZTEQYpe/RXlBVBNuCLA==,
- }
+ resolution: {integrity: sha512-oyfc0Tx87Cpwva5ZXezSp5V9vht1c7dZBhvuV/y3ctkgMVUmiAGDVeeB0dKhGSyT0v1ZTEQYpe/RXlBVBNuCLA==}
proxy-from-env@1.1.0:
- resolution:
- {
- integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==,
- }
+ resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
pump@3.0.0:
- resolution:
- {
- integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==,
- }
+ resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
punycode@2.3.0:
- resolution:
- {
- integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
+ engines: {node: '>=6'}
qrcode@1.5.3:
- resolution:
- {
- integrity: sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==,
- }
- engines: { node: ">=10.13.0" }
+ resolution: {integrity: sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==}
+ engines: {node: '>=10.13.0'}
hasBin: true
query-string@7.1.3:
- resolution:
- {
- integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==}
+ engines: {node: '>=6'}
+
+ querystringify@2.2.0:
+ resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
queue-microtask@1.2.3:
- resolution:
- {
- integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==,
- }
+ resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
quick-format-unescaped@4.0.4:
- resolution:
- {
- integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==,
- }
+ resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==}
quick-lru@5.1.1:
- resolution:
- {
- integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
+ engines: {node: '>=10'}
radix3@1.1.0:
- resolution:
- {
- integrity: sha512-pNsHDxbGORSvuSScqNJ+3Km6QAVqk8CfsCBIEoDgpqLrkD2f3QM4I7d1ozJJ172OmIcoUcerZaNWqtLkRXTV3A==,
- }
+ resolution: {integrity: sha512-pNsHDxbGORSvuSScqNJ+3Km6QAVqk8CfsCBIEoDgpqLrkD2f3QM4I7d1ozJJ172OmIcoUcerZaNWqtLkRXTV3A==}
randombytes@2.1.0:
- resolution:
- {
- integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==,
- }
+ resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
raw-body@2.5.2:
- resolution:
- {
- integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
+ engines: {node: '>= 0.8'}
rc@1.2.8:
- resolution:
- {
- integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==,
- }
+ resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
hasBin: true
react-device-detect@2.2.3:
- resolution:
- {
- integrity: sha512-buYY3qrCnQVlIFHrC5UcUoAj7iANs/+srdkwsnNjI7anr3Tt7UY6MqNxtMLlr0tMBied0O49UZVK8XKs3ZIiPw==,
- }
+ resolution: {integrity: sha512-buYY3qrCnQVlIFHrC5UcUoAj7iANs/+srdkwsnNjI7anr3Tt7UY6MqNxtMLlr0tMBied0O49UZVK8XKs3ZIiPw==}
peerDependencies:
- react: ">= 0.14.0"
- react-dom: ">= 0.14.0"
-
- react-dom@18.2.0:
- resolution:
- {
- integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==,
- }
+ react: '>= 0.14.0'
+ react-dom: '>= 0.14.0'
+
+ react-device-frameset@1.3.4:
+ resolution: {integrity: sha512-M9VUa2up9TFOgsELHBFRkZf8ER0AyOYF5+5qbtYseQCZfg6XUxuNDX5VsJNfMGu6Zz6x9Dgh4rfFDFONK9H7dg==}
peerDependencies:
- react: ^18.2.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom@18.3.1:
- resolution:
- {
- integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==,
- }
+ resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
peerDependencies:
react: ^18.3.1
- react-dropzone@14.2.3:
- resolution:
- {
- integrity: sha512-O3om8I+PkFKbxCukfIR3QAGftYXDZfOE2N1mr/7qebQJHs7U+/RSL/9xomJNpRg9kM5h9soQSdf0Gc7OHF5Fug==,
- }
- engines: { node: ">= 10.13" }
- peerDependencies:
- react: ">= 16.8 || 18.0.0"
-
- react-hook-form@7.51.0:
- resolution:
- {
- integrity: sha512-BggOy5j58RdhdMzzRUHGOYhSz1oeylFAv6jUSG86OvCIvlAvS7KvnRY7yoAf2pfEiPN7BesnR0xx73nEk3qIiw==,
- }
- engines: { node: ">=12.22.0" }
- peerDependencies:
- react: ^16.8.0 || ^17 || ^18
-
react-hook-form@7.53.0:
- resolution:
- {
- integrity: sha512-M1n3HhqCww6S2hxLxciEXy2oISPnAzxY7gvwVPrtlczTM/1dDadXgUxDpHMrMTblDOcm/AXtXxHwZ3jpg1mqKQ==,
- }
- engines: { node: ">=18.0.0" }
+ resolution: {integrity: sha512-M1n3HhqCww6S2hxLxciEXy2oISPnAzxY7gvwVPrtlczTM/1dDadXgUxDpHMrMTblDOcm/AXtXxHwZ3jpg1mqKQ==}
+ engines: {node: '>=18.0.0'}
peerDependencies:
react: ^16.8.0 || ^17 || ^18 || ^19
react-hot-toast@2.4.1:
- resolution:
- {
- integrity: sha512-j8z+cQbWIM5LY37pR6uZR6D4LfseplqnuAO4co4u8917hBUvXlEqyP1ZzqVLcqoyUesZZv/ImreoCeHVDpE5pQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-j8z+cQbWIM5LY37pR6uZR6D4LfseplqnuAO4co4u8917hBUvXlEqyP1ZzqVLcqoyUesZZv/ImreoCeHVDpE5pQ==}
+ engines: {node: '>=10'}
peerDependencies:
- react: ">=16"
- react-dom: ">=16"
+ react: '>=16'
+ react-dom: '>=16'
+
+ react-intl@6.6.8:
+ resolution: {integrity: sha512-M0pkhzcgV31h++2901BiRXWl69hp2zPyLxRrSwRjd1ErXbNoubz/f4M6DrRTd4OiSUrT4ajRQzrmtS5plG4FtA==}
+ peerDependencies:
+ react: ^16.6.0 || 17 || 18
+ typescript: ^4.7 || 5
+ peerDependenciesMeta:
+ typescript:
+ optional: true
react-is@16.13.1:
- resolution:
- {
- integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==,
- }
+ resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
react-is@18.2.0:
- resolution:
- {
- integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==,
- }
+ resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
react-refresh@0.14.2:
- resolution:
- {
- integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==,
- }
- engines: { node: ">=0.10.0" }
-
- react-router-dom@6.22.2:
- resolution:
- {
- integrity: sha512-WgqxD2qySEIBPZ3w0sHH+PUAiamDeszls9tzqMPBDA1YYVucTBXLU7+gtRfcSnhe92A3glPnvSxK2dhNoAVOIQ==,
- }
- engines: { node: ">=14.0.0" }
- peerDependencies:
- react: ">=16.8"
- react-dom: ">=16.8"
+ resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
+ engines: {node: '>=0.10.0'}
react-router-dom@6.26.1:
- resolution:
- {
- integrity: sha512-veut7m41S1fLql4pLhxeSW3jlqs+4MtjRLj0xvuCEXsxusJCbs6I8yn9BxzzDX2XDgafrccY6hwjmd/bL54tFw==,
- }
- engines: { node: ">=14.0.0" }
+ resolution: {integrity: sha512-veut7m41S1fLql4pLhxeSW3jlqs+4MtjRLj0xvuCEXsxusJCbs6I8yn9BxzzDX2XDgafrccY6hwjmd/bL54tFw==}
+ engines: {node: '>=14.0.0'}
peerDependencies:
- react: ">=16.8"
- react-dom: ">=16.8"
-
- react-router@6.22.2:
- resolution:
- {
- integrity: sha512-YD3Dzprzpcq+tBMHBS822tCjnWD3iIZbTeSXMY9LPSG541EfoBGyZ3bS25KEnaZjLcmQpw2AVLkFyfgXY8uvcw==,
- }
- engines: { node: ">=14.0.0" }
- peerDependencies:
- react: ">=16.8"
+ react: '>=16.8'
+ react-dom: '>=16.8'
react-router@6.26.1:
- resolution:
- {
- integrity: sha512-kIwJveZNwp7teQRI5QmwWo39A5bXRyqpH0COKKmPnyD2vBvDwgFXSqDUYtt1h+FEyfnE8eXr7oe0MxRzVwCcvQ==,
- }
- engines: { node: ">=14.0.0" }
+ resolution: {integrity: sha512-kIwJveZNwp7teQRI5QmwWo39A5bXRyqpH0COKKmPnyD2vBvDwgFXSqDUYtt1h+FEyfnE8eXr7oe0MxRzVwCcvQ==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ react: '>=16.8'
+
+ react-select@5.8.0:
+ resolution: {integrity: sha512-TfjLDo58XrhP6VG5M/Mi56Us0Yt8X7xD6cDybC7yoRMUNm7BGO7qk8J0TLQOua/prb8vUOtsfnXZwfm30HGsAA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+
+ react-tailwindcss-datepicker@1.7.2:
+ resolution: {integrity: sha512-/NIRLB1evT69pt3Syol3cZpsAnLZlGvFWav98/Rr77Gey382C1fjKW2Emgu+SC4NtiRt6CBFwx/0Wbkn4iI+nA==}
peerDependencies:
- react: ">=16.8"
+ dayjs: ^1.11.12
+ react: ^17.0.2 || ^18.2.0
- react@18.2.0:
- resolution:
- {
- integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==,
- }
- engines: { node: ">=0.10.0" }
+ react-transition-group@4.4.5:
+ resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
+ peerDependencies:
+ react: '>=16.6.0'
+ react-dom: '>=16.6.0'
react@18.3.1:
- resolution:
- {
- integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
+ engines: {node: '>=0.10.0'}
read-cache@1.0.0:
- resolution:
- {
- integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==,
- }
+ resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
readable-stream@3.6.2:
- resolution:
- {
- integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==,
- }
- engines: { node: ">= 6" }
+ resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
+ engines: {node: '>= 6'}
readable-stream@4.4.2:
- resolution:
- {
- integrity: sha512-Lk/fICSyIhodxy1IDK2HazkeGjSmezAWX2egdtJnYhtzKEsBPJowlI6F6LPb5tqIQILrMbx22S5o3GuJavPusA==,
- }
- engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
+ resolution: {integrity: sha512-Lk/fICSyIhodxy1IDK2HazkeGjSmezAWX2egdtJnYhtzKEsBPJowlI6F6LPb5tqIQILrMbx22S5o3GuJavPusA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
readdirp@3.6.0:
- resolution:
- {
- integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==,
- }
- engines: { node: ">=8.10.0" }
+ resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
+ engines: {node: '>=8.10.0'}
real-require@0.1.0:
- resolution:
- {
- integrity: sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==,
- }
- engines: { node: ">= 12.13.0" }
+ resolution: {integrity: sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==}
+ engines: {node: '>= 12.13.0'}
rechoir@0.6.2:
- resolution:
- {
- integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==,
- }
- engines: { node: ">= 0.10" }
+ resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==}
+ engines: {node: '>= 0.10'}
recursive-readdir@2.2.3:
- resolution:
- {
- integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==,
- }
- engines: { node: ">=6.0.0" }
+ resolution: {integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==}
+ engines: {node: '>=6.0.0'}
+
+ redaxios@0.5.1:
+ resolution: {integrity: sha512-FSD2AmfdbkYwl7KDExYQlVvIrFz6Yd83pGfaGjBzM9F6rpq8g652Q4Yq5QD4c+nf4g2AgeElv1y+8ajUPiOYMg==}
redis-errors@1.2.0:
- resolution:
- {
- integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==}
+ engines: {node: '>=4'}
redis-parser@3.0.0:
- resolution:
- {
- integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==}
+ engines: {node: '>=4'}
regenerate-unicode-properties@10.1.1:
- resolution:
- {
- integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==}
+ engines: {node: '>=4'}
regenerate@1.4.2:
- resolution:
- {
- integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==,
- }
+ resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
regenerator-runtime@0.14.0:
- resolution:
- {
- integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==,
- }
+ resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==}
regenerator-transform@0.15.2:
- resolution:
- {
- integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==,
- }
-
- regexp.prototype.flags@1.5.1:
- resolution:
- {
- integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
+
+ regexp.prototype.flags@1.5.2:
+ resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
+ engines: {node: '>= 0.4'}
regexpu-core@5.3.2:
- resolution:
- {
- integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
+ engines: {node: '>=4'}
registry-auth-token@5.0.2:
- resolution:
- {
- integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==}
+ engines: {node: '>=14'}
registry-url@6.0.1:
- resolution:
- {
- integrity: sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==}
+ engines: {node: '>=12'}
regjsparser@0.9.1:
- resolution:
- {
- integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==,
- }
+ resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
hasBin: true
require-directory@2.1.1:
- resolution:
- {
- integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
+ engines: {node: '>=0.10.0'}
require-from-string@2.0.2:
- resolution:
- {
- integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
+ engines: {node: '>=0.10.0'}
require-main-filename@2.0.0:
- resolution:
- {
- integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==,
- }
+ resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
+
+ requires-port@1.0.0:
+ resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
resolve-alpn@1.2.1:
- resolution:
- {
- integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==,
- }
+ resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==}
resolve-from@4.0.0:
- resolution:
- {
- integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
+ engines: {node: '>=4'}
+
+ resolve-from@5.0.0:
+ resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
+ engines: {node: '>=8'}
resolve@1.1.7:
- resolution:
- {
- integrity: sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==,
- }
+ resolution: {integrity: sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==}
resolve@1.17.0:
- resolution:
- {
- integrity: sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==,
- }
+ resolution: {integrity: sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==}
resolve@1.22.6:
- resolution:
- {
- integrity: sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==,
- }
+ resolution: {integrity: sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==}
hasBin: true
responselike@3.0.0:
- resolution:
- {
- integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==,
- }
- engines: { node: ">=14.16" }
+ resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==}
+ engines: {node: '>=14.16'}
reusify@1.0.4:
- resolution:
- {
- integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==,
- }
- engines: { iojs: ">=1.0.0", node: ">=0.10.0" }
+ resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
+ engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
rimraf@2.6.3:
- resolution:
- {
- integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==,
- }
+ resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
+ deprecated: Rimraf versions prior to v4 are no longer supported
+ hasBin: true
+
+ rimraf@3.0.2:
+ resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
ripemd160@2.0.2:
- resolution:
- {
- integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==,
- }
+ resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==}
rlp@2.2.7:
- resolution:
- {
- integrity: sha512-d5gdPmgQ0Z+AklL2NVXr/IoSjNZFfTVvQWzL/AM2AOcSzYP2xjlb0AC8YyCLc41MSNf6P6QVtjgPdmVtzb+4lQ==,
- }
+ resolution: {integrity: sha512-d5gdPmgQ0Z+AklL2NVXr/IoSjNZFfTVvQWzL/AM2AOcSzYP2xjlb0AC8YyCLc41MSNf6P6QVtjgPdmVtzb+4lQ==}
hasBin: true
rollup-plugin-terser@7.0.2:
- resolution:
- {
- integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==,
- }
+ resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==}
deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser
peerDependencies:
rollup: ^2.0.0
rollup@2.79.1:
- resolution:
- {
- integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==,
- }
- engines: { node: ">=10.0.0" }
+ resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==}
+ engines: {node: '>=10.0.0'}
hasBin: true
rollup@4.20.0:
- resolution:
- {
- integrity: sha512-6rbWBChcnSGzIlXeIdNIZTopKYad8ZG8ajhl78lGRLsI2rX8IkaotQhVas2Ma+GPxJav19wrSzvRvuiv0YKzWw==,
- }
- engines: { node: ">=18.0.0", npm: ">=8.0.0" }
+ resolution: {integrity: sha512-6rbWBChcnSGzIlXeIdNIZTopKYad8ZG8ajhl78lGRLsI2rX8IkaotQhVas2Ma+GPxJav19wrSzvRvuiv0YKzWw==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
run-parallel@1.2.0:
- resolution:
- {
- integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==,
- }
+ resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
rxjs@7.8.1:
- resolution:
- {
- integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==,
- }
-
- safe-array-concat@1.0.1:
- resolution:
- {
- integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==,
- }
- engines: { node: ">=0.4" }
+ resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
+
+ safe-array-concat@1.1.2:
+ resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
+ engines: {node: '>=0.4'}
safe-buffer@5.2.1:
- resolution:
- {
- integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==,
- }
+ resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- safe-regex-test@1.0.0:
- resolution:
- {
- integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==,
- }
+ safe-regex-test@1.0.3:
+ resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
+ engines: {node: '>= 0.4'}
safe-stable-stringify@2.4.3:
- resolution:
- {
- integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==}
+ engines: {node: '>=10'}
safer-buffer@2.1.2:
- resolution:
- {
- integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==,
- }
+ resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
sc-istanbul@0.4.6:
- resolution:
- {
- integrity: sha512-qJFF/8tW/zJsbyfh/iT/ZM5QNHE3CXxtLJbZsL+CzdJLBsPD7SedJZoUA4d8iAcN2IoMp/Dx80shOOd2x96X/g==,
- }
+ resolution: {integrity: sha512-qJFF/8tW/zJsbyfh/iT/ZM5QNHE3CXxtLJbZsL+CzdJLBsPD7SedJZoUA4d8iAcN2IoMp/Dx80shOOd2x96X/g==}
hasBin: true
- scheduler@0.23.0:
- resolution:
- {
- integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==,
- }
-
scheduler@0.23.2:
- resolution:
- {
- integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==,
- }
+ resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
scrypt-js@3.0.1:
- resolution:
- {
- integrity: sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==,
- }
+ resolution: {integrity: sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==}
secp256k1@4.0.3:
- resolution:
- {
- integrity: sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA==,
- }
- engines: { node: ">=10.0.0" }
+ resolution: {integrity: sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA==}
+ engines: {node: '>=10.0.0'}
secure-json-parse@2.7.0:
- resolution:
- {
- integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==,
- }
+ resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==}
secure-password-utilities@0.2.1:
- resolution:
- {
- integrity: sha512-znUg8ae3cpuAaogiFBhP82gD2daVkSz4Qv/L7OWjB7wWvfbCdeqqQuJkm2/IvhKQPOV0T739YPR6rb7vs0uWaw==,
- }
+ resolution: {integrity: sha512-znUg8ae3cpuAaogiFBhP82gD2daVkSz4Qv/L7OWjB7wWvfbCdeqqQuJkm2/IvhKQPOV0T739YPR6rb7vs0uWaw==}
semver@5.7.2:
- resolution:
- {
- integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==,
- }
+ resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
hasBin: true
semver@6.3.1:
- resolution:
- {
- integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==,
- }
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
semver@7.6.0:
- resolution:
- {
- integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
+ engines: {node: '>=10'}
hasBin: true
serialize-javascript@4.0.0:
- resolution:
- {
- integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==,
- }
+ resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==}
serialize-javascript@6.0.0:
- resolution:
- {
- integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==,
- }
+ resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==}
set-blocking@2.0.0:
- resolution:
- {
- integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==,
- }
+ resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
set-cookie-parser@2.7.0:
- resolution:
- {
- integrity: sha512-lXLOiqpkUumhRdFF3k1osNXCy9akgx/dyPZ5p8qAg9seJzXr5ZrlqZuWIMuY6ejOsVLE6flJ5/h3lsn57fQ/PQ==,
- }
-
- set-function-name@2.0.1:
- resolution:
- {
- integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-lXLOiqpkUumhRdFF3k1osNXCy9akgx/dyPZ5p8qAg9seJzXr5ZrlqZuWIMuY6ejOsVLE6flJ5/h3lsn57fQ/PQ==}
+
+ set-function-length@1.2.2:
+ resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
+ engines: {node: '>= 0.4'}
+
+ set-function-name@2.0.2:
+ resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
+ engines: {node: '>= 0.4'}
setimmediate@1.0.5:
- resolution:
- {
- integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==,
- }
+ resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
setprototypeof@1.2.0:
- resolution:
- {
- integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==,
- }
+ resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
sha.js@2.4.11:
- resolution:
- {
- integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==,
- }
+ resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==}
hasBin: true
shallowequal@1.1.0:
- resolution:
- {
- integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==,
- }
+ resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
shebang-command@2.0.0:
- resolution:
- {
- integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
+ engines: {node: '>=8'}
shebang-regex@3.0.0:
- resolution:
- {
- integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
+ engines: {node: '>=8'}
shell-quote@1.8.1:
- resolution:
- {
- integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==,
- }
+ resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
shelljs@0.8.5:
- resolution:
- {
- integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==}
+ engines: {node: '>=4'}
hasBin: true
side-channel@1.0.4:
- resolution:
- {
- integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==,
- }
+ resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
+
+ signal-exit@3.0.7:
+ resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
+
+ signal-exit@4.0.2:
+ resolution: {integrity: sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==}
+ engines: {node: '>=14'}
signal-exit@4.1.0:
- resolution:
- {
- integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==,
- }
- engines: { node: ">=14" }
+ resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
+ engines: {node: '>=14'}
slash@3.0.0:
- resolution:
- {
- integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
+ engines: {node: '>=8'}
slice-ansi@4.0.0:
- resolution:
- {
- integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==,
- }
- engines: { node: ">=10" }
-
- snake-case@3.0.4:
- resolution:
- {
- integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==,
- }
+ resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
+ engines: {node: '>=10'}
solc@0.7.3:
- resolution:
- {
- integrity: sha512-GAsWNAjGzIDg7VxzP6mPjdurby3IkGCjQcM8GFYZT6RyaoUZKmMU6Y7YwG+tFGhv7dwZ8rmR4iwFDrrD99JwqA==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-GAsWNAjGzIDg7VxzP6mPjdurby3IkGCjQcM8GFYZT6RyaoUZKmMU6Y7YwG+tFGhv7dwZ8rmR4iwFDrrD99JwqA==}
+ engines: {node: '>=8.0.0'}
hasBin: true
solhint@5.0.3:
- resolution:
- {
- integrity: sha512-OLCH6qm/mZTCpplTXzXTJGId1zrtNuDYP5c2e6snIv/hdRVxPfBBz/bAlL91bY/Accavkayp2Zp2BaDSrLVXTQ==,
- }
+ resolution: {integrity: sha512-OLCH6qm/mZTCpplTXzXTJGId1zrtNuDYP5c2e6snIv/hdRVxPfBBz/bAlL91bY/Accavkayp2Zp2BaDSrLVXTQ==}
hasBin: true
solidity-coverage@0.8.12:
- resolution:
- {
- integrity: sha512-8cOB1PtjnjFRqOgwFiD8DaUsYJtVJ6+YdXQtSZDrLGf8cdhhh8xzTtGzVTGeBf15kTv0v7lYPJlV/az7zLEPJw==,
- }
+ resolution: {integrity: sha512-8cOB1PtjnjFRqOgwFiD8DaUsYJtVJ6+YdXQtSZDrLGf8cdhhh8xzTtGzVTGeBf15kTv0v7lYPJlV/az7zLEPJw==}
hasBin: true
peerDependencies:
hardhat: ^2.11.0
sonic-boom@2.8.0:
- resolution:
- {
- integrity: sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==,
- }
+ resolution: {integrity: sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==}
sonic-boom@3.8.0:
- resolution:
- {
- integrity: sha512-ybz6OYOUjoQQCQ/i4LU8kaToD8ACtYP+Cj5qd2AO36bwbdewxWJ3ArmJ2cr6AvxlL2o0PqnCcPGUgkILbfkaCA==,
- }
+ resolution: {integrity: sha512-ybz6OYOUjoQQCQ/i4LU8kaToD8ACtYP+Cj5qd2AO36bwbdewxWJ3ArmJ2cr6AvxlL2o0PqnCcPGUgkILbfkaCA==}
source-map-js@1.2.0:
- resolution:
- {
- integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
+ engines: {node: '>=0.10.0'}
source-map-support@0.5.21:
- resolution:
- {
- integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==,
- }
+ resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
source-map@0.2.0:
- resolution:
- {
- integrity: sha512-CBdZ2oa/BHhS4xj5DlhjWNHcan57/5YuvfdLf17iVmIpd9KRm+DFLmC6nBNj+6Ua7Kt3TmOjDpQT1aTYOQtoUA==,
- }
- engines: { node: ">=0.8.0" }
+ resolution: {integrity: sha512-CBdZ2oa/BHhS4xj5DlhjWNHcan57/5YuvfdLf17iVmIpd9KRm+DFLmC6nBNj+6Ua7Kt3TmOjDpQT1aTYOQtoUA==}
+ engines: {node: '>=0.8.0'}
+
+ source-map@0.5.7:
+ resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
+ engines: {node: '>=0.10.0'}
source-map@0.6.1:
- resolution:
- {
- integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
+ engines: {node: '>=0.10.0'}
source-map@0.8.0-beta.0:
- resolution:
- {
- integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==}
+ engines: {node: '>= 8'}
sourcemap-codec@1.4.8:
- resolution:
- {
- integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==,
- }
+ resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
deprecated: Please use @jridgewell/sourcemap-codec instead
spawn-command@0.0.2:
- resolution:
- {
- integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==,
- }
+ resolution: {integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==}
split-on-first@1.1.0:
- resolution:
- {
- integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==}
+ engines: {node: '>=6'}
split2@4.2.0:
- resolution:
- {
- integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==,
- }
- engines: { node: ">= 10.x" }
+ resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
+ engines: {node: '>= 10.x'}
sprintf-js@1.0.3:
- resolution:
- {
- integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==,
- }
+ resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
stacktrace-parser@0.1.10:
- resolution:
- {
- integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==}
+ engines: {node: '>=6'}
standard-as-callback@2.1.0:
- resolution:
- {
- integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==,
- }
+ resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==}
statuses@2.0.1:
- resolution:
- {
- integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
+ engines: {node: '>= 0.8'}
std-env@3.7.0:
- resolution:
- {
- integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==,
- }
+ resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
stream-shift@1.0.3:
- resolution:
- {
- integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==,
- }
+ resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==}
strict-uri-encode@2.0.0:
- resolution:
- {
- integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==}
+ engines: {node: '>=4'}
string-width@4.2.3:
- resolution:
- {
- integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
+ engines: {node: '>=8'}
string.prototype.matchall@4.0.10:
- resolution:
- {
- integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==,
- }
-
- string.prototype.trim@1.2.8:
- resolution:
- {
- integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==,
- }
- engines: { node: ">= 0.4" }
-
- string.prototype.trimend@1.0.7:
- resolution:
- {
- integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==,
- }
-
- string.prototype.trimstart@1.0.7:
- resolution:
- {
- integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==,
- }
+ resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==}
+
+ string.prototype.trim@1.2.9:
+ resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
+ engines: {node: '>= 0.4'}
+
+ string.prototype.trimend@1.0.8:
+ resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
+
+ string.prototype.trimstart@1.0.8:
+ resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
+ engines: {node: '>= 0.4'}
string_decoder@1.3.0:
- resolution:
- {
- integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==,
- }
+ resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
stringify-object@3.3.0:
- resolution:
- {
- integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==}
+ engines: {node: '>=4'}
strip-ansi@6.0.1:
- resolution:
- {
- integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
+ engines: {node: '>=8'}
strip-bom@3.0.0:
- resolution:
- {
- integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
+ engines: {node: '>=4'}
strip-comments@2.0.1:
- resolution:
- {
- integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==}
+ engines: {node: '>=10'}
strip-final-newline@3.0.0:
- resolution:
- {
- integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
+ engines: {node: '>=12'}
strip-hex-prefix@1.0.0:
- resolution:
- {
- integrity: sha512-q8d4ue7JGEiVcypji1bALTos+0pWtyGlivAWyPuTkHzuTCJqrK9sWxYQZUq6Nq3cuyv3bm734IhHvHtGGURU6A==,
- }
- engines: { node: ">=6.5.0", npm: ">=3" }
+ resolution: {integrity: sha512-q8d4ue7JGEiVcypji1bALTos+0pWtyGlivAWyPuTkHzuTCJqrK9sWxYQZUq6Nq3cuyv3bm734IhHvHtGGURU6A==}
+ engines: {node: '>=6.5.0', npm: '>=3'}
strip-json-comments@2.0.1:
- resolution:
- {
- integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
+ engines: {node: '>=0.10.0'}
strip-json-comments@3.1.1:
- resolution:
- {
- integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
+ engines: {node: '>=8'}
styled-components@5.3.11:
- resolution:
- {
- integrity: sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==}
+ engines: {node: '>=10'}
peerDependencies:
- react: ">= 16.8.0"
- react-dom: ">= 16.8.0"
- react-is: ">= 16.8.0"
+ react: '>= 16.8.0'
+ react-dom: '>= 16.8.0'
+ react-is: '>= 16.8.0'
+
+ stylis@4.2.0:
+ resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==}
sucrase@3.34.0:
- resolution:
- {
- integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==}
+ engines: {node: '>=8'}
hasBin: true
superstruct@1.0.3:
- resolution:
- {
- integrity: sha512-8iTn3oSS8nRGn+C2pgXSKPI3jmpm6FExNazNpjvqS6ZUJQCej3PUXEKM8NjHBOs54ExM+LPW/FBRhymrdcCiSg==,
- }
- engines: { node: ">=14.0.0" }
+ resolution: {integrity: sha512-8iTn3oSS8nRGn+C2pgXSKPI3jmpm6FExNazNpjvqS6ZUJQCej3PUXEKM8NjHBOs54ExM+LPW/FBRhymrdcCiSg==}
+ engines: {node: '>=14.0.0'}
supports-color@3.2.3:
- resolution:
- {
- integrity: sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A==,
- }
- engines: { node: ">=0.8.0" }
+ resolution: {integrity: sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A==}
+ engines: {node: '>=0.8.0'}
supports-color@5.5.0:
- resolution:
- {
- integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
+ engines: {node: '>=4'}
supports-color@7.2.0:
- resolution:
- {
- integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
+ engines: {node: '>=8'}
supports-color@8.1.1:
- resolution:
- {
- integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
+ engines: {node: '>=10'}
supports-preserve-symlinks-flag@1.0.0:
- resolution:
- {
- integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==,
- }
- engines: { node: ">= 0.4" }
-
- svg-parser@2.0.4:
- resolution:
- {
- integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==,
- }
+ resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
+ engines: {node: '>= 0.4'}
+
+ svix-fetch@3.0.0:
+ resolution: {integrity: sha512-rcADxEFhSqHbraZIsjyZNh4TF6V+koloX1OzZ+AQuObX9mZ2LIMhm1buZeuc5BIZPftZpJCMBsSiBaeszo9tRw==}
+
+ svix@1.31.0:
+ resolution: {integrity: sha512-sBSFoEWklpLqJP6tZZ8r8IcjYCAJOIiHgFSGBHo/AhmjcMfuE7qTuD5XsAXSgqZxSbFUM6CIHjbdV0QgdN1LtA==}
system-architecture@0.1.0:
- resolution:
- {
- integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==,
- }
- engines: { node: ">=18" }
+ resolution: {integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==}
+ engines: {node: '>=18'}
table@6.8.2:
- resolution:
- {
- integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==,
- }
- engines: { node: ">=10.0.0" }
+ resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==}
+ engines: {node: '>=10.0.0'}
tailwindcss-animate@1.0.7:
- resolution:
- {
- integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==,
- }
+ resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
peerDependencies:
- tailwindcss: ">=3.0.0 || insiders"
-
- tailwindcss@3.4.1:
- resolution:
- {
- integrity: sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==,
- }
- engines: { node: ">=14.0.0" }
- hasBin: true
+ tailwindcss: '>=3.0.0 || insiders'
tailwindcss@3.4.10:
- resolution:
- {
- integrity: sha512-KWZkVPm7yJRhdu4SRSl9d4AK2wM3a50UsvgHZO7xY77NQr2V+fIrEuoDGQcbvswWvFGbS2f6e+jC/6WJm1Dl0w==,
- }
- engines: { node: ">=14.0.0" }
+ resolution: {integrity: sha512-KWZkVPm7yJRhdu4SRSl9d4AK2wM3a50UsvgHZO7xY77NQr2V+fIrEuoDGQcbvswWvFGbS2f6e+jC/6WJm1Dl0w==}
+ engines: {node: '>=14.0.0'}
hasBin: true
+ tar@6.2.1:
+ resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
+ engines: {node: '>=10'}
+
temp-dir@2.0.0:
- resolution:
- {
- integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
+ engines: {node: '>=8'}
tempy@0.6.0:
- resolution:
- {
- integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==}
+ engines: {node: '>=10'}
terser@5.21.0:
- resolution:
- {
- integrity: sha512-WtnFKrxu9kaoXuiZFSGrcAvvBqAdmKx0SFNmVNYdJamMu9yyN3I/QF0FbH4QcqJQ+y1CJnzxGIKH0cSj+FGYRw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-WtnFKrxu9kaoXuiZFSGrcAvvBqAdmKx0SFNmVNYdJamMu9yyN3I/QF0FbH4QcqJQ+y1CJnzxGIKH0cSj+FGYRw==}
+ engines: {node: '>=10'}
hasBin: true
text-table@0.2.0:
- resolution:
- {
- integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==,
- }
+ resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
thenify-all@1.6.0:
- resolution:
- {
- integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==,
- }
- engines: { node: ">=0.8" }
+ resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
+ engines: {node: '>=0.8'}
thenify@3.3.1:
- resolution:
- {
- integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==,
- }
+ resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
thread-stream@0.15.2:
- resolution:
- {
- integrity: sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==,
- }
+ resolution: {integrity: sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==}
+
+ time-span@4.0.0:
+ resolution: {integrity: sha512-MyqZCTGLDZ77u4k+jqg4UlrzPTPZ49NDlaekU6uuFaJLzPIN1woaRXCbGeqOfxwc3Y37ZROGAJ614Rdv7Olt+g==}
+ engines: {node: '>=10'}
tinycolor2@1.6.0:
- resolution:
- {
- integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==,
- }
+ resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
tinyglobby@0.2.2:
- resolution:
- {
- integrity: sha512-mZ2sDMaySvi1PkTp4lTo1In2zjU+cY8OvZsfwrDrx3YGRbXPX1/cbPwCR9zkm3O/Fz9Jo0F1HNgIQ1b8BepqyQ==,
- }
- engines: { node: ">=12.0.0" }
+ resolution: {integrity: sha512-mZ2sDMaySvi1PkTp4lTo1In2zjU+cY8OvZsfwrDrx3YGRbXPX1/cbPwCR9zkm3O/Fz9Jo0F1HNgIQ1b8BepqyQ==}
+ engines: {node: '>=12.0.0'}
tmp@0.0.33:
- resolution:
- {
- integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==,
- }
- engines: { node: ">=0.6.0" }
+ resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
+ engines: {node: '>=0.6.0'}
to-fast-properties@2.0.0:
- resolution:
- {
- integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
+ engines: {node: '>=4'}
to-regex-range@5.0.1:
- resolution:
- {
- integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==,
- }
- engines: { node: ">=8.0" }
+ resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
+ engines: {node: '>=8.0'}
toidentifier@1.0.1:
- resolution:
- {
- integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==,
- }
- engines: { node: ">=0.6" }
+ resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
+ engines: {node: '>=0.6'}
toml@3.0.0:
- resolution:
- {
- integrity: sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==,
- }
+ resolution: {integrity: sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==}
tr46@0.0.3:
- resolution:
- {
- integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==,
- }
+ resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
tr46@1.0.1:
- resolution:
- {
- integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==,
- }
+ resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
tree-kill@1.2.2:
- resolution:
- {
- integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==,
- }
+ resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
hasBin: true
ts-api-utils@1.3.0:
- resolution:
- {
- integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==,
- }
- engines: { node: ">=16" }
+ resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
+ engines: {node: '>=16'}
peerDependencies:
- typescript: ">=4.2.0"
+ typescript: '>=4.2.0'
+
+ ts-case-convert@2.0.7:
+ resolution: {integrity: sha512-Kqj8wrkuduWsKUOUNRczrkdHCDt4ZNNd6HKjVw42EnMIGHQUABS4pqfy0acETVLwUTppc1fzo/yi11+uMTaqzw==}
ts-interface-checker@0.1.13:
- resolution:
- {
- integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==,
- }
+ resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
ts-mocha@10.0.0:
- resolution:
- {
- integrity: sha512-VRfgDO+iiuJFlNB18tzOfypJ21xn2xbuZyDvJvqpTbWgkAgD17ONGr8t+Tl8rcBtOBdjXp5e/Rk+d39f7XBHRw==,
- }
- engines: { node: ">= 6.X.X" }
+ resolution: {integrity: sha512-VRfgDO+iiuJFlNB18tzOfypJ21xn2xbuZyDvJvqpTbWgkAgD17ONGr8t+Tl8rcBtOBdjXp5e/Rk+d39f7XBHRw==}
+ engines: {node: '>= 6.X.X'}
hasBin: true
peerDependencies:
mocha: ^3.X.X || ^4.X.X || ^5.X.X || ^6.X.X || ^7.X.X || ^8.X.X || ^9.X.X || ^10.X.X
+ ts-morph@12.0.0:
+ resolution: {integrity: sha512-VHC8XgU2fFW7yO1f/b3mxKDje1vmyzFXHWzOYmKEkCEwcLjDtbdLgBQviqj4ZwP4MJkQtRo6Ha2I29lq/B+VxA==}
+
ts-node@10.9.1:
- resolution:
- {
- integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==,
- }
+ resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
hasBin: true
peerDependencies:
- "@swc/core": ">=1.2.50"
- "@swc/wasm": ">=1.2.50"
- "@types/node": "*"
- typescript: ">=2.7"
+ '@swc/core': '>=1.2.50'
+ '@swc/wasm': '>=1.2.50'
+ '@types/node': '*'
+ typescript: '>=2.7'
peerDependenciesMeta:
- "@swc/core":
+ '@swc/core':
optional: true
- "@swc/wasm":
+ '@swc/wasm':
optional: true
ts-node@10.9.2:
- resolution:
- {
- integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==,
- }
+ resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
hasBin: true
peerDependencies:
- "@swc/core": ">=1.2.50"
- "@swc/wasm": ">=1.2.50"
- "@types/node": "*"
- typescript: ">=2.7"
+ '@swc/core': '>=1.2.50'
+ '@swc/wasm': '>=1.2.50'
+ '@types/node': '*'
+ typescript: '>=2.7'
peerDependenciesMeta:
- "@swc/core":
+ '@swc/core':
optional: true
- "@swc/wasm":
+ '@swc/wasm':
optional: true
ts-node@7.0.1:
- resolution:
- {
- integrity: sha512-BVwVbPJRspzNh2yfslyT1PSbl5uIk03EZlb493RKHN4qej/D06n1cEhjlOJG69oFsE7OT8XjpTUcYf6pKTLMhw==,
- }
- engines: { node: ">=4.2.0" }
+ resolution: {integrity: sha512-BVwVbPJRspzNh2yfslyT1PSbl5uIk03EZlb493RKHN4qej/D06n1cEhjlOJG69oFsE7OT8XjpTUcYf6pKTLMhw==}
+ engines: {node: '>=4.2.0'}
hasBin: true
+ ts-toolbelt@6.15.5:
+ resolution: {integrity: sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A==}
+
tsconfig-paths@3.15.0:
- resolution:
- {
- integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==,
- }
+ resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
tslib@1.14.1:
- resolution:
- {
- integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==,
- }
+ resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
tslib@2.4.0:
- resolution:
- {
- integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==,
- }
+ resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
tslib@2.6.2:
- resolution:
- {
- integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==,
- }
+ resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
tsort@0.0.1:
- resolution:
- {
- integrity: sha512-Tyrf5mxF8Ofs1tNoxA13lFeZ2Zrbd6cKbuH3V+MQ5sb6DtBj5FjrXVsRWT8YvNAQTqNoz66dz1WsbigI22aEnw==,
- }
+ resolution: {integrity: sha512-Tyrf5mxF8Ofs1tNoxA13lFeZ2Zrbd6cKbuH3V+MQ5sb6DtBj5FjrXVsRWT8YvNAQTqNoz66dz1WsbigI22aEnw==}
tweetnacl-util@0.15.1:
- resolution:
- {
- integrity: sha512-RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw==,
- }
+ resolution: {integrity: sha512-RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw==}
tweetnacl@1.0.3:
- resolution:
- {
- integrity: sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==,
- }
+ resolution: {integrity: sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==}
type-check@0.3.2:
- resolution:
- {
- integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==,
- }
- engines: { node: ">= 0.8.0" }
+ resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==}
+ engines: {node: '>= 0.8.0'}
type-check@0.4.0:
- resolution:
- {
- integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==,
- }
- engines: { node: ">= 0.8.0" }
+ resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
+ engines: {node: '>= 0.8.0'}
type-detect@4.1.0:
- resolution:
- {
- integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==}
+ engines: {node: '>=4'}
type-fest@0.16.0:
- resolution:
- {
- integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==}
+ engines: {node: '>=10'}
type-fest@0.20.2:
- resolution:
- {
- integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
+ engines: {node: '>=10'}
type-fest@0.21.3:
- resolution:
- {
- integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
+ engines: {node: '>=10'}
type-fest@0.7.1:
- resolution:
- {
- integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==}
+ engines: {node: '>=8'}
+
+ type-fest@3.13.1:
+ resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==}
+ engines: {node: '>=14.16'}
type@2.7.2:
- resolution:
- {
- integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==,
- }
-
- typed-array-buffer@1.0.0:
- resolution:
- {
- integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==,
- }
- engines: { node: ">= 0.4" }
-
- typed-array-byte-length@1.0.0:
- resolution:
- {
- integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==,
- }
- engines: { node: ">= 0.4" }
-
- typed-array-byte-offset@1.0.0:
- resolution:
- {
- integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==,
- }
- engines: { node: ">= 0.4" }
-
- typed-array-length@1.0.4:
- resolution:
- {
- integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==,
- }
+ resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==}
+
+ typed-array-buffer@1.0.2:
+ resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
+ engines: {node: '>= 0.4'}
+
+ typed-array-byte-length@1.0.1:
+ resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
+ engines: {node: '>= 0.4'}
+
+ typed-array-byte-offset@1.0.2:
+ resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
+ engines: {node: '>= 0.4'}
+
+ typed-array-length@1.0.6:
+ resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
+ engines: {node: '>= 0.4'}
typedarray-to-buffer@3.1.5:
- resolution:
- {
- integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==,
- }
+ resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
+
+ typescript-eslint@8.2.0:
+ resolution: {integrity: sha512-DmnqaPcML0xYwUzgNbM1XaKXpEb7BShYf2P1tkUmmcl8hyeG7Pj08Er7R9bNy6AufabywzJcOybQAtnD/c9DGw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ typescript@4.9.5:
+ resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
+ engines: {node: '>=4.2.0'}
+ hasBin: true
typescript@5.2.2:
- resolution:
- {
- integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==,
- }
- engines: { node: ">=14.17" }
+ resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==}
+ engines: {node: '>=14.17'}
hasBin: true
typescript@5.5.4:
- resolution:
- {
- integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==,
- }
- engines: { node: ">=14.17" }
+ resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==}
+ engines: {node: '>=14.17'}
hasBin: true
ua-parser-js@1.0.37:
- resolution:
- {
- integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==,
- }
+ resolution: {integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==}
ufo@1.5.4:
- resolution:
- {
- integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==,
- }
+ resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
uglify-js@3.17.4:
- resolution:
- {
- integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==,
- }
- engines: { node: ">=0.8.0" }
+ resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==}
+ engines: {node: '>=0.8.0'}
hasBin: true
+ uint8-varint@2.0.4:
+ resolution: {integrity: sha512-FwpTa7ZGA/f/EssWAb5/YV6pHgVF1fViKdW8cWaEarjB8t7NyofSWBdOTyFPaGuUG4gx3v1O3PQ8etsiOs3lcw==}
+
+ uint8arraylist@2.4.8:
+ resolution: {integrity: sha512-vc1PlGOzglLF0eae1M8mLRTBivsvrGsdmJ5RbK3e+QRvRLOZfZhQROTwH/OfyF3+ZVUg9/8hE8bmKP2CvP9quQ==}
+
uint8arrays@3.1.0:
- resolution:
- {
- integrity: sha512-ei5rfKtoRO8OyOIor2Rz5fhzjThwIHJZ3uyDPnDHTXbP0aMQ1RN/6AI5B5d9dBxJOU+BvOAk7ZQ1xphsX8Lrog==,
- }
+ resolution: {integrity: sha512-ei5rfKtoRO8OyOIor2Rz5fhzjThwIHJZ3uyDPnDHTXbP0aMQ1RN/6AI5B5d9dBxJOU+BvOAk7ZQ1xphsX8Lrog==}
uint8arrays@3.1.1:
- resolution:
- {
- integrity: sha512-+QJa8QRnbdXVpHYjLoTpJIdCTiw9Ir62nocClWuXIq2JIh4Uta0cQsTSpFL678p2CN8B+XSApwcU+pQEqVpKWg==,
- }
+ resolution: {integrity: sha512-+QJa8QRnbdXVpHYjLoTpJIdCTiw9Ir62nocClWuXIq2JIh4Uta0cQsTSpFL678p2CN8B+XSApwcU+pQEqVpKWg==}
+
+ uint8arrays@5.1.0:
+ resolution: {integrity: sha512-vA6nFepEmlSKkMBnLBaUMVvAC4G3CTmO58C12y4sq6WPDOR7mOFYOi7GlrQ4djeSbP6JG9Pv9tJDM97PedRSww==}
unbox-primitive@1.0.2:
- resolution:
- {
- integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==,
- }
+ resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
uncrypto@0.1.3:
- resolution:
- {
- integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==,
- }
+ resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==}
undici-types@5.25.3:
- resolution:
- {
- integrity: sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==,
- }
+ resolution: {integrity: sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==}
- undici-types@6.13.0:
- resolution:
- {
- integrity: sha512-xtFJHudx8S2DSoujjMd1WeWvn7KKWFRESZTMeL1RptAYERu29D6jphMjjY+vn96jvN3kVPDNxU/E13VTaXj6jg==,
- }
+ undici-types@6.19.8:
+ resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
undici@5.25.4:
- resolution:
- {
- integrity: sha512-450yJxT29qKMf3aoudzFpIciqpx6Pji3hEWaXqXmanbXF58LTAGCKxcJjxMXWu3iG+Mudgo3ZUfDB6YDFd/dAw==,
- }
- engines: { node: ">=14.0" }
+ resolution: {integrity: sha512-450yJxT29qKMf3aoudzFpIciqpx6Pji3hEWaXqXmanbXF58LTAGCKxcJjxMXWu3iG+Mudgo3ZUfDB6YDFd/dAw==}
+ engines: {node: '>=14.0'}
- unenv@1.9.0:
- resolution:
- {
- integrity: sha512-QKnFNznRxmbOF1hDgzpqrlIf6NC5sbZ2OJ+5Wl3OX8uM+LUJXbj4TXvLJCtwbPTmbMHCLIz6JLKNinNsMShK9g==,
- }
+ undici@5.28.4:
+ resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==}
+ engines: {node: '>=14.0'}
- unfetch@4.2.0:
- resolution:
- {
- integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==,
- }
+ unenv@1.9.0:
+ resolution: {integrity: sha512-QKnFNznRxmbOF1hDgzpqrlIf6NC5sbZ2OJ+5Wl3OX8uM+LUJXbj4TXvLJCtwbPTmbMHCLIz6JLKNinNsMShK9g==}
unicode-canonical-property-names-ecmascript@2.0.0:
- resolution:
- {
- integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
+ engines: {node: '>=4'}
unicode-match-property-ecmascript@2.0.0:
- resolution:
- {
- integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
+ engines: {node: '>=4'}
unicode-match-property-value-ecmascript@2.1.0:
- resolution:
- {
- integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
+ engines: {node: '>=4'}
unicode-property-aliases-ecmascript@2.1.0:
- resolution:
- {
- integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
+ engines: {node: '>=4'}
unique-string@2.0.0:
- resolution:
- {
- integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
+ engines: {node: '>=8'}
universal-user-agent@6.0.0:
- resolution:
- {
- integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==,
- }
+ resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==}
universalify@0.1.2:
- resolution:
- {
- integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==,
- }
- engines: { node: ">= 4.0.0" }
+ resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
+ engines: {node: '>= 4.0.0'}
universalify@2.0.0:
- resolution:
- {
- integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==,
- }
- engines: { node: ">= 10.0.0" }
+ resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
+ engines: {node: '>= 10.0.0'}
unpipe@1.0.0:
- resolution:
- {
- integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==,
- }
- engines: { node: ">= 0.8" }
+ resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
+ engines: {node: '>= 0.8'}
unstorage@1.10.1:
- resolution:
- {
- integrity: sha512-rWQvLRfZNBpF+x8D3/gda5nUCQL2PgXy2jNG4U7/Rc9BGEv9+CAJd0YyGCROUBKs9v49Hg8huw3aih5Bf5TAVw==,
- }
- peerDependencies:
- "@azure/app-configuration": ^1.4.1
- "@azure/cosmos": ^4.0.0
- "@azure/data-tables": ^13.2.2
- "@azure/identity": ^3.3.2
- "@azure/keyvault-secrets": ^4.7.0
- "@azure/storage-blob": ^12.16.0
- "@capacitor/preferences": ^5.0.6
- "@netlify/blobs": ^6.2.0
- "@planetscale/database": ^1.11.0
- "@upstash/redis": ^1.23.4
- "@vercel/kv": ^0.2.3
+ resolution: {integrity: sha512-rWQvLRfZNBpF+x8D3/gda5nUCQL2PgXy2jNG4U7/Rc9BGEv9+CAJd0YyGCROUBKs9v49Hg8huw3aih5Bf5TAVw==}
+ peerDependencies:
+ '@azure/app-configuration': ^1.4.1
+ '@azure/cosmos': ^4.0.0
+ '@azure/data-tables': ^13.2.2
+ '@azure/identity': ^3.3.2
+ '@azure/keyvault-secrets': ^4.7.0
+ '@azure/storage-blob': ^12.16.0
+ '@capacitor/preferences': ^5.0.6
+ '@netlify/blobs': ^6.2.0
+ '@planetscale/database': ^1.11.0
+ '@upstash/redis': ^1.23.4
+ '@vercel/kv': ^0.2.3
idb-keyval: ^6.2.1
peerDependenciesMeta:
- "@azure/app-configuration":
+ '@azure/app-configuration':
optional: true
- "@azure/cosmos":
+ '@azure/cosmos':
optional: true
- "@azure/data-tables":
+ '@azure/data-tables':
optional: true
- "@azure/identity":
+ '@azure/identity':
optional: true
- "@azure/keyvault-secrets":
+ '@azure/keyvault-secrets':
optional: true
- "@azure/storage-blob":
+ '@azure/storage-blob':
optional: true
- "@capacitor/preferences":
+ '@capacitor/preferences':
optional: true
- "@netlify/blobs":
+ '@netlify/blobs':
optional: true
- "@planetscale/database":
+ '@planetscale/database':
optional: true
- "@upstash/redis":
+ '@upstash/redis':
optional: true
- "@vercel/kv":
+ '@vercel/kv':
optional: true
idb-keyval:
optional: true
untun@0.1.3:
- resolution:
- {
- integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==,
- }
+ resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==}
hasBin: true
upath@1.2.0:
- resolution:
- {
- integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==}
+ engines: {node: '>=4'}
update-browserslist-db@1.1.0:
- resolution:
- {
- integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==,
- }
+ resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==}
hasBin: true
peerDependencies:
- browserslist: ">= 4.21.0"
+ browserslist: '>= 4.21.0'
uqr@0.1.2:
- resolution:
- {
- integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==,
- }
+ resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==}
uri-js@4.4.1:
- resolution:
- {
- integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==,
- }
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
+
+ url-parse@1.5.10:
+ resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
use-isomorphic-layout-effect@1.1.2:
- resolution:
- {
- integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==,
- }
+ resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
peerDependencies:
- "@types/react": "*"
+ '@types/react': '*'
react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
use-sync-external-store@1.2.0:
- resolution:
- {
- integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==,
- }
+ resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
utf-8-validate@5.0.10:
- resolution:
- {
- integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==,
- }
- engines: { node: ">=6.14.2" }
+ resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==}
+ engines: {node: '>=6.14.2'}
utf8@3.0.0:
- resolution:
- {
- integrity: sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ==,
- }
+ resolution: {integrity: sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ==}
util-deprecate@1.0.2:
- resolution:
- {
- integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==,
- }
+ resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
util@0.12.5:
- resolution:
- {
- integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==,
- }
+ resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==}
uuid@8.3.2:
- resolution:
- {
- integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==,
- }
+ resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
uuid@9.0.1:
- resolution:
- {
- integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==,
- }
+ resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
hasBin: true
v8-compile-cache-lib@3.0.1:
- resolution:
- {
- integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==,
- }
+ resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
valtio@1.11.2:
- resolution:
- {
- integrity: sha512-1XfIxnUXzyswPAPXo1P3Pdx2mq/pIqZICkWN60Hby0d9Iqb+MEIpqgYVlbflvHdrp2YR/q3jyKWRPJJ100yxaw==,
- }
- engines: { node: ">=12.20.0" }
+ resolution: {integrity: sha512-1XfIxnUXzyswPAPXo1P3Pdx2mq/pIqZICkWN60Hby0d9Iqb+MEIpqgYVlbflvHdrp2YR/q3jyKWRPJJ100yxaw==}
+ engines: {node: '>=12.20.0'}
peerDependencies:
- "@types/react": ">=16.8"
- react: ">=16.8"
+ '@types/react': '>=16.8'
+ react: '>=16.8'
peerDependenciesMeta:
- "@types/react":
+ '@types/react':
optional: true
react:
optional: true
viem@2.19.6:
- resolution:
- {
- integrity: sha512-7jiuX+ZncPZE8iEzgW/iO7EaAMRJEW8hYeJy9YFTMK34Wa9aWzqOm4lrORgemlsqJ/kpQG4InzhG0jc2HY67FA==,
- }
+ resolution: {integrity: sha512-7jiuX+ZncPZE8iEzgW/iO7EaAMRJEW8hYeJy9YFTMK34Wa9aWzqOm4lrORgemlsqJ/kpQG4InzhG0jc2HY67FA==}
peerDependencies:
- typescript: ">=5.0.4"
+ typescript: '>=5.0.4'
peerDependenciesMeta:
typescript:
optional: true
vite-plugin-mkcert@1.17.5:
- resolution:
- {
- integrity: sha512-KKGY3iHx/9zb7ow8JJ+nLN2HiNIBuPBwj34fJ+jAJT89/8qfk7msO7G7qipR8VDEm9xMCys0xT11QOJbZcg3/Q==,
- }
- engines: { node: ">=v16.7.0" }
+ resolution: {integrity: sha512-KKGY3iHx/9zb7ow8JJ+nLN2HiNIBuPBwj34fJ+jAJT89/8qfk7msO7G7qipR8VDEm9xMCys0xT11QOJbZcg3/Q==}
+ engines: {node: '>=v16.7.0'}
peerDependencies:
- vite: ">=3"
+ vite: '>=3'
vite-plugin-pwa@0.20.1:
- resolution:
- {
- integrity: sha512-M6Pk4b18i5ryrhKgiIF8Zud0HGphYiCbEfLsCdlvmwn/CEnS6noVwfIDG/+3V7r6yxpPV/gLiKw+rIlCCiCCoQ==,
- }
- engines: { node: ">=16.0.0" }
+ resolution: {integrity: sha512-M6Pk4b18i5ryrhKgiIF8Zud0HGphYiCbEfLsCdlvmwn/CEnS6noVwfIDG/+3V7r6yxpPV/gLiKw+rIlCCiCCoQ==}
+ engines: {node: '>=16.0.0'}
peerDependencies:
- "@vite-pwa/assets-generator": ^0.2.4
+ '@vite-pwa/assets-generator': ^0.2.4
vite: ^3.1.0 || ^4.0.0 || ^5.0.0
workbox-build: ^7.1.0
workbox-window: ^7.1.0
peerDependenciesMeta:
- "@vite-pwa/assets-generator":
- optional: true
-
- vite-plugin-svgr@4.2.0:
- resolution:
- {
- integrity: sha512-SC7+FfVtNQk7So0XMjrrtLAbEC8qjFPifyD7+fs/E6aaNdVde6umlVVh0QuwDLdOMu7vp5RiGFsB70nj5yo0XA==,
- }
- peerDependencies:
- vite: ^2.6.0 || 3 || 4 || 5
-
- vite@5.4.0:
- resolution:
- {
- integrity: sha512-5xokfMX0PIiwCMCMb9ZJcMyh5wbBun0zUzKib+L65vAZ8GY9ePZMXxFrHbr/Kyll2+LSCY7xtERPpxkBDKngwg==,
- }
- engines: { node: ^18.0.0 || >=20.0.0 }
- hasBin: true
- peerDependencies:
- "@types/node": ^18.0.0 || >=20.0.0
- less: "*"
- lightningcss: ^1.21.0
- sass: "*"
- sass-embedded: "*"
- stylus: "*"
- sugarss: "*"
- terser: ^5.4.0
- peerDependenciesMeta:
- "@types/node":
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- sass-embedded:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
+ '@vite-pwa/assets-generator':
optional: true
vite@5.4.2:
- resolution:
- {
- integrity: sha512-dDrQTRHp5C1fTFzcSaMxjk6vdpKvT+2/mIdE07Gw2ykehT49O0z/VHS3zZ8iV/Gh8BJJKHWOe5RjaNrW5xf/GA==,
- }
- engines: { node: ^18.0.0 || >=20.0.0 }
+ resolution: {integrity: sha512-dDrQTRHp5C1fTFzcSaMxjk6vdpKvT+2/mIdE07Gw2ykehT49O0z/VHS3zZ8iV/Gh8BJJKHWOe5RjaNrW5xf/GA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
- "@types/node": ^18.0.0 || >=20.0.0
- less: "*"
+ '@types/node': ^18.0.0 || >=20.0.0
+ less: '*'
lightningcss: ^1.21.0
- sass: "*"
- sass-embedded: "*"
- stylus: "*"
- sugarss: "*"
+ sass: '*'
+ sass-embedded: '*'
+ stylus: '*'
+ sugarss: '*'
terser: ^5.4.0
peerDependenciesMeta:
- "@types/node":
+ '@types/node':
optional: true
less:
optional: true
@@ -9782,331 +6328,198 @@ packages:
optional: true
wait-port@1.1.0:
- resolution:
- {
- integrity: sha512-3e04qkoN3LxTMLakdqeWth8nih8usyg+sf1Bgdf9wwUkp05iuK1eSY/QpLvscT/+F/gA89+LpUmmgBtesbqI2Q==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-3e04qkoN3LxTMLakdqeWth8nih8usyg+sf1Bgdf9wwUkp05iuK1eSY/QpLvscT/+F/gA89+LpUmmgBtesbqI2Q==}
+ engines: {node: '>=10'}
hasBin: true
+ web-streams-polyfill@3.3.3:
+ resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
+ engines: {node: '>= 8'}
+
web3-core-helpers@1.10.3:
- resolution:
- {
- integrity: sha512-Yv7dQC3B9ipOc5sWm3VAz1ys70Izfzb8n9rSiQYIPjpqtJM+3V4EeK6ghzNR6CO2es0+Yu9CtCkw0h8gQhrTxA==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-Yv7dQC3B9ipOc5sWm3VAz1ys70Izfzb8n9rSiQYIPjpqtJM+3V4EeK6ghzNR6CO2es0+Yu9CtCkw0h8gQhrTxA==}
+ engines: {node: '>=8.0.0'}
web3-core-helpers@1.10.4:
- resolution:
- {
- integrity: sha512-r+L5ylA17JlD1vwS8rjhWr0qg7zVoVMDvWhajWA5r5+USdh91jRUYosp19Kd1m2vE034v7Dfqe1xYRoH2zvG0g==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-r+L5ylA17JlD1vwS8rjhWr0qg7zVoVMDvWhajWA5r5+USdh91jRUYosp19Kd1m2vE034v7Dfqe1xYRoH2zvG0g==}
+ engines: {node: '>=8.0.0'}
web3-core-method@1.10.4:
- resolution:
- {
- integrity: sha512-uZTb7flr+Xl6LaDsyTeE2L1TylokCJwTDrIVfIfnrGmnwLc6bmTWCCrm71sSrQ0hqs6vp/MKbQYIYqUN0J8WyA==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-uZTb7flr+Xl6LaDsyTeE2L1TylokCJwTDrIVfIfnrGmnwLc6bmTWCCrm71sSrQ0hqs6vp/MKbQYIYqUN0J8WyA==}
+ engines: {node: '>=8.0.0'}
web3-core-promievent@1.10.4:
- resolution:
- {
- integrity: sha512-2de5WnJQ72YcIhYwV/jHLc4/cWJnznuoGTJGD29ncFQHAfwW/MItHFSVKPPA5v8AhJe+r6y4Y12EKvZKjQVBvQ==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-2de5WnJQ72YcIhYwV/jHLc4/cWJnznuoGTJGD29ncFQHAfwW/MItHFSVKPPA5v8AhJe+r6y4Y12EKvZKjQVBvQ==}
+ engines: {node: '>=8.0.0'}
web3-core-requestmanager@1.10.4:
- resolution:
- {
- integrity: sha512-vqP6pKH8RrhT/2MoaU+DY/OsYK9h7HmEBNCdoMj+4ZwujQtw/Mq2JifjwsJ7gits7Q+HWJwx8q6WmQoVZAWugg==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-vqP6pKH8RrhT/2MoaU+DY/OsYK9h7HmEBNCdoMj+4ZwujQtw/Mq2JifjwsJ7gits7Q+HWJwx8q6WmQoVZAWugg==}
+ engines: {node: '>=8.0.0'}
web3-core-subscriptions@1.10.4:
- resolution:
- {
- integrity: sha512-o0lSQo/N/f7/L76C0HV63+S54loXiE9fUPfHFcTtpJRQNDBVsSDdWRdePbWwR206XlsBqD5VHApck1//jEafTw==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-o0lSQo/N/f7/L76C0HV63+S54loXiE9fUPfHFcTtpJRQNDBVsSDdWRdePbWwR206XlsBqD5VHApck1//jEafTw==}
+ engines: {node: '>=8.0.0'}
web3-core@1.10.4:
- resolution:
- {
- integrity: sha512-B6elffYm81MYZDTrat7aEhnhdtVE3lDBUZft16Z8awYMZYJDbnykEbJVS+l3mnA7AQTnSDr/1MjWofGDLBJPww==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-B6elffYm81MYZDTrat7aEhnhdtVE3lDBUZft16Z8awYMZYJDbnykEbJVS+l3mnA7AQTnSDr/1MjWofGDLBJPww==}
+ engines: {node: '>=8.0.0'}
web3-eth-iban@1.10.3:
- resolution:
- {
- integrity: sha512-ZCfOjYKAjaX2TGI8uif5ah+J3BYFuo+47JOIV1RIz2l7kD9VfnxvRH5UiQDRyMALQC7KFd2hUqIEtHklapNyKA==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-ZCfOjYKAjaX2TGI8uif5ah+J3BYFuo+47JOIV1RIz2l7kD9VfnxvRH5UiQDRyMALQC7KFd2hUqIEtHklapNyKA==}
+ engines: {node: '>=8.0.0'}
web3-eth-iban@1.10.4:
- resolution:
- {
- integrity: sha512-0gE5iNmOkmtBmbKH2aTodeompnNE8jEyvwFJ6s/AF6jkw9ky9Op9cqfzS56AYAbrqEFuClsqB/AoRves7LDELw==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-0gE5iNmOkmtBmbKH2aTodeompnNE8jEyvwFJ6s/AF6jkw9ky9Op9cqfzS56AYAbrqEFuClsqB/AoRves7LDELw==}
+ engines: {node: '>=8.0.0'}
web3-providers-http@1.10.4:
- resolution:
- {
- integrity: sha512-m2P5Idc8hdiO0l60O6DSCPw0kw64Zgi0pMjbEFRmxKIck2Py57RQMu4bxvkxJwkF06SlGaEQF8rFZBmuX7aagQ==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-m2P5Idc8hdiO0l60O6DSCPw0kw64Zgi0pMjbEFRmxKIck2Py57RQMu4bxvkxJwkF06SlGaEQF8rFZBmuX7aagQ==}
+ engines: {node: '>=8.0.0'}
web3-providers-ipc@1.10.4:
- resolution:
- {
- integrity: sha512-YRF/bpQk9z3WwjT+A6FI/GmWRCASgd+gC0si7f9zbBWLXjwzYAKG73bQBaFRAHex1hl4CVcM5WUMaQXf3Opeuw==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-YRF/bpQk9z3WwjT+A6FI/GmWRCASgd+gC0si7f9zbBWLXjwzYAKG73bQBaFRAHex1hl4CVcM5WUMaQXf3Opeuw==}
+ engines: {node: '>=8.0.0'}
web3-providers-ws@1.10.4:
- resolution:
- {
- integrity: sha512-j3FBMifyuFFmUIPVQR4pj+t5ILhAexAui0opgcpu9R5LxQrLRUZxHSnU+YO25UycSOa/NAX8A+qkqZNpcFAlxA==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-j3FBMifyuFFmUIPVQR4pj+t5ILhAexAui0opgcpu9R5LxQrLRUZxHSnU+YO25UycSOa/NAX8A+qkqZNpcFAlxA==}
+ engines: {node: '>=8.0.0'}
web3-utils@1.10.3:
- resolution:
- {
- integrity: sha512-OqcUrEE16fDBbGoQtZXWdavsPzbGIDc5v3VrRTZ0XrIpefC/viZ1ZU9bGEemazyS0catk/3rkOOxpzTfY+XsyQ==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-OqcUrEE16fDBbGoQtZXWdavsPzbGIDc5v3VrRTZ0XrIpefC/viZ1ZU9bGEemazyS0catk/3rkOOxpzTfY+XsyQ==}
+ engines: {node: '>=8.0.0'}
web3-utils@1.10.4:
- resolution:
- {
- integrity: sha512-tsu8FiKJLk2PzhDl9fXbGUWTkkVXYhtTA+SmEFkKft+9BgwLxfCRpU96sWv7ICC8zixBNd3JURVoiR3dUXgP8A==,
- }
- engines: { node: ">=8.0.0" }
+ resolution: {integrity: sha512-tsu8FiKJLk2PzhDl9fXbGUWTkkVXYhtTA+SmEFkKft+9BgwLxfCRpU96sWv7ICC8zixBNd3JURVoiR3dUXgP8A==}
+ engines: {node: '>=8.0.0'}
webauthn-p256@0.0.5:
- resolution:
- {
- integrity: sha512-drMGNWKdaixZNobeORVIqq7k5DsRC9FnG201K2QjeOoQLmtSDaSsVZdkg6n5jUALJKcAG++zBPJXmv6hy0nWFg==,
- }
+ resolution: {integrity: sha512-drMGNWKdaixZNobeORVIqq7k5DsRC9FnG201K2QjeOoQLmtSDaSsVZdkg6n5jUALJKcAG++zBPJXmv6hy0nWFg==}
webidl-conversions@3.0.1:
- resolution:
- {
- integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==,
- }
+ resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
webidl-conversions@4.0.2:
- resolution:
- {
- integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==,
- }
+ resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
websocket@1.0.34:
- resolution:
- {
- integrity: sha512-PRDso2sGwF6kM75QykIesBijKSVceR6jL2G8NGYyq2XrItNC2P5/qL5XeR056GhA+Ly7JMFvJb9I312mJfmqnQ==,
- }
- engines: { node: ">=4.0.0" }
+ resolution: {integrity: sha512-PRDso2sGwF6kM75QykIesBijKSVceR6jL2G8NGYyq2XrItNC2P5/qL5XeR056GhA+Ly7JMFvJb9I312mJfmqnQ==}
+ engines: {node: '>=4.0.0'}
+
+ whatwg-fetch@3.6.20:
+ resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==}
whatwg-url@5.0.0:
- resolution:
- {
- integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==,
- }
+ resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
whatwg-url@7.1.0:
- resolution:
- {
- integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==,
- }
+ resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
which-boxed-primitive@1.0.2:
- resolution:
- {
- integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==,
- }
+ resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
which-module@2.0.1:
- resolution:
- {
- integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==,
- }
+ resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
which-typed-array@1.1.11:
- resolution:
- {
- integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==,
- }
- engines: { node: ">= 0.4" }
+ resolution: {integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==}
+ engines: {node: '>= 0.4'}
+
+ which-typed-array@1.1.15:
+ resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
+ engines: {node: '>= 0.4'}
which@1.3.1:
- resolution:
- {
- integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==,
- }
+ resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
hasBin: true
which@2.0.2:
- resolution:
- {
- integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==,
- }
- engines: { node: ">= 8" }
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
+ engines: {node: '>= 8'}
hasBin: true
+ wide-align@1.1.5:
+ resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
+
widest-line@3.1.0:
- resolution:
- {
- integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==}
+ engines: {node: '>=8'}
+
+ wonka@6.3.4:
+ resolution: {integrity: sha512-CjpbqNtBGNAeyNS/9W6q3kSkKE52+FjIj7AkFlLr11s/VWGUu6a2CdYSdGxocIhIVjaW/zchesBQUKPVU69Cqg==}
word-wrap@1.2.5:
- resolution:
- {
- integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==,
- }
- engines: { node: ">=0.10.0" }
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
+ engines: {node: '>=0.10.0'}
wordwrap@1.0.0:
- resolution:
- {
- integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==,
- }
+ resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
workbox-background-sync@7.0.0:
- resolution:
- {
- integrity: sha512-S+m1+84gjdueM+jIKZ+I0Lx0BDHkk5Nu6a3kTVxP4fdj3gKouRNmhO8H290ybnJTOPfBDtTMXSQA/QLTvr7PeA==,
- }
+ resolution: {integrity: sha512-S+m1+84gjdueM+jIKZ+I0Lx0BDHkk5Nu6a3kTVxP4fdj3gKouRNmhO8H290ybnJTOPfBDtTMXSQA/QLTvr7PeA==}
workbox-broadcast-update@7.0.0:
- resolution:
- {
- integrity: sha512-oUuh4jzZrLySOo0tC0WoKiSg90bVAcnE98uW7F8GFiSOXnhogfNDGZelPJa+6KpGBO5+Qelv04Hqx2UD+BJqNQ==,
- }
+ resolution: {integrity: sha512-oUuh4jzZrLySOo0tC0WoKiSg90bVAcnE98uW7F8GFiSOXnhogfNDGZelPJa+6KpGBO5+Qelv04Hqx2UD+BJqNQ==}
workbox-build@7.0.0:
- resolution:
- {
- integrity: sha512-CttE7WCYW9sZC+nUYhQg3WzzGPr4IHmrPnjKiu3AMXsiNQKx+l4hHl63WTrnicLmKEKHScWDH8xsGBdrYgtBzg==,
- }
- engines: { node: ">=16.0.0" }
+ resolution: {integrity: sha512-CttE7WCYW9sZC+nUYhQg3WzzGPr4IHmrPnjKiu3AMXsiNQKx+l4hHl63WTrnicLmKEKHScWDH8xsGBdrYgtBzg==}
+ engines: {node: '>=16.0.0'}
workbox-cacheable-response@7.0.0:
- resolution:
- {
- integrity: sha512-0lrtyGHn/LH8kKAJVOQfSu3/80WDc9Ma8ng0p2i/5HuUndGttH+mGMSvOskjOdFImLs2XZIimErp7tSOPmu/6g==,
- }
+ resolution: {integrity: sha512-0lrtyGHn/LH8kKAJVOQfSu3/80WDc9Ma8ng0p2i/5HuUndGttH+mGMSvOskjOdFImLs2XZIimErp7tSOPmu/6g==}
workbox-core@7.0.0:
- resolution:
- {
- integrity: sha512-81JkAAZtfVP8darBpfRTovHg8DGAVrKFgHpOArZbdFd78VqHr5Iw65f2guwjE2NlCFbPFDoez3D3/6ZvhI/rwQ==,
- }
+ resolution: {integrity: sha512-81JkAAZtfVP8darBpfRTovHg8DGAVrKFgHpOArZbdFd78VqHr5Iw65f2guwjE2NlCFbPFDoez3D3/6ZvhI/rwQ==}
workbox-expiration@7.0.0:
- resolution:
- {
- integrity: sha512-MLK+fogW+pC3IWU9SFE+FRStvDVutwJMR5if1g7oBJx3qwmO69BNoJQVaMXq41R0gg3MzxVfwOGKx3i9P6sOLQ==,
- }
+ resolution: {integrity: sha512-MLK+fogW+pC3IWU9SFE+FRStvDVutwJMR5if1g7oBJx3qwmO69BNoJQVaMXq41R0gg3MzxVfwOGKx3i9P6sOLQ==}
workbox-google-analytics@7.0.0:
- resolution:
- {
- integrity: sha512-MEYM1JTn/qiC3DbpvP2BVhyIH+dV/5BjHk756u9VbwuAhu0QHyKscTnisQuz21lfRpOwiS9z4XdqeVAKol0bzg==,
- }
+ resolution: {integrity: sha512-MEYM1JTn/qiC3DbpvP2BVhyIH+dV/5BjHk756u9VbwuAhu0QHyKscTnisQuz21lfRpOwiS9z4XdqeVAKol0bzg==}
workbox-navigation-preload@7.0.0:
- resolution:
- {
- integrity: sha512-juWCSrxo/fiMz3RsvDspeSLGmbgC0U9tKqcUPZBCf35s64wlaLXyn2KdHHXVQrb2cqF7I0Hc9siQalainmnXJA==,
- }
+ resolution: {integrity: sha512-juWCSrxo/fiMz3RsvDspeSLGmbgC0U9tKqcUPZBCf35s64wlaLXyn2KdHHXVQrb2cqF7I0Hc9siQalainmnXJA==}
workbox-precaching@7.0.0:
- resolution:
- {
- integrity: sha512-EC0vol623LJqTJo1mkhD9DZmMP604vHqni3EohhQVwhJlTgyKyOkMrZNy5/QHfOby+39xqC01gv4LjOm4HSfnA==,
- }
+ resolution: {integrity: sha512-EC0vol623LJqTJo1mkhD9DZmMP604vHqni3EohhQVwhJlTgyKyOkMrZNy5/QHfOby+39xqC01gv4LjOm4HSfnA==}
workbox-range-requests@7.0.0:
- resolution:
- {
- integrity: sha512-SxAzoVl9j/zRU9OT5+IQs7pbJBOUOlriB8Gn9YMvi38BNZRbM+RvkujHMo8FOe9IWrqqwYgDFBfv6sk76I1yaQ==,
- }
+ resolution: {integrity: sha512-SxAzoVl9j/zRU9OT5+IQs7pbJBOUOlriB8Gn9YMvi38BNZRbM+RvkujHMo8FOe9IWrqqwYgDFBfv6sk76I1yaQ==}
workbox-recipes@7.0.0:
- resolution:
- {
- integrity: sha512-DntcK9wuG3rYQOONWC0PejxYYIDHyWWZB/ueTbOUDQgefaeIj1kJ7pdP3LZV2lfrj8XXXBWt+JDRSw1lLLOnww==,
- }
+ resolution: {integrity: sha512-DntcK9wuG3rYQOONWC0PejxYYIDHyWWZB/ueTbOUDQgefaeIj1kJ7pdP3LZV2lfrj8XXXBWt+JDRSw1lLLOnww==}
workbox-routing@7.0.0:
- resolution:
- {
- integrity: sha512-8YxLr3xvqidnbVeGyRGkaV4YdlKkn5qZ1LfEePW3dq+ydE73hUUJJuLmGEykW3fMX8x8mNdL0XrWgotcuZjIvA==,
- }
+ resolution: {integrity: sha512-8YxLr3xvqidnbVeGyRGkaV4YdlKkn5qZ1LfEePW3dq+ydE73hUUJJuLmGEykW3fMX8x8mNdL0XrWgotcuZjIvA==}
workbox-strategies@7.0.0:
- resolution:
- {
- integrity: sha512-dg3qJU7tR/Gcd/XXOOo7x9QoCI9nk74JopaJaYAQ+ugLi57gPsXycVdBnYbayVj34m6Y8ppPwIuecrzkpBVwbA==,
- }
+ resolution: {integrity: sha512-dg3qJU7tR/Gcd/XXOOo7x9QoCI9nk74JopaJaYAQ+ugLi57gPsXycVdBnYbayVj34m6Y8ppPwIuecrzkpBVwbA==}
workbox-streams@7.0.0:
- resolution:
- {
- integrity: sha512-moVsh+5to//l6IERWceYKGiftc+prNnqOp2sgALJJFbnNVpTXzKISlTIsrWY+ogMqt+x1oMazIdHj25kBSq/HQ==,
- }
+ resolution: {integrity: sha512-moVsh+5to//l6IERWceYKGiftc+prNnqOp2sgALJJFbnNVpTXzKISlTIsrWY+ogMqt+x1oMazIdHj25kBSq/HQ==}
workbox-sw@7.0.0:
- resolution:
- {
- integrity: sha512-SWfEouQfjRiZ7GNABzHUKUyj8pCoe+RwjfOIajcx6J5mtgKkN+t8UToHnpaJL5UVVOf5YhJh+OHhbVNIHe+LVA==,
- }
+ resolution: {integrity: sha512-SWfEouQfjRiZ7GNABzHUKUyj8pCoe+RwjfOIajcx6J5mtgKkN+t8UToHnpaJL5UVVOf5YhJh+OHhbVNIHe+LVA==}
workbox-window@7.0.0:
- resolution:
- {
- integrity: sha512-j7P/bsAWE/a7sxqTzXo3P2ALb1reTfZdvVp6OJ/uLr/C2kZAMvjeWGm8V4htQhor7DOvYg0sSbFN2+flT5U0qA==,
- }
+ resolution: {integrity: sha512-j7P/bsAWE/a7sxqTzXo3P2ALb1reTfZdvVp6OJ/uLr/C2kZAMvjeWGm8V4htQhor7DOvYg0sSbFN2+flT5U0qA==}
workerpool@6.2.1:
- resolution:
- {
- integrity: sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==,
- }
+ resolution: {integrity: sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==}
wrap-ansi@6.2.0:
- resolution:
- {
- integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
+ engines: {node: '>=8'}
wrap-ansi@7.0.0:
- resolution:
- {
- integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
+ engines: {node: '>=10'}
wrappy@1.0.2:
- resolution:
- {
- integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==,
- }
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
ws@7.4.6:
- resolution:
- {
- integrity: sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==,
- }
- engines: { node: ">=8.3.0" }
+ resolution: {integrity: sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==}
+ engines: {node: '>=8.3.0'}
peerDependencies:
bufferutil: ^4.0.1
utf-8-validate: ^5.0.2
@@ -10117,11 +6530,8 @@ packages:
optional: true
ws@7.5.9:
- resolution:
- {
- integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==,
- }
- engines: { node: ">=8.3.0" }
+ resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==}
+ engines: {node: '>=8.3.0'}
peerDependencies:
bufferutil: ^4.0.1
utf-8-validate: ^5.0.2
@@ -10132,14 +6542,11 @@ packages:
optional: true
ws@8.17.1:
- resolution:
- {
- integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==,
- }
- engines: { node: ">=10.0.0" }
+ resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==}
+ engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
- utf-8-validate: ">=5.0.2"
+ utf-8-validate: '>=5.0.2'
peerDependenciesMeta:
bufferutil:
optional: true
@@ -10147,11 +6554,8 @@ packages:
optional: true
ws@8.5.0:
- resolution:
- {
- integrity: sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==,
- }
- engines: { node: ">=10.0.0" }
+ resolution: {integrity: sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==}
+ engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
utf-8-validate: ^5.0.2
@@ -10161,199 +6565,125 @@ packages:
utf-8-validate:
optional: true
- xstate@4.38.2:
- resolution:
- {
- integrity: sha512-Fba/DwEPDLneHT3tbJ9F3zafbQXszOlyCJyQqqdzmtlY/cwE2th462KK48yaANf98jHlP6lJvxfNtN0LFKXPQg==,
- }
-
- xstate@5.17.4:
- resolution:
- {
- integrity: sha512-KM2FYVOUJ04HlOO4TY3wEXqoYPR/XsDu+ewm+IWw0vilXqND0jVfvv04tEFwp8Mkk7I/oHXM8t1Ex9xJyUS4ZA==,
- }
-
y18n@4.0.3:
- resolution:
- {
- integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==,
- }
+ resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
y18n@5.0.8:
- resolution:
- {
- integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
+ engines: {node: '>=10'}
yaeti@0.0.6:
- resolution:
- {
- integrity: sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug==,
- }
- engines: { node: ">=0.10.32" }
+ resolution: {integrity: sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug==}
+ engines: {node: '>=0.10.32'}
yallist@3.1.1:
- resolution:
- {
- integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==,
- }
+ resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
yallist@4.0.0:
- resolution:
- {
- integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==,
- }
+ resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
+
+ yaml@1.10.2:
+ resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
+ engines: {node: '>= 6'}
yaml@2.3.2:
- resolution:
- {
- integrity: sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==,
- }
- engines: { node: ">= 14" }
+ resolution: {integrity: sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==}
+ engines: {node: '>= 14'}
yargs-parser@18.1.3:
- resolution:
- {
- integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
+ engines: {node: '>=6'}
yargs-parser@20.2.4:
- resolution:
- {
- integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==}
+ engines: {node: '>=10'}
yargs-parser@21.1.1:
- resolution:
- {
- integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
+ engines: {node: '>=12'}
yargs-unparser@2.0.0:
- resolution:
- {
- integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==}
+ engines: {node: '>=10'}
yargs@15.4.1:
- resolution:
- {
- integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==,
- }
- engines: { node: ">=8" }
+ resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
+ engines: {node: '>=8'}
yargs@16.2.0:
- resolution:
- {
- integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==,
- }
- engines: { node: ">=10" }
+ resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
+ engines: {node: '>=10'}
yargs@17.7.2:
- resolution:
- {
- integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==,
- }
- engines: { node: ">=12" }
+ resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
+ engines: {node: '>=12'}
yn@2.0.0:
- resolution:
- {
- integrity: sha512-uTv8J/wiWTgUTg+9vLTi//leUl5vDQS6uii/emeTb2ssY7vl6QWf2fFbIIGjnhjvbdKlU0ed7QPgY1htTC86jQ==,
- }
- engines: { node: ">=4" }
+ resolution: {integrity: sha512-uTv8J/wiWTgUTg+9vLTi//leUl5vDQS6uii/emeTb2ssY7vl6QWf2fFbIIGjnhjvbdKlU0ed7QPgY1htTC86jQ==}
+ engines: {node: '>=4'}
yn@3.1.1:
- resolution:
- {
- integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==,
- }
- engines: { node: ">=6" }
+ resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
+ engines: {node: '>=6'}
yocto-queue@0.1.0:
- resolution:
- {
- integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==,
- }
- engines: { node: ">=10" }
-
- zod@3.22.4:
- resolution:
- {
- integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==,
- }
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
+ engines: {node: '>=10'}
zod@3.23.8:
- resolution:
- {
- integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==,
- }
+ resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==}
snapshots:
- "@aashutoshrathi/word-wrap@1.2.6": {}
- "@adraffy/ens-normalize@1.10.0": {}
+ '@0no-co/graphql.web@1.0.8(graphql@16.9.0)':
+ optionalDependencies:
+ graphql: 16.9.0
+
+ '@0no-co/graphqlsp@1.12.13(graphql@16.9.0)(typescript@5.5.4)':
+ dependencies:
+ '@gql.tada/internal': 1.0.7(graphql@16.9.0)(typescript@5.5.4)
+ graphql: 16.9.0
+ typescript: 5.5.4
+
+ '@aashutoshrathi/word-wrap@1.2.6': {}
- "@adraffy/ens-normalize@1.10.1": {}
+ '@adraffy/ens-normalize@1.10.0': {}
- "@alloc/quick-lru@5.2.0": {}
+ '@adraffy/ens-normalize@1.10.1': {}
- "@ampproject/remapping@2.2.1":
+ '@alloc/quick-lru@5.2.0': {}
+
+ '@ampproject/remapping@2.2.1':
dependencies:
- "@jridgewell/gen-mapping": 0.3.3
- "@jridgewell/trace-mapping": 0.3.25
+ '@jridgewell/gen-mapping': 0.3.3
+ '@jridgewell/trace-mapping': 0.3.25
- "@apideck/better-ajv-errors@0.3.6(ajv@8.12.0)":
+ '@apideck/better-ajv-errors@0.3.6(ajv@8.12.0)':
dependencies:
ajv: 8.12.0
json-schema: 0.4.0
jsonpointer: 5.0.1
leven: 3.1.0
- "@babel/code-frame@7.24.7":
+ '@babel/code-frame@7.24.7':
dependencies:
- "@babel/highlight": 7.24.7
+ '@babel/highlight': 7.24.7
picocolors: 1.0.1
- "@babel/compat-data@7.25.2": {}
+ '@babel/compat-data@7.25.2': {}
- "@babel/core@7.24.0":
+ '@babel/core@7.25.2':
dependencies:
- "@ampproject/remapping": 2.2.1
- "@babel/code-frame": 7.24.7
- "@babel/generator": 7.23.6
- "@babel/helper-compilation-targets": 7.23.6
- "@babel/helper-module-transforms": 7.23.3(@babel/core@7.24.0)
- "@babel/helpers": 7.24.0
- "@babel/parser": 7.24.0
- "@babel/template": 7.24.0
- "@babel/traverse": 7.24.0(supports-color@5.5.0)
- "@babel/types": 7.24.0
- convert-source-map: 2.0.0
- debug: 4.3.4(supports-color@5.5.0)
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- "@babel/core@7.25.2":
- dependencies:
- "@ampproject/remapping": 2.2.1
- "@babel/code-frame": 7.24.7
- "@babel/generator": 7.25.0
- "@babel/helper-compilation-targets": 7.25.2
- "@babel/helper-module-transforms": 7.25.2(@babel/core@7.25.2)
- "@babel/helpers": 7.25.0
- "@babel/parser": 7.25.3
- "@babel/template": 7.25.0
- "@babel/traverse": 7.25.3
- "@babel/types": 7.25.2
+ '@ampproject/remapping': 2.2.1
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.25.0
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
+ '@babel/helpers': 7.25.0
+ '@babel/parser': 7.25.3
+ '@babel/template': 7.25.0
+ '@babel/traverse': 7.25.3(supports-color@5.5.0)
+ '@babel/types': 7.25.2
convert-source-map: 2.0.0
debug: 4.3.4(supports-color@5.5.0)
gensync: 1.0.0-beta.2
@@ -10362,680 +6692,665 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@babel/generator@7.25.0":
+ '@babel/generator@7.25.0':
dependencies:
- "@babel/types": 7.25.2
- "@jridgewell/gen-mapping": 0.3.5
- "@jridgewell/trace-mapping": 0.3.25
+ '@babel/types': 7.25.2
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
- "@babel/helper-annotate-as-pure@7.22.5":
+ '@babel/helper-annotate-as-pure@7.22.5':
dependencies:
- "@babel/types": 7.25.2
+ '@babel/types': 7.25.2
- "@babel/helper-builder-binary-assignment-operator-visitor@7.22.15":
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15':
dependencies:
- "@babel/types": 7.25.2
+ '@babel/types': 7.25.2
- "@babel/helper-compilation-targets@7.25.2":
+ '@babel/helper-compilation-targets@7.25.2':
dependencies:
- "@babel/compat-data": 7.25.2
- "@babel/helper-validator-option": 7.24.8
+ '@babel/compat-data': 7.25.2
+ '@babel/helper-validator-option': 7.24.8
browserslist: 4.23.3
lru-cache: 5.1.1
semver: 6.3.1
- "@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.25.2)":
- dependencies:
- "@babel/core": 7.25.2
- "@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/core@7.25.2)
- "@babel/helper-skip-transparent-expression-wrappers": 7.22.5
- "@babel/helper-split-export-declaration": 7.22.6
+ '@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@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/core@7.25.2)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
- "@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.25.2)":
+ '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-annotate-as-pure": 7.22.5
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
semver: 6.3.1
- "@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.25.2)":
+ '@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-compilation-targets": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
debug: 4.3.4(supports-color@5.5.0)
lodash.debounce: 4.0.8
resolve: 1.22.6
transitivePeerDependencies:
- supports-color
- "@babel/helper-environment-visitor@7.22.20": {}
-
- "@babel/helper-function-name@7.23.0":
- dependencies:
- "@babel/template": 7.25.0
- "@babel/types": 7.25.2
+ '@babel/helper-environment-visitor@7.22.20': {}
- "@babel/helper-hoist-variables@7.22.5":
+ '@babel/helper-function-name@7.23.0':
dependencies:
- "@babel/types": 7.25.2
+ '@babel/template': 7.25.0
+ '@babel/types': 7.25.2
- "@babel/helper-member-expression-to-functions@7.23.0":
+ '@babel/helper-hoist-variables@7.22.5':
dependencies:
- "@babel/types": 7.25.2
+ '@babel/types': 7.25.2
- "@babel/helper-module-imports@7.24.7":
+ '@babel/helper-member-expression-to-functions@7.23.0':
dependencies:
- "@babel/traverse": 7.25.3
- "@babel/types": 7.25.2
- transitivePeerDependencies:
- - supports-color
+ '@babel/types': 7.25.2
- "@babel/helper-module-imports@7.24.7(supports-color@5.5.0)":
+ '@babel/helper-module-imports@7.24.7(supports-color@5.5.0)':
dependencies:
- "@babel/traverse": 7.25.3(supports-color@5.5.0)
- "@babel/types": 7.25.2
+ '@babel/traverse': 7.25.3(supports-color@5.5.0)
+ '@babel/types': 7.25.2
transitivePeerDependencies:
- supports-color
- "@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)":
+ '@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-module-imports": 7.24.7
- "@babel/helper-simple-access": 7.24.7
- "@babel/helper-validator-identifier": 7.24.7
- "@babel/traverse": 7.25.3
+ '@babel/core': 7.25.2
+ '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0)
+ '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.3(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
- "@babel/helper-optimise-call-expression@7.22.5":
+ '@babel/helper-optimise-call-expression@7.22.5':
dependencies:
- "@babel/types": 7.25.2
+ '@babel/types': 7.25.2
- "@babel/helper-plugin-utils@7.24.8": {}
+ '@babel/helper-plugin-utils@7.24.8': {}
- "@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.25.2)":
+ '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-annotate-as-pure": 7.22.5
- "@babel/helper-environment-visitor": 7.22.20
- "@babel/helper-wrap-function": 7.22.20
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-wrap-function': 7.22.20
- "@babel/helper-replace-supers@7.22.20(@babel/core@7.25.2)":
+ '@babel/helper-replace-supers@7.22.20(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-environment-visitor": 7.22.20
- "@babel/helper-member-expression-to-functions": 7.23.0
- "@babel/helper-optimise-call-expression": 7.22.5
+ '@babel/core': 7.25.2
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
- "@babel/helper-simple-access@7.24.7":
+ '@babel/helper-simple-access@7.24.7':
dependencies:
- "@babel/traverse": 7.25.3
- "@babel/types": 7.25.2
+ '@babel/traverse': 7.25.3(supports-color@5.5.0)
+ '@babel/types': 7.25.2
transitivePeerDependencies:
- supports-color
- "@babel/helper-skip-transparent-expression-wrappers@7.22.5":
+ '@babel/helper-skip-transparent-expression-wrappers@7.22.5':
dependencies:
- "@babel/types": 7.25.2
+ '@babel/types': 7.25.2
- "@babel/helper-split-export-declaration@7.22.6":
+ '@babel/helper-split-export-declaration@7.22.6':
dependencies:
- "@babel/types": 7.25.2
-
- "@babel/helper-string-parser@7.23.4": {}
+ '@babel/types': 7.25.2
- "@babel/helper-string-parser@7.24.8": {}
+ '@babel/helper-string-parser@7.23.4': {}
- "@babel/helper-validator-identifier@7.22.20": {}
+ '@babel/helper-string-parser@7.24.8': {}
- "@babel/helper-validator-identifier@7.24.7": {}
+ '@babel/helper-validator-identifier@7.22.20': {}
- "@babel/helper-validator-option@7.24.8": {}
+ '@babel/helper-validator-identifier@7.24.7': {}
- "@babel/helper-wrap-function@7.22.20":
- dependencies:
- "@babel/helper-function-name": 7.23.0
- "@babel/template": 7.25.0
- "@babel/types": 7.25.2
+ '@babel/helper-validator-option@7.24.8': {}
- "@babel/helpers@7.24.0":
+ '@babel/helper-wrap-function@7.22.20':
dependencies:
- "@babel/template": 7.24.0
- "@babel/traverse": 7.24.0(supports-color@5.5.0)
- "@babel/types": 7.24.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-function-name': 7.23.0
+ '@babel/template': 7.25.0
+ '@babel/types': 7.25.2
- "@babel/helpers@7.25.0":
+ '@babel/helpers@7.25.0':
dependencies:
- "@babel/template": 7.25.0
- "@babel/types": 7.25.2
+ '@babel/template': 7.25.0
+ '@babel/types': 7.25.2
- "@babel/highlight@7.24.7":
+ '@babel/highlight@7.24.7':
dependencies:
- "@babel/helper-validator-identifier": 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
chalk: 2.4.2
js-tokens: 4.0.0
picocolors: 1.0.1
- "@babel/parser@7.24.0":
+ '@babel/parser@7.24.0':
dependencies:
- "@babel/types": 7.24.0
+ '@babel/types': 7.24.0
- "@babel/parser@7.25.3":
+ '@babel/parser@7.25.3':
dependencies:
- "@babel/types": 7.25.2
+ '@babel/types': 7.25.2
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.25.2)":
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.25.2)":
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/helper-skip-transparent-expression-wrappers": 7.22.5
- "@babel/plugin-transform-optional-chaining": 7.23.0(@babel/core@7.25.2)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.25.2)
- "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)":
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
+ '@babel/core': 7.25.2
- "@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.2)":
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.2)":
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.2)":
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.2)":
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.2)":
+ '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.25.2)":
+ '@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.25.2)":
+ '@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.2)":
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.2)":
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.25.2)":
+ '@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.2)":
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.2)":
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.2)":
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.2)":
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.2)":
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.2)":
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.2)":
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.2)":
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.2)":
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.25.2)
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.25.2)":
+ '@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-transform-async-generator-functions@7.22.15(@babel/core@7.25.2)":
+ '@babel/plugin-transform-async-generator-functions@7.22.15(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-environment-visitor": 7.22.20
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/helper-remap-async-to-generator": 7.22.20(@babel/core@7.25.2)
- "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.25.2)
+ '@babel/core': 7.25.2
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.25.2)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
- "@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.25.2)":
+ '@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-module-imports": 7.24.7
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/helper-remap-async-to-generator": 7.22.20(@babel/core@7.25.2)
+ '@babel/core': 7.25.2
+ '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- "@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.25.2)":
+ '@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-transform-block-scoping@7.23.0(@babel/core@7.25.2)":
+ '@babel/plugin-transform-block-scoping@7.23.0(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.25.2)":
+ '@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-create-class-features-plugin": 7.22.15(@babel/core@7.25.2)
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.25.2)":
+ '@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-create-class-features-plugin": 7.22.15(@babel/core@7.25.2)
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.25.2)
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
- "@babel/plugin-transform-classes@7.22.15(@babel/core@7.25.2)":
+ '@babel/plugin-transform-classes@7.22.15(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-annotate-as-pure": 7.22.5
- "@babel/helper-compilation-targets": 7.25.2
- "@babel/helper-environment-visitor": 7.22.20
- "@babel/helper-function-name": 7.23.0
- "@babel/helper-optimise-call-expression": 7.22.5
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/helper-replace-supers": 7.22.20(@babel/core@7.25.2)
- "@babel/helper-split-export-declaration": 7.22.6
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-function-name': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.25.2)
+ '@babel/helper-split-export-declaration': 7.22.6
globals: 11.12.0
- "@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.25.2)":
+ '@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/template": 7.25.0
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/template': 7.25.0
- "@babel/plugin-transform-destructuring@7.23.0(@babel/core@7.25.2)":
+ '@babel/plugin-transform-destructuring@7.23.0(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.25.2)":
+ '@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.25.2)
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.25.2)":
+ '@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.25.2)":
+ '@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.25.2)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
- "@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.25.2)":
+ '@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-builder-binary-assignment-operator-visitor": 7.22.15
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.25.2)":
+ '@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.25.2)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2)
- "@babel/plugin-transform-for-of@7.22.15(@babel/core@7.25.2)":
+ '@babel/plugin-transform-for-of@7.22.15(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-transform-function-name@7.22.5(@babel/core@7.25.2)":
+ '@babel/plugin-transform-function-name@7.22.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-compilation-targets": 7.25.2
- "@babel/helper-function-name": 7.23.0
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-function-name': 7.23.0
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.25.2)":
+ '@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.25.2)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
- "@babel/plugin-transform-literals@7.22.5(@babel/core@7.25.2)":
+ '@babel/plugin-transform-literals@7.22.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.25.2)":
+ '@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.25.2)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
- "@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.25.2)":
+ '@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-transform-modules-amd@7.23.0(@babel/core@7.25.2)":
+ '@babel/plugin-transform-modules-amd@7.23.0(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-module-transforms": 7.25.2(@babel/core@7.25.2)
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
- "@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.25.2)":
+ '@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-module-transforms": 7.25.2(@babel/core@7.25.2)
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/helper-simple-access": 7.24.7
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-simple-access': 7.24.7
transitivePeerDependencies:
- supports-color
- "@babel/plugin-transform-modules-systemjs@7.23.0(@babel/core@7.25.2)":
+ '@babel/plugin-transform-modules-systemjs@7.23.0(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-hoist-variables": 7.22.5
- "@babel/helper-module-transforms": 7.25.2(@babel/core@7.25.2)
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/helper-validator-identifier": 7.24.7
+ '@babel/core': 7.25.2
+ '@babel/helper-hoist-variables': 7.22.5
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-identifier': 7.24.7
transitivePeerDependencies:
- supports-color
- "@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.25.2)":
+ '@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-module-transforms": 7.25.2(@babel/core@7.25.2)
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
- "@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.25.2)":
+ '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.25.2)
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-transform-new-target@7.22.5(@babel/core@7.25.2)":
+ '@babel/plugin-transform-new-target@7.22.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.25.2)":
+ '@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.25.2)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
- "@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.25.2)":
+ '@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.25.2)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
- "@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.25.2)":
+ '@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.25.2)':
dependencies:
- "@babel/compat-data": 7.25.2
- "@babel/core": 7.25.2
- "@babel/helper-compilation-targets": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.25.2)
- "@babel/plugin-transform-parameters": 7.22.15(@babel/core@7.25.2)
+ '@babel/compat-data': 7.25.2
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.25.2)
- "@babel/plugin-transform-object-super@7.22.5(@babel/core@7.25.2)":
+ '@babel/plugin-transform-object-super@7.22.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/helper-replace-supers": 7.22.20(@babel/core@7.25.2)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.25.2)
- "@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.25.2)":
+ '@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.25.2)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
- "@babel/plugin-transform-optional-chaining@7.23.0(@babel/core@7.25.2)":
+ '@babel/plugin-transform-optional-chaining@7.23.0(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/helper-skip-transparent-expression-wrappers": 7.22.5
- "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.25.2)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
- "@babel/plugin-transform-parameters@7.22.15(@babel/core@7.25.2)":
+ '@babel/plugin-transform-parameters@7.22.15(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.25.2)":
+ '@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-create-class-features-plugin": 7.22.15(@babel/core@7.25.2)
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.25.2)":
+ '@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-annotate-as-pure": 7.22.5
- "@babel/helper-create-class-features-plugin": 7.22.15(@babel/core@7.25.2)
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.25.2)
+ '@babel/core': 7.25.2
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
- "@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.25.2)":
+ '@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.25.2)":
+ '@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.25.2)":
+ '@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
- "@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.25.2)":
+ '@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
regenerator-transform: 0.15.2
- "@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.25.2)":
- dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
-
- "@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.25.2)":
- dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
-
- "@babel/plugin-transform-spread@7.22.5(@babel/core@7.25.2)":
- dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/helper-skip-transparent-expression-wrappers": 7.22.5
-
- "@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.25.2)":
- dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
-
- "@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.25.2)":
- dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
-
- "@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.25.2)":
- dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
-
- "@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.25.2)":
- dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
-
- "@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.25.2)":
- dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.25.2)
- "@babel/helper-plugin-utils": 7.24.8
-
- "@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.25.2)":
- dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.25.2)
- "@babel/helper-plugin-utils": 7.24.8
-
- "@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.25.2)":
- dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.25.2)
- "@babel/helper-plugin-utils": 7.24.8
-
- "@babel/preset-env@7.22.20(@babel/core@7.25.2)":
- dependencies:
- "@babel/compat-data": 7.25.2
- "@babel/core": 7.25.2
- "@babel/helper-compilation-targets": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/helper-validator-option": 7.24.8
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.22.15(@babel/core@7.25.2)
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.22.15(@babel/core@7.25.2)
- "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)
- "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.25.2)
- "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.25.2)
- "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.25.2)
- "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.25.2)
- "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.25.2)
- "@babel/plugin-syntax-import-assertions": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-syntax-import-attributes": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.25.2)
- "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.25.2)
- "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.25.2)
- "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.25.2)
- "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.25.2)
- "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.25.2)
- "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.25.2)
- "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.25.2)
- "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.25.2)
- "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.25.2)
- "@babel/plugin-syntax-unicode-sets-regex": 7.18.6(@babel/core@7.25.2)
- "@babel/plugin-transform-arrow-functions": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-async-generator-functions": 7.22.15(@babel/core@7.25.2)
- "@babel/plugin-transform-async-to-generator": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-block-scoped-functions": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-block-scoping": 7.23.0(@babel/core@7.25.2)
- "@babel/plugin-transform-class-properties": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-class-static-block": 7.22.11(@babel/core@7.25.2)
- "@babel/plugin-transform-classes": 7.22.15(@babel/core@7.25.2)
- "@babel/plugin-transform-computed-properties": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-destructuring": 7.23.0(@babel/core@7.25.2)
- "@babel/plugin-transform-dotall-regex": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-duplicate-keys": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-dynamic-import": 7.22.11(@babel/core@7.25.2)
- "@babel/plugin-transform-exponentiation-operator": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-export-namespace-from": 7.22.11(@babel/core@7.25.2)
- "@babel/plugin-transform-for-of": 7.22.15(@babel/core@7.25.2)
- "@babel/plugin-transform-function-name": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-json-strings": 7.22.11(@babel/core@7.25.2)
- "@babel/plugin-transform-literals": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-logical-assignment-operators": 7.22.11(@babel/core@7.25.2)
- "@babel/plugin-transform-member-expression-literals": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-modules-amd": 7.23.0(@babel/core@7.25.2)
- "@babel/plugin-transform-modules-commonjs": 7.23.0(@babel/core@7.25.2)
- "@babel/plugin-transform-modules-systemjs": 7.23.0(@babel/core@7.25.2)
- "@babel/plugin-transform-modules-umd": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-new-target": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-nullish-coalescing-operator": 7.22.11(@babel/core@7.25.2)
- "@babel/plugin-transform-numeric-separator": 7.22.11(@babel/core@7.25.2)
- "@babel/plugin-transform-object-rest-spread": 7.22.15(@babel/core@7.25.2)
- "@babel/plugin-transform-object-super": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-optional-catch-binding": 7.22.11(@babel/core@7.25.2)
- "@babel/plugin-transform-optional-chaining": 7.23.0(@babel/core@7.25.2)
- "@babel/plugin-transform-parameters": 7.22.15(@babel/core@7.25.2)
- "@babel/plugin-transform-private-methods": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-private-property-in-object": 7.22.11(@babel/core@7.25.2)
- "@babel/plugin-transform-property-literals": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-regenerator": 7.22.10(@babel/core@7.25.2)
- "@babel/plugin-transform-reserved-words": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-shorthand-properties": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-spread": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-sticky-regex": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-template-literals": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-typeof-symbol": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-unicode-escapes": 7.22.10(@babel/core@7.25.2)
- "@babel/plugin-transform-unicode-property-regex": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-unicode-regex": 7.22.5(@babel/core@7.25.2)
- "@babel/plugin-transform-unicode-sets-regex": 7.22.5(@babel/core@7.25.2)
- "@babel/preset-modules": 0.1.6-no-external-plugins(@babel/core@7.25.2)
- "@babel/types": 7.25.2
+ '@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-spread@7.22.5(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+
+ '@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.25.2)
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/preset-env@7.22.20(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/compat-data': 7.25.2
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-option': 7.24.8
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15(@babel/core@7.25.2)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15(@babel/core@7.25.2)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.2)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.2)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.25.2)
+ '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-async-generator-functions': 7.22.15(@babel/core@7.25.2)
+ '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.25.2)
+ '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-class-static-block': 7.22.11(@babel/core@7.25.2)
+ '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.25.2)
+ '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.25.2)
+ '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-dynamic-import': 7.22.11(@babel/core@7.25.2)
+ '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-export-namespace-from': 7.22.11(@babel/core@7.25.2)
+ '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.25.2)
+ '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-json-strings': 7.22.11(@babel/core@7.25.2)
+ '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-logical-assignment-operators': 7.22.11(@babel/core@7.25.2)
+ '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-amd': 7.23.0(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-systemjs': 7.23.0(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11(@babel/core@7.25.2)
+ '@babel/plugin-transform-numeric-separator': 7.22.11(@babel/core@7.25.2)
+ '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.25.2)
+ '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-optional-catch-binding': 7.22.11(@babel/core@7.25.2)
+ '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.25.2)
+ '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.25.2)
+ '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-private-property-in-object': 7.22.11(@babel/core@7.25.2)
+ '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.25.2)
+ '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.25.2)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.25.2)
+ '@babel/types': 7.25.2
babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.25.2)
babel-plugin-polyfill-corejs3: 0.8.4(@babel/core@7.25.2)
babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.25.2)
@@ -11044,112 +7359,91 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.2)":
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.2)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-plugin-utils": 7.24.8
- "@babel/types": 7.25.2
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/types': 7.25.2
esutils: 2.0.3
- "@babel/regjsgen@0.8.0": {}
+ '@babel/regjsgen@0.8.0': {}
- "@babel/runtime@7.24.0":
+ '@babel/runtime@7.24.0':
dependencies:
regenerator-runtime: 0.14.0
- "@babel/template@7.25.0":
- dependencies:
- "@babel/code-frame": 7.24.7
- "@babel/parser": 7.25.3
- "@babel/types": 7.25.2
-
- "@babel/traverse@7.24.0(supports-color@5.5.0)":
- dependencies:
- "@babel/code-frame": 7.24.7
- "@babel/generator": 7.23.6
- "@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.24.0
- "@babel/types": 7.24.0
- debug: 4.3.4(supports-color@5.5.0)
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
- "@babel/traverse@7.25.3":
+ '@babel/template@7.25.0':
dependencies:
- "@babel/code-frame": 7.24.7
- "@babel/generator": 7.25.0
- "@babel/parser": 7.25.3
- "@babel/template": 7.25.0
- "@babel/types": 7.25.2
- debug: 4.3.4(supports-color@5.5.0)
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/code-frame': 7.24.7
+ '@babel/parser': 7.25.3
+ '@babel/types': 7.25.2
- "@babel/traverse@7.25.3(supports-color@5.5.0)":
+ '@babel/traverse@7.25.3(supports-color@5.5.0)':
dependencies:
- "@babel/code-frame": 7.24.7
- "@babel/generator": 7.25.0
- "@babel/parser": 7.25.3
- "@babel/template": 7.25.0
- "@babel/types": 7.25.2
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.25.0
+ '@babel/parser': 7.25.3
+ '@babel/template': 7.25.0
+ '@babel/types': 7.25.2
debug: 4.3.4(supports-color@5.5.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- "@babel/types@7.24.0":
+ '@babel/types@7.24.0':
dependencies:
- "@babel/helper-string-parser": 7.23.4
- "@babel/helper-validator-identifier": 7.22.20
+ '@babel/helper-string-parser': 7.23.4
+ '@babel/helper-validator-identifier': 7.22.20
to-fast-properties: 2.0.0
- "@babel/types@7.25.2":
+ '@babel/types@7.25.2':
dependencies:
- "@babel/helper-string-parser": 7.24.8
- "@babel/helper-validator-identifier": 7.24.7
+ '@babel/helper-string-parser': 7.24.8
+ '@babel/helper-validator-identifier': 7.24.7
to-fast-properties: 2.0.0
- "@biomejs/biome@1.7.3":
+ '@biomejs/biome@1.7.3':
optionalDependencies:
- "@biomejs/cli-darwin-arm64": 1.7.3
- "@biomejs/cli-darwin-x64": 1.7.3
- "@biomejs/cli-linux-arm64": 1.7.3
- "@biomejs/cli-linux-arm64-musl": 1.7.3
- "@biomejs/cli-linux-x64": 1.7.3
- "@biomejs/cli-linux-x64-musl": 1.7.3
- "@biomejs/cli-win32-arm64": 1.7.3
- "@biomejs/cli-win32-x64": 1.7.3
-
- "@biomejs/cli-darwin-arm64@1.7.3":
+ '@biomejs/cli-darwin-arm64': 1.7.3
+ '@biomejs/cli-darwin-x64': 1.7.3
+ '@biomejs/cli-linux-arm64': 1.7.3
+ '@biomejs/cli-linux-arm64-musl': 1.7.3
+ '@biomejs/cli-linux-x64': 1.7.3
+ '@biomejs/cli-linux-x64-musl': 1.7.3
+ '@biomejs/cli-win32-arm64': 1.7.3
+ '@biomejs/cli-win32-x64': 1.7.3
+
+ '@biomejs/cli-darwin-arm64@1.7.3':
optional: true
- "@biomejs/cli-darwin-x64@1.7.3":
+ '@biomejs/cli-darwin-x64@1.7.3':
optional: true
- "@biomejs/cli-linux-arm64-musl@1.7.3":
+ '@biomejs/cli-linux-arm64-musl@1.7.3':
optional: true
- "@biomejs/cli-linux-arm64@1.7.3":
+ '@biomejs/cli-linux-arm64@1.7.3':
optional: true
- "@biomejs/cli-linux-x64-musl@1.7.3":
+ '@biomejs/cli-linux-x64-musl@1.7.3':
optional: true
- "@biomejs/cli-linux-x64@1.7.3":
+ '@biomejs/cli-linux-x64@1.7.3':
optional: true
- "@biomejs/cli-win32-arm64@1.7.3":
+ '@biomejs/cli-win32-arm64@1.7.3':
optional: true
- "@biomejs/cli-win32-x64@1.7.3":
+ '@biomejs/cli-win32-x64@1.7.3':
optional: true
- "@coinbase/wallet-sdk@4.0.3":
+ '@chainsafe/is-ip@2.0.2': {}
+
+ '@chainsafe/netmask@2.0.0':
+ dependencies:
+ '@chainsafe/is-ip': 2.0.2
+
+ '@coinbase/wallet-sdk@4.0.3':
dependencies:
buffer: 6.0.3
clsx: 1.2.1
@@ -11158,105 +7452,181 @@ snapshots:
preact: 10.19.6
sha.js: 2.4.11
- "@cspotcode/source-map-support@0.8.1":
+ '@cspotcode/source-map-support@0.8.1':
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.9
+
+ '@edge-runtime/format@2.2.1': {}
+
+ '@edge-runtime/node-utils@2.3.0': {}
+
+ '@edge-runtime/ponyfill@2.4.2': {}
+
+ '@edge-runtime/primitives@4.1.0': {}
+
+ '@edge-runtime/vm@3.2.0':
+ dependencies:
+ '@edge-runtime/primitives': 4.1.0
+
+ '@emotion/babel-plugin@11.12.0':
+ dependencies:
+ '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0)
+ '@babel/runtime': 7.24.0
+ '@emotion/hash': 0.9.2
+ '@emotion/memoize': 0.9.0
+ '@emotion/serialize': 1.3.1
+ babel-plugin-macros: 3.1.0
+ convert-source-map: 1.9.0
+ escape-string-regexp: 4.0.0
+ find-root: 1.1.0
+ source-map: 0.5.7
+ stylis: 4.2.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@emotion/cache@11.13.1':
+ dependencies:
+ '@emotion/memoize': 0.9.0
+ '@emotion/sheet': 1.4.0
+ '@emotion/utils': 1.4.0
+ '@emotion/weak-memoize': 0.4.0
+ stylis: 4.2.0
+
+ '@emotion/hash@0.9.2': {}
+
+ '@emotion/is-prop-valid@1.2.2':
+ dependencies:
+ '@emotion/memoize': 0.8.1
+
+ '@emotion/memoize@0.8.1': {}
+
+ '@emotion/memoize@0.9.0': {}
+
+ '@emotion/react@11.13.3(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- "@jridgewell/trace-mapping": 0.3.9
+ '@babel/runtime': 7.24.0
+ '@emotion/babel-plugin': 11.12.0
+ '@emotion/cache': 11.13.1
+ '@emotion/serialize': 1.3.1
+ '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.3.1)
+ '@emotion/utils': 1.4.0
+ '@emotion/weak-memoize': 0.4.0
+ hoist-non-react-statics: 3.3.2
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.3.3
+ transitivePeerDependencies:
+ - supports-color
- "@emotion/is-prop-valid@1.2.2":
+ '@emotion/serialize@1.3.1':
dependencies:
- "@emotion/memoize": 0.8.1
+ '@emotion/hash': 0.9.2
+ '@emotion/memoize': 0.9.0
+ '@emotion/unitless': 0.10.0
+ '@emotion/utils': 1.4.0
+ csstype: 3.1.2
- "@emotion/memoize@0.8.1": {}
+ '@emotion/sheet@1.4.0': {}
- "@emotion/stylis@0.8.5": {}
+ '@emotion/stylis@0.8.5': {}
- "@emotion/unitless@0.7.5": {}
+ '@emotion/unitless@0.10.0': {}
- "@esbuild/aix-ppc64@0.21.5":
+ '@emotion/unitless@0.7.5': {}
+
+ '@emotion/use-insertion-effect-with-fallbacks@1.1.0(react@18.3.1)':
+ dependencies:
+ react: 18.3.1
+
+ '@emotion/utils@1.4.0': {}
+
+ '@emotion/weak-memoize@0.4.0': {}
+
+ '@esbuild/aix-ppc64@0.21.5':
optional: true
- "@esbuild/android-arm64@0.21.5":
+ '@esbuild/android-arm64@0.21.5':
optional: true
- "@esbuild/android-arm@0.21.5":
+ '@esbuild/android-arm@0.21.5':
optional: true
- "@esbuild/android-x64@0.21.5":
+ '@esbuild/android-x64@0.21.5':
optional: true
- "@esbuild/darwin-arm64@0.21.5":
+ '@esbuild/darwin-arm64@0.21.5':
optional: true
- "@esbuild/darwin-x64@0.21.5":
+ '@esbuild/darwin-x64@0.21.5':
optional: true
- "@esbuild/freebsd-arm64@0.21.5":
+ '@esbuild/freebsd-arm64@0.21.5':
optional: true
- "@esbuild/freebsd-x64@0.21.5":
+ '@esbuild/freebsd-x64@0.21.5':
optional: true
- "@esbuild/linux-arm64@0.21.5":
+ '@esbuild/linux-arm64@0.21.5':
optional: true
- "@esbuild/linux-arm@0.21.5":
+ '@esbuild/linux-arm@0.21.5':
optional: true
- "@esbuild/linux-ia32@0.21.5":
+ '@esbuild/linux-ia32@0.21.5':
optional: true
- "@esbuild/linux-loong64@0.21.5":
+ '@esbuild/linux-loong64@0.21.5':
optional: true
- "@esbuild/linux-mips64el@0.21.5":
+ '@esbuild/linux-mips64el@0.21.5':
optional: true
- "@esbuild/linux-ppc64@0.21.5":
+ '@esbuild/linux-ppc64@0.21.5':
optional: true
- "@esbuild/linux-riscv64@0.21.5":
+ '@esbuild/linux-riscv64@0.21.5':
optional: true
- "@esbuild/linux-s390x@0.21.5":
+ '@esbuild/linux-s390x@0.21.5':
optional: true
- "@esbuild/linux-x64@0.21.5":
+ '@esbuild/linux-x64@0.21.5':
optional: true
- "@esbuild/netbsd-x64@0.21.5":
+ '@esbuild/netbsd-x64@0.21.5':
optional: true
- "@esbuild/openbsd-x64@0.21.5":
+ '@esbuild/openbsd-x64@0.21.5':
optional: true
- "@esbuild/sunos-x64@0.21.5":
+ '@esbuild/sunos-x64@0.21.5':
optional: true
- "@esbuild/win32-arm64@0.21.5":
+ '@esbuild/win32-arm64@0.21.5':
optional: true
- "@esbuild/win32-ia32@0.21.5":
+ '@esbuild/win32-ia32@0.21.5':
optional: true
- "@esbuild/win32-x64@0.21.5":
+ '@esbuild/win32-x64@0.21.5':
optional: true
- "@eslint-community/eslint-utils@4.4.0(eslint@9.9.0(jiti@1.21.0))":
+ '@eslint-community/eslint-utils@4.4.0(eslint@9.9.0(jiti@1.21.0))':
dependencies:
eslint: 9.9.0(jiti@1.21.0)
eslint-visitor-keys: 3.4.3
- "@eslint-community/regexpp@4.11.0": {}
+ '@eslint-community/regexpp@4.11.0': {}
- "@eslint/config-array@0.17.1":
+ '@eslint/config-array@0.17.1':
dependencies:
- "@eslint/object-schema": 2.1.4
+ '@eslint/object-schema': 2.1.4
debug: 4.3.4(supports-color@5.5.0)
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
- "@eslint/eslintrc@3.1.0":
+ '@eslint/eslintrc@3.1.0':
dependencies:
ajv: 6.12.6
debug: 4.3.4(supports-color@5.5.0)
@@ -11270,13 +7640,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@eslint/js@9.9.0": {}
+ '@eslint/js@9.9.0': {}
- "@eslint/object-schema@2.1.4": {}
+ '@eslint/object-schema@2.1.4': {}
- "@ethereum-attestation-service/eas-contracts@1.4.1(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10)":
+ '@ethereum-attestation-service/eas-contracts@1.4.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.5.1)(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10)':
dependencies:
- hardhat: 2.22.1(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10)
+ hardhat: 2.22.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.5.1)(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- c-kzg
@@ -11285,9 +7655,9 @@ snapshots:
- typescript
- utf-8-validate
- "@ethereum-attestation-service/eas-contracts@1.7.1(bufferutil@4.0.7)(ts-node@10.9.2(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10)":
+ '@ethereum-attestation-service/eas-contracts@1.7.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.5.1)(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10)':
dependencies:
- hardhat: 2.22.4(bufferutil@4.0.7)(ts-node@10.9.2(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10)
+ hardhat: 2.22.4(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.5.1)(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- c-kzg
@@ -11296,11 +7666,11 @@ snapshots:
- typescript
- utf-8-validate
- "@ethereum-attestation-service/eas-sdk@2.5.0(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10)":
+ '@ethereum-attestation-service/eas-sdk@2.5.0(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.5.1)(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10)':
dependencies:
- "@ethereum-attestation-service/eas-contracts": 1.4.1(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10)
- "@openzeppelin/merkle-tree": 1.0.6
- ethers: 6.13.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ '@ethereum-attestation-service/eas-contracts': 1.4.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.5.1)(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10)
+ '@openzeppelin/merkle-tree': 1.0.6
+ ethers: 6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
js-base64: 3.7.7
lodash: 4.17.21
multiformats: 9.9.0
@@ -11314,374 +7684,456 @@ snapshots:
- typescript
- utf-8-validate
- "@ethereumjs/common@3.2.0":
+ '@ethereumjs/common@3.2.0':
dependencies:
- "@ethereumjs/util": 8.1.0
+ '@ethereumjs/util': 8.1.0
crc-32: 1.2.2
- "@ethereumjs/rlp@4.0.1": {}
+ '@ethereumjs/rlp@4.0.1': {}
- "@ethereumjs/tx@4.2.0":
+ '@ethereumjs/tx@4.2.0':
dependencies:
- "@ethereumjs/common": 3.2.0
- "@ethereumjs/rlp": 4.0.1
- "@ethereumjs/util": 8.1.0
+ '@ethereumjs/common': 3.2.0
+ '@ethereumjs/rlp': 4.0.1
+ '@ethereumjs/util': 8.1.0
ethereum-cryptography: 2.1.2
- "@ethereumjs/util@8.1.0":
+ '@ethereumjs/util@8.1.0':
dependencies:
- "@ethereumjs/rlp": 4.0.1
+ '@ethereumjs/rlp': 4.0.1
ethereum-cryptography: 2.1.2
micro-ftch: 0.3.1
- "@ethersproject/abi@5.7.0":
+ '@ethersproject/abi@5.7.0':
dependencies:
- "@ethersproject/address": 5.7.0
- "@ethersproject/bignumber": 5.7.0
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/constants": 5.7.0
- "@ethersproject/hash": 5.7.0
- "@ethersproject/keccak256": 5.7.0
- "@ethersproject/logger": 5.7.0
- "@ethersproject/properties": 5.7.0
- "@ethersproject/strings": 5.7.0
+ '@ethersproject/address': 5.7.0
+ '@ethersproject/bignumber': 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/constants': 5.7.0
+ '@ethersproject/hash': 5.7.0
+ '@ethersproject/keccak256': 5.7.0
+ '@ethersproject/logger': 5.7.0
+ '@ethersproject/properties': 5.7.0
+ '@ethersproject/strings': 5.7.0
- "@ethersproject/abstract-provider@5.7.0":
+ '@ethersproject/abstract-provider@5.7.0':
dependencies:
- "@ethersproject/bignumber": 5.7.0
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/logger": 5.7.0
- "@ethersproject/networks": 5.7.1
- "@ethersproject/properties": 5.7.0
- "@ethersproject/transactions": 5.7.0
- "@ethersproject/web": 5.7.1
+ '@ethersproject/bignumber': 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/logger': 5.7.0
+ '@ethersproject/networks': 5.7.1
+ '@ethersproject/properties': 5.7.0
+ '@ethersproject/transactions': 5.7.0
+ '@ethersproject/web': 5.7.1
- "@ethersproject/abstract-signer@5.7.0":
+ '@ethersproject/abstract-signer@5.7.0':
dependencies:
- "@ethersproject/abstract-provider": 5.7.0
- "@ethersproject/bignumber": 5.7.0
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/logger": 5.7.0
- "@ethersproject/properties": 5.7.0
+ '@ethersproject/abstract-provider': 5.7.0
+ '@ethersproject/bignumber': 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/logger': 5.7.0
+ '@ethersproject/properties': 5.7.0
- "@ethersproject/address@5.7.0":
+ '@ethersproject/address@5.7.0':
dependencies:
- "@ethersproject/bignumber": 5.7.0
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/keccak256": 5.7.0
- "@ethersproject/logger": 5.7.0
- "@ethersproject/rlp": 5.7.0
+ '@ethersproject/bignumber': 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/keccak256': 5.7.0
+ '@ethersproject/logger': 5.7.0
+ '@ethersproject/rlp': 5.7.0
- "@ethersproject/base64@5.7.0":
+ '@ethersproject/base64@5.7.0':
dependencies:
- "@ethersproject/bytes": 5.7.0
+ '@ethersproject/bytes': 5.7.0
- "@ethersproject/basex@5.7.0":
+ '@ethersproject/basex@5.7.0':
dependencies:
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/properties": 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/properties': 5.7.0
- "@ethersproject/bignumber@5.7.0":
+ '@ethersproject/bignumber@5.7.0':
dependencies:
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/logger": 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/logger': 5.7.0
bn.js: 5.2.1
- "@ethersproject/bytes@5.7.0":
- dependencies:
- "@ethersproject/logger": 5.7.0
-
- "@ethersproject/constants@5.7.0":
- dependencies:
- "@ethersproject/bignumber": 5.7.0
-
- "@ethersproject/contracts@5.7.0":
- dependencies:
- "@ethersproject/abi": 5.7.0
- "@ethersproject/abstract-provider": 5.7.0
- "@ethersproject/abstract-signer": 5.7.0
- "@ethersproject/address": 5.7.0
- "@ethersproject/bignumber": 5.7.0
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/constants": 5.7.0
- "@ethersproject/logger": 5.7.0
- "@ethersproject/properties": 5.7.0
- "@ethersproject/transactions": 5.7.0
-
- "@ethersproject/hash@5.7.0":
- dependencies:
- "@ethersproject/abstract-signer": 5.7.0
- "@ethersproject/address": 5.7.0
- "@ethersproject/base64": 5.7.0
- "@ethersproject/bignumber": 5.7.0
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/keccak256": 5.7.0
- "@ethersproject/logger": 5.7.0
- "@ethersproject/properties": 5.7.0
- "@ethersproject/strings": 5.7.0
-
- "@ethersproject/hdnode@5.7.0":
- dependencies:
- "@ethersproject/abstract-signer": 5.7.0
- "@ethersproject/basex": 5.7.0
- "@ethersproject/bignumber": 5.7.0
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/logger": 5.7.0
- "@ethersproject/pbkdf2": 5.7.0
- "@ethersproject/properties": 5.7.0
- "@ethersproject/sha2": 5.7.0
- "@ethersproject/signing-key": 5.7.0
- "@ethersproject/strings": 5.7.0
- "@ethersproject/transactions": 5.7.0
- "@ethersproject/wordlists": 5.7.0
-
- "@ethersproject/json-wallets@5.7.0":
- dependencies:
- "@ethersproject/abstract-signer": 5.7.0
- "@ethersproject/address": 5.7.0
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/hdnode": 5.7.0
- "@ethersproject/keccak256": 5.7.0
- "@ethersproject/logger": 5.7.0
- "@ethersproject/pbkdf2": 5.7.0
- "@ethersproject/properties": 5.7.0
- "@ethersproject/random": 5.7.0
- "@ethersproject/strings": 5.7.0
- "@ethersproject/transactions": 5.7.0
+ '@ethersproject/bytes@5.7.0':
+ dependencies:
+ '@ethersproject/logger': 5.7.0
+
+ '@ethersproject/constants@5.7.0':
+ dependencies:
+ '@ethersproject/bignumber': 5.7.0
+
+ '@ethersproject/contracts@5.7.0':
+ dependencies:
+ '@ethersproject/abi': 5.7.0
+ '@ethersproject/abstract-provider': 5.7.0
+ '@ethersproject/abstract-signer': 5.7.0
+ '@ethersproject/address': 5.7.0
+ '@ethersproject/bignumber': 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/constants': 5.7.0
+ '@ethersproject/logger': 5.7.0
+ '@ethersproject/properties': 5.7.0
+ '@ethersproject/transactions': 5.7.0
+
+ '@ethersproject/hash@5.7.0':
+ dependencies:
+ '@ethersproject/abstract-signer': 5.7.0
+ '@ethersproject/address': 5.7.0
+ '@ethersproject/base64': 5.7.0
+ '@ethersproject/bignumber': 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/keccak256': 5.7.0
+ '@ethersproject/logger': 5.7.0
+ '@ethersproject/properties': 5.7.0
+ '@ethersproject/strings': 5.7.0
+
+ '@ethersproject/hdnode@5.7.0':
+ dependencies:
+ '@ethersproject/abstract-signer': 5.7.0
+ '@ethersproject/basex': 5.7.0
+ '@ethersproject/bignumber': 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/logger': 5.7.0
+ '@ethersproject/pbkdf2': 5.7.0
+ '@ethersproject/properties': 5.7.0
+ '@ethersproject/sha2': 5.7.0
+ '@ethersproject/signing-key': 5.7.0
+ '@ethersproject/strings': 5.7.0
+ '@ethersproject/transactions': 5.7.0
+ '@ethersproject/wordlists': 5.7.0
+
+ '@ethersproject/json-wallets@5.7.0':
+ dependencies:
+ '@ethersproject/abstract-signer': 5.7.0
+ '@ethersproject/address': 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/hdnode': 5.7.0
+ '@ethersproject/keccak256': 5.7.0
+ '@ethersproject/logger': 5.7.0
+ '@ethersproject/pbkdf2': 5.7.0
+ '@ethersproject/properties': 5.7.0
+ '@ethersproject/random': 5.7.0
+ '@ethersproject/strings': 5.7.0
+ '@ethersproject/transactions': 5.7.0
aes-js: 3.0.0
scrypt-js: 3.0.1
- "@ethersproject/keccak256@5.7.0":
+ '@ethersproject/keccak256@5.7.0':
dependencies:
- "@ethersproject/bytes": 5.7.0
+ '@ethersproject/bytes': 5.7.0
js-sha3: 0.8.0
- "@ethersproject/logger@5.7.0": {}
+ '@ethersproject/logger@5.7.0': {}
- "@ethersproject/networks@5.7.1":
+ '@ethersproject/networks@5.7.1':
dependencies:
- "@ethersproject/logger": 5.7.0
+ '@ethersproject/logger': 5.7.0
- "@ethersproject/pbkdf2@5.7.0":
+ '@ethersproject/pbkdf2@5.7.0':
dependencies:
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/sha2": 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/sha2': 5.7.0
- "@ethersproject/properties@5.7.0":
+ '@ethersproject/properties@5.7.0':
dependencies:
- "@ethersproject/logger": 5.7.0
+ '@ethersproject/logger': 5.7.0
- "@ethersproject/providers@5.7.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)":
+ '@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
- "@ethersproject/abstract-provider": 5.7.0
- "@ethersproject/abstract-signer": 5.7.0
- "@ethersproject/address": 5.7.0
- "@ethersproject/base64": 5.7.0
- "@ethersproject/basex": 5.7.0
- "@ethersproject/bignumber": 5.7.0
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/constants": 5.7.0
- "@ethersproject/hash": 5.7.0
- "@ethersproject/logger": 5.7.0
- "@ethersproject/networks": 5.7.1
- "@ethersproject/properties": 5.7.0
- "@ethersproject/random": 5.7.0
- "@ethersproject/rlp": 5.7.0
- "@ethersproject/sha2": 5.7.0
- "@ethersproject/strings": 5.7.0
- "@ethersproject/transactions": 5.7.0
- "@ethersproject/web": 5.7.1
+ '@ethersproject/abstract-provider': 5.7.0
+ '@ethersproject/abstract-signer': 5.7.0
+ '@ethersproject/address': 5.7.0
+ '@ethersproject/base64': 5.7.0
+ '@ethersproject/basex': 5.7.0
+ '@ethersproject/bignumber': 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/constants': 5.7.0
+ '@ethersproject/hash': 5.7.0
+ '@ethersproject/logger': 5.7.0
+ '@ethersproject/networks': 5.7.1
+ '@ethersproject/properties': 5.7.0
+ '@ethersproject/random': 5.7.0
+ '@ethersproject/rlp': 5.7.0
+ '@ethersproject/sha2': 5.7.0
+ '@ethersproject/strings': 5.7.0
+ '@ethersproject/transactions': 5.7.0
+ '@ethersproject/web': 5.7.1
bech32: 1.1.4
- ws: 7.4.6(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ ws: 7.4.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- "@ethersproject/random@5.7.0":
+ '@ethersproject/random@5.7.0':
dependencies:
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/logger": 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/logger': 5.7.0
- "@ethersproject/rlp@5.7.0":
+ '@ethersproject/rlp@5.7.0':
dependencies:
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/logger": 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/logger': 5.7.0
- "@ethersproject/sha2@5.7.0":
+ '@ethersproject/sha2@5.7.0':
dependencies:
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/logger": 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/logger': 5.7.0
hash.js: 1.1.7
- "@ethersproject/signing-key@5.7.0":
+ '@ethersproject/signing-key@5.7.0':
dependencies:
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/logger": 5.7.0
- "@ethersproject/properties": 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/logger': 5.7.0
+ '@ethersproject/properties': 5.7.0
bn.js: 5.2.1
elliptic: 6.5.4
hash.js: 1.1.7
- "@ethersproject/solidity@5.7.0":
- dependencies:
- "@ethersproject/bignumber": 5.7.0
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/keccak256": 5.7.0
- "@ethersproject/logger": 5.7.0
- "@ethersproject/sha2": 5.7.0
- "@ethersproject/strings": 5.7.0
-
- "@ethersproject/strings@5.7.0":
- dependencies:
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/constants": 5.7.0
- "@ethersproject/logger": 5.7.0
-
- "@ethersproject/transactions@5.7.0":
- dependencies:
- "@ethersproject/address": 5.7.0
- "@ethersproject/bignumber": 5.7.0
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/constants": 5.7.0
- "@ethersproject/keccak256": 5.7.0
- "@ethersproject/logger": 5.7.0
- "@ethersproject/properties": 5.7.0
- "@ethersproject/rlp": 5.7.0
- "@ethersproject/signing-key": 5.7.0
-
- "@ethersproject/units@5.7.0":
- dependencies:
- "@ethersproject/bignumber": 5.7.0
- "@ethersproject/constants": 5.7.0
- "@ethersproject/logger": 5.7.0
-
- "@ethersproject/wallet@5.7.0":
- dependencies:
- "@ethersproject/abstract-provider": 5.7.0
- "@ethersproject/abstract-signer": 5.7.0
- "@ethersproject/address": 5.7.0
- "@ethersproject/bignumber": 5.7.0
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/hash": 5.7.0
- "@ethersproject/hdnode": 5.7.0
- "@ethersproject/json-wallets": 5.7.0
- "@ethersproject/keccak256": 5.7.0
- "@ethersproject/logger": 5.7.0
- "@ethersproject/properties": 5.7.0
- "@ethersproject/random": 5.7.0
- "@ethersproject/signing-key": 5.7.0
- "@ethersproject/transactions": 5.7.0
- "@ethersproject/wordlists": 5.7.0
-
- "@ethersproject/web@5.7.1":
- dependencies:
- "@ethersproject/base64": 5.7.0
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/logger": 5.7.0
- "@ethersproject/properties": 5.7.0
- "@ethersproject/strings": 5.7.0
-
- "@ethersproject/wordlists@5.7.0":
- dependencies:
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/hash": 5.7.0
- "@ethersproject/logger": 5.7.0
- "@ethersproject/properties": 5.7.0
- "@ethersproject/strings": 5.7.0
-
- "@fastify/busboy@2.0.0": {}
-
- "@headlessui/react@1.7.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
- dependencies:
- "@tanstack/react-virtual": 3.1.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- client-only: 0.0.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@ethersproject/solidity@5.7.0':
+ dependencies:
+ '@ethersproject/bignumber': 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/keccak256': 5.7.0
+ '@ethersproject/logger': 5.7.0
+ '@ethersproject/sha2': 5.7.0
+ '@ethersproject/strings': 5.7.0
+
+ '@ethersproject/strings@5.7.0':
+ dependencies:
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/constants': 5.7.0
+ '@ethersproject/logger': 5.7.0
+
+ '@ethersproject/transactions@5.7.0':
+ dependencies:
+ '@ethersproject/address': 5.7.0
+ '@ethersproject/bignumber': 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/constants': 5.7.0
+ '@ethersproject/keccak256': 5.7.0
+ '@ethersproject/logger': 5.7.0
+ '@ethersproject/properties': 5.7.0
+ '@ethersproject/rlp': 5.7.0
+ '@ethersproject/signing-key': 5.7.0
+
+ '@ethersproject/units@5.7.0':
+ dependencies:
+ '@ethersproject/bignumber': 5.7.0
+ '@ethersproject/constants': 5.7.0
+ '@ethersproject/logger': 5.7.0
+
+ '@ethersproject/wallet@5.7.0':
+ dependencies:
+ '@ethersproject/abstract-provider': 5.7.0
+ '@ethersproject/abstract-signer': 5.7.0
+ '@ethersproject/address': 5.7.0
+ '@ethersproject/bignumber': 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/hash': 5.7.0
+ '@ethersproject/hdnode': 5.7.0
+ '@ethersproject/json-wallets': 5.7.0
+ '@ethersproject/keccak256': 5.7.0
+ '@ethersproject/logger': 5.7.0
+ '@ethersproject/properties': 5.7.0
+ '@ethersproject/random': 5.7.0
+ '@ethersproject/signing-key': 5.7.0
+ '@ethersproject/transactions': 5.7.0
+ '@ethersproject/wordlists': 5.7.0
+
+ '@ethersproject/web@5.7.1':
+ dependencies:
+ '@ethersproject/base64': 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/logger': 5.7.0
+ '@ethersproject/properties': 5.7.0
+ '@ethersproject/strings': 5.7.0
+
+ '@ethersproject/wordlists@5.7.0':
+ dependencies:
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/hash': 5.7.0
+ '@ethersproject/logger': 5.7.0
+ '@ethersproject/properties': 5.7.0
+ '@ethersproject/strings': 5.7.0
+
+ '@fastify/busboy@2.0.0': {}
+
+ '@floating-ui/core@1.6.7':
+ dependencies:
+ '@floating-ui/utils': 0.2.7
+
+ '@floating-ui/dom@1.6.10':
+ dependencies:
+ '@floating-ui/core': 1.6.7
+ '@floating-ui/utils': 0.2.7
+
+ '@floating-ui/utils@0.2.7': {}
+
+ '@formatjs/ecma402-abstract@2.0.0':
+ dependencies:
+ '@formatjs/intl-localematcher': 0.5.4
+ tslib: 2.6.2
+
+ '@formatjs/fast-memoize@2.2.0':
+ dependencies:
+ tslib: 2.6.2
+
+ '@formatjs/icu-messageformat-parser@2.7.8':
+ dependencies:
+ '@formatjs/ecma402-abstract': 2.0.0
+ '@formatjs/icu-skeleton-parser': 1.8.2
+ tslib: 2.6.2
+
+ '@formatjs/icu-skeleton-parser@1.8.2':
+ dependencies:
+ '@formatjs/ecma402-abstract': 2.0.0
+ tslib: 2.6.2
+
+ '@formatjs/intl-displaynames@6.6.8':
+ dependencies:
+ '@formatjs/ecma402-abstract': 2.0.0
+ '@formatjs/intl-localematcher': 0.5.4
+ tslib: 2.6.2
+
+ '@formatjs/intl-listformat@7.5.7':
+ dependencies:
+ '@formatjs/ecma402-abstract': 2.0.0
+ '@formatjs/intl-localematcher': 0.5.4
+ tslib: 2.6.2
+
+ '@formatjs/intl-localematcher@0.5.4':
+ dependencies:
+ tslib: 2.6.2
+
+ '@formatjs/intl@2.10.4(typescript@5.5.4)':
+ dependencies:
+ '@formatjs/ecma402-abstract': 2.0.0
+ '@formatjs/fast-memoize': 2.2.0
+ '@formatjs/icu-messageformat-parser': 2.7.8
+ '@formatjs/intl-displaynames': 6.6.8
+ '@formatjs/intl-listformat': 7.5.7
+ intl-messageformat: 10.5.14
+ tslib: 2.6.2
+ optionalDependencies:
+ typescript: 5.5.4
+
+ '@gql.tada/cli-utils@1.6.1(@0no-co/graphqlsp@1.12.13(graphql@16.9.0)(typescript@5.5.4))(graphql@16.9.0)(typescript@5.5.4)':
+ dependencies:
+ '@0no-co/graphqlsp': 1.12.13(graphql@16.9.0)(typescript@5.5.4)
+ '@gql.tada/internal': 1.0.7(graphql@16.9.0)(typescript@5.5.4)
+ graphql: 16.9.0
+ typescript: 5.5.4
+
+ '@gql.tada/internal@1.0.7(graphql@16.9.0)(typescript@5.5.4)':
+ dependencies:
+ '@0no-co/graphql.web': 1.0.8(graphql@16.9.0)
+ graphql: 16.9.0
+ typescript: 5.5.4
- "@headlessui/react@1.7.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1)":
+ '@headlessui/react@1.7.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- "@tanstack/react-virtual": 3.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@tanstack/react-virtual': 3.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
client-only: 0.0.1
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- "@heroicons/react@2.1.1(react@18.2.0)":
- dependencies:
- react: 18.2.0
-
- "@heroicons/react@2.1.1(react@18.3.1)":
+ '@heroicons/react@2.1.1(react@18.3.1)':
dependencies:
react: 18.3.1
- "@hookform/resolvers@3.3.4(react-hook-form@7.51.0(react@18.2.0))":
+ '@hookform/resolvers@3.9.0(react-hook-form@7.53.0(react@18.3.1))':
dependencies:
- react-hook-form: 7.51.0(react@18.2.0)
+ react-hook-form: 7.53.0(react@18.3.1)
- "@humanwhocodes/module-importer@1.0.1": {}
+ '@humanwhocodes/module-importer@1.0.1': {}
- "@humanwhocodes/retry@0.3.0": {}
+ '@humanwhocodes/retry@0.3.0': {}
- "@ioredis/commands@1.2.0": {}
+ '@ioredis/commands@1.2.0': {}
- "@jridgewell/gen-mapping@0.3.3":
+ '@jridgewell/gen-mapping@0.3.3':
dependencies:
- "@jridgewell/set-array": 1.1.2
- "@jridgewell/sourcemap-codec": 1.4.15
- "@jridgewell/trace-mapping": 0.3.25
+ '@jridgewell/set-array': 1.1.2
+ '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/trace-mapping': 0.3.25
- "@jridgewell/gen-mapping@0.3.5":
+ '@jridgewell/gen-mapping@0.3.5':
dependencies:
- "@jridgewell/set-array": 1.2.1
- "@jridgewell/sourcemap-codec": 1.4.15
- "@jridgewell/trace-mapping": 0.3.25
+ '@jridgewell/set-array': 1.2.1
+ '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/trace-mapping': 0.3.25
- "@jridgewell/resolve-uri@3.1.1": {}
+ '@jridgewell/resolve-uri@3.1.1': {}
- "@jridgewell/set-array@1.1.2": {}
+ '@jridgewell/set-array@1.1.2': {}
- "@jridgewell/set-array@1.2.1": {}
+ '@jridgewell/set-array@1.2.1': {}
- "@jridgewell/source-map@0.3.5":
+ '@jridgewell/source-map@0.3.5':
dependencies:
- "@jridgewell/gen-mapping": 0.3.5
- "@jridgewell/trace-mapping": 0.3.25
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
- "@jridgewell/sourcemap-codec@1.4.15": {}
+ '@jridgewell/sourcemap-codec@1.4.15': {}
- "@jridgewell/trace-mapping@0.3.25":
+ '@jridgewell/trace-mapping@0.3.25':
dependencies:
- "@jridgewell/resolve-uri": 3.1.1
- "@jridgewell/sourcemap-codec": 1.4.15
+ '@jridgewell/resolve-uri': 3.1.1
+ '@jridgewell/sourcemap-codec': 1.4.15
- "@jridgewell/trace-mapping@0.3.9":
+ '@jridgewell/trace-mapping@0.3.9':
dependencies:
- "@jridgewell/resolve-uri": 3.1.1
- "@jridgewell/sourcemap-codec": 1.4.15
+ '@jridgewell/resolve-uri': 3.1.1
+ '@jridgewell/sourcemap-codec': 1.4.15
- "@lit-labs/ssr-dom-shim@1.2.0": {}
+ '@leichtgewicht/ip-codec@2.0.5': {}
- "@lit/reactive-element@1.6.3":
+ '@libp2p/interface@1.7.0':
dependencies:
- "@lit-labs/ssr-dom-shim": 1.2.0
+ '@multiformats/multiaddr': 12.3.0
+ it-pushable: 3.2.3
+ it-stream-types: 2.0.1
+ multiformats: 13.2.2
+ progress-events: 1.0.1
+ uint8arraylist: 2.4.8
- "@marsidev/react-turnstile@0.4.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@lit-labs/ssr-dom-shim@1.2.0': {}
+
+ '@lit/reactive-element@1.6.3':
+ dependencies:
+ '@lit-labs/ssr-dom-shim': 1.2.0
+
+ '@mapbox/node-pre-gyp@1.0.11(encoding@0.1.13)':
dependencies:
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ detect-libc: 2.0.3
+ https-proxy-agent: 5.0.1
+ make-dir: 3.1.0
+ node-fetch: 2.7.0(encoding@0.1.13)
+ nopt: 5.0.0
+ npmlog: 5.0.1
+ rimraf: 3.0.2
+ semver: 7.6.0
+ tar: 6.2.1
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
- "@marsidev/react-turnstile@0.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)":
+ '@marsidev/react-turnstile@0.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- "@metamask/abi-utils@1.2.0":
+ '@metamask/abi-utils@1.2.0':
dependencies:
- "@metamask/utils": 3.6.0
+ '@metamask/utils': 3.6.0
superstruct: 1.0.3
transitivePeerDependencies:
- supports-color
- "@metamask/eth-sig-util@4.0.1":
+ '@metamask/eth-sig-util@4.0.1':
dependencies:
ethereumjs-abi: 0.6.8
ethereumjs-util: 6.2.1
@@ -11689,11 +8141,11 @@ snapshots:
tweetnacl: 1.0.3
tweetnacl-util: 0.15.1
- "@metamask/eth-sig-util@6.0.2":
+ '@metamask/eth-sig-util@6.0.2':
dependencies:
- "@ethereumjs/util": 8.1.0
- "@metamask/abi-utils": 1.2.0
- "@metamask/utils": 5.0.2
+ '@ethereumjs/util': 8.1.0
+ '@metamask/abi-utils': 1.2.0
+ '@metamask/utils': 5.0.2
ethereum-cryptography: 2.1.2
ethjs-util: 0.1.6
tweetnacl: 1.0.3
@@ -11701,491 +8153,420 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@metamask/utils@3.6.0":
+ '@metamask/utils@3.6.0':
dependencies:
- "@types/debug": 4.1.9
+ '@types/debug': 4.1.9
debug: 4.3.4(supports-color@5.5.0)
semver: 7.6.0
superstruct: 1.0.3
transitivePeerDependencies:
- supports-color
- "@metamask/utils@5.0.2":
+ '@metamask/utils@5.0.2':
dependencies:
- "@ethereumjs/tx": 4.2.0
- "@types/debug": 4.1.9
+ '@ethereumjs/tx': 4.2.0
+ '@types/debug': 4.1.9
debug: 4.3.4(supports-color@5.5.0)
semver: 7.6.0
superstruct: 1.0.3
transitivePeerDependencies:
- supports-color
- "@motionone/animation@10.17.0":
+ '@motionone/animation@10.17.0':
dependencies:
- "@motionone/easing": 10.17.0
- "@motionone/types": 10.17.0
- "@motionone/utils": 10.17.0
+ '@motionone/easing': 10.17.0
+ '@motionone/types': 10.17.0
+ '@motionone/utils': 10.17.0
tslib: 2.6.2
- "@motionone/dom@10.17.0":
+ '@motionone/dom@10.17.0':
dependencies:
- "@motionone/animation": 10.17.0
- "@motionone/generators": 10.17.0
- "@motionone/types": 10.17.0
- "@motionone/utils": 10.17.0
+ '@motionone/animation': 10.17.0
+ '@motionone/generators': 10.17.0
+ '@motionone/types': 10.17.0
+ '@motionone/utils': 10.17.0
hey-listen: 1.0.8
tslib: 2.6.2
- "@motionone/easing@10.17.0":
+ '@motionone/easing@10.17.0':
dependencies:
- "@motionone/utils": 10.17.0
+ '@motionone/utils': 10.17.0
tslib: 2.6.2
- "@motionone/generators@10.17.0":
+ '@motionone/generators@10.17.0':
dependencies:
- "@motionone/types": 10.17.0
- "@motionone/utils": 10.17.0
+ '@motionone/types': 10.17.0
+ '@motionone/utils': 10.17.0
tslib: 2.6.2
- "@motionone/svelte@10.16.4":
+ '@motionone/svelte@10.16.4':
dependencies:
- "@motionone/dom": 10.17.0
+ '@motionone/dom': 10.17.0
tslib: 2.6.2
- "@motionone/types@10.17.0": {}
+ '@motionone/types@10.17.0': {}
- "@motionone/utils@10.17.0":
+ '@motionone/utils@10.17.0':
dependencies:
- "@motionone/types": 10.17.0
+ '@motionone/types': 10.17.0
hey-listen: 1.0.8
tslib: 2.6.2
- "@motionone/vue@10.16.4":
+ '@motionone/vue@10.16.4':
dependencies:
- "@motionone/dom": 10.17.0
+ '@motionone/dom': 10.17.0
tslib: 2.6.2
- "@noble/curves@1.1.0":
+ '@multiformats/dns@1.0.6':
+ dependencies:
+ '@types/dns-packet': 5.6.5
+ buffer: 6.0.3
+ dns-packet: 5.6.1
+ hashlru: 2.3.0
+ p-queue: 8.0.1
+ progress-events: 1.0.1
+ uint8arrays: 5.1.0
+
+ '@multiformats/mafmt@12.1.6':
dependencies:
- "@noble/hashes": 1.3.1
+ '@multiformats/multiaddr': 12.3.0
- "@noble/curves@1.2.0":
+ '@multiformats/multiaddr@12.3.0':
dependencies:
- "@noble/hashes": 1.3.2
+ '@chainsafe/is-ip': 2.0.2
+ '@chainsafe/netmask': 2.0.0
+ '@libp2p/interface': 1.7.0
+ '@multiformats/dns': 1.0.6
+ multiformats: 13.2.2
+ uint8-varint: 2.0.4
+ uint8arrays: 5.1.0
- "@noble/curves@1.4.0":
+ '@noble/curves@1.1.0':
dependencies:
- "@noble/hashes": 1.4.0
+ '@noble/hashes': 1.3.1
- "@noble/hashes@1.2.0": {}
+ '@noble/curves@1.2.0':
+ dependencies:
+ '@noble/hashes': 1.3.2
+
+ '@noble/curves@1.4.0':
+ dependencies:
+ '@noble/hashes': 1.4.0
+
+ '@noble/hashes@1.2.0': {}
- "@noble/hashes@1.3.1": {}
+ '@noble/hashes@1.3.1': {}
- "@noble/hashes@1.3.2": {}
+ '@noble/hashes@1.3.2': {}
- "@noble/hashes@1.3.3": {}
+ '@noble/hashes@1.3.3': {}
- "@noble/hashes@1.4.0": {}
+ '@noble/hashes@1.4.0': {}
- "@noble/secp256k1@1.7.1": {}
+ '@noble/secp256k1@1.7.1': {}
- "@nodelib/fs.scandir@2.1.5":
+ '@nodelib/fs.scandir@2.1.5':
dependencies:
- "@nodelib/fs.stat": 2.0.5
+ '@nodelib/fs.stat': 2.0.5
run-parallel: 1.2.0
- "@nodelib/fs.stat@2.0.5": {}
+ '@nodelib/fs.stat@2.0.5': {}
- "@nodelib/fs.walk@1.2.8":
+ '@nodelib/fs.walk@1.2.8':
dependencies:
- "@nodelib/fs.scandir": 2.1.5
+ '@nodelib/fs.scandir': 2.1.5
fastq: 1.15.0
- "@nomicfoundation/edr-darwin-arm64@0.3.8": {}
+ '@nomicfoundation/edr-darwin-arm64@0.3.8': {}
- "@nomicfoundation/edr-darwin-x64@0.3.8": {}
+ '@nomicfoundation/edr-darwin-x64@0.3.8': {}
- "@nomicfoundation/edr-linux-arm64-gnu@0.3.8": {}
+ '@nomicfoundation/edr-linux-arm64-gnu@0.3.8': {}
- "@nomicfoundation/edr-linux-arm64-musl@0.3.8": {}
+ '@nomicfoundation/edr-linux-arm64-musl@0.3.8': {}
- "@nomicfoundation/edr-linux-x64-gnu@0.3.8": {}
+ '@nomicfoundation/edr-linux-x64-gnu@0.3.8': {}
- "@nomicfoundation/edr-linux-x64-musl@0.3.8": {}
+ '@nomicfoundation/edr-linux-x64-musl@0.3.8': {}
- "@nomicfoundation/edr-win32-x64-msvc@0.3.8": {}
+ '@nomicfoundation/edr-win32-x64-msvc@0.3.8': {}
- "@nomicfoundation/edr@0.3.8":
+ '@nomicfoundation/edr@0.3.8':
dependencies:
- "@nomicfoundation/edr-darwin-arm64": 0.3.8
- "@nomicfoundation/edr-darwin-x64": 0.3.8
- "@nomicfoundation/edr-linux-arm64-gnu": 0.3.8
- "@nomicfoundation/edr-linux-arm64-musl": 0.3.8
- "@nomicfoundation/edr-linux-x64-gnu": 0.3.8
- "@nomicfoundation/edr-linux-x64-musl": 0.3.8
- "@nomicfoundation/edr-win32-x64-msvc": 0.3.8
+ '@nomicfoundation/edr-darwin-arm64': 0.3.8
+ '@nomicfoundation/edr-darwin-x64': 0.3.8
+ '@nomicfoundation/edr-linux-arm64-gnu': 0.3.8
+ '@nomicfoundation/edr-linux-arm64-musl': 0.3.8
+ '@nomicfoundation/edr-linux-x64-gnu': 0.3.8
+ '@nomicfoundation/edr-linux-x64-musl': 0.3.8
+ '@nomicfoundation/edr-win32-x64-msvc': 0.3.8
- "@nomicfoundation/ethereumjs-common@4.0.4":
+ '@nomicfoundation/ethereumjs-common@4.0.4':
dependencies:
- "@nomicfoundation/ethereumjs-util": 9.0.4
+ '@nomicfoundation/ethereumjs-util': 9.0.4
transitivePeerDependencies:
- c-kzg
- "@nomicfoundation/ethereumjs-rlp@5.0.4": {}
+ '@nomicfoundation/ethereumjs-rlp@5.0.4': {}
- "@nomicfoundation/ethereumjs-tx@5.0.4":
+ '@nomicfoundation/ethereumjs-tx@5.0.4':
dependencies:
- "@nomicfoundation/ethereumjs-common": 4.0.4
- "@nomicfoundation/ethereumjs-rlp": 5.0.4
- "@nomicfoundation/ethereumjs-util": 9.0.4
+ '@nomicfoundation/ethereumjs-common': 4.0.4
+ '@nomicfoundation/ethereumjs-rlp': 5.0.4
+ '@nomicfoundation/ethereumjs-util': 9.0.4
ethereum-cryptography: 0.1.3
- "@nomicfoundation/ethereumjs-util@9.0.4":
+ '@nomicfoundation/ethereumjs-util@9.0.4':
dependencies:
- "@nomicfoundation/ethereumjs-rlp": 5.0.4
+ '@nomicfoundation/ethereumjs-rlp': 5.0.4
ethereum-cryptography: 0.1.3
- "@nomicfoundation/solidity-analyzer-darwin-arm64@0.1.1":
+ '@nomicfoundation/solidity-analyzer-darwin-arm64@0.1.1':
optional: true
- "@nomicfoundation/solidity-analyzer-darwin-x64@0.1.1":
+ '@nomicfoundation/solidity-analyzer-darwin-x64@0.1.1':
optional: true
- "@nomicfoundation/solidity-analyzer-freebsd-x64@0.1.1":
+ '@nomicfoundation/solidity-analyzer-freebsd-x64@0.1.1':
optional: true
- "@nomicfoundation/solidity-analyzer-linux-arm64-gnu@0.1.1":
+ '@nomicfoundation/solidity-analyzer-linux-arm64-gnu@0.1.1':
optional: true
- "@nomicfoundation/solidity-analyzer-linux-arm64-musl@0.1.1":
+ '@nomicfoundation/solidity-analyzer-linux-arm64-musl@0.1.1':
optional: true
- "@nomicfoundation/solidity-analyzer-linux-x64-gnu@0.1.1":
+ '@nomicfoundation/solidity-analyzer-linux-x64-gnu@0.1.1':
optional: true
- "@nomicfoundation/solidity-analyzer-linux-x64-musl@0.1.1":
+ '@nomicfoundation/solidity-analyzer-linux-x64-musl@0.1.1':
optional: true
- "@nomicfoundation/solidity-analyzer-win32-arm64-msvc@0.1.1":
+ '@nomicfoundation/solidity-analyzer-win32-arm64-msvc@0.1.1':
optional: true
- "@nomicfoundation/solidity-analyzer-win32-ia32-msvc@0.1.1":
+ '@nomicfoundation/solidity-analyzer-win32-ia32-msvc@0.1.1':
optional: true
- "@nomicfoundation/solidity-analyzer-win32-x64-msvc@0.1.1":
+ '@nomicfoundation/solidity-analyzer-win32-x64-msvc@0.1.1':
optional: true
- "@nomicfoundation/solidity-analyzer@0.1.1":
+ '@nomicfoundation/solidity-analyzer@0.1.1':
optionalDependencies:
- "@nomicfoundation/solidity-analyzer-darwin-arm64": 0.1.1
- "@nomicfoundation/solidity-analyzer-darwin-x64": 0.1.1
- "@nomicfoundation/solidity-analyzer-freebsd-x64": 0.1.1
- "@nomicfoundation/solidity-analyzer-linux-arm64-gnu": 0.1.1
- "@nomicfoundation/solidity-analyzer-linux-arm64-musl": 0.1.1
- "@nomicfoundation/solidity-analyzer-linux-x64-gnu": 0.1.1
- "@nomicfoundation/solidity-analyzer-linux-x64-musl": 0.1.1
- "@nomicfoundation/solidity-analyzer-win32-arm64-msvc": 0.1.1
- "@nomicfoundation/solidity-analyzer-win32-ia32-msvc": 0.1.1
- "@nomicfoundation/solidity-analyzer-win32-x64-msvc": 0.1.1
-
- "@octokit/auth-token@4.0.0": {}
-
- "@octokit/core@5.1.0":
- dependencies:
- "@octokit/auth-token": 4.0.0
- "@octokit/graphql": 7.0.2
- "@octokit/request": 8.2.0
- "@octokit/request-error": 5.0.1
- "@octokit/types": 12.6.0
+ '@nomicfoundation/solidity-analyzer-darwin-arm64': 0.1.1
+ '@nomicfoundation/solidity-analyzer-darwin-x64': 0.1.1
+ '@nomicfoundation/solidity-analyzer-freebsd-x64': 0.1.1
+ '@nomicfoundation/solidity-analyzer-linux-arm64-gnu': 0.1.1
+ '@nomicfoundation/solidity-analyzer-linux-arm64-musl': 0.1.1
+ '@nomicfoundation/solidity-analyzer-linux-x64-gnu': 0.1.1
+ '@nomicfoundation/solidity-analyzer-linux-x64-musl': 0.1.1
+ '@nomicfoundation/solidity-analyzer-win32-arm64-msvc': 0.1.1
+ '@nomicfoundation/solidity-analyzer-win32-ia32-msvc': 0.1.1
+ '@nomicfoundation/solidity-analyzer-win32-x64-msvc': 0.1.1
+
+ '@octokit/auth-token@4.0.0': {}
+
+ '@octokit/core@5.1.0':
+ dependencies:
+ '@octokit/auth-token': 4.0.0
+ '@octokit/graphql': 7.0.2
+ '@octokit/request': 8.2.0
+ '@octokit/request-error': 5.0.1
+ '@octokit/types': 12.6.0
before-after-hook: 2.2.3
universal-user-agent: 6.0.0
- "@octokit/endpoint@9.0.4":
+ '@octokit/endpoint@9.0.4':
dependencies:
- "@octokit/types": 12.6.0
+ '@octokit/types': 12.6.0
universal-user-agent: 6.0.0
- "@octokit/graphql@7.0.2":
+ '@octokit/graphql@7.0.2':
dependencies:
- "@octokit/request": 8.2.0
- "@octokit/types": 12.6.0
+ '@octokit/request': 8.2.0
+ '@octokit/types': 12.6.0
universal-user-agent: 6.0.0
- "@octokit/openapi-types@20.0.0": {}
+ '@octokit/openapi-types@20.0.0': {}
- "@octokit/plugin-paginate-rest@9.2.1(@octokit/core@5.1.0)":
+ '@octokit/plugin-paginate-rest@9.2.1(@octokit/core@5.1.0)':
dependencies:
- "@octokit/core": 5.1.0
- "@octokit/types": 12.6.0
+ '@octokit/core': 5.1.0
+ '@octokit/types': 12.6.0
- "@octokit/plugin-request-log@4.0.1(@octokit/core@5.1.0)":
+ '@octokit/plugin-request-log@4.0.1(@octokit/core@5.1.0)':
dependencies:
- "@octokit/core": 5.1.0
+ '@octokit/core': 5.1.0
- "@octokit/plugin-rest-endpoint-methods@10.4.0(@octokit/core@5.1.0)":
+ '@octokit/plugin-rest-endpoint-methods@10.4.0(@octokit/core@5.1.0)':
dependencies:
- "@octokit/core": 5.1.0
- "@octokit/types": 12.6.0
+ '@octokit/core': 5.1.0
+ '@octokit/types': 12.6.0
- "@octokit/request-error@5.0.1":
+ '@octokit/request-error@5.0.1':
dependencies:
- "@octokit/types": 12.6.0
+ '@octokit/types': 12.6.0
deprecation: 2.3.1
once: 1.4.0
- "@octokit/request@8.2.0":
+ '@octokit/request@8.2.0':
dependencies:
- "@octokit/endpoint": 9.0.4
- "@octokit/request-error": 5.0.1
- "@octokit/types": 12.6.0
+ '@octokit/endpoint': 9.0.4
+ '@octokit/request-error': 5.0.1
+ '@octokit/types': 12.6.0
universal-user-agent: 6.0.0
- "@octokit/rest@20.0.2":
+ '@octokit/rest@20.0.2':
dependencies:
- "@octokit/core": 5.1.0
- "@octokit/plugin-paginate-rest": 9.2.1(@octokit/core@5.1.0)
- "@octokit/plugin-request-log": 4.0.1(@octokit/core@5.1.0)
- "@octokit/plugin-rest-endpoint-methods": 10.4.0(@octokit/core@5.1.0)
+ '@octokit/core': 5.1.0
+ '@octokit/plugin-paginate-rest': 9.2.1(@octokit/core@5.1.0)
+ '@octokit/plugin-request-log': 4.0.1(@octokit/core@5.1.0)
+ '@octokit/plugin-rest-endpoint-methods': 10.4.0(@octokit/core@5.1.0)
- "@octokit/types@12.6.0":
+ '@octokit/types@12.6.0':
dependencies:
- "@octokit/openapi-types": 20.0.0
+ '@octokit/openapi-types': 20.0.0
- "@openzeppelin/contracts-upgradeable@4.9.6": {}
+ '@openzeppelin/contracts-upgradeable@4.9.6': {}
- "@openzeppelin/merkle-tree@1.0.6":
+ '@openzeppelin/merkle-tree@1.0.6':
dependencies:
- "@ethersproject/abi": 5.7.0
+ '@ethersproject/abi': 5.7.0
ethereum-cryptography: 1.2.0
- "@parcel/watcher-android-arm64@2.4.1":
+ '@parcel/watcher-android-arm64@2.4.1':
optional: true
- "@parcel/watcher-darwin-arm64@2.4.1":
+ '@parcel/watcher-darwin-arm64@2.4.1':
optional: true
- "@parcel/watcher-darwin-x64@2.4.1":
+ '@parcel/watcher-darwin-x64@2.4.1':
optional: true
- "@parcel/watcher-freebsd-x64@2.4.1":
+ '@parcel/watcher-freebsd-x64@2.4.1':
optional: true
- "@parcel/watcher-linux-arm-glibc@2.4.1":
+ '@parcel/watcher-linux-arm-glibc@2.4.1':
optional: true
- "@parcel/watcher-linux-arm64-glibc@2.4.1":
+ '@parcel/watcher-linux-arm64-glibc@2.4.1':
optional: true
- "@parcel/watcher-linux-arm64-musl@2.4.1":
+ '@parcel/watcher-linux-arm64-musl@2.4.1':
optional: true
- "@parcel/watcher-linux-x64-glibc@2.4.1":
+ '@parcel/watcher-linux-x64-glibc@2.4.1':
optional: true
- "@parcel/watcher-linux-x64-musl@2.4.1":
+ '@parcel/watcher-linux-x64-musl@2.4.1':
optional: true
- "@parcel/watcher-wasm@2.4.1":
+ '@parcel/watcher-wasm@2.4.1':
dependencies:
is-glob: 4.0.3
micromatch: 4.0.5
- "@parcel/watcher-win32-arm64@2.4.1":
+ '@parcel/watcher-win32-arm64@2.4.1':
optional: true
- "@parcel/watcher-win32-ia32@2.4.1":
+ '@parcel/watcher-win32-ia32@2.4.1':
optional: true
- "@parcel/watcher-win32-x64@2.4.1":
+ '@parcel/watcher-win32-x64@2.4.1':
optional: true
- "@parcel/watcher@2.4.1":
+ '@parcel/watcher@2.4.1':
dependencies:
detect-libc: 1.0.3
is-glob: 4.0.3
micromatch: 4.0.5
node-addon-api: 7.1.0
optionalDependencies:
- "@parcel/watcher-android-arm64": 2.4.1
- "@parcel/watcher-darwin-arm64": 2.4.1
- "@parcel/watcher-darwin-x64": 2.4.1
- "@parcel/watcher-freebsd-x64": 2.4.1
- "@parcel/watcher-linux-arm-glibc": 2.4.1
- "@parcel/watcher-linux-arm64-glibc": 2.4.1
- "@parcel/watcher-linux-arm64-musl": 2.4.1
- "@parcel/watcher-linux-x64-glibc": 2.4.1
- "@parcel/watcher-linux-x64-musl": 2.4.1
- "@parcel/watcher-win32-arm64": 2.4.1
- "@parcel/watcher-win32-ia32": 2.4.1
- "@parcel/watcher-win32-x64": 2.4.1
-
- "@pnpm/config.env-replace@1.1.0": {}
-
- "@pnpm/network.ca-file@1.0.2":
+ '@parcel/watcher-android-arm64': 2.4.1
+ '@parcel/watcher-darwin-arm64': 2.4.1
+ '@parcel/watcher-darwin-x64': 2.4.1
+ '@parcel/watcher-freebsd-x64': 2.4.1
+ '@parcel/watcher-linux-arm-glibc': 2.4.1
+ '@parcel/watcher-linux-arm64-glibc': 2.4.1
+ '@parcel/watcher-linux-arm64-musl': 2.4.1
+ '@parcel/watcher-linux-x64-glibc': 2.4.1
+ '@parcel/watcher-linux-x64-musl': 2.4.1
+ '@parcel/watcher-win32-arm64': 2.4.1
+ '@parcel/watcher-win32-ia32': 2.4.1
+ '@parcel/watcher-win32-x64': 2.4.1
+
+ '@phosphor-icons/react@2.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ '@pnpm/config.env-replace@1.1.0': {}
+
+ '@pnpm/network.ca-file@1.0.2':
dependencies:
graceful-fs: 4.2.10
- "@pnpm/npm-conf@2.2.2":
+ '@pnpm/npm-conf@2.2.2':
dependencies:
- "@pnpm/config.env-replace": 1.1.0
- "@pnpm/network.ca-file": 1.0.2
+ '@pnpm/config.env-replace': 1.1.0
+ '@pnpm/network.ca-file': 1.0.2
config-chain: 1.1.13
- "@popperjs/core@2.11.8": {}
-
- "@privy-io/api-base@1.2.2":
+ '@privy-io/api-base@1.2.2':
dependencies:
zod: 3.23.8
- "@privy-io/js-sdk-core@0.26.0(bufferutil@4.0.7)(utf-8-validate@5.0.10)":
- dependencies:
- "@ethersproject/abstract-signer": 5.7.0
- "@ethersproject/bignumber": 5.7.0
- "@ethersproject/contracts": 5.7.0
- "@ethersproject/providers": 5.7.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- "@ethersproject/transactions": 5.7.0
- "@ethersproject/units": 5.7.0
- "@privy-io/api-base": 1.2.2
- "@privy-io/public-api": 2.8.3(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- eventemitter3: 5.0.1
- fetch-retry: 5.0.6
- jose: 4.15.5
- js-cookie: 3.0.5
- set-cookie-parser: 2.7.0
- uuid: 9.0.1
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
-
- "@privy-io/js-sdk-core@0.26.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)":
+ '@privy-io/js-sdk-core@0.26.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
- "@ethersproject/abstract-signer": 5.7.0
- "@ethersproject/bignumber": 5.7.0
- "@ethersproject/contracts": 5.7.0
- "@ethersproject/providers": 5.7.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- "@ethersproject/transactions": 5.7.0
- "@ethersproject/units": 5.7.0
- "@privy-io/api-base": 1.2.2
- "@privy-io/public-api": 2.8.5(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ '@ethersproject/abstract-signer': 5.7.0
+ '@ethersproject/bignumber': 5.7.0
+ '@ethersproject/contracts': 5.7.0
+ '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@ethersproject/transactions': 5.7.0
+ '@ethersproject/units': 5.7.0
+ '@privy-io/api-base': 1.2.2
+ '@privy-io/public-api': 2.8.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)
eventemitter3: 5.0.1
fetch-retry: 5.0.6
- jose: 4.15.5
- js-cookie: 3.0.5
- set-cookie-parser: 2.7.0
- uuid: 9.0.1
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
-
- "@privy-io/public-api@2.8.3(bufferutil@4.0.7)(utf-8-validate@5.0.10)":
- dependencies:
- "@privy-io/api-base": 1.2.2
- ethers: 5.7.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- libphonenumber-js: 1.10.47
- zod: 3.23.8
+ jose: 4.15.5
+ js-cookie: 3.0.5
+ set-cookie-parser: 2.7.0
+ uuid: 9.0.1
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- "@privy-io/public-api@2.8.5(bufferutil@4.0.7)(utf-8-validate@5.0.10)":
+ '@privy-io/public-api@2.8.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
- "@privy-io/api-base": 1.2.2
- ethers: 5.7.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ '@privy-io/api-base': 1.2.2
+ ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
libphonenumber-js: 1.10.47
zod: 3.23.8
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- "@privy-io/react-auth@1.77.0(@babel/core@7.25.2)(@types/react@18.3.3)(bufferutil@4.0.7)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)":
- dependencies:
- "@coinbase/wallet-sdk": 4.0.3
- "@ethersproject/abstract-signer": 5.7.0
- "@ethersproject/address": 5.7.0
- "@ethersproject/bignumber": 5.7.0
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/contracts": 5.7.0
- "@ethersproject/logger": 5.7.0
- "@ethersproject/providers": 5.7.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- "@ethersproject/strings": 5.7.0
- "@ethersproject/transactions": 5.7.0
- "@ethersproject/units": 5.7.0
- "@headlessui/react": 1.7.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@heroicons/react": 2.1.1(react@18.2.0)
- "@marsidev/react-turnstile": 0.4.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- "@metamask/eth-sig-util": 6.0.2
- "@privy-io/js-sdk-core": 0.26.0(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- "@simplewebauthn/browser": 9.0.1
- "@walletconnect/ethereum-provider": 2.14.0(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)
- "@walletconnect/modal": 2.6.2(@types/react@18.3.3)(react@18.2.0)
- base64-js: 1.5.1
- dotenv: 16.4.5
- encoding: 0.1.13
- eventemitter3: 5.0.1
- fast-password-entropy: 1.1.1
- jose: 4.15.5
- js-cookie: 3.0.5
- libphonenumber-js: 1.10.47
- lokijs: 1.5.12
- md5: 2.3.0
- mipd: 0.0.7(typescript@5.5.4)
- ofetch: 1.3.4
- pino-pretty: 10.3.1
- qrcode: 1.5.3
- react: 18.2.0
- react-device-detect: 2.2.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react-dom: 18.2.0(react@18.2.0)
- secure-password-utilities: 0.2.1
- styled-components: 5.3.11(@babel/core@7.25.2)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0)
- tinycolor2: 1.6.0
- uuid: 9.0.1
- viem: 2.19.6(bufferutil@4.0.7)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)
- web3-core: 1.10.4(encoding@0.1.13)
- web3-core-helpers: 1.10.3
- transitivePeerDependencies:
- - "@azure/app-configuration"
- - "@azure/cosmos"
- - "@azure/data-tables"
- - "@azure/identity"
- - "@azure/keyvault-secrets"
- - "@azure/storage-blob"
- - "@babel/core"
- - "@capacitor/preferences"
- - "@netlify/blobs"
- - "@planetscale/database"
- - "@react-native-async-storage/async-storage"
- - "@types/react"
- - "@upstash/redis"
- - "@vercel/kv"
- - bufferutil
- - react-is
- - supports-color
- - typescript
- - uWebSockets.js
- - utf-8-validate
- - zod
-
- "@privy-io/react-auth@1.80.0(@babel/core@7.25.2)(@types/react@18.3.3)(bufferutil@4.0.7)(react-dom@18.3.1(react@18.3.1))(react-is@18.2.0)(react@18.3.1)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.23.8)":
- dependencies:
- "@coinbase/wallet-sdk": 4.0.3
- "@ethersproject/abstract-signer": 5.7.0
- "@ethersproject/address": 5.7.0
- "@ethersproject/bignumber": 5.7.0
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/contracts": 5.7.0
- "@ethersproject/logger": 5.7.0
- "@ethersproject/providers": 5.7.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- "@ethersproject/strings": 5.7.0
- "@ethersproject/transactions": 5.7.0
- "@ethersproject/units": 5.7.0
- "@headlessui/react": 1.7.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- "@heroicons/react": 2.1.1(react@18.3.1)
- "@marsidev/react-turnstile": 0.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- "@metamask/eth-sig-util": 6.0.2
- "@privy-io/js-sdk-core": 0.26.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- "@simplewebauthn/browser": 9.0.1
- "@walletconnect/ethereum-provider": 2.15.1(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
- "@walletconnect/modal": 2.6.2(@types/react@18.3.3)(react@18.3.1)
+ '@privy-io/react-auth@1.80.0(@babel/core@7.25.2)(@types/react@18.3.3)(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-is@18.2.0)(react@18.3.1)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.23.8)':
+ dependencies:
+ '@coinbase/wallet-sdk': 4.0.3
+ '@ethersproject/abstract-signer': 5.7.0
+ '@ethersproject/address': 5.7.0
+ '@ethersproject/bignumber': 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/contracts': 5.7.0
+ '@ethersproject/logger': 5.7.0
+ '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@ethersproject/strings': 5.7.0
+ '@ethersproject/transactions': 5.7.0
+ '@ethersproject/units': 5.7.0
+ '@headlessui/react': 1.7.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@heroicons/react': 2.1.1(react@18.3.1)
+ '@marsidev/react-turnstile': 0.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@metamask/eth-sig-util': 6.0.2
+ '@privy-io/js-sdk-core': 0.26.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@simplewebauthn/browser': 9.0.1
+ '@walletconnect/ethereum-provider': 2.15.1(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ '@walletconnect/modal': 2.6.2(@types/react@18.3.3)(react@18.3.1)
base64-js: 1.5.1
dotenv: 16.4.5
encoding: 0.1.13
@@ -12207,24 +8588,24 @@ snapshots:
styled-components: 5.3.11(@babel/core@7.25.2)(react-dom@18.3.1(react@18.3.1))(react-is@18.2.0)(react@18.3.1)
tinycolor2: 1.6.0
uuid: 9.0.1
- viem: 2.19.6(bufferutil@4.0.7)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.23.8)
+ viem: 2.19.6(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.23.8)
web3-core: 1.10.4(encoding@0.1.13)
web3-core-helpers: 1.10.3
transitivePeerDependencies:
- - "@azure/app-configuration"
- - "@azure/cosmos"
- - "@azure/data-tables"
- - "@azure/identity"
- - "@azure/keyvault-secrets"
- - "@azure/storage-blob"
- - "@babel/core"
- - "@capacitor/preferences"
- - "@netlify/blobs"
- - "@planetscale/database"
- - "@react-native-async-storage/async-storage"
- - "@types/react"
- - "@upstash/redis"
- - "@vercel/kv"
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@babel/core'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/kv'
- bufferutil
- react-is
- supports-color
@@ -12233,170 +8614,173 @@ snapshots:
- utf-8-validate
- zod
- "@remix-run/router@1.15.2": {}
+ '@privy-io/server-auth@1.11.1(encoding@0.1.13)':
+ dependencies:
+ dotenv: 16.4.5
+ jose: 4.15.5
+ node-fetch-native: 1.6.4
+ redaxios: 0.5.1
+ svix: 1.31.0(encoding@0.1.13)
+ ts-case-convert: 2.0.7
+ type-fest: 3.13.1
+ transitivePeerDependencies:
+ - encoding
- "@remix-run/router@1.19.1": {}
+ '@remix-run/router@1.19.1': {}
+
+ '@remixicon/react@4.2.0(react@18.3.1)':
+ dependencies:
+ react: 18.3.1
- "@rollup/plugin-babel@5.3.1(@babel/core@7.25.2)(@types/babel__core@7.20.5)(rollup@2.79.1)":
+ '@rollup/plugin-babel@5.3.1(@babel/core@7.25.2)(@types/babel__core@7.20.5)(rollup@2.79.1)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-module-imports": 7.24.7
- "@rollup/pluginutils": 3.1.0(rollup@2.79.1)
+ '@babel/core': 7.25.2
+ '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0)
+ '@rollup/pluginutils': 3.1.0(rollup@2.79.1)
rollup: 2.79.1
optionalDependencies:
- "@types/babel__core": 7.20.5
+ '@types/babel__core': 7.20.5
transitivePeerDependencies:
- supports-color
- "@rollup/plugin-node-resolve@11.2.1(rollup@2.79.1)":
+ '@rollup/plugin-node-resolve@11.2.1(rollup@2.79.1)':
dependencies:
- "@rollup/pluginutils": 3.1.0(rollup@2.79.1)
- "@types/resolve": 1.17.1
+ '@rollup/pluginutils': 3.1.0(rollup@2.79.1)
+ '@types/resolve': 1.17.1
builtin-modules: 3.3.0
deepmerge: 4.3.1
is-module: 1.0.0
resolve: 1.22.6
rollup: 2.79.1
- "@rollup/plugin-replace@2.4.2(rollup@2.79.1)":
+ '@rollup/plugin-replace@2.4.2(rollup@2.79.1)':
dependencies:
- "@rollup/pluginutils": 3.1.0(rollup@2.79.1)
+ '@rollup/pluginutils': 3.1.0(rollup@2.79.1)
magic-string: 0.25.9
rollup: 2.79.1
- "@rollup/pluginutils@3.1.0(rollup@2.79.1)":
+ '@rollup/pluginutils@3.1.0(rollup@2.79.1)':
dependencies:
- "@types/estree": 0.0.39
+ '@types/estree': 0.0.39
estree-walker: 1.0.1
picomatch: 2.3.1
rollup: 2.79.1
- "@rollup/pluginutils@5.0.5(rollup@2.79.1)":
- dependencies:
- "@types/estree": 1.0.5
- estree-walker: 2.0.2
- picomatch: 2.3.1
- optionalDependencies:
- rollup: 2.79.1
-
- "@rollup/pluginutils@5.0.5(rollup@4.20.0)":
+ '@rollup/pluginutils@4.2.1':
dependencies:
- "@types/estree": 1.0.5
estree-walker: 2.0.2
picomatch: 2.3.1
- optionalDependencies:
- rollup: 4.20.0
- "@rollup/rollup-android-arm-eabi@4.20.0":
+ '@rollup/rollup-android-arm-eabi@4.20.0':
optional: true
- "@rollup/rollup-android-arm64@4.20.0":
+ '@rollup/rollup-android-arm64@4.20.0':
optional: true
- "@rollup/rollup-darwin-arm64@4.20.0":
+ '@rollup/rollup-darwin-arm64@4.20.0':
optional: true
- "@rollup/rollup-darwin-x64@4.20.0":
+ '@rollup/rollup-darwin-x64@4.20.0':
optional: true
- "@rollup/rollup-linux-arm-gnueabihf@4.20.0":
+ '@rollup/rollup-linux-arm-gnueabihf@4.20.0':
optional: true
- "@rollup/rollup-linux-arm-musleabihf@4.20.0":
+ '@rollup/rollup-linux-arm-musleabihf@4.20.0':
optional: true
- "@rollup/rollup-linux-arm64-gnu@4.20.0":
+ '@rollup/rollup-linux-arm64-gnu@4.20.0':
optional: true
- "@rollup/rollup-linux-arm64-musl@4.20.0":
+ '@rollup/rollup-linux-arm64-musl@4.20.0':
optional: true
- "@rollup/rollup-linux-powerpc64le-gnu@4.20.0":
+ '@rollup/rollup-linux-powerpc64le-gnu@4.20.0':
optional: true
- "@rollup/rollup-linux-riscv64-gnu@4.20.0":
+ '@rollup/rollup-linux-riscv64-gnu@4.20.0':
optional: true
- "@rollup/rollup-linux-s390x-gnu@4.20.0":
+ '@rollup/rollup-linux-s390x-gnu@4.20.0':
optional: true
- "@rollup/rollup-linux-x64-gnu@4.20.0":
+ '@rollup/rollup-linux-x64-gnu@4.20.0':
optional: true
- "@rollup/rollup-linux-x64-musl@4.20.0":
+ '@rollup/rollup-linux-x64-musl@4.20.0':
optional: true
- "@rollup/rollup-win32-arm64-msvc@4.20.0":
+ '@rollup/rollup-win32-arm64-msvc@4.20.0':
optional: true
- "@rollup/rollup-win32-ia32-msvc@4.20.0":
+ '@rollup/rollup-win32-ia32-msvc@4.20.0':
optional: true
- "@rollup/rollup-win32-x64-msvc@4.20.0":
+ '@rollup/rollup-win32-x64-msvc@4.20.0':
optional: true
- "@scure/base@1.1.7": {}
+ '@scure/base@1.1.7': {}
- "@scure/bip32@1.1.5":
+ '@scure/bip32@1.1.5':
dependencies:
- "@noble/hashes": 1.2.0
- "@noble/secp256k1": 1.7.1
- "@scure/base": 1.1.7
+ '@noble/hashes': 1.2.0
+ '@noble/secp256k1': 1.7.1
+ '@scure/base': 1.1.7
- "@scure/bip32@1.3.1":
+ '@scure/bip32@1.3.1':
dependencies:
- "@noble/curves": 1.1.0
- "@noble/hashes": 1.3.3
- "@scure/base": 1.1.7
+ '@noble/curves': 1.1.0
+ '@noble/hashes': 1.3.3
+ '@scure/base': 1.1.7
- "@scure/bip32@1.4.0":
+ '@scure/bip32@1.4.0':
dependencies:
- "@noble/curves": 1.4.0
- "@noble/hashes": 1.4.0
- "@scure/base": 1.1.7
+ '@noble/curves': 1.4.0
+ '@noble/hashes': 1.4.0
+ '@scure/base': 1.1.7
- "@scure/bip39@1.1.1":
+ '@scure/bip39@1.1.1':
dependencies:
- "@noble/hashes": 1.2.0
- "@scure/base": 1.1.7
+ '@noble/hashes': 1.2.0
+ '@scure/base': 1.1.7
- "@scure/bip39@1.2.1":
+ '@scure/bip39@1.2.1':
dependencies:
- "@noble/hashes": 1.3.3
- "@scure/base": 1.1.7
+ '@noble/hashes': 1.3.3
+ '@scure/base': 1.1.7
- "@scure/bip39@1.3.0":
+ '@scure/bip39@1.3.0':
dependencies:
- "@noble/hashes": 1.4.0
- "@scure/base": 1.1.7
+ '@noble/hashes': 1.4.0
+ '@scure/base': 1.1.7
- "@sentry/core@5.30.0":
+ '@sentry/core@5.30.0':
dependencies:
- "@sentry/hub": 5.30.0
- "@sentry/minimal": 5.30.0
- "@sentry/types": 5.30.0
- "@sentry/utils": 5.30.0
+ '@sentry/hub': 5.30.0
+ '@sentry/minimal': 5.30.0
+ '@sentry/types': 5.30.0
+ '@sentry/utils': 5.30.0
tslib: 1.14.1
- "@sentry/hub@5.30.0":
+ '@sentry/hub@5.30.0':
dependencies:
- "@sentry/types": 5.30.0
- "@sentry/utils": 5.30.0
+ '@sentry/types': 5.30.0
+ '@sentry/utils': 5.30.0
tslib: 1.14.1
- "@sentry/minimal@5.30.0":
+ '@sentry/minimal@5.30.0':
dependencies:
- "@sentry/hub": 5.30.0
- "@sentry/types": 5.30.0
+ '@sentry/hub': 5.30.0
+ '@sentry/types': 5.30.0
tslib: 1.14.1
- "@sentry/node@5.30.0":
+ '@sentry/node@5.30.0':
dependencies:
- "@sentry/core": 5.30.0
- "@sentry/hub": 5.30.0
- "@sentry/tracing": 5.30.0
- "@sentry/types": 5.30.0
- "@sentry/utils": 5.30.0
+ '@sentry/core': 5.30.0
+ '@sentry/hub': 5.30.0
+ '@sentry/tracing': 5.30.0
+ '@sentry/types': 5.30.0
+ '@sentry/utils': 5.30.0
cookie: 0.4.2
https-proxy-agent: 5.0.1
lru_map: 0.3.3
@@ -12404,397 +8788,359 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@sentry/tracing@5.30.0":
+ '@sentry/tracing@5.30.0':
dependencies:
- "@sentry/hub": 5.30.0
- "@sentry/minimal": 5.30.0
- "@sentry/types": 5.30.0
- "@sentry/utils": 5.30.0
+ '@sentry/hub': 5.30.0
+ '@sentry/minimal': 5.30.0
+ '@sentry/types': 5.30.0
+ '@sentry/utils': 5.30.0
tslib: 1.14.1
- "@sentry/types@5.30.0": {}
+ '@sentry/types@5.30.0': {}
- "@sentry/utils@5.30.0":
+ '@sentry/utils@5.30.0':
dependencies:
- "@sentry/types": 5.30.0
+ '@sentry/types': 5.30.0
tslib: 1.14.1
- "@simplewebauthn/browser@9.0.1":
+ '@simplewebauthn/browser@9.0.1':
dependencies:
- "@simplewebauthn/types": 9.0.1
+ '@simplewebauthn/types': 9.0.1
+
+ '@simplewebauthn/types@9.0.1': {}
- "@simplewebauthn/types@9.0.1": {}
+ '@sindresorhus/is@5.6.0': {}
- "@sindresorhus/is@5.6.0": {}
+ '@solidity-parser/parser@0.18.0': {}
- "@solidity-parser/parser@0.18.0": {}
+ '@stablelib/aead@1.0.1': {}
- "@stablelib/aead@1.0.1": {}
+ '@stablelib/base64@1.0.1': {}
- "@stablelib/binary@1.0.1":
+ '@stablelib/binary@1.0.1':
dependencies:
- "@stablelib/int": 1.0.1
+ '@stablelib/int': 1.0.1
- "@stablelib/bytes@1.0.1": {}
+ '@stablelib/bytes@1.0.1': {}
- "@stablelib/chacha20poly1305@1.0.1":
+ '@stablelib/chacha20poly1305@1.0.1':
dependencies:
- "@stablelib/aead": 1.0.1
- "@stablelib/binary": 1.0.1
- "@stablelib/chacha": 1.0.1
- "@stablelib/constant-time": 1.0.1
- "@stablelib/poly1305": 1.0.1
- "@stablelib/wipe": 1.0.1
+ '@stablelib/aead': 1.0.1
+ '@stablelib/binary': 1.0.1
+ '@stablelib/chacha': 1.0.1
+ '@stablelib/constant-time': 1.0.1
+ '@stablelib/poly1305': 1.0.1
+ '@stablelib/wipe': 1.0.1
- "@stablelib/chacha@1.0.1":
+ '@stablelib/chacha@1.0.1':
dependencies:
- "@stablelib/binary": 1.0.1
- "@stablelib/wipe": 1.0.1
+ '@stablelib/binary': 1.0.1
+ '@stablelib/wipe': 1.0.1
- "@stablelib/constant-time@1.0.1": {}
+ '@stablelib/constant-time@1.0.1': {}
- "@stablelib/ed25519@1.0.3":
+ '@stablelib/ed25519@1.0.3':
dependencies:
- "@stablelib/random": 1.0.2
- "@stablelib/sha512": 1.0.1
- "@stablelib/wipe": 1.0.1
+ '@stablelib/random': 1.0.2
+ '@stablelib/sha512': 1.0.1
+ '@stablelib/wipe': 1.0.1
- "@stablelib/hash@1.0.1": {}
+ '@stablelib/hash@1.0.1': {}
- "@stablelib/hkdf@1.0.1":
+ '@stablelib/hkdf@1.0.1':
dependencies:
- "@stablelib/hash": 1.0.1
- "@stablelib/hmac": 1.0.1
- "@stablelib/wipe": 1.0.1
+ '@stablelib/hash': 1.0.1
+ '@stablelib/hmac': 1.0.1
+ '@stablelib/wipe': 1.0.1
- "@stablelib/hmac@1.0.1":
+ '@stablelib/hmac@1.0.1':
dependencies:
- "@stablelib/constant-time": 1.0.1
- "@stablelib/hash": 1.0.1
- "@stablelib/wipe": 1.0.1
+ '@stablelib/constant-time': 1.0.1
+ '@stablelib/hash': 1.0.1
+ '@stablelib/wipe': 1.0.1
- "@stablelib/int@1.0.1": {}
+ '@stablelib/int@1.0.1': {}
- "@stablelib/keyagreement@1.0.1":
+ '@stablelib/keyagreement@1.0.1':
dependencies:
- "@stablelib/bytes": 1.0.1
+ '@stablelib/bytes': 1.0.1
- "@stablelib/poly1305@1.0.1":
+ '@stablelib/poly1305@1.0.1':
dependencies:
- "@stablelib/constant-time": 1.0.1
- "@stablelib/wipe": 1.0.1
+ '@stablelib/constant-time': 1.0.1
+ '@stablelib/wipe': 1.0.1
- "@stablelib/random@1.0.2":
+ '@stablelib/random@1.0.2':
dependencies:
- "@stablelib/binary": 1.0.1
- "@stablelib/wipe": 1.0.1
+ '@stablelib/binary': 1.0.1
+ '@stablelib/wipe': 1.0.1
- "@stablelib/sha256@1.0.1":
+ '@stablelib/sha256@1.0.1':
dependencies:
- "@stablelib/binary": 1.0.1
- "@stablelib/hash": 1.0.1
- "@stablelib/wipe": 1.0.1
+ '@stablelib/binary': 1.0.1
+ '@stablelib/hash': 1.0.1
+ '@stablelib/wipe': 1.0.1
- "@stablelib/sha512@1.0.1":
+ '@stablelib/sha512@1.0.1':
dependencies:
- "@stablelib/binary": 1.0.1
- "@stablelib/hash": 1.0.1
- "@stablelib/wipe": 1.0.1
+ '@stablelib/binary': 1.0.1
+ '@stablelib/hash': 1.0.1
+ '@stablelib/wipe': 1.0.1
- "@stablelib/wipe@1.0.1": {}
+ '@stablelib/wipe@1.0.1': {}
- "@stablelib/x25519@1.0.3":
+ '@stablelib/x25519@1.0.3':
dependencies:
- "@stablelib/keyagreement": 1.0.1
- "@stablelib/random": 1.0.2
- "@stablelib/wipe": 1.0.1
+ '@stablelib/keyagreement': 1.0.1
+ '@stablelib/random': 1.0.2
+ '@stablelib/wipe': 1.0.1
- "@surma/rollup-plugin-off-main-thread@2.2.3":
+ '@surma/rollup-plugin-off-main-thread@2.2.3':
dependencies:
ejs: 3.1.9
json5: 2.2.3
magic-string: 0.25.9
string.prototype.matchall: 4.0.10
- "@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.25.2)":
- dependencies:
- "@babel/core": 7.25.2
-
- "@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.25.2)":
- dependencies:
- "@babel/core": 7.25.2
-
- "@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.25.2)":
- dependencies:
- "@babel/core": 7.25.2
-
- "@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.25.2)":
- dependencies:
- "@babel/core": 7.25.2
-
- "@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.25.2)":
- dependencies:
- "@babel/core": 7.25.2
-
- "@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.25.2)":
- dependencies:
- "@babel/core": 7.25.2
-
- "@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.25.2)":
- dependencies:
- "@babel/core": 7.25.2
-
- "@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.25.2)":
- dependencies:
- "@babel/core": 7.25.2
-
- "@svgr/babel-preset@8.1.0(@babel/core@7.25.2)":
- dependencies:
- "@babel/core": 7.25.2
- "@svgr/babel-plugin-add-jsx-attribute": 8.0.0(@babel/core@7.25.2)
- "@svgr/babel-plugin-remove-jsx-attribute": 8.0.0(@babel/core@7.25.2)
- "@svgr/babel-plugin-remove-jsx-empty-expression": 8.0.0(@babel/core@7.25.2)
- "@svgr/babel-plugin-replace-jsx-attribute-value": 8.0.0(@babel/core@7.25.2)
- "@svgr/babel-plugin-svg-dynamic-title": 8.0.0(@babel/core@7.25.2)
- "@svgr/babel-plugin-svg-em-dimensions": 8.0.0(@babel/core@7.25.2)
- "@svgr/babel-plugin-transform-react-native-svg": 8.1.0(@babel/core@7.25.2)
- "@svgr/babel-plugin-transform-svg-component": 8.0.0(@babel/core@7.25.2)
-
- "@svgr/core@8.1.0(typescript@5.5.4)":
- dependencies:
- "@babel/core": 7.25.2
- "@svgr/babel-preset": 8.1.0(@babel/core@7.25.2)
- camelcase: 6.3.0
- cosmiconfig: 8.3.6(typescript@5.5.4)
- snake-case: 3.0.4
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- "@svgr/hast-util-to-babel-ast@8.0.0":
- dependencies:
- "@babel/types": 7.25.2
- entities: 4.5.0
-
- "@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.5.4))":
- dependencies:
- "@babel/core": 7.25.2
- "@svgr/babel-preset": 8.1.0(@babel/core@7.25.2)
- "@svgr/core": 8.1.0(typescript@5.5.4)
- "@svgr/hast-util-to-babel-ast": 8.0.0
- svg-parser: 2.0.4
- transitivePeerDependencies:
- - supports-color
-
- "@swc/core-darwin-arm64@1.7.11":
+ '@swc/core-darwin-arm64@1.7.11':
optional: true
- "@swc/core-darwin-x64@1.7.11":
+ '@swc/core-darwin-x64@1.7.11':
optional: true
- "@swc/core-linux-arm-gnueabihf@1.7.11":
+ '@swc/core-linux-arm-gnueabihf@1.7.11':
optional: true
- "@swc/core-linux-arm64-gnu@1.7.11":
+ '@swc/core-linux-arm64-gnu@1.7.11':
optional: true
- "@swc/core-linux-arm64-musl@1.7.11":
+ '@swc/core-linux-arm64-musl@1.7.11':
optional: true
- "@swc/core-linux-x64-gnu@1.7.11":
+ '@swc/core-linux-x64-gnu@1.7.11':
optional: true
- "@swc/core-linux-x64-musl@1.7.11":
+ '@swc/core-linux-x64-musl@1.7.11':
optional: true
- "@swc/core-win32-arm64-msvc@1.7.11":
+ '@swc/core-win32-arm64-msvc@1.7.11':
optional: true
- "@swc/core-win32-ia32-msvc@1.7.11":
+ '@swc/core-win32-ia32-msvc@1.7.11':
optional: true
- "@swc/core-win32-x64-msvc@1.7.11":
+ '@swc/core-win32-x64-msvc@1.7.11':
optional: true
- "@swc/core@1.7.11(@swc/helpers@0.5.12)":
+ '@swc/core@1.7.11(@swc/helpers@0.5.12)':
dependencies:
- "@swc/counter": 0.1.3
- "@swc/types": 0.1.12
+ '@swc/counter': 0.1.3
+ '@swc/types': 0.1.12
optionalDependencies:
- "@swc/core-darwin-arm64": 1.7.11
- "@swc/core-darwin-x64": 1.7.11
- "@swc/core-linux-arm-gnueabihf": 1.7.11
- "@swc/core-linux-arm64-gnu": 1.7.11
- "@swc/core-linux-arm64-musl": 1.7.11
- "@swc/core-linux-x64-gnu": 1.7.11
- "@swc/core-linux-x64-musl": 1.7.11
- "@swc/core-win32-arm64-msvc": 1.7.11
- "@swc/core-win32-ia32-msvc": 1.7.11
- "@swc/core-win32-x64-msvc": 1.7.11
- "@swc/helpers": 0.5.12
-
- "@swc/counter@0.1.3": {}
-
- "@swc/helpers@0.5.12":
+ '@swc/core-darwin-arm64': 1.7.11
+ '@swc/core-darwin-x64': 1.7.11
+ '@swc/core-linux-arm-gnueabihf': 1.7.11
+ '@swc/core-linux-arm64-gnu': 1.7.11
+ '@swc/core-linux-arm64-musl': 1.7.11
+ '@swc/core-linux-x64-gnu': 1.7.11
+ '@swc/core-linux-x64-musl': 1.7.11
+ '@swc/core-win32-arm64-msvc': 1.7.11
+ '@swc/core-win32-ia32-msvc': 1.7.11
+ '@swc/core-win32-x64-msvc': 1.7.11
+ '@swc/helpers': 0.5.12
+
+ '@swc/counter@0.1.3': {}
+
+ '@swc/helpers@0.5.12':
dependencies:
tslib: 2.6.2
- "@swc/types@0.1.12":
+ '@swc/types@0.1.12':
dependencies:
- "@swc/counter": 0.1.3
+ '@swc/counter': 0.1.3
- "@szmarczak/http-timer@5.0.1":
+ '@szmarczak/http-timer@5.0.1':
dependencies:
defer-to-connect: 2.0.1
- "@tanstack/react-virtual@3.1.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)":
+ '@tailwindcss/forms@0.5.7(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11)(@types/node@16.18.11)(typescript@5.5.4)))':
+ dependencies:
+ mini-svg-data-uri: 1.4.4
+ tailwindcss: 3.4.10(ts-node@10.9.2(@swc/core@1.7.11)(@types/node@16.18.11)(typescript@5.5.4))
+
+ '@tailwindcss/typography@0.5.15(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11)(@types/node@16.18.11)(typescript@5.5.4)))':
+ dependencies:
+ lodash.castarray: 4.4.0
+ lodash.isplainobject: 4.0.6
+ lodash.merge: 4.6.2
+ postcss-selector-parser: 6.0.10
+ tailwindcss: 3.4.10(ts-node@10.9.2(@swc/core@1.7.11)(@types/node@16.18.11)(typescript@5.5.4))
+
+ '@tanstack/eslint-plugin-query@5.52.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)':
+ dependencies:
+ '@typescript-eslint/utils': 8.0.0-alpha.30(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.9.0(jiti@1.21.0)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ '@tanstack/query-core@5.52.2': {}
+
+ '@tanstack/react-query@5.52.2(react@18.3.1)':
dependencies:
- "@tanstack/virtual-core": 3.1.3
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@tanstack/query-core': 5.52.2
+ react: 18.3.1
- "@tanstack/react-virtual@3.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)":
+ '@tanstack/react-virtual@3.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- "@tanstack/virtual-core": 3.1.3
+ '@tanstack/virtual-core': 3.1.3
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- "@tanstack/virtual-core@3.1.3": {}
+ '@tanstack/virtual-core@3.1.3': {}
+
+ '@ts-morph/common@0.11.1':
+ dependencies:
+ fast-glob: 3.3.2
+ minimatch: 3.1.2
+ mkdirp: 1.0.4
+ path-browserify: 1.0.1
- "@tsconfig/node10@1.0.11": {}
+ '@tsconfig/node10@1.0.11': {}
- "@tsconfig/node12@1.0.11": {}
+ '@tsconfig/node12@1.0.11': {}
- "@tsconfig/node14@1.0.3": {}
+ '@tsconfig/node14@1.0.3': {}
- "@tsconfig/node16@1.0.4": {}
+ '@tsconfig/node16@1.0.4': {}
- "@types/babel__core@7.20.5":
+ '@types/babel__core@7.20.5':
dependencies:
- "@babel/parser": 7.24.0
- "@babel/types": 7.24.0
- "@types/babel__generator": 7.6.8
- "@types/babel__template": 7.4.4
- "@types/babel__traverse": 7.20.5
+ '@babel/parser': 7.24.0
+ '@babel/types': 7.24.0
+ '@types/babel__generator': 7.6.8
+ '@types/babel__template': 7.4.4
+ '@types/babel__traverse': 7.20.5
- "@types/babel__generator@7.6.8":
+ '@types/babel__generator@7.6.8':
dependencies:
- "@babel/types": 7.24.0
+ '@babel/types': 7.24.0
- "@types/babel__template@7.4.4":
+ '@types/babel__template@7.4.4':
dependencies:
- "@babel/parser": 7.24.0
- "@babel/types": 7.24.0
+ '@babel/parser': 7.24.0
+ '@babel/types': 7.24.0
- "@types/babel__traverse@7.20.5":
+ '@types/babel__traverse@7.20.5':
dependencies:
- "@babel/types": 7.24.0
+ '@babel/types': 7.24.0
- "@types/bn.js@4.11.6":
+ '@types/bn.js@4.11.6':
dependencies:
- "@types/node": 22.1.0
+ '@types/node': 22.5.1
- "@types/bn.js@5.1.2":
+ '@types/bn.js@5.1.2':
dependencies:
- "@types/node": 22.1.0
+ '@types/node': 22.5.1
- "@types/chai@4.3.17": {}
+ '@types/chai@4.3.19': {}
+
+ '@types/debug@4.1.9':
+ dependencies:
+ '@types/ms': 0.7.32
- "@types/debug@4.1.9":
+ '@types/dns-packet@5.6.5':
dependencies:
- "@types/ms": 0.7.32
+ '@types/node': 22.5.1
- "@types/estree@0.0.39": {}
+ '@types/estree@0.0.39': {}
- "@types/estree@1.0.5": {}
+ '@types/estree@1.0.5': {}
- "@types/glob@7.2.0":
+ '@types/glob@7.2.0':
dependencies:
- "@types/minimatch": 5.1.2
- "@types/node": 22.1.0
+ '@types/minimatch': 5.1.2
+ '@types/node': 22.5.1
+
+ '@types/hoist-non-react-statics@3.3.5':
+ dependencies:
+ '@types/react': 18.3.3
+ hoist-non-react-statics: 3.3.2
+
+ '@types/http-cache-semantics@4.0.4': {}
- "@types/http-cache-semantics@4.0.4": {}
+ '@types/json-schema@7.0.15': {}
- "@types/json5@0.0.29":
+ '@types/json5@0.0.29':
optional: true
- "@types/lru-cache@5.1.1": {}
+ '@types/lru-cache@5.1.1': {}
- "@types/minimatch@5.1.2": {}
+ '@types/minimatch@5.1.2': {}
- "@types/mocha@10.0.6": {}
+ '@types/mocha@10.0.6': {}
- "@types/ms@0.7.32": {}
+ '@types/ms@0.7.32': {}
- "@types/node@12.20.55": {}
+ '@types/node@12.20.55': {}
- "@types/node@18.15.13": {}
+ '@types/node@16.18.11': {}
- "@types/node@20.8.8":
+ '@types/node@18.15.13': {}
+
+ '@types/node@20.8.8':
dependencies:
undici-types: 5.25.3
- "@types/node@22.1.0":
+ '@types/node@22.5.1':
dependencies:
- undici-types: 6.13.0
+ undici-types: 6.19.8
+
+ '@types/parse-json@4.0.2': {}
- "@types/pbkdf2@3.1.0":
+ '@types/pbkdf2@3.1.0':
dependencies:
- "@types/node": 22.1.0
+ '@types/node': 22.5.1
- "@types/prettier@2.7.3": {}
+ '@types/prettier@2.7.3': {}
- "@types/prop-types@15.7.11": {}
+ '@types/prop-types@15.7.11': {}
- "@types/qrcode@1.5.5":
+ '@types/qrcode@1.5.5':
dependencies:
- "@types/node": 22.1.0
+ '@types/node': 22.5.1
- "@types/react-dom@18.3.0":
+ '@types/react-dom@18.3.0':
dependencies:
- "@types/react": 18.3.3
+ '@types/react': 18.3.3
- "@types/react@18.3.3":
+ '@types/react-transition-group@4.4.11':
dependencies:
- "@types/prop-types": 15.7.11
- csstype: 3.1.2
+ '@types/react': 18.3.3
- "@types/resolve@1.17.1":
+ '@types/react@18.3.3':
dependencies:
- "@types/node": 22.1.0
+ '@types/prop-types': 15.7.11
+ csstype: 3.1.2
- "@types/secp256k1@4.0.4":
+ '@types/resolve@1.17.1':
dependencies:
- "@types/node": 22.1.0
+ '@types/node': 22.5.1
- "@types/trusted-types@2.0.4": {}
-
- "@typescript-eslint/eslint-plugin@8.1.0(@typescript-eslint/parser@8.1.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)":
+ '@types/secp256k1@4.0.4':
dependencies:
- "@eslint-community/regexpp": 4.11.0
- "@typescript-eslint/parser": 8.1.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
- "@typescript-eslint/scope-manager": 8.1.0
- "@typescript-eslint/type-utils": 8.1.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
- "@typescript-eslint/utils": 8.1.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
- "@typescript-eslint/visitor-keys": 8.1.0
- eslint: 9.9.0(jiti@1.21.0)
- graphemer: 1.4.0
- ignore: 5.3.2
- natural-compare: 1.4.0
- ts-api-utils: 1.3.0(typescript@5.5.4)
- optionalDependencies:
- typescript: 5.5.4
- transitivePeerDependencies:
- - supports-color
+ '@types/node': 22.5.1
- "@typescript-eslint/eslint-plugin@8.2.0(@typescript-eslint/parser@8.2.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)":
+ '@types/trusted-types@2.0.4': {}
+
+ '@typescript-eslint/eslint-plugin@8.2.0(@typescript-eslint/parser@8.2.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
- "@eslint-community/regexpp": 4.11.0
- "@typescript-eslint/parser": 8.2.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
- "@typescript-eslint/scope-manager": 8.2.0
- "@typescript-eslint/type-utils": 8.2.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
- "@typescript-eslint/utils": 8.2.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
- "@typescript-eslint/visitor-keys": 8.2.0
+ '@eslint-community/regexpp': 4.11.0
+ '@typescript-eslint/parser': 8.2.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/scope-manager': 8.2.0
+ '@typescript-eslint/type-utils': 8.2.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/utils': 8.2.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/visitor-keys': 8.2.0
eslint: 9.9.0(jiti@1.21.0)
graphemer: 1.4.0
ignore: 5.3.2
@@ -12805,12 +9151,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@typescript-eslint/parser@8.1.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)":
+ '@typescript-eslint/parser@8.2.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
- "@typescript-eslint/scope-manager": 8.1.0
- "@typescript-eslint/types": 8.1.0
- "@typescript-eslint/typescript-estree": 8.1.0(typescript@5.5.4)
- "@typescript-eslint/visitor-keys": 8.1.0
+ '@typescript-eslint/scope-manager': 8.2.0
+ '@typescript-eslint/types': 8.2.0
+ '@typescript-eslint/typescript-estree': 8.2.0(typescript@5.5.4)
+ '@typescript-eslint/visitor-keys': 8.2.0
debug: 4.3.4(supports-color@5.5.0)
eslint: 9.9.0(jiti@1.21.0)
optionalDependencies:
@@ -12818,33 +9164,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@typescript-eslint/parser@8.2.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)":
- dependencies:
- "@typescript-eslint/scope-manager": 8.2.0
- "@typescript-eslint/types": 8.2.0
- "@typescript-eslint/typescript-estree": 8.2.0(typescript@5.5.4)
- "@typescript-eslint/visitor-keys": 8.2.0
- debug: 4.3.4(supports-color@8.1.1)
- eslint: 9.9.0(jiti@1.21.0)
- optionalDependencies:
- typescript: 5.5.4
- transitivePeerDependencies:
- - supports-color
-
- "@typescript-eslint/scope-manager@8.1.0":
+ '@typescript-eslint/scope-manager@8.0.0-alpha.30':
dependencies:
- "@typescript-eslint/types": 8.1.0
- "@typescript-eslint/visitor-keys": 8.1.0
+ '@typescript-eslint/types': 8.0.0-alpha.30
+ '@typescript-eslint/visitor-keys': 8.0.0-alpha.30
- "@typescript-eslint/scope-manager@8.2.0":
+ '@typescript-eslint/scope-manager@8.2.0':
dependencies:
- "@typescript-eslint/types": 8.2.0
- "@typescript-eslint/visitor-keys": 8.2.0
+ '@typescript-eslint/types': 8.2.0
+ '@typescript-eslint/visitor-keys': 8.2.0
- "@typescript-eslint/type-utils@8.1.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)":
+ '@typescript-eslint/type-utils@8.2.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
- "@typescript-eslint/typescript-estree": 8.1.0(typescript@5.5.4)
- "@typescript-eslint/utils": 8.1.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/typescript-estree': 8.2.0(typescript@5.5.4)
+ '@typescript-eslint/utils': 8.2.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
debug: 4.3.4(supports-color@5.5.0)
ts-api-utils: 1.3.0(typescript@5.5.4)
optionalDependencies:
@@ -12853,26 +9186,14 @@ snapshots:
- eslint
- supports-color
- "@typescript-eslint/type-utils@8.2.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)":
- dependencies:
- "@typescript-eslint/typescript-estree": 8.2.0(typescript@5.5.4)
- "@typescript-eslint/utils": 8.2.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
- debug: 4.3.4(supports-color@8.1.1)
- ts-api-utils: 1.3.0(typescript@5.5.4)
- optionalDependencies:
- typescript: 5.5.4
- transitivePeerDependencies:
- - eslint
- - supports-color
-
- "@typescript-eslint/types@8.1.0": {}
+ '@typescript-eslint/types@8.0.0-alpha.30': {}
- "@typescript-eslint/types@8.2.0": {}
+ '@typescript-eslint/types@8.2.0': {}
- "@typescript-eslint/typescript-estree@8.1.0(typescript@5.5.4)":
+ '@typescript-eslint/typescript-estree@8.0.0-alpha.30(typescript@5.5.4)':
dependencies:
- "@typescript-eslint/types": 8.1.0
- "@typescript-eslint/visitor-keys": 8.1.0
+ '@typescript-eslint/types': 8.0.0-alpha.30
+ '@typescript-eslint/visitor-keys': 8.0.0-alpha.30
debug: 4.3.4(supports-color@5.5.0)
globby: 11.1.0
is-glob: 4.0.3
@@ -12884,11 +9205,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@typescript-eslint/typescript-estree@8.2.0(typescript@5.5.4)":
+ '@typescript-eslint/typescript-estree@8.2.0(typescript@5.5.4)':
dependencies:
- "@typescript-eslint/types": 8.2.0
- "@typescript-eslint/visitor-keys": 8.2.0
- debug: 4.3.4(supports-color@8.1.1)
+ '@typescript-eslint/types': 8.2.0
+ '@typescript-eslint/visitor-keys': 8.2.0
+ debug: 4.3.4(supports-color@5.5.0)
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.5
@@ -12899,197 +9220,180 @@ snapshots:
transitivePeerDependencies:
- supports-color
- "@typescript-eslint/utils@8.1.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)":
+ '@typescript-eslint/utils@8.0.0-alpha.30(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
- "@eslint-community/eslint-utils": 4.4.0(eslint@9.9.0(jiti@1.21.0))
- "@typescript-eslint/scope-manager": 8.1.0
- "@typescript-eslint/types": 8.1.0
- "@typescript-eslint/typescript-estree": 8.1.0(typescript@5.5.4)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.0(jiti@1.21.0))
+ '@typescript-eslint/scope-manager': 8.0.0-alpha.30
+ '@typescript-eslint/types': 8.0.0-alpha.30
+ '@typescript-eslint/typescript-estree': 8.0.0-alpha.30(typescript@5.5.4)
eslint: 9.9.0(jiti@1.21.0)
transitivePeerDependencies:
- supports-color
- typescript
- "@typescript-eslint/utils@8.2.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)":
+ '@typescript-eslint/utils@8.2.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
- "@eslint-community/eslint-utils": 4.4.0(eslint@9.9.0(jiti@1.21.0))
- "@typescript-eslint/scope-manager": 8.2.0
- "@typescript-eslint/types": 8.2.0
- "@typescript-eslint/typescript-estree": 8.2.0(typescript@5.5.4)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.0(jiti@1.21.0))
+ '@typescript-eslint/scope-manager': 8.2.0
+ '@typescript-eslint/types': 8.2.0
+ '@typescript-eslint/typescript-estree': 8.2.0(typescript@5.5.4)
eslint: 9.9.0(jiti@1.21.0)
transitivePeerDependencies:
- supports-color
- typescript
- "@typescript-eslint/visitor-keys@8.1.0":
+ '@typescript-eslint/visitor-keys@8.0.0-alpha.30':
dependencies:
- "@typescript-eslint/types": 8.1.0
+ '@typescript-eslint/types': 8.0.0-alpha.30
eslint-visitor-keys: 3.4.3
- "@typescript-eslint/visitor-keys@8.2.0":
+ '@typescript-eslint/visitor-keys@8.2.0':
dependencies:
- "@typescript-eslint/types": 8.2.0
+ '@typescript-eslint/types': 8.2.0
eslint-visitor-keys: 3.4.3
- "@vitejs/plugin-react@4.3.1(vite@5.4.0(@types/node@22.1.0)(terser@5.21.0))":
+ '@urql/core@5.0.6(graphql@16.9.0)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/plugin-transform-react-jsx-self": 7.24.7(@babel/core@7.25.2)
- "@babel/plugin-transform-react-jsx-source": 7.24.7(@babel/core@7.25.2)
- "@types/babel__core": 7.20.5
- react-refresh: 0.14.2
- vite: 5.4.0(@types/node@22.1.0)(terser@5.21.0)
+ '@0no-co/graphql.web': 1.0.8(graphql@16.9.0)
+ wonka: 6.3.4
transitivePeerDependencies:
- - supports-color
+ - graphql
- "@vitejs/plugin-react@4.3.1(vite@5.4.2(@types/node@22.1.0)(terser@5.21.0))":
+ '@vercel/build-utils@8.3.8': {}
+
+ '@vercel/error-utils@2.0.2': {}
+
+ '@vercel/functions@1.4.1': {}
+
+ '@vercel/nft@0.27.3(encoding@0.1.13)':
dependencies:
- "@babel/core": 7.25.2
- "@babel/plugin-transform-react-jsx-self": 7.24.7(@babel/core@7.25.2)
- "@babel/plugin-transform-react-jsx-source": 7.24.7(@babel/core@7.25.2)
- "@types/babel__core": 7.20.5
- react-refresh: 0.14.2
- vite: 5.4.2(@types/node@22.1.0)(terser@5.21.0)
+ '@mapbox/node-pre-gyp': 1.0.11(encoding@0.1.13)
+ '@rollup/pluginutils': 4.2.1
+ acorn: 8.12.1
+ acorn-import-attributes: 1.9.5(acorn@8.12.1)
+ async-sema: 3.1.1
+ bindings: 1.5.0
+ estree-walker: 2.0.2
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ micromatch: 4.0.5
+ node-gyp-build: 4.6.1
+ resolve-from: 5.0.0
transitivePeerDependencies:
+ - encoding
- supports-color
- "@walletconnect/core@2.14.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)":
- dependencies:
- "@walletconnect/heartbeat": 1.2.2
- "@walletconnect/jsonrpc-provider": 1.0.14
- "@walletconnect/jsonrpc-types": 1.0.4
- "@walletconnect/jsonrpc-utils": 1.0.8
- "@walletconnect/jsonrpc-ws-connection": 1.0.14(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- "@walletconnect/keyvaluestorage": 1.1.1
- "@walletconnect/logger": 2.1.2
- "@walletconnect/relay-api": 1.0.10
- "@walletconnect/relay-auth": 1.0.4
- "@walletconnect/safe-json": 1.0.2
- "@walletconnect/time": 1.0.2
- "@walletconnect/types": 2.14.0
- "@walletconnect/utils": 2.14.0
- events: 3.3.0
- isomorphic-unfetch: 3.1.0(encoding@0.1.13)
- lodash.isequal: 4.5.0
- uint8arrays: 3.1.0
+ '@vercel/node@3.2.10(@swc/core@1.7.11)(encoding@0.1.13)':
+ dependencies:
+ '@edge-runtime/node-utils': 2.3.0
+ '@edge-runtime/primitives': 4.1.0
+ '@edge-runtime/vm': 3.2.0
+ '@types/node': 16.18.11
+ '@vercel/build-utils': 8.3.8
+ '@vercel/error-utils': 2.0.2
+ '@vercel/nft': 0.27.3(encoding@0.1.13)
+ '@vercel/static-config': 3.0.0
+ async-listen: 3.0.0
+ cjs-module-lexer: 1.2.3
+ edge-runtime: 2.5.9
+ es-module-lexer: 1.4.1
+ esbuild: 0.14.47
+ etag: 1.8.1
+ node-fetch: 2.6.9(encoding@0.1.13)
+ path-to-regexp: 6.2.1
+ ts-morph: 12.0.0
+ ts-node: 10.9.1(@swc/core@1.7.11)(@types/node@16.18.11)(typescript@4.9.5)
+ typescript: 4.9.5
+ undici: 5.28.4
transitivePeerDependencies:
- - "@azure/app-configuration"
- - "@azure/cosmos"
- - "@azure/data-tables"
- - "@azure/identity"
- - "@azure/keyvault-secrets"
- - "@azure/storage-blob"
- - "@capacitor/preferences"
- - "@netlify/blobs"
- - "@planetscale/database"
- - "@react-native-async-storage/async-storage"
- - "@upstash/redis"
- - "@vercel/kv"
- - bufferutil
+ - '@swc/core'
+ - '@swc/wasm'
- encoding
- supports-color
- - uWebSockets.js
- - utf-8-validate
- "@walletconnect/core@2.15.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)":
- dependencies:
- "@walletconnect/heartbeat": 1.2.2
- "@walletconnect/jsonrpc-provider": 1.0.14
- "@walletconnect/jsonrpc-types": 1.0.4
- "@walletconnect/jsonrpc-utils": 1.0.8
- "@walletconnect/jsonrpc-ws-connection": 1.0.14(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- "@walletconnect/keyvaluestorage": 1.1.1
- "@walletconnect/logger": 2.1.2
- "@walletconnect/relay-api": 1.0.11
- "@walletconnect/relay-auth": 1.0.4
- "@walletconnect/safe-json": 1.0.2
- "@walletconnect/time": 1.0.2
- "@walletconnect/types": 2.15.1
- "@walletconnect/utils": 2.15.1
+ '@vercel/static-config@3.0.0':
+ dependencies:
+ ajv: 8.6.3
+ json-schema-to-ts: 1.6.4
+ ts-morph: 12.0.0
+
+ '@vitejs/plugin-react@4.3.1(vite@5.4.2(@types/node@16.18.11)(terser@5.21.0))':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.25.2)
+ '@types/babel__core': 7.20.5
+ react-refresh: 0.14.2
+ vite: 5.4.2(@types/node@16.18.11)(terser@5.21.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@walletconnect/core@2.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-provider': 1.0.14
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/relay-api': 1.0.11
+ '@walletconnect/relay-auth': 1.0.4
+ '@walletconnect/safe-json': 1.0.2
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.15.1
+ '@walletconnect/utils': 2.15.1
events: 3.3.0
lodash.isequal: 4.5.0
uint8arrays: 3.1.0
transitivePeerDependencies:
- - "@azure/app-configuration"
- - "@azure/cosmos"
- - "@azure/data-tables"
- - "@azure/identity"
- - "@azure/keyvault-secrets"
- - "@azure/storage-blob"
- - "@capacitor/preferences"
- - "@netlify/blobs"
- - "@planetscale/database"
- - "@react-native-async-storage/async-storage"
- - "@upstash/redis"
- - "@vercel/kv"
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/kv'
- bufferutil
- supports-color
- uWebSockets.js
- utf-8-validate
- "@walletconnect/environment@1.0.1":
+ '@walletconnect/environment@1.0.1':
dependencies:
tslib: 1.14.1
- "@walletconnect/ethereum-provider@2.14.0(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.2.0)(utf-8-validate@5.0.10)":
- dependencies:
- "@walletconnect/jsonrpc-http-connection": 1.0.8(encoding@0.1.13)
- "@walletconnect/jsonrpc-provider": 1.0.14
- "@walletconnect/jsonrpc-types": 1.0.4
- "@walletconnect/jsonrpc-utils": 1.0.8
- "@walletconnect/modal": 2.6.2(@types/react@18.3.3)(react@18.2.0)
- "@walletconnect/sign-client": 2.14.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- "@walletconnect/types": 2.14.0
- "@walletconnect/universal-provider": 2.14.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- "@walletconnect/utils": 2.14.0
- events: 3.3.0
- transitivePeerDependencies:
- - "@azure/app-configuration"
- - "@azure/cosmos"
- - "@azure/data-tables"
- - "@azure/identity"
- - "@azure/keyvault-secrets"
- - "@azure/storage-blob"
- - "@capacitor/preferences"
- - "@netlify/blobs"
- - "@planetscale/database"
- - "@react-native-async-storage/async-storage"
- - "@types/react"
- - "@upstash/redis"
- - "@vercel/kv"
- - bufferutil
- - encoding
- - react
- - supports-color
- - uWebSockets.js
- - utf-8-validate
-
- "@walletconnect/ethereum-provider@2.15.1(@types/react@18.3.3)(bufferutil@4.0.7)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)":
- dependencies:
- "@walletconnect/jsonrpc-http-connection": 1.0.8(encoding@0.1.13)
- "@walletconnect/jsonrpc-provider": 1.0.14
- "@walletconnect/jsonrpc-types": 1.0.4
- "@walletconnect/jsonrpc-utils": 1.0.8
- "@walletconnect/modal": 2.6.2(@types/react@18.3.3)(react@18.3.1)
- "@walletconnect/sign-client": 2.15.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- "@walletconnect/types": 2.15.1
- "@walletconnect/universal-provider": 2.15.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- "@walletconnect/utils": 2.15.1
+ '@walletconnect/ethereum-provider@2.15.1(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
+ '@walletconnect/jsonrpc-provider': 1.0.14
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/modal': 2.6.2(@types/react@18.3.3)(react@18.3.1)
+ '@walletconnect/sign-client': 2.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@walletconnect/types': 2.15.1
+ '@walletconnect/universal-provider': 2.15.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@walletconnect/utils': 2.15.1
events: 3.3.0
transitivePeerDependencies:
- - "@azure/app-configuration"
- - "@azure/cosmos"
- - "@azure/data-tables"
- - "@azure/identity"
- - "@azure/keyvault-secrets"
- - "@azure/storage-blob"
- - "@capacitor/preferences"
- - "@netlify/blobs"
- - "@planetscale/database"
- - "@react-native-async-storage/async-storage"
- - "@types/react"
- - "@upstash/redis"
- - "@vercel/kv"
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/kv'
- bufferutil
- encoding
- react
@@ -13097,420 +9401,250 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- "@walletconnect/events@1.0.1":
+ '@walletconnect/events@1.0.1':
dependencies:
keyvaluestorage-interface: 1.0.0
tslib: 1.14.1
- "@walletconnect/heartbeat@1.2.2":
+ '@walletconnect/heartbeat@1.2.2':
dependencies:
- "@walletconnect/events": 1.0.1
- "@walletconnect/time": 1.0.2
+ '@walletconnect/events': 1.0.1
+ '@walletconnect/time': 1.0.2
events: 3.3.0
- "@walletconnect/jsonrpc-http-connection@1.0.8(encoding@0.1.13)":
+ '@walletconnect/jsonrpc-http-connection@1.0.8(encoding@0.1.13)':
dependencies:
- "@walletconnect/jsonrpc-utils": 1.0.8
- "@walletconnect/safe-json": 1.0.2
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/safe-json': 1.0.2
cross-fetch: 3.1.8(encoding@0.1.13)
events: 3.3.0
transitivePeerDependencies:
- encoding
- "@walletconnect/jsonrpc-provider@1.0.14":
+ '@walletconnect/jsonrpc-provider@1.0.14':
dependencies:
- "@walletconnect/jsonrpc-utils": 1.0.8
- "@walletconnect/safe-json": 1.0.2
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/safe-json': 1.0.2
events: 3.3.0
- "@walletconnect/jsonrpc-types@1.0.4":
+ '@walletconnect/jsonrpc-types@1.0.4':
dependencies:
events: 3.3.0
keyvaluestorage-interface: 1.0.0
- "@walletconnect/jsonrpc-utils@1.0.8":
+ '@walletconnect/jsonrpc-utils@1.0.8':
dependencies:
- "@walletconnect/environment": 1.0.1
- "@walletconnect/jsonrpc-types": 1.0.4
+ '@walletconnect/environment': 1.0.1
+ '@walletconnect/jsonrpc-types': 1.0.4
tslib: 1.14.1
- "@walletconnect/jsonrpc-ws-connection@1.0.14(bufferutil@4.0.7)(utf-8-validate@5.0.10)":
+ '@walletconnect/jsonrpc-ws-connection@1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
- "@walletconnect/jsonrpc-utils": 1.0.8
- "@walletconnect/safe-json": 1.0.2
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/safe-json': 1.0.2
events: 3.3.0
- ws: 7.5.9(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- "@walletconnect/keyvaluestorage@1.1.1":
+ '@walletconnect/keyvaluestorage@1.1.1':
dependencies:
- "@walletconnect/safe-json": 1.0.2
+ '@walletconnect/safe-json': 1.0.2
idb-keyval: 6.2.1
unstorage: 1.10.1(idb-keyval@6.2.1)
transitivePeerDependencies:
- - "@azure/app-configuration"
- - "@azure/cosmos"
- - "@azure/data-tables"
- - "@azure/identity"
- - "@azure/keyvault-secrets"
- - "@azure/storage-blob"
- - "@capacitor/preferences"
- - "@netlify/blobs"
- - "@planetscale/database"
- - "@upstash/redis"
- - "@vercel/kv"
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@upstash/redis'
+ - '@vercel/kv'
- supports-color
- uWebSockets.js
- "@walletconnect/logger@2.1.2":
+ '@walletconnect/logger@2.1.2':
dependencies:
- "@walletconnect/safe-json": 1.0.2
+ '@walletconnect/safe-json': 1.0.2
pino: 7.11.0
- "@walletconnect/modal-core@2.6.2(@types/react@18.3.3)(react@18.2.0)":
- dependencies:
- valtio: 1.11.2(@types/react@18.3.3)(react@18.2.0)
- transitivePeerDependencies:
- - "@types/react"
- - react
-
- "@walletconnect/modal-core@2.6.2(@types/react@18.3.3)(react@18.3.1)":
+ '@walletconnect/modal-core@2.6.2(@types/react@18.3.3)(react@18.3.1)':
dependencies:
valtio: 1.11.2(@types/react@18.3.3)(react@18.3.1)
transitivePeerDependencies:
- - "@types/react"
- - react
-
- "@walletconnect/modal-ui@2.6.2(@types/react@18.3.3)(react@18.2.0)":
- dependencies:
- "@walletconnect/modal-core": 2.6.2(@types/react@18.3.3)(react@18.2.0)
- lit: 2.8.0
- motion: 10.16.2
- qrcode: 1.5.3
- transitivePeerDependencies:
- - "@types/react"
+ - '@types/react'
- react
- "@walletconnect/modal-ui@2.6.2(@types/react@18.3.3)(react@18.3.1)":
+ '@walletconnect/modal-ui@2.6.2(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- "@walletconnect/modal-core": 2.6.2(@types/react@18.3.3)(react@18.3.1)
+ '@walletconnect/modal-core': 2.6.2(@types/react@18.3.3)(react@18.3.1)
lit: 2.8.0
motion: 10.16.2
qrcode: 1.5.3
transitivePeerDependencies:
- - "@types/react"
+ - '@types/react'
- react
- "@walletconnect/modal@2.6.2(@types/react@18.3.3)(react@18.2.0)":
+ '@walletconnect/modal@2.6.2(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- "@walletconnect/modal-core": 2.6.2(@types/react@18.3.3)(react@18.2.0)
- "@walletconnect/modal-ui": 2.6.2(@types/react@18.3.3)(react@18.2.0)
+ '@walletconnect/modal-core': 2.6.2(@types/react@18.3.3)(react@18.3.1)
+ '@walletconnect/modal-ui': 2.6.2(@types/react@18.3.3)(react@18.3.1)
transitivePeerDependencies:
- - "@types/react"
+ - '@types/react'
- react
- "@walletconnect/modal@2.6.2(@types/react@18.3.3)(react@18.3.1)":
+ '@walletconnect/relay-api@1.0.11':
dependencies:
- "@walletconnect/modal-core": 2.6.2(@types/react@18.3.3)(react@18.3.1)
- "@walletconnect/modal-ui": 2.6.2(@types/react@18.3.3)(react@18.3.1)
- transitivePeerDependencies:
- - "@types/react"
- - react
-
- "@walletconnect/relay-api@1.0.10":
- dependencies:
- "@walletconnect/jsonrpc-types": 1.0.4
+ '@walletconnect/jsonrpc-types': 1.0.4
- "@walletconnect/relay-api@1.0.11":
+ '@walletconnect/relay-auth@1.0.4':
dependencies:
- "@walletconnect/jsonrpc-types": 1.0.4
-
- "@walletconnect/relay-auth@1.0.4":
- dependencies:
- "@stablelib/ed25519": 1.0.3
- "@stablelib/random": 1.0.2
- "@walletconnect/safe-json": 1.0.2
- "@walletconnect/time": 1.0.2
+ '@stablelib/ed25519': 1.0.3
+ '@stablelib/random': 1.0.2
+ '@walletconnect/safe-json': 1.0.2
+ '@walletconnect/time': 1.0.2
tslib: 1.14.1
uint8arrays: 3.1.1
- "@walletconnect/safe-json@1.0.2":
+ '@walletconnect/safe-json@1.0.2':
dependencies:
tslib: 1.14.1
- "@walletconnect/sign-client@2.14.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)":
- dependencies:
- "@walletconnect/core": 2.14.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- "@walletconnect/events": 1.0.1
- "@walletconnect/heartbeat": 1.2.2
- "@walletconnect/jsonrpc-utils": 1.0.8
- "@walletconnect/logger": 2.1.2
- "@walletconnect/time": 1.0.2
- "@walletconnect/types": 2.14.0
- "@walletconnect/utils": 2.14.0
- events: 3.3.0
- transitivePeerDependencies:
- - "@azure/app-configuration"
- - "@azure/cosmos"
- - "@azure/data-tables"
- - "@azure/identity"
- - "@azure/keyvault-secrets"
- - "@azure/storage-blob"
- - "@capacitor/preferences"
- - "@netlify/blobs"
- - "@planetscale/database"
- - "@react-native-async-storage/async-storage"
- - "@upstash/redis"
- - "@vercel/kv"
- - bufferutil
- - encoding
- - supports-color
- - uWebSockets.js
- - utf-8-validate
-
- "@walletconnect/sign-client@2.15.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)":
+ '@walletconnect/sign-client@2.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
- "@walletconnect/core": 2.15.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- "@walletconnect/events": 1.0.1
- "@walletconnect/heartbeat": 1.2.2
- "@walletconnect/jsonrpc-utils": 1.0.8
- "@walletconnect/logger": 2.1.2
- "@walletconnect/time": 1.0.2
- "@walletconnect/types": 2.15.1
- "@walletconnect/utils": 2.15.1
+ '@walletconnect/core': 2.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@walletconnect/events': 1.0.1
+ '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.15.1
+ '@walletconnect/utils': 2.15.1
events: 3.3.0
transitivePeerDependencies:
- - "@azure/app-configuration"
- - "@azure/cosmos"
- - "@azure/data-tables"
- - "@azure/identity"
- - "@azure/keyvault-secrets"
- - "@azure/storage-blob"
- - "@capacitor/preferences"
- - "@netlify/blobs"
- - "@planetscale/database"
- - "@react-native-async-storage/async-storage"
- - "@upstash/redis"
- - "@vercel/kv"
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/kv'
- bufferutil
- supports-color
- uWebSockets.js
- utf-8-validate
- "@walletconnect/time@1.0.2":
+ '@walletconnect/time@1.0.2':
dependencies:
tslib: 1.14.1
- "@walletconnect/types@2.14.0":
- dependencies:
- "@walletconnect/events": 1.0.1
- "@walletconnect/heartbeat": 1.2.2
- "@walletconnect/jsonrpc-types": 1.0.4
- "@walletconnect/keyvaluestorage": 1.1.1
- "@walletconnect/logger": 2.1.2
- events: 3.3.0
- transitivePeerDependencies:
- - "@azure/app-configuration"
- - "@azure/cosmos"
- - "@azure/data-tables"
- - "@azure/identity"
- - "@azure/keyvault-secrets"
- - "@azure/storage-blob"
- - "@capacitor/preferences"
- - "@netlify/blobs"
- - "@planetscale/database"
- - "@react-native-async-storage/async-storage"
- - "@upstash/redis"
- - "@vercel/kv"
- - supports-color
- - uWebSockets.js
-
- "@walletconnect/types@2.15.1":
- dependencies:
- "@walletconnect/events": 1.0.1
- "@walletconnect/heartbeat": 1.2.2
- "@walletconnect/jsonrpc-types": 1.0.4
- "@walletconnect/keyvaluestorage": 1.1.1
- "@walletconnect/logger": 2.1.2
- events: 3.3.0
- transitivePeerDependencies:
- - "@azure/app-configuration"
- - "@azure/cosmos"
- - "@azure/data-tables"
- - "@azure/identity"
- - "@azure/keyvault-secrets"
- - "@azure/storage-blob"
- - "@capacitor/preferences"
- - "@netlify/blobs"
- - "@planetscale/database"
- - "@react-native-async-storage/async-storage"
- - "@upstash/redis"
- - "@vercel/kv"
- - supports-color
- - uWebSockets.js
-
- "@walletconnect/universal-provider@2.14.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)":
+ '@walletconnect/types@2.15.1':
dependencies:
- "@walletconnect/jsonrpc-http-connection": 1.0.8(encoding@0.1.13)
- "@walletconnect/jsonrpc-provider": 1.0.14
- "@walletconnect/jsonrpc-types": 1.0.4
- "@walletconnect/jsonrpc-utils": 1.0.8
- "@walletconnect/logger": 2.1.2
- "@walletconnect/sign-client": 2.14.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)
- "@walletconnect/types": 2.14.0
- "@walletconnect/utils": 2.14.0
+ '@walletconnect/events': 1.0.1
+ '@walletconnect/heartbeat': 1.2.2
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/keyvaluestorage': 1.1.1
+ '@walletconnect/logger': 2.1.2
events: 3.3.0
transitivePeerDependencies:
- - "@azure/app-configuration"
- - "@azure/cosmos"
- - "@azure/data-tables"
- - "@azure/identity"
- - "@azure/keyvault-secrets"
- - "@azure/storage-blob"
- - "@capacitor/preferences"
- - "@netlify/blobs"
- - "@planetscale/database"
- - "@react-native-async-storage/async-storage"
- - "@upstash/redis"
- - "@vercel/kv"
- - bufferutil
- - encoding
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/kv'
- supports-color
- uWebSockets.js
- - utf-8-validate
- "@walletconnect/universal-provider@2.15.1(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)":
+ '@walletconnect/universal-provider@2.15.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
- "@walletconnect/jsonrpc-http-connection": 1.0.8(encoding@0.1.13)
- "@walletconnect/jsonrpc-provider": 1.0.14
- "@walletconnect/jsonrpc-types": 1.0.4
- "@walletconnect/jsonrpc-utils": 1.0.8
- "@walletconnect/logger": 2.1.2
- "@walletconnect/sign-client": 2.15.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- "@walletconnect/types": 2.15.1
- "@walletconnect/utils": 2.15.1
+ '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
+ '@walletconnect/jsonrpc-provider': 1.0.14
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/logger': 2.1.2
+ '@walletconnect/sign-client': 2.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@walletconnect/types': 2.15.1
+ '@walletconnect/utils': 2.15.1
events: 3.3.0
transitivePeerDependencies:
- - "@azure/app-configuration"
- - "@azure/cosmos"
- - "@azure/data-tables"
- - "@azure/identity"
- - "@azure/keyvault-secrets"
- - "@azure/storage-blob"
- - "@capacitor/preferences"
- - "@netlify/blobs"
- - "@planetscale/database"
- - "@react-native-async-storage/async-storage"
- - "@upstash/redis"
- - "@vercel/kv"
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/kv'
- bufferutil
- encoding
- supports-color
- uWebSockets.js
- utf-8-validate
- "@walletconnect/utils@2.14.0":
- dependencies:
- "@stablelib/chacha20poly1305": 1.0.1
- "@stablelib/hkdf": 1.0.1
- "@stablelib/random": 1.0.2
- "@stablelib/sha256": 1.0.1
- "@stablelib/x25519": 1.0.3
- "@walletconnect/relay-api": 1.0.10
- "@walletconnect/safe-json": 1.0.2
- "@walletconnect/time": 1.0.2
- "@walletconnect/types": 2.14.0
- "@walletconnect/window-getters": 1.0.1
- "@walletconnect/window-metadata": 1.0.1
- detect-browser: 5.3.0
- query-string: 7.1.3
- uint8arrays: 3.1.0
- transitivePeerDependencies:
- - "@azure/app-configuration"
- - "@azure/cosmos"
- - "@azure/data-tables"
- - "@azure/identity"
- - "@azure/keyvault-secrets"
- - "@azure/storage-blob"
- - "@capacitor/preferences"
- - "@netlify/blobs"
- - "@planetscale/database"
- - "@react-native-async-storage/async-storage"
- - "@upstash/redis"
- - "@vercel/kv"
- - supports-color
- - uWebSockets.js
-
- "@walletconnect/utils@2.15.1":
- dependencies:
- "@stablelib/chacha20poly1305": 1.0.1
- "@stablelib/hkdf": 1.0.1
- "@stablelib/random": 1.0.2
- "@stablelib/sha256": 1.0.1
- "@stablelib/x25519": 1.0.3
- "@walletconnect/relay-api": 1.0.11
- "@walletconnect/safe-json": 1.0.2
- "@walletconnect/time": 1.0.2
- "@walletconnect/types": 2.15.1
- "@walletconnect/window-getters": 1.0.1
- "@walletconnect/window-metadata": 1.0.1
+ '@walletconnect/utils@2.15.1':
+ dependencies:
+ '@stablelib/chacha20poly1305': 1.0.1
+ '@stablelib/hkdf': 1.0.1
+ '@stablelib/random': 1.0.2
+ '@stablelib/sha256': 1.0.1
+ '@stablelib/x25519': 1.0.3
+ '@walletconnect/relay-api': 1.0.11
+ '@walletconnect/safe-json': 1.0.2
+ '@walletconnect/time': 1.0.2
+ '@walletconnect/types': 2.15.1
+ '@walletconnect/window-getters': 1.0.1
+ '@walletconnect/window-metadata': 1.0.1
detect-browser: 5.3.0
query-string: 7.1.3
uint8arrays: 3.1.0
transitivePeerDependencies:
- - "@azure/app-configuration"
- - "@azure/cosmos"
- - "@azure/data-tables"
- - "@azure/identity"
- - "@azure/keyvault-secrets"
- - "@azure/storage-blob"
- - "@capacitor/preferences"
- - "@netlify/blobs"
- - "@planetscale/database"
- - "@react-native-async-storage/async-storage"
- - "@upstash/redis"
- - "@vercel/kv"
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@upstash/redis'
+ - '@vercel/kv'
- supports-color
- uWebSockets.js
- "@walletconnect/window-getters@1.0.1":
+ '@walletconnect/window-getters@1.0.1':
dependencies:
tslib: 1.14.1
- "@walletconnect/window-metadata@1.0.1":
+ '@walletconnect/window-metadata@1.0.1':
dependencies:
- "@walletconnect/window-getters": 1.0.1
+ '@walletconnect/window-getters': 1.0.1
tslib: 1.14.1
- "@xstate/react@3.2.2(@types/react@18.3.3)(react@18.2.0)(xstate@4.38.2)":
- dependencies:
- react: 18.2.0
- use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.3)(react@18.2.0)
- use-sync-external-store: 1.2.0(react@18.2.0)
- optionalDependencies:
- xstate: 4.38.2
- transitivePeerDependencies:
- - "@types/react"
-
- "@xstate/react@4.1.1(@types/react@18.3.3)(react@18.3.1)(xstate@5.17.4)":
- dependencies:
- react: 18.3.1
- use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.3)(react@18.3.1)
- use-sync-external-store: 1.2.0(react@18.3.1)
- optionalDependencies:
- xstate: 5.17.4
- transitivePeerDependencies:
- - "@types/react"
-
abbrev@1.0.9: {}
- abitype@1.0.5(typescript@5.5.4)(zod@3.22.4):
- optionalDependencies:
- typescript: 5.5.4
- zod: 3.22.4
-
abitype@1.0.5(typescript@5.5.4)(zod@3.23.8):
optionalDependencies:
typescript: 5.5.4
@@ -13522,6 +9656,10 @@ snapshots:
abortcontroller-polyfill@1.7.5: {}
+ acorn-import-attributes@1.9.5(acorn@8.12.1):
+ dependencies:
+ acorn: 8.12.1
+
acorn-jsx@5.3.2(acorn@8.12.1):
dependencies:
acorn: 8.12.1
@@ -13563,6 +9701,13 @@ snapshots:
require-from-string: 2.0.2
uri-js: 4.4.1
+ ajv@8.6.3:
+ dependencies:
+ fast-deep-equal: 3.1.3
+ json-schema-traverse: 1.0.0
+ require-from-string: 2.0.2
+ uri-js: 4.4.1
+
amdefine@1.0.1:
optional: true
@@ -13597,6 +9742,13 @@ snapshots:
normalize-path: 3.0.0
picomatch: 2.3.1
+ aproba@2.0.0: {}
+
+ are-we-there-yet@2.0.0:
+ dependencies:
+ delegates: 1.0.0
+ readable-stream: 3.6.2
+
arg@4.1.3: {}
arg@5.0.2: {}
@@ -13607,22 +9759,23 @@ snapshots:
argparse@2.0.1: {}
- array-buffer-byte-length@1.0.0:
+ array-buffer-byte-length@1.0.1:
dependencies:
- call-bind: 1.0.2
- is-array-buffer: 3.0.2
+ call-bind: 1.0.7
+ is-array-buffer: 3.0.4
array-union@2.1.0: {}
- arraybuffer.prototype.slice@1.0.2:
+ arraybuffer.prototype.slice@1.0.3:
dependencies:
- array-buffer-byte-length: 1.0.0
- call-bind: 1.0.2
+ array-buffer-byte-length: 1.0.1
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.2
- get-intrinsic: 1.2.1
- is-array-buffer: 3.0.2
- is-shared-array-buffer: 1.0.2
+ es-abstract: 1.23.3
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
+ is-array-buffer: 3.0.4
+ is-shared-array-buffer: 1.0.3
arrify@1.0.1: {}
@@ -13632,6 +9785,12 @@ snapshots:
astral-regex@2.0.0: {}
+ async-listen@3.0.0: {}
+
+ async-listen@3.0.1: {}
+
+ async-sema@3.1.1: {}
+
async@1.5.2: {}
async@3.2.4: {}
@@ -13642,8 +9801,6 @@ snapshots:
atomic-sleep@1.0.0: {}
- attr-accept@2.2.2: {}
-
autoprefixer@10.4.20(postcss@8.4.41):
dependencies:
browserslist: 4.23.3
@@ -13656,6 +9813,10 @@ snapshots:
available-typed-arrays@1.0.5: {}
+ available-typed-arrays@1.0.7:
+ dependencies:
+ possible-typed-array-names: 1.0.0
+
axios@1.7.3(debug@4.3.4):
dependencies:
follow-redirects: 1.15.6(debug@4.3.4)
@@ -13664,52 +9825,46 @@ snapshots:
transitivePeerDependencies:
- debug
+ babel-plugin-macros@3.1.0:
+ dependencies:
+ '@babel/runtime': 7.24.0
+ cosmiconfig: 7.1.0
+ resolve: 1.22.6
+
babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.25.2):
dependencies:
- "@babel/compat-data": 7.25.2
- "@babel/core": 7.25.2
- "@babel/helper-define-polyfill-provider": 0.4.2(@babel/core@7.25.2)
+ '@babel/compat-data': 7.25.2
+ '@babel/core': 7.25.2
+ '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.25.2)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
babel-plugin-polyfill-corejs3@0.8.4(@babel/core@7.25.2):
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-define-polyfill-provider": 0.4.2(@babel/core@7.25.2)
+ '@babel/core': 7.25.2
+ '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.25.2)
core-js-compat: 3.33.0
transitivePeerDependencies:
- supports-color
babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.25.2):
dependencies:
- "@babel/core": 7.25.2
- "@babel/helper-define-polyfill-provider": 0.4.2(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-styled-components@2.1.4(@babel/core@7.25.2)(styled-components@5.3.11(@babel/core@7.25.2)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0))(supports-color@5.5.0):
- dependencies:
- "@babel/helper-annotate-as-pure": 7.22.5
- "@babel/helper-module-imports": 7.24.7(supports-color@5.5.0)
- "@babel/plugin-syntax-jsx": 7.23.3(@babel/core@7.25.2)
- lodash: 4.17.21
- picomatch: 2.3.1
- styled-components: 5.3.11(@babel/core@7.25.2)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0)
+ '@babel/core': 7.25.2
+ '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.25.2)
transitivePeerDependencies:
- - "@babel/core"
- supports-color
babel-plugin-styled-components@2.1.4(@babel/core@7.25.2)(styled-components@5.3.11(@babel/core@7.25.2)(react-dom@18.3.1(react@18.3.1))(react-is@18.2.0)(react@18.3.1))(supports-color@5.5.0):
dependencies:
- "@babel/helper-annotate-as-pure": 7.22.5
- "@babel/helper-module-imports": 7.24.7(supports-color@5.5.0)
- "@babel/plugin-syntax-jsx": 7.23.3(@babel/core@7.25.2)
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0)
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.25.2)
lodash: 4.17.21
picomatch: 2.3.1
styled-components: 5.3.11(@babel/core@7.25.2)(react-dom@18.3.1(react@18.3.1))(react-is@18.2.0)(react@18.3.1)
transitivePeerDependencies:
- - "@babel/core"
+ - '@babel/core'
- supports-color
balanced-match@1.0.2: {}
@@ -13728,6 +9883,10 @@ snapshots:
binary-extensions@2.2.0: {}
+ bindings@1.5.0:
+ dependencies:
+ file-uri-to-path: 1.0.0
+
blakejs@1.2.1: {}
bn.js@4.11.6: {}
@@ -13799,7 +9958,7 @@ snapshots:
base64-js: 1.5.1
ieee754: 1.2.1
- bufferutil@4.0.7:
+ bufferutil@4.0.8:
dependencies:
node-gyp-build: 4.6.1
@@ -13811,7 +9970,7 @@ snapshots:
cacheable-request@10.2.14:
dependencies:
- "@types/http-cache-semantics": 4.0.4
+ '@types/http-cache-semantics': 4.0.4
get-stream: 6.0.1
http-cache-semantics: 4.1.1
keyv: 4.5.4
@@ -13824,6 +9983,14 @@ snapshots:
function-bind: 1.1.1
get-intrinsic: 1.2.1
+ call-bind@1.0.7:
+ dependencies:
+ es-define-property: 1.0.0
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.4
+ set-function-length: 1.2.2
+
callsites@3.1.0: {}
camelcase-css@2.0.1: {}
@@ -13875,6 +10042,20 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
+ chokidar@3.6.0:
+ dependencies:
+ anymatch: 3.1.3
+ braces: 3.0.2
+ glob-parent: 5.1.2
+ is-binary-path: 2.1.0
+ is-glob: 4.0.3
+ normalize-path: 3.0.0
+ readdirp: 3.6.0
+ optionalDependencies:
+ fsevents: 2.3.3
+
+ chownr@2.0.0: {}
+
ci-info@2.0.0: {}
cipher-base@1.0.4:
@@ -13886,6 +10067,8 @@ snapshots:
dependencies:
consola: 3.2.3
+ cjs-module-lexer@1.2.3: {}
+
clean-stack@2.2.0: {}
cli-boxes@2.2.1: {}
@@ -13920,6 +10103,8 @@ snapshots:
cluster-key-slot@1.1.2: {}
+ code-block-writer@10.1.1: {}
+
color-convert@1.9.3:
dependencies:
color-name: 1.1.3
@@ -13932,6 +10117,8 @@ snapshots:
color-name@1.1.4: {}
+ color-support@1.1.3: {}
+
colorette@2.0.20: {}
combined-stream@1.0.8:
@@ -13975,6 +10162,12 @@ snapshots:
consola@3.2.3: {}
+ console-control-strings@1.1.0: {}
+
+ convert-hrtime@3.0.0: {}
+
+ convert-source-map@1.9.0: {}
+
convert-source-map@2.0.0: {}
cookie-es@1.0.0: {}
@@ -13985,6 +10178,14 @@ snapshots:
dependencies:
browserslist: 4.23.3
+ cosmiconfig@7.1.0:
+ dependencies:
+ '@types/parse-json': 4.0.2
+ import-fresh: 3.3.0
+ parse-json: 5.2.0
+ path-type: 4.0.0
+ yaml: 1.10.2
+
cosmiconfig@8.3.6(typescript@5.5.4):
dependencies:
import-fresh: 3.3.0
@@ -14041,6 +10242,11 @@ snapshots:
css-color-keywords@1.0.0: {}
+ css-selector-tokenizer@0.8.0:
+ dependencies:
+ cssesc: 3.0.0
+ fastparse: 1.1.2
+
css-to-react-native@3.2.0:
dependencies:
camelize: 1.0.1
@@ -14051,17 +10257,50 @@ snapshots:
csstype@3.1.2: {}
+ culori@3.3.0: {}
+
d@1.0.2:
dependencies:
es5-ext: 0.10.64
type: 2.7.2
+ daisyui@4.12.10(postcss@8.4.41):
+ dependencies:
+ css-selector-tokenizer: 0.8.0
+ culori: 3.3.0
+ picocolors: 1.0.1
+ postcss-js: 4.0.1(postcss@8.4.41)
+ transitivePeerDependencies:
+ - postcss
+
+ data-uri-to-buffer@4.0.1: {}
+
+ data-view-buffer@1.0.1:
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-data-view: 1.0.1
+
+ data-view-byte-length@1.0.1:
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-data-view: 1.0.1
+
+ data-view-byte-offset@1.0.0:
+ dependencies:
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-data-view: 1.0.1
+
date-fns@2.30.0:
dependencies:
- "@babel/runtime": 7.24.0
+ '@babel/runtime': 7.24.0
dateformat@4.6.3: {}
+ dayjs@1.11.13: {}
+
death@1.1.0: {}
debug@2.6.9:
@@ -14102,22 +10341,24 @@ snapshots:
defer-to-connect@2.0.1: {}
- define-data-property@1.1.0:
+ define-data-property@1.1.4:
dependencies:
- get-intrinsic: 1.2.1
+ es-define-property: 1.0.0
+ es-errors: 1.3.0
gopd: 1.0.1
- has-property-descriptors: 1.0.0
define-properties@1.2.1:
dependencies:
- define-data-property: 1.1.0
- has-property-descriptors: 1.0.0
+ define-data-property: 1.1.4
+ has-property-descriptors: 1.0.2
object-keys: 1.1.1
defu@6.1.4: {}
delayed-stream@1.0.0: {}
+ delegates@1.0.0: {}
+
denque@2.1.0: {}
depd@2.0.0: {}
@@ -14130,6 +10371,8 @@ snapshots:
detect-libc@1.0.3: {}
+ detect-libc@2.0.3: {}
+
didyoumean@1.2.2: {}
diff@3.5.0: {}
@@ -14150,10 +10393,18 @@ snapshots:
dlv@1.1.3: {}
- dot-case@3.0.4:
+ dns-packet@5.6.1:
dependencies:
- no-case: 3.0.4
- tslib: 2.6.2
+ '@leichtgewicht/ip-codec': 2.0.5
+
+ dom-helpers@5.2.1:
+ dependencies:
+ '@babel/runtime': 7.24.0
+ csstype: 3.1.2
+
+ dotenv-expand@11.0.6:
+ dependencies:
+ dotenv: 16.4.5
dotenv@16.4.5: {}
@@ -14164,6 +10415,18 @@ snapshots:
readable-stream: 3.6.2
stream-shift: 1.0.3
+ edge-runtime@2.5.9:
+ dependencies:
+ '@edge-runtime/format': 2.2.1
+ '@edge-runtime/ponyfill': 2.4.2
+ '@edge-runtime/vm': 3.2.0
+ async-listen: 3.0.1
+ mri: 1.2.0
+ picocolors: 1.0.0
+ pretty-ms: 7.0.1
+ signal-exit: 4.0.2
+ time-span: 4.0.0
+
ejs@3.1.9:
dependencies:
jake: 10.8.7
@@ -14197,8 +10460,6 @@ snapshots:
ansi-colors: 4.1.3
strip-ansi: 6.0.1
- entities@4.5.0: {}
-
env-paths@2.2.1: {}
envfile@6.18.0: {}
@@ -14226,53 +10487,72 @@ snapshots:
dependencies:
is-arrayish: 0.2.1
- es-abstract@1.22.2:
- dependencies:
- array-buffer-byte-length: 1.0.0
- arraybuffer.prototype.slice: 1.0.2
- available-typed-arrays: 1.0.5
- call-bind: 1.0.2
- es-set-tostringtag: 2.0.1
+ es-abstract@1.23.3:
+ dependencies:
+ array-buffer-byte-length: 1.0.1
+ arraybuffer.prototype.slice: 1.0.3
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.7
+ data-view-buffer: 1.0.1
+ data-view-byte-length: 1.0.1
+ data-view-byte-offset: 1.0.0
+ es-define-property: 1.0.0
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ es-set-tostringtag: 2.0.3
es-to-primitive: 1.2.1
function.prototype.name: 1.1.6
- get-intrinsic: 1.2.1
- get-symbol-description: 1.0.0
+ get-intrinsic: 1.2.4
+ get-symbol-description: 1.0.2
globalthis: 1.0.3
gopd: 1.0.1
- has: 1.0.3
- has-property-descriptors: 1.0.0
- has-proto: 1.0.1
+ has-property-descriptors: 1.0.2
+ has-proto: 1.0.3
has-symbols: 1.0.3
- internal-slot: 1.0.5
- is-array-buffer: 3.0.2
+ hasown: 2.0.2
+ internal-slot: 1.0.7
+ is-array-buffer: 3.0.4
is-callable: 1.2.7
- is-negative-zero: 2.0.2
+ is-data-view: 1.0.1
+ is-negative-zero: 2.0.3
is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
+ is-shared-array-buffer: 1.0.3
is-string: 1.0.7
- is-typed-array: 1.1.12
+ is-typed-array: 1.1.13
is-weakref: 1.0.2
- object-inspect: 1.12.3
+ object-inspect: 1.13.2
object-keys: 1.1.1
- object.assign: 4.1.4
- regexp.prototype.flags: 1.5.1
- safe-array-concat: 1.0.1
- safe-regex-test: 1.0.0
- string.prototype.trim: 1.2.8
- string.prototype.trimend: 1.0.7
- string.prototype.trimstart: 1.0.7
- typed-array-buffer: 1.0.0
- typed-array-byte-length: 1.0.0
- typed-array-byte-offset: 1.0.0
- typed-array-length: 1.0.4
+ object.assign: 4.1.5
+ regexp.prototype.flags: 1.5.2
+ safe-array-concat: 1.1.2
+ safe-regex-test: 1.0.3
+ string.prototype.trim: 1.2.9
+ string.prototype.trimend: 1.0.8
+ string.prototype.trimstart: 1.0.8
+ typed-array-buffer: 1.0.2
+ typed-array-byte-length: 1.0.1
+ typed-array-byte-offset: 1.0.2
+ typed-array-length: 1.0.6
unbox-primitive: 1.0.2
- which-typed-array: 1.1.11
+ which-typed-array: 1.1.15
- es-set-tostringtag@2.0.1:
+ es-define-property@1.0.0:
dependencies:
- get-intrinsic: 1.2.1
- has: 1.0.3
- has-tostringtag: 1.0.0
+ get-intrinsic: 1.2.4
+
+ es-errors@1.3.0: {}
+
+ es-module-lexer@1.4.1: {}
+
+ es-object-atoms@1.0.0:
+ dependencies:
+ es-errors: 1.3.0
+
+ es-set-tostringtag@2.0.3:
+ dependencies:
+ get-intrinsic: 1.2.4
+ has-tostringtag: 1.0.2
+ hasown: 2.0.2
es-to-primitive@1.2.1:
dependencies:
@@ -14300,31 +10580,114 @@ snapshots:
d: 1.0.2
ext: 1.7.0
+ esbuild-android-64@0.14.47:
+ optional: true
+
+ esbuild-android-arm64@0.14.47:
+ optional: true
+
+ esbuild-darwin-64@0.14.47:
+ optional: true
+
+ esbuild-darwin-arm64@0.14.47:
+ optional: true
+
+ esbuild-freebsd-64@0.14.47:
+ optional: true
+
+ esbuild-freebsd-arm64@0.14.47:
+ optional: true
+
+ esbuild-linux-32@0.14.47:
+ optional: true
+
+ esbuild-linux-64@0.14.47:
+ optional: true
+
+ esbuild-linux-arm64@0.14.47:
+ optional: true
+
+ esbuild-linux-arm@0.14.47:
+ optional: true
+
+ esbuild-linux-mips64le@0.14.47:
+ optional: true
+
+ esbuild-linux-ppc64le@0.14.47:
+ optional: true
+
+ esbuild-linux-riscv64@0.14.47:
+ optional: true
+
+ esbuild-linux-s390x@0.14.47:
+ optional: true
+
+ esbuild-netbsd-64@0.14.47:
+ optional: true
+
+ esbuild-openbsd-64@0.14.47:
+ optional: true
+
+ esbuild-sunos-64@0.14.47:
+ optional: true
+
+ esbuild-windows-32@0.14.47:
+ optional: true
+
+ esbuild-windows-64@0.14.47:
+ optional: true
+
+ esbuild-windows-arm64@0.14.47:
+ optional: true
+
+ esbuild@0.14.47:
+ optionalDependencies:
+ esbuild-android-64: 0.14.47
+ esbuild-android-arm64: 0.14.47
+ esbuild-darwin-64: 0.14.47
+ esbuild-darwin-arm64: 0.14.47
+ esbuild-freebsd-64: 0.14.47
+ esbuild-freebsd-arm64: 0.14.47
+ esbuild-linux-32: 0.14.47
+ esbuild-linux-64: 0.14.47
+ esbuild-linux-arm: 0.14.47
+ esbuild-linux-arm64: 0.14.47
+ esbuild-linux-mips64le: 0.14.47
+ esbuild-linux-ppc64le: 0.14.47
+ esbuild-linux-riscv64: 0.14.47
+ esbuild-linux-s390x: 0.14.47
+ esbuild-netbsd-64: 0.14.47
+ esbuild-openbsd-64: 0.14.47
+ esbuild-sunos-64: 0.14.47
+ esbuild-windows-32: 0.14.47
+ esbuild-windows-64: 0.14.47
+ esbuild-windows-arm64: 0.14.47
+
esbuild@0.21.5:
optionalDependencies:
- "@esbuild/aix-ppc64": 0.21.5
- "@esbuild/android-arm": 0.21.5
- "@esbuild/android-arm64": 0.21.5
- "@esbuild/android-x64": 0.21.5
- "@esbuild/darwin-arm64": 0.21.5
- "@esbuild/darwin-x64": 0.21.5
- "@esbuild/freebsd-arm64": 0.21.5
- "@esbuild/freebsd-x64": 0.21.5
- "@esbuild/linux-arm": 0.21.5
- "@esbuild/linux-arm64": 0.21.5
- "@esbuild/linux-ia32": 0.21.5
- "@esbuild/linux-loong64": 0.21.5
- "@esbuild/linux-mips64el": 0.21.5
- "@esbuild/linux-ppc64": 0.21.5
- "@esbuild/linux-riscv64": 0.21.5
- "@esbuild/linux-s390x": 0.21.5
- "@esbuild/linux-x64": 0.21.5
- "@esbuild/netbsd-x64": 0.21.5
- "@esbuild/openbsd-x64": 0.21.5
- "@esbuild/sunos-x64": 0.21.5
- "@esbuild/win32-arm64": 0.21.5
- "@esbuild/win32-ia32": 0.21.5
- "@esbuild/win32-x64": 0.21.5
+ '@esbuild/aix-ppc64': 0.21.5
+ '@esbuild/android-arm': 0.21.5
+ '@esbuild/android-arm64': 0.21.5
+ '@esbuild/android-x64': 0.21.5
+ '@esbuild/darwin-arm64': 0.21.5
+ '@esbuild/darwin-x64': 0.21.5
+ '@esbuild/freebsd-arm64': 0.21.5
+ '@esbuild/freebsd-x64': 0.21.5
+ '@esbuild/linux-arm': 0.21.5
+ '@esbuild/linux-arm64': 0.21.5
+ '@esbuild/linux-ia32': 0.21.5
+ '@esbuild/linux-loong64': 0.21.5
+ '@esbuild/linux-mips64el': 0.21.5
+ '@esbuild/linux-ppc64': 0.21.5
+ '@esbuild/linux-riscv64': 0.21.5
+ '@esbuild/linux-s390x': 0.21.5
+ '@esbuild/linux-x64': 0.21.5
+ '@esbuild/netbsd-x64': 0.21.5
+ '@esbuild/openbsd-x64': 0.21.5
+ '@esbuild/sunos-x64': 0.21.5
+ '@esbuild/win32-arm64': 0.21.5
+ '@esbuild/win32-ia32': 0.21.5
+ '@esbuild/win32-x64': 0.21.5
escalade@3.1.2: {}
@@ -14341,10 +10704,6 @@ snapshots:
optionalDependencies:
source-map: 0.2.0
- eslint-plugin-react-hooks@4.6.0(eslint@9.9.0(jiti@1.21.0)):
- dependencies:
- eslint: 9.9.0(jiti@1.21.0)
-
eslint-plugin-react-hooks@5.1.0-rc-fb9a90fa48-20240614(eslint@9.9.0(jiti@1.21.0)):
dependencies:
eslint: 9.9.0(jiti@1.21.0)
@@ -14364,14 +10723,14 @@ snapshots:
eslint@9.9.0(jiti@1.21.0):
dependencies:
- "@eslint-community/eslint-utils": 4.4.0(eslint@9.9.0(jiti@1.21.0))
- "@eslint-community/regexpp": 4.11.0
- "@eslint/config-array": 0.17.1
- "@eslint/eslintrc": 3.1.0
- "@eslint/js": 9.9.0
- "@humanwhocodes/module-importer": 1.0.1
- "@humanwhocodes/retry": 0.3.0
- "@nodelib/fs.walk": 1.2.8
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.9.0(jiti@1.21.0))
+ '@eslint-community/regexpp': 4.11.0
+ '@eslint/config-array': 0.17.1
+ '@eslint/eslintrc': 3.1.0
+ '@eslint/js': 9.9.0
+ '@humanwhocodes/module-importer': 1.0.1
+ '@humanwhocodes/retry': 0.3.0
+ '@nodelib/fs.walk': 1.2.8
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
@@ -14438,14 +10797,16 @@ snapshots:
esutils@2.0.3: {}
+ etag@1.8.1: {}
+
ethereum-bloom-filters@1.0.10:
dependencies:
js-sha3: 0.8.0
ethereum-cryptography@0.1.3:
dependencies:
- "@types/pbkdf2": 3.1.0
- "@types/secp256k1": 4.0.4
+ '@types/pbkdf2': 3.1.0
+ '@types/secp256k1': 4.0.4
blakejs: 1.2.1
browserify-aes: 1.2.0
bs58check: 2.1.2
@@ -14462,17 +10823,17 @@ snapshots:
ethereum-cryptography@1.2.0:
dependencies:
- "@noble/hashes": 1.2.0
- "@noble/secp256k1": 1.7.1
- "@scure/bip32": 1.1.5
- "@scure/bip39": 1.1.1
+ '@noble/hashes': 1.2.0
+ '@noble/secp256k1': 1.7.1
+ '@scure/bip32': 1.1.5
+ '@scure/bip39': 1.1.1
ethereum-cryptography@2.1.2:
dependencies:
- "@noble/curves": 1.1.0
- "@noble/hashes": 1.3.1
- "@scure/bip32": 1.3.1
- "@scure/bip39": 1.2.1
+ '@noble/curves': 1.1.0
+ '@noble/hashes': 1.3.1
+ '@scure/bip32': 1.3.1
+ '@scure/bip39': 1.2.1
ethereumjs-abi@0.6.8:
dependencies:
@@ -14481,7 +10842,7 @@ snapshots:
ethereumjs-util@6.2.1:
dependencies:
- "@types/bn.js": 4.11.6
+ '@types/bn.js': 4.11.6
bn.js: 4.12.0
create-hash: 1.2.0
elliptic: 6.5.4
@@ -14489,64 +10850,64 @@ snapshots:
ethjs-util: 0.1.6
rlp: 2.2.7
- ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@5.0.10):
- dependencies:
- "@ethersproject/abi": 5.7.0
- "@ethersproject/abstract-provider": 5.7.0
- "@ethersproject/abstract-signer": 5.7.0
- "@ethersproject/address": 5.7.0
- "@ethersproject/base64": 5.7.0
- "@ethersproject/basex": 5.7.0
- "@ethersproject/bignumber": 5.7.0
- "@ethersproject/bytes": 5.7.0
- "@ethersproject/constants": 5.7.0
- "@ethersproject/contracts": 5.7.0
- "@ethersproject/hash": 5.7.0
- "@ethersproject/hdnode": 5.7.0
- "@ethersproject/json-wallets": 5.7.0
- "@ethersproject/keccak256": 5.7.0
- "@ethersproject/logger": 5.7.0
- "@ethersproject/networks": 5.7.1
- "@ethersproject/pbkdf2": 5.7.0
- "@ethersproject/properties": 5.7.0
- "@ethersproject/providers": 5.7.2(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- "@ethersproject/random": 5.7.0
- "@ethersproject/rlp": 5.7.0
- "@ethersproject/sha2": 5.7.0
- "@ethersproject/signing-key": 5.7.0
- "@ethersproject/solidity": 5.7.0
- "@ethersproject/strings": 5.7.0
- "@ethersproject/transactions": 5.7.0
- "@ethersproject/units": 5.7.0
- "@ethersproject/wallet": 5.7.0
- "@ethersproject/web": 5.7.1
- "@ethersproject/wordlists": 5.7.0
+ ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10):
+ dependencies:
+ '@ethersproject/abi': 5.7.0
+ '@ethersproject/abstract-provider': 5.7.0
+ '@ethersproject/abstract-signer': 5.7.0
+ '@ethersproject/address': 5.7.0
+ '@ethersproject/base64': 5.7.0
+ '@ethersproject/basex': 5.7.0
+ '@ethersproject/bignumber': 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/constants': 5.7.0
+ '@ethersproject/contracts': 5.7.0
+ '@ethersproject/hash': 5.7.0
+ '@ethersproject/hdnode': 5.7.0
+ '@ethersproject/json-wallets': 5.7.0
+ '@ethersproject/keccak256': 5.7.0
+ '@ethersproject/logger': 5.7.0
+ '@ethersproject/networks': 5.7.1
+ '@ethersproject/pbkdf2': 5.7.0
+ '@ethersproject/properties': 5.7.0
+ '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@ethersproject/random': 5.7.0
+ '@ethersproject/rlp': 5.7.0
+ '@ethersproject/sha2': 5.7.0
+ '@ethersproject/signing-key': 5.7.0
+ '@ethersproject/solidity': 5.7.0
+ '@ethersproject/strings': 5.7.0
+ '@ethersproject/transactions': 5.7.0
+ '@ethersproject/units': 5.7.0
+ '@ethersproject/wallet': 5.7.0
+ '@ethersproject/web': 5.7.1
+ '@ethersproject/wordlists': 5.7.0
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- ethers@6.13.2(bufferutil@4.0.7)(utf-8-validate@5.0.10):
+ ethers@6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10):
dependencies:
- "@adraffy/ens-normalize": 1.10.1
- "@noble/curves": 1.2.0
- "@noble/hashes": 1.3.2
- "@types/node": 18.15.13
+ '@adraffy/ens-normalize': 1.10.1
+ '@noble/curves': 1.2.0
+ '@noble/hashes': 1.3.2
+ '@types/node': 18.15.13
aes-js: 4.0.0-beta.5
tslib: 2.4.0
- ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- ethers@6.8.0(bufferutil@4.0.7)(utf-8-validate@5.0.10):
+ ethers@6.8.0(bufferutil@4.0.8)(utf-8-validate@5.0.10):
dependencies:
- "@adraffy/ens-normalize": 1.10.0
- "@noble/curves": 1.2.0
- "@noble/hashes": 1.3.2
- "@types/node": 18.15.13
+ '@adraffy/ens-normalize': 1.10.0
+ '@noble/curves': 1.2.0
+ '@noble/hashes': 1.3.2
+ '@types/node': 18.15.13
aes-js: 4.0.0-beta.5
tslib: 2.4.0
- ws: 8.5.0(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ ws: 8.5.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- utf-8-validate
@@ -14603,8 +10964,8 @@ snapshots:
fast-glob@3.3.2:
dependencies:
- "@nodelib/fs.stat": 2.0.5
- "@nodelib/fs.walk": 1.2.8
+ '@nodelib/fs.stat': 2.0.5
+ '@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
micromatch: 4.0.5
@@ -14619,6 +10980,10 @@ snapshots:
fast-safe-stringify@2.1.1: {}
+ fast-sha256@1.3.0: {}
+
+ fastparse@1.1.2: {}
+
fastq@1.15.0:
dependencies:
reusify: 1.0.4
@@ -14627,15 +10992,18 @@ snapshots:
optionalDependencies:
picomatch: 4.0.2
+ fetch-blob@3.2.0:
+ dependencies:
+ node-domexception: 1.0.0
+ web-streams-polyfill: 3.3.3
+
fetch-retry@5.0.6: {}
file-entry-cache@8.0.0:
dependencies:
flat-cache: 4.0.1
- file-selector@0.6.0:
- dependencies:
- tslib: 2.6.2
+ file-uri-to-path@1.0.0: {}
filelist@1.0.4:
dependencies:
@@ -14647,6 +11015,8 @@ snapshots:
filter-obj@1.1.0: {}
+ find-root@1.1.0: {}
+
find-up@2.1.0:
dependencies:
locate-path: 2.0.0
@@ -14670,10 +11040,6 @@ snapshots:
flatted@3.2.9: {}
- follow-redirects@1.15.5(debug@4.3.4):
- optionalDependencies:
- debug: 4.3.4(supports-color@5.5.0)
-
follow-redirects@1.15.6(debug@4.3.4):
optionalDependencies:
debug: 4.3.4(supports-color@5.5.0)
@@ -14690,6 +11056,10 @@ snapshots:
combined-stream: 1.0.8
mime-types: 2.1.35
+ formdata-polyfill@4.0.10:
+ dependencies:
+ fetch-blob: 3.2.0
+
fp-ts@1.19.3: {}
fraction.js@4.3.7: {}
@@ -14721,6 +11091,10 @@ snapshots:
jsonfile: 6.1.0
universalify: 2.0.0
+ fs-minipass@2.1.0:
+ dependencies:
+ minipass: 3.3.6
+
fs.realpath@1.0.0: {}
fsevents@2.3.3:
@@ -14728,15 +11102,29 @@ snapshots:
function-bind@1.1.1: {}
+ function-bind@1.1.2: {}
+
function.prototype.name@1.1.6:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.2
+ es-abstract: 1.23.3
functions-have-names: 1.2.3
functions-have-names@1.2.3: {}
+ gauge@3.0.2:
+ dependencies:
+ aproba: 2.0.0
+ color-support: 1.1.3
+ console-control-strings: 1.1.0
+ has-unicode: 2.0.1
+ object-assign: 4.1.1
+ signal-exit: 3.0.7
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ wide-align: 1.1.5
+
gensync@1.0.0-beta.2: {}
get-caller-file@2.0.5: {}
@@ -14745,11 +11133,19 @@ snapshots:
get-intrinsic@1.2.1:
dependencies:
- function-bind: 1.1.1
+ function-bind: 1.1.2
has: 1.0.3
has-proto: 1.0.1
has-symbols: 1.0.3
+ get-intrinsic@1.2.4:
+ dependencies:
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ has-proto: 1.0.3
+ has-symbols: 1.0.3
+ hasown: 2.0.2
+
get-own-enumerable-property-symbols@3.0.2: {}
get-port-please@3.1.2: {}
@@ -14758,10 +11154,11 @@ snapshots:
get-stream@8.0.1: {}
- get-symbol-description@1.0.0:
+ get-symbol-description@1.0.2:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.4
ghost-testrpc@0.0.2:
dependencies:
@@ -14841,7 +11238,7 @@ snapshots:
globby@10.0.2:
dependencies:
- "@types/glob": 7.2.0
+ '@types/glob': 7.2.0
array-union: 2.1.0
dir-glob: 3.0.1
fast-glob: 3.3.2
@@ -14869,8 +11266,8 @@ snapshots:
got@12.6.1:
dependencies:
- "@sindresorhus/is": 5.6.0
- "@szmarczak/http-timer": 5.0.1
+ '@sindresorhus/is': 5.6.0
+ '@szmarczak/http-timer': 5.0.1
cacheable-lookup: 7.0.0
cacheable-request: 10.2.14
decompress-response: 6.0.0
@@ -14881,6 +11278,18 @@ snapshots:
p-cancelable: 3.0.0
responselike: 3.0.0
+ gql.tada@1.8.6(graphql@16.9.0)(typescript@5.5.4):
+ dependencies:
+ '@0no-co/graphql.web': 1.0.8(graphql@16.9.0)
+ '@0no-co/graphqlsp': 1.12.13(graphql@16.9.0)(typescript@5.5.4)
+ '@gql.tada/cli-utils': 1.6.1(@0no-co/graphqlsp@1.12.13(graphql@16.9.0)(typescript@5.5.4))(graphql@16.9.0)(typescript@5.5.4)
+ '@gql.tada/internal': 1.0.7(graphql@16.9.0)(typescript@5.5.4)
+ typescript: 5.5.4
+ transitivePeerDependencies:
+ - '@gql.tada/svelte-support'
+ - '@gql.tada/vue-support'
+ - graphql
+
graceful-fs@4.2.10: {}
graceful-fs@4.2.11: {}
@@ -14913,24 +11322,24 @@ snapshots:
optionalDependencies:
uglify-js: 3.17.4
- hardhat@2.22.1(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10):
- dependencies:
- "@ethersproject/abi": 5.7.0
- "@metamask/eth-sig-util": 4.0.1
- "@nomicfoundation/edr": 0.3.8
- "@nomicfoundation/ethereumjs-common": 4.0.4
- "@nomicfoundation/ethereumjs-tx": 5.0.4
- "@nomicfoundation/ethereumjs-util": 9.0.4
- "@nomicfoundation/solidity-analyzer": 0.1.1
- "@sentry/node": 5.30.0
- "@types/bn.js": 5.1.2
- "@types/lru-cache": 5.1.1
+ hardhat@2.22.1(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.5.1)(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10):
+ dependencies:
+ '@ethersproject/abi': 5.7.0
+ '@metamask/eth-sig-util': 4.0.1
+ '@nomicfoundation/edr': 0.3.8
+ '@nomicfoundation/ethereumjs-common': 4.0.4
+ '@nomicfoundation/ethereumjs-tx': 5.0.4
+ '@nomicfoundation/ethereumjs-util': 9.0.4
+ '@nomicfoundation/solidity-analyzer': 0.1.1
+ '@sentry/node': 5.30.0
+ '@types/bn.js': 5.1.2
+ '@types/lru-cache': 5.1.1
adm-zip: 0.4.16
aggregate-error: 3.1.0
ansi-escapes: 4.3.2
boxen: 5.1.2
chalk: 2.4.2
- chokidar: 3.5.3
+ chokidar: 3.6.0
ci-info: 2.0.0
debug: 4.3.4(supports-color@5.5.0)
enquirer: 2.4.1
@@ -14957,9 +11366,9 @@ snapshots:
tsort: 0.0.1
undici: 5.25.4
uuid: 8.3.2
- ws: 7.5.9(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10)
optionalDependencies:
- ts-node: 10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.1.0)(typescript@5.5.4)
+ ts-node: 10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.5.1)(typescript@5.5.4)
typescript: 5.5.4
transitivePeerDependencies:
- bufferutil
@@ -14967,24 +11376,24 @@ snapshots:
- supports-color
- utf-8-validate
- hardhat@2.22.4(bufferutil@4.0.7)(ts-node@10.9.2(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10):
- dependencies:
- "@ethersproject/abi": 5.7.0
- "@metamask/eth-sig-util": 4.0.1
- "@nomicfoundation/edr": 0.3.8
- "@nomicfoundation/ethereumjs-common": 4.0.4
- "@nomicfoundation/ethereumjs-tx": 5.0.4
- "@nomicfoundation/ethereumjs-util": 9.0.4
- "@nomicfoundation/solidity-analyzer": 0.1.1
- "@sentry/node": 5.30.0
- "@types/bn.js": 5.1.2
- "@types/lru-cache": 5.1.1
+ hardhat@2.22.4(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.5.1)(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10):
+ dependencies:
+ '@ethersproject/abi': 5.7.0
+ '@metamask/eth-sig-util': 4.0.1
+ '@nomicfoundation/edr': 0.3.8
+ '@nomicfoundation/ethereumjs-common': 4.0.4
+ '@nomicfoundation/ethereumjs-tx': 5.0.4
+ '@nomicfoundation/ethereumjs-util': 9.0.4
+ '@nomicfoundation/solidity-analyzer': 0.1.1
+ '@sentry/node': 5.30.0
+ '@types/bn.js': 5.1.2
+ '@types/lru-cache': 5.1.1
adm-zip: 0.4.16
aggregate-error: 3.1.0
ansi-escapes: 4.3.2
boxen: 5.1.2
chalk: 2.4.2
- chokidar: 3.5.3
+ chokidar: 3.6.0
ci-info: 2.0.0
debug: 4.3.4(supports-color@5.5.0)
enquirer: 2.4.1
@@ -15011,9 +11420,9 @@ snapshots:
tsort: 0.0.1
undici: 5.25.4
uuid: 8.3.2
- ws: 7.5.9(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10)
optionalDependencies:
- ts-node: 10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.1.0)(typescript@5.5.4)
+ ts-node: 10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.5.1)(typescript@5.5.4)
typescript: 5.5.4
transitivePeerDependencies:
- bufferutil
@@ -15029,18 +11438,26 @@ snapshots:
has-flag@4.0.0: {}
- has-property-descriptors@1.0.0:
+ has-property-descriptors@1.0.2:
dependencies:
- get-intrinsic: 1.2.1
+ es-define-property: 1.0.0
has-proto@1.0.1: {}
+ has-proto@1.0.3: {}
+
has-symbols@1.0.3: {}
has-tostringtag@1.0.0:
dependencies:
has-symbols: 1.0.3
+ has-tostringtag@1.0.2:
+ dependencies:
+ has-symbols: 1.0.3
+
+ has-unicode@2.0.1: {}
+
has@1.0.3:
dependencies:
function-bind: 1.1.1
@@ -15056,6 +11473,12 @@ snapshots:
inherits: 2.0.4
minimalistic-assert: 1.0.1
+ hashlru@2.3.0: {}
+
+ hasown@2.0.2:
+ dependencies:
+ function-bind: 1.1.2
+
he@1.2.0: {}
heap@0.2.7: {}
@@ -15140,21 +11563,28 @@ snapshots:
ini@1.3.8: {}
- internal-slot@1.0.5:
+ internal-slot@1.0.7:
dependencies:
- get-intrinsic: 1.2.1
- has: 1.0.3
+ es-errors: 1.3.0
+ hasown: 2.0.2
side-channel: 1.0.4
interpret@1.4.0: {}
+ intl-messageformat@10.5.14:
+ dependencies:
+ '@formatjs/ecma402-abstract': 2.0.0
+ '@formatjs/fast-memoize': 2.2.0
+ '@formatjs/icu-messageformat-parser': 2.7.8
+ tslib: 2.6.2
+
io-ts@1.10.4:
dependencies:
fp-ts: 1.19.3
ioredis@5.3.2:
dependencies:
- "@ioredis/commands": 1.2.0
+ '@ioredis/commands': 1.2.0
cluster-key-slot: 1.1.2
debug: 4.3.4(supports-color@5.5.0)
denque: 2.1.0
@@ -15173,11 +11603,10 @@ snapshots:
call-bind: 1.0.2
has-tostringtag: 1.0.0
- is-array-buffer@3.0.2:
+ is-array-buffer@3.0.4:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
- is-typed-array: 1.1.12
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
is-arrayish@0.2.1: {}
@@ -15191,8 +11620,8 @@ snapshots:
is-boolean-object@1.1.2:
dependencies:
- call-bind: 1.0.2
- has-tostringtag: 1.0.0
+ call-bind: 1.0.7
+ has-tostringtag: 1.0.2
is-buffer@1.1.6: {}
@@ -15202,9 +11631,13 @@ snapshots:
dependencies:
has: 1.0.3
+ is-data-view@1.0.1:
+ dependencies:
+ is-typed-array: 1.1.13
+
is-date-object@1.0.5:
dependencies:
- has-tostringtag: 1.0.0
+ has-tostringtag: 1.0.2
is-docker@3.0.0: {}
@@ -15226,13 +11659,21 @@ snapshots:
dependencies:
is-docker: 3.0.0
+ is-ipfs@8.0.4:
+ dependencies:
+ '@multiformats/mafmt': 12.1.6
+ '@multiformats/multiaddr': 12.3.0
+ iso-url: 1.2.1
+ multiformats: 13.2.2
+ uint8arrays: 5.1.0
+
is-module@1.0.0: {}
- is-negative-zero@2.0.2: {}
+ is-negative-zero@2.0.3: {}
is-number-object@1.0.7:
dependencies:
- has-tostringtag: 1.0.0
+ has-tostringtag: 1.0.2
is-number@7.0.0: {}
@@ -15244,14 +11685,14 @@ snapshots:
is-regex@1.1.4:
dependencies:
- call-bind: 1.0.2
- has-tostringtag: 1.0.0
+ call-bind: 1.0.7
+ has-tostringtag: 1.0.2
is-regexp@1.0.0: {}
- is-shared-array-buffer@1.0.2:
+ is-shared-array-buffer@1.0.3:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
is-stream@2.0.1: {}
@@ -15259,7 +11700,7 @@ snapshots:
is-string@1.0.7:
dependencies:
- has-tostringtag: 1.0.0
+ has-tostringtag: 1.0.2
is-symbol@1.0.4:
dependencies:
@@ -15269,13 +11710,17 @@ snapshots:
dependencies:
which-typed-array: 1.1.11
+ is-typed-array@1.1.13:
+ dependencies:
+ which-typed-array: 1.1.15
+
is-typedarray@1.0.0: {}
is-unicode-supported@0.1.0: {}
is-weakref@1.0.2:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
is-wsl@3.1.0:
dependencies:
@@ -15289,16 +11734,17 @@ snapshots:
isexe@2.0.0: {}
- isomorphic-unfetch@3.1.0(encoding@0.1.13):
+ iso-url@1.2.1: {}
+
+ isows@1.0.4(ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)):
dependencies:
- node-fetch: 2.7.0(encoding@0.1.13)
- unfetch: 4.2.0
- transitivePeerDependencies:
- - encoding
+ ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- isows@1.0.4(ws@8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)):
+ it-pushable@3.2.3:
dependencies:
- ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ p-defer: 4.0.1
+
+ it-stream-types@2.0.1: {}
jake@10.8.7:
dependencies:
@@ -15309,7 +11755,7 @@ snapshots:
jest-worker@26.6.2:
dependencies:
- "@types/node": 22.1.0
+ '@types/node': 22.5.1
merge-stream: 2.0.0
supports-color: 7.2.0
@@ -15344,6 +11790,11 @@ snapshots:
json-parse-even-better-errors@2.3.1: {}
+ json-schema-to-ts@1.6.4:
+ dependencies:
+ '@types/json-schema': 7.0.15
+ ts-toolbelt: 6.15.5
+
json-schema-traverse@0.4.1: {}
json-schema-traverse@1.0.0: {}
@@ -15421,8 +11872,8 @@ snapshots:
listhen@1.7.2:
dependencies:
- "@parcel/watcher": 2.4.1
- "@parcel/watcher-wasm": 2.4.1
+ '@parcel/watcher': 2.4.1
+ '@parcel/watcher-wasm': 2.4.1
citty: 0.1.6
clipboardy: 4.0.0
consola: 3.2.3
@@ -15444,17 +11895,17 @@ snapshots:
lit-element@3.3.3:
dependencies:
- "@lit-labs/ssr-dom-shim": 1.2.0
- "@lit/reactive-element": 1.6.3
+ '@lit-labs/ssr-dom-shim': 1.2.0
+ '@lit/reactive-element': 1.6.3
lit-html: 2.8.0
lit-html@2.8.0:
dependencies:
- "@types/trusted-types": 2.0.4
+ '@types/trusted-types': 2.0.4
lit@2.8.0:
dependencies:
- "@lit/reactive-element": 1.6.3
+ '@lit/reactive-element': 1.6.3
lit-element: 3.3.3
lit-html: 2.8.0
@@ -15471,6 +11922,8 @@ snapshots:
dependencies:
p-locate: 5.0.0
+ lodash.castarray@4.4.0: {}
+
lodash.debounce@4.0.8: {}
lodash.defaults@4.2.0: {}
@@ -15479,6 +11932,8 @@ snapshots:
lodash.isequal@4.5.0: {}
+ lodash.isplainobject@4.0.6: {}
+
lodash.merge@4.6.2: {}
lodash.sortby@4.7.0: {}
@@ -15502,10 +11957,6 @@ snapshots:
dependencies:
get-func-name: 2.0.2
- lower-case@2.0.2:
- dependencies:
- tslib: 2.6.2
-
lowercase-keys@3.0.0: {}
lru-cache@10.2.0: {}
@@ -15520,18 +11971,14 @@ snapshots:
lru_map@0.3.3: {}
- lucide-react@0.424.0(react@18.2.0):
- dependencies:
- react: 18.2.0
-
- lucide-react@0.436.0(react@18.3.1):
- dependencies:
- react: 18.3.1
-
magic-string@0.25.9:
dependencies:
sourcemap-codec: 1.4.8
+ make-dir@3.1.0:
+ dependencies:
+ semver: 6.3.1
+
make-error@1.3.6: {}
md5.js@1.3.5:
@@ -15546,6 +11993,8 @@ snapshots:
crypt: 0.0.2
is-buffer: 1.1.6
+ memoize-one@6.0.0: {}
+
memorystream@0.3.1: {}
merge-stream@2.0.0: {}
@@ -15573,6 +12022,8 @@ snapshots:
mimic-response@4.0.0: {}
+ mini-svg-data-uri@1.4.4: {}
+
minimalistic-assert@1.0.1: {}
minimalistic-crypto-utils@1.0.1: {}
@@ -15595,6 +12046,17 @@ snapshots:
minimist@1.2.8: {}
+ minipass@3.3.6:
+ dependencies:
+ yallist: 4.0.0
+
+ minipass@5.0.0: {}
+
+ minizlib@2.1.2:
+ dependencies:
+ minipass: 3.3.6
+ yallist: 4.0.0
+
mipd@0.0.7(typescript@5.5.4):
optionalDependencies:
typescript: 5.5.4
@@ -15603,6 +12065,8 @@ snapshots:
dependencies:
minimist: 1.2.8
+ mkdirp@1.0.4: {}
+
mlly@1.6.1:
dependencies:
acorn: 8.12.1
@@ -15640,12 +12104,12 @@ snapshots:
motion@10.16.2:
dependencies:
- "@motionone/animation": 10.17.0
- "@motionone/dom": 10.17.0
- "@motionone/svelte": 10.16.4
- "@motionone/types": 10.17.0
- "@motionone/utils": 10.17.0
- "@motionone/vue": 10.16.4
+ '@motionone/animation': 10.17.0
+ '@motionone/dom': 10.17.0
+ '@motionone/svelte': 10.16.4
+ '@motionone/types': 10.17.0
+ '@motionone/utils': 10.17.0
+ '@motionone/vue': 10.16.4
mri@1.2.0: {}
@@ -15655,6 +12119,8 @@ snapshots:
ms@2.1.3: {}
+ multiformats@13.2.2: {}
+
multiformats@9.9.0: {}
mz@2.7.0:
@@ -15673,27 +12139,36 @@ snapshots:
next-tick@1.1.0: {}
- no-case@3.0.4:
- dependencies:
- lower-case: 2.0.2
- tslib: 2.6.2
-
node-addon-api@2.0.2: {}
node-addon-api@7.1.0: {}
+ node-domexception@1.0.0: {}
+
node-emoji@1.11.0:
dependencies:
lodash: 4.17.21
node-fetch-native@1.6.4: {}
+ node-fetch@2.6.9(encoding@0.1.13):
+ dependencies:
+ whatwg-url: 5.0.0
+ optionalDependencies:
+ encoding: 0.1.13
+
node-fetch@2.7.0(encoding@0.1.13):
dependencies:
whatwg-url: 5.0.0
optionalDependencies:
encoding: 0.1.13
+ node-fetch@3.3.2:
+ dependencies:
+ data-uri-to-buffer: 4.0.1
+ fetch-blob: 3.2.0
+ formdata-polyfill: 4.0.10
+
node-forge@1.3.1: {}
node-gyp-build@4.6.1: {}
@@ -15704,6 +12179,10 @@ snapshots:
dependencies:
abbrev: 1.0.9
+ nopt@5.0.0:
+ dependencies:
+ abbrev: 1.0.9
+
normalize-path@3.0.0: {}
normalize-range@0.1.2: {}
@@ -15714,6 +12193,13 @@ snapshots:
dependencies:
path-key: 4.0.0
+ npmlog@5.0.1:
+ dependencies:
+ are-we-there-yet: 2.0.0
+ console-control-strings: 1.1.0
+ gauge: 3.0.2
+ set-blocking: 2.0.0
+
number-to-bn@1.7.0:
dependencies:
bn.js: 4.11.6
@@ -15723,13 +12209,13 @@ snapshots:
object-hash@3.0.0: {}
- object-inspect@1.12.3: {}
+ object-inspect@1.13.2: {}
object-keys@1.1.1: {}
- object.assign@4.1.4:
+ object.assign@4.1.5:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.1
has-symbols: 1.0.3
object-keys: 1.1.1
@@ -15771,7 +12257,7 @@ snapshots:
optionator@0.9.3:
dependencies:
- "@aashutoshrathi/word-wrap": 1.2.6
+ '@aashutoshrathi/word-wrap': 1.2.6
deep-is: 0.1.4
fast-levenshtein: 2.0.6
levn: 0.4.1
@@ -15782,6 +12268,8 @@ snapshots:
p-cancelable@3.0.0: {}
+ p-defer@4.0.1: {}
+
p-limit@1.3.0:
dependencies:
p-try: 1.0.0
@@ -15810,6 +12298,13 @@ snapshots:
dependencies:
aggregate-error: 3.1.0
+ p-queue@8.0.1:
+ dependencies:
+ eventemitter3: 5.0.1
+ p-timeout: 6.1.2
+
+ p-timeout@6.1.2: {}
+
p-try@1.0.0: {}
p-try@2.2.0: {}
@@ -15829,11 +12324,15 @@ snapshots:
parse-json@5.2.0:
dependencies:
- "@babel/code-frame": 7.24.7
+ '@babel/code-frame': 7.24.7
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
+ parse-ms@2.1.0: {}
+
+ path-browserify@1.0.1: {}
+
path-exists@3.0.0: {}
path-exists@4.0.0: {}
@@ -15846,6 +12345,8 @@ snapshots:
path-parse@1.0.7: {}
+ path-to-regexp@6.2.1: {}
+
path-type@4.0.0: {}
pathe@1.1.2: {}
@@ -15860,13 +12361,9 @@ snapshots:
safe-buffer: 5.2.1
sha.js: 2.4.11
- permissionless@0.1.44(viem@2.19.6(bufferutil@4.0.7)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)):
- dependencies:
- viem: 2.19.6(bufferutil@4.0.7)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4)
-
- permissionless@0.1.45(viem@2.19.6(bufferutil@4.0.7)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.23.8)):
+ permissionless@0.1.45(viem@2.19.6(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.23.8)):
dependencies:
- viem: 2.19.6(bufferutil@4.0.7)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.23.8)
+ viem: 2.19.6(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.23.8)
picocolors@1.0.0: {}
@@ -15880,6 +12377,11 @@ snapshots:
pify@4.0.1: {}
+ pinata@0.4.0:
+ dependencies:
+ is-ipfs: 8.0.4
+ node-fetch: 3.3.2
+
pino-abstract-transport@0.5.0:
dependencies:
duplexify: 4.1.2
@@ -15935,6 +12437,8 @@ snapshots:
pngjs@5.0.0: {}
+ possible-typed-array-names@1.0.0: {}
+
postcss-import@15.1.0(postcss@8.4.41):
dependencies:
postcss: 8.4.41
@@ -15947,19 +12451,24 @@ snapshots:
camelcase-css: 2.0.1
postcss: 8.4.41
- postcss-load-config@4.0.1(postcss@8.4.41)(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4)):
+ postcss-load-config@4.0.1(postcss@8.4.41)(ts-node@10.9.2(@swc/core@1.7.11)(@types/node@16.18.11)(typescript@5.5.4)):
dependencies:
lilconfig: 2.1.0
yaml: 2.3.2
optionalDependencies:
postcss: 8.4.41
- ts-node: 10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.1.0)(typescript@5.5.4)
+ ts-node: 10.9.2(@swc/core@1.7.11)(@types/node@16.18.11)(typescript@5.5.4)
postcss-nested@6.0.1(postcss@8.4.41):
dependencies:
postcss: 8.4.41
postcss-selector-parser: 6.0.13
+ postcss-selector-parser@6.0.10:
+ dependencies:
+ cssesc: 3.0.0
+ util-deprecate: 1.0.2
+
postcss-selector-parser@6.0.13:
dependencies:
cssesc: 3.0.0
@@ -15975,17 +12484,13 @@ snapshots:
preact@10.19.6: {}
- preline@2.4.1:
- dependencies:
- "@popperjs/core": 2.11.8
-
prelude-ls@1.1.2: {}
prelude-ls@1.2.1: {}
prettier-plugin-solidity@1.4.0(prettier@3.3.3):
dependencies:
- "@solidity-parser/parser": 0.18.0
+ '@solidity-parser/parser': 0.18.0
prettier: 3.3.3
semver: 7.6.0
@@ -15998,10 +12503,16 @@ snapshots:
pretty-bytes@6.1.1: {}
+ pretty-ms@7.0.1:
+ dependencies:
+ parse-ms: 2.1.0
+
process-warning@1.0.0: {}
process@0.11.10: {}
+ progress-events@1.0.1: {}
+
prop-types@15.8.1:
dependencies:
loose-envify: 1.4.0
@@ -16035,6 +12546,8 @@ snapshots:
split-on-first: 1.1.0
strict-uri-encode: 2.0.0
+ querystringify@2.2.0: {}
+
queue-microtask@1.2.3: {}
quick-format-unescaped@4.0.4: {}
@@ -16061,23 +12574,15 @@ snapshots:
minimist: 1.2.8
strip-json-comments: 2.0.1
- react-device-detect@2.2.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
- dependencies:
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- ua-parser-js: 1.0.37
-
react-device-detect@2.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
ua-parser-js: 1.0.37
- react-dom@18.2.0(react@18.2.0):
+ react-device-frameset@1.3.4(react@18.3.1):
dependencies:
- loose-envify: 1.4.0
- react: 18.2.0
- scheduler: 0.23.0
+ react: 18.3.1
react-dom@18.3.1(react@18.3.1):
dependencies:
@@ -16085,29 +12590,10 @@ snapshots:
react: 18.3.1
scheduler: 0.23.2
- react-dropzone@14.2.3(react@18.2.0):
- dependencies:
- attr-accept: 2.2.2
- file-selector: 0.6.0
- prop-types: 15.8.1
- react: 18.2.0
-
- react-hook-form@7.51.0(react@18.2.0):
- dependencies:
- react: 18.2.0
-
react-hook-form@7.53.0(react@18.3.1):
dependencies:
react: 18.3.1
- react-hot-toast@2.4.1(csstype@3.1.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
- dependencies:
- goober: 2.1.13(csstype@3.1.2)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- transitivePeerDependencies:
- - csstype
-
react-hot-toast@2.4.1(csstype@3.1.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
goober: 2.1.13(csstype@3.1.2)
@@ -16116,39 +12602,70 @@ snapshots:
transitivePeerDependencies:
- csstype
+ react-intl@6.6.8(react@18.3.1)(typescript@5.5.4):
+ dependencies:
+ '@formatjs/ecma402-abstract': 2.0.0
+ '@formatjs/icu-messageformat-parser': 2.7.8
+ '@formatjs/intl': 2.10.4(typescript@5.5.4)
+ '@formatjs/intl-displaynames': 6.6.8
+ '@formatjs/intl-listformat': 7.5.7
+ '@types/hoist-non-react-statics': 3.3.5
+ '@types/react': 18.3.3
+ hoist-non-react-statics: 3.3.2
+ intl-messageformat: 10.5.14
+ react: 18.3.1
+ tslib: 2.6.2
+ optionalDependencies:
+ typescript: 5.5.4
+
react-is@16.13.1: {}
react-is@18.2.0: {}
react-refresh@0.14.2: {}
- react-router-dom@6.22.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
- dependencies:
- "@remix-run/router": 1.15.2
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-router: 6.22.2(react@18.2.0)
-
react-router-dom@6.26.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- "@remix-run/router": 1.19.1
+ '@remix-run/router': 1.19.1
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-router: 6.26.1(react@18.3.1)
- react-router@6.22.2(react@18.2.0):
+ react-router@6.26.1(react@18.3.1):
dependencies:
- "@remix-run/router": 1.15.2
- react: 18.2.0
+ '@remix-run/router': 1.19.1
+ react: 18.3.1
- react-router@6.26.1(react@18.3.1):
+ react-select@5.8.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ dependencies:
+ '@babel/runtime': 7.24.0
+ '@emotion/cache': 11.13.1
+ '@emotion/react': 11.13.3(@types/react@18.3.3)(react@18.3.1)
+ '@floating-ui/dom': 1.6.10
+ '@types/react-transition-group': 4.4.11
+ memoize-one: 6.0.0
+ prop-types: 15.8.1
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.3)(react@18.3.1)
+ transitivePeerDependencies:
+ - '@types/react'
+ - supports-color
+
+ react-tailwindcss-datepicker@1.7.2(dayjs@1.11.13)(react@18.3.1):
dependencies:
- "@remix-run/router": 1.19.1
+ dayjs: 1.11.13
react: 18.3.1
- react@18.2.0:
+ react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
+ '@babel/runtime': 7.24.0
+ dom-helpers: 5.2.1
loose-envify: 1.4.0
+ prop-types: 15.8.1
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
react@18.3.1:
dependencies:
@@ -16186,6 +12703,8 @@ snapshots:
dependencies:
minimatch: 3.1.2
+ redaxios@0.5.1: {}
+
redis-errors@1.2.0: {}
redis-parser@3.0.0:
@@ -16202,17 +12721,18 @@ snapshots:
regenerator-transform@0.15.2:
dependencies:
- "@babel/runtime": 7.24.0
+ '@babel/runtime': 7.24.0
- regexp.prototype.flags@1.5.1:
+ regexp.prototype.flags@1.5.2:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.1
- set-function-name: 2.0.1
+ es-errors: 1.3.0
+ set-function-name: 2.0.2
regexpu-core@5.3.2:
dependencies:
- "@babel/regjsgen": 0.8.0
+ '@babel/regjsgen': 0.8.0
regenerate: 1.4.2
regenerate-unicode-properties: 10.1.1
regjsparser: 0.9.1
@@ -16221,7 +12741,7 @@ snapshots:
registry-auth-token@5.0.2:
dependencies:
- "@pnpm/npm-conf": 2.2.2
+ '@pnpm/npm-conf': 2.2.2
registry-url@6.0.1:
dependencies:
@@ -16237,10 +12757,14 @@ snapshots:
require-main-filename@2.0.0: {}
+ requires-port@1.0.0: {}
+
resolve-alpn@1.2.1: {}
resolve-from@4.0.0: {}
+ resolve-from@5.0.0: {}
+
resolve@1.1.7: {}
resolve@1.17.0:
@@ -16263,6 +12787,10 @@ snapshots:
dependencies:
glob: 7.2.3
+ rimraf@3.0.2:
+ dependencies:
+ glob: 7.2.3
+
ripemd160@2.0.2:
dependencies:
hash-base: 3.1.0
@@ -16274,7 +12802,7 @@ snapshots:
rollup-plugin-terser@7.0.2(rollup@2.79.1):
dependencies:
- "@babel/code-frame": 7.24.7
+ '@babel/code-frame': 7.24.7
jest-worker: 26.6.2
rollup: 2.79.1
serialize-javascript: 4.0.0
@@ -16286,24 +12814,24 @@ snapshots:
rollup@4.20.0:
dependencies:
- "@types/estree": 1.0.5
+ '@types/estree': 1.0.5
optionalDependencies:
- "@rollup/rollup-android-arm-eabi": 4.20.0
- "@rollup/rollup-android-arm64": 4.20.0
- "@rollup/rollup-darwin-arm64": 4.20.0
- "@rollup/rollup-darwin-x64": 4.20.0
- "@rollup/rollup-linux-arm-gnueabihf": 4.20.0
- "@rollup/rollup-linux-arm-musleabihf": 4.20.0
- "@rollup/rollup-linux-arm64-gnu": 4.20.0
- "@rollup/rollup-linux-arm64-musl": 4.20.0
- "@rollup/rollup-linux-powerpc64le-gnu": 4.20.0
- "@rollup/rollup-linux-riscv64-gnu": 4.20.0
- "@rollup/rollup-linux-s390x-gnu": 4.20.0
- "@rollup/rollup-linux-x64-gnu": 4.20.0
- "@rollup/rollup-linux-x64-musl": 4.20.0
- "@rollup/rollup-win32-arm64-msvc": 4.20.0
- "@rollup/rollup-win32-ia32-msvc": 4.20.0
- "@rollup/rollup-win32-x64-msvc": 4.20.0
+ '@rollup/rollup-android-arm-eabi': 4.20.0
+ '@rollup/rollup-android-arm64': 4.20.0
+ '@rollup/rollup-darwin-arm64': 4.20.0
+ '@rollup/rollup-darwin-x64': 4.20.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.20.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.20.0
+ '@rollup/rollup-linux-arm64-gnu': 4.20.0
+ '@rollup/rollup-linux-arm64-musl': 4.20.0
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.20.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.20.0
+ '@rollup/rollup-linux-s390x-gnu': 4.20.0
+ '@rollup/rollup-linux-x64-gnu': 4.20.0
+ '@rollup/rollup-linux-x64-musl': 4.20.0
+ '@rollup/rollup-win32-arm64-msvc': 4.20.0
+ '@rollup/rollup-win32-ia32-msvc': 4.20.0
+ '@rollup/rollup-win32-x64-msvc': 4.20.0
fsevents: 2.3.3
run-parallel@1.2.0:
@@ -16314,19 +12842,19 @@ snapshots:
dependencies:
tslib: 2.6.2
- safe-array-concat@1.0.1:
+ safe-array-concat@1.1.2:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
has-symbols: 1.0.3
isarray: 2.0.5
safe-buffer@5.2.1: {}
- safe-regex-test@1.0.0:
+ safe-regex-test@1.0.3:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
+ call-bind: 1.0.7
+ es-errors: 1.3.0
is-regex: 1.1.4
safe-stable-stringify@2.4.3: {}
@@ -16350,10 +12878,6 @@ snapshots:
which: 1.3.1
wordwrap: 1.0.0
- scheduler@0.23.0:
- dependencies:
- loose-envify: 1.4.0
-
scheduler@0.23.2:
dependencies:
loose-envify: 1.4.0
@@ -16390,11 +12914,21 @@ snapshots:
set-cookie-parser@2.7.0: {}
- set-function-name@2.0.1:
+ set-function-length@1.2.2:
+ dependencies:
+ define-data-property: 1.1.4
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.4
+ gopd: 1.0.1
+ has-property-descriptors: 1.0.2
+
+ set-function-name@2.0.2:
dependencies:
- define-data-property: 1.1.0
+ define-data-property: 1.1.4
+ es-errors: 1.3.0
functions-have-names: 1.2.3
- has-property-descriptors: 1.0.0
+ has-property-descriptors: 1.0.2
setimmediate@1.0.5: {}
@@ -16423,9 +12957,13 @@ snapshots:
side-channel@1.0.4:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
- object-inspect: 1.12.3
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
+ object-inspect: 1.13.2
+
+ signal-exit@3.0.7: {}
+
+ signal-exit@4.0.2: {}
signal-exit@4.1.0: {}
@@ -16437,16 +12975,11 @@ snapshots:
astral-regex: 2.0.0
is-fullwidth-code-point: 3.0.0
- snake-case@3.0.4:
- dependencies:
- dot-case: 3.0.4
- tslib: 2.6.2
-
solc@0.7.3(debug@4.3.4):
dependencies:
command-exists: 1.2.9
commander: 3.0.2
- follow-redirects: 1.15.5(debug@4.3.4)
+ follow-redirects: 1.15.6(debug@4.3.4)
fs-extra: 0.30.0
js-sha3: 0.8.0
memorystream: 0.3.1
@@ -16458,7 +12991,7 @@ snapshots:
solhint@5.0.3(typescript@5.5.4):
dependencies:
- "@solidity-parser/parser": 0.18.0
+ '@solidity-parser/parser': 0.18.0
ajv: 6.12.6
antlr4: 4.13.1-patch-1
ast-parents: 0.0.1
@@ -16481,10 +13014,10 @@ snapshots:
transitivePeerDependencies:
- typescript
- solidity-coverage@0.8.12(hardhat@2.22.4(bufferutil@4.0.7)(ts-node@10.9.2(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10)):
+ solidity-coverage@0.8.12(hardhat@2.22.4(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.5.1)(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10)):
dependencies:
- "@ethersproject/abi": 5.7.0
- "@solidity-parser/parser": 0.18.0
+ '@ethersproject/abi': 5.7.0
+ '@solidity-parser/parser': 0.18.0
chalk: 2.4.2
death: 1.1.0
difflib: 0.2.4
@@ -16492,7 +13025,7 @@ snapshots:
ghost-testrpc: 0.0.2
global-modules: 2.0.0
globby: 10.0.2
- hardhat: 2.22.4(bufferutil@4.0.7)(ts-node@10.9.2(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10)
+ hardhat: 2.22.4(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@22.5.1)(typescript@5.5.4))(typescript@5.5.4)(utf-8-validate@5.0.10)
jsonschema: 1.4.1
lodash: 4.17.21
mocha: 10.2.0
@@ -16524,6 +13057,8 @@ snapshots:
amdefine: 1.0.1
optional: true
+ source-map@0.5.7: {}
+
source-map@0.6.1: {}
source-map@0.8.0-beta.0:
@@ -16562,33 +13097,34 @@ snapshots:
string.prototype.matchall@4.0.10:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.2
- get-intrinsic: 1.2.1
+ es-abstract: 1.23.3
+ get-intrinsic: 1.2.4
has-symbols: 1.0.3
- internal-slot: 1.0.5
- regexp.prototype.flags: 1.5.1
- set-function-name: 2.0.1
+ internal-slot: 1.0.7
+ regexp.prototype.flags: 1.5.2
+ set-function-name: 2.0.2
side-channel: 1.0.4
- string.prototype.trim@1.2.8:
+ string.prototype.trim@1.2.9:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.2
+ es-abstract: 1.23.3
+ es-object-atoms: 1.0.0
- string.prototype.trimend@1.0.7:
+ string.prototype.trimend@1.0.8:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.2
+ es-object-atoms: 1.0.0
- string.prototype.trimstart@1.0.7:
+ string.prototype.trimstart@1.0.8:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.22.2
+ es-object-atoms: 1.0.0
string_decoder@1.3.0:
dependencies:
@@ -16619,31 +13155,13 @@ snapshots:
strip-json-comments@3.1.1: {}
- styled-components@5.3.11(@babel/core@7.25.2)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0):
- dependencies:
- "@babel/helper-module-imports": 7.24.7(supports-color@5.5.0)
- "@babel/traverse": 7.25.3(supports-color@5.5.0)
- "@emotion/is-prop-valid": 1.2.2
- "@emotion/stylis": 0.8.5
- "@emotion/unitless": 0.7.5
- babel-plugin-styled-components: 2.1.4(@babel/core@7.25.2)(styled-components@5.3.11(@babel/core@7.25.2)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0))(supports-color@5.5.0)
- css-to-react-native: 3.2.0
- hoist-non-react-statics: 3.3.2
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-is: 18.2.0
- shallowequal: 1.1.0
- supports-color: 5.5.0
- transitivePeerDependencies:
- - "@babel/core"
-
styled-components@5.3.11(@babel/core@7.25.2)(react-dom@18.3.1(react@18.3.1))(react-is@18.2.0)(react@18.3.1):
dependencies:
- "@babel/helper-module-imports": 7.24.7(supports-color@5.5.0)
- "@babel/traverse": 7.25.3(supports-color@5.5.0)
- "@emotion/is-prop-valid": 1.2.2
- "@emotion/stylis": 0.8.5
- "@emotion/unitless": 0.7.5
+ '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0)
+ '@babel/traverse': 7.25.3(supports-color@5.5.0)
+ '@emotion/is-prop-valid': 1.2.2
+ '@emotion/stylis': 0.8.5
+ '@emotion/unitless': 0.7.5
babel-plugin-styled-components: 2.1.4(@babel/core@7.25.2)(styled-components@5.3.11(@babel/core@7.25.2)(react-dom@18.3.1(react@18.3.1))(react-is@18.2.0)(react@18.3.1))(supports-color@5.5.0)
css-to-react-native: 3.2.0
hoist-non-react-statics: 3.3.2
@@ -16653,11 +13171,13 @@ snapshots:
shallowequal: 1.1.0
supports-color: 5.5.0
transitivePeerDependencies:
- - "@babel/core"
+ - '@babel/core'
+
+ stylis@4.2.0: {}
sucrase@3.34.0:
dependencies:
- "@jridgewell/gen-mapping": 0.3.5
+ '@jridgewell/gen-mapping': 0.3.5
commander: 4.1.1
glob: 7.1.6
lines-and-columns: 1.2.4
@@ -16685,7 +13205,22 @@ snapshots:
supports-preserve-symlinks-flag@1.0.0: {}
- svg-parser@2.0.4: {}
+ svix-fetch@3.0.0(encoding@0.1.13):
+ dependencies:
+ node-fetch: 2.7.0(encoding@0.1.13)
+ whatwg-fetch: 3.6.20
+ transitivePeerDependencies:
+ - encoding
+
+ svix@1.31.0(encoding@0.1.13):
+ dependencies:
+ '@stablelib/base64': 1.0.1
+ es6-promise: 4.2.8
+ fast-sha256: 1.3.0
+ svix-fetch: 3.0.0(encoding@0.1.13)
+ url-parse: 1.5.10
+ transitivePeerDependencies:
+ - encoding
system-architecture@0.1.0: {}
@@ -16697,17 +13232,13 @@ snapshots:
string-width: 4.2.3
strip-ansi: 6.0.1
- tailwindcss-animate@1.0.7(tailwindcss@3.4.1(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4))):
+ tailwindcss-animate@1.0.7(tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11)(@types/node@16.18.11)(typescript@5.5.4))):
dependencies:
- tailwindcss: 3.4.1(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4))
+ tailwindcss: 3.4.10(ts-node@10.9.2(@swc/core@1.7.11)(@types/node@16.18.11)(typescript@5.5.4))
- tailwindcss-animate@1.0.7(tailwindcss@3.4.10(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4))):
+ tailwindcss@3.4.10(ts-node@10.9.2(@swc/core@1.7.11)(@types/node@16.18.11)(typescript@5.5.4)):
dependencies:
- tailwindcss: 3.4.10(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4))
-
- tailwindcss@3.4.1(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4)):
- dependencies:
- "@alloc/quick-lru": 5.2.0
+ '@alloc/quick-lru': 5.2.0
arg: 5.0.2
chokidar: 3.5.3
didyoumean: 1.2.2
@@ -16720,11 +13251,11 @@ snapshots:
micromatch: 4.0.5
normalize-path: 3.0.0
object-hash: 3.0.0
- picocolors: 1.0.0
+ picocolors: 1.0.1
postcss: 8.4.41
postcss-import: 15.1.0(postcss@8.4.41)
postcss-js: 4.0.1(postcss@8.4.41)
- postcss-load-config: 4.0.1(postcss@8.4.41)(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4))
+ postcss-load-config: 4.0.1(postcss@8.4.41)(ts-node@10.9.2(@swc/core@1.7.11)(@types/node@16.18.11)(typescript@5.5.4))
postcss-nested: 6.0.1(postcss@8.4.41)
postcss-selector-parser: 6.0.13
resolve: 1.22.6
@@ -16732,32 +13263,14 @@ snapshots:
transitivePeerDependencies:
- ts-node
- tailwindcss@3.4.10(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4)):
+ tar@6.2.1:
dependencies:
- "@alloc/quick-lru": 5.2.0
- arg: 5.0.2
- chokidar: 3.5.3
- didyoumean: 1.2.2
- dlv: 1.1.3
- fast-glob: 3.3.2
- glob-parent: 6.0.2
- is-glob: 4.0.3
- jiti: 1.21.0
- lilconfig: 2.1.0
- micromatch: 4.0.5
- normalize-path: 3.0.0
- object-hash: 3.0.0
- picocolors: 1.0.1
- postcss: 8.4.41
- postcss-import: 15.1.0(postcss@8.4.41)
- postcss-js: 4.0.1(postcss@8.4.41)
- postcss-load-config: 4.0.1(postcss@8.4.41)(ts-node@10.9.2(@types/node@22.1.0)(typescript@5.5.4))
- postcss-nested: 6.0.1(postcss@8.4.41)
- postcss-selector-parser: 6.0.13
- resolve: 1.22.6
- sucrase: 3.34.0
- transitivePeerDependencies:
- - ts-node
+ chownr: 2.0.0
+ fs-minipass: 2.1.0
+ minipass: 5.0.0
+ minizlib: 2.1.2
+ mkdirp: 1.0.4
+ yallist: 4.0.0
temp-dir@2.0.0: {}
@@ -16770,7 +13283,7 @@ snapshots:
terser@5.21.0:
dependencies:
- "@jridgewell/source-map": 0.3.5
+ '@jridgewell/source-map': 0.3.5
acorn: 8.12.1
commander: 2.20.3
source-map-support: 0.5.21
@@ -16789,6 +13302,10 @@ snapshots:
dependencies:
real-require: 0.1.0
+ time-span@4.0.0:
+ dependencies:
+ convert-hrtime: 3.0.0
+
tinycolor2@1.6.0: {}
tinyglobby@0.2.2:
@@ -16822,6 +13339,8 @@ snapshots:
dependencies:
typescript: 5.5.4
+ ts-case-convert@2.0.7: {}
+
ts-interface-checker@0.1.13: {}
ts-mocha@10.0.0(mocha@10.2.0):
@@ -16831,14 +13350,39 @@ snapshots:
optionalDependencies:
tsconfig-paths: 3.15.0
+ ts-morph@12.0.0:
+ dependencies:
+ '@ts-morph/common': 0.11.1
+ code-block-writer: 10.1.1
+
+ ts-node@10.9.1(@swc/core@1.7.11)(@types/node@16.18.11)(typescript@4.9.5):
+ dependencies:
+ '@cspotcode/source-map-support': 0.8.1
+ '@tsconfig/node10': 1.0.11
+ '@tsconfig/node12': 1.0.11
+ '@tsconfig/node14': 1.0.3
+ '@tsconfig/node16': 1.0.4
+ '@types/node': 16.18.11
+ acorn: 8.12.1
+ acorn-walk: 8.3.3
+ arg: 4.1.3
+ create-require: 1.1.1
+ diff: 4.0.2
+ make-error: 1.3.6
+ typescript: 4.9.5
+ v8-compile-cache-lib: 3.0.1
+ yn: 3.1.1
+ optionalDependencies:
+ '@swc/core': 1.7.11(@swc/helpers@0.5.12)
+
ts-node@10.9.1(@swc/core@1.7.11)(@types/node@20.8.8)(typescript@5.2.2):
dependencies:
- "@cspotcode/source-map-support": 0.8.1
- "@tsconfig/node10": 1.0.11
- "@tsconfig/node12": 1.0.11
- "@tsconfig/node14": 1.0.3
- "@tsconfig/node16": 1.0.4
- "@types/node": 20.8.8
+ '@cspotcode/source-map-support': 0.8.1
+ '@tsconfig/node10': 1.0.11
+ '@tsconfig/node12': 1.0.11
+ '@tsconfig/node14': 1.0.3
+ '@tsconfig/node16': 1.0.4
+ '@types/node': 20.8.8
acorn: 8.12.1
acorn-walk: 8.3.3
arg: 4.1.3
@@ -16849,16 +13393,36 @@ snapshots:
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
optionalDependencies:
- "@swc/core": 1.7.11(@swc/helpers@0.5.12)
+ '@swc/core': 1.7.11(@swc/helpers@0.5.12)
+
+ ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.5.1)(typescript@5.5.4):
+ dependencies:
+ '@cspotcode/source-map-support': 0.8.1
+ '@tsconfig/node10': 1.0.11
+ '@tsconfig/node12': 1.0.11
+ '@tsconfig/node14': 1.0.3
+ '@tsconfig/node16': 1.0.4
+ '@types/node': 22.5.1
+ acorn: 8.12.1
+ acorn-walk: 8.3.3
+ arg: 4.1.3
+ create-require: 1.1.1
+ diff: 4.0.2
+ make-error: 1.3.6
+ typescript: 5.5.4
+ v8-compile-cache-lib: 3.0.1
+ yn: 3.1.1
+ optionalDependencies:
+ '@swc/core': 1.7.11(@swc/helpers@0.5.12)
- ts-node@10.9.2(@swc/core@1.7.11(@swc/helpers@0.5.12))(@types/node@22.1.0)(typescript@5.5.4):
+ ts-node@10.9.2(@swc/core@1.7.11)(@types/node@16.18.11)(typescript@5.5.4):
dependencies:
- "@cspotcode/source-map-support": 0.8.1
- "@tsconfig/node10": 1.0.11
- "@tsconfig/node12": 1.0.11
- "@tsconfig/node14": 1.0.3
- "@tsconfig/node16": 1.0.4
- "@types/node": 22.1.0
+ '@cspotcode/source-map-support': 0.8.1
+ '@tsconfig/node10': 1.0.11
+ '@tsconfig/node12': 1.0.11
+ '@tsconfig/node14': 1.0.3
+ '@tsconfig/node16': 1.0.4
+ '@types/node': 16.18.11
acorn: 8.12.1
acorn-walk: 8.3.3
arg: 4.1.3
@@ -16869,7 +13433,8 @@ snapshots:
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
optionalDependencies:
- "@swc/core": 1.7.11(@swc/helpers@0.5.12)
+ '@swc/core': 1.7.11(@swc/helpers@0.5.12)
+ optional: true
ts-node@7.0.1:
dependencies:
@@ -16882,9 +13447,11 @@ snapshots:
source-map-support: 0.5.21
yn: 2.0.0
+ ts-toolbelt@6.15.5: {}
+
tsconfig-paths@3.15.0:
dependencies:
- "@types/json5": 0.0.29
+ '@types/json5': 0.0.29
json5: 1.0.2
minimist: 1.2.8
strip-bom: 3.0.0
@@ -16920,39 +13487,59 @@ snapshots:
type-fest@0.7.1: {}
+ type-fest@3.13.1: {}
+
type@2.7.2: {}
- typed-array-buffer@1.0.0:
+ typed-array-buffer@1.0.2:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
- is-typed-array: 1.1.12
+ call-bind: 1.0.7
+ es-errors: 1.3.0
+ is-typed-array: 1.1.13
- typed-array-byte-length@1.0.0:
+ typed-array-byte-length@1.0.1:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
for-each: 0.3.3
- has-proto: 1.0.1
- is-typed-array: 1.1.12
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
- typed-array-byte-offset@1.0.0:
+ typed-array-byte-offset@1.0.2:
dependencies:
- available-typed-arrays: 1.0.5
- call-bind: 1.0.2
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.7
for-each: 0.3.3
- has-proto: 1.0.1
- is-typed-array: 1.1.12
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
- typed-array-length@1.0.4:
+ typed-array-length@1.0.6:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
for-each: 0.3.3
- is-typed-array: 1.1.12
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
+ possible-typed-array-names: 1.0.0
typedarray-to-buffer@3.1.5:
dependencies:
is-typedarray: 1.0.0
+ typescript-eslint@8.2.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4):
+ dependencies:
+ '@typescript-eslint/eslint-plugin': 8.2.0(@typescript-eslint/parser@8.2.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/parser': 8.2.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/utils': 8.2.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
+ optionalDependencies:
+ typescript: 5.5.4
+ transitivePeerDependencies:
+ - eslint
+ - supports-color
+
+ typescript@4.9.5: {}
+
typescript@5.2.2: {}
typescript@5.5.4: {}
@@ -16964,6 +13551,15 @@ snapshots:
uglify-js@3.17.4:
optional: true
+ uint8-varint@2.0.4:
+ dependencies:
+ uint8arraylist: 2.4.8
+ uint8arrays: 5.1.0
+
+ uint8arraylist@2.4.8:
+ dependencies:
+ uint8arrays: 5.1.0
+
uint8arrays@3.1.0:
dependencies:
multiformats: 9.9.0
@@ -16972,9 +13568,13 @@ snapshots:
dependencies:
multiformats: 9.9.0
+ uint8arrays@5.1.0:
+ dependencies:
+ multiformats: 13.2.2
+
unbox-primitive@1.0.2:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
has-bigints: 1.0.2
has-symbols: 1.0.3
which-boxed-primitive: 1.0.2
@@ -16983,11 +13583,15 @@ snapshots:
undici-types@5.25.3: {}
- undici-types@6.13.0: {}
+ undici-types@6.19.8: {}
undici@5.25.4:
dependencies:
- "@fastify/busboy": 2.0.0
+ '@fastify/busboy': 2.0.0
+
+ undici@5.28.4:
+ dependencies:
+ '@fastify/busboy': 2.0.0
unenv@1.9.0:
dependencies:
@@ -16997,8 +13601,6 @@ snapshots:
node-fetch-native: 1.6.4
pathe: 1.1.2
- unfetch@4.2.0: {}
-
unicode-canonical-property-names-ecmascript@2.0.0: {}
unicode-match-property-ecmascript@2.0.0:
@@ -17025,7 +13627,7 @@ snapshots:
unstorage@1.10.1(idb-keyval@6.2.1):
dependencies:
anymatch: 3.1.3
- chokidar: 3.5.3
+ chokidar: 3.6.0
destr: 2.0.3
h3: 1.11.1
ioredis: 5.3.2
@@ -17061,21 +13663,16 @@ snapshots:
dependencies:
punycode: 2.3.0
- use-isomorphic-layout-effect@1.1.2(@types/react@18.3.3)(react@18.2.0):
+ url-parse@1.5.10:
dependencies:
- react: 18.2.0
- optionalDependencies:
- "@types/react": 18.3.3
+ querystringify: 2.2.0
+ requires-port: 1.0.0
use-isomorphic-layout-effect@1.1.2(@types/react@18.3.3)(react@18.3.1):
dependencies:
react: 18.3.1
optionalDependencies:
- "@types/react": 18.3.3
-
- use-sync-external-store@1.2.0(react@18.2.0):
- dependencies:
- react: 18.2.0
+ '@types/react': 18.3.3
use-sync-external-store@1.2.0(react@18.3.1):
dependencies:
@@ -17103,51 +13700,25 @@ snapshots:
v8-compile-cache-lib@3.0.1: {}
- valtio@1.11.2(@types/react@18.3.3)(react@18.2.0):
- dependencies:
- proxy-compare: 2.5.1
- use-sync-external-store: 1.2.0(react@18.2.0)
- optionalDependencies:
- "@types/react": 18.3.3
- react: 18.2.0
-
valtio@1.11.2(@types/react@18.3.3)(react@18.3.1):
dependencies:
proxy-compare: 2.5.1
use-sync-external-store: 1.2.0(react@18.3.1)
optionalDependencies:
- "@types/react": 18.3.3
+ '@types/react': 18.3.3
react: 18.3.1
- viem@2.19.6(bufferutil@4.0.7)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.22.4):
- dependencies:
- "@adraffy/ens-normalize": 1.10.0
- "@noble/curves": 1.4.0
- "@noble/hashes": 1.4.0
- "@scure/bip32": 1.4.0
- "@scure/bip39": 1.3.0
- abitype: 1.0.5(typescript@5.5.4)(zod@3.22.4)
- isows: 1.0.4(ws@8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10))
- webauthn-p256: 0.0.5
- ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)
- optionalDependencies:
- typescript: 5.5.4
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
- - zod
-
- viem@2.19.6(bufferutil@4.0.7)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.23.8):
+ viem@2.19.6(bufferutil@4.0.8)(typescript@5.5.4)(utf-8-validate@5.0.10)(zod@3.23.8):
dependencies:
- "@adraffy/ens-normalize": 1.10.0
- "@noble/curves": 1.4.0
- "@noble/hashes": 1.4.0
- "@scure/bip32": 1.4.0
- "@scure/bip39": 1.3.0
+ '@adraffy/ens-normalize': 1.10.0
+ '@noble/curves': 1.4.0
+ '@noble/hashes': 1.4.0
+ '@scure/bip32': 1.4.0
+ '@scure/bip39': 1.3.0
abitype: 1.0.5(typescript@5.5.4)(zod@3.23.8)
- isows: 1.0.4(ws@8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10))
+ isows: 1.0.4(ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))
webauthn-p256: 0.0.5
- ws: 8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10)
+ ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
optionalDependencies:
typescript: 5.5.4
transitivePeerDependencies:
@@ -17155,87 +13726,34 @@ snapshots:
- utf-8-validate
- zod
- vite-plugin-mkcert@1.17.5(vite@5.4.0(@types/node@22.1.0)(terser@5.21.0)):
+ vite-plugin-mkcert@1.17.5(vite@5.4.2(@types/node@16.18.11)(terser@5.21.0)):
dependencies:
- "@octokit/rest": 20.0.2
+ '@octokit/rest': 20.0.2
axios: 1.7.3(debug@4.3.4)
debug: 4.3.4(supports-color@5.5.0)
- picocolors: 1.0.0
- vite: 5.4.0(@types/node@22.1.0)(terser@5.21.0)
- transitivePeerDependencies:
- - supports-color
-
- vite-plugin-mkcert@1.17.5(vite@5.4.2(@types/node@22.1.0)(terser@5.21.0)):
- dependencies:
- "@octokit/rest": 20.0.2
- axios: 1.7.3(debug@4.3.4)
- debug: 4.3.4(supports-color@8.1.1)
picocolors: 1.0.1
- vite: 5.4.2(@types/node@22.1.0)(terser@5.21.0)
+ vite: 5.4.2(@types/node@16.18.11)(terser@5.21.0)
transitivePeerDependencies:
- supports-color
- vite-plugin-pwa@0.20.1(vite@5.4.0(@types/node@22.1.0)(terser@5.21.0))(workbox-build@7.0.0(@types/babel__core@7.20.5))(workbox-window@7.0.0):
+ vite-plugin-pwa@0.20.1(vite@5.4.2(@types/node@16.18.11)(terser@5.21.0))(workbox-build@7.0.0(@types/babel__core@7.20.5))(workbox-window@7.0.0):
dependencies:
debug: 4.3.4(supports-color@5.5.0)
pretty-bytes: 6.1.1
tinyglobby: 0.2.2
- vite: 5.4.0(@types/node@22.1.0)(terser@5.21.0)
- workbox-build: 7.0.0(@types/babel__core@7.20.5)
- workbox-window: 7.0.0
- transitivePeerDependencies:
- - supports-color
-
- vite-plugin-pwa@0.20.1(vite@5.4.2(@types/node@22.1.0)(terser@5.21.0))(workbox-build@7.0.0(@types/babel__core@7.20.5))(workbox-window@7.0.0):
- dependencies:
- debug: 4.3.4(supports-color@8.1.1)
- pretty-bytes: 6.1.1
- tinyglobby: 0.2.2
- vite: 5.4.2(@types/node@22.1.0)(terser@5.21.0)
+ vite: 5.4.2(@types/node@16.18.11)(terser@5.21.0)
workbox-build: 7.0.0(@types/babel__core@7.20.5)
workbox-window: 7.0.0
transitivePeerDependencies:
- supports-color
- vite-plugin-svgr@4.2.0(rollup@2.79.1)(typescript@5.5.4)(vite@5.4.0(@types/node@22.1.0)(terser@5.21.0)):
- dependencies:
- "@rollup/pluginutils": 5.0.5(rollup@2.79.1)
- "@svgr/core": 8.1.0(typescript@5.5.4)
- "@svgr/plugin-jsx": 8.1.0(@svgr/core@8.1.0(typescript@5.5.4))
- vite: 5.4.0(@types/node@22.1.0)(terser@5.21.0)
- transitivePeerDependencies:
- - rollup
- - supports-color
- - typescript
-
- vite-plugin-svgr@4.2.0(rollup@4.20.0)(typescript@5.5.4)(vite@5.4.2(@types/node@22.1.0)(terser@5.21.0)):
- dependencies:
- "@rollup/pluginutils": 5.0.5(rollup@4.20.0)
- "@svgr/core": 8.1.0(typescript@5.5.4)
- "@svgr/plugin-jsx": 8.1.0(@svgr/core@8.1.0(typescript@5.5.4))
- vite: 5.4.2(@types/node@22.1.0)(terser@5.21.0)
- transitivePeerDependencies:
- - rollup
- - supports-color
- - typescript
-
- vite@5.4.0(@types/node@22.1.0)(terser@5.21.0):
- dependencies:
- esbuild: 0.21.5
- postcss: 8.4.41
- rollup: 4.20.0
- optionalDependencies:
- "@types/node": 22.1.0
- fsevents: 2.3.3
- terser: 5.21.0
-
- vite@5.4.2(@types/node@22.1.0)(terser@5.21.0):
+ vite@5.4.2(@types/node@16.18.11)(terser@5.21.0):
dependencies:
esbuild: 0.21.5
postcss: 8.4.41
rollup: 4.20.0
optionalDependencies:
- "@types/node": 22.1.0
+ '@types/node': 16.18.11
fsevents: 2.3.3
terser: 5.21.0
@@ -17247,6 +13765,8 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ web-streams-polyfill@3.3.3: {}
+
web3-core-helpers@1.10.3:
dependencies:
web3-eth-iban: 1.10.3
@@ -17259,7 +13779,7 @@ snapshots:
web3-core-method@1.10.4:
dependencies:
- "@ethersproject/transactions": 5.7.0
+ '@ethersproject/transactions': 5.7.0
web3-core-helpers: 1.10.4
web3-core-promievent: 1.10.4
web3-core-subscriptions: 1.10.4
@@ -17287,8 +13807,8 @@ snapshots:
web3-core@1.10.4(encoding@0.1.13):
dependencies:
- "@types/bn.js": 5.1.2
- "@types/node": 12.20.55
+ '@types/bn.js': 5.1.2
+ '@types/node': 12.20.55
bignumber.js: 9.1.2
web3-core-helpers: 1.10.4
web3-core-method: 1.10.4
@@ -17332,7 +13852,7 @@ snapshots:
web3-utils@1.10.3:
dependencies:
- "@ethereumjs/util": 8.1.0
+ '@ethereumjs/util': 8.1.0
bn.js: 5.2.1
ethereum-bloom-filters: 1.0.10
ethereum-cryptography: 2.1.2
@@ -17343,7 +13863,7 @@ snapshots:
web3-utils@1.10.4:
dependencies:
- "@ethereumjs/util": 8.1.0
+ '@ethereumjs/util': 8.1.0
bn.js: 5.2.1
ethereum-bloom-filters: 1.0.10
ethereum-cryptography: 2.1.2
@@ -17354,8 +13874,8 @@ snapshots:
webauthn-p256@0.0.5:
dependencies:
- "@noble/curves": 1.4.0
- "@noble/hashes": 1.4.0
+ '@noble/curves': 1.4.0
+ '@noble/hashes': 1.4.0
webidl-conversions@3.0.1: {}
@@ -17363,7 +13883,7 @@ snapshots:
websocket@1.0.34:
dependencies:
- bufferutil: 4.0.7
+ bufferutil: 4.0.8
debug: 2.6.9
es5-ext: 0.10.64
typedarray-to-buffer: 3.1.5
@@ -17372,6 +13892,8 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ whatwg-fetch@3.6.20: {}
+
whatwg-url@5.0.0:
dependencies:
tr46: 0.0.3
@@ -17401,6 +13923,14 @@ snapshots:
gopd: 1.0.1
has-tostringtag: 1.0.0
+ which-typed-array@1.1.15:
+ dependencies:
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.7
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-tostringtag: 1.0.2
+
which@1.3.1:
dependencies:
isexe: 2.0.0
@@ -17409,10 +13939,16 @@ snapshots:
dependencies:
isexe: 2.0.0
+ wide-align@1.1.5:
+ dependencies:
+ string-width: 4.2.3
+
widest-line@3.1.0:
dependencies:
string-width: 4.2.3
+ wonka@6.3.4: {}
+
word-wrap@1.2.5: {}
wordwrap@1.0.0: {}
@@ -17428,14 +13964,14 @@ snapshots:
workbox-build@7.0.0(@types/babel__core@7.20.5):
dependencies:
- "@apideck/better-ajv-errors": 0.3.6(ajv@8.12.0)
- "@babel/core": 7.25.2
- "@babel/preset-env": 7.22.20(@babel/core@7.25.2)
- "@babel/runtime": 7.24.0
- "@rollup/plugin-babel": 5.3.1(@babel/core@7.25.2)(@types/babel__core@7.20.5)(rollup@2.79.1)
- "@rollup/plugin-node-resolve": 11.2.1(rollup@2.79.1)
- "@rollup/plugin-replace": 2.4.2(rollup@2.79.1)
- "@surma/rollup-plugin-off-main-thread": 2.2.3
+ '@apideck/better-ajv-errors': 0.3.6(ajv@8.12.0)
+ '@babel/core': 7.25.2
+ '@babel/preset-env': 7.22.20(@babel/core@7.25.2)
+ '@babel/runtime': 7.24.0
+ '@rollup/plugin-babel': 5.3.1(@babel/core@7.25.2)(@types/babel__core@7.20.5)(rollup@2.79.1)
+ '@rollup/plugin-node-resolve': 11.2.1(rollup@2.79.1)
+ '@rollup/plugin-replace': 2.4.2(rollup@2.79.1)
+ '@surma/rollup-plugin-off-main-thread': 2.2.3
ajv: 8.12.0
common-tags: 1.8.2
fast-json-stable-stringify: 2.1.0
@@ -17466,7 +14002,7 @@ snapshots:
workbox-sw: 7.0.0
workbox-window: 7.0.0
transitivePeerDependencies:
- - "@types/babel__core"
+ - '@types/babel__core'
- supports-color
workbox-cacheable-response@7.0.0:
@@ -17527,7 +14063,7 @@ snapshots:
workbox-window@7.0.0:
dependencies:
- "@types/trusted-types": 2.0.4
+ '@types/trusted-types': 2.0.4
workbox-core: 7.0.0
workerpool@6.2.1: {}
@@ -17546,30 +14082,26 @@ snapshots:
wrappy@1.0.2: {}
- ws@7.4.6(bufferutil@4.0.7)(utf-8-validate@5.0.10):
+ ws@7.4.6(bufferutil@4.0.8)(utf-8-validate@5.0.10):
optionalDependencies:
- bufferutil: 4.0.7
+ bufferutil: 4.0.8
utf-8-validate: 5.0.10
- ws@7.5.9(bufferutil@4.0.7)(utf-8-validate@5.0.10):
+ ws@7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10):
optionalDependencies:
- bufferutil: 4.0.7
+ bufferutil: 4.0.8
utf-8-validate: 5.0.10
- ws@8.17.1(bufferutil@4.0.7)(utf-8-validate@5.0.10):
+ ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10):
optionalDependencies:
- bufferutil: 4.0.7
+ bufferutil: 4.0.8
utf-8-validate: 5.0.10
- ws@8.5.0(bufferutil@4.0.7)(utf-8-validate@5.0.10):
+ ws@8.5.0(bufferutil@4.0.8)(utf-8-validate@5.0.10):
optionalDependencies:
- bufferutil: 4.0.7
+ bufferutil: 4.0.8
utf-8-validate: 5.0.10
- xstate@4.38.2: {}
-
- xstate@5.17.4: {}
-
y18n@4.0.3: {}
y18n@5.0.8: {}
@@ -17580,6 +14112,8 @@ snapshots:
yallist@4.0.0: {}
+ yaml@1.10.2: {}
+
yaml@2.3.2: {}
yargs-parser@18.1.3:
@@ -17638,6 +14172,4 @@ snapshots:
yocto-queue@0.1.0: {}
- zod@3.22.4: {}
-
zod@3.23.8: {}