From 902acf648d42931fa53533ce0218fbf6cb215e21 Mon Sep 17 00:00:00 2001 From: Spacebean Date: Thu, 12 Sep 2024 11:17:34 -0600 Subject: [PATCH 01/14] fix: update projects/examples setup --- projects/examples/src/setup-ethMainnet.ts | 52 +++++++++++++++++++++++ projects/examples/src/setup.ts | 26 +----------- 2 files changed, 54 insertions(+), 24 deletions(-) create mode 100644 projects/examples/src/setup-ethMainnet.ts diff --git a/projects/examples/src/setup-ethMainnet.ts b/projects/examples/src/setup-ethMainnet.ts new file mode 100644 index 000000000..2b288262b --- /dev/null +++ b/projects/examples/src/setup-ethMainnet.ts @@ -0,0 +1,52 @@ +// import { BeanstalkSDK, DataSource, TestUtils } from "@beanstalk/sdk"; +// import { ChainId } from "@beanstalk/sdk-core"; +// import { Provider } from "@beanstalk/sdk-wells/dist/types/lib/WellsSDK"; +// import { ethers } from "ethers"; + +// keeping these in the same file as ./setup for some reasons causes issues + +// const RPC_URL = "http://127.0.0.1:9545"; + +// const network = { +// name: "local-eth-mainnet", +// chainId: ChainId.LOCALHOST_ETH, +// _defaultProvider: () => new ethers.providers.JsonRpcProvider(RPC_URL, network) +// }; + +// const provider = new ethers.providers.StaticJsonRpcProvider(RPC_URL, network); + +// const connection = TestUtils.setupConnection(provider); + +// const { signer, account } = connection; + +// const sdk = new BeanstalkSDK({ +// signer: signer, +// rpcUrl: RPC_URL, +// DEBUG: true +// }); + +// const chain = new TestUtils.BlockchainUtils(sdk); + +// const impersonate = async (account) => { +// const stop = await chain.impersonate(account); +// const provider = ethers.getDefaultProvider(network) as Provider; +// const signer = await provider.getSigner(account); +// const sdk = new BeanstalkSDK({ +// signer, +// source: DataSource.LEDGER, +// DEBUG: true +// }); + +// return { sdk, stop }; +// }; + +// const ethMainnetUtils = { +// signer, +// account, +// provider, +// sdk, +// impersonate, +// chain +// }; + +// export default ethMainnetUtils; diff --git a/projects/examples/src/setup.ts b/projects/examples/src/setup.ts index b12238a35..3152dba95 100644 --- a/projects/examples/src/setup.ts +++ b/projects/examples/src/setup.ts @@ -3,42 +3,20 @@ import { Provider } from "@beanstalk/sdk/dist/types/lib/BeanstalkSDK"; import { ethers } from "ethers"; const RPC_URL = "http://127.0.0.1:8545"; -const LOCALHOST_ETH_RPC_URL = "http://127.0.0.1:9545"; const network = { name: "local", chainId: ChainId.LOCALHOST, - _defaultProvider: () => new ethers.providers.JsonRpcProvider(RPC_URL) -}; - -const ethMainnetNetwork = { - name: "local-eth-mainnet", - chainId: ChainId.LOCALHOST_ETH, - _defaultProvider: () => new ethers.providers.JsonRpcProvider(LOCALHOST_ETH_RPC_URL) + _defaultProvider: () => new ethers.providers.JsonRpcProvider(RPC_URL, network) }; export const provider = new ethers.providers.StaticJsonRpcProvider(RPC_URL, network); -export const { signer, account } = TestUtils.setupConnection(provider); -export const localhostEthProvider = new ethers.providers.JsonRpcProvider( - LOCALHOST_ETH_RPC_URL, - ethMainnetNetwork -); -export const { signer: localhostEthSigner, account: localhostEthAccount } = - TestUtils.setupConnection(localhostEthProvider); +export const { signer, account } = TestUtils.setupConnection(provider); export const sdk = new BeanstalkSDK({ signer, rpcUrl: RPC_URL, - provider: provider, - source: DataSource.LEDGER, - DEBUG: true -}); - -export const ethSdk = new BeanstalkSDK({ - signer: localhostEthSigner, - rpcUrl: LOCALHOST_ETH_RPC_URL, - provider: localhostEthProvider, source: DataSource.LEDGER, DEBUG: true }); From 89319f0da79284e8670dc662057399da15e3ab4b Mon Sep 17 00:00:00 2001 From: Spacebean Date: Thu, 12 Sep 2024 11:32:32 -0600 Subject: [PATCH 02/14] feat: update sdk silo --- projects/sdk/src/lib/silo.ts | 15 +-------------- projects/sdk/src/lib/silo/Withdraw.ts | 16 ++++++++-------- projects/sdk/src/lib/silo/utils.ts | 13 ++++++------- 3 files changed, 15 insertions(+), 29 deletions(-) diff --git a/projects/sdk/src/lib/silo.ts b/projects/sdk/src/lib/silo.ts index a208ccd85..46995eced 100644 --- a/projects/sdk/src/lib/silo.ts +++ b/projects/sdk/src/lib/silo.ts @@ -194,19 +194,6 @@ export class Silo { return this.siloConvert.convertEstimate(fromToken, toToken, fromAmount); } - public async getDeposits(_account: string) { - const deposits = await Silo.sdk.contracts.beanstalk.getDepositsForAccount(_account); - } - - public async getTokenDeposits(_account: string, token: Token) { - const tokenDeposits = Silo.sdk.contracts.beanstalk.getTokenDepositsForAccount( - _account, - token.address - ); - - const dict = {}; - } - /** * * Return the Farmer's balance of a single whitelisted token. @@ -236,7 +223,7 @@ export class Silo { account, _token.address ); - const depositsByToken = utils.parseDepositsByToken(Silo.sdk, farmerDeposits); + const depositsByToken = utils.parseDepositsByToken(Silo.sdk, [farmerDeposits]); // The processor's return schema assumes we might have wanted to grab // multiple tokens, so we have to grab the one we want diff --git a/projects/sdk/src/lib/silo/Withdraw.ts b/projects/sdk/src/lib/silo/Withdraw.ts index ae95bcc75..1389d21b6 100644 --- a/projects/sdk/src/lib/silo/Withdraw.ts +++ b/projects/sdk/src/lib/silo/Withdraw.ts @@ -36,36 +36,36 @@ export class Withdraw { const withdrawData = this.calculateWithdraw(token, amount, balance.deposits, season); Withdraw.sdk.debug("silo.withdraw(): withdrawData", { withdrawData }); - const seasons = withdrawData.crates.map((crate) => crate.stem.toString()); + const stems = withdrawData.crates.map((crate) => crate.stem.toString()); const amounts = withdrawData.crates.map((crate) => crate.amount.toBlockchain()); let contractCall; - if (seasons.length === 0) { + if (stems.length === 0) { throw new Error("Malformatted crates"); } - if (seasons.length === 1) { + if (stems.length === 1) { Withdraw.sdk.debug("silo.withdraw(): withdrawDeposit()", { address: token.address, - season: seasons[0], + stem: stems[0], amount: amounts[0] }); contractCall = Withdraw.sdk.contracts.beanstalk.withdrawDeposit( token.address, - seasons[0], + stems[0], amounts[0], toMode ); } else { Withdraw.sdk.debug("silo.withdraw(): withdrawDeposits()", { address: token.address, - seasons: seasons, + stems: stems, amounts: amounts }); contractCall = Withdraw.sdk.contracts.beanstalk.withdrawDeposits( token.address, - seasons, + stems, amounts, toMode ); @@ -89,4 +89,4 @@ export class Withdraw { crates: pickedCrates.crates }; } -} \ No newline at end of file +} diff --git a/projects/sdk/src/lib/silo/utils.ts b/projects/sdk/src/lib/silo/utils.ts index dee9d4f56..6e1804d6b 100644 --- a/projects/sdk/src/lib/silo/utils.ts +++ b/projects/sdk/src/lib/silo/utils.ts @@ -6,8 +6,6 @@ import { TokenValue } from "@beanstalk/sdk-core"; import { TokenSiloBalance, Deposit } from "./types"; import { assert } from "src/utils"; import { SiloGettersFacet } from "src/constants/generated/protocol/abi/Beanstalk"; -import { MayArray } from "src/types"; -import { isArray } from "src/utils/common"; export function sortCrates(state: TokenSiloBalance) { state.deposits = state.deposits.sort( @@ -42,8 +40,10 @@ export function sortCratesByBDVRatio(crates: Deposit[], direction: "asc" | "desc export function pickCrates( deposits: Deposit[], amount: TokenValue, - token: Token, - currentSeason: number + // TODO: remove these + _token: Token, + // TODO: remove these + _currentSeason: number ) { let totalAmount = TokenValue.ZERO; let totalBDV = TokenValue.ZERO; @@ -159,11 +159,10 @@ type TokenDepositsByStem = { export function parseDepositsByToken( sdk: BeanstalkSDK, - data: MayArray + data: SiloGettersFacet.TokenDepositIdStructOutput[] ) { const depositsByToken: Map = new Map(); - const datas = isArray(data) ? data : [data]; - datas.forEach(({ token: tokenAddr, depositIds, tokenDeposits }) => { + data.forEach(({ token: tokenAddr, depositIds, tokenDeposits }) => { const token = sdk.tokens.findByAddress(tokenAddr); if (!token) return; From 29c329e87968783b3bffa688564cc6cf42e8c0d6 Mon Sep 17 00:00:00 2001 From: Spacebean Date: Thu, 12 Sep 2024 11:32:56 -0600 Subject: [PATCH 03/14] feat: update BasinWell class --- projects/sdk/src/classes/Pool/BasinWell.ts | 113 ++++++++++++++++++++- 1 file changed, 109 insertions(+), 4 deletions(-) diff --git a/projects/sdk/src/classes/Pool/BasinWell.ts b/projects/sdk/src/classes/Pool/BasinWell.ts index 082f0d16a..6aa2c4059 100644 --- a/projects/sdk/src/classes/Pool/BasinWell.ts +++ b/projects/sdk/src/classes/Pool/BasinWell.ts @@ -1,17 +1,122 @@ -import { BasinWell__factory } from "src/constants/generated"; +import { BasinWell__factory, BasinWell as BasinWellContract } from "src/constants/generated"; import { TokenValue } from "src/TokenValue"; import Pool, { Reserves } from "./Pool"; +import { ERC20Token } from "../Token"; +import { BeanstalkSDK } from "src/lib/BeanstalkSDK"; export class BasinWell extends Pool { + public readonly contract: BasinWellContract; + + constructor( + sdk: BeanstalkSDK, + address: string, + lpToken: ERC20Token, + tokens: ERC20Token[], + metadata: { + name: string; + symbol: string; + logo: string; + color: string; + } + ) { + super(sdk, address, lpToken, tokens, metadata); + this.contract = BasinWell__factory.connect(address, sdk.providerOrSigner); + } + public getContract() { - return BasinWell__factory.connect(this.address, Pool.sdk.providerOrSigner); + return this.contract; } public getReserves() { - Pool.sdk.debug(`BasinWell.getReserves(): ${this.address} ${this.name} on chain ${this.chainId}`); + Pool.sdk.debug( + `BasinWell.getReserves(): ${this.address} ${this.name} on chain ${this.chainId}` + ); return this.getContract() .getReserves() - .then((result) => [TokenValue.fromBlockchain(result[0], 0), TokenValue.fromBlockchain(result[1], 0)] as Reserves); + .then( + (result) => + [ + TokenValue.fromBlockchain(result[0], 0), + TokenValue.fromBlockchain(result[1], 0) + ] as Reserves + ); + } + + async getAddLiquidityOut(amounts: TokenValue[]) { + return this.contract + .getAddLiquidityOut(amounts.map((a) => a.toBigNumber())) + .then((result) => this.lpToken.fromBlockchain(result)); + } + + async getRemoveLiquidityOutEqual(amount: TokenValue) { + return this.contract + .getRemoveLiquidityOut(amount.toBigNumber()) + .then((result) => this.tokens.map((token, i) => token.fromBlockchain(result[i]))); + } + + async getRemoveLiquidityOutOneToken(lpAmountIn: TokenValue, tokenOut: ERC20Token) { + return this.contract + .getRemoveLiquidityOneTokenOut(lpAmountIn.toBigNumber(), tokenOut.address) + .then((result) => tokenOut.fromBlockchain(result)); + } + + /** + * Get the @wagmi/core multicall params for removing liquidity + * @param lpAmountIn The amount of LP tokens to remove + * @returns @wagmi/core multicall calls for + * - removing equal amounts of liquidity + * - removing single sided liquidity as well.tokens[0] + * - removing single sided liquidity as well.tokens[1] + */ + static getRemoveLiquidityOutMulticallParams(well: BasinWell, lpAmountIn: TokenValue) { + const contract = { + address: well.address as `0x${string}`, + abi: removeLiquidityPartialABI + }; + + const removeEqual = { + ...contract, + method: "getRemoveLiquidityOut", + args: [lpAmountIn.toBigNumber()] + }; + + const removeSingleSided0 = { + ...contract, + method: "getRemoveLiquidityOneTokenOut", + args: [lpAmountIn.toBigNumber(), well.tokens[0].address as `0x${string}`] + }; + + const removeSingleSided1 = { + ...contract, + method: "getRemoveLiquidityOneTokenOut", + args: [lpAmountIn.toBigNumber(), well.tokens[1].address as `0x${string}`] + }; + + return { + equal: removeEqual, + side0: removeSingleSided0, + side1: removeSingleSided1 + }; } } + +const removeLiquidityPartialABI = [ + { + inputs: [ + { internalType: "uint256", name: "lpAmountIn", type: "uint256" }, + { internalType: "contract IERC20", name: "tokenOut", type: "address" } + ], + name: "getRemoveLiquidityOneTokenOut", + outputs: [{ internalType: "uint256", name: "tokenAmountOut", type: "uint256" }], + stateMutability: "view", + type: "function" + }, + { + inputs: [{ internalType: "uint256", name: "lpAmountIn", type: "uint256" }], + name: "getRemoveLiquidityOut", + outputs: [{ internalType: "uint256[]", name: "tokenAmountsOut", type: "uint256[]" }], + stateMutability: "view", + type: "function" + } +] as const; From 332a66271d1f61bf030a92cb14134ece73eeb239 Mon Sep 17 00:00:00 2001 From: Spacebean Date: Thu, 12 Sep 2024 11:45:03 -0600 Subject: [PATCH 04/14] feat: minor updates to UI --- .../ui/src/components/App/SdkProvider.tsx | 9 ++- projects/ui/src/components/App/index.tsx | 14 +++-- .../Balances/SiloBalancesHistory.tsx | 2 +- projects/ui/src/components/Nav/NavBar.tsx | 25 +++++--- projects/ui/src/components/Silo/Overview.tsx | 3 - .../ui/src/hooks/beanstalk/useSeedGauge.ts | 4 +- projects/ui/src/hooks/chain/useChainState.ts | 36 ++++-------- .../hooks/farmer/useInterpolateDeposits.ts | 9 +-- projects/ui/src/pages/mainnet.tsx | 6 +- .../ui/src/state/beanstalk/silo/updater.ts | 58 +++++++++++++++---- 10 files changed, 103 insertions(+), 63 deletions(-) diff --git a/projects/ui/src/components/App/SdkProvider.tsx b/projects/ui/src/components/App/SdkProvider.tsx index 7f94102f1..2a8f0013b 100644 --- a/projects/ui/src/components/App/SdkProvider.tsx +++ b/projects/ui/src/components/App/SdkProvider.tsx @@ -117,11 +117,14 @@ const useBeanstalkSdkContext = () => { function BeanstalkSDKProvider({ children }: { children: React.ReactNode }) { const sdk = useBeanstalkSdkContext(); - const { isEthereum } = useChainState(); + const { isArbitrum, isDev } = useChainState(); - const ready = useDynamicSeeds(sdk, !isEthereum); + // only run this on arbitrum dev + const ready = useDynamicSeeds(sdk, !!(isArbitrum && isDev)); - if (!ready) return null; + if (isArbitrum && isDev && !ready) { + return null; + } return ( <> diff --git a/projects/ui/src/components/App/index.tsx b/projects/ui/src/components/App/index.tsx index 82433e347..9d43b81cb 100644 --- a/projects/ui/src/components/App/index.tsx +++ b/projects/ui/src/components/App/index.tsx @@ -102,6 +102,7 @@ const CustomToaster: FC<{ navHeight: number }> = ({ navHeight }) => ( function Mainnet() { const banner = useBanner(); const navHeight = useNavHeight(!!banner); + const { isArbitrum } = useChainState(); return ( <> {null} @@ -125,7 +126,7 @@ function Mainnet() { justifyContent: 'center', }} > - + {/* } /> */} @@ -150,8 +151,8 @@ function Arbitrum() { * Bean Updaters * ----------------------- */} {/* price contract not working */} - {false && } - {false && } + + {/* ----------------------- * Beanstalk Updaters @@ -265,9 +266,12 @@ function Arbitrum() { } export default function App() { - const { isArbitrum } = useChainState(); + const { isArbitrum, isDev: isTestnet } = useChainState(); + + console.log('isArbitrum: ', isArbitrum); + console.log('isTestnet: ', isTestnet); - if (!isArbitrum) { + if (!isArbitrum || (isArbitrum && !isTestnet)) { return ; } diff --git a/projects/ui/src/components/Balances/SiloBalancesHistory.tsx b/projects/ui/src/components/Balances/SiloBalancesHistory.tsx index c1d54fe73..e90da496d 100644 --- a/projects/ui/src/components/Balances/SiloBalancesHistory.tsx +++ b/projects/ui/src/components/Balances/SiloBalancesHistory.tsx @@ -23,7 +23,7 @@ const SiloBalancesHistory: React.FC<{}> = () => { const { data, loading } = useFarmerSiloHistory(account, true, false); const formatValue = (value: number) => - `$${value.toLocaleString('en-US', { maximumFractionDigits: 2 })}`; + `$${value?.toLocaleString('en-US', { maximumFractionDigits: 2 })}`; const getStatValue = (v?: T[]) => { if (!v?.length) return 0; diff --git a/projects/ui/src/components/Nav/NavBar.tsx b/projects/ui/src/components/Nav/NavBar.tsx index b7a8d6702..5deeaa30b 100644 --- a/projects/ui/src/components/Nav/NavBar.tsx +++ b/projects/ui/src/components/Nav/NavBar.tsx @@ -18,6 +18,7 @@ import ROUTES from './routes'; import HoverMenu from './HoverMenu'; import { PAGE_BORDER_COLOR } from '../App/muiTheme'; +import BeanProgressIcon from '../Common/BeanProgressIcon'; const L1NavBar = () => ( <> @@ -31,21 +32,31 @@ const L1NavBar = () => ( }} > {/* Desktop: Right Side */} - - - + + + - - + + + + + + + ); const NavBar: FC<{}> = ({ children }) => { - const { isEthereum } = useChainState(); + const { isArbitrum, isDev } = useChainState(); - if (isEthereum) { + if (!isArbitrum || (isArbitrum && !isDev)) { return ; } diff --git a/projects/ui/src/components/Silo/Overview.tsx b/projects/ui/src/components/Silo/Overview.tsx index 60f843f09..bf77ce754 100644 --- a/projects/ui/src/components/Silo/Overview.tsx +++ b/projects/ui/src/components/Silo/Overview.tsx @@ -33,9 +33,6 @@ const Overview: FC<{ const { data, loading } = useFarmerSiloHistory(account, false, true); // const [tab, handleChange] = useTabs(SLUGS, 'view'); - - console.log('data', data); - // const ownership = farmerSilo.stalk.active?.gt(0) && beanstalkSilo.stalk.total?.gt(0) diff --git a/projects/ui/src/hooks/beanstalk/useSeedGauge.ts b/projects/ui/src/hooks/beanstalk/useSeedGauge.ts index ac94c475f..a97ea0d05 100644 --- a/projects/ui/src/hooks/beanstalk/useSeedGauge.ts +++ b/projects/ui/src/hooks/beanstalk/useSeedGauge.ts @@ -135,8 +135,8 @@ const useSeedGauge = () => { let totalRelevantBdv = ZERO_BN; Object.entries(tokenSettingMap).forEach(([address, values]) => { - const bdvPerToken = siloBals[address].bdvPerToken || ZERO_BN; - const totalDeposited = siloBals[address].deposited.amount || ZERO_BN; + const bdvPerToken = siloBals[address]?.bdvPerToken || ZERO_BN; + const totalDeposited = siloBals[address]?.deposited.amount || ZERO_BN; const tokenTotalBdv = bdvPerToken.times(totalDeposited); if (values.isAllocatedGP) { diff --git a/projects/ui/src/hooks/chain/useChainState.ts b/projects/ui/src/hooks/chain/useChainState.ts index 21e2d8614..b740edbe2 100644 --- a/projects/ui/src/hooks/chain/useChainState.ts +++ b/projects/ui/src/hooks/chain/useChainState.ts @@ -1,34 +1,20 @@ -import { L1_CHAIN_IDS, SupportedChainId } from '~/constants/chains'; import { useMemo } from 'react'; +import { ChainResolver } from '@beanstalk/sdk-core'; import useChainId from './useChainId'; -const SUPPORTED_DEV_CHAINS = new Set([ - SupportedChainId.LOCALHOST, - SupportedChainId.LOCALHOST_ETH, - SupportedChainId.TESTNET, -]); - -const SUPPORTED_L1_CHAINS = new Set(L1_CHAIN_IDS); - -const SUPPORTED_ARB_CHAINS = new Set([ - SupportedChainId.ARBITRUM_MAINNET, - SupportedChainId.LOCALHOST, -]); - function useChainState() { const chainId = useChainId(); - return useMemo(() => { - const isEthereum = SUPPORTED_L1_CHAINS.has(chainId); - const isDev = SUPPORTED_DEV_CHAINS.has(chainId); - const isArbitrum = SUPPORTED_ARB_CHAINS.has(chainId); - - const fallbackChainId = isEthereum - ? SupportedChainId.ETH_MAINNET - : SupportedChainId.ARBITRUM_MAINNET; - - return { isEthereum, isDev, isArbitrum, chainId, fallbackChainId }; - }, [chainId]); + return useMemo( + () => ({ + isEthereum: ChainResolver.isL1Chain(chainId), + isDev: ChainResolver.isTestnet(chainId), + isArbitrum: ChainResolver.isL2Chain(chainId), + fallbackChainId: ChainResolver.resolveToMainnetChainId(chainId), + chainId, + }), + [chainId] + ); } export default useChainState; diff --git a/projects/ui/src/hooks/farmer/useInterpolateDeposits.ts b/projects/ui/src/hooks/farmer/useInterpolateDeposits.ts index f913b6361..2527ab3e4 100644 --- a/projects/ui/src/hooks/farmer/useInterpolateDeposits.ts +++ b/projects/ui/src/hooks/farmer/useInterpolateDeposits.ts @@ -9,8 +9,8 @@ import { interpolateFarmerDepositedValue, SnapshotBeanstalk, } from '~/util/Interpolate'; -import { ZERO_BN } from '~/constants'; -import useSdk from '../sdk'; +import { SupportedChainId, ZERO_BN } from '~/constants'; +import { UNRIPE_BEAN_WSTETH } from '~/constants/tokens'; import useUnripeUnderlyingMap from '../beanstalk/useUnripeUnderlying'; const useInterpolateDeposits = ( @@ -22,8 +22,9 @@ const useInterpolateDeposits = ( const beanPools = useAppSelector((state) => state._bean.pools); const underlyingMap = useUnripeUnderlyingMap(); - const sdk = useSdk(); - const urBeanLP = sdk.tokens.UNRIPE_BEAN_WSTETH; + // const sdk = useSdk(); + // BS3TODO: fix me + const urBeanLP = UNRIPE_BEAN_WSTETH[SupportedChainId.ETH_MAINNET]; return useMemo(() => { if ( diff --git a/projects/ui/src/pages/mainnet.tsx b/projects/ui/src/pages/mainnet.tsx index a188c2702..1b9e3feb3 100644 --- a/projects/ui/src/pages/mainnet.tsx +++ b/projects/ui/src/pages/mainnet.tsx @@ -1,9 +1,11 @@ import React from 'react'; import { Box, Typography } from '@mui/material'; -const EthMainnet = () => ( +const EthMainnet = ({ message }: { message?: string }) => ( - We've moved to Arbitrum! + + {message || 'We've moved to Arbitrum!'} + ); diff --git a/projects/ui/src/state/beanstalk/silo/updater.ts b/projects/ui/src/state/beanstalk/silo/updater.ts index 1592d0d44..f2e7bb007 100644 --- a/projects/ui/src/state/beanstalk/silo/updater.ts +++ b/projects/ui/src/state/beanstalk/silo/updater.ts @@ -6,6 +6,7 @@ import { Token } from '@beanstalk/sdk'; import { ContractFunctionParameters } from 'viem'; import { multicall } from '@wagmi/core'; import { config } from '~/util/wagmi/config'; +import BNJS from 'bignumber.js'; import { ABISnippets, BEAN_TO_SEEDS, @@ -39,7 +40,10 @@ export const useFetchBeanstalkSilo = () => { const BEAN = sdk.tokens.BEAN; const STALK = sdk.tokens.STALK; - const whitelist = [...sdk.tokens.siloWhitelist]; + const wl = await sdk.contracts.beanstalk.getWhitelistedTokens(); + const whitelist = wl + .map((t) => sdk.tokens.findByAddress(t)) + .filter(Boolean) as Token[]; const wlContractCalls = buildWhitelistMultiCall(beanstalk, whitelist); const siloCalls = buildBeanstalkSiloMultiCall(beanstalk.address); @@ -61,19 +65,25 @@ export const useFetchBeanstalkSilo = () => { const bdvTotal = ZERO_BN; const chunked = chunkArray(wlResults.flat(), QUERIES_PER_TK); - const whitelistedAssetTotals = chunked.map((chunk, i) => { + const whitelistedAssetTotals: ({ + address: string; + deposited: BNJS; + depositedBdv: BNJS; + totalGerminating: BNJS; + bdvPerToken: BNJS; + stemTip: ethers.BigNumber; + } | null)[] = []; + + chunked.forEach((chunk, i) => { const token = whitelist[i]; const data = chunk.map((d) => parseCallResult(d)); const stemTip = stemTips.get(token.address); - if (!stemTip) { - throw new Error( - `[beanstalk/silo/useFetchBeanstalkSilo]: Stem Tip not found for: ${token.symbol}` - ); + whitelistedAssetTotals.push(null); } - return { + whitelistedAssetTotals.push({ address: token.address, deposited: transform(data[0], 'bnjs', token), depositedBdv: tokenIshEqual(token, sdk.tokens.BEAN) @@ -82,14 +92,38 @@ export const useFetchBeanstalkSilo = () => { totalGerminating: transform(data[2], 'bnjs', token), bdvPerToken: transform(data[3], 'bnjs', token), stemTip: stemTips.get(token.address) || ethers.BigNumber.from(0), - }; + }); }); + // const whitelistedAssetTotals = chunked.map((chunk, i) => { + // const token = whitelist[i]; + // const data = chunk.map((d) => parseCallResult(d)); + + // const stemTip = stemTips.get(token.address); + + // if (!stemTip) { + // throw new Error( + // `[beanstalk/silo/useFetchBeanstalkSilo]: Stem Tip not found for: ${token.symbol}` + // ); + // } + + // return { + // address: token.address, + // deposited: transform(data[0], 'bnjs', token), + // depositedBdv: tokenIshEqual(token, sdk.tokens.BEAN) + // ? ONE_BN + // : transform(data[1], 'bnjs', token), + // totalGerminating: transform(data[2], 'bnjs', token), + // bdvPerToken: transform(data[3], 'bnjs', token), + // stemTip: stemTips.get(token.address) || ethers.BigNumber.from(0), + // }; + // }); + console.debug('[beanstalk/silo/useBeanstalkSilo] RESULT', [ stalkTotal, bdvTotal, whitelistedAssetTotals[0], - whitelistedAssetTotals[0].deposited.toString(), + whitelistedAssetTotals[0]?.deposited.toString(), ]); // farmableStalk and farmableSeed are derived from farmableBeans @@ -100,12 +134,14 @@ export const useFetchBeanstalkSilo = () => { /// Aggregate balances const balances = whitelistedAssetTotals.reduce((agg, curr) => { + if (!curr) return agg; const token = sdk.tokens.findByAddress(curr.address); if (!token) throw new Error(`Token not found in SDK: ${curr.address}`); const stemTip = stemTips.get(token.address); - if (!stemTip) - throw new Error(`Stem Tip not found in SDK: ${curr.address}`); + if (!stemTip) { + return agg; + } agg[curr.address] = { stemTip, From 6d849fdfa656b72d484dfded77ddc3848d9d8651 Mon Sep 17 00:00:00 2001 From: Spacebean Date: Thu, 12 Sep 2024 11:45:39 -0600 Subject: [PATCH 05/14] update gql schema --- projects/ui/src/graph/graphql.schema.json | 12 ++++++++++++ projects/ui/src/graph/schema-snapshot1.graphql | 1 + 2 files changed, 13 insertions(+) diff --git a/projects/ui/src/graph/graphql.schema.json b/projects/ui/src/graph/graphql.schema.json index 9cb71a519..8b9f59fcb 100644 --- a/projects/ui/src/graph/graphql.schema.json +++ b/projects/ui/src/graph/graphql.schema.json @@ -128579,6 +128579,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "cover", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "created", "description": null, diff --git a/projects/ui/src/graph/schema-snapshot1.graphql b/projects/ui/src/graph/schema-snapshot1.graphql index 16074926c..01ac8ca08 100644 --- a/projects/ui/src/graph/schema-snapshot1.graphql +++ b/projects/ui/src/graph/schema-snapshot1.graphql @@ -296,6 +296,7 @@ type Space { categories: [String] children: [Space] coingecko: String + cover: String created: Int! delegationPortal: DelegationPortal domain: String From e8cc4223ae8c9c514b78099318aeed759530333c Mon Sep 17 00:00:00 2001 From: Spacebean Date: Fri, 13 Sep 2024 11:39:31 -0600 Subject: [PATCH 06/14] feat: minor updates to UI --- .../ui/src/components/Silo/Actions/Deposit.tsx | 18 ++++++++++++++++++ .../ui/src/lib/Txn/FormTxn/FormTxnBundler.ts | 3 ++- projects/ui/src/types.ts | 8 ++++++++ 3 files changed, 28 insertions(+), 1 deletion(-) diff --git a/projects/ui/src/components/Silo/Actions/Deposit.tsx b/projects/ui/src/components/Silo/Actions/Deposit.tsx index 383eb479e..1577c98aa 100644 --- a/projects/ui/src/components/Silo/Actions/Deposit.tsx +++ b/projects/ui/src/components/Silo/Actions/Deposit.tsx @@ -590,6 +590,24 @@ const Deposit: FC<{ export default Deposit; +// leaving as reference for any deposit w/o claim & do x +// const farmDeposit = sdk.silo.buildDeposit(target, account); +// farmDeposit.setInputToken(tokenIn); +// const aFarm = sdk.farm.createAdvancedFarm(); + +// aFarm.add([...farmDeposit.workflow.generators] as any[]); +// await aFarm.estimate(amountIn); + +// await farmDeposit.estimate(amountIn); + +// const farmDepositTx = await aFarm.execute(amountIn, { +// slippage: values.settings.slippage, +// }); +// const farmDepositReceipt = await farmDepositTx.wait(); + +// txToast.success(farmDepositReceipt); +// formActions.resetForm(); + // const initTokenList = useMemo(() => { // const tokens = sdk.tokens; // if (tokens.BEAN.equals(whitelistedToken)) { diff --git a/projects/ui/src/lib/Txn/FormTxn/FormTxnBundler.ts b/projects/ui/src/lib/Txn/FormTxn/FormTxnBundler.ts index 5224c387b..10d1cabba 100644 --- a/projects/ui/src/lib/Txn/FormTxn/FormTxnBundler.ts +++ b/projects/ui/src/lib/Txn/FormTxn/FormTxnBundler.ts @@ -15,6 +15,7 @@ import { } from '~/lib/Txn/FormTxn/types'; import { FormTxnBundlerPresets as presets } from '~/lib/Txn/FormTxn/presets'; import { Token } from '@beanstalk/sdk-core'; +import { FarmWorkflow, AdvancedFarmWorkflow } from '~/types'; type FormTxnFarmStep = | MowFarmStep @@ -130,7 +131,7 @@ export class FormTxnBundler { gasMultiplier?: number, advancedFarm?: boolean ) { - let farm: any; + let farm: FarmWorkflow | AdvancedFarmWorkflow; if (advancedFarm) { farm = this._sdk.farm.createAdvancedFarm(); } else { diff --git a/projects/ui/src/types.ts b/projects/ui/src/types.ts index 8a963cef3..3b41e32d5 100644 --- a/projects/ui/src/types.ts +++ b/projects/ui/src/types.ts @@ -1,3 +1,4 @@ +import { BeanstalkSDK } from '@beanstalk/sdk'; import React from 'react'; export type FC = React.FC>; @@ -5,3 +6,10 @@ export type FC = React.FC>; export type MayPromise = V | Promise; export type MayArray = V | V[]; + +// Beanstalk SDK Workflows +type SDkFarm = BeanstalkSDK['farm']; + +export type FarmWorkflow = ReturnType; +export type AdvancedFarmWorkflow = ReturnType; +export type AdvancedPipeWorkflow = ReturnType; From 7e13f98cc8a791bdb77f6a24c0c12c0715a116d9 Mon Sep 17 00:00:00 2001 From: Spacebean Date: Fri, 13 Sep 2024 12:28:36 -0600 Subject: [PATCH 07/14] feat: update reseed jsons --- .../exports/storage-accounts20736200.json | 24386 +++++++++++++--- .../exports/storage-fertilizer20736200.json | 2 +- .../data/exports/storage-system20736200.json | 2 +- 3 files changed, 20095 insertions(+), 4295 deletions(-) diff --git a/protocol/reseed/data/exports/storage-accounts20736200.json b/protocol/reseed/data/exports/storage-accounts20736200.json index c1d158513..5d0470787 100644 --- a/protocol/reseed/data/exports/storage-accounts20736200.json +++ b/protocol/reseed/data/exports/storage-accounts20736200.json @@ -470,9 +470,7 @@ "plots": { "259307845556208": "0x63cb2c21f" }, - "plotIndexes": [ - "0xebd6d00597f0" - ] + "plotIndexes": ["0xebd6d00597f0"] } }, "depositAllowances": {}, @@ -1141,11 +1139,7 @@ "264869362106309": "0x4d20924851", "281473918555928": "0x827825acf" }, - "plotIndexes": [ - "0xca0865af5559", - "0xf0e5b43d7fc5", - "0xffffc0edd718" - ] + "plotIndexes": ["0xca0865af5559", "0xf0e5b43d7fc5", "0xffffc0edd718"] } }, "depositAllowances": {}, @@ -1269,10 +1263,7 @@ "311759016079886": "0x24a370445", "332692990408590": "0x2cb1096e1" }, - "plotIndexes": [ - "0x11b8b0d68b20e", - "0x12e951f83378e" - ] + "plotIndexes": ["0x11b8b0d68b20e", "0x12e951f83378e"] } }, "depositAllowances": {}, @@ -1472,9 +1463,7 @@ "plots": { "309578044631862": "0xf21dd5eb9" }, - "plotIndexes": [ - "0x1198f41616b36" - ] + "plotIndexes": ["0x1198f41616b36"] } }, "depositAllowances": {}, @@ -1536,9 +1525,7 @@ "plots": { "225503555091497": "0x3100845cf" }, - "plotIndexes": [ - "0xcd18234bfc29" - ] + "plotIndexes": ["0xcd18234bfc29"] } }, "depositAllowances": {}, @@ -1785,9 +1772,7 @@ "plots": { "656330490962897": "0x3080b7330" }, - "plotIndexes": [ - "0x254edd9c4e3d1" - ] + "plotIndexes": ["0x254edd9c4e3d1"] } }, "depositAllowances": {}, @@ -1854,9 +1839,7 @@ "plots": { "334429009280382": "0xb6785545b" }, - "plotIndexes": [ - "0x13029524cfd7e" - ] + "plotIndexes": ["0x13029524cfd7e"] } }, "depositAllowances": {}, @@ -2341,10 +2324,14 @@ "326066593794316": "0x9817c852d", "326115054051340": "0x10cf81804" }, +<<<<<<< HEAD "plotIndexes": [ "0x1288e4b7f090c", "0x1289993f3e00c" ] +======= + "plotIndexes": ["0x1288e4b7f090c", "0x1289993f3e00c"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -2504,10 +2491,7 @@ "373925950027664": "0xa8c3a872a", "582169824919253": "0x9ffa2d917" }, - "plotIndexes": [ - "0x154156b6c7790", - "0x2117af99cfed5" - ] + "plotIndexes": ["0x154156b6c7790", "0x2117af99cfed5"] } }, "depositAllowances": {}, @@ -2643,10 +2627,7 @@ "293603662086844": "0x12a05f200", "339785493449995": "0x12a05f200" }, - "plotIndexes": [ - "0x10b07edfbc2bc", - "0x1350879a30d0b" - ] + "plotIndexes": ["0x10b07edfbc2bc", "0x1350879a30d0b"] } }, "depositAllowances": {}, @@ -3397,11 +3378,7 @@ "267130014958056": "0x66c57d7e00", "372014214928944": "0x1e56f47eb0" }, - "plotIndexes": [ - "0xdc3030db97ce", - "0xf2f40da681e8", - "0x152584f21da30" - ] + "plotIndexes": ["0xdc3030db97ce", "0xf2f40da681e8", "0x152584f21da30"] } }, "depositAllowances": {}, @@ -4213,11 +4190,7 @@ "451881155731609": "0xa09e0fa9", "625899610647771": "0x36660db50" }, - "plotIndexes": [ - "0x10b342addaebc", - "0x19afbc7c4a099", - "0x239409bf52cdb" - ] + "plotIndexes": ["0x10b342addaebc", "0x19afbc7c4a099", "0x239409bf52cdb"] } }, "depositAllowances": {}, @@ -4403,9 +4376,7 @@ "plots": { "288633732961858": "0x443118235" }, - "plotIndexes": [ - "0x10682c71f9642" - ] + "plotIndexes": ["0x10682c71f9642"] } }, "depositAllowances": {}, @@ -4574,10 +4545,7 @@ "115734261815618": "0x13fc19e7938", "572446942692513": "0x48b32d84700" }, - "plotIndexes": [ - "0x69427b905942", - "0x208a330ac04a1" - ] + "plotIndexes": ["0x69427b905942", "0x208a330ac04a1"] } }, "depositAllowances": {}, @@ -4771,9 +4739,7 @@ "plots": { "506164338357844": "0x392e27dbe00" }, - "plotIndexes": [ - "0x1cc5a9195f654" - ] + "plotIndexes": ["0x1cc5a9195f654"] } }, "depositAllowances": {}, @@ -5092,9 +5058,7 @@ "plots": { "205258499222763": "0x15df3a4379" }, - "plotIndexes": [ - "0xbaae77eeeceb" - ] + "plotIndexes": ["0xbaae77eeeceb"] } }, "depositAllowances": {}, @@ -5458,10 +5422,14 @@ "260751601304940": "0xd0101f373", "252900231373437": "0x25cf47e59" }, +<<<<<<< HEAD "plotIndexes": [ "0xed26f692056c", "0xe602ec74627d" ] +======= + "plotIndexes": ["0xed26f692056c", "0xe602ec74627d"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -5582,9 +5550,7 @@ "plots": { "716821446204135": "0x13af27b77c" }, - "plotIndexes": [ - "0x28bf1ffab1ae7" - ] + "plotIndexes": ["0x28bf1ffab1ae7"] } }, "depositAllowances": {}, @@ -5653,11 +5619,7 @@ "711678653676332": "0x61ffbdc5", "714806519970192": "0x681c6f05" }, - "plotIndexes": [ - "0x6a9933ab95d6", - "0x287449958bb2c", - "0x28a1cdcb4b990" - ] + "plotIndexes": ["0x6a9933ab95d6", "0x287449958bb2c", "0x28a1cdcb4b990"] } }, "depositAllowances": {}, @@ -6097,9 +6059,7 @@ "plots": { "242202028393123": "0x468092963" }, - "plotIndexes": [ - "0xdc480dddc2a3" - ] + "plotIndexes": ["0xdc480dddc2a3"] } }, "depositAllowances": {}, @@ -6426,10 +6386,7 @@ "154125130757084": "0x251ea0b69", "829906387458599": "0x4e1c49b3" }, - "plotIndexes": [ - "0x8c2d0dab73dc", - "0x2f2cba36bda27" - ] + "plotIndexes": ["0x8c2d0dab73dc", "0x2f2cba36bda27"] } }, "depositAllowances": {}, @@ -6662,11 +6619,7 @@ "695495577990844": "0xb06aaa89", "696086990150023": "0x50d294b1" }, - "plotIndexes": [ - "0x278635556ebfb", - "0x2788caede76bc", - "0x2791661c7d987" - ] + "plotIndexes": ["0x278635556ebfb", "0x2788caede76bc", "0x2791661c7d987"] } }, "depositAllowances": {}, @@ -7364,11 +7317,7 @@ "698249185306444": "0x15b80f990", "700134813855459": "0xf2c58010e" }, - "plotIndexes": [ - "0x27aeecbeac203", - "0x27b0dcea7a74c", - "0x27cc4d6dfeee3" - ] + "plotIndexes": ["0x27aeecbeac203", "0x27b0dcea7a74c", "0x27cc4d6dfeee3"] } }, "depositAllowances": {}, @@ -7551,9 +7500,7 @@ "plots": { "710118154870377": "0x3aaf4cf0" }, - "plotIndexes": [ - "0x285d9445e9e69" - ] + "plotIndexes": ["0x285d9445e9e69"] } }, "depositAllowances": {}, @@ -7736,9 +7683,7 @@ "plots": { "510095548540793": "0x6feb9560" }, - "plotIndexes": [ - "0x1cfeddff8e779" - ] + "plotIndexes": ["0x1cfeddff8e779"] } }, "depositAllowances": {}, @@ -7877,9 +7822,7 @@ "plots": { "922232828111947": "0x5a395b1" }, - "plotIndexes": [ - "0x346c4101eac4b" - ] + "plotIndexes": ["0x346c4101eac4b"] } }, "depositAllowances": {}, @@ -8013,9 +7956,7 @@ "plots": { "404800573112562": "0x211d1ae3" }, - "plotIndexes": [ - "0x17029fa5d80f2" - ] + "plotIndexes": ["0x17029fa5d80f2"] } }, "depositAllowances": {}, @@ -8327,10 +8268,7 @@ "221202055914502": "0x16ef9ec3f6", "263964858351524": "0x14b8fd2c22" }, - "plotIndexes": [ - "0xc92e9df76406", - "0xf0131b9d7fa4" - ] + "plotIndexes": ["0xc92e9df76406", "0xf0131b9d7fa4"] } }, "depositAllowances": {}, @@ -8455,9 +8393,7 @@ "plots": { "802402236468190": "0x3b195880" }, - "plotIndexes": [ - "0x2d9c7d4458bde" - ] + "plotIndexes": ["0x2d9c7d4458bde"] } }, "depositAllowances": {}, @@ -8597,10 +8533,7 @@ "218827625606992": "0x1523e75c3b", "379279622042320": "0x162a1448cf" }, - "plotIndexes": [ - "0xc705c6e42f50", - "0x158f3eb2472d0" - ] + "plotIndexes": ["0xc705c6e42f50", "0x158f3eb2472d0"] } }, "depositAllowances": {}, @@ -8724,12 +8657,7 @@ "467318943712484": "0x4b1911510", "640173287406938": "0x473476ad7" }, - "plotIndexes": [ - "0xd131aa07f8c3", - "0x19af6720c2d14", - "0x1a9062ba304e4", - "0x2463bf563fd5a" - ] + "plotIndexes": ["0xd131aa07f8c3", "0x19af6720c2d14", "0x1a9062ba304e4", "0x2463bf563fd5a"] } }, "depositAllowances": {}, @@ -8928,11 +8856,15 @@ "327094716728275": "0x6b606afea", "343639296408424": "0x8ea7acf42" }, +<<<<<<< HEAD "plotIndexes": [ "0x1298644ade656", "0x1297dac6603d3", "0x13889c2317b68" ] +======= + "plotIndexes": ["0x1298644ade656", "0x1297dac6603d3", "0x13889c2317b68"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -9408,12 +9340,7 @@ "381366697898472": "0x12298f9fa66", "472919334210993": "0x320fcbd7b67" }, - "plotIndexes": [ - "0x10d9bf2db1465", - "0x13a30c8ac2d36", - "0x15ad9da8eb1e8", - "0x1ae1e1cec4db1" - ] + "plotIndexes": ["0x10d9bf2db1465", "0x13a30c8ac2d36", "0x15ad9da8eb1e8", "0x1ae1e1cec4db1"] } }, "depositAllowances": {}, @@ -9894,9 +9821,7 @@ "plots": { "422363385300603": "0x8f68a580" }, - "plotIndexes": [ - "0x18023238c067b" - ] + "plotIndexes": ["0x18023238c067b"] } }, "depositAllowances": {}, @@ -10052,9 +9977,7 @@ "plots": { "635286832458963": "0x4490ba802" }, - "plotIndexes": [ - "0x241ca3dfaacd3" - ] + "plotIndexes": ["0x241ca3dfaacd3"] } }, "depositAllowances": {}, @@ -10841,10 +10764,7 @@ "742807303929456": "0x1c0b05499", "803378843060369": "0x5ba76" }, - "plotIndexes": [ - "0x2a3944d7cbe70", - "0x2daab368f8891" - ] + "plotIndexes": ["0x2a3944d7cbe70", "0x2daab368f8891"] } }, "depositAllowances": {}, @@ -11033,9 +10953,7 @@ "plots": { "625914213173291": "0x457de89a" }, - "plotIndexes": [ - "0x239440256082b" - ] + "plotIndexes": ["0x239440256082b"] } }, "depositAllowances": {}, @@ -11249,11 +11167,7 @@ "467315572517841": "0x64787823", "513189588115820": "0x67ed50094" }, - "plotIndexes": [ - "0x1a905c72b23f4", - "0x1a90562b2abd1", - "0x1d2be431a216c" - ] + "plotIndexes": ["0x1a905c72b23f4", "0x1a90562b2abd1", "0x1d2be431a216c"] } }, "depositAllowances": {}, @@ -11367,9 +11281,7 @@ "plots": { "61618647066095": "0x24c13a04" }, - "plotIndexes": [ - "0x380ab591e5ef" - ] + "plotIndexes": ["0x380ab591e5ef"] } }, "depositAllowances": {}, @@ -11708,9 +11620,7 @@ "plots": { "705511785947571": "0x95271964" }, - "plotIndexes": [ - "0x281a8c362e1b3" - ] + "plotIndexes": ["0x281a8c362e1b3"] } }, "depositAllowances": {}, @@ -12134,10 +12044,14 @@ "206627322508711": "0x9f9898f55", "206670163756284": "0x9f61db67b" }, +<<<<<<< HEAD "plotIndexes": [ "0xbbed2c28b5a7", "0xbbf725b244fc" ] +======= + "plotIndexes": ["0xbbed2c28b5a7", "0xbbf725b244fc"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -12373,9 +12287,7 @@ "plots": { "122213630970075": "0x9502f900" }, - "plotIndexes": [ - "0x6f27140f88db" - ] + "plotIndexes": ["0x6f27140f88db"] } }, "depositAllowances": {}, @@ -12548,9 +12460,7 @@ "plots": { "219659688648330": "0x5ff82ca3" }, - "plotIndexes": [ - "0xc7c781b69e8a" - ] + "plotIndexes": ["0xc7c781b69e8a"] } }, "depositAllowances": {}, @@ -12725,9 +12635,7 @@ "plots": { "921105492232241": "0x1c8c179db8" }, - "plotIndexes": [ - "0x345bd95aa4831" - ] + "plotIndexes": ["0x345bd95aa4831"] } }, "depositAllowances": {}, @@ -12812,10 +12720,7 @@ "843583452824618": "0xef0603cd9", "889722682869114": "0x24bcc1767d" }, - "plotIndexes": [ - "0x2ff3c140b442a", - "0x32932b476057a" - ] + "plotIndexes": ["0x2ff3c140b442a", "0x32932b476057a"] } }, "depositAllowances": {}, @@ -12890,11 +12795,7 @@ "94355302482701": "0x35e1158e", "859415870473872": "0x2136f3b35" }, - "plotIndexes": [ - "0x380ab41a9ed7", - "0x55d0ce49830d", - "0x30da259ac8690" - ] + "plotIndexes": ["0x380ab41a9ed7", "0x55d0ce49830d", "0x30da259ac8690"] } }, "depositAllowances": {}, @@ -13006,9 +12907,7 @@ "plots": { "708120196123286": "0x12" }, - "plotIndexes": [ - "0x2840814bf8a96" - ] + "plotIndexes": ["0x2840814bf8a96"] } }, "depositAllowances": {}, @@ -13132,10 +13031,14 @@ "672857205023752": "0x9a923bc3540", "684773211540053": "0x7b2ea17e44" }, +<<<<<<< HEAD "plotIndexes": [ "0x263f5c6b0a408", "0x26ecc30068a55" ] +======= + "plotIndexes": ["0x263f5c6b0a408", "0x26ecc30068a55"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -13634,9 +13537,7 @@ "plots": { "288960520307671": "0xa99b62916" }, - "plotIndexes": [ - "0x106cedd2ac3d7" - ] + "plotIndexes": ["0x106cedd2ac3d7"] } }, "depositAllowances": {}, @@ -13733,12 +13634,16 @@ "582212768487404": "0x19b57d485bd", "591607575479537": "0x1d270f8fda" }, +<<<<<<< HEAD "plotIndexes": [ "0x1fcbd5d614f76", "0x21a03136fcefd", "0x21184f93fd7ec", "0x21a105f6204f1" ] +======= + "plotIndexes": ["0x1fcbd5d614f76", "0x21a03136fcefd", "0x21184f93fd7ec", "0x21a105f6204f1"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -13812,9 +13717,7 @@ "plots": { "325833631808009": "0xb232df280" }, - "plotIndexes": [ - "0x128580de13a09" - ] + "plotIndexes": ["0x128580de13a09"] } }, "depositAllowances": {}, @@ -14214,9 +14117,7 @@ "plots": { "328431316120274": "0x4b498e32a" }, - "plotIndexes": [ - "0x12ab4dfee32d2" - ] + "plotIndexes": ["0x12ab4dfee32d2"] } }, "depositAllowances": {}, @@ -14293,9 +14194,7 @@ "plots": { "733779102875875": "0x6d6f5e574" }, - "plotIndexes": [ - "0x29b5e42c540e3" - ] + "plotIndexes": ["0x29b5e42c540e3"] } }, "depositAllowances": {}, @@ -14409,9 +14308,7 @@ "plots": { "221885504514381": "0xc44baebd" }, - "plotIndexes": [ - "0xc9cdbead694d" - ] + "plotIndexes": ["0xc9cdbead694d"] } }, "depositAllowances": {}, @@ -14951,12 +14848,7 @@ "921452930531316": "0xc1e9153c", "978072441547137": "0x361626b90" }, - "plotIndexes": [ - "0x345ad5b401cbf", - "0x345bce12320a2", - "0x3460e7a99fff4", - "0x3798d3c716981" - ] + "plotIndexes": ["0x345ad5b401cbf", "0x345bce12320a2", "0x3460e7a99fff4", "0x3798d3c716981"] } }, "depositAllowances": {}, @@ -15012,11 +14904,15 @@ "275066767853782": "0x2f29f980", "276925106918842": "0x3df508ea9b" }, +<<<<<<< HEAD "plotIndexes": [ "0xfa2c2826c256", "0xfa2bf8fcc8d6", "0xfbdca6a095ba" ] +======= + "plotIndexes": ["0xfa2c2826c256", "0xfa2bf8fcc8d6", "0xfbdca6a095ba"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -15072,9 +14968,7 @@ "plots": { "829727454479103": "0xc7251f9c" }, - "plotIndexes": [ - "0x2f2a1fa2f42ff" - ] + "plotIndexes": ["0x2f2a1fa2f42ff"] } }, "depositAllowances": {}, @@ -15253,9 +15147,7 @@ "plots": { "829217258503469": "0x13a30136" }, - "plotIndexes": [ - "0x2f22b30227d2d" - ] + "plotIndexes": ["0x2f22b30227d2d"] } }, "depositAllowances": {}, @@ -15411,10 +15303,7 @@ "320733140604175": "0x543f0f7977", "319211641505303": "0x26ef69816a" }, - "plotIndexes": [ - "0x123b480e9d50f", - "0x1225240800617" - ] + "plotIndexes": ["0x123b480e9d50f", "0x1225240800617"] } }, "depositAllowances": {}, @@ -17167,9 +17056,7 @@ "plots": { "273849569531660": "0x5e58b0a751" }, - "plotIndexes": [ - "0xf9109250570c" - ] + "plotIndexes": ["0xf9109250570c"] } }, "depositAllowances": {}, @@ -17225,9 +17112,7 @@ "plots": { "782079849018782": "0x382139cb6" }, - "plotIndexes": [ - "0x2c74c2796359e" - ] + "plotIndexes": ["0x2c74c2796359e"] } }, "depositAllowances": {}, @@ -17398,10 +17283,7 @@ "704261722238546": "0x9502f9000", "705035364874150": "0xc8a3fc91" }, - "plotIndexes": [ - "0x28085b5c86e52", - "0x28139d67a37a6" - ] + "plotIndexes": ["0x28085b5c86e52", "0x28139d67a37a6"] } }, "depositAllowances": {}, @@ -17465,9 +17347,7 @@ "plots": { "380108286748272": "0x166c894561" }, - "plotIndexes": [ - "0x159b4db686670" - ] + "plotIndexes": ["0x159b4db686670"] } }, "depositAllowances": {}, @@ -17899,9 +17779,7 @@ "plots": { "231383431415446": "0x422d56d8b" }, - "plotIndexes": [ - "0xd271273c8696" - ] + "plotIndexes": ["0xd271273c8696"] } }, "depositAllowances": {}, @@ -19158,10 +19036,7 @@ "710372916011430": "0x11652efc3", "857167591329417": "0x13b1f7855e" }, - "plotIndexes": [ - "0x28614955121a6", - "0x30b96e1cb4e89" - ] + "plotIndexes": ["0x28614955121a6", "0x30b96e1cb4e89"] } }, "depositAllowances": {}, @@ -19367,9 +19242,7 @@ "plots": { "842942611006904": "0x6e30922b1" }, - "plotIndexes": [ - "0x2fea6dee525b8" - ] + "plotIndexes": ["0x2fea6dee525b8"] } }, "depositAllowances": {}, @@ -19752,11 +19625,7 @@ "315350882670410": "0x1f499cd0c0", "592915046792108": "0xc39f938cf" }, - "plotIndexes": [ - "0x798896a987a0", - "0x11ecf5957574a", - "0x21b40cabefbac" - ] + "plotIndexes": ["0x798896a987a0", "0x11ecf5957574a", "0x21b40cabefbac"] } }, "depositAllowances": {}, @@ -20000,11 +19869,7 @@ "221828136095026": "0x48f22cbc1", "462669721238188": "0x13dcbc6f9" }, - "plotIndexes": [ - "0x37fd973416f3", - "0xc9c06340cd32", - "0x1a4cbb061faac" - ] + "plotIndexes": ["0x37fd973416f3", "0xc9c06340cd32", "0x1a4cbb061faac"] } }, "depositAllowances": {}, @@ -20146,10 +20011,7 @@ "64930655802639": "0x3b9aca00", "99189665085461": "0x2540be400" }, - "plotIndexes": [ - "0x3b0dd8ac950f", - "0x5a3664c0b815" - ] + "plotIndexes": ["0x3b0dd8ac950f", "0x5a3664c0b815"] } }, "depositAllowances": {}, @@ -20344,12 +20206,16 @@ "397292891284114": "0x2953df189", "399504324312896": "0x2efb78098" }, +<<<<<<< HEAD "plotIndexes": [ "0x16a0b281b0de5", "0x165494cc27d6d", "0x16955f5a82292", "0x16b58d9563f40" ] +======= + "plotIndexes": ["0x16a0b281b0de5", "0x165494cc27d6d", "0x16955f5a82292", "0x16b58d9563f40"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -20434,10 +20300,7 @@ "716942471194887": "0x69a0c61", "803620842189824": "0xbcafb03b0" }, - "plotIndexes": [ - "0x28c0e2d51e907", - "0x2dae38ed53400" - ] + "plotIndexes": ["0x28c0e2d51e907", "0x2dae38ed53400"] } }, "depositAllowances": {}, @@ -20546,12 +20409,16 @@ "249938635416148": "0x1aac2f468", "281320695833261": "0x2cc7e081b" }, +<<<<<<< HEAD "plotIndexes": [ "0xd011152c2087", "0xe3a43d0ed127", "0xe3515f946254", "0xffdc1424a2ad" ] +======= + "plotIndexes": ["0xd011152c2087", "0xe3a43d0ed127", "0xe3515f946254", "0xffdc1424a2ad"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -20671,10 +20538,7 @@ "170713622328250": "0x4bedf2a6", "695948584939839": "0x899ac16f" }, - "plotIndexes": [ - "0x9b435cd133ba", - "0x278f6282ff13f" - ] + "plotIndexes": ["0x9b435cd133ba", "0x278f6282ff13f"] } }, "depositAllowances": {}, @@ -21073,9 +20937,7 @@ "plots": { "698245289553297": "0xe83479bb" }, - "plotIndexes": [ - "0x27b0ce6732d91" - ] + "plotIndexes": ["0x27b0ce6732d91"] } }, "depositAllowances": {}, @@ -21384,9 +21246,7 @@ "plots": { "437461460697730": "0x17f36a2bd" }, - "plotIndexes": [ - "0x18dde6ef7c282" - ] + "plotIndexes": ["0x18dde6ef7c282"] } }, "depositAllowances": {}, @@ -21511,12 +21371,7 @@ "787226641244792": "0x36661fc3f", "920389666843550": "0x3dba71d3a" }, - "plotIndexes": [ - "0x18e003831ae00", - "0x2a39be6ee4fa0", - "0x2cbfa7c4f2278", - "0x34516eb25ab9e" - ] + "plotIndexes": ["0x18e003831ae00", "0x2a39be6ee4fa0", "0x2cbfa7c4f2278", "0x34516eb25ab9e"] } }, "depositAllowances": {}, @@ -21860,10 +21715,14 @@ "696390462795444": "0x14c93464c0", "696118400377928": "0x15dbc760f0" }, +<<<<<<< HEAD "plotIndexes": [ "0x2795d0a28eeb4", "0x2791db1f9e448" ] +======= + "plotIndexes": ["0x2795d0a28eeb4", "0x2791db1f9e448"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -22268,10 +22127,7 @@ "203059138411712": "0x34656de40", "687187720700622": "0x1d4573807b" }, - "plotIndexes": [ - "0xb8ae63d03cc0", - "0x270fe5bfc82ce" - ] + "plotIndexes": ["0xb8ae63d03cc0", "0x270fe5bfc82ce"] } }, "depositAllowances": {}, @@ -22343,9 +22199,7 @@ "plots": { "710861186022257": "0x2acc19d" }, - "plotIndexes": [ - "0x28686447a3b71" - ] + "plotIndexes": ["0x28686447a3b71"] } }, "depositAllowances": {}, @@ -22521,9 +22375,7 @@ "plots": { "828631129842715": "0xdaf7476" }, - "plotIndexes": [ - "0x2f1a2b824e41b" - ] + "plotIndexes": ["0x2f1a2b824e41b"] } }, "depositAllowances": {}, @@ -22811,11 +22663,7 @@ "262966718164117": "0x3d2384738d", "281320695818691": "0x38ea" }, - "plotIndexes": [ - "0xefac42d095a4", - "0xef2ab5d2ec95", - "0xffdc142469c3" - ] + "plotIndexes": ["0xefac42d095a4", "0xef2ab5d2ec95", "0xffdc142469c3"] } }, "depositAllowances": {}, @@ -23266,9 +23114,7 @@ "plots": { "980155130122492": "0x4309db79" }, - "plotIndexes": [ - "0x37b72265b10fc" - ] + "plotIndexes": ["0x37b72265b10fc"] } }, "depositAllowances": {}, @@ -23375,11 +23221,7 @@ "143946577539573": "0x489f3077ec", "433523087906845": "0x29caa944f00" }, - "plotIndexes": [ - "0x6fddcfa0302c", - "0x82eb2c9ef1f5", - "0x18a4975a8181d" - ] + "plotIndexes": ["0x6fddcfa0302c", "0x82eb2c9ef1f5", "0x18a4975a8181d"] } }, "depositAllowances": {}, @@ -23599,9 +23441,7 @@ "plots": { "247712146323222": "0x1fec3fcb8" }, - "plotIndexes": [ - "0xe14afa7cf716" - ] + "plotIndexes": ["0xe14afa7cf716"] } }, "depositAllowances": {}, @@ -23670,9 +23510,7 @@ "plots": { "360425196306582": "0x51fe5f296" }, - "plotIndexes": [ - "0x147ce07cb4096" - ] + "plotIndexes": ["0x147ce07cb4096"] } }, "depositAllowances": {}, @@ -23874,9 +23712,7 @@ "plots": { "710259438675628": "0xd1d9e78" }, - "plotIndexes": [ - "0x285fa298a66ac" - ] + "plotIndexes": ["0x285fa298a66ac"] } }, "depositAllowances": {}, @@ -24869,9 +24705,7 @@ "plots": { "327967567546864": "0x32710c5aff" }, - "plotIndexes": [ - "0x12a48e65c89f0" - ] + "plotIndexes": ["0x12a48e65c89f0"] } }, "depositAllowances": {}, @@ -24931,9 +24765,7 @@ "plots": { "328333232198974": "0x202a13840" }, - "plotIndexes": [ - "0x12a9e09ac553e" - ] + "plotIndexes": ["0x12a9e09ac553e"] } }, "depositAllowances": {}, @@ -25115,9 +24947,7 @@ "plots": { "372144522811616": "0x173d7c19c" }, - "plotIndexes": [ - "0x15276a61658e0" - ] + "plotIndexes": ["0x15276a61658e0"] } }, "depositAllowances": {}, @@ -25191,9 +25021,7 @@ "plots": { "705496908203154": "0x629e07e" }, - "plotIndexes": [ - "0x281a54c9a8492" - ] + "plotIndexes": ["0x281a54c9a8492"] } }, "depositAllowances": {}, @@ -25371,11 +25199,7 @@ "203073203411712": "0x2540be400", "805893939193172": "0x43d2f30a0" }, - "plotIndexes": [ - "0x4803eaf088b7", - "0xb8b1aa271b00", - "0x2dcf4cdf8e554" - ] + "plotIndexes": ["0x4803eaf088b7", "0xb8b1aa271b00", "0x2dcf4cdf8e554"] } }, "depositAllowances": {}, @@ -25958,11 +25782,7 @@ "698890211517596": "0x58a91090a8", "827563810470578": "0x3973b118b" }, - "plotIndexes": [ - "0xc9b489fd5999", - "0x27ba30ecb649c", - "0x2f0aa36f3bab2" - ] + "plotIndexes": ["0xc9b489fd5999", "0x27ba30ecb649c", "0x2f0aa36f3bab2"] } }, "depositAllowances": {}, @@ -26175,10 +25995,7 @@ "79180247523918": "0x3007fb0", "79180297888254": "0x4976a564" }, - "plotIndexes": [ - "0x48039686e24e", - "0x4803998761fe" - ] + "plotIndexes": ["0x48039686e24e", "0x4803998761fe"] } }, "depositAllowances": {}, @@ -26383,11 +26200,15 @@ "228686945368367": "0x13c1076758", "695319193240357": "0x663c60de" }, +<<<<<<< HEAD "plotIndexes": [ "0xc9bb8bb73890", "0xcffd5424b92f", "0x278639d84c325" ] +======= + "plotIndexes": ["0xc9bb8bb73890", "0xcffd5424b92f", "0x278639d84c325"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -26770,11 +26591,7 @@ "263947015910096": "0x4277e0cbe", "469175726963278": "0x25410bd8a" }, - "plotIndexes": [ - "0x661932bc99dc", - "0xf00ef41f72d0", - "0x1aab67c8afa4e" - ] + "plotIndexes": ["0x661932bc99dc", "0xf00ef41f72d0", "0x1aab67c8afa4e"] } }, "depositAllowances": {}, @@ -27083,12 +26900,7 @@ "821312920063558": "0x2b805f7b", "821599578141387": "0x15ffa0a9" }, - "plotIndexes": [ - "0x7cbe7d715e47", - "0x2a2577de92a45", - "0x2eafad0d98e46", - "0x2eb3d8f00b2cb" - ] + "plotIndexes": ["0x7cbe7d715e47", "0x2a2577de92a45", "0x2eafad0d98e46", "0x2eb3d8f00b2cb"] } }, "depositAllowances": {}, @@ -27158,9 +26970,7 @@ "plots": { "319161563141827": "0x9d626565e" }, - "plotIndexes": [ - "0x122469798d6c3" - ] + "plotIndexes": ["0x122469798d6c3"] } }, "depositAllowances": {}, @@ -27834,9 +27644,7 @@ "plots": { "802121584517836": "0x369d1b387" }, - "plotIndexes": [ - "0x2d9867c1ca2cc" - ] + "plotIndexes": ["0x2d9867c1ca2cc"] } }, "depositAllowances": {}, @@ -28058,11 +27866,7 @@ "139698958414857": "0x14dfd4b83", "168574996066331": "0x104162468" }, - "plotIndexes": [ - "0x511dd78b8674", - "0x7f0e32cab409", - "0x99516cc2301b" - ] + "plotIndexes": ["0x511dd78b8674", "0x7f0e32cab409", "0x99516cc2301b"] } }, "depositAllowances": {}, @@ -28434,11 +28238,7 @@ "408604736783604": "0x167754c6480", "406479934660901": "0x15f7705f500" }, - "plotIndexes": [ - "0x43fbe94ce38b", - "0x1739fb43084f4", - "0x171b0fc1d2125" - ] + "plotIndexes": ["0x43fbe94ce38b", "0x1739fb43084f4", "0x171b0fc1d2125"] } }, "depositAllowances": {}, @@ -28759,9 +28559,7 @@ "plots": { "383419389986175": "0x16070f04e2" }, - "plotIndexes": [ - "0x15cb7c88a457f" - ] + "plotIndexes": ["0x15cb7c88a457f"] } }, "depositAllowances": {}, @@ -29429,9 +29227,7 @@ "plots": { "220713870788997": "0x173dd6a53a" }, - "plotIndexes": [ - "0xc8bcf3dd8985" - ] + "plotIndexes": ["0xc8bcf3dd8985"] } }, "depositAllowances": {}, @@ -30873,9 +30669,7 @@ "plots": { "672838121314733": "0x4717a4a5b" }, - "plotIndexes": [ - "0x263f1553659ad" - ] + "plotIndexes": ["0x263f1553659ad"] } }, "depositAllowances": {}, @@ -31750,9 +31544,7 @@ "plots": { "270753617517203": "0xa28e6fcf" }, - "plotIndexes": [ - "0xf63fbd319a93" - ] + "plotIndexes": ["0xf63fbd319a93"] } }, "depositAllowances": {}, @@ -32088,10 +31880,7 @@ "218701606726030": "0x70e18992f", "733815599504575": "0x221be82c8" }, - "plotIndexes": [ - "0xc6e86f94a98e", - "0x29b66c2239cbf" - ] + "plotIndexes": ["0xc6e86f94a98e", "0x29b66c2239cbf"] } }, "depositAllowances": {}, @@ -32257,10 +32046,7 @@ "250294538522915": "0x4", "311893596417090": "0x6" }, - "plotIndexes": [ - "0xe3a43d0ed123", - "0x11baa6305ac42" - ] + "plotIndexes": ["0xe3a43d0ed123", "0x11baa6305ac42"] } }, "depositAllowances": {}, @@ -32421,9 +32207,7 @@ "plots": { "139710719558186": "0x1" }, - "plotIndexes": [ - "0x7f10efcf822a" - ] + "plotIndexes": ["0x7f10efcf822a"] } }, "depositAllowances": {}, @@ -32494,12 +32278,7 @@ "296377664705848": "0x70727724f", "593799800299595": "0x12fe0f800" }, - "plotIndexes": [ - "0xd2a0cc4c92f5", - "0xe1e089da18c3", - "0x10d8dcd6c9538", - "0x21c0eca2a204b" - ] + "plotIndexes": ["0xd2a0cc4c92f5", "0xe1e089da18c3", "0x10d8dcd6c9538", "0x21c0eca2a204b"] } }, "depositAllowances": {}, @@ -32845,9 +32624,7 @@ "plots": { "89552406100600": "0x71175311" }, - "plotIndexes": [ - "0x51728b5aba78" - ] + "plotIndexes": ["0x51728b5aba78"] } }, "depositAllowances": {}, @@ -33018,9 +32795,7 @@ "plots": { "761165787154183": "0x19f8fd7ac" }, - "plotIndexes": [ - "0x2b446b85bc707" - ] + "plotIndexes": ["0x2b446b85bc707"] } }, "depositAllowances": {}, @@ -33110,10 +32885,7 @@ "263902250213507": "0xa6c3e524d", "335286193422314": "0x1e7c2d8d9e" }, - "plotIndexes": [ - "0xf00487e12083", - "0x130f0e674ffea" - ] + "plotIndexes": ["0xf00487e12083", "0x130f0e674ffea"] } }, "depositAllowances": {}, @@ -33203,10 +32975,7 @@ "345401629709038": "0x51bb9d500", "428483895698649": "0x251a000980" }, - "plotIndexes": [ - "0x13a24157192ee", - "0x185b42e6524d9" - ] + "plotIndexes": ["0x13a24157192ee", "0x185b42e6524d9"] } }, "depositAllowances": {}, @@ -33390,10 +33159,7 @@ "387178819624322": "0x18", "401291905968469": "0x650c1b89" }, - "plotIndexes": [ - "0x1602318021d82", - "0x16cf90d81a955" - ] + "plotIndexes": ["0x1602318021d82", "0x16cf90d81a955"] } }, "depositAllowances": {}, @@ -33525,9 +33291,7 @@ "plots": { "695165389013847": "0x146ce4e5d" }, - "plotIndexes": [ - "0x2783fce128357" - ] + "plotIndexes": ["0x2783fce128357"] } }, "depositAllowances": {}, @@ -33665,9 +33429,7 @@ "plots": { "428480693333294": "0xbee037ab" }, - "plotIndexes": [ - "0x185b36f84ed2e" - ] + "plotIndexes": ["0x185b36f84ed2e"] } }, "depositAllowances": {}, @@ -34251,9 +34013,7 @@ "plots": { "695262582394210": "0x903ec3ba" }, - "plotIndexes": [ - "0x278566f3fcd62" - ] + "plotIndexes": ["0x278566f3fcd62"] } }, "depositAllowances": {}, @@ -35108,10 +34868,14 @@ "696088346127928": "0x492aa3f20", "696374692545444": "0x13f45b420" }, +<<<<<<< HEAD "plotIndexes": [ "0x27916b29a6e38", "0x279595e2e03a4" ] +======= + "plotIndexes": ["0x27916b29a6e38", "0x279595e2e03a4"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -35247,10 +35011,7 @@ "79244791972952": "0x1fc86366781", "526508270867756": "0x4759d7e8800" }, - "plotIndexes": [ - "0x48129dad0458", - "0x1dedb4274d52c" - ] + "plotIndexes": ["0x48129dad0458", "0x1dedb4274d52c"] } }, "depositAllowances": {}, @@ -35322,9 +35083,7 @@ "plots": { "592974120360191": "0xeadf0b37" }, - "plotIndexes": [ - "0x21b4e8bce18ff" - ] + "plotIndexes": ["0x21b4e8bce18ff"] } }, "depositAllowances": {}, @@ -35554,10 +35313,7 @@ "278393127641126": "0x110a626ad2", "726112472837908": "0x118acb9be8" }, - "plotIndexes": [ - "0xfd32737b2026", - "0x294653c02af14" - ] + "plotIndexes": ["0xfd32737b2026", "0x294653c02af14"] } }, "depositAllowances": {}, @@ -35750,9 +35506,7 @@ "plots": { "401439474290340": "0xa1e0f560" }, - "plotIndexes": [ - "0x16d1b69438ea4" - ] + "plotIndexes": ["0x16d1b69438ea4"] } }, "depositAllowances": {}, @@ -36192,9 +35946,7 @@ "plots": { "251638322154111": "0xa61cae0fa" }, - "plotIndexes": [ - "0xe4dd1ccdca7f" - ] + "plotIndexes": ["0xe4dd1ccdca7f"] } }, "depositAllowances": {}, @@ -36884,12 +36636,16 @@ "712614668536408": "0xd4ecdb71", "796591631208380": "0x90bda7781" }, +<<<<<<< HEAD "plotIndexes": [ "0x28615ac34b6a4", "0x286d40488c755", "0x2881e882e0a58", "0x2d47ef1358fbc" ] +======= + "plotIndexes": ["0x28615ac34b6a4", "0x286d40488c755", "0x2881e882e0a58", "0x2d47ef1358fbc"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -37061,11 +36817,7 @@ "122199613970823": "0x29f766028", "117219099496678": "0x2c804f425" }, - "plotIndexes": [ - "0x54594712d346", - "0x6f23d0951987", - "0x6a9c32c950e6" - ] + "plotIndexes": ["0x54594712d346", "0x6f23d0951987", "0x6a9c32c950e6"] } }, "depositAllowances": {}, @@ -39198,9 +38950,7 @@ "plots": { "660246036031041": "0x101a3d3291" }, - "plotIndexes": [ - "0x2587d82712641" - ] + "plotIndexes": ["0x2587d82712641"] } }, "depositAllowances": {}, @@ -39822,11 +39572,7 @@ "319977964011072": "0x15ed8f1415", "326650849478990": "0x107f259c63" }, - "plotIndexes": [ - "0xc7e063cb5df0", - "0x12304ace17e40", - "0x1291653d9494e" - ] + "plotIndexes": ["0xc7e063cb5df0", "0x12304ace17e40", "0x1291653d9494e"] } }, "depositAllowances": {}, @@ -40135,11 +39881,7 @@ "386944141009871": "0x1b08a5a8c6", "401612828045566": "0x1909ee90ed" }, - "plotIndexes": [ - "0x1111b11a97a0d", - "0x15fec7412a3cf", - "0x16d43c5f3f0fe" - ] + "plotIndexes": ["0x1111b11a97a0d", "0x15fec7412a3cf", "0x16d43c5f3f0fe"] } }, "depositAllowances": {}, @@ -40224,9 +39966,7 @@ "plots": { "92734901265345": "0x10b66fa2c" }, - "plotIndexes": [ - "0x545786d923c1" - ] + "plotIndexes": ["0x545786d923c1"] } }, "depositAllowances": {}, @@ -40356,9 +40096,7 @@ "plots": { "621038458340633": "0x23732a300" }, - "plotIndexes": [ - "0x234d4c8b38519" - ] + "plotIndexes": ["0x234d4c8b38519"] } }, "depositAllowances": {}, @@ -40465,9 +40203,7 @@ "plots": { "705252881467059": "0x11968a5" }, - "plotIndexes": [ - "0x2816c7b7a06b3" - ] + "plotIndexes": ["0x2816c7b7a06b3"] } }, "depositAllowances": {}, @@ -41026,9 +40762,7 @@ "plots": { "386528870598580": "0x2adfbd60d" }, - "plotIndexes": [ - "0x15f8bc40707b4" - ] + "plotIndexes": ["0x15f8bc40707b4"] } }, "depositAllowances": {}, @@ -41149,11 +40883,7 @@ "710982397909733": "0x3e00fc4", "710635821671358": "0x879102623" }, - "plotIndexes": [ - "0x2376b4f30c107", - "0x286a27d44dae5", - "0x28651cbb723be" - ] + "plotIndexes": ["0x2376b4f30c107", "0x286a27d44dae5", "0x28651cbb723be"] } }, "depositAllowances": {}, @@ -41280,9 +41010,7 @@ "plots": { "708357952746096": "0xbdcf460d" }, - "plotIndexes": [ - "0x2843f7025b270" - ] + "plotIndexes": ["0x2843f7025b270"] } }, "depositAllowances": {}, @@ -41660,11 +41388,15 @@ "416764948719656": "0x253334645", "416774934523501": "0x8d755275" }, +<<<<<<< HEAD "plotIndexes": [ "0x17b2b9fd66891", "0x17b0ba6b92828", "0x17b0df9ec6e6d" ] +======= + "plotIndexes": ["0x17b2b9fd66891", "0x17b0ba6b92828", "0x17b0df9ec6e6d"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -41827,12 +41559,7 @@ "592967559033979": "0x18715e484", "723779316763287": "0x368606c" }, - "plotIndexes": [ - "0x5d251b0dda7a", - "0x10e1aa2dc345b", - "0x21b4d04b8347b", - "0x2924601124a97" - ] + "plotIndexes": ["0x5d251b0dda7a", "0x10e1aa2dc345b", "0x21b4d04b8347b", "0x2924601124a97"] } }, "depositAllowances": {}, @@ -42044,10 +41771,7 @@ "708854521472745": "0x6ea39ef18", "829433630619951": "0xd10a5356" }, - "plotIndexes": [ - "0x284b30df326e9", - "0x2f25d90eaf92f" - ] + "plotIndexes": ["0x284b30df326e9", "0x2f25d90eaf92f"] } }, "depositAllowances": {}, @@ -42141,10 +41865,7 @@ "74553264982603": "0xabe288700", "446341746703841": "0x2fa85b191" }, - "plotIndexes": [ - "0x43ce48e04a4b", - "0x195f20942bde1" - ] + "plotIndexes": ["0x43ce48e04a4b", "0x195f20942bde1"] } }, "depositAllowances": {}, @@ -42302,9 +42023,7 @@ "plots": { "945086995481420": "0x27da7a96e5" }, - "plotIndexes": [ - "0x35b8d36a5c34c" - ] + "plotIndexes": ["0x35b8d36a5c34c"] } }, "depositAllowances": {}, @@ -42551,12 +42270,7 @@ "789657062113970": "0x7140a29e70", "851449379923934": "0x1e0c6817b8" }, - "plotIndexes": [ - "0x2a57a3441b3c6", - "0x2a3fa56c368b6", - "0x2ce305cae82b2", - "0x3066381d5a7de" - ] + "plotIndexes": ["0x2a57a3441b3c6", "0x2a3fa56c368b6", "0x2ce305cae82b2", "0x3066381d5a7de"] } }, "depositAllowances": {}, @@ -42880,10 +42594,7 @@ "345423569709038": "0x79780c548", "705867886947037": "0x19817f88" }, - "plotIndexes": [ - "0x13a29312b67ee", - "0x281fbaca8eadd" - ] + "plotIndexes": ["0x13a29312b67ee", "0x281fbaca8eadd"] } }, "depositAllowances": {}, @@ -43547,9 +43258,7 @@ "plots": { "699433319525762": "0xd7f733d86" }, - "plotIndexes": [ - "0x27c21828ded82" - ] + "plotIndexes": ["0x27c21828ded82"] } }, "depositAllowances": {}, @@ -43813,10 +43522,7 @@ "140373758599368": "0xc1962227c", "204878133820660": "0x2d8ac83349" }, - "plotIndexes": [ - "0x7fab500460c8", - "0xba55e8637cf4" - ] + "plotIndexes": ["0x7fab500460c8", "0xba55e8637cf4"] } }, "depositAllowances": {}, @@ -43878,9 +43584,7 @@ "plots": { "504989340347547": "0x571ddc1f9" }, - "plotIndexes": [ - "0x1cb48fe3f2c9b" - ] + "plotIndexes": ["0x1cb48fe3f2c9b"] } }, "depositAllowances": {}, @@ -44703,9 +44407,7 @@ "plots": { "805412332289879": "0x14daab380" }, - "plotIndexes": [ - "0x2dc84abf6bf57" - ] + "plotIndexes": ["0x2dc84abf6bf57"] } }, "depositAllowances": {}, @@ -44761,9 +44463,7 @@ "plots": { "710272326799610": "0x4cf36e" }, - "plotIndexes": [ - "0x285fd29bb90fa" - ] + "plotIndexes": ["0x285fd29bb90fa"] } }, "depositAllowances": {}, @@ -44851,10 +44551,7 @@ "251689318096142": "0x4264e95ef", "446328959443385": "0x2fa2e1c28" }, - "plotIndexes": [ - "0xe4e8fc661d0e", - "0x195ef0f14a1b9" - ] + "plotIndexes": ["0xe4e8fc661d0e", "0x195ef0f14a1b9"] } }, "depositAllowances": {}, @@ -45412,12 +45109,7 @@ "89554303454601": "0xb7180efa", "89190107363598": "0x450de0628" }, - "plotIndexes": [ - "0x3811aba88a13", - "0x51d808ad7df0", - "0x5172fc720d89", - "0x511e30aab90e" - ] + "plotIndexes": ["0x3811aba88a13", "0x51d808ad7df0", "0x5172fc720d89", "0x511e30aab90e"] } }, "depositAllowances": {}, @@ -45831,11 +45523,15 @@ "590928120113238": "0x3111520bb", "590991887858839": "0x10d40bfa64" }, +<<<<<<< HEAD "plotIndexes": [ "0x2059db1b57e5e", "0x219722cafe856", "0x21981058a7c97" ] +======= + "plotIndexes": ["0x2059db1b57e5e", "0x219722cafe856", "0x21981058a7c97"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -45975,11 +45671,7 @@ "705502798541410": "0xb7de03cc", "829201089289885": "0x962f339a" }, - "plotIndexes": [ - "0x2814161977168", - "0x281a6abb1f262", - "0x2f2276c5fde9d" - ] + "plotIndexes": ["0x2814161977168", "0x281a6abb1f262", "0x2f2276c5fde9d"] } }, "depositAllowances": {}, @@ -46388,9 +46080,7 @@ "plots": { "828631128825075": "0xf8728" }, - "plotIndexes": [ - "0x2f1a2b8155cf3" - ] + "plotIndexes": ["0x2f1a2b8155cf3"] } }, "depositAllowances": {}, @@ -46436,10 +46126,14 @@ "829846531525914": "0xa09acea0", "829846511525914": "0x989680" }, +<<<<<<< HEAD "plotIndexes": [ "0x2f2bdb3bacd1a", "0x2f2bdb289a01a" ] +======= + "plotIndexes": ["0x2f2bdb3bacd1a", "0x2f2bdb289a01a"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -46525,9 +46219,7 @@ "plots": { "246715075632743": "0x112872255" }, - "plotIndexes": [ - "0xe062d4719e67" - ] + "plotIndexes": ["0xe062d4719e67"] } }, "depositAllowances": {}, @@ -46964,10 +46656,7 @@ "828639443033247": "0x32d13056", "830263540434495": "0x88b37b4" }, - "plotIndexes": [ - "0x2f1a4a7a61c9f", - "0x2f31ecb65c63f" - ] + "plotIndexes": ["0x2f1a4a7a61c9f", "0x2f31ecb65c63f"] } }, "depositAllowances": {}, @@ -47278,9 +46967,7 @@ "plots": { "265237981975245": "0x3015eda0b" }, - "plotIndexes": [ - "0xf13b87b252cd" - ] + "plotIndexes": ["0xf13b87b252cd"] } }, "depositAllowances": {}, @@ -48184,9 +47871,7 @@ "plots": { "323837562208542": "0x353529bb" }, - "plotIndexes": [ - "0x126874edc411e" - ] + "plotIndexes": ["0x126874edc411e"] } }, "depositAllowances": {}, @@ -48530,12 +48215,7 @@ "340534562977258": "0x23ddd31a8", "381334859129242": "0x14a639490" }, - "plotIndexes": [ - "0x55d1042a989b", - "0xf88aa479a8c1", - "0x135b6e1a8f5ea", - "0x15ad270d1a19a" - ] + "plotIndexes": ["0x55d1042a989b", "0xf88aa479a8c1", "0x135b6e1a8f5ea", "0x15ad270d1a19a"] } }, "depositAllowances": {}, @@ -48584,9 +48264,7 @@ "plots": { "384464921215267": "0x38195dce58" }, - "plotIndexes": [ - "0x15dab370ec123" - ] + "plotIndexes": ["0x15dab370ec123"] } }, "depositAllowances": {}, @@ -49105,9 +48783,7 @@ "plots": { "545618833854003": "0x25842bc1500" }, - "plotIndexes": [ - "0x1f03cc8c64e33" - ] + "plotIndexes": ["0x1f03cc8c64e33"] } }, "depositAllowances": {}, @@ -49231,10 +48907,7 @@ "262282827399224": "0x5a9ac0f18", "709241915118695": "0x3f255d521" }, - "plotIndexes": [ - "0xee8b7ac20038", - "0x2850d40691467" - ] + "plotIndexes": ["0xee8b7ac20038", "0x2850d40691467"] } }, "depositAllowances": {}, @@ -50753,9 +50426,7 @@ "plots": { "371926248900676": "0x14ba9c7ea" }, - "plotIndexes": [ - "0x15243d3f2c844" - ] + "plotIndexes": ["0x15243d3f2c844"] } }, "depositAllowances": {}, @@ -50860,9 +50531,7 @@ "plots": { "273212723767312": "0xc87df4a3c" }, - "plotIndexes": [ - "0xf87c4b592810" - ] + "plotIndexes": ["0xf87c4b592810"] } }, "depositAllowances": {}, @@ -51248,9 +50917,7 @@ "plots": { "136916132809737": "0x1dcd65000" }, - "plotIndexes": [ - "0x7c864575cc09" - ] + "plotIndexes": ["0x7c864575cc09"] } }, "depositAllowances": {}, @@ -51327,9 +50994,7 @@ "plots": { "731385825209645": "0x21d06dac4" }, - "plotIndexes": [ - "0x29931084e2d2d" - ] + "plotIndexes": ["0x29931084e2d2d"] } }, "depositAllowances": {}, @@ -51399,9 +51064,7 @@ "plots": { "274296479205287": "0xcccc3edc0" }, - "plotIndexes": [ - "0xf978a034c7a7" - ] + "plotIndexes": ["0xf978a034c7a7"] } }, "depositAllowances": {}, @@ -51544,10 +51207,7 @@ "208552718877075": "0x481b213353", "891043664348577": "0x3270e3eaae" }, - "plotIndexes": [ - "0xbdad76b9c193", - "0x32a664517c5a1" - ] + "plotIndexes": ["0xbdad76b9c193", "0x32a664517c5a1"] } }, "depositAllowances": {}, @@ -51916,9 +51576,7 @@ "plots": { "246669957392680": "0xa8141b53f" }, - "plotIndexes": [ - "0xe058532fe928" - ] + "plotIndexes": ["0xe058532fe928"] } }, "depositAllowances": {}, @@ -52485,11 +52143,7 @@ "229437412992433": "0x427447bb2", "262153242867270": "0x9388dc70a" }, - "plotIndexes": [ - "0xc1ed84f89dfb", - "0xd0ac0f7fe5b1", - "0xee6d4eeaf646" - ] + "plotIndexes": ["0xc1ed84f89dfb", "0xd0ac0f7fe5b1", "0xee6d4eeaf646"] } }, "depositAllowances": {}, @@ -52915,9 +52569,7 @@ "plots": { "656258795032897": "0x2d6e578dc" }, - "plotIndexes": [ - "0x254dd285bd141" - ] + "plotIndexes": ["0x254dd285bd141"] } }, "depositAllowances": {}, @@ -54049,10 +53701,7 @@ "66084769661334": "0x1", "92743843990176": "0x1" }, - "plotIndexes": [ - "0x3c1a8f388196", - "0x54599be04aa0" - ] + "plotIndexes": ["0x3c1a8f388196", "0x54599be04aa0"] } }, "depositAllowances": {}, @@ -54395,12 +54044,16 @@ "250498439776055": "0x3c57f12d5", "723112643012217": "0x39a40db1e" }, +<<<<<<< HEAD "plotIndexes": [ "0x7f1e7f1df009", "0x7f12dae27c09", "0xe3d3b6850737", "0x291aac8382679" ] +======= + "plotIndexes": ["0x7f1e7f1df009", "0x7f12dae27c09", "0xe3d3b6850737", "0x291aac8382679"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -54764,10 +54417,7 @@ "188657736324783": "0x17", "334429009280361": "0x15" }, - "plotIndexes": [ - "0xab954d5b96af", - "0x13029524cfd69" - ] + "plotIndexes": ["0xab954d5b96af", "0x13029524cfd69"] } }, "depositAllowances": {}, @@ -55447,9 +55097,7 @@ "plots": { "828936762063483": "0x12a0a039b" }, - "plotIndexes": [ - "0x2f1e9e13e7a7b" - ] + "plotIndexes": ["0x2f1e9e13e7a7b"] } }, "depositAllowances": {}, @@ -56178,9 +55826,7 @@ "plots": { "225765065776620": "0x55b80bc80" }, - "plotIndexes": [ - "0xcd55068c5dec" - ] + "plotIndexes": ["0xcd55068c5dec"] } }, "depositAllowances": {}, @@ -56338,9 +55984,7 @@ "plots": { "262899104239013": "0x4171ce567" }, - "plotIndexes": [ - "0xef1af7b84da5" - ] + "plotIndexes": ["0xef1af7b84da5"] } }, "depositAllowances": {}, @@ -56452,9 +56096,7 @@ "plots": { "92719137052691": "0x3ab9ecbae" }, - "plotIndexes": [ - "0x5453db3a5813" - ] + "plotIndexes": ["0x5453db3a5813"] } }, "depositAllowances": {}, @@ -56514,9 +56156,7 @@ "plots": { "476539574311782": "0xf6a810ddd" }, - "plotIndexes": [ - "0x1b169040c5b66" - ] + "plotIndexes": ["0x1b169040c5b66"] } }, "depositAllowances": {}, @@ -56664,9 +56304,7 @@ "plots": { "66072179684940": "0x13c91af21" }, - "plotIndexes": [ - "0x3c17a0ccb64c" - ] + "plotIndexes": ["0x3c17a0ccb64c"] } }, "depositAllowances": {}, @@ -56917,10 +56555,14 @@ "148525943306600": "0x158198c5fc", "144795264713117": "0x10736f3e64" }, +<<<<<<< HEAD "plotIndexes": [ "0x871564173968", "0x83b0c651819d" ] +======= + "plotIndexes": ["0x871564173968", "0x83b0c651819d"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -57213,9 +56855,7 @@ "plots": { "328184212546799": "0x8fa94b659" }, - "plotIndexes": [ - "0x12a7b5768e4ef" - ] + "plotIndexes": ["0x12a7b5768e4ef"] } }, "depositAllowances": {}, @@ -57358,9 +56998,7 @@ "plots": { "253674859079781": "0x82fa7f933" }, - "plotIndexes": [ - "0xe6b747dd2865" - ] + "plotIndexes": ["0xe6b747dd2865"] } }, "depositAllowances": {}, @@ -58188,9 +57826,7 @@ "plots": { "387060250201237": "0x5e5f65014" }, - "plotIndexes": [ - "0x160077cb84c95" - ] + "plotIndexes": ["0x160077cb84c95"] } }, "depositAllowances": {}, @@ -58439,11 +58075,7 @@ "66098356384040": "0x2a45d1a7", "787251008279513": "0x6758146f9" }, - "plotIndexes": [ - "0x3bff5d253d22", - "0x3c1db90d7128", - "0x2cc0028b293d9" - ] + "plotIndexes": ["0x3bff5d253d22", "0x3c1db90d7128", "0x2cc0028b293d9"] } }, "depositAllowances": {}, @@ -59081,9 +58713,7 @@ "plots": { "848000115350590": "0xa93ad9b" }, - "plotIndexes": [ - "0x3034069a51c3e" - ] + "plotIndexes": ["0x3034069a51c3e"] } }, "depositAllowances": {}, @@ -59348,10 +58978,14 @@ "695950893560494": "0x1b835b45f", "695883029551470": "0xd7b2fa82" }, +<<<<<<< HEAD "plotIndexes": [ "0x278f6b1cab2ae", "0x278e6e4c8196e" ] +======= + "plotIndexes": ["0x278f6b1cab2ae", "0x278e6e4c8196e"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -59762,10 +59396,7 @@ "404072352993016": "0x10fcd79b2", "921793706552858": "0x22060a95e0" }, - "plotIndexes": [ - "0x16f806d104ef8", - "0x3465dd26f6e1a" - ] + "plotIndexes": ["0x16f806d104ef8", "0x3465dd26f6e1a"] } }, "depositAllowances": {}, @@ -60131,9 +59762,7 @@ "plots": { "329343745789140": "0x170915d0d7" }, - "plotIndexes": [ - "0x12b8950fa0cd4" - ] + "plotIndexes": ["0x12b8950fa0cd4"] } }, "depositAllowances": {}, @@ -60264,11 +59893,7 @@ "430683433278432": "0x1a8ce1f20c0", "569175292938999": "0x28245cd3380" }, - "plotIndexes": [ - "0x3813ffb46e13", - "0x187b44d0d1be0", - "0x205a973268af7" - ] + "plotIndexes": ["0x3813ffb46e13", "0x187b44d0d1be0", "0x205a973268af7"] } }, "depositAllowances": {}, @@ -60383,9 +60008,7 @@ "plots": { "729235941744400": "0x303d9fbe9a" }, - "plotIndexes": [ - "0x2973c7943df10" - ] + "plotIndexes": ["0x2973c7943df10"] } }, "depositAllowances": {}, @@ -60918,12 +60541,16 @@ "708321754068675": "0x2dc6bb322", "708948464817453": "0xea7f8970" }, +<<<<<<< HEAD "plotIndexes": [ "0x27858941cd095", "0x284a595117a65", "0x284370289b6c3", "0x284c8ed68d52d" ] +======= + "plotIndexes": ["0x27858941cd095", "0x284a595117a65", "0x284370289b6c3", "0x284c8ed68d52d"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -61123,11 +60750,7 @@ "243000491428745": "0x60a6e3229", "263428207273619": "0x3c325f096" }, - "plotIndexes": [ - "0x8794a46d222a", - "0xdd01f5f8cb89", - "0xef9628b7e693" - ] + "plotIndexes": ["0x8794a46d222a", "0xdd01f5f8cb89", "0xef9628b7e693"] } }, "depositAllowances": {}, @@ -61701,11 +61324,15 @@ "829675447607975": "0x3e253f78e", "829614178933391": "0xd01a83f2b" }, +<<<<<<< HEAD "plotIndexes": [ "0x2f2847a2faffd", "0x2f295de5562a7", "0x2f2879a6f9a8f" ] +======= + "plotIndexes": ["0x2f2847a2faffd", "0x2f295de5562a7", "0x2f2879a6f9a8f"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -61886,12 +61513,16 @@ "709185678005625": "0xe57bffa2", "725599911125635": "0xbc1a3290e" }, +<<<<<<< HEAD "plotIndexes": [ "0x6a9eface450b", "0x6f26700b79af", "0x28500286ad579", "0x293ede4f3a283" ] +======= + "plotIndexes": ["0x6a9eface450b", "0x6f26700b79af", "0x28500286ad579", "0x293ede4f3a283"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -61971,9 +61602,7 @@ "plots": { "311996527622013": "0xdd43ff5a4" }, - "plotIndexes": [ - "0x11bc25a33377d" - ] + "plotIndexes": ["0x11bc25a33377d"] } }, "depositAllowances": {}, @@ -62172,9 +61801,7 @@ "plots": { "133684865469102": "0x4a817c800" }, - "plotIndexes": [ - "0x7995eeeb0aae" - ] + "plotIndexes": ["0x7995eeeb0aae"] } }, "depositAllowances": {}, @@ -62614,9 +62241,7 @@ "plots": { "218964552881591": "0x4d97fc312" }, - "plotIndexes": [ - "0xc725a86495b7" - ] + "plotIndexes": ["0xc725a86495b7"] } }, "depositAllowances": {}, @@ -62837,10 +62462,7 @@ "297373764711688": "0x8e726c41d", "306238279513344": "0x802e946ff" }, - "plotIndexes": [ - "0x10e75b99c7508", - "0x11685a7ddf500" - ] + "plotIndexes": ["0x10e75b99c7508", "0x11685a7ddf500"] } }, "depositAllowances": {}, @@ -63672,10 +63294,7 @@ "370904434739966": "0xa2b0f3c4a", "381131949645927": "0x197dcb0c9c" }, - "plotIndexes": [ - "0x15155eb140afe", - "0x15aa33278a067" - ] + "plotIndexes": ["0x15155eb140afe", "0x15aa33278a067"] } }, "depositAllowances": {}, @@ -63744,10 +63363,7 @@ "327880245815221": "0x1454c7e23b", "929264027457555": "0x31979a095" }, - "plotIndexes": [ - "0x12a349194a7b5", - "0x34d2924425813" - ] + "plotIndexes": ["0x12a349194a7b5", "0x34d2924425813"] } }, "depositAllowances": {}, @@ -64398,9 +64014,7 @@ "plots": { "248278425109276": "0xfc269fef" }, - "plotIndexes": [ - "0xe1ced355831c" - ] + "plotIndexes": ["0xe1ced355831c"] } }, "depositAllowances": {}, @@ -64635,10 +64249,7 @@ "590941291612433": "0xbc7c57386", "590900855644397": "0x65916c769" }, - "plotIndexes": [ - "0x219753dc50911", - "0x2196bd39920ed" - ] + "plotIndexes": ["0x219753dc50911", "0x2196bd39920ed"] } }, "depositAllowances": {}, @@ -64700,9 +64311,7 @@ "plots": { "181299068052561": "0x77dd252c0" }, - "plotIndexes": [ - "0xa4e3fa8ca451" - ] + "plotIndexes": ["0xa4e3fa8ca451"] } }, "depositAllowances": {}, @@ -65616,9 +65225,7 @@ "plots": { "92833059143567": "0xee6b28000" }, - "plotIndexes": [ - "0x546e61837f8f" - ] + "plotIndexes": ["0x546e61837f8f"] } }, "depositAllowances": {}, @@ -65927,9 +65534,7 @@ "plots": { "709654240841564": "0x1b63fc" }, - "plotIndexes": [ - "0x2856d40f04f5c" - ] + "plotIndexes": ["0x2856d40f04f5c"] } }, "depositAllowances": {}, @@ -66556,10 +66161,7 @@ "490205291129867": "0x939d0bb27", "902789663460379": "0xef928c81" }, - "plotIndexes": [ - "0x1bdd6d03eac0b", - "0x3351519328c1b" - ] + "plotIndexes": ["0x1bdd6d03eac0b", "0x3351519328c1b"] } }, "depositAllowances": {}, @@ -66662,10 +66264,7 @@ "647775542417444": "0x1522c39b4", "646576510127020": "0x970d4100" }, - "plotIndexes": [ - "0x24d25ff199824", - "0x24c0ed334cbac" - ] + "plotIndexes": ["0x24d25ff199824", "0x24c0ed334cbac"] } }, "depositAllowances": {}, @@ -66919,10 +66518,7 @@ "295492903609864": "0x17b4597e1b", "656467053262897": "0xaf78288c0" }, - "plotIndexes": [ - "0x10cbfcd8da608", - "0x2550da5843831" - ] + "plotIndexes": ["0x10cbfcd8da608", "0x2550da5843831"] } }, "depositAllowances": {}, @@ -67261,9 +66857,7 @@ "plots": { "311801867615122": "0x9f869e026" }, - "plotIndexes": [ - "0x11b95078f3b92" - ] + "plotIndexes": ["0x11b95078f3b92"] } }, "depositAllowances": {}, @@ -67333,9 +66927,7 @@ "plots": { "469185727281112": "0x1255cab2af" }, - "plotIndexes": [ - "0x1aab8d09bb7d8" - ] + "plotIndexes": ["0x1aab8d09bb7d8"] } }, "depositAllowances": {}, @@ -67391,9 +66983,7 @@ "plots": { "469169645692260": "0x16a78d4ea" }, - "plotIndexes": [ - "0x1aab512122564" - ] + "plotIndexes": ["0x1aab512122564"] } }, "depositAllowances": {}, @@ -67668,9 +67258,7 @@ "plots": { "387342442778997": "0x2c15c66fd" }, - "plotIndexes": [ - "0x1604930b55175" - ] + "plotIndexes": ["0x1604930b55175"] } }, "depositAllowances": {}, @@ -68209,9 +67797,7 @@ "plots": { "94333693372636": "0x27bc86aaa" }, - "plotIndexes": [ - "0x55cbc648a8dc" - ] + "plotIndexes": ["0x55cbc648a8dc"] } }, "depositAllowances": {}, @@ -68988,9 +68574,7 @@ "plots": { "927634141843427": "0x544f4bec04" }, - "plotIndexes": [ - "0x34bada7818fe3" - ] + "plotIndexes": ["0x34bada7818fe3"] } }, "depositAllowances": {}, @@ -69276,9 +68860,7 @@ "plots": { "456659655291143": "0x190f1e8c0" }, - "plotIndexes": [ - "0x19f545c897107" - ] + "plotIndexes": ["0x19f545c897107"] } }, "depositAllowances": {}, @@ -69865,9 +69447,7 @@ "plots": { "659295439819586": "0x11c22cb3" }, - "plotIndexes": [ - "0x257a02e7e1342" - ] + "plotIndexes": ["0x257a02e7e1342"] } }, "depositAllowances": {}, @@ -69984,10 +69564,14 @@ "698477241949083": "0xda7801c1", "702368636779868": "0xe28f6a1d" }, +<<<<<<< HEAD "plotIndexes": [ "0x27b42e7e3db9b", "0x27eccf118bd5c" ] +======= + "plotIndexes": ["0x27b42e7e3db9b", "0x27eccf118bd5c"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -70332,11 +69916,7 @@ "289572383709939": "0x61656dbde", "290871125843437": "0x2dd7c69135" }, - "plotIndexes": [ - "0xf2d25b338de0", - "0x1075d53115af3", - "0x1088bb6219ded" - ] + "plotIndexes": ["0xf2d25b338de0", "0x1075d53115af3", "0x1088bb6219ded"] } }, "depositAllowances": {}, @@ -70481,12 +70061,7 @@ "910693748575674": "0x3cf5c57f0", "892260306698253": "0x48514579d" }, - "plotIndexes": [ - "0x29246ba143b23", - "0x2d93f8da2556a", - "0x33c4569620dba", - "0x32b818aa0c00d" - ] + "plotIndexes": ["0x29246ba143b23", "0x2d93f8da2556a", "0x33c4569620dba", "0x32b818aa0c00d"] } }, "depositAllowances": {}, @@ -70772,9 +70347,7 @@ "plots": { "828677403443205": "0x4b2e9e60" }, - "plotIndexes": [ - "0x2f1ad7e440005" - ] + "plotIndexes": ["0x2f1ad7e440005"] } }, "depositAllowances": {}, @@ -70857,9 +70430,7 @@ "plots": { "711381608801232": "0x35417206" }, - "plotIndexes": [ - "0x286ff7017a3d0" - ] + "plotIndexes": ["0x286ff7017a3d0"] } }, "depositAllowances": {}, @@ -71629,12 +71200,7 @@ "646579044355244": "0x8c06fd11", "695601083772865": "0x57eebe00" }, - "plotIndexes": [ - "0x55bf5367e368", - "0x244258220981f", - "0x24c0f6a420cac", - "0x278a53f80efc1" - ] + "plotIndexes": ["0x55bf5367e368", "0x244258220981f", "0x24c0f6a420cac", "0x278a53f80efc1"] } }, "depositAllowances": {}, @@ -71699,9 +71265,7 @@ "plots": { "334136741601291": "0x15" }, - "plotIndexes": [ - "0x12fe545ca200b" - ] + "plotIndexes": ["0x12fe545ca200b"] } }, "depositAllowances": {}, @@ -71837,9 +71401,7 @@ "plots": { "692839388798357": "0x64d3534ea" }, - "plotIndexes": [ - "0x276223da7dd95" - ] + "plotIndexes": ["0x276223da7dd95"] } }, "depositAllowances": {}, @@ -72472,9 +72034,7 @@ "plots": { "458151359406665": "0xbb3d3ffcf" }, - "plotIndexes": [ - "0x1a0afad07e249" - ] + "plotIndexes": ["0x1a0afad07e249"] } }, "depositAllowances": {}, @@ -72545,12 +72105,7 @@ "973088659433490": "0xd062d91d3", "980412293238477": "0x11cc10da08" }, - "plotIndexes": [ - "0x313ee99f38ba6", - "0x35b4079d3c464", - "0x37504dbe16812", - "0x37bae0678cecd" - ] + "plotIndexes": ["0x313ee99f38ba6", "0x35b4079d3c464", "0x37504dbe16812", "0x37bae0678cecd"] } }, "depositAllowances": {}, @@ -73516,9 +73071,7 @@ "plots": { "464596886728232": "0xfe414816" }, - "plotIndexes": [ - "0x1a68c6465ae28" - ] + "plotIndexes": ["0x1a68c6465ae28"] } }, "depositAllowances": {}, @@ -73584,10 +73137,7 @@ "392885437378366": "0xe6b95430d", "469449946056586": "0x1941d80d8" }, - "plotIndexes": [ - "0x16553c4eeaf3e", - "0x1aaf65546478a" - ] + "plotIndexes": ["0x16553c4eeaf3e", "0x1aaf65546478a"] } }, "depositAllowances": {}, @@ -73702,10 +73252,7 @@ "61549350441365": "0x171363d0", "829018632524342": "0xff9620235" }, - "plotIndexes": [ - "0x37fa932b5195", - "0x2f1fcf11a9236" - ] + "plotIndexes": ["0x37fa932b5195", "0x2f1fcf11a9236"] } }, "depositAllowances": {}, @@ -74116,9 +73663,7 @@ "plots": { "401293601260766": "0x3c1498aa1" }, - "plotIndexes": [ - "0x16cf9728dc4de" - ] + "plotIndexes": ["0x16cf9728dc4de"] } }, "depositAllowances": {}, @@ -74363,9 +73908,7 @@ "plots": { "828631979817405": "0xf5704851" }, - "plotIndexes": [ - "0x2f1a2eace79bd" - ] + "plotIndexes": ["0x2f1a2eace79bd"] } }, "depositAllowances": {}, @@ -74557,12 +74100,7 @@ "190556859399088": "0x6cd3360200", "264089423115184": "0x4d52b3d900" }, - "plotIndexes": [ - "0x6db51ab746e8", - "0xa8d1f07c89af", - "0xad4f79e9fbb0", - "0xf0301c40f3b0" - ] + "plotIndexes": ["0x6db51ab746e8", "0xa8d1f07c89af", "0xad4f79e9fbb0", "0xf0301c40f3b0"] } }, "depositAllowances": {}, @@ -75115,9 +74653,7 @@ "plots": { "732098380453278": "0x6b95281" }, - "plotIndexes": [ - "0x299d6efe8559e" - ] + "plotIndexes": ["0x299d6efe8559e"] } }, "depositAllowances": {}, @@ -75210,10 +74746,7 @@ "319877964011072": "0x1308b3befb", "828245820742732": "0x14a57eee0" }, - "plotIndexes": [ - "0x122ed646a9640", - "0x2f14901ee9c4c" - ] + "plotIndexes": ["0x122ed646a9640", "0x2f14901ee9c4c"] } }, "depositAllowances": {}, @@ -75512,9 +75045,7 @@ "plots": { "556468241468166": "0x26472b8dc" }, - "plotIndexes": [ - "0x1fa1adbdc8b06" - ] + "plotIndexes": ["0x1fa1adbdc8b06"] } }, "depositAllowances": {}, @@ -75593,10 +75124,7 @@ "103707589567835": "0xd68e9a1328", "369436700764088": "0xfcd387f0df" }, - "plotIndexes": [ - "0x5e524e09655b", - "0x150002f50e7b8" - ] + "plotIndexes": ["0x5e524e09655b", "0x150002f50e7b8"] } }, "depositAllowances": {}, @@ -76751,11 +76279,7 @@ "152069659197493": "0x815c5a940", "296942140597416": "0x714012bb3" }, - "plotIndexes": [ - "0x54982ca8b8ee", - "0x8a4e7a048035", - "0x10e113acf24a8" - ] + "plotIndexes": ["0x54982ca8b8ee", "0x8a4e7a048035", "0x10e113acf24a8"] } }, "depositAllowances": {}, @@ -76853,11 +76377,15 @@ "333947098307518": "0x267c899642", "360355776306507": "0x1029c1234b" }, +<<<<<<< HEAD "plotIndexes": [ "0x134d087e62376", "0x12fb91e2b1bbe", "0x147bdde0a1d4b" ] +======= + "plotIndexes": ["0x134d087e62376", "0x12fb91e2b1bbe", "0x147bdde0a1d4b"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -77863,10 +77391,7 @@ "136889611492596": "0x1dcd65000", "204495039904762": "0x28c94b62c" }, - "plotIndexes": [ - "0x7c8018aa9cf4", - "0xb9fcb6363bfa" - ] + "plotIndexes": ["0x7c8018aa9cf4", "0xb9fcb6363bfa"] } }, "depositAllowances": {}, @@ -78002,10 +77527,7 @@ "236275109596786": "0x117e94ab8f", "248750069836807": "0x3e47244ff" }, - "plotIndexes": [ - "0xd6e415fa0e72", - "0xe23ca38cec07" - ] + "plotIndexes": ["0xd6e415fa0e72", "0xe23ca38cec07"] } }, "depositAllowances": {}, @@ -78140,9 +77662,7 @@ "plots": { "73813424150780": "0x18c6e7a1de" }, - "plotIndexes": [ - "0x432206ed18fc" - ] + "plotIndexes": ["0x432206ed18fc"] } }, "depositAllowances": {}, @@ -78474,9 +77994,7 @@ "plots": { "643414473152684": "0x106e3ce00" }, - "plotIndexes": [ - "0x2492e9b1d98ac" - ] + "plotIndexes": ["0x2492e9b1d98ac"] } }, "depositAllowances": {}, @@ -78613,9 +78131,7 @@ "plots": { "701404861672440": "0xf6711b3" }, - "plotIndexes": [ - "0x27dec8b9fabf8" - ] + "plotIndexes": ["0x27dec8b9fabf8"] } }, "depositAllowances": {}, @@ -78921,9 +78437,7 @@ "plots": { "384159922068708": "0xb77faa347" }, - "plotIndexes": [ - "0x15d6433b11ce4" - ] + "plotIndexes": ["0x15d6433b11ce4"] } }, "depositAllowances": {}, @@ -79961,9 +79475,7 @@ "plots": { "335517175308668": "0x2a93eefab" }, - "plotIndexes": [ - "0x13126ae0ce17c" - ] + "plotIndexes": ["0x13126ae0ce17c"] } }, "depositAllowances": {}, @@ -80012,9 +79524,7 @@ "plots": { "548196933854003": "0x893d5ca00" }, - "plotIndexes": [ - "0x1f2950b826333" - ] + "plotIndexes": ["0x1f2950b826333"] } }, "depositAllowances": {}, @@ -80181,9 +79691,7 @@ "plots": { "61619455558487": "0x3ac6f97" }, - "plotIndexes": [ - "0x380ae5c28357" - ] + "plotIndexes": ["0x380ae5c28357"] } }, "depositAllowances": {}, @@ -80334,9 +79842,7 @@ "plots": { "148192829238946": "0x770c26241" }, - "plotIndexes": [ - "0x86c7d4f1eea2" - ] + "plotIndexes": ["0x86c7d4f1eea2"] } }, "depositAllowances": {}, @@ -80604,10 +80110,7 @@ "81489555435321": "0x12812ff83", "921019116580415": "0x2abf2f231" }, - "plotIndexes": [ - "0x4a1d44012f39", - "0x345a979466e3f" - ] + "plotIndexes": ["0x4a1d44012f39", "0x345a979466e3f"] } }, "depositAllowances": {}, @@ -81358,11 +80861,15 @@ "401185145968469": "0xc6db22900", "401238525968469": "0xc6db22900" }, +<<<<<<< HEAD "plotIndexes": [ "0x15d51d156381c", "0x16ce0321d5755", "0x16cec9fcf8055" ] +======= + "plotIndexes": ["0x15d51d156381c", "0x16ce0321d5755", "0x16cec9fcf8055"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -81481,9 +80988,7 @@ "plots": { "401442190164996": "0x24529a518" }, - "plotIndexes": [ - "0x16d1c0b248404" - ] + "plotIndexes": ["0x16d1c0b248404"] } }, "depositAllowances": {}, @@ -81542,10 +81047,7 @@ "170714896213600": "0x3992286b6", "705261555332818": "0x1e674d91b" }, - "plotIndexes": [ - "0x9b43a8bf2660", - "0x2816e807ab6d2" - ] + "plotIndexes": ["0x9b43a8bf2660", "0x2816e807ab6d2"] } }, "depositAllowances": {}, @@ -81705,9 +81207,7 @@ "plots": { "685794219209263": "0x9a6029c9d" }, - "plotIndexes": [ - "0x26fb9e8d3322f" - ] + "plotIndexes": ["0x26fb9e8d3322f"] } }, "depositAllowances": {}, @@ -81892,9 +81392,7 @@ "plots": { "325881466662025": "0x200f4f955" }, - "plotIndexes": [ - "0x12863310f2c89" - ] + "plotIndexes": ["0x12863310f2c89"] } }, "depositAllowances": {}, @@ -81961,9 +81459,7 @@ "plots": { "705875361414229": "0xcb785ec" }, - "plotIndexes": [ - "0x281fd6a2c3c55" - ] + "plotIndexes": ["0x281fd6a2c3c55"] } }, "depositAllowances": {}, @@ -82157,11 +81653,15 @@ "801292506582851": "0x415dcc5332", "800295495177172": "0xe82282bb6f" }, +<<<<<<< HEAD "plotIndexes": [ "0x2d6f69f58fc8b", "0x2d8c573374f43", "0x2d7dd50b493d4" ] +======= + "plotIndexes": ["0x2d6f69f58fc8b", "0x2d8c573374f43", "0x2d7dd50b493d4"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -82260,9 +81760,7 @@ "plots": { "115104358803162": "0x92a9253268" }, - "plotIndexes": [ - "0x68afd26b26da" - ] + "plotIndexes": ["0x68afd26b26da"] } }, "depositAllowances": {}, @@ -82392,10 +81890,7 @@ "235588719194871": "0x4172637b72", "372208194310817": "0x3489245cb8" }, - "plotIndexes": [ - "0xd64445ebb2f7", - "0x15285793452a1" - ] + "plotIndexes": ["0xd64445ebb2f7", "0x15285793452a1"] } }, "depositAllowances": {}, @@ -82633,10 +82128,7 @@ "733502153649619": "0x534c175a4", "735061538500731": "0xd62aec66e" }, - "plotIndexes": [ - "0x29b1dc74f6dd3", - "0x29c88d9e3f07b" - ] + "plotIndexes": ["0x29b1dc74f6dd3", "0x29c88d9e3f07b"] } }, "depositAllowances": {}, @@ -82854,12 +82346,16 @@ "211201155017630": "0x1794d04a36", "260829150583722": "0x15074a803f" }, +<<<<<<< HEAD "plotIndexes": [ "0xbedfb81977cb", "0xbf8743e9c7b8", "0xc01619d22b9e", "0xed3904de1baa" ] +======= + "plotIndexes": ["0xbedfb81977cb", "0xbf8743e9c7b8", "0xc01619d22b9e", "0xed3904de1baa"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -82903,9 +82399,7 @@ "plots": { "264511318157528": "0x840d16440" }, - "plotIndexes": [ - "0xf092572868d8" - ] + "plotIndexes": ["0xf092572868d8"] } }, "depositAllowances": {}, @@ -83259,10 +82753,14 @@ "288295221343358": "0x152f96cd2b", "290682958511741": "0x2bcfa59f70" }, +<<<<<<< HEAD "plotIndexes": [ "0x10633f642347e", "0x1085fe67bfe7d" ] +======= + "plotIndexes": ["0x10633f642347e", "0x1085fe67bfe7d"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -83324,10 +82822,7 @@ "94255248987404": "0x979212e6", "708924934892507": "0x87a98ab4" }, - "plotIndexes": [ - "0x55b982a2550c", - "0x284c372eaabdb" - ] + "plotIndexes": ["0x55b982a2550c", "0x284c372eaabdb"] } }, "depositAllowances": {}, @@ -83963,9 +83458,7 @@ "plots": { "255052991465844": "0x3171da1b50" }, - "plotIndexes": [ - "0xe7f826f48974" - ] + "plotIndexes": ["0xe7f826f48974"] } }, "depositAllowances": {}, @@ -84415,11 +83908,7 @@ "708304635318675": "0x3e4143379", "781624214558443": "0xcf02ed9cc" }, - "plotIndexes": [ - "0x380466c80e22", - "0x28433062e5193", - "0x2c6e211a816eb" - ] + "plotIndexes": ["0x380466c80e22", "0x28433062e5193", "0x2c6e211a816eb"] } }, "depositAllowances": {}, @@ -84755,9 +84244,7 @@ "plots": { "670420999163189": "0x4ac8eba59" }, - "plotIndexes": [ - "0x261be8d814d35" - ] + "plotIndexes": ["0x261be8d814d35"] } }, "depositAllowances": {}, @@ -85219,9 +84706,7 @@ "plots": { "684710715486316": "0xe8d0e19e9" }, - "plotIndexes": [ - "0x26ebda2f8706c" - ] + "plotIndexes": ["0x26ebda2f8706c"] } }, "depositAllowances": {}, @@ -85523,9 +85008,7 @@ "plots": { "478564758595291": "0x3ba6b5c2000" }, - "plotIndexes": [ - "0x1b3408a7026db" - ] + "plotIndexes": ["0x1b3408a7026db"] } }, "depositAllowances": {}, @@ -85754,10 +85237,7 @@ "145860635343358": "0x154ac6daa7", "137553610896101": "0x160fbdf8e8" }, - "plotIndexes": [ - "0x84a8d35b39fe", - "0x7d1ab21d72e5" - ] + "plotIndexes": ["0x84a8d35b39fe", "0x7d1ab21d72e5"] } }, "depositAllowances": {}, @@ -85814,10 +85294,7 @@ "135308874736610": "0x5f294c57a", "227353999537909": "0x144ec78167" }, - "plotIndexes": [ - "0x7b100d69e3e2", - "0xcec6fa6176f5" - ] + "plotIndexes": ["0x7b100d69e3e2", "0xcec6fa6176f5"] } }, "depositAllowances": {}, @@ -86063,9 +85540,7 @@ "plots": { "828640296186909": "0x8a3b7da10" }, - "plotIndexes": [ - "0x2f1a4da80341d" - ] + "plotIndexes": ["0x2f1a4da80341d"] } }, "depositAllowances": {}, @@ -86507,10 +85982,7 @@ "705315982821399": "0x21", "705202370008774": "0x2c8c546" }, - "plotIndexes": [ - "0x2817b2c9c4817", - "0x28160b8c256c6" - ] + "plotIndexes": ["0x2817b2c9c4817", "0x28160b8c256c6"] } }, "depositAllowances": {}, @@ -86759,9 +86231,7 @@ "plots": { "298138328262598": "0x59d300de2" }, - "plotIndexes": [ - "0x10f27bd2667c6" - ] + "plotIndexes": ["0x10f27bd2667c6"] } }, "depositAllowances": {}, @@ -86861,10 +86331,7 @@ "146134038045227": "0x421c6beb1", "199333964622114": "0x4f1604f66" }, - "plotIndexes": [ - "0x84e87b6d622b", - "0xb54b0e272922" - ] + "plotIndexes": ["0x84e87b6d622b", "0xb54b0e272922"] } }, "depositAllowances": {}, @@ -87637,12 +87104,7 @@ "387201608784840": "0x5d34ee700", "396976528945260": "0x25b4e1b20" }, - "plotIndexes": [ - "0x55bfce2083a8", - "0xfb5b7c74bc48", - "0x1602866591bc8", - "0x1690c4cfdf06c" - ] + "plotIndexes": ["0x55bfce2083a8", "0xfb5b7c74bc48", "0x1602866591bc8", "0x1690c4cfdf06c"] } }, "depositAllowances": {}, @@ -87870,10 +87332,7 @@ "278669782994289": "0x55aad4781", "326721702127025": "0x58d209284" }, - "plotIndexes": [ - "0xfd72dd6ccd71", - "0x12926d2fee5b1" - ] + "plotIndexes": ["0xfd72dd6ccd71", "0x12926d2fee5b1"] } }, "depositAllowances": {}, @@ -88328,10 +87787,7 @@ "279944599116288": "0x151c9889a4", "572188643809800": "0x308c2db845" }, - "plotIndexes": [ - "0xfe9bae631a00", - "0x208670cdbda08" - ] + "plotIndexes": ["0xfe9bae631a00", "0x208670cdbda08"] } }, "depositAllowances": {}, @@ -89035,11 +88491,7 @@ "699431659841853": "0x62ecc445", "710284322742664": "0x2d2dbe0e4" }, - "plotIndexes": [ - "0x27a02ae1b9c4a", - "0x27c211fa1293d", - "0x285fff4bf2188" - ] + "plotIndexes": ["0x27a02ae1b9c4a", "0x27c211fa1293d", "0x285fff4bf2188"] } }, "depositAllowances": {}, @@ -89108,9 +88560,7 @@ "plots": { "373644075768360": "0x67dd948d9" }, - "plotIndexes": [ - "0x153d3ca689a28" - ] + "plotIndexes": ["0x153d3ca689a28"] } }, "depositAllowances": {}, @@ -89282,10 +88732,14 @@ "737811992121289": "0x66873", "737815110802113": "0xbfe19" }, +<<<<<<< HEAD "plotIndexes": [ "0x29f093db38fc9", "0x29f09f796dac1" ] +======= + "plotIndexes": ["0x29f093db38fc9", "0x29f09f796dac1"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -89351,9 +88805,7 @@ "plots": { "469403825976872": "0xabcf89162" }, - "plotIndexes": [ - "0x1aaeb984db628" - ] + "plotIndexes": ["0x1aaeb984db628"] } }, "depositAllowances": {}, @@ -89412,10 +88864,7 @@ "380516409078784": "0x17455a5224", "380616356873764": "0x173e15adc1" }, - "plotIndexes": [ - "0x15a13e164f400", - "0x15a2b26bf4624" - ] + "plotIndexes": ["0x15a13e164f400", "0x15a2b26bf4624"] } }, "depositAllowances": {}, @@ -89720,9 +89169,7 @@ "plots": { "256741264517324": "0x3ebb93be1" }, - "plotIndexes": [ - "0xe9813bdee8cc" - ] + "plotIndexes": ["0xe9813bdee8cc"] } }, "depositAllowances": {}, @@ -89978,10 +89425,7 @@ "77525487677503": "0x142d25f5da3", "513251371472285": "0x33e0a8f0200" }, - "plotIndexes": [ - "0x46824f27703f", - "0x1d2cca5ad559d" - ] + "plotIndexes": ["0x46824f27703f", "0x1d2cca5ad559d"] } }, "depositAllowances": {}, @@ -90103,10 +89547,7 @@ "742761033370593": "0x1d45ba26c", "741235656825477": "0x1e24339ab" }, - "plotIndexes": [ - "0x2a389878c0be1", - "0x2a22660051a85" - ] + "plotIndexes": ["0x2a389878c0be1", "0x2a22660051a85"] } }, "depositAllowances": {}, @@ -90342,9 +89783,7 @@ "plots": { "332990203193622": "0xbcf9279" }, - "plotIndexes": [ - "0x12eda52c66916" - ] + "plotIndexes": ["0x12eda52c66916"] } }, "depositAllowances": {}, @@ -90806,9 +90245,7 @@ "plots": { "821313649896897": "0x2c73d37d8" }, - "plotIndexes": [ - "0x2eafafc59edc1" - ] + "plotIndexes": ["0x2eafafc59edc1"] } }, "depositAllowances": {}, @@ -91075,10 +90512,7 @@ "801754549832839": "0xe74f5786", "830438768262888": "0x20673d01" }, - "plotIndexes": [ - "0x2d9310723cc87", - "0x2f34797ca3ee8" - ] + "plotIndexes": ["0x2d9310723cc87", "0x2f34797ca3ee8"] } }, "depositAllowances": {}, @@ -91330,9 +90764,7 @@ "plots": { "829766411373307": "0x199f6ea65" }, - "plotIndexes": [ - "0x2f2ab0c324afb" - ] + "plotIndexes": ["0x2f2ab0c324afb"] } }, "depositAllowances": {}, @@ -92514,11 +91946,7 @@ "888758709596303": "0x19cb324c04", "888869492849811": "0xc6a61688e7" }, - "plotIndexes": [ - "0xd031895a560d", - "0x32852432d308f", - "0x3286c0e5f7c93" - ] + "plotIndexes": ["0xd031895a560d", "0x32852432d308f", "0x3286c0e5f7c93"] } }, "depositAllowances": {}, @@ -93108,9 +92536,7 @@ "plots": { "411656965874384": "0x74dbee3c1" }, - "plotIndexes": [ - "0x176665b3862d0" - ] + "plotIndexes": ["0x176665b3862d0"] } }, "depositAllowances": {}, @@ -93182,9 +92608,7 @@ "plots": { "406029207697903": "0x1085363900" }, - "plotIndexes": [ - "0x171480ab179ef" - ] + "plotIndexes": ["0x171480ab179ef"] } }, "depositAllowances": {}, @@ -93784,9 +93208,7 @@ "plots": { "241628702712952": "0x69f6bc7" }, - "plotIndexes": [ - "0xdbc290fe2478" - ] + "plotIndexes": ["0xdbc290fe2478"] } }, "depositAllowances": {}, @@ -93874,11 +93296,7 @@ "782094916244052": "0x28440a6952", "851182956547742": "0x3e031b0462" }, - "plotIndexes": [ - "0x26fe5f0caf52b", - "0x2c74fa9a9d254", - "0x3062579c38e9e" - ] + "plotIndexes": ["0x26fe5f0caf52b", "0x2c74fa9a9d254", "0x3062579c38e9e"] } }, "depositAllowances": {}, @@ -94061,9 +93479,7 @@ "plots": { "234609525467517": "0x15f32633c" }, - "plotIndexes": [ - "0xd560496d297d" - ] + "plotIndexes": ["0xd560496d297d"] } }, "depositAllowances": {}, @@ -94132,11 +93548,7 @@ "385914550632686": "0x4bed7066a", "398965539093275": "0x19cb5be8f6" }, - "plotIndexes": [ - "0x54966e6b2181", - "0x15efcbbb440ee", - "0x16adb673c3b1b" - ] + "plotIndexes": ["0x54966e6b2181", "0x15efcbbb440ee", "0x16adb673c3b1b"] } }, "depositAllowances": {}, @@ -94546,9 +93958,7 @@ "plots": { "334551383798769": "0x141510158c" }, - "plotIndexes": [ - "0x13045d063f3f1" - ] + "plotIndexes": ["0x13045d063f3f1"] } }, "depositAllowances": {}, @@ -94703,12 +94113,16 @@ "718009928907392": "0x12a05f200", "718072806907414": "0x2540be400" }, +<<<<<<< HEAD "plotIndexes": [ "0x284f3bfbb8faf", "0x289ca269fa683", "0x28d06b6c1fa80", "0x28d155a941e16" ] +======= + "plotIndexes": ["0x284f3bfbb8faf", "0x289ca269fa683", "0x28d06b6c1fa80", "0x28d155a941e16"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -94779,11 +94193,7 @@ "718102416527369": "0x36a3392aa", "740617842723123": "0x25a9299e4" }, - "plotIndexes": [ - "0x28488ea9528f1", - "0x28d1c3f731009", - "0x2a196876e0933" - ] + "plotIndexes": ["0x28488ea9528f1", "0x28d1c3f731009", "0x2a196876e0933"] } }, "depositAllowances": {}, @@ -94976,9 +94386,7 @@ "plots": { "334951569354608": "0x1db4a9b2c" }, - "plotIndexes": [ - "0x130a2fd4eef70" - ] + "plotIndexes": ["0x130a2fd4eef70"] } }, "depositAllowances": {}, @@ -95081,10 +94489,7 @@ "980115296480441": "0x9428b79a0", "980488900027563": "0xa004f6fc8" }, - "plotIndexes": [ - "0x37b68e015ecb9", - "0x37bbfdc97a4ab" - ] + "plotIndexes": ["0x37b68e015ecb9", "0x37bbfdc97a4ab"] } }, "depositAllowances": {}, @@ -95249,11 +94654,7 @@ "323193045387977": "0xd761da96", "491115786234272": "0xc95df68a6" }, - "plotIndexes": [ - "0xee7731cca55b", - "0x125f13eaa0ac9", - "0x1beaacdfb69a0" - ] + "plotIndexes": ["0xee7731cca55b", "0x125f13eaa0ac9", "0x1beaacdfb69a0"] } }, "depositAllowances": {}, @@ -95520,9 +94921,7 @@ "plots": { "254336564840316": "0x508679421" }, - "plotIndexes": [ - "0xe7515899c77c" - ] + "plotIndexes": ["0xe7515899c77c"] } }, "depositAllowances": {}, @@ -95612,12 +95011,7 @@ "329164100531105": "0xa0b582900", "446842521140999": "0x1665f7820" }, - "plotIndexes": [ - "0x10e75b85241c8", - "0x118aab2578056", - "0x12b5f7d48f3a1", - "0x19666a1be3f07" - ] + "plotIndexes": ["0x10e75b85241c8", "0x118aab2578056", "0x12b5f7d48f3a1", "0x19666a1be3f07"] } }, "depositAllowances": {}, @@ -95666,9 +95060,7 @@ "plots": { "799197247444195": "0x1447f06ff1" }, - "plotIndexes": [ - "0x2d6dd9c0a14e3" - ] + "plotIndexes": ["0x2d6dd9c0a14e3"] } }, "depositAllowances": {}, @@ -95892,10 +95284,7 @@ "381130967987486": "0x3a82eb49", "457667790166306": "0xc3624f80" }, - "plotIndexes": [ - "0x15aa2f7f5b51e", - "0x1a03f160ed922" - ] + "plotIndexes": ["0x15aa2f7f5b51e", "0x1a03f160ed922"] } }, "depositAllowances": {}, @@ -96137,9 +95526,7 @@ "plots": { "404709443708715": "0x63e15a416" }, - "plotIndexes": [ - "0x17014c2a1272b" - ] + "plotIndexes": ["0x17014c2a1272b"] } }, "depositAllowances": {}, @@ -96760,9 +96147,7 @@ "plots": { "608725940757720": "0x1203474a22" }, - "plotIndexes": [ - "0x229a20d76e4d8" - ] + "plotIndexes": ["0x229a20d76e4d8"] } }, "depositAllowances": {}, @@ -96932,9 +96317,7 @@ "plots": { "106067083507977": "0xda0d76992" }, - "plotIndexes": [ - "0x6077aad5b909" - ] + "plotIndexes": ["0x6077aad5b909"] } }, "depositAllowances": {}, @@ -97079,12 +96462,7 @@ "655120353318480": "0xfd81898800", "870719619853486": "0x1010b87c87" }, - "plotIndexes": [ - "0x6a9f832bf4a1", - "0x6aa52700eccb", - "0x253d417f1d650", - "0x317ea35a3ecae" - ] + "plotIndexes": ["0x6a9f832bf4a1", "0x6aa52700eccb", "0x253d417f1d650", "0x317ea35a3ecae"] } }, "depositAllowances": {}, @@ -97147,10 +96525,14 @@ "137268178757187": "0x76a84c01", "137270169498180": "0x164088008" }, +<<<<<<< HEAD "plotIndexes": [ "0x7cd83d08a643", "0x7cd8b3b0f244" ] +======= + "plotIndexes": ["0x7cd83d08a643", "0x7cd8b3b0f244"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -97379,9 +96761,7 @@ "plots": { "820978887802944": "0x3597627c2" }, - "plotIndexes": [ - "0x2eaad0af9c040" - ] + "plotIndexes": ["0x2eaad0af9c040"] } }, "depositAllowances": {}, @@ -97642,10 +97022,7 @@ "222959502580400": "0x1acf798f80", "263791400213507": "0x19cf2cc480" }, - "plotIndexes": [ - "0xcac7cdf35ab0", - "0xefeab8b45c03" - ] + "plotIndexes": ["0xcac7cdf35ab0", "0xefeab8b45c03"] } }, "depositAllowances": {}, @@ -97958,10 +97335,7 @@ "278493127641126": "0x88425eb0", "296972540989531": "0x2540be400" }, - "plotIndexes": [ - "0xfd49bbf20826", - "0x10e184ed0505b" - ] + "plotIndexes": ["0xfd49bbf20826", "0x10e184ed0505b"] } }, "depositAllowances": {}, @@ -98234,9 +97608,7 @@ "plots": { "94418147246757": "0x547b738" }, - "plotIndexes": [ - "0x55df702082a5" - ] + "plotIndexes": ["0x55df702082a5"] } }, "depositAllowances": {}, @@ -98626,12 +97998,7 @@ "801735193101157": "0x481c04922", "824966510240842": "0x1d3e114d7" }, - "plotIndexes": [ - "0x284e127deb79a", - "0x28d189b6577b7", - "0x2d92c85638365", - "0x2ee4d7bcb644a" - ] + "plotIndexes": ["0x284e127deb79a", "0x28d189b6577b7", "0x2d92c85638365", "0x2ee4d7bcb644a"] } }, "depositAllowances": {}, @@ -98810,9 +98177,7 @@ "plots": { "705213144042951": "0x129408482" }, - "plotIndexes": [ - "0x281633af10dc7" - ] + "plotIndexes": ["0x281633af10dc7"] } }, "depositAllowances": {}, @@ -99463,11 +98828,15 @@ "695442580762530": "0xade3d6ac", "695445498152526": "0x5fdcdbdb" }, +<<<<<<< HEAD "plotIndexes": [ "0x27846ec23ea58", "0x2788057fcefa2", "0x2788105e0c64e" ] +======= + "plotIndexes": ["0x27846ec23ea58", "0x2788057fcefa2", "0x2788105e0c64e"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -99731,9 +99100,7 @@ "plots": { "94009622936383": "0xf1d0bd249" }, - "plotIndexes": [ - "0x5580522e3b3f" - ] + "plotIndexes": ["0x5580522e3b3f"] } }, "depositAllowances": {}, @@ -100693,12 +100060,7 @@ "545031168363462": "0x190fefe0a8", "805920059376678": "0x1c2fb1ce2" }, - "plotIndexes": [ - "0x11a9e021386d1", - "0x15c9119f9178d", - "0x1efb3f52e8bc6", - "0x2dcfae2db4426" - ] + "plotIndexes": ["0x11a9e021386d1", "0x15c9119f9178d", "0x1efb3f52e8bc6", "0x2dcfae2db4426"] } }, "depositAllowances": {}, @@ -100939,10 +100301,7 @@ "89618032979953": "0x4be8df", "404170048368756": "0x165069ee00" }, - "plotIndexes": [ - "0x5181d3056ff1", - "0x16f972c297074" - ] + "plotIndexes": ["0x5181d3056ff1", "0x16f972c297074"] } }, "depositAllowances": {}, @@ -101189,9 +100548,7 @@ "plots": { "360447206306604": "0xd14df2a65" }, - "plotIndexes": [ - "0x147d327b1332c" - ] + "plotIndexes": ["0x147d327b1332c"] } }, "depositAllowances": {}, @@ -101664,9 +101021,7 @@ "plots": { "282849931909438": "0x1481aeaa1c" }, - "plotIndexes": [ - "0x1014021b7593e" - ] + "plotIndexes": ["0x1014021b7593e"] } }, "depositAllowances": {}, @@ -102018,9 +101373,7 @@ "plots": { "214906704616754": "0x22a8bac6c9" }, - "plotIndexes": [ - "0xc374ddc9dd32" - ] + "plotIndexes": ["0xc374ddc9dd32"] } }, "depositAllowances": {}, @@ -102299,9 +101652,7 @@ "plots": { "179397038527663": "0x3ece42b12" }, - "plotIndexes": [ - "0xa32920c154af" - ] + "plotIndexes": ["0xa32920c154af"] } }, "depositAllowances": {}, @@ -102931,9 +102282,7 @@ "plots": { "99174348476492": "0x355561dc9" }, - "plotIndexes": [ - "0x5a32d3cfd04c" - ] + "plotIndexes": ["0x5a32d3cfd04c"] } }, "depositAllowances": {}, @@ -103003,11 +102352,15 @@ "707961113586604": "0xa9144a0", "707970847379052": "0x912346a" }, +<<<<<<< HEAD "plotIndexes": [ "0x7ce50b0feaa4", "0x283e30ab0abac", "0x283e54ede8e6c" ] +======= + "plotIndexes": ["0x7ce50b0feaa4", "0x283e30ab0abac", "0x283e54ede8e6c"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -104929,11 +104282,7 @@ "692928162008877": "0x6c17d060", "704933743496239": "0x190a7127f" }, - "plotIndexes": [ - "0x1ecadef33e486", - "0x27636e8f38f2d", - "0x281222d5f0c2f" - ] + "plotIndexes": ["0x1ecadef33e486", "0x27636e8f38f2d", "0x281222d5f0c2f"] } }, "depositAllowances": {}, @@ -105172,9 +104521,7 @@ "plots": { "79182663733943": "0x74d7807" }, - "plotIndexes": [ - "0x4804268b52b7" - ] + "plotIndexes": ["0x4804268b52b7"] } }, "depositAllowances": {}, @@ -105263,12 +104610,7 @@ "325950651461073": "0x345b65872", "372005710267490": "0x1faead5ce" }, - "plotIndexes": [ - "0xef1a89c9e8a4", - "0xffe3c6fef971", - "0x128734ccb6dd1", - "0x1525654370462" - ] + "plotIndexes": ["0xef1a89c9e8a4", "0xffe3c6fef971", "0x128734ccb6dd1", "0x1525654370462"] } }, "depositAllowances": {}, @@ -105344,11 +104686,15 @@ "656343510832897": "0x38b1b6410", "647244453263452": "0xbdb29cec4" }, +<<<<<<< HEAD "plotIndexes": [ "0x1bd3356ba62b6", "0x254f0e1d05701", "0x24caa57b8385c" ] +======= + "plotIndexes": ["0x1bd3356ba62b6", "0x254f0e1d05701", "0x24caa57b8385c"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -105485,11 +104831,15 @@ "710139039155338": "0x27ab7a26", "710156152304688": "0x1ccba5ec" }, +<<<<<<< HEAD "plotIndexes": [ "0x2861ec5144941", "0x285de212b848a", "0x285e21d317430" ] +======= + "plotIndexes": ["0x2861ec5144941", "0x285de212b848a", "0x285e21d317430"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -105568,9 +104918,7 @@ "plots": { "730030468714506": "0x9823da71" }, - "plotIndexes": [ - "0x297f576c3500a" - ] + "plotIndexes": ["0x297f576c3500a"] } }, "depositAllowances": {}, @@ -105773,10 +105121,7 @@ "157852242536462": "0x407f29ed4", "279031628514856": "0x34ada71a30" }, - "plotIndexes": [ - "0x8f90d6d7e80e", - "0xfdc71d194628" - ] + "plotIndexes": ["0x8f90d6d7e80e", "0xfdc71d194628"] } }, "depositAllowances": {}, @@ -105951,9 +105296,7 @@ "plots": { "379502238337329": "0x17b0ec25b5" }, - "plotIndexes": [ - "0x15927c01b8931" - ] + "plotIndexes": ["0x15927c01b8931"] } }, "depositAllowances": {}, @@ -106027,10 +105370,14 @@ "720949940194594": "0x2134c65b4c", "717247201282406": "0x7f9d9bcd" }, +<<<<<<< HEAD "plotIndexes": [ "0x28fb33d160d22", "0x28c5520a60966" ] +======= + "plotIndexes": ["0x28fb33d160d22", "0x28c5520a60966"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -106172,9 +105519,7 @@ "plots": { "832026119943265": "0x7a1f03da5" }, - "plotIndexes": [ - "0x2f4b92d52b461" - ] + "plotIndexes": ["0x2f4b92d52b461"] } }, "depositAllowances": {}, @@ -106362,9 +105707,7 @@ "plots": { "828439202214961": "0x6cbe5353" }, - "plotIndexes": [ - "0x2f176085db431" - ] + "plotIndexes": ["0x2f176085db431"] } }, "depositAllowances": {}, @@ -106466,9 +105809,7 @@ "plots": { "729028199659376": "0x7fe5acf5" }, - "plotIndexes": [ - "0x2970c1adf3770" - ] + "plotIndexes": ["0x2970c1adf3770"] } }, "depositAllowances": {}, @@ -106543,9 +105884,7 @@ "plots": { "251973284998916": "0x1a2ef9c80d" }, - "plotIndexes": [ - "0xe52b1a252f04" - ] + "plotIndexes": ["0xe52b1a252f04"] } }, "depositAllowances": {}, @@ -106965,11 +106304,7 @@ "89653878484825": "0x8d25d08b", "710672212511201": "0x2ce898a" }, - "plotIndexes": [ - "0x512281b685f6", - "0x518a2b946f59", - "0x2865a44c749e1" - ] + "plotIndexes": ["0x512281b685f6", "0x518a2b946f59", "0x2865a44c749e1"] } }, "depositAllowances": {}, @@ -107158,10 +106493,7 @@ "140425724068676": "0x113eb455006", "249261881615002": "0x93d849c886" }, - "plotIndexes": [ - "0x7fb769668344", - "0xe2b3cde8e29a" - ] + "plotIndexes": ["0x7fb769668344", "0xe2b3cde8e29a"] } }, "depositAllowances": {}, @@ -107478,10 +106810,14 @@ "622881743106936": "0x5229851e3", "622863481299524": "0x4407d1134" }, +<<<<<<< HEAD "plotIndexes": [ "0x23681f508f378", "0x2367db48be244" ] +======= + "plotIndexes": ["0x23681f508f378", "0x2367db48be244"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -107679,9 +107015,7 @@ "plots": { "723128115855767": "0x5d21dba00" }, - "plotIndexes": [ - "0x291ae62790197" - ] + "plotIndexes": ["0x291ae62790197"] } }, "depositAllowances": {}, @@ -107868,10 +107202,14 @@ "709027482095723": "0xc23f4", "709010668288003": "0x6586a78" }, +<<<<<<< HEAD "plotIndexes": [ "0x284db5334d06b", "0x284d769067803" ] +======= + "plotIndexes": ["0x284db5334d06b", "0x284d769067803"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -107940,9 +107278,7 @@ "plots": { "639063951103669": "0xdbedae6af" }, - "plotIndexes": [ - "0x24539abcb56b5" - ] + "plotIndexes": ["0x24539abcb56b5"] } }, "depositAllowances": {}, @@ -108433,11 +107769,15 @@ "89999524099760": "0xfdd0f07", "137158194248374": "0x2" }, +<<<<<<< HEAD "plotIndexes": [ "0x51da3b3d234c", "0x51daa5a9f6b0", "0x7cbea1723ab6" ] +======= + "plotIndexes": ["0x51da3b3d234c", "0x51daa5a9f6b0", "0x7cbea1723ab6"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -108873,11 +108213,15 @@ "592978060846134": "0x1b17101f51", "605342348741118": "0x15ca419131" }, +<<<<<<< HEAD "plotIndexes": [ "0x21cdb80d34112", "0x21b4f76ad2436", "0x2268e3faa09fe" ] +======= + "plotIndexes": ["0x21cdb80d34112", "0x21b4f76ad2436", "0x2268e3faa09fe"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -109330,10 +108674,7 @@ "206586140823282": "0x5983ef417", "248705737408140": "0x66d97c79b" }, - "plotIndexes": [ - "0xbbe3958a0ef2", - "0xe2325121be8c" - ] + "plotIndexes": ["0xbbe3958a0ef2", "0xe2325121be8c"] } }, "depositAllowances": {}, @@ -109661,9 +109002,7 @@ "plots": { "743635887035182": "0x2f227180b" }, - "plotIndexes": [ - "0x2a45538e3932e" - ] + "plotIndexes": ["0x2a45538e3932e"] } }, "depositAllowances": {}, @@ -109835,11 +109174,7 @@ "469547339542651": "0x52d45acd", "695587678882559": "0xb2a4b1ba" }, - "plotIndexes": [ - "0x10f10f32d2f75", - "0x1ab0d0260f07b", - "0x278a220828aff" - ] + "plotIndexes": ["0x10f10f32d2f75", "0x1ab0d0260f07b", "0x278a220828aff"] } }, "depositAllowances": {}, @@ -110031,10 +109366,7 @@ "203219196546565": "0x42b01c1e5", "490244915816242": "0x2c7200931" }, - "plotIndexes": [ - "0xb8d3a8058e05", - "0x1bde00a0f6732" - ] + "plotIndexes": ["0xb8d3a8058e05", "0x1bde00a0f6732"] } }, "depositAllowances": {}, @@ -110191,9 +109523,7 @@ "plots": { "137282998912124": "0x49fc317f" }, - "plotIndexes": [ - "0x7cdbb062447c" - ] + "plotIndexes": ["0x7cdbb062447c"] } }, "depositAllowances": {}, @@ -110538,9 +109868,7 @@ "plots": { "693287626526291": "0x1ed92a0bac" }, - "plotIndexes": [ - "0x2768a9ab4ce53" - ] + "plotIndexes": ["0x2768a9ab4ce53"] } }, "depositAllowances": {}, @@ -110606,9 +109934,7 @@ "plots": { "698739099764552": "0xc8543ac" }, - "plotIndexes": [ - "0x27b7fdfd50748" - ] + "plotIndexes": ["0x27b7fdfd50748"] } }, "depositAllowances": {}, @@ -110848,9 +110174,7 @@ "plots": { "869688549762427": "0xca1c1ac8" }, - "plotIndexes": [ - "0x316fa2512e57b" - ] + "plotIndexes": ["0x316fa2512e57b"] } }, "depositAllowances": {}, @@ -110915,9 +110239,7 @@ "plots": { "263964858351502": "0x16" }, - "plotIndexes": [ - "0xf0131b9d7f8e" - ] + "plotIndexes": ["0xf0131b9d7f8e"] } }, "depositAllowances": {}, @@ -111074,10 +110396,7 @@ "343733188268035": "0x4763517cd", "456504925931714": "0x638805c80" }, - "plotIndexes": [ - "0x1389f9e959003", - "0x19f3055f2c8c2" - ] + "plotIndexes": ["0x1389f9e959003", "0x19f3055f2c8c2"] } }, "depositAllowances": {}, @@ -111950,10 +111269,7 @@ "272456937859503": "0xb6317a145", "311901125265412": "0xbb18d0ecc" }, - "plotIndexes": [ - "0xf7cc52ff69af", - "0x11bac23c6c804" - ] + "plotIndexes": ["0xf7cc52ff69af", "0x11bac23c6c804"] } }, "depositAllowances": {}, @@ -112133,10 +111449,14 @@ "696318708480928": "0xd08e90804", "696561749381444": "0x1672e6aa40" }, +<<<<<<< HEAD "plotIndexes": [ "0x2794c5544fba0", "0x27984eba2d144" ] +======= + "plotIndexes": ["0x2794c5544fba0", "0x27984eba2d144"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -112202,12 +111522,7 @@ "743140025593601": "0x7469a33", "747313755152217": "0xfc9feddcd" }, - "plotIndexes": [ - "0x29f13fb2925ac", - "0x2a3e20cadfa2d", - "0x2a3e1c53e6f01", - "0x2a7ad8ae95f59" - ] + "plotIndexes": ["0x29f13fb2925ac", "0x2a3e20cadfa2d", "0x2a3e1c53e6f01", "0x2a7ad8ae95f59"] } }, "depositAllowances": {}, @@ -113153,10 +112468,7 @@ "218985381779657": "0x10aa56688", "281332716579528": "0x26f16d91d" }, - "plotIndexes": [ - "0xc72a81e458c9", - "0xffdee0a2aac8" - ] + "plotIndexes": ["0xc72a81e458c9", "0xffdee0a2aac8"] } }, "depositAllowances": {}, @@ -113447,9 +112759,7 @@ "plots": { "711780404576445": "0x177a494" }, - "plotIndexes": [ - "0x2875c4a2c40bd" - ] + "plotIndexes": ["0x2875c4a2c40bd"] } }, "depositAllowances": {}, @@ -113522,10 +112832,14 @@ "241619965026016": "0x208ce8598", "241187757624377": "0x4e8b2176" }, +<<<<<<< HEAD "plotIndexes": [ "0xdbc0882f9ee0", "0xdb5be69e0c39" ] +======= + "plotIndexes": ["0xdbc0882f9ee0", "0xdb5be69e0c39"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -113752,9 +113066,7 @@ "plots": { "139710719558187": "0x3b9aca00" }, - "plotIndexes": [ - "0x7f10efcf822b" - ] + "plotIndexes": ["0x7f10efcf822b"] } }, "depositAllowances": {}, @@ -113990,9 +113302,7 @@ "plots": { "238731986695824": "0x53cf7ea5a" }, - "plotIndexes": [ - "0xd9201f437690" - ] + "plotIndexes": ["0xd9201f437690"] } }, "depositAllowances": {}, @@ -114594,9 +113904,7 @@ "plots": { "403136003365944": "0x14a141b97" }, - "plotIndexes": [ - "0x16ea66a46dc38" - ] + "plotIndexes": ["0x16ea66a46dc38"] } }, "depositAllowances": {}, @@ -115631,10 +114939,7 @@ "288431410066080": "0x153f30b83b", "302065553585736": "0x2823d73c00" }, - "plotIndexes": [ - "0x10653abbd32a0", - "0x112ba1e053648" - ] + "plotIndexes": ["0x10653abbd32a0", "0x112ba1e053648"] } }, "depositAllowances": {}, @@ -115764,10 +115069,7 @@ "148507402919772": "0x45117da0c", "218918422285195": "0xabd990a2c" }, - "plotIndexes": [ - "0x871112ff5f5c", - "0xc71aeacb8b8b" - ] + "plotIndexes": ["0x871112ff5f5c", "0xc71aeacb8b8b"] } }, "depositAllowances": {}, @@ -115953,10 +115255,7 @@ "235586467178002": "0x863b0ce5", "278219154129515": "0x17497ee220" }, - "plotIndexes": [ - "0xd643bfb0a612", - "0xfd09f1da026b" - ] + "plotIndexes": ["0xd643bfb0a612", "0xfd09f1da026b"] } }, "depositAllowances": {}, @@ -116010,9 +115309,7 @@ "plots": { "708681698730544": "0x187bd4a" }, - "plotIndexes": [ - "0x2848ad0e96230" - ] + "plotIndexes": ["0x2848ad0e96230"] } }, "depositAllowances": {}, @@ -116113,9 +115410,7 @@ "plots": { "403231089271090": "0x2372e67ad" }, - "plotIndexes": [ - "0x16ebc8dd6a132" - ] + "plotIndexes": ["0x16ebc8dd6a132"] } }, "depositAllowances": {}, @@ -117034,10 +116329,7 @@ "828441026627460": "0x1384d7a79", "851852363441414": "0x53b12b16" }, - "plotIndexes": [ - "0x2f176751c0784", - "0x306c155862506" - ] + "plotIndexes": ["0x2f176751c0784", "0x306c155862506"] } }, "depositAllowances": {}, @@ -117263,9 +116555,7 @@ "plots": { "147341296377729": "0x230ffb900" }, - "plotIndexes": [ - "0x860191a19f81" - ] + "plotIndexes": ["0x860191a19f81"] } }, "depositAllowances": {}, @@ -117421,11 +116711,7 @@ "851853767561244": "0x2ef384178c", "866412741469874": "0x1ca0b2eeb5" }, - "plotIndexes": [ - "0x5464b23fc0c1", - "0x306c1a937501c", - "0x313ff6faf26b2" - ] + "plotIndexes": ["0x5464b23fc0c1", "0x306c1a937501c", "0x313ff6faf26b2"] } }, "depositAllowances": {}, @@ -117993,12 +117279,16 @@ "148981530924047": "0x2faf0800", "139712642473749": "0x463f5ea0" }, +<<<<<<< HEAD "plotIndexes": [ "0x877ea0a6f00f", "0x86c4d37fecc5", "0x877f773a940f", "0x7f11626cdf15" ] +======= + "plotIndexes": ["0x877ea0a6f00f", "0x86c4d37fecc5", "0x877f773a940f", "0x7f11626cdf15"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -118300,11 +117590,7 @@ "672694542217095": "0x194f61ec80", "921041054593050": "0xe4c412ccd" }, - "plotIndexes": [ - "0x263b889121487", - "0x263cfe73b2f87", - "0x345ae94e1f01a" - ] + "plotIndexes": ["0x263b889121487", "0x263cfe73b2f87", "0x345ae94e1f01a"] } }, "depositAllowances": {}, @@ -118521,9 +117807,7 @@ "plots": { "280303043396627": "0x3c0420c717" }, - "plotIndexes": [ - "0xfeef2354c413" - ] + "plotIndexes": ["0xfeef2354c413"] } }, "depositAllowances": {}, @@ -118661,10 +117945,7 @@ "231484786889457": "0x180bce4004", "247720715547598": "0x1be4673477" }, - "plotIndexes": [ - "0xd288c07e52f1", - "0xe14cf940f3ce" - ] + "plotIndexes": ["0xd288c07e52f1", "0xe14cf940f3ce"] } }, "depositAllowances": {}, @@ -119109,12 +118390,7 @@ "234464873892798": "0xbdc8964ff", "401945159569837": "0x3398008ae" }, - "plotIndexes": [ - "0xd01603a335b9", - "0xd5fd037da114", - "0xd53e9b854bbe", - "0x16d91267491ad" - ] + "plotIndexes": ["0xd01603a335b9", "0xd5fd037da114", "0xd53e9b854bbe", "0x16d91267491ad"] } }, "depositAllowances": {}, @@ -119301,10 +118577,7 @@ "457409482850195": "0x4e150380", "608867358000586": "0x9c6b0458" }, - "plotIndexes": [ - "0x1a002f1bdff93", - "0x229c2fa96c5ca" - ] + "plotIndexes": ["0x1a002f1bdff93", "0x229c2fa96c5ca"] } }, "depositAllowances": {}, @@ -119632,10 +118905,7 @@ "211331639575030": "0x16d6f4c390", "557962511788124": "0xb76703adf9" }, - "plotIndexes": [ - "0xc0347b4e81f6", - "0x1fb76c550285c" - ] + "plotIndexes": ["0xc0347b4e81f6", "0x1fb76c550285c"] } }, "depositAllowances": {}, @@ -120504,9 +119774,7 @@ "plots": { "698244652210039": "0x25fd161a" }, - "plotIndexes": [ - "0x27b0cc0761777" - ] + "plotIndexes": ["0x27b0cc0761777"] } }, "depositAllowances": {}, @@ -121350,9 +120618,7 @@ "plots": { "326054841301059": "0x2bc80d0c9" }, - "plotIndexes": [ - "0x1288b8efe3843" - ] + "plotIndexes": ["0x1288b8efe3843"] } }, "depositAllowances": {}, @@ -122319,9 +121585,7 @@ "plots": { "709912882840970": "0x13e95d0" }, - "plotIndexes": [ - "0x285a97934058a" - ] + "plotIndexes": ["0x285a97934058a"] } }, "depositAllowances": {}, @@ -122879,9 +122143,7 @@ "plots": { "191324987903919": "0x764e819fc2" }, - "plotIndexes": [ - "0xae0251f0cfaf" - ] + "plotIndexes": ["0xae0251f0cfaf"] } }, "depositAllowances": {}, @@ -122952,9 +122214,7 @@ "plots": { "252900231373433": "0x4" }, - "plotIndexes": [ - "0xe602ec746279" - ] + "plotIndexes": ["0xe602ec746279"] } }, "depositAllowances": {}, @@ -123097,9 +122357,7 @@ "plots": { "225729337993345": "0x8518ab56b" }, - "plotIndexes": [ - "0xcd4cb501a881" - ] + "plotIndexes": ["0xcd4cb501a881"] } }, "depositAllowances": {}, @@ -123770,10 +123028,7 @@ "279023004179684": "0x2020ce944", "790143477817634": "0x43e5e1fd10" }, - "plotIndexes": [ - "0xfdc51b0c5ce4", - "0x2cea19d512122" - ] + "plotIndexes": ["0xfdc51b0c5ce4", "0x2cea19d512122"] } }, "depositAllowances": {}, @@ -123931,10 +123186,7 @@ "285782944886025": "0x97e3327b3", "280795609685940": "0x34b4a6d" }, - "plotIndexes": [ - "0x103eb06e9ad09", - "0xff61d291dfb4" - ] + "plotIndexes": ["0x103eb06e9ad09", "0xff61d291dfb4"] } }, "depositAllowances": {}, @@ -124143,10 +123395,7 @@ "144865920860161": "0x47433537d3", "459450774898205": "0x1de448ae200" }, - "plotIndexes": [ - "0x83c139c0c001", - "0x1a1de383ac61d" - ] + "plotIndexes": ["0x83c139c0c001", "0x1a1de383ac61d"] } }, "depositAllowances": {}, @@ -124306,10 +123555,7 @@ "66084769661335": "0x1a42550c9", "716940669389169": "0x6b655f96" }, - "plotIndexes": [ - "0x3c1a8f388197", - "0x28c0dc1ec8971" - ] + "plotIndexes": ["0x3c1a8f388197", "0x28c0dc1ec8971"] } }, "depositAllowances": {}, @@ -124373,11 +123619,15 @@ "692591545312322": "0x184e7519ba", "693420118956543": "0x12f927103a" }, +<<<<<<< HEAD "plotIndexes": [ "0x2760173384841", "0x275e889086442", "0x276a973ded9ff" ] +======= + "plotIndexes": ["0x2760173384841", "0x275e889086442", "0x276a973ded9ff"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -124768,12 +124018,7 @@ "211429735220614": "0x43795c3bf", "216896549205986": "0x171b83c415" }, - "plotIndexes": [ - "0xbd08f0d73b48", - "0xc0340c040a2e", - "0xc04b52434586", - "0xc54429c4b7e2" - ] + "plotIndexes": ["0xbd08f0d73b48", "0xc0340c040a2e", "0xc04b52434586", "0xc54429c4b7e2"] } }, "depositAllowances": {}, @@ -124956,10 +124201,7 @@ "311772293109387": "0x6e2c72507", "311768851134035": "0xcd286038" }, - "plotIndexes": [ - "0x11b8e24c8168b", - "0x11b8d579fb653" - ] + "plotIndexes": ["0x11b8e24c8168b", "0x11b8d579fb653"] } }, "depositAllowances": {}, @@ -125280,12 +124522,7 @@ "462395957190637": "0x1f41227adc", "717100914282406": "0x220f6279c0" }, - "plotIndexes": [ - "0x18298e9b7ca7a", - "0x19acec3909588", - "0x1a48bf2c61fed", - "0x28c3311438fa6" - ] + "plotIndexes": ["0x18298e9b7ca7a", "0x19acec3909588", "0x1a48bf2c61fed", "0x28c3311438fa6"] } }, "depositAllowances": {}, @@ -125381,9 +124618,7 @@ "plots": { "709239251125570": "0x13cc397e" }, - "plotIndexes": [ - "0x2850ca19fc542" - ] + "plotIndexes": ["0x2850ca19fc542"] } }, "depositAllowances": {}, @@ -126156,9 +125391,7 @@ "plots": { "825251211700977": "0x1739bb24" }, - "plotIndexes": [ - "0x2ee8fc552eaf1" - ] + "plotIndexes": ["0x2ee8fc552eaf1"] } }, "depositAllowances": {}, @@ -126475,9 +125708,7 @@ "plots": { "382861084620606": "0x31fc8639a0" }, - "plotIndexes": [ - "0x15c35caf2773e" - ] + "plotIndexes": ["0x15c35caf2773e"] } }, "depositAllowances": {}, @@ -126886,11 +126117,7 @@ "247709563496291": "0x99f2cfb3", "254358180682653": "0x11d8206e46" }, - "plotIndexes": [ - "0x6f4e2858fb8f", - "0xe14a608a2763", - "0xe75661015b9d" - ] + "plotIndexes": ["0x6f4e2858fb8f", "0xe14a608a2763", "0xe75661015b9d"] } }, "depositAllowances": {}, @@ -148676,11 +147903,15 @@ "245347547726707": "0x6c5d5efb14", "245812970700423": "0x989680" }, +<<<<<<< HEAD "plotIndexes": [ "0xbb436950607b", "0xdf246d6dc373", "0xdf90caccbe87" ] +======= + "plotIndexes": ["0xbb436950607b", "0xdf246d6dc373", "0xdf90caccbe87"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -149099,12 +148330,7 @@ "295229653187803": "0x213b1a43a7", "300448068579740": "0xb16a08d45" }, - "plotIndexes": [ - "0xb739ada1c288", - "0x1003db3fa2965", - "0x10c82829afcdb", - "0x111418466b19c" - ] + "plotIndexes": ["0xb739ada1c288", "0x1003db3fa2965", "0x10c82829afcdb", "0x111418466b19c"] } }, "depositAllowances": {}, @@ -149350,9 +148576,7 @@ "plots": { "708095648692114": "0xa57232e" }, - "plotIndexes": [ - "0x284025d9b7792" - ] + "plotIndexes": ["0x284025d9b7792"] } }, "depositAllowances": {}, @@ -149440,11 +148664,15 @@ "829108707937549": "0x5d1afdd0", "840777772674190": "0xb7bd2a29" }, +<<<<<<< HEAD "plotIndexes": [ "0x2f212471f4add", "0x2f211ea044d0d", "0x2fcaed479ac8e" ] +======= + "plotIndexes": ["0x2f212471f4add", "0x2f211ea044d0d", "0x2fcaed479ac8e"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -150328,9 +149556,7 @@ "plots": { "720678752310386": "0x74773fb60" }, - "plotIndexes": [ - "0x28f7419075472" - ] + "plotIndexes": ["0x28f7419075472"] } }, "depositAllowances": {}, @@ -150433,10 +149659,7 @@ "328320292096710": "0x3034a4a78", "422918905448662": "0x110a26f43a" }, - "plotIndexes": [ - "0x12a9b06620ac6", - "0x180a47b20c8d6" - ] + "plotIndexes": ["0x12a9b06620ac6", "0x180a47b20c8d6"] } }, "depositAllowances": {}, @@ -150867,9 +150090,7 @@ "plots": { "655101870360636": "0x44dab8e14" }, - "plotIndexes": [ - "0x253cfca46483c" - ] + "plotIndexes": ["0x253cfca46483c"] } }, "depositAllowances": {}, @@ -151116,9 +150337,7 @@ "plots": { "980156302633580": "0x1dcb45f54b" }, - "plotIndexes": [ - "0x37b726c3e2a6c" - ] + "plotIndexes": ["0x37b726c3e2a6c"] } }, "depositAllowances": {}, @@ -151179,9 +150398,7 @@ "plots": { "320166210969483": "0x337e15633" }, - "plotIndexes": [ - "0x1233081461f8b" - ] + "plotIndexes": ["0x1233081461f8b"] } }, "depositAllowances": {}, @@ -151499,9 +150716,7 @@ "plots": { "273275464185929": "0xe1000541c" }, - "plotIndexes": [ - "0xf88ae6f7f849" - ] + "plotIndexes": ["0xf88ae6f7f849"] } }, "depositAllowances": {}, @@ -152195,9 +151410,7 @@ "plots": { "279926667638567": "0x42ccca2d9" }, - "plotIndexes": [ - "0xfe9781967727" - ] + "plotIndexes": ["0xfe9781967727"] } }, "depositAllowances": {}, @@ -152248,10 +151461,7 @@ "643036860621235": "0x2890b2", "656209153318480": "0x7fc0535" }, - "plotIndexes": [ - "0x248d6afa7a1b3", - "0x254d1997b5e50" - ] + "plotIndexes": ["0x248d6afa7a1b3", "0x254d1997b5e50"] } }, "depositAllowances": {}, @@ -152516,10 +151726,7 @@ "61638545548819": "0x2540be400", "340032517656384": "0x372ab2a6f" }, - "plotIndexes": [ - "0x380f579ca613", - "0x13541fd6d4f40" - ] + "plotIndexes": ["0x380f579ca613", "0x13541fd6d4f40"] } }, "depositAllowances": {}, @@ -152681,9 +151888,7 @@ "plots": { "113368183061335": "0x111d9831e9d" }, - "plotIndexes": [ - "0x671b9647bb57" - ] + "plotIndexes": ["0x671b9647bb57"] } }, "depositAllowances": {}, @@ -152811,9 +152016,7 @@ "plots": { "591794773294125": "0x5c8d731ce5" }, - "plotIndexes": [ - "0x21a3bf53dfc2d" - ] + "plotIndexes": ["0x21a3bf53dfc2d"] } }, "depositAllowances": {}, @@ -153016,10 +152219,7 @@ "262274378621214": "0x1f7961f1a", "724808689235963": "0x9f14fd926" }, - "plotIndexes": [ - "0xee89832be11e", - "0x29335ac73b7fb" - ] + "plotIndexes": ["0xee89832be11e", "0x29335ac73b7fb"] } }, "depositAllowances": {}, @@ -153145,11 +152345,7 @@ "705338180288143": "0xcaa501b", "705711760021846": "0x2cde198e" }, - "plotIndexes": [ - "0x9b3a95002a28", - "0x2818057aebe8f", - "0x281d752c51956" - ] + "plotIndexes": ["0x9b3a95002a28", "0x2818057aebe8f", "0x281d752c51956"] } }, "depositAllowances": {}, @@ -153235,10 +152431,7 @@ "705090818684110": "0xf0724a2e", "705505883321902": "0x15fd2eb85" }, - "plotIndexes": [ - "0x28146bfc834ce", - "0x281a7638ff62e" - ] + "plotIndexes": ["0x28146bfc834ce", "0x281a7638ff62e"] } }, "depositAllowances": {}, @@ -153907,12 +153100,7 @@ "315703398038150": "0x5c33e7739", "464439664065321": "0x31df7d4f2" }, - "plotIndexes": [ - "0xe16bd98e9743", - "0x113e9eb37e24e", - "0x11f216ce4fa86", - "0x1a667c9323b29" - ] + "plotIndexes": ["0xe16bd98e9743", "0x113e9eb37e24e", "0x11f216ce4fa86", "0x1a667c9323b29"] } }, "depositAllowances": {}, @@ -154378,12 +153566,7 @@ "931679348366271": "0x1c62111ed", "973194749444164": "0x370881b70" }, - "plotIndexes": [ - "0x2f1bfb9406b44", - "0x2f2aa57f317ce", - "0x34f5b809a9bbf", - "0x3751d8f568044" - ] + "plotIndexes": ["0x2f1bfb9406b44", "0x2f2aa57f317ce", "0x34f5b809a9bbf", "0x3751d8f568044"] } }, "depositAllowances": {}, @@ -154572,9 +153755,7 @@ "plots": { "640869029506791": "0x44285177f6" }, - "plotIndexes": [ - "0x246ddf2d9eee7" - ] + "plotIndexes": ["0x246ddf2d9eee7"] } }, "depositAllowances": {}, @@ -154861,11 +154042,15 @@ "102738799520478": "0x19c1efa6b", "339313664142821": "0x2deaaae52f" }, +<<<<<<< HEAD "plotIndexes": [ "0x60a4670073d0", "0x5d70bda66ade", "0x1349a9e6b2de5" ] +======= + "plotIndexes": ["0x60a4670073d0", "0x5d70bda66ade", "0x1349a9e6b2de5"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -155030,10 +154215,7 @@ "648452995559057": "0x8da7774400", "707566423717109": "0xa70707860" }, - "plotIndexes": [ - "0x24dc3ba742e91", - "0x28387255734f5" - ] + "plotIndexes": ["0x24dc3ba742e91", "0x28387255734f5"] } }, "depositAllowances": {}, @@ -155725,9 +154907,7 @@ "plots": { "662669216662487": "0x2a3cba4e76" }, - "plotIndexes": [ - "0x25ab1b34343d7" - ] + "plotIndexes": ["0x25ab1b34343d7"] } }, "depositAllowances": {}, @@ -155971,9 +155151,7 @@ "plots": { "603440410903505": "0x111276d744" }, - "plotIndexes": [ - "0x224d36b55c3d1" - ] + "plotIndexes": ["0x224d36b55c3d1"] } }, "depositAllowances": {}, @@ -156547,10 +155725,7 @@ "934349602396467": "0x2ae14cdef", "934274510665946": "0x117bd0e059" }, - "plotIndexes": [ - "0x351c938259933", - "0x351b7bc54b8da" - ] + "plotIndexes": ["0x351c938259933", "0x351b7bc54b8da"] } }, "depositAllowances": {}, @@ -156686,9 +155861,7 @@ "plots": { "282808447027022": "0x39b09c2ee" }, - "plotIndexes": [ - "0x101367906474e" - ] + "plotIndexes": ["0x101367906474e"] } }, "depositAllowances": {}, @@ -156870,12 +156043,16 @@ "293528031483784": "0x119bef6b34", "293611040837832": "0x9ec6ca5f4" }, +<<<<<<< HEAD "plotIndexes": [ "0x108588986f11e", "0x10b2adaa985a0", "0x10af6520c5788", "0x10b09a5ca90c8" ] +======= + "plotIndexes": ["0x108588986f11e", "0x10b2adaa985a0", "0x10af6520c5788", "0x10b09a5ca90c8"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -157020,9 +156197,7 @@ "plots": { "711149302815635": "0x417c54c2" }, - "plotIndexes": [ - "0x286c959939b93" - ] + "plotIndexes": ["0x286c959939b93"] } }, "depositAllowances": {}, @@ -157229,9 +156404,7 @@ "plots": { "704775356837324": "0xc5261b20" }, - "plotIndexes": [ - "0x280fd4cca6dcc" - ] + "plotIndexes": ["0x280fd4cca6dcc"] } }, "depositAllowances": {}, @@ -157975,10 +157148,7 @@ "102525075901902": "0x536bf265", "741220479376083": "0xf7714a49" }, - "plotIndexes": [ - "0x5d3efabacdce", - "0x2a222d75f9ad3" - ] + "plotIndexes": ["0x5d3efabacdce", "0x2a222d75f9ad3"] } }, "depositAllowances": {}, @@ -158571,10 +157741,7 @@ "526408170375278": "0x198345a9d", "640236298144951": "0xe1b3986e" }, - "plotIndexes": [ - "0x1dec3f400886e", - "0x2464aa11f8cb7" - ] + "plotIndexes": ["0x1dec3f400886e", "0x2464aa11f8cb7"] } }, "depositAllowances": {}, @@ -158734,10 +157901,7 @@ "106125616554651": "0x1f1b535135", "201085473425602": "0x2acf2128e8" }, - "plotIndexes": [ - "0x60854bad229b", - "0xb6e2dc3688c2" - ] + "plotIndexes": ["0x60854bad229b", "0xb6e2dc3688c2"] } }, "depositAllowances": {}, @@ -159369,12 +158533,16 @@ "710594453064805": "0x1aace120", "710926902109899": "0x813bdbbba" }, +<<<<<<< HEAD "plotIndexes": [ "0x286959128b37f", "0x2865176f4ef75", "0x2864829f44c65", "0x28695917626cb" ] +======= + "plotIndexes": ["0x286959128b37f", "0x2865176f4ef75", "0x2864829f44c65", "0x28695917626cb"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -159439,9 +158607,7 @@ "plots": { "705108207674441": "0x16c16fce3" }, - "plotIndexes": [ - "0x2814acc3f2449" - ] + "plotIndexes": ["0x2814acc3f2449"] } }, "depositAllowances": {}, @@ -159514,9 +158680,7 @@ "plots": { "327783999805850": "0x1668b58e1b" }, - "plotIndexes": [ - "0x12a1e28df199a" - ] + "plotIndexes": ["0x12a1e28df199a"] } }, "depositAllowances": {}, @@ -159588,9 +158752,7 @@ "plots": { "647295374853920": "0x25c3a8cb6f" }, - "plotIndexes": [ - "0x24cb632e20720" - ] + "plotIndexes": ["0x24cb632e20720"] } }, "depositAllowances": {}, @@ -159980,9 +159142,7 @@ "plots": { "326745544685621": "0x3678774ef" }, - "plotIndexes": [ - "0x1292c601f7835" - ] + "plotIndexes": ["0x1292c601f7835"] } }, "depositAllowances": {}, @@ -160710,9 +159870,7 @@ "plots": { "107032396306938": "0x4149f8a149d" }, - "plotIndexes": [ - "0x61586bf619fa" - ] + "plotIndexes": ["0x61586bf619fa"] } }, "depositAllowances": {}, @@ -161925,10 +161083,14 @@ "328248386875502": "0x501563640", "328222776335176": "0x5f681d526" }, +<<<<<<< HEAD "plotIndexes": [ "0x12a8a487f706e", "0x12a8451fd9b48" ] +======= + "plotIndexes": ["0x12a8a487f706e", "0x12a8451fd9b48"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -162063,9 +161225,7 @@ "plots": { "326760166518052": "0x4fc22ac80" }, - "plotIndexes": [ - "0x1292fc7a6ed24" - ] + "plotIndexes": ["0x1292fc7a6ed24"] } }, "depositAllowances": {}, @@ -162129,9 +161289,7 @@ "plots": { "825241803481990": "0x21d3ee8d" }, - "plotIndexes": [ - "0x2ee8d948ce386" - ] + "plotIndexes": ["0x2ee8d948ce386"] } }, "depositAllowances": {}, @@ -162227,9 +161385,7 @@ "plots": { "78911996612066": "0x3e7500146c" }, - "plotIndexes": [ - "0x47c52186cde2" - ] + "plotIndexes": ["0x47c52186cde2"] } }, "depositAllowances": {}, @@ -163754,9 +162910,7 @@ "plots": { "668776657908591": "0x391280160" }, - "plotIndexes": [ - "0x2603fb320f36f" - ] + "plotIndexes": ["0x2603fb320f36f"] } }, "depositAllowances": {}, @@ -163944,12 +163098,7 @@ "976425187503346": "0x2639d9e66", "976472218629212": "0x89008bbd3" }, - "plotIndexes": [ - "0xd2598bf8b619", - "0x283fe39f91a7a", - "0x3780db4736cf2", - "0x37818a7b9745c" - ] + "plotIndexes": ["0xd2598bf8b619", "0x283fe39f91a7a", "0x3780db4736cf2", "0x37818a7b9745c"] } }, "depositAllowances": {}, @@ -164193,10 +163342,7 @@ "950025729152542": "0xf734ddd34", "980284276067778": "0x1dcc9ae4bb" }, - "plotIndexes": [ - "0x3600b1a1d161e", - "0x37b90380dcdc2" - ] + "plotIndexes": ["0x3600b1a1d161e", "0x37b90380dcdc2"] } }, "depositAllowances": {}, @@ -164394,9 +163540,7 @@ "plots": { "182105251296260": "0x1261ce36d3" }, - "plotIndexes": [ - "0xa59faed0b404" - ] + "plotIndexes": ["0xa59faed0b404"] } }, "depositAllowances": {}, @@ -164897,9 +164041,7 @@ "plots": { "702615802242518": "0x15b578d71" }, - "plotIndexes": [ - "0x27f067d4e65d6" - ] + "plotIndexes": ["0x27f067d4e65d6"] } }, "depositAllowances": {}, @@ -165169,10 +164311,7 @@ "787303159010592": "0x2f4d6a3d29", "825251601360405": "0xe056a32f8" }, - "plotIndexes": [ - "0x2cc0c4d1f9520", - "0x2ee8fdc8ca615" - ] + "plotIndexes": ["0x2cc0c4d1f9520", "0x2ee8fdc8ca615"] } }, "depositAllowances": {}, @@ -165973,11 +165112,7 @@ "289006048832749": "0x54c280867", "334654600033886": "0x5cd77c729" }, - "plotIndexes": [ - "0xf9709b2ced30", - "0x106d976e0eced", - "0x1305dd88eb65e" - ] + "plotIndexes": ["0xf9709b2ced30", "0x106d976e0eced", "0x1305dd88eb65e"] } }, "depositAllowances": {}, @@ -166047,9 +165182,7 @@ "plots": { "827241244621487": "0xac850a0" }, - "plotIndexes": [ - "0x2f05f1c877aaf" - ] + "plotIndexes": ["0x2f05f1c877aaf"] } }, "depositAllowances": {}, @@ -166205,12 +165338,7 @@ "709406140263143": "0x12a2302ab", "709406120075496": "0x13409ff" }, - "plotIndexes": [ - "0x281908a3151ff", - "0x28174099510fb", - "0x285337cfdeae7", - "0x285337bc9e0e8" - ] + "plotIndexes": ["0x281908a3151ff", "0x28174099510fb", "0x285337cfdeae7", "0x285337bc9e0e8"] } }, "depositAllowances": {}, @@ -166305,9 +165433,7 @@ "plots": { "148224785797347": "0xcf91ef7" }, - "plotIndexes": [ - "0x86cf45b450e3" - ] + "plotIndexes": ["0x86cf45b450e3"] } }, "depositAllowances": {}, @@ -166526,12 +165652,16 @@ "387097363491328": "0x82f9d0d0", "387719729833906": "0x23dd2c83e" }, +<<<<<<< HEAD "plotIndexes": [ "0x15924c32bfd6f", "0x15acf4a7bd3a7", "0x1601020d82a00", "0x160a108c4e7b2" ] +======= + "plotIndexes": ["0x15924c32bfd6f", "0x15acf4a7bd3a7", "0x1601020d82a00", "0x160a108c4e7b2"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -166678,9 +165808,7 @@ "plots": { "328341866253694": "0x2405c488a" }, - "plotIndexes": [ - "0x12aa00c4d8d7e" - ] + "plotIndexes": ["0x12aa00c4d8d7e"] } }, "depositAllowances": {}, @@ -166782,9 +165910,7 @@ "plots": { "202665556232120": "0xd3696699b" }, - "plotIndexes": [ - "0xb852c07cc7b8" - ] + "plotIndexes": ["0xb852c07cc7b8"] } }, "depositAllowances": {}, @@ -166911,9 +166037,7 @@ "plots": { "196975395659177": "0x202f5df4a" }, - "plotIndexes": [ - "0xb325e87cdda9" - ] + "plotIndexes": ["0xb325e87cdda9"] } }, "depositAllowances": {}, @@ -167151,9 +166275,7 @@ "plots": { "451822464754774": "0x4d5c4e7cd" }, - "plotIndexes": [ - "0x19aee1d836456" - ] + "plotIndexes": ["0x19aee1d836456"] } }, "depositAllowances": {}, @@ -167291,9 +166413,7 @@ "plots": { "693155946760383": "0x8b4a9cf54" }, - "plotIndexes": [ - "0x2766bf1fb08bf" - ] + "plotIndexes": ["0x2766bf1fb08bf"] } }, "depositAllowances": {}, @@ -167379,11 +166499,7 @@ "388957611450048": "0x2f1123a4c", "737811867246072": "0x77171d1" }, - "plotIndexes": [ - "0x1353aba186628", - "0x161c140435ec0", - "0x29f0936421df8" - ] + "plotIndexes": ["0x1353aba186628", "0x161c140435ec0", "0x29f0936421df8"] } }, "depositAllowances": {}, @@ -168284,10 +167400,7 @@ "274448643868893": "0x3f49d50e0", "718117083194035": "0x470d26109" }, - "plotIndexes": [ - "0xf99c0ded48dd", - "0x28d1fa9a6a2b3" - ] + "plotIndexes": ["0xf99c0ded48dd", "0x28d1fa9a6a2b3"] } }, "depositAllowances": {}, @@ -168730,9 +167843,7 @@ "plots": { "248733345875495": "0x3e4d365e0" }, - "plotIndexes": [ - "0xe238beb98627" - ] + "plotIndexes": ["0xe238beb98627"] } }, "depositAllowances": {}, @@ -168864,9 +167975,7 @@ "plots": { "491226133332142": "0x16c820d3780" }, - "plotIndexes": [ - "0x1bec47f2e80ae" - ] + "plotIndexes": ["0x1bec47f2e80ae"] } }, "depositAllowances": {}, @@ -169297,11 +168406,7 @@ "326119566604304": "0x7bb2ed513e", "386040742008352": "0x2af5c19651" }, - "plotIndexes": [ - "0x1295bbb540a5a", - "0x1289aa0ebf810", - "0x15f1a1d4bd620" - ] + "plotIndexes": ["0x1295bbb540a5a", "0x1289aa0ebf810", "0x15f1a1d4bd620"] } }, "depositAllowances": {}, @@ -169438,9 +168543,7 @@ "plots": { "313159159514394": "0x4fa72a9bb" }, - "plotIndexes": [ - "0x11cd10c76051a" - ] + "plotIndexes": ["0x11cd10c76051a"] } }, "depositAllowances": {}, @@ -169524,9 +168627,7 @@ "plots": { "634989472785580": "0x453c048827" }, - "plotIndexes": [ - "0x2418501f624ac" - ] + "plotIndexes": ["0x2418501f624ac"] } }, "depositAllowances": {}, @@ -169625,9 +168726,7 @@ "plots": { "828971315411802": "0x162f18307" }, - "plotIndexes": [ - "0x2f1f1ecc8bb5a" - ] + "plotIndexes": ["0x2f1f1ecc8bb5a"] } }, "depositAllowances": {}, @@ -169822,9 +168921,7 @@ "plots": { "458201621062168": "0x9d9bdf07" }, - "plotIndexes": [ - "0x1a0bb60dbe218" - ] + "plotIndexes": ["0x1a0bb60dbe218"] } }, "depositAllowances": {}, @@ -169929,9 +169026,7 @@ "plots": { "275482299353284": "0x2ad00c7599" }, - "plotIndexes": [ - "0xfa8cb89848c4" - ] + "plotIndexes": ["0xfa8cb89848c4"] } }, "depositAllowances": {}, @@ -170039,10 +169134,7 @@ "220964407867656": "0x923c9d210", "262455511024505": "0x13eb635b39" }, - "plotIndexes": [ - "0xc8f74909f908", - "0xeeb3af810379" - ] + "plotIndexes": ["0xc8f74909f908", "0xeeb3af810379"] } }, "depositAllowances": {}, @@ -170358,11 +169450,7 @@ "236255249235083": "0x4347a5312", "328279955533336": "0x9643f1cae" }, - "plotIndexes": [ - "0xc76ce1014a4a", - "0xd6df7634fc8b", - "0x12a91a222ee18" - ] + "plotIndexes": ["0xc76ce1014a4a", "0xd6df7634fc8b", "0x12a91a222ee18"] } }, "depositAllowances": {}, @@ -170566,9 +169654,7 @@ "plots": { "608381722514915": "0x3fd240347b" }, - "plotIndexes": [ - "0x22951e87555e3" - ] + "plotIndexes": ["0x22951e87555e3"] } }, "depositAllowances": {}, @@ -170813,10 +169899,7 @@ "89611453141913": "0xf32d5994", "122079887289765": "0xe2623300" }, - "plotIndexes": [ - "0x51804ad51399", - "0x6f07f050eda5" - ] + "plotIndexes": ["0x51804ad51399", "0x6f07f050eda5"] } }, "depositAllowances": {}, @@ -171241,12 +170324,7 @@ "247129078873496": "0x1045d2895a", "386225253739633": "0xb545cad00" }, - "plotIndexes": [ - "0xb327eb72bcf3", - "0xcf4f12c836c4", - "0xe0c338f5bd98", - "0x15f45130d6c71" - ] + "plotIndexes": ["0xb327eb72bcf3", "0xcf4f12c836c4", "0xe0c338f5bd98", "0x15f45130d6c71"] } }, "depositAllowances": {}, @@ -172032,9 +171110,7 @@ "plots": { "305492349986784": "0x8363d3bcbe" }, - "plotIndexes": [ - "0x115d7fb00a7e0" - ] + "plotIndexes": ["0x115d7fb00a7e0"] } }, "depositAllowances": {}, @@ -172485,9 +171561,7 @@ "plots": { "977044923514850": "0x4b5cf8aea" }, - "plotIndexes": [ - "0x3789dff987fe2" - ] + "plotIndexes": ["0x3789dff987fe2"] } }, "depositAllowances": {}, @@ -173145,10 +172219,7 @@ "203410780104759": "0x2540be400", "380815886869713": "0x1b89b1c4d" }, - "plotIndexes": [ - "0xb900434aa837", - "0x15a599ba964d1" - ] + "plotIndexes": ["0xb900434aa837", "0x15a599ba964d1"] } }, "depositAllowances": {}, @@ -173461,11 +172532,7 @@ "622903877191951": "0x57f28a3", "634541694896879": "0xb1eaabae6" }, - "plotIndexes": [ - "0x2368717a1455b", - "0x236871c54490f", - "0x2411cc051caef" - ] + "plotIndexes": ["0x2368717a1455b", "0x236871c54490f", "0x2411cc051caef"] } }, "depositAllowances": {}, @@ -173781,9 +172848,7 @@ "plots": { "218731907990205": "0x6b9b09fb6" }, - "plotIndexes": [ - "0xc6ef7dad42bd" - ] + "plotIndexes": ["0xc6ef7dad42bd"] } }, "depositAllowances": {}, @@ -173908,9 +172973,7 @@ "plots": { "328718971143710": "0x7782e0e9" }, - "plotIndexes": [ - "0x12af7d981861e" - ] + "plotIndexes": ["0x12af7d981861e"] } }, "depositAllowances": {}, @@ -174209,9 +173272,7 @@ "plots": { "910427813535356": "0x5de04080b" }, - "plotIndexes": [ - "0x33c077e6b5e7c" - ] + "plotIndexes": ["0x33c077e6b5e7c"] } }, "depositAllowances": {}, @@ -175339,11 +174400,15 @@ "456652929979237": "0x190dc1da2", "456639477465638": "0x321d5113f" }, +<<<<<<< HEAD "plotIndexes": [ "0x11294e550d6c3", "0x19f52cbad5365", "0x19f4fa9d84226" ] +======= + "plotIndexes": ["0x11294e550d6c3", "0x19f52cbad5365", "0x19f4fa9d84226"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -175615,9 +174680,7 @@ "plots": { "980012575261775": "0x17ea61656a" }, - "plotIndexes": [ - "0x37b50f56c844f" - ] + "plotIndexes": ["0x37b50f56c844f"] } }, "depositAllowances": {}, @@ -175883,10 +174946,7 @@ "205196258596006": "0xe7dd49845", "203356949474752": "0xc888e3a77" }, - "plotIndexes": [ - "0xba9ffa1a54a6", - "0xb8f3babc6dc0" - ] + "plotIndexes": ["0xba9ffa1a54a6", "0xb8f3babc6dc0"] } }, "depositAllowances": {}, @@ -175985,9 +175045,7 @@ "plots": { "235571347898002": "0x3852de780" }, - "plotIndexes": [ - "0xd6403a82be92" - ] + "plotIndexes": ["0xd6403a82be92"] } }, "depositAllowances": {}, @@ -176172,9 +175230,7 @@ "plots": { "829547866455087": "0xc504833ce" }, - "plotIndexes": [ - "0x2f27829e77c2f" - ] + "plotIndexes": ["0x2f27829e77c2f"] } }, "depositAllowances": {}, @@ -177234,12 +176290,7 @@ "594868490530527": "0xeb0fc800", "720860015864786": "0x201b95cb4" }, - "plotIndexes": [ - "0x3bfd6e42eb75", - "0x5d31b0e7adcf", - "0x21d079d10eedf", - "0x28f9e4d2dabd2" - ] + "plotIndexes": ["0x3bfd6e42eb75", "0x5d31b0e7adcf", "0x21d079d10eedf", "0x28f9e4d2dabd2"] } }, "depositAllowances": {}, @@ -177582,10 +176633,7 @@ "343752351328208": "0x2db56968e1", "344445589997019": "0xde98684d13" }, - "plotIndexes": [ - "0x138a414caa7d0", - "0x139457d0945db" - ] + "plotIndexes": ["0x138a414caa7d0", "0x139457d0945db"] } }, "depositAllowances": {}, @@ -177871,10 +176919,14 @@ "737670614886875": "0x1140a8100", "737670607309781": "0x739e06" }, +<<<<<<< HEAD "plotIndexes": [ "0x29ee852f629db", "0x29ee852828bd5" ] +======= + "plotIndexes": ["0x29ee852f629db", "0x29ee852828bd5"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -178154,9 +177206,7 @@ "plots": { "463738063696356": "0xdfb7e8fa" }, - "plotIndexes": [ - "0x1a5c46e8e31e4" - ] + "plotIndexes": ["0x1a5c46e8e31e4"] } }, "depositAllowances": {}, @@ -178428,11 +177478,7 @@ "383555642858478": "0x265b594a0", "695580562805062": "0x80904f89" }, - "plotIndexes": [ - "0x1478f522ebf99", - "0x15cd781d81bee", - "0x278a0785bd146" - ] + "plotIndexes": ["0x1478f522ebf99", "0x15cd781d81bee", "0x278a0785bd146"] } }, "depositAllowances": {}, @@ -178607,12 +177653,7 @@ "693843930503827": "0x201118", "692183827554964": "0x10fc4195f2" }, - "plotIndexes": [ - "0x25dabca3e9218", - "0x26f67bbb02a2a", - "0x2770c2101da93", - "0x275899b292294" - ] + "plotIndexes": ["0x25dabca3e9218", "0x26f67bbb02a2a", "0x2770c2101da93", "0x275899b292294"] } }, "depositAllowances": {}, @@ -178683,12 +177724,7 @@ "710702630301259": "0xcc19b97", "802852389202760": "0x31f517e1" }, - "plotIndexes": [ - "0x662497156aee", - "0x27b2b82df1271", - "0x2866159d1ee4b", - "0x2da30a3772b48" - ] + "plotIndexes": ["0x662497156aee", "0x27b2b82df1271", "0x2866159d1ee4b", "0x2da30a3772b48"] } }, "depositAllowances": {}, @@ -178980,12 +178016,7 @@ "260818302741512": "0x28694efa2", "284815597094697": "0x386335e8e" }, - "plotIndexes": [ - "0xccefa661bb91", - "0xe168dda82845", - "0xed367e492c08", - "0x10309cc7dc729" - ] + "plotIndexes": ["0xccefa661bb91", "0xe168dda82845", "0xed367e492c08", "0x10309cc7dc729"] } }, "depositAllowances": {}, @@ -179137,9 +178168,7 @@ "plots": { "787506321281609": "0x137675961" }, - "plotIndexes": [ - "0x2cc3b9a89d249" - ] + "plotIndexes": ["0x2cc3b9a89d249"] } }, "depositAllowances": {}, @@ -179214,9 +178243,7 @@ "plots": { "437467889952063": "0x1443f0b3b6" }, - "plotIndexes": [ - "0x18ddfee2e653f" - ] + "plotIndexes": ["0x18ddfee2e653f"] } }, "depositAllowances": {}, @@ -179361,10 +178388,7 @@ "612614464925164": "0x59682f00", "705585044182153": "0x1c6e38b8a" }, - "plotIndexes": [ - "0x22d2b6b90edec", - "0x281b9d1ead489" - ] + "plotIndexes": ["0x22d2b6b90edec", "0x281b9d1ead489"] } }, "depositAllowances": {}, @@ -179778,12 +178802,16 @@ "439359021881225": "0x1dfe452db0", "439352533238997": "0xf4875e49" }, +<<<<<<< HEAD "plotIndexes": [ "0x6d8753bf8533", "0x12af851046707", "0x18f983e6d9789", "0x18f96bbacc4d5" ] +======= + "plotIndexes": ["0x6d8753bf8533", "0x12af851046707", "0x18f983e6d9789", "0x18f96bbacc4d5"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -180552,10 +179580,7 @@ "179457356901067": "0xa33cd10300", "517220616160053": "0x22f0a8421b0" }, - "plotIndexes": [ - "0xa3372c02aacb", - "0x1d668cf18c335" - ] + "plotIndexes": ["0xa3372c02aacb", "0x1d668cf18c335"] } }, "depositAllowances": {}, @@ -180788,10 +179813,7 @@ "634945228489192": "0x86d6a9ef", "708681724483889": "0x318870ff" }, - "plotIndexes": [ - "0x2417ab4cbc1e8", - "0x2848ad2725931" - ] + "plotIndexes": ["0x2417ab4cbc1e8", "0x2848ad2725931"] } }, "depositAllowances": {}, @@ -181368,10 +180390,14 @@ "638778618685577": "0x6f6045622", "636463415640693": "0x9c72074c" }, +<<<<<<< HEAD "plotIndexes": [ "0x244f73ca82889", "0x242dc2fcd4275" ] +======= + "plotIndexes": ["0x244f73ca82889", "0x242dc2fcd4275"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -182291,9 +181317,7 @@ "plots": { "202261936601483": "0x178e3fc67d" }, - "plotIndexes": [ - "0xb7f4c6e1f98b" - ] + "plotIndexes": ["0xb7f4c6e1f98b"] } }, "depositAllowances": {}, @@ -182647,11 +181671,7 @@ "392873013056712": "0x2e48c1a76", "451927223440496": "0x5e8b0b56f" }, - "plotIndexes": [ - "0xfcf765c39036", - "0x16550e06294c8", - "0x19b06819e1470" - ] + "plotIndexes": ["0xfcf765c39036", "0x16550e06294c8", "0x19b06819e1470"] } }, "depositAllowances": {}, @@ -183041,9 +182061,7 @@ "plots": { "591543946444869": "0x184a3ceb8" }, - "plotIndexes": [ - "0x21a018ecc0045" - ] + "plotIndexes": ["0x21a018ecc0045"] } }, "depositAllowances": {}, @@ -183383,10 +182401,7 @@ "247323106895278": "0x1231bb5ce", "247321163790225": "0x73d16e1d" }, - "plotIndexes": [ - "0xe0f065ee65ae", - "0xe0eff21cf791" - ] + "plotIndexes": ["0xe0f065ee65ae", "0xe0eff21cf791"] } }, "depositAllowances": {}, @@ -183503,10 +182518,7 @@ "422369792593674": "0x4a7a17f6fb", "705080717481611": "0x65f765d1" }, - "plotIndexes": [ - "0x18024a1738f0a", - "0x2814465b4168b" - ] + "plotIndexes": ["0x18024a1738f0a", "0x2814465b4168b"] } }, "depositAllowances": {}, @@ -183661,11 +182673,7 @@ "262808988167960": "0x148d67b98c", "297184241475114": "0x2c1f2ce39e" }, - "plotIndexes": [ - "0xc8e017fcc228", - "0xef05fc622f18", - "0x10e4999255e2a" - ] + "plotIndexes": ["0xc8e017fcc228", "0xef05fc622f18", "0x10e4999255e2a"] } }, "depositAllowances": {}, @@ -183727,9 +182735,7 @@ "plots": { "700841083224368": "0x7878b72c" }, - "plotIndexes": [ - "0x27d6947cf4130" - ] + "plotIndexes": ["0x27d6947cf4130"] } }, "depositAllowances": {}, @@ -184487,11 +183493,7 @@ "334799194897789": "0x45307d22", "708018038561787": "0x5121a91" }, - "plotIndexes": [ - "0x54981a739dce", - "0x1307f83153d7d", - "0x283f04baedbfb" - ] + "plotIndexes": ["0x54981a739dce", "0x1307f83153d7d", "0x283f04baedbfb"] } }, "depositAllowances": {}, @@ -185186,10 +184188,14 @@ "463456140675342": "0x48b20eece", "463741817068254": "0x42ac99c52d" }, +<<<<<<< HEAD "plotIndexes": [ "0x1a582caa2490e", "0x1a5c54e461ade" ] +======= + "plotIndexes": ["0x1a582caa2490e", "0x1a5c54e461ade"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -185348,12 +184354,16 @@ "584401899740089": "0xa7678e46", "584404708321791": "0xa765f0e7" }, +<<<<<<< HEAD "plotIndexes": [ "0xc02daea275d4", "0x1222b5ab3252a", "0x21382aba3dbb9", "0x21383530b69ff" ] +======= + "plotIndexes": ["0xc02daea275d4", "0x1222b5ab3252a", "0x21382aba3dbb9", "0x21383530b69ff"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -185487,10 +184497,7 @@ "290651334177058": "0x3da61f658", "294349852765854": "0x37be1909e" }, - "plotIndexes": [ - "0x108588986f122", - "0x10bb5aa69ee9e" - ] + "plotIndexes": ["0x108588986f122", "0x10bb5aa69ee9e"] } }, "depositAllowances": {}, @@ -185594,9 +184601,7 @@ "plots": { "267042704125029": "0x1454219583" }, - "plotIndexes": [ - "0xf2dfb984ec65" - ] + "plotIndexes": ["0xf2dfb984ec65"] } }, "depositAllowances": {}, @@ -185827,10 +184832,7 @@ "302438433985351": "0x2e069cb3a", "320180033385918": "0xc44c59d52" }, - "plotIndexes": [ - "0x11310ef6c9347", - "0x12333b92775be" - ] + "plotIndexes": ["0x11310ef6c9347", "0x12333b92775be"] } }, "depositAllowances": {}, @@ -185990,10 +184992,7 @@ "383537829470381": "0x425c2bb41", "472806870191278": "0x6db476374" }, - "plotIndexes": [ - "0x15cd35c1560ad", - "0x1ae03ed8b8cae" - ] + "plotIndexes": ["0x15cd35c1560ad", "0x1ae03ed8b8cae"] } }, "depositAllowances": {}, @@ -186235,9 +185234,7 @@ "plots": { "829907742748562": "0x67be822f" }, - "plotIndexes": [ - "0x2f2cbf433ef92" - ] + "plotIndexes": ["0x2f2cbf433ef92"] } }, "depositAllowances": {}, @@ -187178,9 +186175,7 @@ "plots": { "335417125801352": "0x174b6a53f4" }, - "plotIndexes": [ - "0x1310f62a28d88" - ] + "plotIndexes": ["0x1310f62a28d88"] } }, "depositAllowances": {}, @@ -187344,11 +186339,7 @@ "712108322279785": "0x17afb3f8", "715901934912693": "0x11" }, - "plotIndexes": [ - "0x28500286ad56b", - "0x287a8a3975169", - "0x28b1be88644b5" - ] + "plotIndexes": ["0x28500286ad56b", "0x287a8a3975169", "0x28b1be88644b5"] } }, "depositAllowances": {}, @@ -187499,11 +186490,7 @@ "201676000879056": "0x1b8c99a0e1", "199257636281033": "0xd95ee5780" }, - "plotIndexes": [ - "0x8a7be5aa3d41", - "0xb76c5a6461d0", - "0xb53948a11ac9" - ] + "plotIndexes": ["0x8a7be5aa3d41", "0xb76c5a6461d0", "0xb53948a11ac9"] } }, "depositAllowances": {}, @@ -188116,10 +187103,7 @@ "146151784587484": "0xc6293d54", "235555565795257": "0x3acafc6d9" }, - "plotIndexes": [ - "0x84ec9d3420dc", - "0xd63c8dd2f7b9" - ] + "plotIndexes": ["0x84ec9d3420dc", "0xd63c8dd2f7b9"] } }, "depositAllowances": {}, @@ -188268,10 +187252,7 @@ "440689480358454": "0xe9b5f34900", "445596103536239": "0x78835d380" }, - "plotIndexes": [ - "0x190ce03eeda36", - "0x195446d76ee6f" - ] + "plotIndexes": ["0x190ce03eeda36", "0x195446d76ee6f"] } }, "depositAllowances": {}, @@ -188474,9 +187455,7 @@ "plots": { "516816371472285": "0x4b4be38946" }, - "plotIndexes": [ - "0x1d60ab03c579d" - ] + "plotIndexes": ["0x1d60ab03c579d"] } }, "depositAllowances": {}, @@ -188543,9 +187522,7 @@ "plots": { "697420059520285": "0xdca76693" }, - "plotIndexes": [ - "0x27a4cc2e82d1d" - ] + "plotIndexes": ["0x27a4cc2e82d1d"] } }, "depositAllowances": {}, @@ -188766,10 +187743,7 @@ "737664855304048": "0x28f348", "741689220722814": "0x269c6dd04" }, - "plotIndexes": [ - "0x29ee6fba9e770", - "0x2a28ffa88f07e" - ] + "plotIndexes": ["0x29ee6fba9e770", "0x2a28ffa88f07e"] } }, "depositAllowances": {}, @@ -189262,9 +188236,7 @@ "plots": { "168585228445771": "0x3" }, - "plotIndexes": [ - "0x9953cea7e84b" - ] + "plotIndexes": ["0x9953cea7e84b"] } }, "depositAllowances": {}, @@ -189329,10 +188301,7 @@ "139711776684751": "0x339ae446", "708384539121096": "0xdb9734d5" }, - "plotIndexes": [ - "0x7f112ed1facf", - "0x28445a0d195c8" - ] + "plotIndexes": ["0x7f112ed1facf", "0x28445a0d195c8"] } }, "depositAllowances": {}, @@ -189489,10 +188458,7 @@ "697933611972377": "0x57c3577a", "697933416557787": "0xba5ca3e" }, - "plotIndexes": [ - "0x27ac45504b719", - "0x27ac4495eecdb" - ] + "plotIndexes": ["0x27ac45504b719", "0x27ac4495eecdb"] } }, "depositAllowances": {}, @@ -189585,10 +188551,7 @@ "218989855358801": "0x4154778af9", "584556940408913": "0x968772510" }, - "plotIndexes": [ - "0xc72b8c89bf51", - "0x213a6c4c8b851" - ] + "plotIndexes": ["0xc72b8c89bf51", "0x213a6c4c8b851"] } }, "depositAllowances": {}, @@ -189849,11 +188812,7 @@ "401451940456732": "0x12dfbfe36b", "400630877527787": "0x4eb5830cb" }, - "plotIndexes": [ - "0x15fa96c61d2c8", - "0x16d1e504e291c", - "0x16c5f25241eeb" - ] + "plotIndexes": ["0x15fa96c61d2c8", "0x16d1e504e291c", "0x16c5f25241eeb"] } }, "depositAllowances": {}, @@ -190441,9 +189400,7 @@ "plots": { "74020410789705": "0x3df2c9e11" }, - "plotIndexes": [ - "0x4352384a8f49" - ] + "plotIndexes": ["0x4352384a8f49"] } }, "depositAllowances": {}, @@ -190620,10 +189577,14 @@ "383890351941264": "0x28613f60d", "383922594208774": "0x22d5725125" }, +<<<<<<< HEAD "plotIndexes": [ "0x15d25700f6690", "0x15d2cf1d95c06" ] +======= + "plotIndexes": ["0x15d25700f6690", "0x15d2cf1d95c06"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -190783,10 +189744,7 @@ "709064906743137": "0x42702f758", "709010774745723": "0x3e3d5edf0" }, - "plotIndexes": [ - "0x284e409e39d61", - "0x284d76f5ee27b" - ] + "plotIndexes": ["0x284e409e39d61", "0x284d76f5ee27b"] } }, "depositAllowances": {}, @@ -190848,9 +189806,7 @@ "plots": { "502195414411318": "0x14d566" }, - "plotIndexes": [ - "0x1c8be7b48a836" - ] + "plotIndexes": ["0x1c8be7b48a836"] } }, "depositAllowances": {}, @@ -190937,9 +189893,7 @@ "plots": { "213971945873184": "0x17a5a619a7" }, - "plotIndexes": [ - "0xc29b39d35f20" - ] + "plotIndexes": ["0xc29b39d35f20"] } }, "depositAllowances": {}, @@ -191215,10 +190169,7 @@ "709335462929874": "0x139397f17", "725650404461457": "0x16d1e02c52" }, - "plotIndexes": [ - "0x28523084b65d2", - "0x293f9a696cb91" - ] + "plotIndexes": ["0x28523084b65d2", "0x293f9a696cb91"] } }, "depositAllowances": {}, @@ -191401,10 +190352,7 @@ "66141501266485": "0x210895e655f", "482663958595291": "0x3e27a56c880" }, - "plotIndexes": [ - "0x3c27c4b01a35", - "0x1b6faf5cc46db" - ] + "plotIndexes": ["0x3c27c4b01a35", "0x1b6faf5cc46db"] } }, "depositAllowances": {}, @@ -191645,9 +190593,7 @@ "plots": { "211308250412322": "0x101a93685" }, - "plotIndexes": [ - "0xc02f09343522" - ] + "plotIndexes": ["0xc02f09343522"] } }, "depositAllowances": {}, @@ -192109,10 +191055,7 @@ "257846813181966": "0x5bf48c566c", "270343223673734": "0x54e1df12db" }, - "plotIndexes": [ - "0xea82a3b4c80e", - "0xf5e02fd08386" - ] + "plotIndexes": ["0xea82a3b4c80e", "0xf5e02fd08386"] } }, "depositAllowances": {}, @@ -192448,9 +191391,7 @@ "plots": { "280606415159353": "0x149cee5a8b" }, - "plotIndexes": [ - "0xff35c5b28039" - ] + "plotIndexes": ["0xff35c5b28039"] } }, "depositAllowances": {}, @@ -192739,9 +191680,7 @@ "plots": { "93479805568870": "0x157fb88" }, - "plotIndexes": [ - "0x5504f69ac766" - ] + "plotIndexes": ["0x5504f69ac766"] } }, "depositAllowances": {}, @@ -194121,10 +193060,7 @@ "404067859818534": "0x10bd066d2", "642222658063359": "0xbf9d16a0a" }, - "plotIndexes": [ - "0x16f7f613fe826", - "0x248191d668bff" - ] + "plotIndexes": ["0x16f7f613fe826", "0x248191d668bff"] } }, "depositAllowances": {}, @@ -194424,9 +193360,7 @@ "plots": { "380456360701830": "0xdfb29847a" }, - "plotIndexes": [ - "0x15a05e63b6f86" - ] + "plotIndexes": ["0x15a05e63b6f86"] } }, "depositAllowances": {}, @@ -194514,9 +193448,7 @@ "plots": { "742850188138272": "0x1aa6903da2" }, - "plotIndexes": [ - "0x2a39e4995d720" - ] + "plotIndexes": ["0x2a39e4995d720"] } }, "depositAllowances": {}, @@ -194994,9 +193926,7 @@ "plots": { "376885779708970": "0x681346b600" }, - "plotIndexes": [ - "0x156c68f053c2a" - ] + "plotIndexes": ["0x156c68f053c2a"] } }, "depositAllowances": {}, @@ -195122,12 +194052,7 @@ "317850358107286": "0x3e13b0818c", "330088432377041": "0x15556e177a9" }, - "plotIndexes": [ - "0xf96eeb00fe5d", - "0xfd850fb4766a", - "0x121154dafcc96", - "0x12c36b3c19cd1" - ] + "plotIndexes": ["0xf96eeb00fe5d", "0xfd850fb4766a", "0x121154dafcc96", "0x12c36b3c19cd1"] } }, "depositAllowances": {}, @@ -195485,12 +194410,7 @@ "719100357414327": "0x3803c337b", "801777831126999": "0x91ad22d93" }, - "plotIndexes": [ - "0x7ce6e6ea9909", - "0x281b0514c0385", - "0x28e04995c8db7", - "0x2d93672d027d7" - ] + "plotIndexes": ["0x7ce6e6ea9909", "0x281b0514c0385", "0x28e04995c8db7", "0x2d93672d027d7"] } }, "depositAllowances": {}, @@ -195691,9 +194611,7 @@ "plots": { "707767802108906": "0x10d23cb64" }, - "plotIndexes": [ - "0x283b6086d9bea" - ] + "plotIndexes": ["0x283b6086d9bea"] } }, "depositAllowances": {}, @@ -195800,12 +194718,7 @@ "709753706632464": "0x11ace78b9", "722685699957057": "0xf5ddffb63" }, - "plotIndexes": [ - "0x283c900a6cbb6", - "0x2858c84d8e3c9", - "0x28584698fd510", - "0x29147606e2141" - ] + "plotIndexes": ["0x283c900a6cbb6", "0x2858c84d8e3c9", "0x28584698fd510", "0x29147606e2141"] } }, "depositAllowances": {}, @@ -196320,11 +195233,7 @@ "203420780104759": "0xc8ec7b9561", "531411470867756": "0x218711a00" }, - "plotIndexes": [ - "0x54e2ce50c681", - "0xb90297568c37", - "0x1e350dff35d2c" - ] + "plotIndexes": ["0x54e2ce50c681", "0xb90297568c37", "0x1e350dff35d2c"] } }, "depositAllowances": {}, @@ -196614,10 +195523,7 @@ "371946252710197": "0x24bb5590", "371909386482287": "0x1331303d6" }, - "plotIndexes": [ - "0x152487c44b135", - "0x1523fe6deb26f" - ] + "plotIndexes": ["0x152487c44b135", "0x1523fe6deb26f"] } }, "depositAllowances": {}, @@ -196966,11 +195872,7 @@ "493976772720798": "0x3d738745500", "656358729562897": "0x4913b45d0" }, - "plotIndexes": [ - "0x7d30c1db6bcd", - "0x1c144ee10b89e", - "0x254f46cebbb11" - ] + "plotIndexes": ["0x7d30c1db6bcd", "0x1c144ee10b89e", "0x254f46cebbb11"] } }, "depositAllowances": {}, @@ -197295,9 +196197,7 @@ "plots": { "921377157399744": "0x71c3c7e7" }, - "plotIndexes": [ - "0x345fcd62bc4c0" - ] + "plotIndexes": ["0x345fcd62bc4c0"] } }, "depositAllowances": {}, @@ -197780,10 +196680,14 @@ "446757619493079": "0x650dc2e1", "446738966558233": "0x62ebb67e" }, +<<<<<<< HEAD "plotIndexes": [ "0x19652dd35e8d7", "0x1964e8568b619" ] +======= + "plotIndexes": ["0x19652dd35e8d7", "0x1964e8568b619"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -198030,10 +196934,14 @@ "275666178457181": "0x557c2f3b4", "276055150472028": "0x54f581c31" }, +<<<<<<< HEAD "plotIndexes": [ "0xfab788a4be5d", "0xfb12192eab5c" ] +======= + "plotIndexes": ["0xfab788a4be5d", "0xfb12192eab5c"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -198118,9 +197026,7 @@ "plots": { "386897475567381": "0xadd7a24ba" }, - "plotIndexes": [ - "0x15fe196987f15" - ] + "plotIndexes": ["0x15fe196987f15"] } }, "depositAllowances": {}, @@ -198259,6 +197165,7 @@ "sop": {} }, "0x4c806D260846A0A9faEDb405cDeB1908F9bc32A6": { +<<<<<<< HEAD "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -205292,6 +204199,8 @@ "sop": {} }, "0x632f3c0548f656c8470e2882582d02602CfF821C": { +======= +>>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -205303,12 +204212,8 @@ "depositIdList": {}, "fields": { "0": { - "plots": { - "68519420745986": "0x13d2f245a" - }, - "plotIndexes": [ - "0x3e516bbbd902" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -205319,35 +204224,45 @@ "internalTokenBalance": {}, "sop": {} }, - "0x2920A3192613d8c42f21b64873dc0Ddfcbf018D4": { - "roots": "0x0", - "stalk": "0x0", + "0xBB2E54038196A51f6a42A9BB5aD6BD0EB2CF6C01": { + "roots": "0xc77f2a3d19396d91b5400000", + "stalk": "0xdb5956fa3d1400", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", "lastSop": "0x0", "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x5e35ad", + "bdv": "0x5e35ad" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, "fields": { "0": { - "plots": { - "68524742212956": "0x2540be400" - }, - "plotIndexes": [ - "0x3e52a8eafd5c" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, "tokenAllowances": {}, - "mowStatuses": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x5e35ad" + } + }, "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": {}, "sop": {} }, - "0x7fFA930D3F4774a0ba1d1fBB5b26000BBb90cA70": { + "0xE55091052af445fD666D13880A8f202d019F2D0b": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -205359,20 +204274,8 @@ "depositIdList": {}, "fields": { "0": { - "plots": { - "81429748380955": "0x1", - "202233002999979": "0x8aa79219", - "202235329237700": "0x576816d2", - "218671968549714": "0xe5d1f417", - "694491673804561": "0x2170596a0" - }, - "plotIndexes": [ - "0x4a0f5739f51b", - "0xb7ee0a4e40ab", - "0xb7ee94f5d2c4", - "0xc6e18901fb52", - "0x277a2f1843f11" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -205380,59 +204283,63 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xd39" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x854e4406b9C2CFdC36a8992f1718e09E5F0D2371": { - "roots": "0x0", - "stalk": "0x0", + "0x3376Bde856bf6ec5dc7b9796895C788d53605da0": { + "roots": "0x1243e9b5fa7ffbc1602c00000", + "stalk": "0x1415387be266c00", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", "lastSop": "0x0", "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x8a0233", + "bdv": "0x8a0233" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, "fields": { "0": { - "plots": { - "66081776800891": "0xae10de" - }, - "plotIndexes": [ - "0x3c19dcd5147b" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, "tokenAllowances": {}, - "mowStatuses": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x8a0233" + } + }, "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x77" + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x111ff6b0" }, "sop": {} }, - "0x1b9A6108D335e6E0E0325Ccc5b0164BFB65c6B9E": { + "0xf658305D26c8DF03e9ED3ff7C7287F7233dE472D": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { - "plots": { - "74106039934810": "0x4ea004d8b" - }, - "plotIndexes": [ - "0x4366282f9f5a" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -205443,7 +204350,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xB6CC924486681a1ca489639200dcEB4c41C283d3": { + "0xDf08e9D4Ca290593AcDDb18363c49dF35A060Df2": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -205455,24 +204362,8 @@ "depositIdList": {}, "fields": { "0": { - "plots": { - "64890353334796": "0x732f1a343", - "147686892058520": "0xafba52799", - "168834068658194": "0x789901407", - "168866441350169": "0x4d0a9613c", - "152164040168590": "0x175913a746", - "250350635854037": "0xbbe927228", - "393026470651510": "0x30a7be2d35" - }, - "plotIndexes": [ - "0x3b047675ba0c", - "0x865208bd3798", - "0x998dbeb03812", - "0x999548404c19", - "0x8a64738fd48e", - "0xe3b14cb828d5", - "0x165749b2ba676" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -205483,7 +204374,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xE9D18dbFd105155eb367fcFef87eAaAFD15ea4B2": { + "0x1Af3e47327e771ac6C9AE1DBC218e36b41B70756": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -205495,12 +204386,8 @@ "depositIdList": {}, "fields": { "0": { - "plots": { - "68534742212956": "0x2540be400" - }, - "plotIndexes": [ - "0x3e54fcf6e15c" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -205511,7 +204398,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x510b301E8E4828E54ca5e5F466d8F31e5Ce83EbE": { + "0x3BF9cb2117585f5b0680e9F959090A84e63aFB58": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -205523,18 +204410,8 @@ "depositIdList": {}, "fields": { "0": { - "plots": { - "81429748380956": "0x1d1b1d10e", - "117217726315318": "0x51d915b0", - "136979532734270": "0x3b9aca00", - "251882385453211": "0x4dc06fe22" - }, - "plotIndexes": [ - "0x4a0f5739f51c", - "0x6a9be0f03b36", - "0x7c950863df3e", - "0xe515f01c309b" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -205542,10 +204419,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x39e209f8" + }, "sop": {} }, - "0x6B7F8019390Aa85b4A8679f963295D568098Cf51": { + "0x9DbE561Cae4f1708FA7cBa9d61747ce7816aCbf0": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -205557,12 +204436,8 @@ "depositIdList": {}, "fields": { "0": { - "plots": { - "66099065602767": "0x9e15cd766" - }, - "plotIndexes": [ - "0x3c1de35342cf" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -205573,76 +204448,58 @@ "internalTokenBalance": {}, "sop": {} }, - "0x0d619C8e3194b2aA5eddDdE5768c431bA76E27A4": { - "roots": "0x0", - "stalk": "0x0", + "0x6ECa54EE3DA212773A05a3CDd07ff4B33aD54c2b": { + "roots": "0x21e19e0c9bab2400000", + "stalk": "0x2540be400", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x401", "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x1", + "bdv": "0x1" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, "fields": { "0": { - "plots": { - "79190322716306": "0xcae9ee5c6" - }, - "plotIndexes": [ - "0x4805ef0e1e92" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, "tokenAllowances": {}, - "mowStatuses": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x1" + } + }, "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": {}, "sop": {} }, - "0x52f3F126342fca99AC76D7c8f364671C9bb3fC67": { + "0x1164fe7a76D22EAA66f6A0aDcE3E3a30d9957A5f": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x401", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { - "plots": { - "89507398941830": "0xd225540d", - "89656246550500": "0x200c2d6c3", - "743848476657704": "0x498371a2", - "855190099925501": "0x189a6c3d80", - "863597854618078": "0x8eaabeff80", - "859424786465221": "0x342c357400", - "909448360414556": "0xe40bf49120", - "887758447796303": "0xe8e43fd040", - "921034865451866": "0x125d4140", - "921034560497738": "0x122d3b10", - "921035333523306": "0x8e529cc", - "921035173553306": "0x988f2d0", - "921035482759478": "0x12799b89" - }, - "plotIndexes": [ - "0x516810b7fc86", - "0x518ab8ba3fe4", - "0x2a486b837c828", - "0x309ca761f19fd", - "0x311700b5a71de", - "0x30da46d1bc1c5", - "0x33b237276cd5c", - "0x327695eed604f", - "0x345ad23fb235a", - "0x345ad11cde84a", - "0x345ad3fe1576a", - "0x345ad3658649a", - "0x345ad48c68136" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -205650,10 +204507,13 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x37026b", + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xfe82849" + }, "sop": {} }, - "0x251FAe8f687545BDD462Ba4FCDd7581051740463": { + "0x46bEfF3C23e91009699A7cb0b997911F16829DD0": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -205665,52 +204525,8 @@ "depositIdList": {}, "fields": { "0": { - "plots": { - "89496924603539": "0x2540be400", - "99851452914852": "0xee6b280", - "94235781987404": "0x17f8daca9", - "122129787959482": "0x2f0d67ef", - "133665283117841": "0xbebc200", - "137124860862443": "0x139ffcb25", - "136913196875357": "0xaefecdac", - "278603290580864": "0x4d1446cc", - "281273103745391": "0xb098184a4", - "394751719356676": "0x2ebdfc9785", - "439356635751198": "0x267775bd", - "636808516114655": "0x8f6572fd8", - "635516475006264": "0xd0160cc58", - "687313439949641": "0x151f4420f5", - "695163561382883": "0x6cef6f74", - "741224630773020": "0x25ad5353a", - "828953329689546": "0x450c7a1f", - "829107101257549": "0x5fc3fdc0", - "851791077155618": "0xe2ef57ea7", - "853786403387780": "0x298d02ae6", - "906315055949346": "0xe96c905cc" - }, - "plotIndexes": [ - "0x5165a0664493", - "0x5ad07a619ca4", - "0x55b4fa4f7c4c", - "0x6f138ea0b8ba", - "0x79915fb81311", - "0x7cb6de9f1feb", - "0x7c859676fe5d", - "0xfd63622b1780", - "0xffd0ff6f016f", - "0x167064c01b904", - "0x18f97b034231e", - "0x2432c896498df", - "0x241ffb5bddd38", - "0x2711ba1700349", - "0x2783f612313e3", - "0x2a223ced0e51c", - "0x2f1edbcc063ca", - "0x2f2118a404f4d", - "0x306b31093a322", - "0x30883a349b984", - "0x33849eaf6e622" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -205718,27 +204534,25 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x5d21dba00" + }, "sop": {} }, - "0xC1E64944de6BEE91752431fF83507dCBd57E186b": { + "0xA813f78E3A60129218A0C0aBCA0fB6320C6c0D4F": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { - "plots": { - "89547003810515": "0x1420067a5" - }, - "plotIndexes": [ - "0x5171495a52d3" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -205749,24 +204563,20 @@ "internalTokenBalance": {}, "sop": {} }, - "0x12B9D75389409d119Dd9a96DF1D41092204e8f32": { + "0xB8da309775c696576d26Ef7d25b68C103a9aB0d5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { - "plots": { - "92695810999829": "0x2b7307b6c" - }, - "plotIndexes": [ - "0x544e6ce30615" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -205777,23 +204587,31 @@ "internalTokenBalance": {}, "sop": {} }, - "0xAA420e97534aB55637957e868b658193b112A551": { + "0xc80102BA8bFB97F2cD1b2B0dA158Dfe6200B33B3": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "92901634103041": "0xa23335380" + "260684773844629": "0x21ab33e66", + "296986706249004": "0x37bd054b", + "325360140162588": "0x90fbcbd9e", + "411688335001233": "0x5d944c80", + "422365791300603": "0x2f908380" }, "plotIndexes": [ - "0x547e58e65701" + "0xed176757e695", + "0x10e1b9b21052c", + "0x127e9cf94161c", + "0x1766da8f74691", + "0x18023b2f4abfb" ] } }, @@ -205802,33 +204620,29 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x4d508e880" - }, + "internalTokenBalance": {}, "sop": {} }, - "0xd0D628acf9E985c94a4542CaE88E0Af7B2378c81": { +<<<<<<< HEAD + "0x2920A3192613d8c42f21b64873dc0Ddfcbf018D4": { +======= + "0x9ae3821d72B53F767F5b72c9630ce864C54c09bc": { +>>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", +<<<<<<< HEAD +======= "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { - "plots": { - "89208643960630": "0x2dc6c0", - "122216130970075": "0x51cbad9a1", - "684090892689899": "0x343e20b01" - }, - "plotIndexes": [ - "0x51228188bf36", - "0x6f27a91281db", - "0x26e2d52a721eb" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -205836,12 +204650,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x141241c" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x76a05Df20bFEF5EcE3eB16afF9cb10134199A921": { + "0x42fb915d37f3A4ea92C29f217A74465a1f331B83": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -205853,14 +204665,8 @@ "depositIdList": {}, "fields": { "0": { - "plots": { - "92743843990177": "0x1685f7d0d", - "634649380286759": "0x13675c2571" - }, - "plotIndexes": [ - "0x54599be04aa1", - "0x24135d2de7127" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -205868,29 +204674,23 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xd29bf10" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x1FA29B6DcBC5fA3B529fEecd46F57Ee46718716b": { + "0x8f3426398C39c82218901623acA10E4924710f12": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { - "plots": { - "94074534759816": "0x258b156ec4" - }, - "plotIndexes": [ - "0x558f6f3a0d88" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -205901,7 +204701,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x44440AA675Ae3196E2614c1A9Ac897e5Cd6F8545": { + "0xccD40F3fF051EEc5e17cd326AC56292c1D807AeF": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -205913,14 +204713,8 @@ "depositIdList": {}, "fields": { "0": { - "plots": { - "94280290718369": "0x3e43d783", - "704216199980940": "0x5e935e5c" - }, - "plotIndexes": [ - "0x55bf573cd2a1", - "0x2807b1c71e78c" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -205931,84 +204725,97 @@ "internalTokenBalance": {}, "sop": {} }, - "0x5Ea861872592804FF69847Dd73Eef2BD01A0dde0": { - "roots": "0x0", - "stalk": "0x0", + "0xc9931D499EcAA1AE3E1F46fc385E03f7a47C2E54": { + "roots": "0x2b80e5234850ba755000000", + "stalk": "0x2fd52547c5000", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", "lastSop": "0x0", "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x148b4", + "bdv": "0x148b4" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, "fields": { "0": { "plots": { - "99847422900232": "0xf035249c" + "929242018796667": "0x51fd17a2e", + "929223150841785": "0xa87fe882", + "929225977796667": "0x3bc1e3c40" }, - "plotIndexes": [ - "0x5acf8a2c7808" - ] + "plotIndexes": ["0x34d240470d47b", "0x34d1f9fd2afb9", "0x34d204852983b"] } }, "depositAllowances": {}, "tokenAllowances": {}, - "mowStatuses": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x148b4" + } + }, "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": {}, "sop": {} }, - "0x5e93941A8f3Aede7788188b6CB8092b6e57d02A6": { - "roots": "0x0", - "stalk": "0x0", + "0xBd120e919eb05343DbA68863f2f8468bd7010163": { + "roots": "0x6b83ac832c3e2c05cc000000", + "stalk": "0x76369976a0c000", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", "lastSop": "0x0", "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x32c5b0", + "bdv": "0x32c5b0" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, "fields": { "0": { "plots": { - "94281335351848": "0x389fd980", - "437580444503704": "0x4c3aee346", - "463414838278024": "0x2d4850279", - "662850624131661": "0x3e82892fe", - "695537635383030": "0x15e2b763f", - "697945151970404": "0x22f996129", - "701398278226282": "0x1509633d8", - "705660334202228": "0xc922c8a0" + "829006199994809": "0xdc4e6a27" }, - "plotIndexes": [ - "0x55bf9580aa28", - "0x18dfa22f48e98", - "0x1a5792cd1b788", - "0x25adbeffd924d", - "0x2789679af56f6", - "0x27ac704db1c64", - "0x27deb0338416a", - "0x281cb598d5d74" - ] + "plotIndexes": ["0x2f1fa0c1139b9"] } }, "depositAllowances": {}, "tokenAllowances": {}, - "mowStatuses": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x32c5b0" + } + }, "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x2" + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x1888b9e4" }, "sop": {} }, - "0x2206e33975EF5CBf8d0DE16e4c6574a3a3aC65B6": { + "0x9eD25251826C88122E16428CbB70e65a33E85B19": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", +>>>>>>> b689ac329 (feat: update reseed jsons) "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, @@ -206016,11 +204823,15 @@ "fields": { "0": { "plots": { - "94255248987397": "0x7" +<<<<<<< HEAD + "68524742212956": "0x2540be400" }, "plotIndexes": [ - "0x55b982a25505" - ] + "0x3e52a8eafd5c" +======= + "851163404918538": "0x48d5e2f94" + }, + "plotIndexes": ["0x30620ec655f0a"] } }, "depositAllowances": {}, @@ -206031,7 +204842,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xD99f87535972Ba63B0fcE0bC2B3F7a2aF7193886": { + "0x729AD565b305be00729E0A5677401DCa268E6D8a": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206043,16 +204854,8 @@ "depositIdList": {}, "fields": { "0": { - "plots": { - "93318838342273": "0x3521af400", - "591137392921024": "0x1d1a94a200", - "643048855332541": "0xc7d30ae5" - }, - "plotIndexes": [ - "0x54df7c35d281", - "0x219a2e65189c0", - "0x248d97a9866bd" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -206063,7 +204866,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x399baf8F9AD4B3289d905f416bD3e245792C5fA6": { + "0x00D1EBE373806B2E5a3db01903AA777FF3F4471d": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206075,12 +204878,8 @@ "depositIdList": {}, "fields": { "0": { - "plots": { - "93009983755725": "0x8768c801" - }, - "plotIndexes": [ - "0x5497930ad5cd" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -206091,7 +204890,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x284f942F11a5046a5D11BCbEC9beCb46d1172512": { + "0x1e25D2596d02cbD6AEd54994FDF2Df7239C8C4Dc": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206103,14 +204902,8 @@ "depositIdList": {}, "fields": { "0": { - "plots": { - "112217222887362": "0x99707621a", - "319598229117213": "0x1678c96929" - }, - "plotIndexes": [ - "0x660f9bb537c2", - "0x122ac42ead91d" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -206121,37 +204914,45 @@ "internalTokenBalance": {}, "sop": {} }, - "0x6bDd8c55a23D432D34c276A87584b8A96C03717F": { - "roots": "0x0", - "stalk": "0x0", + "0x8A8073cE976490D9e13953B3D85A65476F27712F": { + "roots": "0x121135b99b95cee7228400000", + "stalk": "0x13dd78d6ad54400", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", "lastSop": "0x0", "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x888319", + "bdv": "0x888319" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, "fields": { "0": { - "plots": { - "113336590076810": "0x49912548d", - "113316826225763": "0x49a046f27" - }, - "plotIndexes": [ - "0x67143b310b8a", - "0x670fa12c9c63" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, "tokenAllowances": {}, - "mowStatuses": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x888319" + } + }, "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": {}, "sop": {} }, - "0x14FC66BeBdBe500D1ee86FA3cBDc4d201E644248": { + "0xE8dFA9c13CaB87E38991961d51FA391aAbb8ca9c": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206163,16 +204964,8 @@ "depositIdList": {}, "fields": { "0": { - "plots": { - "102482441363213": "0x3e68c1130", - "102501887271161": "0x3fcdcb1", - "325399058895802": "0x48e728d01" - }, - "plotIndexes": [ - "0x5d350d835f0d", - "0x5d39949460f9", - "0x127f2df50d3ba" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -206181,28 +204974,24 @@ "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x204912b8" + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x3b592" }, "sop": {} }, - "0x6A7E0712838A0b257C20e042cf9b6C5E910F221F": { + "0x82610F2bbA3fC9b3207805b46E79F7db27C6af68": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { - "plots": { - "111519018790551": "0x3174540ce" - }, - "plotIndexes": [ - "0x656d0b802e97" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -206210,10 +204999,14 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x1ad56f54", + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x20a7a60d9", + "0x1BEA059c3Ea15F6C10be1c53d70C75fD1266D788": "0x6b06b1408" + }, "sop": {} }, - "0xF3F03727e066B33323662ACa4BE939aFBE49d198": { + "0x42225B0C8C3f0c7C4d5B21a008a899e9a4992788": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206225,12 +205018,8 @@ "depositIdList": {}, "fields": { "0": { - "plots": { - "112305865851667": "0x57d7e7db" - }, - "plotIndexes": [ - "0x66243f3d8313" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -206241,7 +205030,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x1Bd6aAB7DCf6228D3Be0C244F1D36e23DAac3BAe": { + "0xa569D7C014433DB04a895eD854B864e2E33EB0f0": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206253,24 +205042,8 @@ "depositIdList": {}, "fields": { "0": { - "plots": { - "106868611705393": "0x3d76c6cf1", - "148243785783460": "0x2bdaaa3718", - "311692403880222": "0xc12ef6f32", - "328628658281539": "0x10502a0ce5", - "328527449691073": "0x1790808882", - "634504902771992": "0x890fb45d7", - "931736156920528": "0x1f1b0360c8e" - }, - "plotIndexes": [ - "0x613249a36a31", - "0x86d3b23118a4", - "0x11b7b8b03311e", - "0x12ae2d2709c43", - "0x12acb41f013c1", - "0x241142f568518", - "0x34f68baa85ad0" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -206279,11 +205052,11 @@ "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x1850eb26" + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x1" }, "sop": {} }, - "0xd80eC2F30FB3542F0577EeD01fBDCCF007257127": { + "0x82Ff15f5de70250a96FC07a0E831D3e391e47c48": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206296,11 +205069,9 @@ "fields": { "0": { "plots": { - "117373037489804": "0x3eeaeffe8" + "829113684669523": "0x108a50600" }, - "plotIndexes": [ - "0x6ac00a34ae8c" - ] + "plotIndexes": ["0x2f21312a73453"] } }, "depositAllowances": {}, @@ -206308,10 +205079,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x11e556e" + }, "sop": {} }, - "0x3a1Bc767d7442355E96BA646Ff83706f70518dAA": { + "0x71849E63d07320559284befD3b259f47654dB977": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206323,26 +205096,8 @@ "depositIdList": {}, "fields": { "0": { - "plots": { - "121663369666252": "0x8d59e225c", - "121742830315112": "0x4e7a29473d", - "446243884304809": "0x100a786310", - "445937161222528": "0x337e498fe9", - "489859129059979": "0x5098de0180", - "521589023122466": "0x2ea81881e0", - "505145411205774": "0xeb01072d8", - "571933833018999": "0x2da8479111" - }, - "plotIndexes": [ - "0x6ea6f5ee5ecc", - "0x6eb97627a668", - "0x195db403509a9", - "0x19593d6163980", - "0x1bd863760aa8b", - "0x1da61e8712422", - "0x1cb6d54cb7a8e", - "0x2082bb8f3be77" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -206353,7 +205108,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x9A5d202C5384a032473b2370D636DcA39adcC28f": { + "0xc1c0541C05FeEC0a65c2633d8574c6aD2bdBA48a": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206365,12 +205120,8 @@ "depositIdList": {}, "fields": { "0": { - "plots": { - "102403247311465": "0x27ddfd011" - }, - "plotIndexes": [ - "0x5d229d2e0a69" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -206381,7 +205132,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x12849Ec7cB1a7B29FAFD3E16Dc5159b2F5D67303": { + "0x0469E94F1aDC4D06120FAC04F48fB8B97a742CA1": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206393,12 +205144,8 @@ "depositIdList": {}, "fields": { "0": { - "plots": { - "121128776667659": "0x528539e45e" - }, - "plotIndexes": [ - "0x6e2a7db4920b" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, @@ -206409,73 +205156,88 @@ "internalTokenBalance": {}, "sop": {} }, - "0x085656Bd50C53E7e93D19270546956B00711FE2B": { - "roots": "0x0", - "stalk": "0x0", + "0x2E34723A04B9bb5938373DCFdD61410F43189246": { + "roots": "0x4c544690b0e00a738f5800000", + "stalk": "0x53ecc2a1d6bd800", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", "lastSop": "0x0", "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x240ba26", + "bdv": "0x240ba26" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, "fields": { "0": { "plots": { - "134062407569102": "0xf9c52f78a" + "128510457444781": "0x564b7060" }, - "plotIndexes": [ - "0x79edd62e4ece" - ] + "plotIndexes": ["0x74e12c2a79ad"] } }, "depositAllowances": {}, "tokenAllowances": {}, - "mowStatuses": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x240ba26" + } + }, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x189e901", + "0xBEA00dAf62D5549D265c5cA6D6BE87eF17881279": "0x10a2927" + }, "sop": {} }, - "0x408fc5413Ea0D489D66acBc1BcB5369Fc9F32e22": { - "roots": "0x0", - "stalk": "0x0", + "0x3b57579A35425A24c2A786DaCebE1837c09e5fBb": { + "roots": "0xe36ab12a009f2913400000", + "stalk": "0xfa0c20fcf400", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", "lastSop": "0x0", "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x6b65", + "bdv": "0x6b65" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, "fields": { "0": { - "plots": { - "137228728484742": "0x484b302fe", - "630926654506278": "0x4ed38a827", - "695170871906740": "0x918fa063", - "698060293717985": "0x4a45f4c25", - "700924209542750": "0x140899cd00", - "701813606595271": "0x2f060d5540" - }, - "plotIndexes": [ - "0x7ccf0d9d4386", - "0x23dd30f1f0526", - "0x2784114e0d1b4", - "0x27ae1d3d6bfe1", - "0x27d7ca286365e", - "0x27e4bb6b83ac7" - ] + "plots": {}, + "plotIndexes": [] } }, "depositAllowances": {}, "tokenAllowances": {}, - "mowStatuses": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x6b65" + } + }, "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": {}, "sop": {} }, - "0xb5566c4F8ee35E46c397CECf963Bfe9F8798F714": { + "0x08Bf22fB93892583a815C598502b9B0a88124DAD": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206488,14 +205250,43 @@ "fields": { "0": { "plots": { - "137248134678148": "0x396392e4", - "640240084788517": "0xe0fbf3e0", - "695877378915987": "0xf7f49000" + "167974630577392": "0x47b8e053", + "214824984432909": "0x114f7798d", + "214861255972590": "0xa602ba6f", + "273266542932556": "0x861e2992", + "277396766693154": "0x1f95a5a1ed", + "299905735929341": "0x2e90edd000", + "405009250178020": "0x70844c1054", + "441693260358454": "0xb88b2f471", + "490827460900938": "0x1f3f9e6cd6", + "490699224234272": "0x19fa171880", + "659059601095085": "0x1f9e97d4a1", + "692180409380464": "0x35fbf0b2", + "695893457979616": "0xb7e34240", + "800159464446651": "0xfca1ccf2d", + "803378843435783": "0x1b9bdcccb", + "803386254626770": "0x24eee9ff4", + "805534501973837": "0x2d2304c47" }, "plotIndexes": [ - "0x7cd392504684", - "0x2464b82d32525", - "0x278e593fa3e93" + "0x98c5a42fd4f0", + "0xc361d6e2d10d", + "0xc36a48d696ee", + "0xf888d338724c", + "0xfc4a77bd9722", + "0x110c33edb2dfd", + "0x1705a907cd3e4", + "0x191b7b9e22336", + "0x1be67ac73f84a", + "0x1be49d0f3b920", + "0x257694568b9ad", + "0x27588cf6bee70", + "0x278e9525d48e0", + "0x2d7bda4a45abb", + "0x2daab36954307", + "0x2daacf0530fd2", + "0x2dca11dd82f4d" +>>>>>>> b689ac329 (feat: update reseed jsons) ] } }, @@ -206504,10 +205295,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x21beb60" + }, "sop": {} }, - "0xd5eF94eC1a13a9356C67CF9902B8eD22Ebd6A0f6": { + "0x64298A72F4E3e23387EFc409fc424a3f17356fC4": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206519,12 +205312,7726 @@ "depositIdList": {}, "fields": { "0": { - "plots": { - "135334419409244": "0xba4090547", - "136132384541471": "0xbcb66de70" - }, - "plotIndexes": [ - "0x7b15fffea95c", + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x15c0a6", + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xaf6" + }, + "sop": {} + }, + "0x1c694Fc3006D81ff4a56F97E1b99529066a23725": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xe201fC1Da79E71b953C07a1A24F5Ad3c974F2813": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x4ec2DcdFb3c165dA62DD1367cB42fe7551524984": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x31229e8" + }, + "sop": {} + }, + "0x0a1f1d3E71E981156EEF5538e7B3Ed40729684FF": { + "roots": "0xa4785eb7b0d5069d22800000", + "stalk": "0xb4d63e8ffda800", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x4dab3a", + "bdv": "0x4dab3a" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x4dab3a" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x1b05F4675a627463a25434b8fD703536f3A840A6": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x6D3F3553b5c369c7ceE68c07d0B222103f37a0c3": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x988fbe" + }, + "sop": {} + }, + "0x5b0B3D1eb4Fa45BBcBb22C4AB963733B29eA5230": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x0C6b4974c305447efCcdDEaE7b726202Eb0Cc891": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xfb4570E63a5B87Fd415ec6F855373902CAe7A1f7": { + "roots": "0xa968163f0a57b400000", + "stalk": "0xba43b7400", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x401", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x5", + "bdv": "0x5" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x5" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x13EBB0A690b0c7EBa90893F7ec300A099A32C322": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xA0cd3Faf3c370e7448D08f0b3C45703eb61a1974": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xcc977Dfb5c0A7E1Bd87145f56502aC67c951eb6A": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x4962664aB3bE8f478e59F4A1A629a32F5A4C79b2": { + "roots": "0xe19eda36671f838fec0b000000", + "stalk": "0xf81287a1cdd9b000", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x6a8bd8cc", + "bdv": "0x6a8bd8cc" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x6a8bd8cc" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x0a53D9586Dd052a06FCA7649A02b973Cc164c1B4": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "801616107211474": "0xb2ea3e7f", + "801619108907345": "0x481459a08" + }, + "plotIndexes": ["0x2d910cb510ad2", "0x2d9117e3b4951"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x857e126" + }, + "sop": {} + }, + "0x0519425dD15902466e7F7FA332F7b664c5c03503": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "741804565445464": "0x1eb331228e", + "741593512489483": "0x1632cff768", + "741530440114781": "0xb0cd06b42", + "909387138062923": "0x765df64b6" + }, + "plotIndexes": ["0x2a2aad59dbb58", "0x2a279b1e1320b", "0x2a26b0279225d", "0x33b153153da4b"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x689ca486E22bE18937e1E53B668C1b5cD1b6899c": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xA36Aa9dbdB7bbC2c986a5e30386a057f8Aa38d9c": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "636847008762039": "0x7a0cae41c", + "666696008012860": "0x310b31a380", + "897240723495689": "0x23c4d2ad9d", + "906149640768261": "0x22bf182e7d", + "920406236907736": "0x22f8a66442" + }, + "plotIndexes": [ + "0x243357fbbc8b7", + "0x25e5b42bb143c", + "0x33009229a1b09", + "0x3382367738b05", + "0x3451ac6ccc8d8" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x8525664820C549864982D4965a41F83A7d26AF58": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "89514620914919": "0xee6b2800" + }, + "plotIndexes": ["0x5169bf2e8ce7"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x0bf7Fb51211b4842bAd8E831ba2F42fcB836C7e1": { + "roots": "0x1fd038c716aad1ed800000", + "stalk": "0x22faaaa35800", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0xf06", + "bdv": "0xf06" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0xf06" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x9142A918Df6208Ae1bE65e2Be0ea9DAd6067155e": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x044c53d8576d4D700E6327c954f88388EE03b8dB": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x401", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x09Ea3281Eeb7395DaD7851E7e37ad6aff9d68a4c": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "506085097010473": "0x41dd838aa" + }, + "plotIndexes": ["0x1cc481e6ef529"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x2E010a776c51550D30699Bf87CFB574b42a48eE0": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x13af3C337A0d9B54E71C7Fd663Fe5bAb9E341b6E": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xd9Da13DE745bfa50FFAAFD0a531B92f0511B72Cf": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xF83a182BAE282D6D7dC6011a8C8fece73DA37E5c": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x4DE246Ac9Db59E9b2EF6b395c3Ea9798Ea87DA12": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x8e6CD98f0275D180393d68abBF3e59D9519EC741": { + "roots": "0x96592d57f2c76fc00000", + "stalk": "0xa54f4c3c00", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x47", + "bdv": "0x47" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x47" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xE84c01208c4868d5615FCCf0b98f8c90f460d2b6": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xF9383a2d0D81Ee4046F83CE1B5D8580834333470": { + "roots": "0x43c33c1937564800000", + "stalk": "0x4a817c800", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x2", + "bdv": "0x2" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x2" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x17372637a937f7427871573a85e6FaC2400D147f": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x61698" + }, + "sop": {} + }, + "0x96D48b045C9F825f2999C533Ad56B6B0fCa91F92": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x8821d14" + }, + "sop": {} + }, + "0x4DDE0C41511d49E83ACE51c94E668828214D9C51": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "92716616649965": "0x556a7250", + "741944065377362": "0xd24755aa", + "872301195087389": "0x1a908f515" + }, + "plotIndexes": ["0x545345000ced", "0x2a2cb5075c452", "0x3195a72dece1d"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x4847a" + }, + "sop": {} + }, + "0xEfbC103259B500EBe6408fc7c91535b0e158E22b": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x7eee7D572148b3188412cC18B6d9632c2e78f182": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xFec1561ac66d0B76D7Caebe5386cdA39a2056380": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xD2d038f866Ef6441e598E0f685f885693ef59917": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x102e8ac", + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x1" + }, + "sop": {} + }, + "0xa4Be84C37287350AA58eAea4d2F736463C03c893": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x59d94Dc973D144FF29453a7f45161ac53a3d2842": { + "roots": "0x152d02c7e14af6800000", + "stalk": "0x174876e800", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0xa", + "bdv": "0xa" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0xa" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x888E552FC9A9DbFaA5B854bc6F128c1A4142aD28": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x4bCbB32e470627AB0D767AC56bBCB2c33c181BCE": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x92d0920" + }, + "sop": {} + }, + "0xE7003d4f740D6bBc2Bb0f057D41Df36085d8CbA8": { + "roots": "0x21e19e0c9bab2400000", + "stalk": "0x2540be400", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x1", + "bdv": "0x1" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x1" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x77E3CF7d9051f7e76889EC11D9Ab758F9dedc5c4": { + "roots": "0x6c183a2c94a5f43473c00000", + "stalk": "0x76d9ef84c87c00", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x330bd7", + "bdv": "0x330bd7" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x330bd7" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x8083b29d", + "0x1BEA059c3Ea15F6C10be1c53d70C75fD1266D788": "0x2567d5963" + }, + "sop": {} + }, + "0xB816B9eF17535B5CA2071E005da994a1f1eb3a16": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xA3c5A4DF1C8DdaD68Af70c0f26Ddd4eA99F323A4": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x559fb65c37ca2F546d869B6Ff03Cfb22dAfdE9Df": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "787241243844279": "0x246017522" + }, + "plotIndexes": ["0x2cbfde2b11eb7"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x17b2cec" + }, + "sop": {} + }, + "0x4FF37892B9c7411Fd9d189533D3D4a2bf87f2EC6": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "396993916163233": "0x459c4e4df1" + }, + "plotIndexes": ["0x169105959d4a1"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xDbEf835a7c4C1571F7737Ca2722dC12162c91E0D": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x140C4433dbf6B3e6931Bb94855b7Db4AeA3bb846": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xC6AcC0bf7Cc2e6578387B0D24923B2C220c8B936": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x050eab5DECfBef8FbD9d9d0E7897116FD590706e": { + "roots": "0x1adde853ff70b58c00000", + "stalk": "0x1d8a56dcc00", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0xcb", + "bdv": "0xcb" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0xcb" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x85806019a442224D6345a1c2eD597d8a5DCE1F2B": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x14118ce4" + }, + "sop": {} + }, + "0x12e1b13555D430f0be94E2F5D785DC320e886B46": { + "roots": "0x2261cf48312f3f8dbd6000000", + "stalk": "0x25cdb12dd2f6000", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x103c898", + "bdv": "0x103c898" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x103c898" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xfdF8146c2dbAf678A84797AdecD62D0f3A51D365": { + "roots": "0x21e19e0c9bab2400000", + "stalk": "0x2540be400", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x1", + "bdv": "0x1" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x1" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xDFe18DE4852AB020FC82502dcE862B1F4206C587": { + "roots": "0x21e19e0c9bab2400000", + "stalk": "0x2540be400", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x1", + "bdv": "0x1" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x1" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x3dc0371" + }, + "sop": {} + }, + "0xDd2c8Ad91325012B65aBbFDFAD59Cfa23117B3e5": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x28e5366E2e8D6732bCc474d810CaCcc4d758dce1": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA059c3Ea15F6C10be1c53d70C75fD1266D788": "0xaec5c" + }, + "sop": {} + }, + "0xB6Df387d7Ff5dEd6a09EdC941c153772A7C42011": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xE4452Cb39ad3Faa39434b9D768677B34Dc90D5dc": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "623914133044871": "0x75d5ac1c0", + "625867979397771": "0x75d5e9250", + "630168261903378": "0x75d5e9250", + "627250871646040": "0x75d5e9250", + "633246235937816": "0x75d5e9250", + "631193622256278": "0x75d5e9250" + }, + "plotIndexes": [ + "0x2377254453e87", + "0x239393e969a8b", + "0x23d227b664412", + "0x23a7b3963b758", + "0x23fef20f2cc18", + "0x23e1137a39a96" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x1f89d85f4", + "0x1BEA059c3Ea15F6C10be1c53d70C75fD1266D788": "0x16596c96b" + }, + "sop": {} + }, + "0x1e6DA01cf34373cF673434E51Dc3124b70ba4663": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x23444f470C8760bef7424C457c30DC2d4378974b": { + "roots": "0xb7cb80835f7669ba728400000", + "stalk": "0xca15ac6e5254400", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x56cb719", + "bdv": "0x56cb719" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x56cb719" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x224e69025A2f705C8f31EFB6694398f8Fd09ac5C": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "828707206927635": "0x2379e0d2" + }, + "plotIndexes": ["0x2f1b46eb11513"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x50367e" + }, + "sop": {} + }, + "0x9b04EA8897DfA0a817403ACACcDb24df019c7085": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x243925c8" + }, + "sop": {} + }, + "0xE42Ab6d6dC5cc1569802c26a25aF993eeF76cAA2": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "897495730767354": "0x728ecc73f", + "887397958651799": "0xf692f4dd9" + }, + "plotIndexes": ["0x33044823845fa", "0x3271570198f97"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xd43c026148DDa7a17B9E96088d67C9f5e603A36F": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xe4b420F15d6d878dCD0Df7120Ac0fc1509ee9Cab": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "66081788234166": "0xac97ba63", + "828678664933246": "0x6a52f2896", + "928030515655350": "0x1227ac13c0" + }, + "plotIndexes": ["0x3c19dd8389b6", "0x2f1adc974cf7e", "0x34c09f139f2b6"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xb89FF4E9AD6B33F69153fa710F9849f51712eEc4": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xa846AFaa450De64C50d52248A66F7DD7E36688F2": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xf2f65A8a44f0Bb1a634A85b1a4eb4be4D69769B6": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x6D4ed8a1599DEe2655D51B245f786293E03d58f7": { + "roots": "0xcb7386cabd92ff407000000", + "stalk": "0xdfb2716ad7000", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x6013c", + "bdv": "0x6013c" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": { + "829909483286977": "0x11a85eee7" + }, + "plotIndexes": ["0x2f2cc5bf271c1"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x6013c" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x9de665" + }, + "sop": {} + }, + "0x027DA06f9247832D294b3004F1565C8E97382A1F": { + "roots": "0x21e19e0c9bab2400000", + "stalk": "0x2540be400", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x1", + "bdv": "0x1" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x1" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xe5a752e5011b8e191Dad28882e494065518119a7": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x9B0f5cCC13fa9fc22AB6C4766e419BB2A881eb1B": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xC997B8078A2c4AA2aC8e17589583173518F3bc94": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "921521055206279": "0xa0", + "921521054540522": "0xa0", + "921521055911956": "0xa0", + "921521057452817": "0xa0", + "921521067107110": "0xa0", + "921521065767862": "0xa0", + "921521056659950": "0xa0", + "921521058293432": "0xa0", + "921521053912448": "0xa0", + "921521067107430": "0xa0", + "921521067106950": "0xa0", + "921521057452977": "0xa0", + "921521057453137": "0xa0" + }, + "plotIndexes": [ + "0x3461e57260b87", + "0x3461e571be2ea", + "0x3461e5730d014", + "0x3461e57485311", + "0x3461e57dba326", + "0x3461e57c733b6", + "0x3461e573c39ee", + "0x3461e575526b8", + "0x3461e57124d80", + "0x3461e57dba466", + "0x3461e57dba286", + "0x3461e574853b1", + "0x3461e57485451" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x5fA5d55f11BA187d4C318b21A2c1B67714b5A9e4": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xfF961eD9c48FBEbDEf48542432D21efA546ddb89": { + "roots": "0x2928ddd49667a20b33400000", + "stalk": "0x2d4168427ef400", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x136fe5", + "bdv": "0x136fe5" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": { + "278495413994289": "0x393933bc0", + "698298390580000": "0x7e6eceb89", + "800030544923179": "0xd18f153d0", + "843809565189232": "0x3814dd9c4", + "862922651882432": "0x8a59c998f4", + "922824131039105": "0xcad4181c88", + "928724942845271": "0x49ebbf5226", + "948946767655894": "0xdfcb9c1df", + "972673204896245": "0x2006f2470e", + "979747827188563": "0x3da40b234c" + }, + "plotIndexes": [ + "0xfd4a44390331", + "0x27b1943848b20", + "0x2d79fa0708a2b", + "0x2ff70b9642470", + "0x310d2d62253c0", + "0x3474dbc854f81", + "0x34caba04ff557", + "0x35f0fe2ff33d6", + "0x374a420dc41f5", + "0x37b1351358353" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x136fe5" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x9F791Ae2160f4Ec6D9c8986c40Da9b99c3A5F2FE": { + "roots": "0x65a4da25d3016c00000", + "stalk": "0x6fc23ac00", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x401", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x3", + "bdv": "0x3" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x3" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x2f0FDFC5c1F15a56017f3Ed69A47ABdCc0bB2ae7": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x63a3f4" + }, + "sop": {} + }, + "0x6115E98D1183987f5f6224Aa63215E20C7B41680": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x66fA22aEfb2cF14c1fA45725c36C2542521C0d3E": { + "roots": "0x18f9e56fd9bfe06606e800000", + "stalk": "0x1b7629cb6f66800", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0xbcb6ea", + "bdv": "0xbcb6ea" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": { + "145586439347522": "0xc81f826" + }, + "plotIndexes": ["0x8468fc005d42"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0xbcb6ea" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xcaf0648" + }, + "sop": {} + }, + "0x4bD60086997F3896332B612eC36d30A6Ad57928E": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x185a60" + }, + "sop": {} + }, + "0xA88bbFF5B5edec5Ab232174cce7e0921EAAa0EdC": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x18c66f74" + }, + "sop": {} + }, + "0xd5d37cb5d2Fb53C998b645bcDA99B00d36643a7A": { + "roots": "0x1026609d3c1549f50151c00000", + "stalk": "0x11c1cbc83b605c00", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x7a0678f", + "bdv": "0x7a0678f" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x7a0678f" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x00c2CdFd0CCF699632d87BAc5802e9136F9989E2": { + "roots": "0x41c13ba5d170701f4b400000", + "stalk": "0x484c55ddc87400", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x1f0d45", + "bdv": "0x1f0d45" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x1f0d45" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x263397A2559b0BD4E0eF2c7D4195a53F0ca58b9E": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xb3b454c4b4a73ccdd5c79c8e0E4e703B478E872D": { + "roots": "0x21e19e0c9bab2400000", + "stalk": "0x2540be400", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x1", + "bdv": "0x1" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x1" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x2ae5c12", + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xb853530c" + }, + "sop": {} + }, + "0x054EA9bF1E3e8577b106730D5FF47d333ef05233": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x55179ffEFc2d49daB14BA15D25fb023408450409": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "90007738582860": "0x6130d230c", + "285652969925862": "0x213a36873", + "285585338065737": "0x27b15263c", + "285661889336665": "0x18dd67d00", + "293738371159084": "0x2e9336c88", + "293521542986844": "0x182be9b2c", + "311216880418289": "0x140529a68", + "310884055386319": "0x118d86ed1", + "572129929809800": "0xdaba08a80", + "825221386036599": "0x42e11ad3", + "827301562675683": "0x1f90cc84f" + }, + "plotIndexes": [ + "0x51dc8f49074c", + "0x103ccc3cd2ce6", + "0x103bd04a0e349", + "0x103ced7709559", + "0x10b274b45142c", + "0x10af4cf4dbc5c", + "0x11b0cd39afdf1", + "0x11abf55b008cf", + "0x20859613b4f88", + "0x2ee88d3936577", + "0x2f06d27c3f1e3" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x4889e0110" + }, + "sop": {} + }, + "0xED1D7713863d16830F7621c61103f79C385f7CC9": { + "roots": "0x2ce3510ea4b654698a9c00000", + "stalk": "0x315ad614a9ddc00", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x15329ef", + "bdv": "0x15329ef" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x15329ef" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x7E88276D8D638426f4CB3b4bBb5a9BF42C24075a": { + "roots": "0xa5d768ad96b661e6400000", + "stalk": "0xb658373b2400", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x4e51", + "bdv": "0x4e51" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x4e51" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xAFFA4d2BA07F854F3dC34D2C4ce3c1602731043f": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "830263701820170": "0x4d394980", + "832093433457838": "0x287af0a41", + "843732436968356": "0x481cc0260", + "844485217740720": "0x4b74ac5c0" + }, + "plotIndexes": ["0x2f31ed504530a", "0x2f4c8d9856cae", "0x2ff5ec430e3a4", "0x3000e096be7b0"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x1a6d39" + }, + "sop": {} + }, + "0xca71e1c8c80654c872fdD2b8BC65233e9468c802": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x401", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xCDbe0c24C858a75eADC38eb9a8DDAEE7f1598f71": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xb0B822e1c3995503442682CaEea1b6c683169D2e": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA00dAf62D5549D265c5cA6D6BE87eF17881279": "0x98f4c7" + }, + "sop": {} + }, + "0xF5Bf009BEC4cbb93E9571fFb7E1428ffFD398191": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x734A6263fE23c1d68Ec9042e03082575C34c968C": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x13e368" + }, + "sop": {} + }, + "0x97B10F1d005C8edee0FB004af3Bb6E7B47c954fF": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "740627952214807": "0x3c405cdd", + "741114340898555": "0x12d45fd7a", + "973020995561025": "0x3789ceffa" + }, + "plotIndexes": ["0x2a198e200a317", "0x2a20a2106f6fb", "0x374f51acca641"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x8c40b54" + }, + "sop": {} + }, + "0x4319fBf2c6B823e20EdAA4002F5eac872CcAd3BD": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x1ead95940" + }, + "sop": {} + }, + "0xC940a80B7ceeaF00798B9178E63210ffCd23Ba9b": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xD81a2cC2596E37Ae49322eDB198D84dc3986A3ed": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x30ffe" + }, + "sop": {} + }, + "0x575C9606CfcCF6F93D2E5a0C37d2C7696BCab132": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x7D0E6Ae85c94922427F1b1a1D3022Fa186dDb764": { + "roots": "0x16a469057a1cfe85afc00000", + "stalk": "0x18e5386ff03c00", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0xab147", + "bdv": "0xab147" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0xab147" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x6d253d11789415EB1d32D753956fE9AC78bD61b0": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x36144015872CF2d1d1498CF6df7fAe2880C1F079": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x652877AbA8812f976345FEf9ED3dd1Ab23268d5E": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "89189871782553": "0xde697e6" + }, + "plotIndexes": ["0x511e22a00a99"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x3a7f1a2c" + }, + "sop": {} + }, + "0x5b6c9938aB5D4F0a80b7f6f146b8B155164f4dcf": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x0000000002cE79Aacd54227D2163Ff3791338975": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x87dbeaa" + }, + "sop": {} + }, + "0x2c8BD739BC1eDd3a0Ce49A49652Ad715DDdF0670": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x83b33Ba5B1446955bee0B3110C163150f555e40e": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x2812ffa" + }, + "sop": {} + }, + "0xF28df3a3924eEC94853b66dAaAce2c85e1EB24ca": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "271616769085401": "0x8dd3e85d8", + "641335218453068": "0x979678590", + "689683744695426": "0x2c7c396232", + "687404158821438": "0x8290b6c37f", + "689874807391924": "0x1938fc68d5", + "686366502751306": "0xd4a1ca59a", + "691943291190327": "0x10195af68a", + "689174241648861": "0x76a0bf83a5", + "691661469732857": "0x1b47310b7", + "691679103646508": "0x3d82ce010b", + "686348394807411": "0x437514bd7", + "688677161946845": "0x7a7672630", + "686471231511801": "0xa6d21565d5", + "693083416760383": "0x10e31ff880", + "693535758530681": "0x2046c4582e", + "693249722635591": "0x8d33f790c", + "695155947986631": "0x108cddca4", + "695253546475556": "0x1117c0b5d", + "694663168126846": "0x9d082fcd8", + "695191279715360": "0x116dca638", + "695188857379843": "0x9061e81d", + "704433408190413": "0x704eef420", + "708018123634316": "0x393176b8c", + "724510428051588": "0x4571c07f77" + }, + "plotIndexes": [ + "0xf708b5094fd9", + "0x2474a7de0ba4c", + "0x27343829c2482", + "0x27130c0b4243e", + "0x2736ffed586b4", + "0x2703f27950c4a", + "0x275519a137c37", + "0x272cce1dca0dd", + "0x2750ffc354ff9", + "0x2751417457b2c", + "0x2703af043c073", + "0x27259259a4edd", + "0x2705789e71cf9", + "0x2765b0edb103f", + "0x276c46086b879", + "0x27681c7755547", + "0x2783d9b57dec7", + "0x2785454aaa024", + "0x277cadf5fef7e", + "0x27845d5474420", + "0x2784544e55c03", + "0x280adaf1027cd", + "0x283f050c0f68c", + "0x292f03ab33884" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x5a86CCA3fD278b39B82ADB696E27d4402D58dbe9": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xcCBF5d0A96ca77da1D21438eB9c06e485e6723C2": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xF35e261393F9705e10B378C6785582B2a5A71094": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x8EDa691ffE419A4Abe60b66809066852761b4D8d": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x548E13dDc5E2c6bC9456648A9a487DA335b6eC25": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xc48CdC9f5b35Bb6679DBE9a36a359fFB2dE8733E": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x6820572d10F8eC5B48694294F3FCFa1A640CFf40": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "291082705689464": "0x260d178cc", + "340047326378415": "0x22ecb25c00", + "340207113253615": "0x95ce396c0" + }, + "plotIndexes": ["0x108bcf945db78", "0x13545701879af", "0x1356aa422b2ef"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x71B49dd7E69CD8a1e81F7a1e3012C7c12195b7f9": { + "roots": "0x3e5423eb3d4d1d64fac00000", + "stalk": "0x4487f638bdec00", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x1d6f13", + "bdv": "0x1d6f13" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x1d6f13" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x9573470" + }, + "sop": {} + }, + "0xb1bE0000bFdcDDc92A8290202830C4Ef689dCeaa": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x49cE991352A44f7B50AF79b89a50db6289013633": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "214073509247175": "0x5e6042530", + "213316892343591": "0x4bc7097df", + "240823369076303": "0x29b1851f0", + "250466009925474": "0x78cf83fd5" + }, + "plotIndexes": ["0xc2b2df7978c7", "0xc202b597bd27", "0xdb070f5e0e4f", "0xe3cc298cc762"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x15209ef6", + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x1a2cb71a8", + "0x1BEA059c3Ea15F6C10be1c53d70C75fD1266D788": "0x6695fcb66" + }, + "sop": {} + }, + "0x9913DBA3ABcc837Ec9DABea34F49b3FbE431685a": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "623208367044871": "0x58606edbc0", + "628041084589709": "0x58606edbc0", + "631551446912047": "0x58606edbc0", + "626225804053540": "0x58606edbc0", + "632540467532047": "0x58606edbc0", + "629030105209709": "0x58606edbc0" + }, + "plotIndexes": [ + "0x236ce0156b907", + "0x23b3335c0568d", + "0x23e6487a68c2f", + "0x2398c8e998c24", + "0x23f4acddf910f", + "0x23c197bf95b6d" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xC0d3bBF4EB62004A7FD86f13f9048A1f8369b185": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xB1d229741797536194f54892CB3aA7545Fbf1450": { + "roots": "0x2da4e6d65d6002cecb5c00000", + "stalk": "0x322faf6fae29c00", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x158e09f", + "bdv": "0x158e09f" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x158e09f" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x90030396F05AA263776c15e418a908Da4B018157": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x2263c2e" + }, + "sop": {} + }, + "0xdFD6475eea9D67942ceb6c6ea09Cd500D4BE36b0": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "228812087123550": "0x12756dbdc", + "250515993903243": "0x25d6a6ad0", + "262376049001474": "0x32192f8b4", + "297495649811425": "0x1d599d3d4", + "387265643983999": "0x84134e485", + "470681734695761": "0x12ff7f6b5", + "476857007472007": "0x68600554", + "470677624988816": "0xf4f526c1", + "469548729191240": "0x7c3dcbc9", + "510093738357844": "0x6be53325", + "691647958342200": "0x16bdc8798", + "694421867540204": "0x2735afe6", + "707740682508050": "0x8200d341", + "707792108369382": "0x35cfcabeb", + "722432205171487": "0x822404b0c", + "720670274568288": "0x7ec3d349", + "733524513579895": "0x9e4fe65b", + "735406764740276": "0x30af0ae60", + "735386014435662": "0x4d4d08566" + }, + "plotIndexes": [ + "0xd01a772c5e5e", + "0xe3d7ccd3c08b", + "0xeea12f32c402", + "0x10e921a877be1", + "0x160374f24b47f", + "0x1ac1521994b51", + "0x1b1b2ec89fd87", + "0x1ac142ca42490", + "0x1ab0d55354b48", + "0x1cfed7413b454", + "0x2750cd6ddda38", + "0x27792b0bd2eec", + "0x283afb7f95712", + "0x283bbb131b5e6", + "0x2910c5af6ab1f", + "0x28f721fb74060", + "0x29b22fc10e377", + "0x29cd93afa4eb4", + "0x29cd46629c94e" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x155ab09", + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x1f980e91", + "0x1BEA059c3Ea15F6C10be1c53d70C75fD1266D788": "0x52ef8877" + }, + "sop": {} + }, + "0xE8fddb45457CF34EbDdcDb79C3FCFdA311049aed": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x38f733Fb3180276bE19135B3878580126F32c5Ab": { + "roots": "0xbeba8d70a392c0b0cc00000", + "stalk": "0xd1b55cba50c00", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x5a11b", + "bdv": "0x5a11b" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": { + "94419985260424": "0x625500a", + "828251362986796": "0x88ae16d8", + "828771230228142": "0x2182c663" + }, + "plotIndexes": ["0x55dfddae5f88", "0x2f14a4c468b2c", "0x2f1c356c71eae"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x5a11b" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x2ba7e63FA4F30e18d71755DeB4f5385B9f0b7DCf": { + "roots": "0xdf2bb5e67620ff894c00000", + "stalk": "0xf560fae558c00", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x6963b", + "bdv": "0x6963b" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": { + "848000854335918": "0x3795157f", + "848000403545262": "0x1ade8500" + }, + "plotIndexes": ["0x3034095b121ae", "0x303407ad29cae"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x6963b" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xe47cfc1" + }, + "sop": {} + }, + "0x82a8409a264ea933405f5Fe0c4011c3327626D9B": { + "roots": "0x290b451ee6a426abe0c00000", + "stalk": "0x2d20dd944e4c00", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x1361eb", + "bdv": "0x1361eb" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": { + "931232211328334": "0xb588ae6d6" + }, + "plotIndexes": ["0x34ef36528dd4e"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x1361eb" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xe5D57B3546663EdeCa885cF5e4E4fc318cc51168": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xf6F46f437691b6C42cd92c91b1b7c251D6793222": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "741776141210263": "0x69e3768c1", + "920756460282115": "0x51d9cebb0" + }, + "plotIndexes": ["0x2a2a437665297", "0x3456c51bd6103"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x3f4a1a" + }, + "sop": {} + }, + "0xB615e3E80f20beA214076c463D61B336f6676566": { + "roots": "0x3235102fd8f1b421cc00000", + "stalk": "0x373417ac60c00", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x17b5b", + "bdv": "0x17b5b" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": { + "218760793154163": "0x18cde1a95", + "513181895808128": "0x1ca7f4cec", + "707530520602109": "0x85bfe0ef8" + }, + "plotIndexes": ["0xc6f6375de273", "0x1d2bc789ad480", "0x2837ec95925fd"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x17b5b" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xe7453d383EB7d1D2C34e62AB0c1a3865B064Babb": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x66C19e3612efa7b18C18ee4D75A8aaE1d7902225": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x12a23890" + }, + "sop": {} + }, + "0x6Ab61142B3893dD2E4bdcb25AaA77db56cc4b8f3": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x0aF4a5c820cC97fC86d9be25d3cD4791eD436866": { + "roots": "0x1891a8753fe9bba167400000", + "stalk": "0x1b038d599e3400", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0xb9a35", + "bdv": "0xb9a35" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0xb9a35" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x4f4dae8" + }, + "sop": {} + }, + "0xe27bdF8c099934f425a1C604DFc9A82C3b3DD458": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "446838825122091": "0x45043a76" + }, + "plotIndexes": ["0x19665c571792b"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x32a9ee8" + }, + "sop": {} + }, + "0x99854BA0A00012336fb508c082e5Bd974333dBD3": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x0D8969Db749fa22C8107Ff3871E30b2DA246984c": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x48c7e0db3DAd3FE4Eb0513b86fe5C38ebB4E0F91": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "647238507263452": "0x16268c280" + }, + "plotIndexes": ["0x24ca8f54f75dc"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x4FE7788DEb22C548E57c4E95a365600Ed377265B": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x5c2e9221bc596e5E50C109cd6cAEa616764491Ec": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xC94D518EC16c9221f72f3F4Ca48746F4972C57ea": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x104F621B57Dc5c928cFea658fA3dF1a7310be2DF": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x543B4bb8915A5090588F0AD567283d669295D924": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xcf5C67136c5AaFcdBa3195E1dA38A3eE792434D6": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x2efb1" + }, + "sop": {} + }, + "0x3a472FD2bab732329Ea490440e8015e126a4FDB7": { + "roots": "0x21e19e0c9bab2400000", + "stalk": "0x2540be400", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x1", + "bdv": "0x1" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x1" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xdc785D07b151fbB39A0B1742558BFac7f4cf330E": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xAFF0f9e75A6030b342577E29fAaA90E5d6f09bCE": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xe0A2bBCE060EC449f8Ac00Bfc5df4CB0f1167786": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x7e946603F26b7F46FDB0D106124db35Bf14fCdb8": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xa1622394854BA618764Fcb57B15c510AECFfe8a0": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xf7a7ae64Cf9E9dd26Fd2530a9B6fC571A31e75A1": { + "roots": "0x1b87506a3e7b0d400000", + "stalk": "0x1e449a9400", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0xd", + "bdv": "0xd" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0xd" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x194c58c" + }, + "sop": {} + }, + "0x9129D3AeC25F8c7E74b8ce3e1f1d755329A2792F": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x401", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x642daF04770fd6c258CC26EF78505Df4D2DC4091": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xcBF3d4AB955d0bE844DbAed50d3A6e94Ada97E8b": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "89190104998527": "0x24168f" + }, + "plotIndexes": ["0x511e3086a27f"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x0C46F12612Dbc8b10FF4c5385d10C12052b95b99": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xf7379F7091860b685A055aCf64434D32220C1659": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x3bB6c5D9883556AcA4305a46DDFfC67fcCa39352": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x8967362138b31874F4b0b4754ab0555563A94849": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x9821Aac07d0724C69835367D596352Aaf09C309c": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xF6aaadA76eA7f044ffA028565b028740Dce5389F": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xb7ab3f0667eFF5e2299d39C23Aa0C956e8982235": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xcDe68F6a7078f47Ee664cCBc594c9026a8a72d25": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "79182786251454": "0x1c13553d4", + "88804198806155": "0x1952bb8a", + "89664849254055": "0x9fbbc4a5", + "92749915150291": "0xc2f374cc", + "89667529136972": "0x36bfaf73a", + "89738429009108": "0x5b379585c", + "90007717538406": "0x1411ce6", + "89618037954768": "0xcb8f9ec9", + "92791464007095": "0x1de7623b0", + "89607142206304": "0x100f3a839", + "93526764525688": "0xef3773fb", + "93172058592273": "0x3f621f762", + "93518899641683": "0x12a05f200", + "93513899641683": "0x12a05f200", + "93489828194161": "0x30e1dac22", + "93061720723498": "0xa59e5b97", + "94344360260424": "0x28c350fc5", + "99853956449927": "0xb2755e", + "102452933462070": "0x1c8f46bd9", + "102464387242791": "0xd78052a8", + "117244874310129": "0xc26b2", + "112307342413569": "0x40cba1883", + "102474523284594": "0x1d7f44a9b", + "133684807083166": "0x37ae610", + "128226210874732": "0x559b66", + "128760521677597": "0x6fc23ac00", + "128507585109607": "0x5a2d4d5", + "131666681045210": "0x3597cbb", + "148895359495855": "0x4ccbc8608", + "145726675134910": "0x6864b1e", + "145689641471760": "0x738424c", + "150109707437893": "0x80fede6", + "280560810691370": "0xa9e3cf50f", + "302500361239637": "0x6813e88ac", + "707863376349667": "0x1233d678f", + "718096885617267": "0x149aafd96", + "736285402938829": "0xb028528", + "743141962222302": "0x2540be400", + "824882897708819": "0x124f7", + "920556437450010": "0x2e90edcf6f", + "891260306698319": "0xe8d4a50fbe", + "897526482144569": "0xd3813f88ae", + "906685007105154": "0x4583f21c20", + "947737266638625": "0x138c5cd901", + "947416151681051": "0x276dfe9b5b", + "961127308227772": "0x30fcd13800", + "976435448714174": "0x88fa85ec1", + "976407929873421": "0x404a26ce3" + }, + "plotIndexes": [ + "0x48042dd8cabe", + "0x50c456b9728b", + "0x518cb97d16a7", + "0x545b05bed7d3", + "0x518d5938db4c", + "0x519ddb2f0cd4", + "0x51dc8e07ea66", + "0x5181d35158d0", + "0x5464b24015b7", + "0x517f49e16b60", + "0x550fe5939878", + "0x54bd4f749411", + "0x550e10cafd53", + "0x550ce6c50b53", + "0x55074bffe771", + "0x54a39ece502a", + "0x55ce42147348", + "0x5ad10f9a8687", + "0x5d2e2eb48836", + "0x5d30d9675b27", + "0x6aa23315c1f1", + "0x662497400f01", + "0x5d33358f1472", + "0x7995eb70249e", + "0x749efdc0056c", + "0x751b6527db1d", + "0x74e080f61e67", + "0x77c009c0a0da", + "0x876b6702eeaf", + "0x8489a2b4a9be", + "0x84810353cf10", + "0x888623ca0745", + "0xff2b27758b2a", + "0x1131f5a937c55", + "0x283cc4918c9e3", + "0x28d1af5c81273", + "0x29da5cde53dcd", + "0x2a3e238ad0ade", + "0x2ee3a04196713", + "0x3453dbf732d1a", + "0x32a98b5fbb04f", + "0x3304bab250d39", + "0x338a00dc58c82", + "0x35df6471e4f21", + "0x35dab832ce81b", + "0x36a23e3ca74bc", + "0x37810181113be", + "0x37809afd0e40d" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xA92aB746eaC03E5eC31Cd3A879014a7D1e04640c": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "89518725321659": "0x1a1a1d2f3", + "92753185885345": "0x3152a5e0", + "92718049689405": "0x40cfd8d6", + "93309455842273": "0x1bf08eb0", + "93292097092273": "0x3152a5e0", + "93139374842273": "0xa88839e0" + }, + "plotIndexes": [ + "0x516ab3d2d3bb", + "0x545bc8b24ca1", + "0x54539a6a7f3d", + "0x54dd4cf83be1", + "0x54d9424ebab1", + "0x54b5b35a21a1" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xccff78c" + }, + "sop": {} + }, + "0x40ca67bA095c038B711AD37BbebAd8a586ae6f38": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x5f18d" + }, + "sop": {} + }, + "0xa77056BeeD4FAad617724A813cf9120D35308B7C": { + "roots": "0x48433316e40302c800000", + "stalk": "0x4f7415c4800", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x222", + "bdv": "0x222" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x222" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x25f030D68E56F831011c8821913CED6248Dd0676": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xc8dbd54" + }, + "sop": {} + }, + "0x89D17FEedA1d1FcC73Bb5c9e403CCF38aff301A4": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x5a34897A6c1607811Ae763350839720c02107682": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "829849331491739": "0xd4095a9c8" + }, + "plotIndexes": ["0x2f2be5a9ee39b"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x16588520" + }, + "sop": {} + }, + "0x39522C0146B51e9B502fE628A022808da2645A34": { + "roots": "0x7c0baba69cf2ee491e400000", + "stalk": "0x8863ba9e16a400", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x3a9431", + "bdv": "0x3a9431" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x3a9431" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xC81635aBBF6EC73d0271F237a78b6456D6766132": { + "roots": "0x21e19e0c9bab2400000", + "stalk": "0x2540be400", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x401", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x1", + "bdv": "0x1" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x1" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x6a25ec64", + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xe46d0c577", + "0x1BEA059c3Ea15F6C10be1c53d70C75fD1266D788": "0x93e82f2b8" + }, + "sop": {} + }, + "0x48Bd8B9287Aa6C592f1B44c87901cf24A5b64228": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xe9C8C25038bF05DFC4E408b42D5751Ab6af30b85": { + "roots": "0x1399940db3aa61f097000000", + "stalk": "0x158ce2bea67000", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x9417c", + "bdv": "0x9417c" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x9417c" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xB77c0dBA1186483E9cc284a950564Fe886c12dB8": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x3D63719699585FD0bb308174d3f0aD8082d8c5A2": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x27ab85fc" + }, + "sop": {} + }, + "0xaF616dABa40f81b75aF5373294d4dBE29DD0E0f6": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x7482fe6A86C52D6eEb42E92A8F661f5b027d4397": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "731041912594216": "0xa5858bf", + "725798462383772": "0x1e1f766", + "738895645474676": "0xec27a0", + "738895660951316": "0x3654b10" + }, + "plotIndexes": ["0x298e0f5841f28", "0x2941c1f87669c", "0x2a0058c797f74", "0x2a0058d65a714"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x6579df7" + }, + "sop": {} + }, + "0xbDAaA4D3aB02badBD2C1B5AdaF673184B62FE7Ee": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xAf812E8BABab3173EdCE179fE6Fc6c2B1c482E39": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x2d7605" + }, + "sop": {} + }, + "0x9c8fc7e1BEaA9152B555D081C4bcC326cB13C72b": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "446848533640999": "0xbd8030a5", + "446823738027105": "0xcf4fbe26", + "456637461841745": "0x7823fad5", + "666276777312860": "0x310b31a380", + "693767795503827": "0x11b9ffe7c0", + "725784022220843": "0x35cb36671", + "736285587653365": "0x13897172f7", + "737958552803938": "0x2540be400" + }, + "plotIndexes": [ + "0x19668081db727", + "0x19662422eac61", + "0x19f4f31b44751", + "0x25df9a6a2425c", + "0x276fa6701f2d3", + "0x29418c2d4002b", + "0x29da5d8e7c2f5", + "0x29f2b5d661a62" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x58D9A499AC82D74b08b3Cb76E69d8f32e1395746": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "256773707204461": "0xa55cc4a8", + "828446266196477": "0xe825dab0", + "828707802792097": "0x101bb0100", + "828977278210961": "0x10d2cb100", + "829014107524072": "0x10db60540" + }, + "plotIndexes": [ + "0xe988c99b076d", + "0x2f177ad6981fd", + "0x2f1b4923540a1", + "0x2f1f35031d391", + "0x2f1fbe3648be8" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xd216472bcc3e6080Fc28BC95D0565128ffE16De9": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x15AD9ef623b0D635F2eEBf20e0548121CBaFc719": { + "roots": "0x33a5bcd542e3163f66800000", + "stalk": "0x38c9744a8de800", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x1863ca", + "bdv": "0x1863ca" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x1863ca" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x8a1802888" + }, + "sop": {} + }, + "0x53c9AccDD1C2162B416899edB87Eb69C58aFFacf": { + "roots": "0x21e19e0c9bab2400000", + "stalk": "0x2540be400", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x1", + "bdv": "0x1" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x1" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x4bdf56" + }, + "sop": {} + }, + "0xb11903Ec9E1036F1a3FaFe5815E84D8c1f62e254": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "741699585297794": "0x2fa5d3086", + "802201950732340": "0xd9d6e012c", + "872308325991218": "0x46bb398c2", + "872290220599070": "0x28e2166ff", + "910475277864161": "0x2a981dbe0", + "922625815607546": "0x1a52d5a2b" + }, + "plotIndexes": [ + "0x2a292644fcd82", + "0x2d999324fc034", + "0x3195c1be7c332", + "0x31957e4bd671e", + "0x33c128b838ce1", + "0x3471f8ffff8fa" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x136e83" + }, + "sop": {} + }, + "0x71678647939666d2c8D3C198B62da9028c5EBabC": { + "roots": "0xe6a102433020507ebd000000", + "stalk": "0xfd9446966ad000", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x6ce954", + "bdv": "0x6ce954" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x6ce954" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x027be82BF7895db5fc1Fea5696117e875BbCc0dE": { + "roots": "0xb2bcb8458336556a000000", + "stalk": "0xc4860ba4a000", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": { + "86222139228609838984622303097359211701898488658201059011717492786806482056773": { + "amount": "0x5468", + "bdv": "0x5468" + } + }, + "depositIdList": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": [ + "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" + ] + }, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": { + "lastStem": "0x87d50b645", + "bdv": "0x5468" + } + }, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x291882" + }, + "sop": {} + }, + "0x5add1ceC842699d7d0EaEA77632F92Cf3f3Ff8cf": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x0D5a8A26B9172f8C5b6449167f6F307A756F1EE5": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x032865e6e27E90F465968ffc635900a4F7CEEB84": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "787511545768874": "0x122e5aa2c" + }, + "plotIndexes": ["0x2cc3cd1f12baa"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x952ea9dc718A8AF41Aa9f66a2CdF33fd68adEfAf": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": {}, + "plotIndexes": [] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xF493Fd087093522526b1fF0A14Ec79A1f77945cF": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "844505595006708": "0x4d11010" + }, + "plotIndexes": ["0x30012c8004ef4"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xc9bB1DCDBF9Ed97298301569AB648e26d51Ce09b": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "65961902893995": "0x1695ad177", + "99851702914852": "0x86523763", + "133665483117841": "0x47fcc4f8d", + "949006843151357": "0xb8fea6a05" + }, + "plotIndexes": ["0x3bfdf3ca6bab", "0x5ad089484f24", "0x79916ba3d511", "0x35f1ddfc683fd"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x34347f40" + }, + "sop": {} + }, + "0x632f3c0548f656c8470e2882582d02602CfF821C": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "68519420745986": "0x13d2f245a" + }, + "plotIndexes": ["0x3e516bbbd902"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x2920A3192613d8c42f21b64873dc0Ddfcbf018D4": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "68524742212956": "0x2540be400" + }, + "plotIndexes": ["0x3e52a8eafd5c"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x7fFA930D3F4774a0ba1d1fBB5b26000BBb90cA70": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "81429748380955": "0x1", + "202233002999979": "0x8aa79219", + "202235329237700": "0x576816d2", + "218671968549714": "0xe5d1f417", + "694491673804561": "0x2170596a0" + }, + "plotIndexes": [ + "0x4a0f5739f51b", + "0xb7ee0a4e40ab", + "0xb7ee94f5d2c4", + "0xc6e18901fb52", + "0x277a2f1843f11" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xd39" + }, + "sop": {} + }, + "0x854e4406b9C2CFdC36a8992f1718e09E5F0D2371": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "66081776800891": "0xae10de" + }, + "plotIndexes": ["0x3c19dcd5147b"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x77" + }, + "sop": {} + }, + "0x1b9A6108D335e6E0E0325Ccc5b0164BFB65c6B9E": { +<<<<<<< HEAD + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "74106039934810": "0x4ea004d8b" + }, + "plotIndexes": [ + "0x4366282f9f5a" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xB6CC924486681a1ca489639200dcEB4c41C283d3": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "64890353334796": "0x732f1a343", + "147686892058520": "0xafba52799", + "168834068658194": "0x789901407", + "168866441350169": "0x4d0a9613c", + "152164040168590": "0x175913a746", + "250350635854037": "0xbbe927228", + "393026470651510": "0x30a7be2d35" + }, + "plotIndexes": [ + "0x3b047675ba0c", + "0x865208bd3798", + "0x998dbeb03812", + "0x999548404c19", + "0x8a64738fd48e", + "0xe3b14cb828d5", + "0x165749b2ba676" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xE9D18dbFd105155eb367fcFef87eAaAFD15ea4B2": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "68534742212956": "0x2540be400" + }, + "plotIndexes": [ + "0x3e54fcf6e15c" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x510b301E8E4828E54ca5e5F466d8F31e5Ce83EbE": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "81429748380956": "0x1d1b1d10e", + "117217726315318": "0x51d915b0", + "136979532734270": "0x3b9aca00", + "251882385453211": "0x4dc06fe22" + }, + "plotIndexes": [ + "0x4a0f5739f51c", + "0x6a9be0f03b36", + "0x7c950863df3e", + "0xe515f01c309b" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x6B7F8019390Aa85b4A8679f963295D568098Cf51": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "66099065602767": "0x9e15cd766" + }, + "plotIndexes": [ + "0x3c1de35342cf" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x0d619C8e3194b2aA5eddDdE5768c431bA76E27A4": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "79190322716306": "0xcae9ee5c6" + }, + "plotIndexes": [ + "0x4805ef0e1e92" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x52f3F126342fca99AC76D7c8f364671C9bb3fC67": { +======= +>>>>>>> b689ac329 (feat: update reseed jsons) + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "89507398941830": "0xd225540d", + "89656246550500": "0x200c2d6c3", + "743848476657704": "0x498371a2", + "855190099925501": "0x189a6c3d80", + "863597854618078": "0x8eaabeff80", + "859424786465221": "0x342c357400", + "909448360414556": "0xe40bf49120", + "887758447796303": "0xe8e43fd040", + "921034865451866": "0x125d4140", + "921034560497738": "0x122d3b10", + "921035333523306": "0x8e529cc", + "921035173553306": "0x988f2d0", + "921035482759478": "0x12799b89" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x516810b7fc86", + "0x518ab8ba3fe4", + "0x2a486b837c828", + "0x309ca761f19fd", + "0x311700b5a71de", + "0x30da46d1bc1c5", + "0x33b237276cd5c", + "0x327695eed604f", + "0x345ad23fb235a", + "0x345ad11cde84a", + "0x345ad3fe1576a", + "0x345ad3658649a", + "0x345ad48c68136" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x251FAe8f687545BDD462Ba4FCDd7581051740463": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "89496924603539": "0x2540be400", + "99851452914852": "0xee6b280", + "94235781987404": "0x17f8daca9", + "122129787959482": "0x2f0d67ef", + "133665283117841": "0xbebc200", + "137124860862443": "0x139ffcb25", + "136913196875357": "0xaefecdac", + "278603290580864": "0x4d1446cc", + "281273103745391": "0xb098184a4", + "394751719356676": "0x2ebdfc9785", + "439356635751198": "0x267775bd", + "636808516114655": "0x8f6572fd8", + "635516475006264": "0xd0160cc58", + "687313439949641": "0x151f4420f5", + "695163561382883": "0x6cef6f74", + "741224630773020": "0x25ad5353a", + "828953329689546": "0x450c7a1f", + "829107101257549": "0x5fc3fdc0", + "851791077155618": "0xe2ef57ea7", + "853786403387780": "0x298d02ae6", + "906315055949346": "0xe96c905cc" + }, + "plotIndexes": [ + "0x5165a0664493", + "0x5ad07a619ca4", + "0x55b4fa4f7c4c", + "0x6f138ea0b8ba", + "0x79915fb81311", + "0x7cb6de9f1feb", + "0x7c859676fe5d", + "0xfd63622b1780", + "0xffd0ff6f016f", + "0x167064c01b904", + "0x18f97b034231e", + "0x2432c896498df", + "0x241ffb5bddd38", + "0x2711ba1700349", + "0x2783f612313e3", + "0x2a223ced0e51c", + "0x2f1edbcc063ca", + "0x2f2118a404f4d", + "0x306b31093a322", + "0x30883a349b984", + "0x33849eaf6e622" + ] +======= + "plotIndexes": ["0x4366282f9f5a"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xC1E64944de6BEE91752431fF83507dCBd57E186b": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { +<<<<<<< HEAD + "89547003810515": "0x1420067a5" + }, + "plotIndexes": [ + "0x5171495a52d3" +======= + "64890353334796": "0x732f1a343", + "147686892058520": "0xafba52799", + "168834068658194": "0x789901407", + "168866441350169": "0x4d0a9613c", + "152164040168590": "0x175913a746", + "250350635854037": "0xbbe927228", + "393026470651510": "0x30a7be2d35" + }, + "plotIndexes": [ + "0x3b047675ba0c", + "0x865208bd3798", + "0x998dbeb03812", + "0x999548404c19", + "0x8a64738fd48e", + "0xe3b14cb828d5", + "0x165749b2ba676" +>>>>>>> b689ac329 (feat: update reseed jsons) + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, +<<<<<<< HEAD + "0x12B9D75389409d119Dd9a96DF1D41092204e8f32": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "92695810999829": "0x2b7307b6c" + }, + "plotIndexes": [ + "0x544e6ce30615" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xAA420e97534aB55637957e868b658193b112A551": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "92901634103041": "0xa23335380" + }, + "plotIndexes": [ + "0x547e58e65701" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x4d508e880" + }, + "sop": {} + }, + "0xd0D628acf9E985c94a4542CaE88E0Af7B2378c81": { +======= + "0xE9D18dbFd105155eb367fcFef87eAaAFD15ea4B2": { +>>>>>>> b689ac329 (feat: update reseed jsons) + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "68534742212956": "0x2540be400" + }, + "plotIndexes": ["0x3e54fcf6e15c"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, +<<<<<<< HEAD + "0x76a05Df20bFEF5EcE3eB16afF9cb10134199A921": { +======= + "0x510b301E8E4828E54ca5e5F466d8F31e5Ce83EbE": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "81429748380956": "0x1d1b1d10e", + "117217726315318": "0x51d915b0", + "136979532734270": "0x3b9aca00", + "251882385453211": "0x4dc06fe22" + }, + "plotIndexes": ["0x4a0f5739f51c", "0x6a9be0f03b36", "0x7c950863df3e", "0xe515f01c309b"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x6B7F8019390Aa85b4A8679f963295D568098Cf51": { +>>>>>>> b689ac329 (feat: update reseed jsons) + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "66099065602767": "0x9e15cd766" + }, + "plotIndexes": ["0x3c1de35342cf"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x0d619C8e3194b2aA5eddDdE5768c431bA76E27A4": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "79190322716306": "0xcae9ee5c6" + }, + "plotIndexes": ["0x4805ef0e1e92"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x52f3F126342fca99AC76D7c8f364671C9bb3fC67": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "89507398941830": "0xd225540d", + "89656246550500": "0x200c2d6c3", + "743848476657704": "0x498371a2", + "855190099925501": "0x189a6c3d80", + "863597854618078": "0x8eaabeff80", + "859424786465221": "0x342c357400", + "909448360414556": "0xe40bf49120", + "887758447796303": "0xe8e43fd040", + "921034865451866": "0x125d4140", + "921034560497738": "0x122d3b10", + "921035333523306": "0x8e529cc", + "921035173553306": "0x988f2d0", + "921035482759478": "0x12799b89" + }, + "plotIndexes": [ + "0x516810b7fc86", + "0x518ab8ba3fe4", + "0x2a486b837c828", + "0x309ca761f19fd", + "0x311700b5a71de", + "0x30da46d1bc1c5", + "0x33b237276cd5c", + "0x327695eed604f", + "0x345ad23fb235a", + "0x345ad11cde84a", + "0x345ad3fe1576a", + "0x345ad3658649a", + "0x345ad48c68136" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, +<<<<<<< HEAD +======= + "0x251FAe8f687545BDD462Ba4FCDd7581051740463": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "89496924603539": "0x2540be400", + "99851452914852": "0xee6b280", + "94235781987404": "0x17f8daca9", + "122129787959482": "0x2f0d67ef", + "133665283117841": "0xbebc200", + "137124860862443": "0x139ffcb25", + "136913196875357": "0xaefecdac", + "278603290580864": "0x4d1446cc", + "281273103745391": "0xb098184a4", + "394751719356676": "0x2ebdfc9785", + "439356635751198": "0x267775bd", + "636808516114655": "0x8f6572fd8", + "635516475006264": "0xd0160cc58", + "687313439949641": "0x151f4420f5", + "695163561382883": "0x6cef6f74", + "741224630773020": "0x25ad5353a", + "828953329689546": "0x450c7a1f", + "829107101257549": "0x5fc3fdc0", + "851791077155618": "0xe2ef57ea7", + "853786403387780": "0x298d02ae6", + "906315055949346": "0xe96c905cc" + }, + "plotIndexes": [ + "0x5165a0664493", + "0x5ad07a619ca4", + "0x55b4fa4f7c4c", + "0x6f138ea0b8ba", + "0x79915fb81311", + "0x7cb6de9f1feb", + "0x7c859676fe5d", + "0xfd63622b1780", + "0xffd0ff6f016f", + "0x167064c01b904", + "0x18f97b034231e", + "0x2432c896498df", + "0x241ffb5bddd38", + "0x2711ba1700349", + "0x2783f612313e3", + "0x2a223ced0e51c", + "0x2f1edbcc063ca", + "0x2f2118a404f4d", + "0x306b31093a322", + "0x30883a349b984", + "0x33849eaf6e622" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xC1E64944de6BEE91752431fF83507dCBd57E186b": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "89547003810515": "0x1420067a5" + }, + "plotIndexes": ["0x5171495a52d3"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x12B9D75389409d119Dd9a96DF1D41092204e8f32": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "92695810999829": "0x2b7307b6c" + }, + "plotIndexes": ["0x544e6ce30615"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xAA420e97534aB55637957e868b658193b112A551": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "92901634103041": "0xa23335380" + }, + "plotIndexes": ["0x547e58e65701"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x4d508e880" + }, + "sop": {} + }, + "0xd0D628acf9E985c94a4542CaE88E0Af7B2378c81": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "89208643960630": "0x2dc6c0", + "122216130970075": "0x51cbad9a1", + "684090892689899": "0x343e20b01" + }, + "plotIndexes": ["0x51228188bf36", "0x6f27a91281db", "0x26e2d52a721eb"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x141241c" + }, + "sop": {} + }, + "0x76a05Df20bFEF5EcE3eB16afF9cb10134199A921": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "92743843990177": "0x1685f7d0d", + "634649380286759": "0x13675c2571" + }, + "plotIndexes": ["0x54599be04aa1", "0x24135d2de7127"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xd29bf10" + }, + "sop": {} + }, +>>>>>>> b689ac329 (feat: update reseed jsons) + "0x1FA29B6DcBC5fA3B529fEecd46F57Ee46718716b": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "94074534759816": "0x258b156ec4" + }, + "plotIndexes": ["0x558f6f3a0d88"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x44440AA675Ae3196E2614c1A9Ac897e5Cd6F8545": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "94280290718369": "0x3e43d783", + "704216199980940": "0x5e935e5c" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x55bf573cd2a1", + "0x2807b1c71e78c" + ] +======= + "plotIndexes": ["0x55bf573cd2a1", "0x2807b1c71e78c"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x5Ea861872592804FF69847Dd73Eef2BD01A0dde0": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "99847422900232": "0xf035249c" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x5acf8a2c7808" + ] +======= + "plotIndexes": ["0x5acf8a2c7808"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x5e93941A8f3Aede7788188b6CB8092b6e57d02A6": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "94281335351848": "0x389fd980", + "437580444503704": "0x4c3aee346", + "463414838278024": "0x2d4850279", + "662850624131661": "0x3e82892fe", + "695537635383030": "0x15e2b763f", + "697945151970404": "0x22f996129", + "701398278226282": "0x1509633d8", + "705660334202228": "0xc922c8a0" + }, + "plotIndexes": [ + "0x55bf9580aa28", + "0x18dfa22f48e98", + "0x1a5792cd1b788", + "0x25adbeffd924d", + "0x2789679af56f6", + "0x27ac704db1c64", + "0x27deb0338416a", + "0x281cb598d5d74" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x2" + }, + "sop": {} + }, + "0x2206e33975EF5CBf8d0DE16e4c6574a3a3aC65B6": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "94255248987397": "0x7" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x55b982a25505" + ] +======= + "plotIndexes": ["0x55b982a25505"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xD99f87535972Ba63B0fcE0bC2B3F7a2aF7193886": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "93318838342273": "0x3521af400", + "591137392921024": "0x1d1a94a200", + "643048855332541": "0xc7d30ae5" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x54df7c35d281", + "0x219a2e65189c0", + "0x248d97a9866bd" + ] +======= + "plotIndexes": ["0x54df7c35d281", "0x219a2e65189c0", "0x248d97a9866bd"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x399baf8F9AD4B3289d905f416bD3e245792C5fA6": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "93009983755725": "0x8768c801" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x5497930ad5cd" + ] +======= + "plotIndexes": ["0x5497930ad5cd"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x284f942F11a5046a5D11BCbEC9beCb46d1172512": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "112217222887362": "0x99707621a", + "319598229117213": "0x1678c96929" + }, + "plotIndexes": ["0x660f9bb537c2", "0x122ac42ead91d"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x6bDd8c55a23D432D34c276A87584b8A96C03717F": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "113336590076810": "0x49912548d", + "113316826225763": "0x49a046f27" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x67143b310b8a", + "0x670fa12c9c63" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x14FC66BeBdBe500D1ee86FA3cBDc4d201E644248": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "102482441363213": "0x3e68c1130", + "102501887271161": "0x3fcdcb1", + "325399058895802": "0x48e728d01" + }, + "plotIndexes": [ + "0x5d350d835f0d", + "0x5d39949460f9", + "0x127f2df50d3ba" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x204912b8" + }, + "sop": {} + }, + "0x6A7E0712838A0b257C20e042cf9b6C5E910F221F": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "111519018790551": "0x3174540ce" + }, + "plotIndexes": [ + "0x656d0b802e97" + ] +======= + "plotIndexes": ["0x67143b310b8a", "0x670fa12c9c63"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xF3F03727e066B33323662ACa4BE939aFBE49d198": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { +<<<<<<< HEAD + "112305865851667": "0x57d7e7db" + }, + "plotIndexes": [ + "0x66243f3d8313" +======= + "102482441363213": "0x3e68c1130", + "102501887271161": "0x3fcdcb1", + "325399058895802": "0x48e728d01" + }, + "plotIndexes": ["0x5d350d835f0d", "0x5d39949460f9", "0x127f2df50d3ba"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x204912b8" + }, + "sop": {} + }, + "0x6A7E0712838A0b257C20e042cf9b6C5E910F221F": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "111519018790551": "0x3174540ce" + }, + "plotIndexes": ["0x656d0b802e97"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xF3F03727e066B33323662ACa4BE939aFBE49d198": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "112305865851667": "0x57d7e7db" + }, + "plotIndexes": ["0x66243f3d8313"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x1Bd6aAB7DCf6228D3Be0C244F1D36e23DAac3BAe": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "106868611705393": "0x3d76c6cf1", + "148243785783460": "0x2bdaaa3718", + "311692403880222": "0xc12ef6f32", + "328628658281539": "0x10502a0ce5", + "328527449691073": "0x1790808882", + "634504902771992": "0x890fb45d7", + "931736156920528": "0x1f1b0360c8e" + }, + "plotIndexes": [ + "0x613249a36a31", + "0x86d3b23118a4", + "0x11b7b8b03311e", + "0x12ae2d2709c43", + "0x12acb41f013c1", + "0x241142f568518", + "0x34f68baa85ad0" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x1850eb26" + }, + "sop": {} + }, + "0xd80eC2F30FB3542F0577EeD01fBDCCF007257127": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "117373037489804": "0x3eeaeffe8" + }, + "plotIndexes": ["0x6ac00a34ae8c"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x3a1Bc767d7442355E96BA646Ff83706f70518dAA": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "121663369666252": "0x8d59e225c", + "121742830315112": "0x4e7a29473d", + "446243884304809": "0x100a786310", + "445937161222528": "0x337e498fe9", + "489859129059979": "0x5098de0180", + "521589023122466": "0x2ea81881e0", + "505145411205774": "0xeb01072d8", + "571933833018999": "0x2da8479111" + }, + "plotIndexes": [ + "0x6ea6f5ee5ecc", + "0x6eb97627a668", + "0x195db403509a9", + "0x19593d6163980", + "0x1bd863760aa8b", + "0x1da61e8712422", + "0x1cb6d54cb7a8e", + "0x2082bb8f3be77" +>>>>>>> b689ac329 (feat: update reseed jsons) + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, +<<<<<<< HEAD + "0x1Bd6aAB7DCf6228D3Be0C244F1D36e23DAac3BAe": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "106868611705393": "0x3d76c6cf1", + "148243785783460": "0x2bdaaa3718", + "311692403880222": "0xc12ef6f32", + "328628658281539": "0x10502a0ce5", + "328527449691073": "0x1790808882", + "634504902771992": "0x890fb45d7", + "931736156920528": "0x1f1b0360c8e" + }, + "plotIndexes": [ + "0x613249a36a31", + "0x86d3b23118a4", + "0x11b7b8b03311e", + "0x12ae2d2709c43", + "0x12acb41f013c1", + "0x241142f568518", + "0x34f68baa85ad0" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x1850eb26" + }, + "sop": {} + }, + "0xd80eC2F30FB3542F0577EeD01fBDCCF007257127": { +======= + "0x9A5d202C5384a032473b2370D636DcA39adcC28f": { +>>>>>>> b689ac329 (feat: update reseed jsons) + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "102403247311465": "0x27ddfd011" + }, + "plotIndexes": ["0x5d229d2e0a69"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, +<<<<<<< HEAD + "0x3a1Bc767d7442355E96BA646Ff83706f70518dAA": { +======= + "0x12849Ec7cB1a7B29FAFD3E16Dc5159b2F5D67303": { +>>>>>>> b689ac329 (feat: update reseed jsons) + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { +<<<<<<< HEAD + "121663369666252": "0x8d59e225c", + "121742830315112": "0x4e7a29473d", + "446243884304809": "0x100a786310", + "445937161222528": "0x337e498fe9", + "489859129059979": "0x5098de0180", + "521589023122466": "0x2ea81881e0", + "505145411205774": "0xeb01072d8", + "571933833018999": "0x2da8479111" + }, + "plotIndexes": [ + "0x6ea6f5ee5ecc", + "0x6eb97627a668", + "0x195db403509a9", + "0x19593d6163980", + "0x1bd863760aa8b", + "0x1da61e8712422", + "0x1cb6d54cb7a8e", + "0x2082bb8f3be77" + ] +======= + "121128776667659": "0x528539e45e" + }, + "plotIndexes": ["0x6e2a7db4920b"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, +<<<<<<< HEAD + "0x9A5d202C5384a032473b2370D636DcA39adcC28f": { +======= + "0x085656Bd50C53E7e93D19270546956B00711FE2B": { +>>>>>>> b689ac329 (feat: update reseed jsons) + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { +<<<<<<< HEAD + "102403247311465": "0x27ddfd011" + }, + "plotIndexes": [ + "0x5d229d2e0a69" + ] +======= + "134062407569102": "0xf9c52f78a" + }, + "plotIndexes": ["0x79edd62e4ece"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, +<<<<<<< HEAD + "sop": {} + }, + "0x12849Ec7cB1a7B29FAFD3E16Dc5159b2F5D67303": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "121128776667659": "0x528539e45e" + }, + "plotIndexes": [ + "0x6e2a7db4920b" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x085656Bd50C53E7e93D19270546956B00711FE2B": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "134062407569102": "0xf9c52f78a" + }, + "plotIndexes": [ + "0x79edd62e4ece" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, +======= +>>>>>>> b689ac329 (feat: update reseed jsons) + "sop": {} + }, + "0x408fc5413Ea0D489D66acBc1BcB5369Fc9F32e22": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "137228728484742": "0x484b302fe", + "630926654506278": "0x4ed38a827", + "695170871906740": "0x918fa063", + "698060293717985": "0x4a45f4c25", + "700924209542750": "0x140899cd00", + "701813606595271": "0x2f060d5540" + }, + "plotIndexes": [ + "0x7ccf0d9d4386", + "0x23dd30f1f0526", + "0x2784114e0d1b4", + "0x27ae1d3d6bfe1", + "0x27d7ca286365e", + "0x27e4bb6b83ac7" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xb5566c4F8ee35E46c397CECf963Bfe9F8798F714": { +<<<<<<< HEAD +======= + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "137248134678148": "0x396392e4", + "640240084788517": "0xe0fbf3e0", + "695877378915987": "0xf7f49000" + }, + "plotIndexes": ["0x7cd392504684", "0x2464b82d32525", "0x278e593fa3e93"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xd5eF94eC1a13a9356C67CF9902B8eD22Ebd6A0f6": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "135334419409244": "0xba4090547", + "136132384541471": "0xbcb66de70" + }, + "plotIndexes": ["0x7b15fffea95c", "0x7bcfca6c4b1f"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x19CB3CfB44B052077E2c4dF7095900ce0b634056": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "137255763505128": "0x23d0ee19a" + }, + "plotIndexes": ["0x7cd55906efe8"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x6Ac3BDBB58D671f81563998dd9ca561d527E5F43": { +>>>>>>> b689ac329 (feat: update reseed jsons) + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "128468620580196": "0x912778903", + "887473260643431": "0x42667a9be8" + }, + "plotIndexes": ["0x74d76e7e9564", "0x32726f872c467"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x386f4e50" + }, + "sop": {} + }, + "0x93E4c75ff6e0C7BC4Bcfc7CA2F19e6733d6009Eb": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "137266188068234": "0x76a780b9", + "704198943665924": "0x190089fcc" + }, + "plotIndexes": ["0x7cd7c661258a", "0x2807717e36f04"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xd5eF94eC1a13a9356C67CF9902B8eD22Ebd6A0f6": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "135334419409244": "0xba4090547", + "136132384541471": "0xbcb66de70" + }, + "plotIndexes": [ + "0x7b15fffea95c", "0x7bcfca6c4b1f" ] } @@ -206537,7 +213044,5230 @@ "internalTokenBalance": {}, "sop": {} }, - "0x19CB3CfB44B052077E2c4dF7095900ce0b634056": { + "0x19CB3CfB44B052077E2c4dF7095900ce0b634056": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "137255763505128": "0x23d0ee19a" + }, + "plotIndexes": [ + "0x7cd55906efe8" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x6Ac3BDBB58D671f81563998dd9ca561d527E5F43": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "128468620580196": "0x912778903", + "887473260643431": "0x42667a9be8" + }, + "plotIndexes": [ + "0x74d76e7e9564", + "0x32726f872c467" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x386f4e50" + }, + "sop": {} + }, + "0x93E4c75ff6e0C7BC4Bcfc7CA2F19e6733d6009Eb": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "137266188068234": "0x76a780b9", + "704198943665924": "0x190089fcc" + }, + "plotIndexes": [ + "0x7cd7c661258a", + "0x2807717e36f04" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x084a35aE3B2F2513FF92fab6ad2954A1DF418093": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "134838782590422": "0x189726cf73", + "134830609083484": "0x1e72dd17a", + "202891108289560": "0x3b6c7bc3e" + }, + "plotIndexes": ["0x7aa299bcfdd6", "0x7aa0b28f2c5c", "0xb88744700c18"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x84649973923f8d3565E8520171618588508983aF": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "137249097505128": "0x18d531680" + }, + "plotIndexes": ["0x7cd3cbb3d968"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xE48436022460c33e32FC98391CD6442d55CD1c69": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "137265377825154": "0x304b5408" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x7cd79615d182" + ] +======= + "plotIndexes": ["0x7cd79615d182"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xFA2a3c48b85D6790B943F645Abf35A1E12770D09": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "134129454761560": "0xe5afb9145" + }, + "plotIndexes": ["0x79fd72814658"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x411bbd5BAf8eb2447611FF3Ac6E187fBBE0573A7": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "136815080964510": "0xed3efc0ee", + "204505988395558": "0x91e12b51b", + "625573606332771": "0x6617bebb8", + "627237168988540": "0x330bdf5dc", + "630912951848778": "0x330bdf5dc", + "630199893153378": "0x330bdf5dc", + "633544834937816": "0x330bdf5dc" + }, + "plotIndexes": [ + "0x7c6ebe4d019e", + "0xb9ff42caf226", + "0x238f4b4961963", + "0x23a7808a5c17c", + "0x23dcfde610f4a", + "0x23d29d8c4d662", + "0x24034a6d5f3d8" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x9bf49f20" + }, + "sop": {} + }, + "0x9B1AC8E6d08053C55713d9aA8fDE1c53e9a929e2": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "128790521677597": "0x1bf08eb00", + "388736379371138": "0x338275a03e", + "387786058520473": "0x551af8ec15" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x7522614b871d", + "0x1618dbdcdbe82", + "0x160b07a445799" + ] +======= + "plotIndexes": ["0x7522614b871d", "0x1618dbdcdbe82", "0x160b07a445799"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xF074d66B602DaE945d261673B10C5d6197Ae5175": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "145260774599348": "0x15c6ddc7b9", + "145952084202661": "0x2a5d4b4d86", + "145354305335917": "0x2b538b066b" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x841d28deaab4", + "0x84be1e2214a5", + "0x8432efbc726d" + ] +======= + "plotIndexes": ["0x841d28deaab4", "0x84be1e2214a5", "0x8432efbc726d"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x433770F8B8fA5272aa9d1Fe899FBEdD68e386569": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "137531094651758": "0x53e129f77" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x7d15740ad36e" + ] +======= + "plotIndexes": ["0x7d15740ad36e"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x1B89a08D82079337740e1cef68c571069725306e": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "148148500497930": "0x6d98b52bb" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x86bd82bf060a" + ] +======= + "plotIndexes": ["0x86bd82bf060a"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xE3546C83C06A298148214C8a25B4081d72a704B4": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "145540390549720": "0x9622f36ba" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x845e434778d8" + ] +======= + "plotIndexes": ["0x845e434778d8"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x4932Ad7cde36e2aD8724f86648dF772D0413c39E": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "144258485938657": "0x789af507d9" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x8333cbcf69e1" + ] +======= + "plotIndexes": ["0x8333cbcf69e1"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xdF02A9ba6C6A5118CF259f01eD7A023A4599a945": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "139975732251488": "0x5cac381568", + "181407955635376": "0x7eea4ef6d4", + "232388914759088": "0x38b3cc31cd", + "231851733041965": "0x33471466a0", + "241282142603223": "0x4ea7c91709" + }, + "plotIndexes": [ + "0x7f4ea3cc4b60", + "0xa4fd54c14cb0", + "0xd35b42b6c5b0", + "0xd2de3030432d", + "0xdb71e06687d7" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x6384F5369d601992309c3102ac7670c62D33c239": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "147555339912491": "0x15d466ade0", + "201794323874481": "0x54f6e887c1", + "181331243759377": "0x11dc62559f" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x8633679ec52b", + "0xb787e6fe02b1", + "0xa4eb785ef711" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x3d860D1e938Ea003d12b9FC756Be12dBe1d5C4f5": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "141610787263306": "0x21fd7f31eab", + "191837226999990": "0x4694f486ecf" + }, + "plotIndexes": [ + "0x80cb54abd34a", + "0xae7995c520b6" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x8496e1b0aAd23e70Ef76F390518Cf2b4CC4a4849": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "145580692516754": "0x15689adb0", + "705687548615966": "0x191bc3d00", + "705712512774884": "0x178833fad" + }, + "plotIndexes": [ + "0x8467a576af92", + "0x281d1afa85d1e", + "0x281d77fa332e4" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x0c492D61651965E3096740306F8345516fCd8990": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "147484814729971": "0x106ba0e238", + "180281626769160": "0xb6f2c120d6", + "200410780844889": "0x518c86de80" + }, + "plotIndexes": [ + "0x8622fbfde2f3", + "0xa3f71652b708", + "0xb645c566c359" + ] +======= + "plotIndexes": ["0x8633679ec52b", "0xb787e6fe02b1", "0xa4eb785ef711"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xCd3F4c42552F24d5d8b1f508F8b8d138b01af53F": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "148432137965500": "0xc1d91e994" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x86ff8cdb4fbc" + ] +======= + "plotIndexes": ["0x80cb54abd34a", "0xae7995c520b6"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, +<<<<<<< HEAD + "0x3E24c27F8fDCfC1f3E7E8683D9df0691AcE251C6": { +======= + "0x8496e1b0aAd23e70Ef76F390518Cf2b4CC4a4849": { +>>>>>>> b689ac329 (feat: update reseed jsons) + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { +<<<<<<< HEAD + "148618311892836": "0x156fa17ab6" + }, + "plotIndexes": [ + "0x872ae5afff64" + ] +======= + "145580692516754": "0x15689adb0", + "705687548615966": "0x191bc3d00", + "705712512774884": "0x178833fad" + }, + "plotIndexes": ["0x8467a576af92", "0x281d1afa85d1e", "0x281d77fa332e4"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, +<<<<<<< HEAD + "0x921Ed81DeE5099d700D447a5Acb33fC65Ba6bf96": { +======= + "0x0c492D61651965E3096740306F8345516fCd8990": { +>>>>>>> b689ac329 (feat: update reseed jsons) + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { +<<<<<<< HEAD + "145586649191784": "0x7ed23ea2a" + }, + "plotIndexes": [ + "0x846908825568" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x94Ff138F71b8B4214e70d3bf6CcF73b3eb4581cB": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "144776481763770": "0x45f8d0fe3", + "332990401346447": "0x49cf0e770" + }, + "plotIndexes": [ + "0x83ac66c471ba", + "0x12eda5e95fb8f" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x6ab075abfA7cdD7B19FA83663b1f2a83e4A957e3": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "139575720236986": "0x16c726714f" + }, + "plotIndexes": [ + "0x7ef1813957ba" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xa01b14d9fA355178408Dd873CB7C1F7aFd3C2151": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "153630962562924": "0xc7c0b92e6" + }, + "plotIndexes": [ + "0x8bb9fef3376c" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x53c92792E6C8Dad49568e8De3ea06888f4830Fe0": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "170679729221505": "0x6e417ffbc", + "725321098785789": "0x29a20bc686" + }, + "plotIndexes": [ + "0x9b3b78a16f81", + "0x293acfa70f3fd" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xe1887385C1ed2d53782F0231D8032E4Ae570B3CE": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "168135476389285": "0x2fb03c5d4c", + "168068691873325": "0x8cc4e9b31" + }, + "plotIndexes": [ + "0x98eb175825a5", + "0x98db8aad4e2d" + ] +======= + "147484814729971": "0x106ba0e238", + "180281626769160": "0xb6f2c120d6", + "200410780844889": "0x518c86de80" + }, + "plotIndexes": ["0x8622fbfde2f3", "0xa3f71652b708", "0xb645c566c359"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xCd3F4c42552F24d5d8b1f508F8b8d138b01af53F": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "148432137965500": "0xc1d91e994" + }, + "plotIndexes": ["0x86ff8cdb4fbc"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x3E24c27F8fDCfC1f3E7E8683D9df0691AcE251C6": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "148618311892836": "0x156fa17ab6" + }, + "plotIndexes": ["0x872ae5afff64"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x921Ed81DeE5099d700D447a5Acb33fC65Ba6bf96": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "145586649191784": "0x7ed23ea2a" + }, + "plotIndexes": ["0x846908825568"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x94Ff138F71b8B4214e70d3bf6CcF73b3eb4581cB": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "144776481763770": "0x45f8d0fe3", + "332990401346447": "0x49cf0e770" + }, + "plotIndexes": ["0x83ac66c471ba", "0x12eda5e95fb8f"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x6ab075abfA7cdD7B19FA83663b1f2a83e4A957e3": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "139575720236986": "0x16c726714f" + }, + "plotIndexes": ["0x7ef1813957ba"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xa01b14d9fA355178408Dd873CB7C1F7aFd3C2151": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "153630962562924": "0xc7c0b92e6" + }, + "plotIndexes": ["0x8bb9fef3376c"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x53c92792E6C8Dad49568e8De3ea06888f4830Fe0": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "170679729221505": "0x6e417ffbc", + "725321098785789": "0x29a20bc686" + }, + "plotIndexes": ["0x9b3b78a16f81", "0x293acfa70f3fd"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x41954b53cFB5e4292223720cB3577d3ed885D4f7": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", +<<<<<<< HEAD + "lastSop": "0x42b", +======= + "lastSop": "0x0", +>>>>>>> b689ac329 (feat: update reseed jsons) + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { +<<<<<<< HEAD + "157994454912867": "0x2324c599ab" + }, + "plotIndexes": [ + "0x8fb1f35c8f63" + ] +======= + "168135476389285": "0x2fb03c5d4c", + "168068691873325": "0x8cc4e9b31" + }, + "plotIndexes": ["0x98eb175825a5", "0x98db8aad4e2d"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, +<<<<<<< HEAD + "0x922d012c7E8fCe3C46ac761179Bdb6d16246782D": { +======= + "0xbb9dDEE672BF27905663F49bf950090050C4e9ad": { +>>>>>>> b689ac329 (feat: update reseed jsons) + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { +<<<<<<< HEAD + "150084707437893": "0x5d21dba00", + "685372204853017": "0x1014e10311" + }, + "plotIndexes": [ + "0x888051ac4d45", + "0x26f57a6cf2719" +======= + "168493012264452": "0x13169d8a17" + }, + "plotIndexes": ["0x993e5624a604"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x41954b53cFB5e4292223720cB3577d3ed885D4f7": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "157994454912867": "0x2324c599ab" + }, + "plotIndexes": ["0x8fb1f35c8f63"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x922d012c7E8fCe3C46ac761179Bdb6d16246782D": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "150084707437893": "0x5d21dba00", + "685372204853017": "0x1014e10311" + }, + "plotIndexes": ["0x888051ac4d45", "0x26f57a6cf2719"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x30d0DEb932b5535f792d359604D7341D1B357a35": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "153844244754703": "0x3cb8b79b97" + }, + "plotIndexes": ["0x8beba78f310f"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xdbC529316fe45F5Ce50528BF2356211051fB0F71": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "149967196818046": "0x366014730", + "269534561489665": "0x1522e45820" + }, + "plotIndexes": ["0x8864f57e8a7e", "0xf523e7cad301"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xede90b8" + }, + "sop": {} + }, + "0xb9c3Dd8fee9A4ACe100f8cC0B8239AB49B021fA5": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "149577120077935": "0x989680", + "149431927422856": "0x21ce2818e7", + "149577130077935": "0xf4240", + "213270572343591": "0xac8e31c00", + "262592826339996": "0x16fae598c9", + "402001335542096": "0x3fa1f30d00", + "699491292359432": "0x238812e413", + "701405120085419": "0x28fbe85840" + }, + "plotIndexes": [ + "0x880a231bd86f", + "0x87e854f3bf88", + "0x880a23b46eef", + "0xc1f7ecb4a127", + "0xeed3a822729c", + "0x16d9e3acde150", + "0x27c2f02012b08", + "0x27dec9b06bdab" +>>>>>>> b689ac329 (feat: update reseed jsons) + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x30d0DEb932b5535f792d359604D7341D1B357a35": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "153844244754703": "0x3cb8b79b97" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x8beba78f310f" + ] +======= + "plotIndexes": ["0x8bde329a05dc"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x7C28205352AD687348578f9cB2AB04DE1DcaA040": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "168585228445774": "0x39f0084fc4" + }, + "plotIndexes": ["0x9953cea7e84e"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x219312542D51cae86E47a1A18585f0bac6E6867B": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "154105041833126": "0x4ad64a736" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x8864f57e8a7e", + "0xf523e7cad301" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xede90b8" + }, + "sop": {} + }, + "0xb9c3Dd8fee9A4ACe100f8cC0B8239AB49B021fA5": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "149577120077935": "0x989680", + "149431927422856": "0x21ce2818e7", + "149577130077935": "0xf4240", + "213270572343591": "0xac8e31c00", + "262592826339996": "0x16fae598c9", + "402001335542096": "0x3fa1f30d00", + "699491292359432": "0x238812e413", + "701405120085419": "0x28fbe85840" + }, + "plotIndexes": [ + "0x880a231bd86f", + "0x87e854f3bf88", + "0x880a23b46eef", + "0xc1f7ecb4a127", + "0xeed3a822729c", + "0x16d9e3acde150", + "0x27c2f02012b08", + "0x27dec9b06bdab" + ] +======= + "plotIndexes": ["0x8c286046cca6"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, +<<<<<<< HEAD + "0xcA580c4e991061D151021B13b984De73B183b06e": { +======= + "0x0e9dc8fFc3a5A04A2Abdd5C5cBc52187E6653E42": { +>>>>>>> b689ac329 (feat: update reseed jsons) + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { +<<<<<<< HEAD + "153786447955420": "0xd74f52b33" + }, + "plotIndexes": [ + "0x8bde329a05dc" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x7C28205352AD687348578f9cB2AB04DE1DcaA040": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "168585228445774": "0x39f0084fc4" + }, + "plotIndexes": [ + "0x9953cea7e84e" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x219312542D51cae86E47a1A18585f0bac6E6867B": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "154105041833126": "0x4ad64a736" + }, + "plotIndexes": [ + "0x8c286046cca6" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x0e9dc8fFc3a5A04A2Abdd5C5cBc52187E6653E42": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "170739819759175": "0x1d432f8da7c", + "205352438673508": "0x7f12273017", + "208195727704637": "0x4e879d35bc", + "230656709472518": "0x19f878cfa5", + "230768252321963": "0x77a044356e", + "237606953663534": "0x1f274005aa", + "236350247713281": "0x8fd21a1b11", + "237740756156888": "0xb3ef222778", + "505208494615910": "0x60f80685b2", + "531421470867756": "0x150ba3086", + "531420470867756": "0x3b9aca00", + "545138809924718": "0x593969aea1" + }, + "plotIndexes": [ +======= + "170739819759175": "0x1d432f8da7c", + "205352438673508": "0x7f12273017", + "208195727704637": "0x4e879d35bc", + "230656709472518": "0x19f878cfa5", + "230768252321963": "0x77a044356e", + "237606953663534": "0x1f274005aa", + "236350247713281": "0x8fd21a1b11", + "237740756156888": "0xb3ef222778", + "505208494615910": "0x60f80685b2", + "531421470867756": "0x150ba3086", + "531420470867756": "0x3b9aca00", + "545138809924718": "0x593969aea1" + }, + "plotIndexes": [ +>>>>>>> b689ac329 (feat: update reseed jsons) + "0x9b49764e4647", + "0xbac457293064", + "0xbd5a5864c23d", + "0xd1c7f33bb106", + "0xd1e1ebb480ab", + "0xd81a2e11bc2e", + "0xd6f5948eba01", + "0xd8395551c1d8", + "0x1cb7c04dbed66", + "0x1e35333ff412c", + "0x1e352f864772c", + "0x1efcd051e6c6e" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x5004Be84E3C40fAf175218a50779b333B7c84276": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "168106479315294": "0x6c05c3c47", + "282729479437291": "0x1262d5cb63" + }, + "plotIndexes": ["0x98e456fbe95e", "0x1012416307beb"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x57068722592FeD292Aa9fdfA186A156D00A87a59": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "153517294218286": "0x1a77294b3e" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x8b9f87c9ec2e" + ] +======= + "plotIndexes": ["0x8b9f87c9ec2e"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x085E98CD14e00f9FC3E9F670e1740F954124e824": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "154158293224517": "0x26381a3980", + "271915086191895": "0xc442d3a4e", + "273185381030890": "0x3190220b6" + }, + "plotIndexes": ["0x8c34c64e8c45", "0xf74e2a1f1d17", "0xf875ed981bea"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x262126FD37D04321D7f824c8984976542fCA2C36": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "153684583303762": "0x17b79b3b8a" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x8bc67afeca52" + ] +======= + "plotIndexes": ["0x8bc67afeca52"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x26f781D7f59c67BBd16acED83dB4ba90d1e47689": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "170677478669570": "0x8624b27f" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x9b3af27cbd02" + ] +======= + "plotIndexes": ["0x9b3af27cbd02"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xB3B6757364eCa9Cd74f46A587F8775b832d72D2e": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "168340296598257": "0x238e902313", + "308693409732309": "0x1201b1f020" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x991ac79482f1", + "0x118c1490816d5" + ] +======= + "plotIndexes": ["0x991ac79482f1", "0x118c1490816d5"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xd8388Ad2fF4C781903b6D9F17A60Daf4e919f2ce": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "180158456901067": "0x1cad7f093d", + "188657736324806": "0x93327c3ae", + "221757890116192": "0x481b91f39", + "231324321180518": "0x1f7a96dff", + "231457766946954": "0x1337265e7", + "231332771223909": "0x1f78c4724", + "225343185979003": "0x4327220f1", + "242180107603542": "0x51a94b44d", + "242174757473730": "0x13ee48094", + "268449221949319": "0x9b6ef4a744", + "294586560057632": "0x682b9b62f4", + "294364816047932": "0x20f90f7f8f", + "299594100999804": "0xb26af37af" + }, + "plotIndexes": [ + "0xa3da68d3adcb", + "0xab954d5b96c6", + "0xc9b008443a60", + "0xd26363fdeb66", + "0xd28275fab88a", + "0xd2655ba75965", + "0xccf2cc8d867b", + "0xdc42f3490e56", + "0xdc41b4648dc2", + "0xf4273483b787", + "0x10becc7449120", + "0x10bb9264b7f3c", + "0x1107aaff7867c" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x1904e56D521aC77B05270caefB55E18033b9b520": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "202615094361235": "0xbbfc30b25", + "220065412002903": "0x22c1148efe" + }, + "plotIndexes": ["0xb84700b9bc93", "0xc825f8b5b457"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xD1373DfB5Ff412291C06e5dFe6b25be239DBcf3E": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "181953052558212": "0x236fc07080" + }, + "plotIndexes": ["0xa57c3f104384"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x9b8dB915fA36e5d9Fb65974183172E720fDf3B52": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "202907059734614": "0x1ea70a714" + }, + "plotIndexes": ["0xb88afb37c856"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xAc4c5952231a86E8ba3107F2C5e9C5b6b303C0EE": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "204483741086104": "0x26f5e10c", + "328476823472330": "0xbc98ecaf7", + "656403459612897": "0x7208afa30" + }, + "plotIndexes": ["0xb9fa14bff198", "0x12abf786148ca", "0x254fed70a20e1"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xbFd7ddd26653A7706146895d6e314aF42f7B18D5": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "204489002275103": "0x167deeadb", + "269327679034543": "0x1afffc89bb", + "261741019824303": "0x318bc202b", + "273814984429661": "0x80d6ec6af", + "312146875547105": "0x1856730f0" + }, + "plotIndexes": [ + "0xb9fb4e57511f", + "0xf4f3bca314af", + "0xee0d548280af", + "0xf90884e1905d", + "0x11be55ba27de1" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, +<<<<<<< HEAD + "0xD1373DfB5Ff412291C06e5dFe6b25be239DBcf3E": { +======= + "0x6AB3E708231eBc450549B37f8DDF269E789ed322": { +>>>>>>> b689ac329 (feat: update reseed jsons) + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { +<<<<<<< HEAD + "181953052558212": "0x236fc07080" + }, + "plotIndexes": [ + "0xa57c3f104384" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x9b8dB915fA36e5d9Fb65974183172E720fDf3B52": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "202907059734614": "0x1ea70a714" + }, + "plotIndexes": [ + "0xb88afb37c856" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xAc4c5952231a86E8ba3107F2C5e9C5b6b303C0EE": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "204483741086104": "0x26f5e10c", + "328476823472330": "0xbc98ecaf7", + "656403459612897": "0x7208afa30" + }, + "plotIndexes": [ + "0xb9fa14bff198", + "0x12abf786148ca", + "0x254fed70a20e1" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xbFd7ddd26653A7706146895d6e314aF42f7B18D5": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "204489002275103": "0x167deeadb", + "269327679034543": "0x1afffc89bb", + "261741019824303": "0x318bc202b", + "273814984429661": "0x80d6ec6af", + "312146875547105": "0x1856730f0" + }, + "plotIndexes": [ + "0xb9fb4e57511f", + "0xf4f3bca314af", + "0xee0d548280af", + "0xf90884e1905d", + "0x11be55ba27de1" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x6AB3E708231eBc450549B37f8DDF269E789ed322": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "200867811074584": "0x32adafe6aa", + "234774888197334": "0x54dcb37000", + "239092831941854": "0x8430897d80", + "260118373627924": "0x4b4b641f40", + "254494491465844": "0x820931b100", + "446815618027105": "0x1e3fd5e00", + "446827216136839": "0x2b3f30ea4", + "463426993699329": "0x6c94b8f0d", + "464453051748379": "0x40965c93f", + "586613207988784": "0xff2577b96", + "634288124330782": "0x1c5d0c724", + "649805925059057": "0xc650da2c0", + "649502105309057": "0xc650da2c0", + "649198285559057": "0xc650da2c0", + "696501399481444": "0xc88fb391f", + "696254055525928": "0x14477e378", + "698739309824756": "0x23227119a8", + "718136155898812": "0x62875eea4", + "716905989198435": "0x81319b70e", + "720175216460971": "0x20d23da2d7", + "738009093827168": "0x12e8a80e0f", + "737010650241966": "0xd84a54b00", + "743151962222302": "0xb6c15a258", + "805417930289879": "0x1dd6878d6" + }, + "plotIndexes": [ +======= + "200867811074584": "0x32adafe6aa", + "234774888197334": "0x54dcb37000", + "239092831941854": "0x8430897d80", + "260118373627924": "0x4b4b641f40", + "254494491465844": "0x820931b100", + "446815618027105": "0x1e3fd5e00", + "446827216136839": "0x2b3f30ea4", + "463426993699329": "0x6c94b8f0d", + "464453051748379": "0x40965c93f", + "586613207988784": "0xff2577b96", + "634288124330782": "0x1c5d0c724", + "649805925059057": "0xc650da2c0", + "649502105309057": "0xc650da2c0", + "649198285559057": "0xc650da2c0", + "696501399481444": "0xc88fb391f", + "696254055525928": "0x14477e378", + "698739309824756": "0x23227119a8", + "718136155898812": "0x62875eea4", + "716905989198435": "0x81319b70e", + "720175216460971": "0x20d23da2d7", + "738009093827168": "0x12e8a80e0f", + "737010650241966": "0xd84a54b00", + "743151962222302": "0xb6c15a258", + "805417930289879": "0x1dd6878d6" + }, + "plotIndexes": [ +>>>>>>> b689ac329 (feat: update reseed jsons) + "0xb6b02e86a218", + "0xd586c9d02cd6", + "0xd9742350f4de", + "0xec9387427814", + "0xe7761dc2d874", + "0x196605e314e61", + "0x19663117e6a87", + "0x1a57c0156ba01", + "0x1a66ae72a101b", + "0x2158587e1fa30", + "0x240e1b656031e", + "0x24efebb5609f1", + "0x24eb7fe448f81", + "0x24e7141331511", + "0x27976de806c64", + "0x2793d47a72e28", + "0x27b7fec5a4af4", + "0x28d241a7903bc", + "0x28c05aed2d263", + "0x28efedbf404ab", + "0x29f3721e0ea60", + "0x29e4eaa00dbae", + "0x2a3e48cb8eede", + "0x2dc85f9a172d7" +<<<<<<< HEAD + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xF28841b27FD011475184aC5BECadd12a14667e04": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "191833111162737": "0xf552b145" + }, + "plotIndexes": [ + "0xae78a0726f71" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x9cFD5052DC827c11a6B3Ab2BB5091773765ea2c8": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "203083203411712": "0x72520cba0" + }, + "plotIndexes": [ + "0xb8b3fe32ff00" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x5ef1500" + }, + "sop": {} + }, + "0x4497aAbaa9C178dc1525827b1690a3b8f3647457": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "202722306634067": "0x274d5cdac5" + }, + "plotIndexes": [ + "0xb85ff7133153" +======= +>>>>>>> b689ac329 (feat: update reseed jsons) + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xF28841b27FD011475184aC5BECadd12a14667e04": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "191833111162737": "0xf552b145" + }, + "plotIndexes": ["0xae78a0726f71"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x9cFD5052DC827c11a6B3Ab2BB5091773765ea2c8": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "203083203411712": "0x72520cba0" + }, + "plotIndexes": ["0xb8b3fe32ff00"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x5ef1500" + }, + "sop": {} + }, + "0x4497aAbaa9C178dc1525827b1690a3b8f3647457": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "202722306634067": "0x274d5cdac5" + }, + "plotIndexes": ["0xb85ff7133153"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xae0aAF5E7135058919aB10756C6CdD574a92e557": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "204283741086104": "0x2e90edd000" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xb9cb83d22198" + ] +======= + "plotIndexes": ["0xb9cb83d22198"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x47635847a5bC731592F7EfB9a10f2461C2F5CdAb": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "200761030844889": "0x112904ba2f" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xb69751eda1d9" + ] +======= + "plotIndexes": ["0xb69751eda1d9"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x8FA1E05245660E20df4e6DfDfB32Fcd2f2E1cAcd": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "204560148294849": "0x3ff64a3cc0", + "227441220581468": "0x1039f6a5e", + "221300565354492": "0xf0203af62", + "344360197916189": "0x13e1c3bfbe", + "489666388361106": "0x2ce03daaf9" + }, + "plotIndexes": [ + "0xba0bdef96cc1", + "0xcedb4928f85c", + "0xc9458d9627fc", + "0x139319b45861d", + "0x1bd595722ff92" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xc9EA118C809C72ccb561Dd227036ce3C88D892C2": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "202915287953258": "0x1ccc1fa7fd" + }, + "plotIndexes": ["0xb88ce5a86f6a"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x0c940e42D91FE16E0f0Eccc964b26dde7808ab5d": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "204834863294849": "0xa131fd373" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xba4bd543a981" + ] +======= + "plotIndexes": ["0xba4bd543a981"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x136e6F25117aF5e5ff5d353dC41A0e91F013D461": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "205073735725117": "0x1c86eea469" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xba83732bb03d" + ] +======= + "plotIndexes": ["0xba83732bb03d"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xEd52006B09b111dAa000126598ACD95F991692D6": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "201288716074320": "0x277f368538", + "191024259399088": "0x4604d0d1ff", + "253710018355608": "0x91e114a5e4" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xb7122e6b3d50", + "0xadbc4d1ffdb0", + "0xe6bf77852198" + ] +======= + "plotIndexes": ["0xb7122e6b3d50", "0xadbc4d1ffdb0", "0xe6bf77852198"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xcEB03369b7537eB3eCa2b2951DdfD6D032c01c41": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "199315986281033": "0x42f97b6d9" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xb546de8f7249" + ] +======= + "plotIndexes": ["0xb546de8f7249"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xF352e5320291298bE60D00a015b27D3960F879FA": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "204484394734244": "0x112a17e7b", + "931280942124652": "0x84a633e9e", + "943534242598500": "0x18042bf910" + }, + "plotIndexes": ["0xb9fa3bb5d2a4", "0x34efebdbdce6c", "0x35a23af5d0e64"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xb58370b" + }, + "sop": {} + }, + "0x1dE6844C76Fa59C5e7B4566044CC1Bb9ef958714": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "220637584990881": "0x89638240", + "220709260788997": "0x112c70480" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xc8ab30e0a2a1", + "0xc8bbe1168505" + ] +======= + "plotIndexes": ["0xc8ab30e0a2a1", "0xc8bbe1168505"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x3201277a" + }, + "sop": {} + }, + "0x354F7a379e9478Ad1734f5c48e856F89E309a597": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "213213798353310": "0x2d042545d" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xc1eab4b6499e" + ] +======= + "plotIndexes": ["0xc1eab4b6499e"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x07f7cA325221752380d6CdFBcFF9B5E5E9EC058F": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "219683298748205": "0x1362cf36c3" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xc7cd00fc272d" + ] +======= + "plotIndexes": ["0xc7cd00fc272d"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x2bDB0cB25Db0012dF643041B3490d163A1809eE6": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "218546663766811": "0x13b30abc5d" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xc6c45c42bb1b" + ] +======= + "plotIndexes": ["0xc6c45c42bb1b"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x342Ba89a30Af6e785EBF651fb0EAd52752Ab1c9F": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "212188823059772": "0xa7374b4e92", + "255265354982596": "0x9be7452800", + "459187067180977": "0x1eb9395e63", + "586881787286346": "0x3a7c3244da3", + "558750219097685": "0x86d4529c86", + "635572332702096": "0x43ef59f533", + "636541607037349": "0x31bea413b6" + }, + "plotIndexes": [ + "0xc0fc0f6c7d3c", + "0xe82998cea4c4", + "0x1a1a0d20657b1", + "0x215c41074d34a", + "0x1fc2e2c53d655", + "0x2420cb71ea990", + "0x242ee645f49a5" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x8325D26d08DaBf644582D2a8da311D94DBD02A97": { +<<<<<<< HEAD +======= + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "214830162730441": "0x2902dda9f", + "293750873555124": "0x9d70e8ae" + }, + "plotIndexes": ["0xc3630b895dc9", "0x10b2a347880b4"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x8676c5" + }, + "sop": {} + }, + "0xF7cCA800424e518728F88D7FC3B67Ed6dFa0693C": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "214824040374252": "0x38453121" + }, + "plotIndexes": ["0xc3619e9d9fec"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x38Cf87B5d7B0672Ac544Ed279cbbff31Bb83b3D5": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "213264452873369": "0x16cbfb48e", + "268381273591215": "0x42ec0a2a8" + }, + "plotIndexes": ["0xc1f67ff4ec99", "0xf417627a0daf"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x9eB97e6aee08EF7AC5F6b523886E10bb1Cd8DE9d": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "212907010280398": "0x2fabb322cf", + "491199224234272": "0x666e3aa0" + }, + "plotIndexes": ["0xc1a346b7cbce", "0x1bebe3b464120"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x54CE05973cFadd3bbACf46497C08Fc6DAe156521": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "211486572900138": "0xc3e287e0" + }, + "plotIndexes": ["0xc0588e0d6f2a"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xa9bc" + }, + "sop": {} + }, + "0x6a12c8594c5C850d57612CA58810ABb8aeBbC04B": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "217940532047787": "0x19d0f6880", + "217947462047787": "0x6b9d444e00", + "491200942734272": "0x6675dbc0", + "491202661734272": "0x3d87a5e0" + }, + "plotIndexes": ["0xc6373bfeafab", "0xc638d90e182b", "0x1bebea1b47bc0", "0x1bebf082a5780"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xb69D09d54bF5a489Ca9F0d8E0D50d2c958aE55C5": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "219661298748205": "0x51f4d5c00" + }, + "plotIndexes": ["0xc7c7e1aecb2d"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x17FA401eBAd908CC02bd2Cb2DC37A71c872B47e5": { +>>>>>>> b689ac329 (feat: update reseed jsons) + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "220639889990881": "0x1026d26024", + "401536968546834": "0xd7d3ac544" + }, + "plotIndexes": ["0xc8abba4424e1", "0x16d321c5fda12"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x54Af3F7c7dBb94293f94EE15dBFD819C572B9235": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "217546047951373": "0x5bd9159d9e", + "242397324583886": "0x50d008dee1" + }, + "plotIndexes": ["0xc5db62e9120d", "0xdc75866d23ce"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x533ac5848d57672399a281b65A834d88B0b2dF45": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "214901535169245": "0x1341f8255", + "231673913235551": "0x7fa261d23" + }, + "plotIndexes": ["0xc373a9aa5add", "0xd2b4c94d585f"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x73C28f0571ee437171E421c80a55Bdcc6c07cc5C": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "218677718578589": "0x111cfc387" + }, + "plotIndexes": ["0xc6e2dfbc759d"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x406874Ac226662369d23B4a2B76313f3Cb8da983": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "214361103094275": "0x6bc9364de9", + "399147164949892": "0x53285b61bc" + }, + "plotIndexes": ["0xc2f5d5675203", "0x16b05b0fadd84"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x328e124cE7F35d9aCe181B2e2B4071f51779B363": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "220813692513983": "0xbe6489369" + }, + "plotIndexes": ["0xc8d431b42ebf"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xF7cCA800424e518728F88D7FC3B67Ed6dFa0693C": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "214824040374252": "0x38453121" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xc3619e9d9fec" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x38Cf87B5d7B0672Ac544Ed279cbbff31Bb83b3D5": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "213264452873369": "0x16cbfb48e", + "268381273591215": "0x42ec0a2a8" + }, + "plotIndexes": [ + "0xc1f67ff4ec99", + "0xf417627a0daf" + ] +======= + "plotIndexes": ["0xce59a66dd76b"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x9eB97e6aee08EF7AC5F6b523886E10bb1Cd8DE9d": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", +<<<<<<< HEAD + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "212907010280398": "0x2fabb322cf", + "491199224234272": "0x666e3aa0" + }, + "plotIndexes": [ + "0xc1a346b7cbce", + "0x1bebe3b464120" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x54CE05973cFadd3bbACf46497C08Fc6DAe156521": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "211486572900138": "0xc3e287e0" + }, + "plotIndexes": [ + "0xc0588e0d6f2a" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xa9bc" + }, + "sop": {} + }, + "0x6a12c8594c5C850d57612CA58810ABb8aeBbC04B": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", +======= +>>>>>>> b689ac329 (feat: update reseed jsons) + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { +<<<<<<< HEAD + "217940532047787": "0x19d0f6880", + "217947462047787": "0x6b9d444e00", + "491200942734272": "0x6675dbc0", + "491202661734272": "0x3d87a5e0" + }, + "plotIndexes": [ + "0xc6373bfeafab", + "0xc638d90e182b", + "0x1bebea1b47bc0", + "0x1bebf082a5780" + ] +======= + "221709363811083": "0xb4c64a755", + "298041802666608": "0x16795fb556", + "326781576518052": "0x91352082d", + "326873031171634": "0x11ac6b2c28" + }, + "plotIndexes": ["0xc9a4bbdf930b", "0x10f1143c6b270", "0x12934c3c999a4", "0x1294a0ee8de32"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, +<<<<<<< HEAD + "0xb69D09d54bF5a489Ca9F0d8E0D50d2c958aE55C5": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "219661298748205": "0x51f4d5c00" + }, + "plotIndexes": [ + "0xc7c7e1aecb2d" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x17FA401eBAd908CC02bd2Cb2DC37A71c872B47e5": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "220639889990881": "0x1026d26024", + "401536968546834": "0xd7d3ac544" + }, + "plotIndexes": [ + "0xc8abba4424e1", + "0x16d321c5fda12" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x54Af3F7c7dBb94293f94EE15dBFD819C572B9235": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "217546047951373": "0x5bd9159d9e", + "242397324583886": "0x50d008dee1" + }, + "plotIndexes": [ + "0xc5db62e9120d", + "0xdc75866d23ce" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x533ac5848d57672399a281b65A834d88B0b2dF45": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "214901535169245": "0x1341f8255", + "231673913235551": "0x7fa261d23" + }, + "plotIndexes": [ + "0xc373a9aa5add", + "0xd2b4c94d585f" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x73C28f0571ee437171E421c80a55Bdcc6c07cc5C": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "218677718578589": "0x111cfc387" + }, + "plotIndexes": [ + "0xc6e2dfbc759d" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x406874Ac226662369d23B4a2B76313f3Cb8da983": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "214361103094275": "0x6bc9364de9", + "399147164949892": "0x53285b61bc" + }, + "plotIndexes": [ + "0xc2f5d5675203", + "0x16b05b0fadd84" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x328e124cE7F35d9aCe181B2e2B4071f51779B363": { +======= + "0xaaEB726768606079484aa6b3715efEEC7E901D13": { +>>>>>>> b689ac329 (feat: update reseed jsons) + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "225361212188524": "0xc2fe150bd" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xc8d431b42ebf" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x058107C8b15Dd30eFF1c1d01Cf15bd68e6BEf26F": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "226884439627627": "0x1a0f759d3" + }, + "plotIndexes": [ + "0xce59a66dd76b" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x5234e3A15a9b0F86C6E77c400dc4706A3DFC0A04": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "221709363811083": "0xb4c64a755", + "298041802666608": "0x16795fb556", + "326781576518052": "0x91352082d", + "326873031171634": "0x11ac6b2c28" + }, + "plotIndexes": [ + "0xc9a4bbdf930b", + "0x10f1143c6b270", + "0x12934c3c999a4", + "0x1294a0ee8de32" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xaaEB726768606079484aa6b3715efEEC7E901D13": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "225361212188524": "0xc2fe150bd" + }, + "plotIndexes": [ + "0xccf6feffa76c" + ] +======= + "plotIndexes": ["0xccf6feffa76c"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xE8c22A092593061D49d3Fbc2B5Ab733E82a66352": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "244563066566020": "0x4f0bf445bc", + "239866879581854": "0x10479b4", + "240817882040757": "0x1470d849a", + "285823716873404": "0x3fd0c5405", + "399108141891711": "0x915f49d05", + "456632495406880": "0xd800273a", + "583979473591721": "0xcc957739e" + }, + "plotIndexes": [ + "0xde6dc6b53584", + "0xda285c269e9e", + "0xdb05c85089b5", + "0x103f4851cd4bc", + "0x16afc9b06407f", + "0x19f4e09ae7f20", + "0x2132051145da9" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x7bE74966867b552dd2CE1F09E71b1CA92C321Af0": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "236273309536157": "0x6b4abed5" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xd6e3aaaf4f9d" + ] +======= + "plotIndexes": ["0xd6e3aaaf4f9d"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x7310E238f2260ff111a941059B023B3eBCF2D54e": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "235227898442395": "0xcc029ae79", + "251906258747456": "0x8b101e0de" + }, + "plotIndexes": ["0xd5f04353f29b", "0xe51b7f11c040"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xc59821CBF1A4590cF659E2BA74de9Bbf7612E538": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "238513567295824": "0x32dacf8d40" + }, + "plotIndexes": ["0xd8ed4473e950"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xc59821CBF1A4590cF659E2BA74de9Bbf7612E538": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "238513567295824": "0x32dacf8d40" + }, + "plotIndexes": [ + "0xd8ed4473e950" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x18637e9C1f3bBf5D4492D541CE67Dcf39f1609A2": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "239660581941854": "0x30084c2c40", + "238754484412650": "0x4ec71593f4" + }, + "plotIndexes": ["0xd9f853da725e", "0xd9255c3b60ea"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x15666e84" + }, + "sop": {} + }, + "0xc4c89a41Ad3050Bb82deE573833f76f2c449353e": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", +<<<<<<< HEAD + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "240640507285101": "0x294c5bfb48", + "249896870521632": "0x9b961b734" + }, + "plotIndexes": [ + "0xdadc7bf48e6d", + "0xe347a632ab20" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xE3faBA780BDe12D3DFEB226A120aA4271f1D72B2": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "241976256153648": "0x1cb410cf9e", + "243781055572115": "0x10a300e398", + "269116803407563": "0x52c8e4f7", + "279505824996797": "0x5182d9aa7", + "355680382750323": "0x1d730088d2", + "400152023455338": "0x61184d0f9", + "445628453536239": "0xeaf2fbb09" + }, + "plotIndexes": [ + "0xdc137ccac830", + "0xddb7b3386893", + "0xf4c2a3785ecb", + "0xfe3585695dbd", + "0x1437d4ade0e73", + "0x16befa736d66a", + "0x1954bf5acc1ef" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xE67ae530c6578bCD59230EDac111Dd18eE47b344": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", +======= +>>>>>>> b689ac329 (feat: update reseed jsons) + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "240640507285101": "0x294c5bfb48", + "249896870521632": "0x9b961b734" + }, + "plotIndexes": ["0xdadc7bf48e6d", "0xe347a632ab20"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x2AdC396D8092D79Db0fA8a18fa7e3451Dc1dFB37": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { +<<<<<<< HEAD + "248282655499019": "0x9d82eabb8" + }, + "plotIndexes": [ + "0xe1cfcf7c230b" +======= + "241976256153648": "0x1cb410cf9e", + "243781055572115": "0x10a300e398", + "269116803407563": "0x52c8e4f7", + "279505824996797": "0x5182d9aa7", + "355680382750323": "0x1d730088d2", + "400152023455338": "0x61184d0f9", + "445628453536239": "0xeaf2fbb09" + }, + "plotIndexes": [ + "0xdc137ccac830", + "0xddb7b3386893", + "0xf4c2a3785ecb", + "0xfe3585695dbd", + "0x1437d4ade0e73", + "0x16befa736d66a", + "0x1954bf5acc1ef" +>>>>>>> b689ac329 (feat: update reseed jsons) + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xE67ae530c6578bCD59230EDac111Dd18eE47b344": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "243852509793323": "0x4cc4cee9a" + }, + "plotIndexes": ["0xddc856394c2b"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x2AdC396D8092D79Db0fA8a18fa7e3451Dc1dFB37": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "248282655499019": "0x9d82eabb8" + }, + "plotIndexes": ["0xe1cfcf7c230b"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x427Dfd9661eaF494be14CAf5e84501DDF3d42d31": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "241011518848871": "0x2908a64cd2" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xdb32ddf7bf67" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x2Efc14A5276bB2b6E32B913fFa8CEDa02552750F": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "245155440103610": "0x1f583032c5" + }, + "plotIndexes": [ + "0xdef7b2ec10ba" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x3572F1b678f48C6a2145F5e5fF94159F3C99b01e": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "235887412728787": "0xa6c3bb445" + }, + "plotIndexes": [ + "0xd689d17153d3" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xf4240" + }, + "sop": {} + }, + "0x2Ac6f4E13a2023bad7D429995Bf07C6ecC1AC05C": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "247377186269264": "0x5fc8dfc0", + "695624119694114": "0x5d0af840" + }, + "plotIndexes": [ + "0xe0fcfd502850", + "0x278aa9c8d3322" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x7125B7C60Ec85F9aD33742D9362f6161d403EC92": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "246922293237268": "0x3025626784" + }, + "plotIndexes": [ + "0xe09313935614" + ] +======= + "plotIndexes": ["0xdb32ddf7bf67"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x8709DD5FE0F07219D8d4cd60735B58E2C3009073": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", +<<<<<<< HEAD + "lastSop": "0x42b", +======= + "lastSop": "0x0", +>>>>>>> b689ac329 (feat: update reseed jsons) + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "234615417572537": "0x252130a01d", + "251943588176158": "0x6ea118de6" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xd561a89f8cb9", + "0xe5243013a11e" + ] +======= + "plotIndexes": ["0xdef7b2ec10ba"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x3572F1b678f48C6a2145F5e5fF94159F3C99b01e": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "235887412728787": "0xa6c3bb445" + }, + "plotIndexes": ["0xd689d17153d3"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xf4240" + }, + "sop": {} + }, + "0x2Ac6f4E13a2023bad7D429995Bf07C6ecC1AC05C": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "247377186269264": "0x5fc8dfc0", + "695624119694114": "0x5d0af840" + }, + "plotIndexes": ["0xe0fcfd502850", "0x278aa9c8d3322"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x7125B7C60Ec85F9aD33742D9362f6161d403EC92": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "246922293237268": "0x3025626784" + }, + "plotIndexes": ["0xe09313935614"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x8709DD5FE0F07219D8d4cd60735B58E2C3009073": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "234615417572537": "0x252130a01d", + "251943588176158": "0x6ea118de6" + }, + "plotIndexes": ["0xd561a89f8cb9", "0xe5243013a11e"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xC21a7Fe78A0Fb9DF4Da21F2Ce78c76BdAe63e611": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "247378793269264": "0x38fc788f3d", + "250829898506136": "0x64a0644164" + }, + "plotIndexes": ["0xe0fd5d190810", "0xe420e2ffdf98"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x4067ed1c0" + }, + "sop": {} + }, + "0x8A17B7aF6d76f7348deb9C324AbF98f873b6691A": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "246309595703075": "0x34f88da75e" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xe0046bf4e723" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x06E6932ed7D7De9bcF5bD7a11723Dc698D813F7e": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "241189075365295": "0x294181315", + "274351454205287": "0x19fff9658", + "325771315526926": "0x35968bc7b" + }, + "plotIndexes": [ + "0xdb5c35292daf", + "0xf9856cf8b567", + "0x128498b8a3d0e" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x9e1e2beD5271a08a8E2Acc8d5ECF99eC5382cf7A": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "250526151093083": "0x1161de86fa", + "695628520661609": "0x21647f8700" + }, + "plotIndexes": [ + "0xe3da2a3e2b5b", + "0x278aba2dea269" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xD5351308c8Cb15ca93a8159325bFb392DC1e52aC": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "256758104204461": "0x3a202e2c0", + "256710058517324": "0x74405c580" + }, + "plotIndexes": [ + "0xe985279824ad", + "0xe979f7d9234c" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x6fBDc235B6f55755BE1c0B554469633108E60608": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "253030586999657": "0x3d0076e167" + }, + "plotIndexes": [ + "0xe62146416369" + ] +======= + "plotIndexes": ["0xe0046bf4e723"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x06E6932ed7D7De9bcF5bD7a11723Dc698D813F7e": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { +<<<<<<< HEAD + "250043585667303": "0x87b5aecf5", + "250401077762813": "0xf1e422c65" + }, + "plotIndexes": [ + "0xe369cf1a20e7", + "0xe3bd0b4a9afd" + ] +======= + "241189075365295": "0x294181315", + "274351454205287": "0x19fff9658", + "325771315526926": "0x35968bc7b" + }, + "plotIndexes": ["0xdb5c35292daf", "0xf9856cf8b567", "0x128498b8a3d0e"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x9e1e2beD5271a08a8E2Acc8d5ECF99eC5382cf7A": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "250526151093083": "0x1161de86fa", + "695628520661609": "0x21647f8700" + }, + "plotIndexes": ["0xe3da2a3e2b5b", "0x278aba2dea269"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xD5351308c8Cb15ca93a8159325bFb392DC1e52aC": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "256758104204461": "0x3a202e2c0", + "256710058517324": "0x74405c580" + }, + "plotIndexes": ["0xe985279824ad", "0xe979f7d9234c"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x6fBDc235B6f55755BE1c0B554469633108E60608": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "253030586999657": "0x3d0076e167" + }, + "plotIndexes": ["0xe62146416369"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xbf9Db3564c22fd22FF30A8dB7f689D654Bf5F1fD": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "250043585667303": "0x87b5aecf5", + "250401077762813": "0xf1e422c65" + }, + "plotIndexes": ["0xe369cf1a20e7", "0xe3bd0b4a9afd"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xB817bCfa60f2a4c9cE7E900cc1a0B1bd5f45bb70": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "252279493675340": "0x4c44f10af3" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xe572659ac94c" + ] +======= + "plotIndexes": ["0xe572659ac94c"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xF4B2300e02977720D590353725e4a73a67250bf3": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "252622959858488": "0x408eab8f41" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xe5c25dc8d338" + ] +======= + "plotIndexes": ["0xe5c25dc8d338"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x5d9f8ecA4a1d3eEB7B78002EF0D2Bb53ADF259ee": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "260693811733759": "0x54677828a" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xed19820b24ff" + ] +======= + "plotIndexes": ["0xed19820b24ff"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x11F3BAcAa1e4DEeB728A1c37f99694A8e026cF7D": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "252085742270225": "0x8aa575427", + "693534396400586": "0x513074af", + "695910518553961": "0x2f7d1394" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xe545491ef711", + "0x276c40f5643ca", + "0x278ed4b40fd69" + ] +======= + "plotIndexes": ["0xe545491ef711", "0x276c40f5643ca", "0x278ed4b40fd69"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x325b8" + }, + "sop": {} + }, + "0x6C8513a6C51C5F83C4E4DC53E0fabA45112c0E09": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "248455141384543": "0x3a58afdd2d" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xe1f7f871e15f" + ] +======= + "plotIndexes": ["0xe1f7f871e15f"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x0846Bf78c84C11D58Bb2320Fc8807C1983A2797C": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "259218447065702": "0xa69ae8e5b", + "260052583934374": "0xb1b4d14aa" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xebc1ff74e266", + "0xec8435e369a6" + ] +======= + "plotIndexes": ["0xebc1ff74e266", "0xec8435e369a6"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x567dA563057BE92a42B0c14a765bFB1a3dD250be": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "259263169786049": "0xa66e2272f" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xebcc692370c1" + ] +======= + "plotIndexes": ["0xebcc692370c1"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x3638570931B30FbBa478535A94D3f2ec1Cd802cB": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "258890580795053": "0x4c565a43b9", + "266899609550289": "0x13f2c8900f" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xeb75a91a9ead", + "0xf2be686afdd1" + ] +======= + "plotIndexes": ["0xeb75a91a9ead", "0xf2be686afdd1"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x6CC9b3940EB6d94cad1A25c437d9bE966Af821E3": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "256776481524757": "0xc09838a659" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xe9896ef7cc15" + ] +======= + "plotIndexes": ["0xe9896ef7cc15"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x0A7ED639830269B08eE845776E9b7a9EFD178574": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "255934954982596": "0x2a572cb9f" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xe8c58013ccc4" + ] +======= + "plotIndexes": ["0xe8c58013ccc4"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x09DaDF51d403684A67886DB545AE1703d7856056": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "249945795286716": "0x16c4c2ca2b" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xe3530a5756bc" + ] +======= + "plotIndexes": ["0xe3530a5756bc"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xB8eCEcF183e45D6EB8A06E2F27354d1c3940aA76": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "260441761027924": "0x4e4762341" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xecded2a69754" + ] +======= + "plotIndexes": ["0xecded2a69754"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x7eFaC69750cc933e7830829474F86149A7DD8e35": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "261973680486751": "0x29cec07ce7", + "261973679486751": "0xf4240", + "271999469298681": "0x4438dab0a1" + }, + "plotIndexes": ["0xee43802a795f", "0xee43801b371f", "0xf761cfbf23f9"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x09147d29d27E0c8122fC0b66Ff6Ca060Cda40aDc": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "263444366219049": "0x1256f2be7b", + "340340310399004": "0x2d3a5b1dce" + }, + "plotIndexes": ["0xef99ebddd729", "0x13589a74dd81c"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x15682A522C149029F90108e2792A114E94AB4187": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "262244417024534": "0x2515b8b98", + "262254371913134": "0x4a87e2370" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xee8289523216", + "0xee84daadbdae" + ] +======= + "plotIndexes": ["0xee8289523216", "0xee84daadbdae"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x61C562283B268F982ffa1334B643118eACF54480": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "266885888878451": "0x331d0d65e" + }, + "plotIndexes": ["0xf2bb369a2773"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x27553635B0EA3E0d4b551c61Ea89c9c1b81e266f": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "262570166065123": "0x3aed7b847" + }, + "plotIndexes": ["0xeece617a17e3"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x9B6425F32361eE115C7A2170349a8f5a3A51b0F0": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "262389497183414": "0xf5ebb46c3" + }, + "plotIndexes": ["0xeea450c5bcb6"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xB5030cAc364bE50104803A49C30CCfA0d6A48629": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "271716973263145": "0x2e207363ee" + }, + "plotIndexes": ["0xf72009abb929"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x27553635B0EA3E0d4b551c61Ea89c9c1b81e266f": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206550,10 +218280,10 @@ "fields": { "0": { "plots": { - "137255763505128": "0x23d0ee19a" + "262570166065123": "0x3aed7b847" }, "plotIndexes": [ - "0x7cd55906efe8" + "0xeece617a17e3" ] } }, @@ -206565,7 +218295,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x6Ac3BDBB58D671f81563998dd9ca561d527E5F43": { + "0x9B6425F32361eE115C7A2170349a8f5a3A51b0F0": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206578,12 +218308,10 @@ "fields": { "0": { "plots": { - "128468620580196": "0x912778903", - "887473260643431": "0x42667a9be8" + "262389497183414": "0xf5ebb46c3" }, "plotIndexes": [ - "0x74d76e7e9564", - "0x32726f872c467" + "0xeea450c5bcb6" ] } }, @@ -206592,12 +218320,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x386f4e50" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x93E4c75ff6e0C7BC4Bcfc7CA2F19e6733d6009Eb": { + "0xB5030cAc364bE50104803A49C30CCfA0d6A48629": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206610,12 +218336,10 @@ "fields": { "0": { "plots": { - "137266188068234": "0x76a780b9", - "704198943665924": "0x190089fcc" + "271716973263145": "0x2e207363ee" }, "plotIndexes": [ - "0x7cd7c661258a", - "0x2807717e36f04" + "0xf72009abb929" ] } }, @@ -206627,7 +218351,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x084a35aE3B2F2513FF92fab6ad2954A1DF418093": { + "0x7c9551322a2e259830A7357e436107565EA79205": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206640,14 +218364,20 @@ "fields": { "0": { "plots": { - "134838782590422": "0x189726cf73", - "134830609083484": "0x1e72dd17a", - "202891108289560": "0x3b6c7bc3e" + "270707790419553": "0xa62875b42", + "334808594828075": "0x4c60f72ce", + "491177308591557": "0x51a462b5b", + "625298680160271": "0x3aeaf49280", + "643112195637173": "0x1aad800d00", + "712108719670625": "0x1d57d0a767" }, "plotIndexes": [ - "0x7aa299bcfdd6", - "0x7aa0b28f2c5c", - "0xb88744700c18" + "0xf63511af9661", + "0x13081b35ccb2b", + "0x1beb9210015c5", + "0x238b4b1b5a00f", + "0x248e839f8bfb5", + "0x287a8bb470561" ] } }, @@ -206659,7 +218389,39 @@ "internalTokenBalance": {}, "sop": {} }, - "0x84649973923f8d3565E8520171618588508983aF": { + "0x953Ba402AE27a6561e09edFDF12A2F5D4e7e9C95": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "264546765360408": "0xa88282fea" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0xf09a97f9cd18" + ] +======= + "plotIndexes": ["0xf09a97f9cd18"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x925D19C24fa0b14e4eFfBE6349E387f0751f8f36": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206672,10 +218434,37 @@ "fields": { "0": { "plots": { - "137249097505128": "0x18d531680" + "262220837330704": "0x41a7c3dbe" + }, + "plotIndexes": ["0xee7d0bdc9f10"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xCfCF5A55708Cd1Ae90fdcad70C7445073eB04d94": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "272383450599356": "0x111c2e99f3" }, +<<<<<<< HEAD "plotIndexes": [ - "0x7cd3cbb3d968" + "0xf7bb36d0cfbc" ] } }, @@ -206687,7 +218476,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xE48436022460c33e32FC98391CD6442d55CD1c69": { + "0x59b9540ee2A8b2ab527a5312Ab622582b884749B": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206700,10 +218489,10 @@ "fields": { "0": { "plots": { - "137265377825154": "0x304b5408" + "274578680043801": "0x35a4e900" }, "plotIndexes": [ - "0x7cd79615d182" + "0xf9ba54afd919" ] } }, @@ -206715,7 +218504,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xFA2a3c48b85D6790B943F645Abf35A1E12770D09": { + "0xde8351633c96Ac16860a78D90D3311fa390182BF": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206728,10 +218517,10 @@ "fields": { "0": { "plots": { - "134129454761560": "0xe5afb9145" + "277537073969119": "0x13ee50c261" }, "plotIndexes": [ - "0x79fd72814658" + "0xfc6b22b4b7df" ] } }, @@ -206743,7 +218532,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x411bbd5BAf8eb2447611FF3Ac6E187fBBE0573A7": { + "0xD49946B3dA0428fE4E69c5F4D6c4125e5D0bf942": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206756,22 +218545,12 @@ "fields": { "0": { "plots": { - "136815080964510": "0xed3efc0ee", - "204505988395558": "0x91e12b51b", - "625573606332771": "0x6617bebb8", - "627237168988540": "0x330bdf5dc", - "630912951848778": "0x330bdf5dc", - "630199893153378": "0x330bdf5dc", - "633544834937816": "0x330bdf5dc" + "277622676617792": "0x14fd0f2e8a", + "277712821594314": "0x18330ebf32" }, "plotIndexes": [ - "0x7c6ebe4d019e", - "0xb9ff42caf226", - "0x238f4b4961963", - "0x23a7808a5c17c", - "0x23dcfde610f4a", - "0x23d29d8c4d662", - "0x24034a6d5f3d8" + "0xfc7f11057a40", + "0xfc940e14a8ca" ] } }, @@ -206780,12 +218559,38 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x9bf49f20" + "internalTokenBalance": {}, + "sop": {} + }, + "0xcD26f79e60fd260c867EEbAeAB45e021bAeCe92D": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "274579580043801": "0x1a8f65e31" + }, + "plotIndexes": [ + "0xf9ba8a54c219" + ] + } }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, "sop": {} }, - "0x9B1AC8E6d08053C55713d9aA8fDE1c53e9a929e2": { + "0x80771B6DC16d2c8C291e84C8f6D820150567534C": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206798,14 +218603,12 @@ "fields": { "0": { "plots": { - "128790521677597": "0x1bf08eb00", - "388736379371138": "0x338275a03e", - "387786058520473": "0x551af8ec15" + "274586709729354": "0x351cf5dd9", + "274600967175715": "0x2b79fc238d" }, "plotIndexes": [ - "0x7522614b871d", - "0x1618dbdcdbe82", - "0x160b07a445799" + "0xf9bc334b204a", + "0xf9bf851a7e23" ] } }, @@ -206817,7 +218620,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF074d66B602DaE945d261673B10C5d6197Ae5175": { + "0xDB2480a43C79126F93Bd5a825dc0CBa46d7C0612": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206830,14 +218633,44 @@ "fields": { "0": { "plots": { - "145260774599348": "0x15c6ddc7b9", - "145952084202661": "0x2a5d4b4d86", - "145354305335917": "0x2b538b066b" + "273275462311532": "0x1c99dd", + "376596837312302": "0x20b464" }, "plotIndexes": [ - "0x841d28deaab4", - "0x84be1e2214a5", - "0x8432efbc726d" + "0xf88ae6db5e6c", + "0x1568348b6272e" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xf2eb8" + }, + "sop": {} + }, + "0x0A0761a91009101a86B7a0D786dBbA744cE2E240": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "277532421339407": "0x115517ed0", + "278185787491171": "0x14e6fef49" + }, + "plotIndexes": [ + "0xfc6a0d63390f", + "0xfd022d0b8363" ] } }, @@ -206849,7 +218682,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x433770F8B8fA5272aa9d1Fe899FBEdD68e386569": { + "0x0F0520237DB57A05728fa0880F8f08A1fd57ccff": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206862,10 +218695,10 @@ "fields": { "0": { "plots": { - "137531094651758": "0x53e129f77" + "276395162620514": "0x259e55b10" }, "plotIndexes": [ - "0x7d15740ad36e" + "0xfb61437c5262" ] } }, @@ -206877,7 +218710,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x1B89a08D82079337740e1cef68c571069725306e": { + "0x368a5564F46Bd896C8b365A2Dd45536252008372": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206890,11 +218723,14 @@ "fields": { "0": { "plots": { - "148148500497930": "0x6d98b52bb" + "273379926066013": "0x2b56a3043c" }, "plotIndexes": [ - "0x86bd82bf060a" + "0xf8a33961c35d" ] +======= + "plotIndexes": ["0xf7bb36d0cfbc"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -206905,7 +218741,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xE3546C83C06A298148214C8a25B4081d72a704B4": { + "0xD0126092d4292F8DC755E6d8eEE8106fbf84583D": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206918,11 +218754,17 @@ "fields": { "0": { "plots": { - "145540390549720": "0x9622f36ba" + "276405260758386": "0x2603916394", + "285840847218881": "0x122dcec3e6" }, +<<<<<<< HEAD "plotIndexes": [ - "0x845e434778d8" + "0xfb639d61ad72", + "0x103f8822928c1" ] +======= + "plotIndexes": ["0xf9ba54afd919"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -206933,7 +218775,11 @@ "internalTokenBalance": {}, "sop": {} }, - "0x4932Ad7cde36e2aD8724f86648dF772D0413c39E": { +<<<<<<< HEAD + "0x0B7021897485cC2Db909866D78A1D82657A4be6F": { +======= + "0xde8351633c96Ac16860a78D90D3311fa390182BF": { +>>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206946,11 +218792,18 @@ "fields": { "0": { "plots": { - "144258485938657": "0x789af507d9" +<<<<<<< HEAD + "273335862185061": "0xa426976f8", + "318810216692840": "0x918f92667" }, "plotIndexes": [ - "0x8333cbcf69e1" + "0xf898f6f84c65", + "0x121f4c9b77c68" ] +======= + "277537073969119": "0x13ee50c261" + }, + "plotIndexes": ["0xfc6b22b4b7df"] } }, "depositAllowances": {}, @@ -206961,7 +218814,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xdF02A9ba6C6A5118CF259f01eD7A023A4599a945": { + "0xD49946B3dA0428fE4E69c5F4D6c4125e5D0bf942": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -206974,19 +218827,78 @@ "fields": { "0": { "plots": { - "139975732251488": "0x5cac381568", - "181407955635376": "0x7eea4ef6d4", - "232388914759088": "0x38b3cc31cd", - "231851733041965": "0x33471466a0", - "241282142603223": "0x4ea7c91709" + "277622676617792": "0x14fd0f2e8a", + "277712821594314": "0x18330ebf32" + }, + "plotIndexes": ["0xfc7f11057a40", "0xfc940e14a8ca"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xcD26f79e60fd260c867EEbAeAB45e021bAeCe92D": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "274579580043801": "0x1a8f65e31" + }, + "plotIndexes": ["0xf9ba8a54c219"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xEF64581Af57dFEc2722e618d4Dd5f3c9934C17De": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", +<<<<<<< HEAD + "lastSop": "0x0", +======= + "lastSop": "0x42b", +>>>>>>> b689ac329 (feat: update reseed jsons) + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { +<<<<<<< HEAD + "273653841644570": "0xf93c297b8", + "386540379495873": "0xaa335ec15" }, "plotIndexes": [ - "0x7f4ea3cc4b60", - "0xa4fd54c14cb0", - "0xd35b42b6c5b0", - "0xd2de3030432d", - "0xdb71e06687d7" + "0xf8e30005cc1a", + "0x15f8e7202ddc1" ] +======= + "274586709729354": "0x351cf5dd9", + "274600967175715": "0x2b79fc238d" + }, + "plotIndexes": ["0xf9bc334b204a", "0xf9bf851a7e23"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -206997,7 +218909,11 @@ "internalTokenBalance": {}, "sop": {} }, - "0x6384F5369d601992309c3102ac7670c62D33c239": { +<<<<<<< HEAD + "0x17536a82E8721E8DC61Ab12a08c4BfE3fd7fD2C7": { +======= + "0xDB2480a43C79126F93Bd5a825dc0CBa46d7C0612": { +>>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207010,14 +218926,17 @@ "fields": { "0": { "plots": { - "147555339912491": "0x15d466ade0", - "201794323874481": "0x54f6e887c1", - "181331243759377": "0x11dc62559f" +<<<<<<< HEAD + "284761889788419": "0xc81347526", + "283862931443313": "0x3394c08e9", + "322288771602655": "0xb297bc7d64", + "335611264683963": "0x325142938f3" }, "plotIndexes": [ - "0x8633679ec52b", - "0xb787e6fe02b1", - "0xa4eb785ef711" + "0x102fd4b495203", + "0x1022bfd318e71", + "0x1251eb3bf18df", + "0x1313c9636cfbb" ] } }, @@ -207029,7 +218948,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x3d860D1e938Ea003d12b9FC756Be12dBe1d5C4f5": { + "0x019285701d4502df31141dF600A472c61c054e63": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207042,12 +218961,12 @@ "fields": { "0": { "plots": { - "141610787263306": "0x21fd7f31eab", - "191837226999990": "0x4694f486ecf" + "285400078671087": "0x18d5500481", + "295033968260116": "0x17c29d2b57" }, "plotIndexes": [ - "0x80cb54abd34a", - "0xae7995c520b6" + "0x10391e24edcef", + "0x10c54f2dff414" ] } }, @@ -207059,7 +218978,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8496e1b0aAd23e70Ef76F390518Cf2b4CC4a4849": { + "0x110dfBb05F447880B9B29206c1140C07372090dc": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207072,14 +218991,10 @@ "fields": { "0": { "plots": { - "145580692516754": "0x15689adb0", - "705687548615966": "0x191bc3d00", - "705712512774884": "0x178833fad" + "282823933037116": "0x60da74f02" }, "plotIndexes": [ - "0x8467a576af92", - "0x281d1afa85d1e", - "0x281d77fa332e4" + "0x1013a14100a3c" ] } }, @@ -207091,7 +219006,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x0c492D61651965E3096740306F8345516fCd8990": { + "0x6039675c6D83B0B26F647AE3d33F7C34B8Ea945a": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207104,14 +219019,10 @@ "fields": { "0": { "plots": { - "147484814729971": "0x106ba0e238", - "180281626769160": "0xb6f2c120d6", - "200410780844889": "0x518c86de80" + "289487146073469": "0x8bbf6ca8a" }, "plotIndexes": [ - "0x8622fbfde2f3", - "0xa3f71652b708", - "0xb645c566c359" + "0x107497a823d7d" ] } }, @@ -207123,7 +219034,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xCd3F4c42552F24d5d8b1f508F8b8d138b01af53F": { + "0x97Ada2E26C06C263c68ECCe43756708d0f03D94A": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207136,10 +219047,10 @@ "fields": { "0": { "plots": { - "148432137965500": "0xc1d91e994" + "281369121491336": "0x1866644d90" }, "plotIndexes": [ - "0x86ff8cdb4fbc" + "0xffe75a898988" ] } }, @@ -207151,7 +219062,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x3E24c27F8fDCfC1f3E7E8683D9df0691AcE251C6": { + "0xF8444CF11708d3901Ee7B981b204eD0c7130fB93": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207164,10 +219075,18 @@ "fields": { "0": { "plots": { - "148618311892836": "0x156fa17ab6" + "286712631781524": "0xdf1071dc9b", + "285918925155495": "0xb8cc99fbed", + "287670685386031": "0x91693e6f4f", + "327268162978532": "0x70b04663e0", + "368431939737151": "0xe9f06c9179" }, "plotIndexes": [ - "0x872ae5afff64" + "0x104c37c91e894", + "0x1040aaff7eca7", + "0x105a28d03c52f", + "0x129a60e99c2e4", + "0x14f163ee4563f" ] } }, @@ -207179,7 +219098,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x921Ed81DeE5099d700D447a5Acb33fC65Ba6bf96": { + "0x651afE5D50d1cD8F7D891dd6bc2a3Db4A14E5287": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207192,10 +219111,10 @@ "fields": { "0": { "plots": { - "145586649191784": "0x7ed23ea2a" + "280705451279893": "0x1210ed74ef" }, "plotIndexes": [ - "0x846908825568" + "0xff4cd4b5c615" ] } }, @@ -207207,25 +219126,25 @@ "internalTokenBalance": {}, "sop": {} }, - "0x94Ff138F71b8B4214e70d3bf6CcF73b3eb4581cB": { + "0x79645bfB4Ef32902F4ee436A23E4A10A50789e54": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "144776481763770": "0x45f8d0fe3", - "332990401346447": "0x49cf0e770" + "289603276344849": "0x338f941502", + "289037900183227": "0x656bc88400" }, "plotIndexes": [ - "0x83ac66c471ba", - "0x12eda5e95fb8f" + "0x1076484698e11", + "0x106e0e15df6bb" ] } }, @@ -207237,7 +219156,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x6ab075abfA7cdD7B19FA83663b1f2a83e4A957e3": { + "0x821bb6973FdA779183d22C9891f566B2e59C8230": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207250,10 +219169,10 @@ "fields": { "0": { "plots": { - "139575720236986": "0x16c726714f" + "279899339370850": "0x29db3f4d3" }, "plotIndexes": [ - "0x7ef1813957ba" + "0xfe9124b23162" ] } }, @@ -207265,7 +219184,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xa01b14d9fA355178408Dd873CB7C1F7aFd3C2151": { + "0x49444e6d0b374f33c43D5d27c53d0504241B9553": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207278,10 +219197,16 @@ "fields": { "0": { "plots": { - "153630962562924": "0xc7c0b92e6" + "289598528304849": "0x11b015740", + "325785700465033": "0xb28ee4080", + "333897831019794": "0xb788f26ac", + "372461099911308": "0x157adb58ab" }, "plotIndexes": [ - "0x8bb9fef3376c" + "0x10763696836d1", + "0x1284ce4f2f989", + "0x12fada59bf512", + "0x152c05b8d888c" ] } }, @@ -207293,7 +219218,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x53c92792E6C8Dad49568e8De3ea06888f4830Fe0": { + "0x0e56C87075CD53477C497D5B5F68CdcA8605cBF7": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207306,12 +219231,12 @@ "fields": { "0": { "plots": { - "170679729221505": "0x6e417ffbc", - "725321098785789": "0x29a20bc686" + "283860746063250": "0x824240df", + "311893596417096": "0x1c0c11bbc" }, "plotIndexes": [ - "0x9b3b78a16f81", - "0x293acfa70f3fd" + "0x1022b7aef4d92", + "0x11baa6305ac48" ] } }, @@ -207323,7 +219248,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xe1887385C1ed2d53782F0231D8032E4Ae570B3CE": { + "0xc32B1e77879F3544e629261E711A0cc87ae01182": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207336,12 +219261,10 @@ "fields": { "0": { "plots": { - "168135476389285": "0x2fb03c5d4c", - "168068691873325": "0x8cc4e9b31" + "281343170282469": "0x27745758c" }, "plotIndexes": [ - "0x98eb175825a5", - "0x98db8aad4e2d" + "0xffe14fb983e5" ] } }, @@ -207353,7 +219276,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xbb9dDEE672BF27905663F49bf950090050C4e9ad": { + "0xF57c5533a9037E25E5688726fbccD03E09738aCd": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207366,10 +219289,10 @@ "fields": { "0": { "plots": { - "168493012264452": "0x13169d8a17" + "290667882932090": "0x382931703" }, "plotIndexes": [ - "0x993e5624a604" + "0x1085c63e8e77a" ] } }, @@ -207381,23 +219304,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x41954b53cFB5e4292223720cB3577d3ed885D4f7": { + "0x5edd743E40c978590d987c74912b9424B7258677": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x401", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "157994454912867": "0x2324c599ab" + "282938006963034": "0x116db8888" }, "plotIndexes": [ - "0x8fb1f35c8f63" + "0x10154a366035a" ] } }, @@ -207409,7 +219332,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x922d012c7E8fCe3C46ac761179Bdb6d16246782D": { + "0x7e53AF93688908D67fc3ddcE3f4B033dBc257C20": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207422,12 +219345,10 @@ "fields": { "0": { "plots": { - "150084707437893": "0x5d21dba00", - "685372204853017": "0x1014e10311" + "280702256803893": "0xbe67d5e0" }, "plotIndexes": [ - "0x888051ac4d45", - "0x26f57a6cf2719" + "0xff4c164df035" ] } }, @@ -207439,7 +219360,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x30d0DEb932b5535f792d359604D7341D1B357a35": { + "0xeeBF4Ea438D5216115577f9340cD4fB0EDD29BD9": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207452,10 +219373,12 @@ "fields": { "0": { "plots": { - "153844244754703": "0x3cb8b79b97" + "279922610063052": "0xf1d9b05b", + "334851860911256": "0x1737161ad8" }, "plotIndexes": [ - "0x8beba78f310f" + "0xfe968fbcc6cc", + "0x1308bc638d498" ] } }, @@ -207467,7 +219390,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xdbC529316fe45F5Ce50528BF2356211051fB0F71": { + "0x8E8Ae083aC4455108829789e8ACb4DbdDe330e2E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207480,13 +219403,47 @@ "fields": { "0": { "plots": { - "149967196818046": "0x366014730", - "269534561489665": "0x1522e45820" + "289524659324935": "0x95033ae50" }, "plotIndexes": [ - "0x8864f57e8a7e", - "0xf523e7cad301" + "0x1075236790807" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x89AA0D7EBdCc58D230aF421676A8F62cA168d57a": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "289473500183227": "0x32d5bc2c2", + "465942921824991": "0x324cf5720" + }, + "plotIndexes": [ + "0x107464d267abb", + "0x1a7c5ca574adf" ] +======= + "273275462311532": "0x1c99dd", + "376596837312302": "0x20b464" + }, + "plotIndexes": ["0xf88ae6db5e6c", "0x1568348b6272e"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -207495,11 +219452,15 @@ "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xede90b8" + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xf2eb8" }, "sop": {} }, - "0xb9c3Dd8fee9A4ACe100f8cC0B8239AB49B021fA5": { +<<<<<<< HEAD + "0x3BD4c721C1b547Ea42F728B5a19eB6233803963E": { +======= + "0x0A0761a91009101a86B7a0D786dBbA744cE2E240": { +>>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207512,24 +219473,11 @@ "fields": { "0": { "plots": { - "149577120077935": "0x989680", - "149431927422856": "0x21ce2818e7", - "149577130077935": "0xf4240", - "213270572343591": "0xac8e31c00", - "262592826339996": "0x16fae598c9", - "402001335542096": "0x3fa1f30d00", - "699491292359432": "0x238812e413", - "701405120085419": "0x28fbe85840" +<<<<<<< HEAD + "279910575121973": "0x2cd56a097" }, "plotIndexes": [ - "0x880a231bd86f", - "0x87e854f3bf88", - "0x880a23b46eef", - "0xc1f7ecb4a127", - "0xeed3a822729c", - "0x16d9e3acde150", - "0x27c2f02012b08", - "0x27dec9b06bdab" + "0xfe93c2662635" ] } }, @@ -207541,7 +219489,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xcA580c4e991061D151021B13b984De73B183b06e": { + "0x99997957BF3c202446b1DCB1CAc885348C5b2222": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207554,11 +219502,19 @@ "fields": { "0": { "plots": { - "153786447955420": "0xd74f52b33" + "285760338065737": "0x54378b3c0", + "298929583976174": "0xf7ec009ac" }, "plotIndexes": [ - "0x8bde329a05dc" + "0x103e5c370f949", + "0x10fdff7aa6eee" ] +======= + "277532421339407": "0x115517ed0", + "278185787491171": "0x14e6fef49" + }, + "plotIndexes": ["0xfc6a0d63390f", "0xfd022d0b8363"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -207569,7 +219525,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x7C28205352AD687348578f9cB2AB04DE1DcaA040": { + "0x0F0520237DB57A05728fa0880F8f08A1fd57ccff": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207582,11 +219538,9 @@ "fields": { "0": { "plots": { - "168585228445774": "0x39f0084fc4" + "276395162620514": "0x259e55b10" }, - "plotIndexes": [ - "0x9953cea7e84e" - ] + "plotIndexes": ["0xfb61437c5262"] } }, "depositAllowances": {}, @@ -207597,7 +219551,10 @@ "internalTokenBalance": {}, "sop": {} }, - "0x219312542D51cae86E47a1A18585f0bac6E6867B": { +<<<<<<< HEAD + "0x74fEd61c646B86c0BCd261EcfE69c7C7d5E16b81": { +======= + "0x368a5564F46Bd896C8b365A2Dd45536252008372": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207610,11 +219567,9 @@ "fields": { "0": { "plots": { - "154105041833126": "0x4ad64a736" + "273379926066013": "0x2b56a3043c" }, - "plotIndexes": [ - "0x8c286046cca6" - ] + "plotIndexes": ["0xf8a33961c35d"] } }, "depositAllowances": {}, @@ -207625,7 +219580,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x0e9dc8fFc3a5A04A2Abdd5C5cBc52187E6653E42": { + "0xD0126092d4292F8DC755E6d8eEE8106fbf84583D": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207638,33 +219593,10 @@ "fields": { "0": { "plots": { - "170739819759175": "0x1d432f8da7c", - "205352438673508": "0x7f12273017", - "208195727704637": "0x4e879d35bc", - "230656709472518": "0x19f878cfa5", - "230768252321963": "0x77a044356e", - "237606953663534": "0x1f274005aa", - "236350247713281": "0x8fd21a1b11", - "237740756156888": "0xb3ef222778", - "505208494615910": "0x60f80685b2", - "531421470867756": "0x150ba3086", - "531420470867756": "0x3b9aca00", - "545138809924718": "0x593969aea1" + "276405260758386": "0x2603916394", + "285840847218881": "0x122dcec3e6" }, - "plotIndexes": [ - "0x9b49764e4647", - "0xbac457293064", - "0xbd5a5864c23d", - "0xd1c7f33bb106", - "0xd1e1ebb480ab", - "0xd81a2e11bc2e", - "0xd6f5948eba01", - "0xd8395551c1d8", - "0x1cb7c04dbed66", - "0x1e35333ff412c", - "0x1e352f864772c", - "0x1efcd051e6c6e" - ] + "plotIndexes": ["0xfb639d61ad72", "0x103f8822928c1"] } }, "depositAllowances": {}, @@ -207675,7 +219607,8 @@ "internalTokenBalance": {}, "sop": {} }, - "0x5004Be84E3C40fAf175218a50779b333B7c84276": { + "0x0B7021897485cC2Db909866D78A1D82657A4be6F": { +>>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207688,13 +219621,10 @@ "fields": { "0": { "plots": { - "168106479315294": "0x6c05c3c47", - "282729479437291": "0x1262d5cb63" + "273335862185061": "0xa426976f8", + "318810216692840": "0x918f92667" }, - "plotIndexes": [ - "0x98e456fbe95e", - "0x1012416307beb" - ] + "plotIndexes": ["0xf898f6f84c65", "0x121f4c9b77c68"] } }, "depositAllowances": {}, @@ -207705,7 +219635,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x57068722592FeD292Aa9fdfA186A156D00A87a59": { + "0xEF64581Af57dFEc2722e618d4Dd5f3c9934C17De": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207718,11 +219648,10 @@ "fields": { "0": { "plots": { - "153517294218286": "0x1a77294b3e" + "273653841644570": "0xf93c297b8", + "386540379495873": "0xaa335ec15" }, - "plotIndexes": [ - "0x8b9f87c9ec2e" - ] + "plotIndexes": ["0xf8e30005cc1a", "0x15f8e7202ddc1"] } }, "depositAllowances": {}, @@ -207733,28 +219662,28 @@ "internalTokenBalance": {}, "sop": {} }, - "0x085E98CD14e00f9FC3E9F670e1740F954124e824": { +<<<<<<< HEAD + "0x6d26C4f242971eaCCe5Dc1EAEd77a76F5705B190": { +======= + "0x17536a82E8721E8DC61Ab12a08c4BfE3fd7fD2C7": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "154158293224517": "0x26381a3980", - "271915086191895": "0xc442d3a4e", - "273185381030890": "0x3190220b6" + "284761889788419": "0xc81347526", + "283862931443313": "0x3394c08e9", + "322288771602655": "0xb297bc7d64", + "335611264683963": "0x325142938f3" }, - "plotIndexes": [ - "0x8c34c64e8c45", - "0xf74e2a1f1d17", - "0xf875ed981bea" - ] + "plotIndexes": ["0x102fd4b495203", "0x1022bfd318e71", "0x1251eb3bf18df", "0x1313c9636cfbb"] } }, "depositAllowances": {}, @@ -207765,7 +219694,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x262126FD37D04321D7f824c8984976542fCA2C36": { + "0x019285701d4502df31141dF600A472c61c054e63": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207778,11 +219707,10 @@ "fields": { "0": { "plots": { - "153684583303762": "0x17b79b3b8a" + "285400078671087": "0x18d5500481", + "295033968260116": "0x17c29d2b57" }, - "plotIndexes": [ - "0x8bc67afeca52" - ] + "plotIndexes": ["0x10391e24edcef", "0x10c54f2dff414"] } }, "depositAllowances": {}, @@ -207793,7 +219721,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x26f781D7f59c67BBd16acED83dB4ba90d1e47689": { + "0x110dfBb05F447880B9B29206c1140C07372090dc": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207806,11 +219734,9 @@ "fields": { "0": { "plots": { - "170677478669570": "0x8624b27f" + "282823933037116": "0x60da74f02" }, - "plotIndexes": [ - "0x9b3af27cbd02" - ] + "plotIndexes": ["0x1013a14100a3c"] } }, "depositAllowances": {}, @@ -207821,7 +219747,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xB3B6757364eCa9Cd74f46A587F8775b832d72D2e": { + "0x6039675c6D83B0B26F647AE3d33F7C34B8Ea945a": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207834,13 +219760,9 @@ "fields": { "0": { "plots": { - "168340296598257": "0x238e902313", - "308693409732309": "0x1201b1f020" + "289487146073469": "0x8bbf6ca8a" }, - "plotIndexes": [ - "0x991ac79482f1", - "0x118c1490816d5" - ] + "plotIndexes": ["0x107497a823d7d"] } }, "depositAllowances": {}, @@ -207851,7 +219773,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xd8388Ad2fF4C781903b6D9F17A60Daf4e919f2ce": { + "0x97Ada2E26C06C263c68ECCe43756708d0f03D94A": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207864,35 +219786,9 @@ "fields": { "0": { "plots": { - "180158456901067": "0x1cad7f093d", - "188657736324806": "0x93327c3ae", - "221757890116192": "0x481b91f39", - "231324321180518": "0x1f7a96dff", - "231457766946954": "0x1337265e7", - "231332771223909": "0x1f78c4724", - "225343185979003": "0x4327220f1", - "242180107603542": "0x51a94b44d", - "242174757473730": "0x13ee48094", - "268449221949319": "0x9b6ef4a744", - "294586560057632": "0x682b9b62f4", - "294364816047932": "0x20f90f7f8f", - "299594100999804": "0xb26af37af" + "281369121491336": "0x1866644d90" }, - "plotIndexes": [ - "0xa3da68d3adcb", - "0xab954d5b96c6", - "0xc9b008443a60", - "0xd26363fdeb66", - "0xd28275fab88a", - "0xd2655ba75965", - "0xccf2cc8d867b", - "0xdc42f3490e56", - "0xdc41b4648dc2", - "0xf4273483b787", - "0x10becc7449120", - "0x10bb9264b7f3c", - "0x1107aaff7867c" - ] + "plotIndexes": ["0xffe75a898988"] } }, "depositAllowances": {}, @@ -207903,25 +219799,31 @@ "internalTokenBalance": {}, "sop": {} }, - "0x1904e56D521aC77B05270caefB55E18033b9b520": { + "0xF8444CF11708d3901Ee7B981b204eD0c7130fB93": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "202615094361235": "0xbbfc30b25", - "220065412002903": "0x22c1148efe" + "286712631781524": "0xdf1071dc9b", + "285918925155495": "0xb8cc99fbed", + "287670685386031": "0x91693e6f4f", + "327268162978532": "0x70b04663e0", + "368431939737151": "0xe9f06c9179" }, "plotIndexes": [ - "0xb84700b9bc93", - "0xc825f8b5b457" + "0x104c37c91e894", + "0x1040aaff7eca7", + "0x105a28d03c52f", + "0x129a60e99c2e4", + "0x14f163ee4563f" ] } }, @@ -207933,7 +219835,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xD1373DfB5Ff412291C06e5dFe6b25be239DBcf3E": { + "0x651afE5D50d1cD8F7D891dd6bc2a3Db4A14E5287": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207946,11 +219848,9 @@ "fields": { "0": { "plots": { - "181953052558212": "0x236fc07080" + "280705451279893": "0x1210ed74ef" }, - "plotIndexes": [ - "0xa57c3f104384" - ] + "plotIndexes": ["0xff4cd4b5c615"] } }, "depositAllowances": {}, @@ -207961,7 +219861,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x9b8dB915fA36e5d9Fb65974183172E720fDf3B52": { + "0x79645bfB4Ef32902F4ee436A23E4A10A50789e54": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -207974,11 +219874,10 @@ "fields": { "0": { "plots": { - "202907059734614": "0x1ea70a714" + "289603276344849": "0x338f941502", + "289037900183227": "0x656bc88400" }, - "plotIndexes": [ - "0xb88afb37c856" - ] + "plotIndexes": ["0x1076484698e11", "0x106e0e15df6bb"] } }, "depositAllowances": {}, @@ -207989,7 +219888,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xAc4c5952231a86E8ba3107F2C5e9C5b6b303C0EE": { + "0x821bb6973FdA779183d22C9891f566B2e59C8230": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208002,15 +219901,9 @@ "fields": { "0": { "plots": { - "204483741086104": "0x26f5e10c", - "328476823472330": "0xbc98ecaf7", - "656403459612897": "0x7208afa30" + "279899339370850": "0x29db3f4d3" }, - "plotIndexes": [ - "0xb9fa14bff198", - "0x12abf786148ca", - "0x254fed70a20e1" - ] + "plotIndexes": ["0xfe9124b23162"] } }, "depositAllowances": {}, @@ -208021,7 +219914,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xbFd7ddd26653A7706146895d6e314aF42f7B18D5": { + "0x49444e6d0b374f33c43D5d27c53d0504241B9553": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208034,19 +219927,12 @@ "fields": { "0": { "plots": { - "204489002275103": "0x167deeadb", - "269327679034543": "0x1afffc89bb", - "261741019824303": "0x318bc202b", - "273814984429661": "0x80d6ec6af", - "312146875547105": "0x1856730f0" + "289598528304849": "0x11b015740", + "325785700465033": "0xb28ee4080", + "333897831019794": "0xb788f26ac", + "372461099911308": "0x157adb58ab" }, - "plotIndexes": [ - "0xb9fb4e57511f", - "0xf4f3bca314af", - "0xee0d548280af", - "0xf90884e1905d", - "0x11be55ba27de1" - ] + "plotIndexes": ["0x10763696836d1", "0x1284ce4f2f989", "0x12fada59bf512", "0x152c05b8d888c"] } }, "depositAllowances": {}, @@ -208057,7 +219943,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x6AB3E708231eBc450549B37f8DDF269E789ed322": { + "0x0e56C87075CD53477C497D5B5F68CdcA8605cBF7": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208070,57 +219956,10 @@ "fields": { "0": { "plots": { - "200867811074584": "0x32adafe6aa", - "234774888197334": "0x54dcb37000", - "239092831941854": "0x8430897d80", - "260118373627924": "0x4b4b641f40", - "254494491465844": "0x820931b100", - "446815618027105": "0x1e3fd5e00", - "446827216136839": "0x2b3f30ea4", - "463426993699329": "0x6c94b8f0d", - "464453051748379": "0x40965c93f", - "586613207988784": "0xff2577b96", - "634288124330782": "0x1c5d0c724", - "649805925059057": "0xc650da2c0", - "649502105309057": "0xc650da2c0", - "649198285559057": "0xc650da2c0", - "696501399481444": "0xc88fb391f", - "696254055525928": "0x14477e378", - "698739309824756": "0x23227119a8", - "718136155898812": "0x62875eea4", - "716905989198435": "0x81319b70e", - "720175216460971": "0x20d23da2d7", - "738009093827168": "0x12e8a80e0f", - "737010650241966": "0xd84a54b00", - "743151962222302": "0xb6c15a258", - "805417930289879": "0x1dd6878d6" + "283860746063250": "0x824240df", + "311893596417096": "0x1c0c11bbc" }, - "plotIndexes": [ - "0xb6b02e86a218", - "0xd586c9d02cd6", - "0xd9742350f4de", - "0xec9387427814", - "0xe7761dc2d874", - "0x196605e314e61", - "0x19663117e6a87", - "0x1a57c0156ba01", - "0x1a66ae72a101b", - "0x2158587e1fa30", - "0x240e1b656031e", - "0x24efebb5609f1", - "0x24eb7fe448f81", - "0x24e7141331511", - "0x27976de806c64", - "0x2793d47a72e28", - "0x27b7fec5a4af4", - "0x28d241a7903bc", - "0x28c05aed2d263", - "0x28efedbf404ab", - "0x29f3721e0ea60", - "0x29e4eaa00dbae", - "0x2a3e48cb8eede", - "0x2dc85f9a172d7" - ] + "plotIndexes": ["0x1022b7aef4d92", "0x11baa6305ac48"] } }, "depositAllowances": {}, @@ -208131,7 +219970,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF28841b27FD011475184aC5BECadd12a14667e04": { + "0xc32B1e77879F3544e629261E711A0cc87ae01182": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208144,11 +219983,9 @@ "fields": { "0": { "plots": { - "191833111162737": "0xf552b145" + "281343170282469": "0x27745758c" }, - "plotIndexes": [ - "0xae78a0726f71" - ] + "plotIndexes": ["0xffe14fb983e5"] } }, "depositAllowances": {}, @@ -208159,7 +219996,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x9cFD5052DC827c11a6B3Ab2BB5091773765ea2c8": { + "0xF57c5533a9037E25E5688726fbccD03E09738aCd": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208172,11 +220009,9 @@ "fields": { "0": { "plots": { - "203083203411712": "0x72520cba0" + "290667882932090": "0x382931703" }, - "plotIndexes": [ - "0xb8b3fe32ff00" - ] + "plotIndexes": ["0x1085c63e8e77a"] } }, "depositAllowances": {}, @@ -208184,12 +220019,36 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x5ef1500" + "internalTokenBalance": {}, + "sop": {} + }, + "0x5edd743E40c978590d987c74912b9424B7258677": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x401", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "282938006963034": "0x116db8888" + }, + "plotIndexes": ["0x10154a366035a"] + } }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, "sop": {} }, - "0x4497aAbaa9C178dc1525827b1690a3b8f3647457": { + "0x7e53AF93688908D67fc3ddcE3f4B033dBc257C20": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208202,11 +220061,9 @@ "fields": { "0": { "plots": { - "202722306634067": "0x274d5cdac5" + "280702256803893": "0xbe67d5e0" }, - "plotIndexes": [ - "0xb85ff7133153" - ] + "plotIndexes": ["0xff4c164df035"] } }, "depositAllowances": {}, @@ -208217,7 +220074,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xae0aAF5E7135058919aB10756C6CdD574a92e557": { + "0xeeBF4Ea438D5216115577f9340cD4fB0EDD29BD9": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208230,11 +220087,10 @@ "fields": { "0": { "plots": { - "204283741086104": "0x2e90edd000" + "279922610063052": "0xf1d9b05b", + "334851860911256": "0x1737161ad8" }, - "plotIndexes": [ - "0xb9cb83d22198" - ] + "plotIndexes": ["0xfe968fbcc6cc", "0x1308bc638d498"] } }, "depositAllowances": {}, @@ -208245,7 +220101,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x47635847a5bC731592F7EfB9a10f2461C2F5CdAb": { + "0x8E8Ae083aC4455108829789e8ACb4DbdDe330e2E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208258,11 +220114,9 @@ "fields": { "0": { "plots": { - "200761030844889": "0x112904ba2f" + "289524659324935": "0x95033ae50" }, - "plotIndexes": [ - "0xb69751eda1d9" - ] + "plotIndexes": ["0x1075236790807"] } }, "depositAllowances": {}, @@ -208273,7 +220127,36 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8FA1E05245660E20df4e6DfDfB32Fcd2f2E1cAcd": { + "0x89AA0D7EBdCc58D230aF421676A8F62cA168d57a": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "289473500183227": "0x32d5bc2c2", + "465942921824991": "0x324cf5720" + }, + "plotIndexes": ["0x107464d267abb", "0x1a7c5ca574adf"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x166d0ca" + }, + "sop": {} + }, + "0x3BD4c721C1b547Ea42F728B5a19eB6233803963E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208286,19 +220169,9 @@ "fields": { "0": { "plots": { - "204560148294849": "0x3ff64a3cc0", - "227441220581468": "0x1039f6a5e", - "221300565354492": "0xf0203af62", - "344360197916189": "0x13e1c3bfbe", - "489666388361106": "0x2ce03daaf9" + "279910575121973": "0x2cd56a097" }, - "plotIndexes": [ - "0xba0bdef96cc1", - "0xcedb4928f85c", - "0xc9458d9627fc", - "0x139319b45861d", - "0x1bd595722ff92" - ] + "plotIndexes": ["0xfe93c2662635"] } }, "depositAllowances": {}, @@ -208309,7 +220182,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xc9EA118C809C72ccb561Dd227036ce3C88D892C2": { + "0x99997957BF3c202446b1DCB1CAc885348C5b2222": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208322,11 +220195,10 @@ "fields": { "0": { "plots": { - "202915287953258": "0x1ccc1fa7fd" + "285760338065737": "0x54378b3c0", + "298929583976174": "0xf7ec009ac" }, - "plotIndexes": [ - "0xb88ce5a86f6a" - ] + "plotIndexes": ["0x103e5c370f949", "0x10fdff7aa6eee"] } }, "depositAllowances": {}, @@ -208337,7 +220209,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x0c940e42D91FE16E0f0Eccc964b26dde7808ab5d": { + "0x4DA9d25c0203Dc7Ce50c87Df2eb6C9068Eca256E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208350,11 +220222,9 @@ "fields": { "0": { "plots": { - "204834863294849": "0xa131fd373" + "281360732660114": "0x1f40367f6" }, - "plotIndexes": [ - "0xba4bd543a981" - ] + "plotIndexes": ["0xffe566862192"] } }, "depositAllowances": {}, @@ -208365,7 +220235,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x136e6F25117aF5e5ff5d353dC41A0e91F013D461": { + "0x74fEd61c646B86c0BCd261EcfE69c7C7d5E16b81": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208378,11 +220248,9 @@ "fields": { "0": { "plots": { - "205073735725117": "0x1c86eea469" + "288652038051959": "0x3fca11c2a5" }, - "plotIndexes": [ - "0xba83732bb03d" - ] + "plotIndexes": ["0x106870a311877"] } }, "depositAllowances": {}, @@ -208393,7 +220261,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xEd52006B09b111dAa000126598ACD95F991692D6": { + "0x6d26C4f242971eaCCe5Dc1EAEd77a76F5705B190": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208406,15 +220274,10 @@ "fields": { "0": { "plots": { - "201288716074320": "0x277f368538", - "191024259399088": "0x4604d0d1ff", - "253710018355608": "0x91e114a5e4" + "289570099594839": "0x8824d49c", + "325489589719323": "0x3c25e2833" }, - "plotIndexes": [ - "0xb7122e6b3d50", - "0xadbc4d1ffdb0", - "0xe6bf77852198" - ] + "plotIndexes": ["0x1075ccaec8657", "0x12807f35f911b"] } }, "depositAllowances": {}, @@ -208425,7 +220288,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xcEB03369b7537eB3eCa2b2951DdfD6D032c01c41": { + "0x90B113Cf662039394D28505f51f0B1B4678Cc3b5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208438,10 +220301,41 @@ "fields": { "0": { "plots": { - "199315986281033": "0x42f97b6d9" + "280783044688644": "0x2eceea4b0" + }, + "plotIndexes": ["0xff5ee5a33b04"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x29f6bb0d" + }, + "sop": {} + }, + "0x382C29bB63Af1E6Bd3Fc818FeA85bd25Afb0E92E": { +>>>>>>> b689ac329 (feat: update reseed jsons) + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "288522664536795": "0x15247153d9" }, +<<<<<<< HEAD "plotIndexes": [ - "0xb546de8f7249" + "0x1075ccaec8657", + "0x12807f35f911b" ] } }, @@ -208453,7 +220347,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF352e5320291298bE60D00a015b27D3960F879FA": { + "0x90B113Cf662039394D28505f51f0B1B4678Cc3b5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208466,14 +220360,10 @@ "fields": { "0": { "plots": { - "204484394734244": "0x112a17e7b", - "931280942124652": "0x84a633e9e", - "943534242598500": "0x18042bf910" + "280783044688644": "0x2eceea4b0" }, "plotIndexes": [ - "0xb9fa3bb5d2a4", - "0x34efebdbdce6c", - "0x35a23af5d0e64" + "0xff5ee5a33b04" ] } }, @@ -208483,11 +220373,11 @@ "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xb58370b" + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x29f6bb0d" }, "sop": {} }, - "0x1dE6844C76Fa59C5e7B4566044CC1Bb9ef958714": { + "0x382C29bB63Af1E6Bd3Fc818FeA85bd25Afb0E92E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208500,13 +220390,52 @@ "fields": { "0": { "plots": { - "220637584990881": "0x89638240", - "220709260788997": "0x112c70480" + "288522664536795": "0x15247153d9" }, "plotIndexes": [ - "0xc8ab30e0a2a1", - "0xc8bbe1168505" + "0x10668eaedeadb" + ] +======= + "plotIndexes": ["0x10668eaedeadb"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x682a4c54F9c9cE3a66700AE6f3b67f5984D85C21": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "298426082271272": "0x7f5a25c40", + "298739111357662": "0x2c590d8210", + "318131255471558": "0x723730fe71", + "318849290379983": "0x2d7802825b" + }, +<<<<<<< HEAD + "plotIndexes": [ + "0x10f6abca02028", + "0x10fb39e9cecde", + "0x12156b4796dc6", + "0x121fde2b0a2cf" ] +======= + "plotIndexes": ["0x10f6abca02028", "0x10fb39e9cecde", "0x12156b4796dc6", "0x121fde2b0a2cf"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -208514,12 +220443,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x3201277a" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x354F7a379e9478Ad1734f5c48e856F89E309a597": { + "0xFe2da4E7e3675b00BE2Ff58c6a018Ed06237C81D": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208532,11 +220459,15 @@ "fields": { "0": { "plots": { - "213213798353310": "0x2d042545d" + "295372378685570": "0x34cc0b749" }, +<<<<<<< HEAD "plotIndexes": [ - "0xc1eab4b6499e" + "0x10ca3bdb54082" ] +======= + "plotIndexes": ["0x10ca3bdb54082"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -208547,7 +220478,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x07f7cA325221752380d6CdFBcFF9B5E5E9EC058F": { + "0xdF3A7C30313779D3b6AA577A28456259226Ff452": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208560,11 +220491,15 @@ "fields": { "0": { "plots": { - "219683298748205": "0x1362cf36c3" + "298546668100712": "0x71d22e703" }, +<<<<<<< HEAD "plotIndexes": [ - "0xc7cd00fc272d" + "0x10f86d019dc68" ] +======= + "plotIndexes": ["0x10f86d019dc68"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -208575,7 +220510,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x2bDB0cB25Db0012dF643041B3490d163A1809eE6": { + "0x93b34d74a134b403450f993e3f2fb75B751fa3d6": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208588,11 +220523,15 @@ "fields": { "0": { "plots": { - "218546663766811": "0x13b30abc5d" + "296797858583543": "0x208bb44280" }, +<<<<<<< HEAD "plotIndexes": [ - "0xc6c45c42bb1b" + "0x10defa2ee53f7" ] +======= + "plotIndexes": ["0x10defa2ee53f7"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -208600,10 +220539,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x1cc5b5" + }, "sop": {} }, - "0x342Ba89a30Af6e785EBF651fb0EAd52752Ab1c9F": { + "0x74b0b7cEa336fBb34Bc23EB58F48AC5e4C04159E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208616,23 +220557,21 @@ "fields": { "0": { "plots": { - "212188823059772": "0xa7374b4e92", - "255265354982596": "0x9be7452800", - "459187067180977": "0x1eb9395e63", - "586881787286346": "0x3a7c3244da3", - "558750219097685": "0x86d4529c86", - "635572332702096": "0x43ef59f533", - "636541607037349": "0x31bea413b6" + "297412002527525": "0xdc07230bc", + "300538713353756": "0x46e4b383e", + "295473191285707": "0x496f2323d", + "296283253996855": "0x15fb511801" }, +<<<<<<< HEAD "plotIndexes": [ - "0xc0fc0f6c7d3c", - "0xe82998cea4c4", - "0x1a1a0d20657b1", - "0x215c41074d34a", - "0x1fc2e2c53d655", - "0x2420cb71ea990", - "0x242ee645f49a5" + "0x10e7ea0c33925", + "0x111569f402e1c", + "0x10cbb369b73cb", + "0x10d77d21b7d37" ] +======= + "plotIndexes": ["0x10e7ea0c33925", "0x111569f402e1c", "0x10cbb369b73cb", "0x10d77d21b7d37"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -208643,7 +220582,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8325D26d08DaBf644582D2a8da311D94DBD02A97": { + "0xFD7998c9c23aa865590fd3405F19c23423a0611B": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208656,13 +220595,15 @@ "fields": { "0": { "plots": { - "214830162730441": "0x2902dda9f", - "293750873555124": "0x9d70e8ae" + "298460268100712": "0x141dd76000" }, +<<<<<<< HEAD "plotIndexes": [ - "0xc3630b895dc9", - "0x10b2a347880b4" + "0x10f72b2427c68" ] +======= + "plotIndexes": ["0x10f72b2427c68"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -208670,12 +220611,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x8676c5" - }, + "internalTokenBalance": {}, "sop": {} }, - "0xF7cCA800424e518728F88D7FC3B67Ed6dFa0693C": { + "0xDa12B5133e13e01d95f9a5BE0cc61496b17E5494": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208688,11 +220627,15 @@ "fields": { "0": { "plots": { - "214824040374252": "0x38453121" + "297843565336066": "0x1b0d0a4020" }, +<<<<<<< HEAD "plotIndexes": [ - "0xc3619e9d9fec" + "0x10ee31be91602" ] +======= + "plotIndexes": ["0x10ee31be91602"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -208703,7 +220646,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x38Cf87B5d7B0672Ac544Ed279cbbff31Bb83b3D5": { + "0x41a93Eb81720F943FE52b7F72E4a7ac9620AcC54": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208716,13 +220659,15 @@ "fields": { "0": { "plots": { - "213264452873369": "0x16cbfb48e", - "268381273591215": "0x42ec0a2a8" + "291654604244211": "0xad71848cc" }, +<<<<<<< HEAD "plotIndexes": [ - "0xc1f67ff4ec99", - "0xf417627a0daf" + "0x10942211544f3" ] +======= + "plotIndexes": ["0x10942211544f3"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -208730,29 +220675,33 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xb60206" + }, "sop": {} }, - "0x9eB97e6aee08EF7AC5F6b523886E10bb1Cd8DE9d": { + "0x4d26976EC64f11ce10325297363862669fCaAaD5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "212907010280398": "0x2fabb322cf", - "491199224234272": "0x666e3aa0" + "293290104729008": "0x1633af4b50" }, +<<<<<<< HEAD "plotIndexes": [ - "0xc1a346b7cbce", - "0x1bebe3b464120" + "0x10abeec822db0" ] +======= + "plotIndexes": ["0x10abeec822db0"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -208763,24 +220712,28 @@ "internalTokenBalance": {}, "sop": {} }, - "0x54CE05973cFadd3bbACf46497C08Fc6DAe156521": { + "0xe2282eA0D41b1a9D99B593e81D9adb500476C7C5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "211486572900138": "0xc3e287e0" + "297959748228642": "0xa20c0e1f1" }, +<<<<<<< HEAD "plotIndexes": [ - "0xc0588e0d6f2a" + "0x10efe28f35622" ] +======= + "plotIndexes": ["0x10efe28f35622"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -208788,12 +220741,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xa9bc" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x6a12c8594c5C850d57612CA58810ABb8aeBbC04B": { + "0x08b6e06F64f62b7255840329b2DDB592d6A2c336": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208806,17 +220757,15 @@ "fields": { "0": { "plots": { - "217940532047787": "0x19d0f6880", - "217947462047787": "0x6b9d444e00", - "491200942734272": "0x6675dbc0", - "491202661734272": "0x3d87a5e0" + "293279130525087": "0x28e1d1011" }, +<<<<<<< HEAD "plotIndexes": [ - "0xc6373bfeafab", - "0xc638d90e182b", - "0x1bebea1b47bc0", - "0x1bebf082a5780" + "0x10abc5e651d9f" ] +======= + "plotIndexes": ["0x10abc5e651d9f"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -208827,24 +220776,30 @@ "internalTokenBalance": {}, "sop": {} }, - "0xb69D09d54bF5a489Ca9F0d8E0D50d2c958aE55C5": { + "0xEC9F16FAacD809ED3EC90D22C92cE84C5C115FAC": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "219661298748205": "0x51f4d5c00" + "297471065811425": "0x5b9521200", + "297503528406965": "0x3d686b5bc" }, +<<<<<<< HEAD "plotIndexes": [ - "0xc7c7e1aecb2d" + "0x10e8c613569e1", + "0x10e93f0214fb5" ] +======= + "plotIndexes": ["0x10e8c613569e1", "0x10e93f0214fb5"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -208852,10 +220807,14 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x2f02075d" + }, "sop": {} }, - "0x17FA401eBAd908CC02bd2Cb2DC37A71c872B47e5": { + "0x5A803cD039d7c427AD01875990f76886cC574339": { +<<<<<<< HEAD +======= "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208868,13 +220827,10 @@ "fields": { "0": { "plots": { - "220639889990881": "0x1026d26024", - "401536968546834": "0xd7d3ac544" + "304668727377586": "0xbfc3bba92e", + "303460189172472": "0xeb1283af8c" }, - "plotIndexes": [ - "0xc8abba4424e1", - "0x16d321c5fda12" - ] + "plotIndexes": ["0x115183744feb2", "0x113fed4c772f8"] } }, "depositAllowances": {}, @@ -208885,7 +220841,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x54Af3F7c7dBb94293f94EE15dBFD819C572B9235": { + "0x5D177d3f4878038521936e6449C17BeCd2D10cBA": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208898,13 +220854,9 @@ "fields": { "0": { "plots": { - "217546047951373": "0x5bd9159d9e", - "242397324583886": "0x50d008dee1" + "302037489993568": "0x688b86ee8" }, - "plotIndexes": [ - "0xc5db62e9120d", - "0xdc75866d23ce" - ] + "plotIndexes": ["0x112b3954cc760"] } }, "depositAllowances": {}, @@ -208915,7 +220867,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x533ac5848d57672399a281b65A834d88B0b2dF45": { + "0x8eaA2d22eDd38E9769a9Ec7505bDe53933294DB1": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208928,13 +220880,9 @@ "fields": { "0": { "plots": { - "214901535169245": "0x1341f8255", - "231673913235551": "0x7fa261d23" + "311951348717264": "0x4ace2a3d8" }, - "plotIndexes": [ - "0xc373a9aa5add", - "0xd2b4c94d585f" - ] + "plotIndexes": ["0x11bb7d553d6d0"] } }, "depositAllowances": {}, @@ -208945,7 +220893,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x73C28f0571ee437171E421c80a55Bdcc6c07cc5C": { + "0xD2927a91570146218eD700566DF516d67C5ECFAB": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208958,11 +220906,10 @@ "fields": { "0": { "plots": { - "218677718578589": "0x111cfc387" + "311239094540889": "0x4c5003", + "461998949157639": "0x3dae612baf" }, - "plotIndexes": [ - "0xc6e2dfbc759d" - ] + "plotIndexes": ["0x11b11ffab9a59", "0x1a42f83404b07"] } }, "depositAllowances": {}, @@ -208973,7 +220920,8 @@ "internalTokenBalance": {}, "sop": {} }, - "0x406874Ac226662369d23B4a2B76313f3Cb8da983": { + "0xe4082AaCDEd950C0f21FEbAC03Aa6f48D15cd58D": { +>>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -208986,13 +220934,9 @@ "fields": { "0": { "plots": { - "214361103094275": "0x6bc9364de9", - "399147164949892": "0x53285b61bc" + "306191115507544": "0xafb319da8" }, - "plotIndexes": [ - "0xc2f5d5675203", - "0x16b05b0fadd84" - ] + "plotIndexes": ["0x1167aacac5758"] } }, "depositAllowances": {}, @@ -209003,7 +220947,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x328e124cE7F35d9aCe181B2e2B4071f51779B363": { + "0xd6E52faa29312cFda21a8a5962E8568b7cfe179a": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -209016,11 +220960,9 @@ "fields": { "0": { "plots": { - "220813692513983": "0xbe6489369" + "302424774125728": "0x32e30eaa7" }, - "plotIndexes": [ - "0xc8d431b42ebf" - ] + "plotIndexes": ["0x1130dc13ba8a0"] } }, "depositAllowances": {}, @@ -209031,24 +220973,22 @@ "internalTokenBalance": {}, "sop": {} }, - "0x058107C8b15Dd30eFF1c1d01Cf15bd68e6BEf26F": { + "0xE6375dF92796f95394a276E0BA4Efc4176D41D49": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "226884439627627": "0x1a0f759d3" + "315485261670410": "0x32c9f0d27c" }, - "plotIndexes": [ - "0xce59a66dd76b" - ] + "plotIndexes": ["0x11eeea2f4280a"] } }, "depositAllowances": {}, @@ -209059,29 +220999,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x5234e3A15a9b0F86C6E77c400dc4706A3DFC0A04": { + "0x5D177d3f4878038521936e6449C17BeCd2D10cBA": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "221709363811083": "0xb4c64a755", - "298041802666608": "0x16795fb556", - "326781576518052": "0x91352082d", - "326873031171634": "0x11ac6b2c28" + "302037489993568": "0x688b86ee8" }, "plotIndexes": [ - "0xc9a4bbdf930b", - "0x10f1143c6b270", - "0x12934c3c999a4", - "0x1294a0ee8de32" + "0x112b3954cc760" ] } }, @@ -209093,7 +221027,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xaaEB726768606079484aa6b3715efEEC7E901D13": { + "0x8eaA2d22eDd38E9769a9Ec7505bDe53933294DB1": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -209106,10 +221040,10 @@ "fields": { "0": { "plots": { - "225361212188524": "0xc2fe150bd" + "311951348717264": "0x4ace2a3d8" }, "plotIndexes": [ - "0xccf6feffa76c" + "0x11bb7d553d6d0" ] } }, @@ -209121,7 +221055,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xE8c22A092593061D49d3Fbc2B5Ab733E82a66352": { + "0xD2927a91570146218eD700566DF516d67C5ECFAB": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -209134,22 +221068,12 @@ "fields": { "0": { "plots": { - "244563066566020": "0x4f0bf445bc", - "239866879581854": "0x10479b4", - "240817882040757": "0x1470d849a", - "285823716873404": "0x3fd0c5405", - "399108141891711": "0x915f49d05", - "456632495406880": "0xd800273a", - "583979473591721": "0xcc957739e" + "311239094540889": "0x4c5003", + "461998949157639": "0x3dae612baf" }, "plotIndexes": [ - "0xde6dc6b53584", - "0xda285c269e9e", - "0xdb05c85089b5", - "0x103f4851cd4bc", - "0x16afc9b06407f", - "0x19f4e09ae7f20", - "0x2132051145da9" + "0x11b11ffab9a59", + "0x1a42f83404b07" ] } }, @@ -209161,23 +221085,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x7bE74966867b552dd2CE1F09E71b1CA92C321Af0": { + "0xe4082AaCDEd950C0f21FEbAC03Aa6f48D15cd58D": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "236273309536157": "0x6b4abed5" + "306191115507544": "0xafb319da8" }, "plotIndexes": [ - "0xd6e3aaaf4f9d" + "0x1167aacac5758" ] } }, @@ -209189,7 +221113,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x7310E238f2260ff111a941059B023B3eBCF2D54e": { + "0xd6E52faa29312cFda21a8a5962E8568b7cfe179a": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -209202,12 +221126,10 @@ "fields": { "0": { "plots": { - "235227898442395": "0xcc029ae79", - "251906258747456": "0x8b101e0de" + "302424774125728": "0x32e30eaa7" }, "plotIndexes": [ - "0xd5f04353f29b", - "0xe51b7f11c040" + "0x1130dc13ba8a0" ] } }, @@ -209219,23 +221141,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0xc59821CBF1A4590cF659E2BA74de9Bbf7612E538": { + "0xE6375dF92796f95394a276E0BA4Efc4176D41D49": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "238513567295824": "0x32dacf8d40" + "315485261670410": "0x32c9f0d27c" }, "plotIndexes": [ - "0xd8ed4473e950" + "0x11eeea2f4280a" ] } }, @@ -209247,7 +221169,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x18637e9C1f3bBf5D4492D541CE67Dcf39f1609A2": { + "0x220c12268c6f1744553f456c3BF161bd8b423662": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -209260,13 +221182,9 @@ "fields": { "0": { "plots": { - "239660581941854": "0x30084c2c40", - "238754484412650": "0x4ec71593f4" + "311744261169232": "0x36f7611be" }, - "plotIndexes": [ - "0xd9f853da725e", - "0xd9255c3b60ea" - ] + "plotIndexes": ["0x11b879df2a050"] } }, "depositAllowances": {}, @@ -209274,12 +221192,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x15666e84" - }, + "internalTokenBalance": {}, "sop": {} }, - "0xc4c89a41Ad3050Bb82deE573833f76f2c449353e": { + "0xcd1E27461aF28E23bd3e84eD87e2C9a281bF0d9F": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -209292,13 +221208,9 @@ "fields": { "0": { "plots": { - "240640507285101": "0x294c5bfb48", - "249896870521632": "0x9b961b734" + "312080923158305": "0xf5b1196c0" }, - "plotIndexes": [ - "0xdadc7bf48e6d", - "0xe347a632ab20" - ] + "plotIndexes": ["0x11bd60090e721"] } }, "depositAllowances": {}, @@ -209309,7 +221221,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xE3faBA780BDe12D3DFEB226A120aA4271f1D72B2": { + "0x0948934A39767226E1FfC53bd0B95efa90055178": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -209322,23 +221234,9 @@ "fields": { "0": { "plots": { - "241976256153648": "0x1cb410cf9e", - "243781055572115": "0x10a300e398", - "269116803407563": "0x52c8e4f7", - "279505824996797": "0x5182d9aa7", - "355680382750323": "0x1d730088d2", - "400152023455338": "0x61184d0f9", - "445628453536239": "0xeaf2fbb09" + "311619295234752": "0x3b93251ca" }, - "plotIndexes": [ - "0xdc137ccac830", - "0xddb7b3386893", - "0xf4c2a3785ecb", - "0xfe3585695dbd", - "0x1437d4ade0e73", - "0x16befa736d66a", - "0x1954bf5acc1ef" - ] + "plotIndexes": ["0x11b6a8565cac0"] } }, "depositAllowances": {}, @@ -209349,7 +221247,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xE67ae530c6578bCD59230EDac111Dd18eE47b344": { + "0x1ef22E33287A5c26CF6b9Ffc49e902830180E3Ca": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -209362,11 +221260,9 @@ "fields": { "0": { "plots": { - "243852509793323": "0x4cc4cee9a" + "317838397685316": "0x2c8e58e52" }, - "plotIndexes": [ - "0xddc856394c2b" - ] + "plotIndexes": ["0x1211284ca3e44"] } }, "depositAllowances": {}, @@ -209377,7 +221273,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x2AdC396D8092D79Db0fA8a18fa7e3451Dc1dFB37": { + "0x34Aec84391B6602e7624363Df85Efe02A1FF35f5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -209390,11 +221286,9 @@ "fields": { "0": { "plots": { - "248282655499019": "0x9d82eabb8" + "309267907666277": "0x17662a2847" }, - "plotIndexes": [ - "0xe1cfcf7c230b" - ] + "plotIndexes": ["0x119470bc6e165"] } }, "depositAllowances": {}, @@ -209405,24 +221299,22 @@ "internalTokenBalance": {}, "sop": {} }, - "0x427Dfd9661eaF494be14CAf5e84501DDF3d42d31": { + "0x349E8490C47f42AB633D9392a077D6F1aF4d4c85": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "241011518848871": "0x2908a64cd2" + "311971429120680": "0x5d7fcbcd5" }, - "plotIndexes": [ - "0xdb32ddf7bf67" - ] + "plotIndexes": ["0x11bbc82367aa8"] } }, "depositAllowances": {}, @@ -209433,7 +221325,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x2Efc14A5276bB2b6E32B913fFa8CEDa02552750F": { + "0xd380b5Fed7b9BaAFF7521aA4cEfC257Db3043d26": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -209446,11 +221338,9 @@ "fields": { "0": { "plots": { - "245155440103610": "0x1f583032c5" + "311635287219338": "0xd4c6b1494" }, - "plotIndexes": [ - "0xdef7b2ec10ba" - ] + "plotIndexes": ["0x11b6e3e981c8a"] } }, "depositAllowances": {}, @@ -209461,24 +221351,22 @@ "internalTokenBalance": {}, "sop": {} }, - "0x3572F1b678f48C6a2145F5e5fF94159F3C99b01e": { + "0x997563ba8058E80f1E4dd5b7f695b5C2B065408e": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "235887412728787": "0xa6c3bb445" + "312055923158305": "0x5d21dba00" }, - "plotIndexes": [ - "0xd689d17153d3" - ] + "plotIndexes": ["0x11bd02e732d21"] } }, "depositAllowances": {}, @@ -209486,12 +221374,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xf4240" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x2Ac6f4E13a2023bad7D429995Bf07C6ecC1AC05C": { + "0x27320AAc0E3bbc165E6048aFc0F28500091dca73": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -209504,13 +221390,9 @@ "fields": { "0": { "plots": { - "247377186269264": "0x5fc8dfc0", - "695624119694114": "0x5d0af840" + "301703166264323": "0x373cbfd71" }, - "plotIndexes": [ - "0xe0fcfd502850", - "0x278aa9c8d3322" - ] + "plotIndexes": ["0x11265be0d8403"] } }, "depositAllowances": {}, @@ -209521,7 +221403,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x7125B7C60Ec85F9aD33742D9362f6161d403EC92": { + "0x5F067841319aD19eD32c432ac69DcF32AC3a773F": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -209534,11 +221416,9 @@ "fields": { "0": { "plots": { - "246922293237268": "0x3025626784" + "301635847094275": "0xfac890400" }, - "plotIndexes": [ - "0xe09313935614" - ] + "plotIndexes": ["0x1125611848003"] } }, "depositAllowances": {}, @@ -209549,26 +221429,22 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8709DD5FE0F07219D8d4cd60735B58E2C3009073": { + "0xf5f165910e11496C2d1B3D46319a5A07f09Bf2D9": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "234615417572537": "0x252130a01d", - "251943588176158": "0x6ea118de6" + "311375845353216": "0x2f394d735b" }, - "plotIndexes": [ - "0xd561a89f8cb9", - "0xe5243013a11e" - ] + "plotIndexes": ["0x11b31d6a76700"] } }, "depositAllowances": {}, @@ -209579,25 +221455,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0xC21a7Fe78A0Fb9DF4Da21F2Ce78c76BdAe63e611": { + "0xcd1E27461aF28E23bd3e84eD87e2C9a281bF0d9F": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "247378793269264": "0x38fc788f3d", - "250829898506136": "0x64a0644164" + "312080923158305": "0xf5b1196c0" }, "plotIndexes": [ - "0xe0fd5d190810", - "0xe420e2ffdf98" + "0x11bd60090e721" ] } }, @@ -209606,12 +221480,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x4067ed1c0" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x8A17B7aF6d76f7348deb9C324AbF98f873b6691A": { + "0x0948934A39767226E1FfC53bd0B95efa90055178": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -209624,10 +221496,10 @@ "fields": { "0": { "plots": { - "246309595703075": "0x34f88da75e" + "311619295234752": "0x3b93251ca" }, "plotIndexes": [ - "0xe0046bf4e723" + "0x11b6a8565cac0" ] } }, @@ -209639,7 +221511,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x06E6932ed7D7De9bcF5bD7a11723Dc698D813F7e": { + "0x1ef22E33287A5c26CF6b9Ffc49e902830180E3Ca": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -209652,14 +221524,10 @@ "fields": { "0": { "plots": { - "241189075365295": "0x294181315", - "274351454205287": "0x19fff9658", - "325771315526926": "0x35968bc7b" + "317838397685316": "0x2c8e58e52" }, "plotIndexes": [ - "0xdb5c35292daf", - "0xf9856cf8b567", - "0x128498b8a3d0e" + "0x1211284ca3e44" ] } }, @@ -209671,25 +221539,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x9e1e2beD5271a08a8E2Acc8d5ECF99eC5382cf7A": { + "0x34Aec84391B6602e7624363Df85Efe02A1FF35f5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "250526151093083": "0x1161de86fa", - "695628520661609": "0x21647f8700" + "309267907666277": "0x17662a2847" }, "plotIndexes": [ - "0xe3da2a3e2b5b", - "0x278aba2dea269" + "0x119470bc6e165" ] } }, @@ -209701,7 +221567,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xD5351308c8Cb15ca93a8159325bFb392DC1e52aC": { + "0x349E8490C47f42AB633D9392a077D6F1aF4d4c85": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -209714,12 +221580,10 @@ "fields": { "0": { "plots": { - "256758104204461": "0x3a202e2c0", - "256710058517324": "0x74405c580" + "311971429120680": "0x5d7fcbcd5" }, "plotIndexes": [ - "0xe985279824ad", - "0xe979f7d9234c" + "0x11bbc82367aa8" ] } }, @@ -209731,23 +221595,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x6fBDc235B6f55755BE1c0B554469633108E60608": { + "0xd380b5Fed7b9BaAFF7521aA4cEfC257Db3043d26": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "253030586999657": "0x3d0076e167" + "311635287219338": "0xd4c6b1494" }, "plotIndexes": [ - "0xe62146416369" + "0x11b6e3e981c8a" ] } }, @@ -209759,7 +221623,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xbf9Db3564c22fd22FF30A8dB7f689D654Bf5F1fD": { + "0x997563ba8058E80f1E4dd5b7f695b5C2B065408e": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -209772,12 +221636,10 @@ "fields": { "0": { "plots": { - "250043585667303": "0x87b5aecf5", - "250401077762813": "0xf1e422c65" + "312055923158305": "0x5d21dba00" }, "plotIndexes": [ - "0xe369cf1a20e7", - "0xe3bd0b4a9afd" + "0x11bd02e732d21" ] } }, @@ -209789,7 +221651,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xB817bCfa60f2a4c9cE7E900cc1a0B1bd5f45bb70": { + "0x27320AAc0E3bbc165E6048aFc0F28500091dca73": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -209802,10 +221664,10 @@ "fields": { "0": { "plots": { - "252279493675340": "0x4c44f10af3" + "301703166264323": "0x373cbfd71" }, "plotIndexes": [ - "0xe572659ac94c" + "0x11265be0d8403" ] } }, @@ -209817,7 +221679,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF4B2300e02977720D590353725e4a73a67250bf3": { + "0x5F067841319aD19eD32c432ac69DcF32AC3a773F": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -209830,10 +221692,10 @@ "fields": { "0": { "plots": { - "252622959858488": "0x408eab8f41" + "301635847094275": "0xfac890400" }, "plotIndexes": [ - "0xe5c25dc8d338" + "0x1125611848003" ] } }, @@ -209845,7 +221707,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x5d9f8ecA4a1d3eEB7B78002EF0D2Bb53ADF259ee": { + "0xf5f165910e11496C2d1B3D46319a5A07f09Bf2D9": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -209858,10 +221720,10 @@ "fields": { "0": { "plots": { - "260693811733759": "0x54677828a" + "311375845353216": "0x2f394d735b" }, "plotIndexes": [ - "0xed19820b24ff" + "0x11b31d6a76700" ] } }, @@ -209873,7 +221735,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x11F3BAcAa1e4DEeB728A1c37f99694A8e026cF7D": { + "0x4588a155d63CFFC23b3321b4F99E8d34128B227a": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -209886,15 +221748,9 @@ "fields": { "0": { "plots": { - "252085742270225": "0x8aa575427", - "693534396400586": "0x513074af", - "695910518553961": "0x2f7d1394" + "317739518695316": "0x1705a5a6b0" }, - "plotIndexes": [ - "0xe545491ef711", - "0x276c40f5643ca", - "0x278ed4b40fd69" - ] + "plotIndexes": ["0x120fb7f249794"] } }, "depositAllowances": {}, @@ -209903,27 +221759,28 @@ "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x325b8" + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x3e0dd" }, "sop": {} }, - "0x6C8513a6C51C5F83C4E4DC53E0fabA45112c0E09": { + "0x669E4aCd20Aa30ABA80483fc8B82aeD626e60B60": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", +<<<<<<< HEAD "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "248455141384543": "0x3a58afdd2d" + "306189714236944": "0x5385b148" }, "plotIndexes": [ - "0xe1f7f871e15f" + "0x1167a5926a610" ] } }, @@ -209935,25 +221792,25 @@ "internalTokenBalance": {}, "sop": {} }, - "0x0846Bf78c84C11D58Bb2320Fc8807C1983A2797C": { + "0xda333519D92b4D7a83DBAACB4fd7a31cDB4f24A4": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "259218447065702": "0xa69ae8e5b", - "260052583934374": "0xb1b4d14aa" + "325505735571790": "0xaba786d38", + "324929278595488": "0x560b3e7b6" }, "plotIndexes": [ - "0xebc1ff74e266", - "0xec8435e369a6" + "0x1280bb5bdb94e", + "0x127857e3a51a0" ] } }, @@ -209965,23 +221822,26 @@ "internalTokenBalance": {}, "sop": {} }, - "0x567dA563057BE92a42B0c14a765bFB1a3dD250be": { + "0x7D575d5Fcf60bf3Ce92bb0A634277A1C05A273Cb": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", "lastSop": "0x0", +======= +>>>>>>> b689ac329 (feat: update reseed jsons) "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "259263169786049": "0xa66e2272f" +<<<<<<< HEAD + "325418628636859": "0x33b7ad7ff" }, "plotIndexes": [ - "0xebcc692370c1" + "0x127f76dc360bb" ] } }, @@ -209993,7 +221853,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x3638570931B30FbBa478535A94D3f2ec1Cd802cB": { + "0x215F97a79287BE4192990FCc4555F7a102a7D3DE": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210006,12 +221866,10 @@ "fields": { "0": { "plots": { - "258890580795053": "0x4c565a43b9", - "266899609550289": "0x13f2c8900f" + "319063706774890": "0x473ed82d8" }, "plotIndexes": [ - "0xeb75a91a9ead", - "0xf2be686afdd1" + "0x1222fcee72d6a" ] } }, @@ -210023,7 +221881,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x6CC9b3940EB6d94cad1A25c437d9bE966Af821E3": { + "0xbFC415Eb25AaCbEEf20aE5BC35f1F4CfdE9e3FC6": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210036,10 +221894,10 @@ "fields": { "0": { "plots": { - "256776481524757": "0xc09838a659" + "321992733053410": "0x44ed45c6fd" }, "plotIndexes": [ - "0xe9896ef7cc15" + "0x124d9c67951e2" ] } }, @@ -210051,7 +221909,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x0A7ED639830269B08eE845776E9b7a9EFD178574": { + "0x28aB25Bf7A691416445A85290717260971151eD2": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210064,10 +221922,10 @@ "fields": { "0": { "plots": { - "255934954982596": "0x2a572cb9f" + "328451525907964": "0x2ae1934dc" }, "plotIndexes": [ - "0xe8c58013ccc4" + "0x12ab9948715fc" ] } }, @@ -210079,23 +221937,35 @@ "internalTokenBalance": {}, "sop": {} }, - "0x09DaDF51d403684A67886DB545AE1703d7856056": { + "0xB3561671651455D2E8BF99d2f9E2257f2a313a2c": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "249945795286716": "0x16c4c2ca2b" + "323131389358954": "0xe5afc575f", + "360158682891399": "0x180d273e80", + "360752435099540": "0x167b093106", + "403118995799810": "0x3f5badd36", + "402764778389025": "0xc8ddd4c77", + "401959009163867": "0x9dad946f5", + "404743790158374": "0xd38871ecc" }, "plotIndexes": [ - "0xe3530a5756bc" + "0x125e2e3adb36a", + "0x1478ffa5b4487", + "0x1481a38bef794", + "0x16ea2748bff02", + "0x16e4ffb8b3e21", + "0x16d945ff49a5b", + "0x1701cc1d66226" ] } }, @@ -210107,7 +221977,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xB8eCEcF183e45D6EB8A06E2F27354d1c3940aA76": { + "0x0690166a66626C670be8f1A09bcC4D23c0838D35": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210120,10 +221990,10 @@ "fields": { "0": { "plots": { - "260441761027924": "0x4e4762341" + "325551813699206": "0x3d99cba01" }, "plotIndexes": [ - "0xecded2a69754" + "0x1281670362686" ] } }, @@ -210135,7 +222005,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x7eFaC69750cc933e7830829474F86149A7DD8e35": { + "0x8665E6A5c02FF4fCbE83d998982E4c08791b54e5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210148,15 +222018,20 @@ "fields": { "0": { "plots": { - "261973680486751": "0x29cec07ce7", - "261973679486751": "0xf4240", - "271999469298681": "0x4438dab0a1" + "327158585388232": "0x161f40bc05", + "326820555366865": "0xc37cd3c61", + "489512551216130": "0x1f2c3c9f9a" }, "plotIndexes": [ - "0xee43802a795f", - "0xee43801b371f", - "0xf761cfbf23f9" + "0x1298c8b446cc8", + "0x1293dd71ba1d1", + "0x1bd3585ba7402" ] +======= + "306189714236944": "0x5385b148" + }, + "plotIndexes": ["0x1167a5926a610"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -210167,7 +222042,9 @@ "internalTokenBalance": {}, "sop": {} }, - "0x09147d29d27E0c8122fC0b66Ff6Ca060Cda40aDc": { +<<<<<<< HEAD +======= + "0xda333519D92b4D7a83DBAACB4fd7a31cDB4f24A4": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210180,13 +222057,10 @@ "fields": { "0": { "plots": { - "263444366219049": "0x1256f2be7b", - "340340310399004": "0x2d3a5b1dce" + "325505735571790": "0xaba786d38", + "324929278595488": "0x560b3e7b6" }, - "plotIndexes": [ - "0xef99ebddd729", - "0x13589a74dd81c" - ] + "plotIndexes": ["0x1280bb5bdb94e", "0x127857e3a51a0"] } }, "depositAllowances": {}, @@ -210197,7 +222071,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x15682A522C149029F90108e2792A114E94AB4187": { + "0x7D575d5Fcf60bf3Ce92bb0A634277A1C05A273Cb": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210210,13 +222084,9 @@ "fields": { "0": { "plots": { - "262244417024534": "0x2515b8b98", - "262254371913134": "0x4a87e2370" + "325418628636859": "0x33b7ad7ff" }, - "plotIndexes": [ - "0xee8289523216", - "0xee84daadbdae" - ] + "plotIndexes": ["0x127f76dc360bb"] } }, "depositAllowances": {}, @@ -210227,7 +222097,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x61C562283B268F982ffa1334B643118eACF54480": { + "0x215F97a79287BE4192990FCc4555F7a102a7D3DE": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210240,11 +222110,9 @@ "fields": { "0": { "plots": { - "266885888878451": "0x331d0d65e" + "319063706774890": "0x473ed82d8" }, - "plotIndexes": [ - "0xf2bb369a2773" - ] + "plotIndexes": ["0x1222fcee72d6a"] } }, "depositAllowances": {}, @@ -210255,24 +222123,22 @@ "internalTokenBalance": {}, "sop": {} }, - "0x27553635B0EA3E0d4b551c61Ea89c9c1b81e266f": { + "0xbFC415Eb25AaCbEEf20aE5BC35f1F4CfdE9e3FC6": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "262570166065123": "0x3aed7b847" + "321992733053410": "0x44ed45c6fd" }, - "plotIndexes": [ - "0xeece617a17e3" - ] + "plotIndexes": ["0x124d9c67951e2"] } }, "depositAllowances": {}, @@ -210283,7 +222149,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x9B6425F32361eE115C7A2170349a8f5a3A51b0F0": { + "0x28aB25Bf7A691416445A85290717260971151eD2": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210296,11 +222162,9 @@ "fields": { "0": { "plots": { - "262389497183414": "0xf5ebb46c3" + "328451525907964": "0x2ae1934dc" }, - "plotIndexes": [ - "0xeea450c5bcb6" - ] + "plotIndexes": ["0x12ab9948715fc"] } }, "depositAllowances": {}, @@ -210311,7 +222175,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xB5030cAc364bE50104803A49C30CCfA0d6A48629": { + "0xB3561671651455D2E8BF99d2f9E2257f2a313a2c": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210324,10 +222188,22 @@ "fields": { "0": { "plots": { - "271716973263145": "0x2e207363ee" + "323131389358954": "0xe5afc575f", + "360158682891399": "0x180d273e80", + "360752435099540": "0x167b093106", + "403118995799810": "0x3f5badd36", + "402764778389025": "0xc8ddd4c77", + "401959009163867": "0x9dad946f5", + "404743790158374": "0xd38871ecc" }, "plotIndexes": [ - "0xf72009abb929" + "0x125e2e3adb36a", + "0x1478ffa5b4487", + "0x1481a38bef794", + "0x16ea2748bff02", + "0x16e4ffb8b3e21", + "0x16d945ff49a5b", + "0x1701cc1d66226" ] } }, @@ -210339,7 +222215,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x7c9551322a2e259830A7357e436107565EA79205": { + "0x0690166a66626C670be8f1A09bcC4D23c0838D35": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210352,21 +222228,9 @@ "fields": { "0": { "plots": { - "270707790419553": "0xa62875b42", - "334808594828075": "0x4c60f72ce", - "491177308591557": "0x51a462b5b", - "625298680160271": "0x3aeaf49280", - "643112195637173": "0x1aad800d00", - "712108719670625": "0x1d57d0a767" + "325551813699206": "0x3d99cba01" }, - "plotIndexes": [ - "0xf63511af9661", - "0x13081b35ccb2b", - "0x1beb9210015c5", - "0x238b4b1b5a00f", - "0x248e839f8bfb5", - "0x287a8bb470561" - ] + "plotIndexes": ["0x1281670362686"] } }, "depositAllowances": {}, @@ -210377,24 +222241,24 @@ "internalTokenBalance": {}, "sop": {} }, - "0x953Ba402AE27a6561e09edFDF12A2F5D4e7e9C95": { + "0x8665E6A5c02FF4fCbE83d998982E4c08791b54e5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "264546765360408": "0xa88282fea" + "327158585388232": "0x161f40bc05", + "326820555366865": "0xc37cd3c61", + "489512551216130": "0x1f2c3c9f9a" }, - "plotIndexes": [ - "0xf09a97f9cd18" - ] + "plotIndexes": ["0x1298c8b446cc8", "0x1293dd71ba1d1", "0x1bd3585ba7402"] } }, "depositAllowances": {}, @@ -210405,7 +222269,8 @@ "internalTokenBalance": {}, "sop": {} }, - "0x925D19C24fa0b14e4eFfBE6349E387f0751f8f36": { +>>>>>>> b689ac329 (feat: update reseed jsons) + "0xCB2d95308f1f7db3e53E4389A90798d3F7219a7e": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210418,11 +222283,15 @@ "fields": { "0": { "plots": { - "262220837330704": "0x41a7c3dbe" + "325442315999585": "0xb01bbb7ba" }, +<<<<<<< HEAD "plotIndexes": [ - "0xee7d0bdc9f10" + "0x127fcf1a3d961" ] +======= + "plotIndexes": ["0x127fcf1a3d961"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -210433,7 +222302,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xCfCF5A55708Cd1Ae90fdcad70C7445073eB04d94": { + "0xF1F2581Bd9BBd76134d5f111cA5CFF0a9753FD8E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210446,10 +222315,13 @@ "fields": { "0": { "plots": { - "272383450599356": "0x111c2e99f3" + "324952375834966": "0x2023eb68f1", + "325090417418823": "0x3eccba73d5" }, +<<<<<<< HEAD "plotIndexes": [ - "0xf7bb36d0cfbc" + "0x1278adeee3956", + "0x127ab02d9a247" ] } }, @@ -210461,7 +222333,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x59b9540ee2A8b2ab527a5312Ab622582b884749B": { + "0x8e8357E84BCDbbA27dC0470cD9F84A9DFb86870f": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210474,10 +222346,12 @@ "fields": { "0": { "plots": { - "274578680043801": "0x35a4e900" + "323055821493827": "0xa1640bba4", + "328737849859671": "0xb1a89e4b3" }, "plotIndexes": [ - "0xf9ba54afd919" + "0x125d14b7b9643", + "0x12afc3ec3de57" ] } }, @@ -210489,23 +222363,29 @@ "internalTokenBalance": {}, "sop": {} }, - "0xde8351633c96Ac16860a78D90D3311fa390182BF": { + "0x299e4B9591993c6001822baCF41aff63F9C1C93F": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "277537073969119": "0x13ee50c261" + "321198027851647": "0xb9081f0a63", + "328785539744522": "0x2300c040f9", + "356266241722575": "0x25f34e2918b", + "358874174134874": "0xb2684e00ad" }, "plotIndexes": [ - "0xfc6b22b4b7df" + "0x12420be5a477f", + "0x12b07594dc30a", + "0x14405b2c888cf", + "0x14664e7ab1a5a" ] } }, @@ -210517,7 +222397,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xD49946B3dA0428fE4E69c5F4D6c4125e5D0bf942": { + "0xae5c0ff6738cE54598C00ca3d14dC71176a9d929": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210530,13 +222410,14 @@ "fields": { "0": { "plots": { - "277622676617792": "0x14fd0f2e8a", - "277712821594314": "0x18330ebf32" + "327253599004877": "0x364149a17" }, "plotIndexes": [ - "0xfc7f11057a40", - "0xfc940e14a8ca" + "0x129a2aa8528cd" ] +======= + "plotIndexes": ["0x1278adeee3956", "0x127ab02d9a247"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -210547,7 +222428,9 @@ "internalTokenBalance": {}, "sop": {} }, - "0xcD26f79e60fd260c867EEbAeAB45e021bAeCe92D": { +<<<<<<< HEAD +======= + "0x8e8357E84BCDbbA27dC0470cD9F84A9DFb86870f": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210560,11 +222443,10 @@ "fields": { "0": { "plots": { - "274579580043801": "0x1a8f65e31" + "323055821493827": "0xa1640bba4", + "328737849859671": "0xb1a89e4b3" }, - "plotIndexes": [ - "0xf9ba8a54c219" - ] + "plotIndexes": ["0x125d14b7b9643", "0x12afc3ec3de57"] } }, "depositAllowances": {}, @@ -210575,7 +222457,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x80771B6DC16d2c8C291e84C8f6D820150567534C": { + "0x299e4B9591993c6001822baCF41aff63F9C1C93F": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210588,13 +222470,12 @@ "fields": { "0": { "plots": { - "274586709729354": "0x351cf5dd9", - "274600967175715": "0x2b79fc238d" + "321198027851647": "0xb9081f0a63", + "328785539744522": "0x2300c040f9", + "356266241722575": "0x25f34e2918b", + "358874174134874": "0xb2684e00ad" }, - "plotIndexes": [ - "0xf9bc334b204a", - "0xf9bf851a7e23" - ] + "plotIndexes": ["0x12420be5a477f", "0x12b07594dc30a", "0x14405b2c888cf", "0x14664e7ab1a5a"] } }, "depositAllowances": {}, @@ -210605,7 +222486,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xDB2480a43C79126F93Bd5a825dc0CBa46d7C0612": { + "0xae5c0ff6738cE54598C00ca3d14dC71176a9d929": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210618,13 +222499,9 @@ "fields": { "0": { "plots": { - "273275462311532": "0x1c99dd", - "376596837312302": "0x20b464" + "327253599004877": "0x364149a17" }, - "plotIndexes": [ - "0xf88ae6db5e6c", - "0x1568348b6272e" - ] + "plotIndexes": ["0x129a2aa8528cd"] } }, "depositAllowances": {}, @@ -210632,12 +222509,11 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xf2eb8" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x0A0761a91009101a86B7a0D786dBbA744cE2E240": { +>>>>>>> b689ac329 (feat: update reseed jsons) + "0x08507B93B82152488512fe20Da7E42F4260D1209": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210650,13 +222526,10 @@ "fields": { "0": { "plots": { - "277532421339407": "0x115517ed0", - "278185787491171": "0x14e6fef49" + "328361555137833": "0x103e141da9", + "379374817295263": "0x1859a682fb" }, - "plotIndexes": [ - "0xfc6a0d63390f", - "0xfd022d0b8363" - ] + "plotIndexes": ["0x12aa4a1da1529", "0x1590a1538bb9f"] } }, "depositAllowances": {}, @@ -210667,24 +222540,22 @@ "internalTokenBalance": {}, "sop": {} }, - "0x0F0520237DB57A05728fa0880F8f08A1fd57ccff": { + "0xF4a04D998A8d6Cf89C9328486a952874E50892DC": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "276395162620514": "0x259e55b10" + "321094975835782": "0xbc015822e" }, - "plotIndexes": [ - "0xfb61437c5262" - ] + "plotIndexes": ["0x12408bff94e86"] } }, "depositAllowances": {}, @@ -210695,24 +222566,30 @@ "internalTokenBalance": {}, "sop": {} }, - "0x368a5564F46Bd896C8b365A2Dd45536252008372": { + "0xa4BaD700438B907A781d5362bB3dEb7c0dC29dC5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "273379926066013": "0x2b56a3043c" + "328698722691368": "0x1a2f65", + "650916041448649": "0x9a50e7b3" }, +<<<<<<< HEAD "plotIndexes": [ - "0xf8a33961c35d" + "0x12af3229aa928", + "0x25001336ddcc9" ] +======= + "plotIndexes": ["0x12af3229aa928", "0x25001336ddcc9"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -210723,7 +222600,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xD0126092d4292F8DC755E6d8eEE8106fbf84583D": { + "0x26AFBbC659076B062548e8f46D424842Bc715064": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210736,13 +222613,15 @@ "fields": { "0": { "plots": { - "276405260758386": "0x2603916394", - "285840847218881": "0x122dcec3e6" + "320072143901269": "0x15e6d58d36" }, +<<<<<<< HEAD "plotIndexes": [ - "0xfb639d61ad72", - "0x103f8822928c1" + "0x1231a9a709255" ] +======= + "plotIndexes": ["0x1231a9a709255"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -210753,7 +222632,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x0B7021897485cC2Db909866D78A1D82657A4be6F": { + "0x317B157e02c3b5A16Efc3cc4eb26ACcC1cfF24e3": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210766,13 +222645,15 @@ "fields": { "0": { "plots": { - "273335862185061": "0xa426976f8", - "318810216692840": "0x918f92667" + "319579237582534": "0x46bfbd257" }, +<<<<<<< HEAD "plotIndexes": [ - "0xf898f6f84c65", - "0x121f4c9b77c68" + "0x122a7d6ef06c6" ] +======= + "plotIndexes": ["0x122a7d6ef06c6"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -210783,7 +222664,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xEF64581Af57dFEc2722e618d4Dd5f3c9934C17De": { + "0x16b5e68f83684740b2DA481DB60EAb42362884b9": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210796,13 +222677,15 @@ "fields": { "0": { "plots": { - "273653841644570": "0xf93c297b8", - "386540379495873": "0xaa335ec15" + "328466688526802": "0x25c16fef8" }, +<<<<<<< HEAD "plotIndexes": [ - "0xf8e30005cc1a", - "0x15f8e7202ddc1" + "0x12abd1c4a49d2" ] +======= + "plotIndexes": ["0x12abd1c4a49d2"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -210813,7 +222696,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x17536a82E8721E8DC61Ab12a08c4BfE3fd7fD2C7": { + "0x990cf47831822275a365e0C9239DC534b833922D": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210826,17 +222709,15 @@ "fields": { "0": { "plots": { - "284761889788419": "0xc81347526", - "283862931443313": "0x3394c08e9", - "322288771602655": "0xb297bc7d64", - "335611264683963": "0x325142938f3" + "328463036730072": "0xd9a9fefa" }, +<<<<<<< HEAD "plotIndexes": [ - "0x102fd4b495203", - "0x1022bfd318e71", - "0x1251eb3bf18df", - "0x1313c9636cfbb" + "0x12abc42a04ad8" ] +======= + "plotIndexes": ["0x12abc42a04ad8"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -210847,7 +222728,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x019285701d4502df31141dF600A472c61c054e63": { + "0xA371bDFc449B2770cc560A6BD2E2176c6E2dc797": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210860,13 +222741,15 @@ "fields": { "0": { "plots": { - "285400078671087": "0x18d5500481", - "295033968260116": "0x17c29d2b57" + "328269884139182": "0x2584d476a" }, +<<<<<<< HEAD "plotIndexes": [ - "0x10391e24edcef", - "0x10c54f2dff414" + "0x12a8f49d5a6ae" ] +======= + "plotIndexes": ["0x12a8f49d5a6ae"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -210877,7 +222760,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x110dfBb05F447880B9B29206c1140C07372090dc": { + "0xAA940d97Bd90B74991AB6029d35bf5Fc3BfEdB01": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210890,11 +222773,15 @@ "fields": { "0": { "plots": { - "282823933037116": "0x60da74f02" + "331560641183352": "0x832e34ffa" }, +<<<<<<< HEAD "plotIndexes": [ - "0x1013a14100a3c" + "0x12d8d7a3d3e78" ] +======= + "plotIndexes": ["0x12d8d7a3d3e78"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -210905,24 +222792,30 @@ "internalTokenBalance": {}, "sop": {} }, - "0x6039675c6D83B0B26F647AE3d33F7C34B8Ea945a": { + "0x81eee01e854EC8b498543d9C2586e6aDCa3E2006": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "289487146073469": "0x8bbf6ca8a" + "334136741601312": "0x440c82dd49", + "328965644144808": "0x2e34ec22f9" }, +<<<<<<< HEAD "plotIndexes": [ - "0x107497a823d7d" + "0x12fe545ca2020", + "0x12b31485cd0a8" ] +======= + "plotIndexes": ["0x12fe545ca2020", "0x12b31485cd0a8"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -210933,7 +222826,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x97Ada2E26C06C263c68ECCe43756708d0f03D94A": { + "0x96e6c919DCb6A3aD6Bb770cE5e95Bc0dB9b827d6": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210946,11 +222839,15 @@ "fields": { "0": { "plots": { - "281369121491336": "0x1866644d90" + "343948668440753": "0x3eabdfa67a" }, +<<<<<<< HEAD "plotIndexes": [ - "0xffe75a898988" + "0x138d1ca3410b1" ] +======= + "plotIndexes": ["0x138d1ca3410b1"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -210961,7 +222858,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF8444CF11708d3901Ee7B981b204eD0c7130fB93": { + "0x6D7e07990c35dEAC0cEb1104e4dC9301FE6b9968": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -210974,19 +222871,15 @@ "fields": { "0": { "plots": { - "286712631781524": "0xdf1071dc9b", - "285918925155495": "0xb8cc99fbed", - "287670685386031": "0x91693e6f4f", - "327268162978532": "0x70b04663e0", - "368431939737151": "0xe9f06c9179" + "334477990711769": "0x521c72298" }, +<<<<<<< HEAD "plotIndexes": [ - "0x104c37c91e894", - "0x1040aaff7eca7", - "0x105a28d03c52f", - "0x129a60e99c2e4", - "0x14f163ee4563f" + "0x13034b9d251d9" ] +======= + "plotIndexes": ["0x13034b9d251d9"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -210997,7 +222890,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x651afE5D50d1cD8F7D891dd6bc2a3Db4A14E5287": { + "0x671ec816F329ddc7c78137522Ea52e6FBC8decCD": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211010,11 +222903,19 @@ "fields": { "0": { "plots": { - "280705451279893": "0x1210ed74ef" + "328954278824745": "0x1a05df49", + "334845655178581": "0x171e3f743", + "376884850195985": "0x37673e19" }, +<<<<<<< HEAD "plotIndexes": [ - "0xff4cd4b5c615" + "0x12b2ea2efcb29", + "0x1308a5454dd55", + "0x156c6579dfe11" ] +======= + "plotIndexes": ["0x12b2ea2efcb29", "0x1308a5454dd55", "0x156c6579dfe11"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -211022,29 +222923,27 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x2cac8a" + }, "sop": {} }, - "0x79645bfB4Ef32902F4ee436A23E4A10A50789e54": { + "0x44F57E6064A6dc13fdD709DE4a8dB1628c9EaceB": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "289603276344849": "0x338f941502", - "289037900183227": "0x656bc88400" + "334679522049415": "0x1bdd0ebff6" }, - "plotIndexes": [ - "0x1076484698e11", - "0x106e0e15df6bb" - ] + "plotIndexes": ["0x13063a6067d87"] } }, "depositAllowances": {}, @@ -211052,27 +222951,27 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x2f3b69b" + }, "sop": {} }, - "0x821bb6973FdA779183d22C9891f566B2e59C8230": { + "0x0FF2FAa2294434919501475CF58117ee89e2729c": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "279899339370850": "0x29db3f4d3" + "340004534903929": "0x292c722d8" }, - "plotIndexes": [ - "0xfe9124b23162" - ] + "plotIndexes": ["0x1353b79866479"] } }, "depositAllowances": {}, @@ -211080,10 +222979,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x5e7bb" + }, "sop": {} }, - "0x49444e6d0b374f33c43D5d27c53d0504241B9553": { + "0xaDd2955F0efC871902A7E421054DA7E6734d3DCA": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211096,17 +222997,17 @@ "fields": { "0": { "plots": { - "289598528304849": "0x11b015740", - "325785700465033": "0xb28ee4080", - "333897831019794": "0xb788f26ac", - "372461099911308": "0x157adb58ab" + "340002929884824": "0x5faaa5e1", + "340001324834920": "0x5fab1e30" }, +<<<<<<< HEAD "plotIndexes": [ - "0x10763696836d1", - "0x1284ce4f2f989", - "0x12fada59bf512", - "0x152c05b8d888c" + "0x1353b19dbbe98", + "0x1353aba30a068" ] +======= + "plotIndexes": ["0x1353b19dbbe98", "0x1353aba30a068"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -211117,7 +223018,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x0e56C87075CD53477C497D5B5F68CdcA8605cBF7": { + "0x8fCC6548DE7c4A1e5F5c196dE1b62c423E61cdaf": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211130,13 +223031,15 @@ "fields": { "0": { "plots": { - "283860746063250": "0x824240df", - "311893596417096": "0x1c0c11bbc" + "340544190818194": "0x4f94be3ef" }, +<<<<<<< HEAD "plotIndexes": [ - "0x1022b7aef4d92", - "0x11baa6305ac48" + "0x135b91f862792" ] +======= + "plotIndexes": ["0x135b91f862792"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -211147,7 +223050,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xc32B1e77879F3544e629261E711A0cc87ae01182": { + "0xcc5b337cd28b330705e2949a3e28e7EcA33FABF3": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211160,11 +223063,9 @@ "fields": { "0": { "plots": { - "281343170282469": "0x27745758c" + "344217839974187": "0x212531cef2" }, - "plotIndexes": [ - "0xffe14fb983e5" - ] + "plotIndexes": ["0x139107613b72b"] } }, "depositAllowances": {}, @@ -211175,7 +223076,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF57c5533a9037E25E5688726fbccD03E09738aCd": { + "0xF6FE6b3f7792B0a3E3E92Fdbe42B381395C2BBd8": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211188,11 +223089,9 @@ "fields": { "0": { "plots": { - "290667882932090": "0x382931703" + "334637636520317": "0x3f31aace1" }, - "plotIndexes": [ - "0x1085c63e8e77a" - ] + "plotIndexes": ["0x13059e574097d"] } }, "depositAllowances": {}, @@ -211203,24 +223102,22 @@ "internalTokenBalance": {}, "sop": {} }, - "0x5edd743E40c978590d987c74912b9424B7258677": { + "0x11C90869aC2a2Dde39B5DafeDc6C7fF48A8fDaE0": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x401", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "282938006963034": "0x116db8888" + "328935876199427": "0x448e1c726" }, - "plotIndexes": [ - "0x10154a366035a" - ] + "plotIndexes": ["0x12b2a5a0e0403"] } }, "depositAllowances": {}, @@ -211231,24 +223128,22 @@ "internalTokenBalance": {}, "sop": {} }, - "0x7e53AF93688908D67fc3ddcE3f4B033dBc257C20": { + "0x15cdD0c3D5650A2FE14D5d1a85F6B1123b81A2DB": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "280702256803893": "0xbe67d5e0" + "333887021019794": "0x284538280" }, - "plotIndexes": [ - "0xff4c164df035" - ] + "plotIndexes": ["0x12fab21487292"] } }, "depositAllowances": {}, @@ -211259,7 +223154,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xeeBF4Ea438D5216115577f9340cD4fB0EDD29BD9": { + "0x5AdCa33aFC3D57C1193Cc83D562aBFE523412725": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211272,13 +223167,9 @@ "fields": { "0": { "plots": { - "279922610063052": "0xf1d9b05b", - "334851860911256": "0x1737161ad8" + "331622129302332": "0xf9544bbc52" }, - "plotIndexes": [ - "0xfe968fbcc6cc", - "0x1308bc638d498" - ] + "plotIndexes": ["0x12d9bcb377b3c"] } }, "depositAllowances": {}, @@ -211289,7 +223180,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8E8Ae083aC4455108829789e8ACb4DbdDe330e2E": { + "0x201ad214891136FC37750029A14008D99B9ab814": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211302,11 +223193,9 @@ "fields": { "0": { "plots": { - "289524659324935": "0x95033ae50" + "334959543421596": "0x1957f7334e" }, - "plotIndexes": [ - "0x1075236790807" - ] + "plotIndexes": ["0x130a4d8998a9c"] } }, "depositAllowances": {}, @@ -211317,26 +223206,22 @@ "internalTokenBalance": {}, "sop": {} }, - "0x89AA0D7EBdCc58D230aF421676A8F62cA168d57a": { + "0x355C6d4ee23c2eA9345442f3Fe671Fa3C8612209": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "289473500183227": "0x32d5bc2c2", - "465942921824991": "0x324cf5720" + "353389703784413": "0x1fc332ed017" }, - "plotIndexes": [ - "0x107464d267abb", - "0x1a7c5ca574adf" - ] + "plotIndexes": ["0x14167f3c2e7dd"] } }, "depositAllowances": {}, @@ -211344,12 +223229,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x166d0ca" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x3BD4c721C1b547Ea42F728B5a19eB6233803963E": { + "0x3C8cD5597ac98cB0871Db580d3C9A86a384B9106": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211362,11 +223245,9 @@ "fields": { "0": { "plots": { - "279910575121973": "0x2cd56a097" + "333010214249215": "0x1714b115a2" }, - "plotIndexes": [ - "0xfe93c2662635" - ] + "plotIndexes": ["0x12edefb86e2ff"] } }, "depositAllowances": {}, @@ -211377,7 +223258,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x99997957BF3c202446b1DCB1CAc885348C5b2222": { + "0x9Fa8cd4FacBeb2a9A706864cBE4c0170D6D3caE1": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211390,13 +223271,9 @@ "fields": { "0": { "plots": { - "285760338065737": "0x54378b3c0", - "298929583976174": "0xf7ec009ac" + "340565553187713": "0x2cba95f6fe7" }, - "plotIndexes": [ - "0x103e5c370f949", - "0x10fdff7aa6eee" - ] + "plotIndexes": ["0x135be18d20b81"] } }, "depositAllowances": {}, @@ -211407,7 +223284,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x4DA9d25c0203Dc7Ce50c87Df2eb6C9068Eca256E": { + "0xF6FE6b3f7792B0a3E3E92Fdbe42B381395C2BBd8": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211420,10 +223297,10 @@ "fields": { "0": { "plots": { - "281360732660114": "0x1f40367f6" + "334637636520317": "0x3f31aace1" }, "plotIndexes": [ - "0xffe566862192" + "0x13059e574097d" ] } }, @@ -211435,7 +223312,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x74fEd61c646B86c0BCd261EcfE69c7C7d5E16b81": { + "0x11C90869aC2a2Dde39B5DafeDc6C7fF48A8fDaE0": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211448,10 +223325,10 @@ "fields": { "0": { "plots": { - "288652038051959": "0x3fca11c2a5" + "328935876199427": "0x448e1c726" }, "plotIndexes": [ - "0x106870a311877" + "0x12b2a5a0e0403" ] } }, @@ -211463,25 +223340,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x6d26C4f242971eaCCe5Dc1EAEd77a76F5705B190": { + "0x15cdD0c3D5650A2FE14D5d1a85F6B1123b81A2DB": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "289570099594839": "0x8824d49c", - "325489589719323": "0x3c25e2833" + "333887021019794": "0x284538280" }, "plotIndexes": [ - "0x1075ccaec8657", - "0x12807f35f911b" + "0x12fab21487292" ] } }, @@ -211493,7 +223368,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x90B113Cf662039394D28505f51f0B1B4678Cc3b5": { + "0x5AdCa33aFC3D57C1193Cc83D562aBFE523412725": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211506,10 +223381,10 @@ "fields": { "0": { "plots": { - "280783044688644": "0x2eceea4b0" + "331622129302332": "0xf9544bbc52" }, "plotIndexes": [ - "0xff5ee5a33b04" + "0x12d9bcb377b3c" ] } }, @@ -211518,12 +223393,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x29f6bb0d" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x382C29bB63Af1E6Bd3Fc818FeA85bd25Afb0E92E": { + "0x201ad214891136FC37750029A14008D99B9ab814": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211536,10 +223409,10 @@ "fields": { "0": { "plots": { - "288522664536795": "0x15247153d9" + "334959543421596": "0x1957f7334e" }, "plotIndexes": [ - "0x10668eaedeadb" + "0x130a4d8998a9c" ] } }, @@ -211551,29 +223424,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x682a4c54F9c9cE3a66700AE6f3b67f5984D85C21": { + "0x355C6d4ee23c2eA9345442f3Fe671Fa3C8612209": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "298426082271272": "0x7f5a25c40", - "298739111357662": "0x2c590d8210", - "318131255471558": "0x723730fe71", - "318849290379983": "0x2d7802825b" + "353389703784413": "0x1fc332ed017" }, "plotIndexes": [ - "0x10f6abca02028", - "0x10fb39e9cecde", - "0x12156b4796dc6", - "0x121fde2b0a2cf" + "0x14167f3c2e7dd" ] } }, @@ -211585,7 +223452,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xFe2da4E7e3675b00BE2Ff58c6a018Ed06237C81D": { + "0x3C8cD5597ac98cB0871Db580d3C9A86a384B9106": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211598,10 +223465,10 @@ "fields": { "0": { "plots": { - "295372378685570": "0x34cc0b749" + "333010214249215": "0x1714b115a2" }, "plotIndexes": [ - "0x10ca3bdb54082" + "0x12edefb86e2ff" ] } }, @@ -211613,7 +223480,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xdF3A7C30313779D3b6AA577A28456259226Ff452": { + "0x9Fa8cd4FacBeb2a9A706864cBE4c0170D6D3caE1": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211626,10 +223493,10 @@ "fields": { "0": { "plots": { - "298546668100712": "0x71d22e703" + "340565553187713": "0x2cba95f6fe7" }, "plotIndexes": [ - "0x10f86d019dc68" + "0x135be18d20b81" ] } }, @@ -211641,7 +223508,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x93b34d74a134b403450f993e3f2fb75B751fa3d6": { + "0x17a9341a60EF47E861ea53E58e41250Fc9B55DFb": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211654,24 +223521,26 @@ "fields": { "0": { "plots": { - "296797858583543": "0x208bb44280" + "343677590063786": "0x476fb52b3" }, +<<<<<<< HEAD "plotIndexes": [ - "0x10defa2ee53f7" + "0x13892acac4aaa" ] +======= + "plotIndexes": ["0x13892acac4aaa"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, "tokenAllowances": {}, "mowStatuses": {}, "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x1cc5b5" - }, + "germinatingStalk": {}, + "internalTokenBalance": {}, "sop": {} }, - "0x74b0b7cEa336fBb34Bc23EB58F48AC5e4C04159E": { + "0x59dC1eaE22eEbD6CfbD144ee4b6f4048F8A59880": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211684,17 +223553,9 @@ "fields": { "0": { "plots": { - "297412002527525": "0xdc07230bc", - "300538713353756": "0x46e4b383e", - "295473191285707": "0x496f2323d", - "296283253996855": "0x15fb511801" + "328698724407437": "0x4b6ccad91" }, - "plotIndexes": [ - "0x10e7ea0c33925", - "0x111569f402e1c", - "0x10cbb369b73cb", - "0x10d77d21b7d37" - ] + "plotIndexes": ["0x12af322b4d88d"] } }, "depositAllowances": {}, @@ -211705,23 +223566,26 @@ "internalTokenBalance": {}, "sop": {} }, - "0xFD7998c9c23aa865590fd3405F19c23423a0611B": { + "0x3BD142a93adC0554C69395AAE69433A74CFFc765": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "298460268100712": "0x141dd76000" + "328954715417202": "0x28b672636", + "386387360940641": "0x20f2a20553" }, +<<<<<<< HEAD "plotIndexes": [ - "0x10f72b2427c68" + "0x12b2ebcf5aa72", + "0x15f6ad1650261" ] } }, @@ -211730,10 +223594,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x12e96906" + }, "sop": {} }, - "0xDa12B5133e13e01d95f9a5BE0cc61496b17E5494": { + "0x18Ad8A3387aAc16C794F3b14451C591FeF0344fE": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211746,10 +223612,10 @@ "fields": { "0": { "plots": { - "297843565336066": "0x1b0d0a4020" + "340001324829583": "0x14d9" }, "plotIndexes": [ - "0x10ee31be91602" + "0x1353aba308b8f" ] } }, @@ -211761,7 +223627,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x41a93Eb81720F943FE52b7F72E4a7ac9620AcC54": { + "0xE4202F5919F22377dB816a5D04851557480921dF": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211774,10 +223640,10 @@ "fields": { "0": { "plots": { - "291654604244211": "0xad71848cc" + "343696766115165": "0x476b6f1fa" }, "plotIndexes": [ - "0x10942211544f3" + "0x1389723a79d5d" ] } }, @@ -211786,12 +223652,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xb60206" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x4d26976EC64f11ce10325297363862669fCaAaD5": { + "0xD11FaEdC6F7af5b05137A3F62cb836Ab0aE5dbb6": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211804,10 +223668,10 @@ "fields": { "0": { "plots": { - "293290104729008": "0x1633af4b50" + "329207240531105": "0x1fc858f033" }, "plotIndexes": [ - "0x10abeec822db0" + "0x12b6988a11ca1" ] } }, @@ -211819,7 +223683,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xe2282eA0D41b1a9D99B593e81D9adb500476C7C5": { + "0xDecaFa57F07292a338E59242AaC289594E6A0d68": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211832,10 +223696,10 @@ "fields": { "0": { "plots": { - "297959748228642": "0xa20c0e1f1" + "332704987205231": "0x209c877f66" }, "plotIndexes": [ - "0x10efe28f35622" + "0x12e97ea93ce6f" ] } }, @@ -211847,7 +223711,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x08b6e06F64f62b7255840329b2DDB592d6A2c336": { + "0x095CB8F5E61b69A0C2fE075A772bb953f2d11C2A": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211860,10 +223724,10 @@ "fields": { "0": { "plots": { - "293279130525087": "0x28e1d1011" + "339210737506518": "0x17f6e7d50f" }, "plotIndexes": [ - "0x10abc5e651d9f" + "0x13482a78358d6" ] } }, @@ -211875,7 +223739,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xEC9F16FAacD809ED3EC90D22C92cE84C5C115FAC": { + "0x82CFf592c2D9238f05E0007F240c81990f17F764": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211888,12 +223752,10 @@ "fields": { "0": { "plots": { - "297471065811425": "0x5b9521200", - "297503528406965": "0x3d686b5bc" + "334800355703455": "0x1eb17108c" }, "plotIndexes": [ - "0x10e8c613569e1", - "0x10e93f0214fb5" + "0x1307fc845ba9f" ] } }, @@ -211902,12 +223764,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x2f02075d" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x5A803cD039d7c427AD01875990f76886cC574339": { + "0x8bFe70E2D583f512E7248D67ACE918116B892aeA": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211920,12 +223780,10 @@ "fields": { "0": { "plots": { - "304668727377586": "0xbfc3bba92e", - "303460189172472": "0xeb1283af8c" + "339167269778934": "0xa1ee0e2e0" }, "plotIndexes": [ - "0x115183744feb2", - "0x113fed4c772f8" + "0x1347888a275f6" ] } }, @@ -211937,7 +223795,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x5D177d3f4878038521936e6449C17BeCd2D10cBA": { + "0xcB0838c828Ec4911f6a0ba48e58BC67a8c5f9c3f": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211950,10 +223808,10 @@ "fields": { "0": { "plots": { - "302037489993568": "0x688b86ee8" + "360153486671689": "0x8d8b8050" }, "plotIndexes": [ - "0x112b3954cc760" + "0x1478ec4a33f49" ] } }, @@ -211965,7 +223823,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8eaA2d22eDd38E9769a9Ec7505bDe53933294DB1": { + "0xe496c05e5E2a669cc60ab70572776ee22CA17F03": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -211978,11 +223836,16 @@ "fields": { "0": { "plots": { - "311951348717264": "0x4ace2a3d8" + "376760788400310": "0x19ccd6160", + "451603278508011": "0x13f8e32d1" }, "plotIndexes": [ - "0x11bb7d553d6d0" + "0x156a974f538b6", + "0x19abb14feafeb" ] +======= + "plotIndexes": ["0x12b2ebcf5aa72", "0x15f6ad1650261"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -211990,29 +223853,43 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x12e96906" + }, "sop": {} }, - "0xD2927a91570146218eD700566DF516d67C5ECFAB": { +<<<<<<< HEAD + "0x8e5465757BAC6235C32670a1eDF15c0437cA4fE1": { +======= + "0x18Ad8A3387aAc16C794F3b14451C591FeF0344fE": { +>>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", +<<<<<<< HEAD + "lastSop": "0x42b", +======= "lastSop": "0x0", +>>>>>>> b689ac329 (feat: update reseed jsons) "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "311239094540889": "0x4c5003", - "461998949157639": "0x3dae612baf" +<<<<<<< HEAD + "356013940250669": "0x320b5eb04f" }, "plotIndexes": [ - "0x11b11ffab9a59", - "0x1a42f83404b07" + "0x143caf471982d" ] +======= + "340001324829583": "0x14d9" + }, + "plotIndexes": ["0x1353aba308b8f"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -212023,7 +223900,11 @@ "internalTokenBalance": {}, "sop": {} }, - "0xe4082AaCDEd950C0f21FEbAC03Aa6f48D15cd58D": { +<<<<<<< HEAD + "0x8f2800A82ec05fEB0bcb8AD2A397FF0343C24dF3": { +======= + "0xE4202F5919F22377dB816a5D04851557480921dF": { +>>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212036,10 +223917,11 @@ "fields": { "0": { "plots": { - "306191115507544": "0xafb319da8" +<<<<<<< HEAD + "359857480112013": "0x3eb520f7a" }, "plotIndexes": [ - "0x1167aacac5758" + "0x14749d945978d" ] } }, @@ -212051,7 +223933,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xd6E52faa29312cFda21a8a5962E8568b7cfe179a": { + "0x3f73493ecb5b77fE96044a4c59d66C92B7D488cA": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212064,10 +223946,12 @@ "fields": { "0": { "plots": { - "302424774125728": "0x32e30eaa7" + "359874313037575": "0x4e907048e", + "355806866216773": "0x2ba31ef08c" }, "plotIndexes": [ - "0x1130dc13ba8a0" + "0x1474dc497a707", + "0x1439abdde9745" ] } }, @@ -212079,23 +223963,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0xE6375dF92796f95394a276E0BA4Efc4176D41D49": { + "0x346aa548f2fB418a8c398D2bF879EbCc0A1f891d": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "315485261670410": "0x32c9f0d27c" + "373671956964097": "0x2b462d6d7b" }, "plotIndexes": [ - "0x11eeea2f4280a" + "0x153da4841e301" ] } }, @@ -212107,7 +223991,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x220c12268c6f1744553f456c3BF161bd8b423662": { + "0xF930b0A0500D8F53b2E7EFa4F7bCB5cc0c71067E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212120,10 +224004,10 @@ "fields": { "0": { "plots": { - "311744261169232": "0x36f7611be" + "378561390110104": "0x4d60e64d90" }, "plotIndexes": [ - "0x11b879df2a050" + "0x1584cb12ee598" ] } }, @@ -212135,7 +224019,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xcd1E27461aF28E23bd3e84eD87e2C9a281bF0d9F": { + "0x2352FDd9A457c549D822451B4cD43203580a29d1": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212148,10 +224032,10 @@ "fields": { "0": { "plots": { - "312080923158305": "0xf5b1196c0" + "360910868412337": "0x6d2234999e" }, "plotIndexes": [ - "0x11bd60090e721" + "0x1483f1c1b77b1" ] } }, @@ -212163,23 +224047,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x0948934A39767226E1FfC53bd0B95efa90055178": { + "0x61C95fe68834db2d1f323bb85F0590690002a06d": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "311619295234752": "0x3b93251ca" + "359895402458005": "0x5d21dba00" }, "plotIndexes": [ - "0x11b6a8565cac0" + "0x14752ad9eab95" ] } }, @@ -212191,7 +224075,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x1ef22E33287A5c26CF6b9Ffc49e902830180E3Ca": { + "0xBF843F2AA6425952aE92760250503cE9930342b4": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212204,10 +224088,10 @@ "fields": { "0": { "plots": { - "317838397685316": "0x2c8e58e52" + "377334425097799": "0x156af704ab" }, "plotIndexes": [ - "0x1211284ca3e44" + "0x1572f045e9647" ] } }, @@ -212219,7 +224103,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x34Aec84391B6602e7624363Df85Efe02A1FF35f5": { + "0xa48E7B26036360695be458D6904DE0892a5dB116": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212232,10 +224116,10 @@ "fields": { "0": { "plots": { - "309267907666277": "0x17662a2847" + "361675678821729": "0x53f99d29f2" }, "plotIndexes": [ - "0x119470bc6e165" + "0x148f12e5c2d61" ] } }, @@ -212247,7 +224131,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x349E8490C47f42AB633D9392a077D6F1aF4d4c85": { + "0xcd805F0A5F1A26e3B344b31539AAF84f527Bf2DB": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212260,10 +224144,10 @@ "fields": { "0": { "plots": { - "311971429120680": "0x5d7fcbcd5" + "371946868967109": "0xdb336fd9d" }, "plotIndexes": [ - "0x11bbc82367aa8" + "0x15248a10006c5" ] } }, @@ -212272,10 +224156,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xe89a880" + }, "sop": {} }, - "0xd380b5Fed7b9BaAFF7521aA4cEfC257Db3043d26": { + "0x3810EAcf5020D020B3317B559E59376c5d02dCB2": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212288,10 +224174,10 @@ "fields": { "0": { "plots": { - "311635287219338": "0xd4c6b1494" + "370593639163868": "0x1467aea500" }, "plotIndexes": [ - "0x11b6e3e981c8a" + "0x1510d8e37e7dc" ] } }, @@ -212300,10 +224186,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x1c72ebd5" + }, "sop": {} }, - "0x997563ba8058E80f1E4dd5b7f695b5C2B065408e": { + "0x9D496BA09C9dDAE8de72F146DE012701a10400CC": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212316,10 +224204,10 @@ "fields": { "0": { "plots": { - "312055923158305": "0x5d21dba00" + "359640428256007": "0x32894c7c86" }, "plotIndexes": [ - "0x11bd02e732d21" + "0x147174ff91b07" ] } }, @@ -212331,7 +224219,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x27320AAc0E3bbc165E6048aFc0F28500091dca73": { + "0x8756e7c68221969812d5DaC9B5FB1e59a32a5b1D": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212344,11 +224232,18 @@ "fields": { "0": { "plots": { - "301703166264323": "0x373cbfd71" + "380008273465850": "0x1749419476", + "386673517385669": "0x1b0c8e5783" }, "plotIndexes": [ - "0x11265be0d8403" + "0x1599d9226d1fa", + "0x15fad71a5d7c5" ] +======= + "343696766115165": "0x476b6f1fa" + }, + "plotIndexes": ["0x1389723a79d5d"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -212359,7 +224254,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x5F067841319aD19eD32c432ac69DcF32AC3a773F": { + "0xD11FaEdC6F7af5b05137A3F62cb836Ab0aE5dbb6": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212372,10 +224267,12 @@ "fields": { "0": { "plots": { - "301635847094275": "0xfac890400" + "329207240531105": "0x1fc858f033" }, +<<<<<<< HEAD "plotIndexes": [ - "0x1125611848003" + "0x14830b3c8289a", + "0x25aa3d6845c7d" ] } }, @@ -212384,10 +224281,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xbf98e71" + }, "sop": {} }, - "0xf5f165910e11496C2d1B3D46319a5A07f09Bf2D9": { + "0x70C8eE0223D10c150b0db98A0423EC18Ec5aCa89": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212400,11 +224299,14 @@ "fields": { "0": { "plots": { - "311375845353216": "0x2f394d735b" + "378893728297768": "0x160c75d440" }, "plotIndexes": [ - "0x11b31d6a76700" + "0x1589a12153328" ] +======= + "plotIndexes": ["0x12b6988a11ca1"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -212415,7 +224317,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x4588a155d63CFFC23b3321b4F99E8d34128B227a": { + "0xDecaFa57F07292a338E59242AaC289594E6A0d68": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212428,11 +224330,9 @@ "fields": { "0": { "plots": { - "317739518695316": "0x1705a5a6b0" + "332704987205231": "0x209c877f66" }, - "plotIndexes": [ - "0x120fb7f249794" - ] + "plotIndexes": ["0x12e97ea93ce6f"] } }, "depositAllowances": {}, @@ -212440,29 +224340,39 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x3e0dd" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x669E4aCd20Aa30ABA80483fc8B82aeD626e60B60": { +<<<<<<< HEAD + "0x009A2534fd10c879D69daf4eE3000A6cb7E609Bb": { +======= + "0x095CB8F5E61b69A0C2fE075A772bb953f2d11C2A": { +>>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "306189714236944": "0x5385b148" +<<<<<<< HEAD + "355994286524369": "0x37ca3d46", + "613741059534895": "0x2dfbcca8d" }, "plotIndexes": [ - "0x1167a5926a610" + "0x143c660fd87d1", + "0x22e31b9d6702f" ] +======= + "339210737506518": "0x17f6e7d50f" + }, + "plotIndexes": ["0x13482a78358d6"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -212473,25 +224383,28 @@ "internalTokenBalance": {}, "sop": {} }, - "0xda333519D92b4D7a83DBAACB4fd7a31cDB4f24A4": { +<<<<<<< HEAD + "0x5084949C8f7bf350c646796B242010919f70898E": { +======= + "0x82CFf592c2D9238f05E0007F240c81990f17F764": { +>>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", +<<<<<<< HEAD "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "325505735571790": "0xaba786d38", - "324929278595488": "0x560b3e7b6" + "371914538333765": "0x2ba0111ff" }, "plotIndexes": [ - "0x1280bb5bdb94e", - "0x127857e3a51a0" + "0x1524119f1b645" ] } }, @@ -212503,7 +224416,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x7D575d5Fcf60bf3Ce92bb0A634277A1C05A273Cb": { + "0xc390578437F7BdEe1F766Fdb00f641848bc19366": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212516,10 +224429,10 @@ "fields": { "0": { "plots": { - "325418628636859": "0x33b7ad7ff" + "372433833471833": "0xddf48b30" }, "plotIndexes": [ - "0x127f76dc360bb" + "0x152ba0258af59" ] } }, @@ -212531,7 +224444,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x215F97a79287BE4192990FCc4555F7a102a7D3DE": { + "0xf13D8d9E5Ff8b123ffa5F5e981DA1685275cE176": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212544,10 +224457,12 @@ "fields": { "0": { "plots": { - "319063706774890": "0x473ed82d8" + "377332779708970": "0x6212a41d", + "456719911973263": "0x78364980" }, "plotIndexes": [ - "0x1222fcee72d6a" + "0x1572ea24bf22a", + "0x19f62641d718f" ] } }, @@ -212556,27 +224471,37 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x2462ac4" + }, "sop": {} }, - "0xbFC415Eb25AaCbEEf20aE5BC35f1F4CfdE9e3FC6": { + "0x25CD302E37a69D70a6Ef645dAea5A7de38c66E2a": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x401", +======= +>>>>>>> b689ac329 (feat: update reseed jsons) "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "321992733053410": "0x44ed45c6fd" +<<<<<<< HEAD + "359920402458005": "0x13ca651200" }, "plotIndexes": [ - "0x124d9c67951e2" + "0x147587fbc6595" ] +======= + "334800355703455": "0x1eb17108c" + }, + "plotIndexes": ["0x1307fc845ba9f"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -212587,7 +224512,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x28aB25Bf7A691416445A85290717260971151eD2": { + "0x8bFe70E2D583f512E7248D67ACE918116B892aeA": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212600,10 +224525,12 @@ "fields": { "0": { "plots": { - "328451525907964": "0x2ae1934dc" + "339167269778934": "0xa1ee0e2e0" }, +<<<<<<< HEAD "plotIndexes": [ - "0x12ab9948715fc" + "0x14785e6a443ab", + "0x16e5c89688a98" ] } }, @@ -212615,7 +224542,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xB3561671651455D2E8BF99d2f9E2257f2a313a2c": { + "0xF4E3f1c01BD9A5398B92ac1B8bedb66ba4a2d627": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212628,22 +224555,10 @@ "fields": { "0": { "plots": { - "323131389358954": "0xe5afc575f", - "360158682891399": "0x180d273e80", - "360752435099540": "0x167b093106", - "403118995799810": "0x3f5badd36", - "402764778389025": "0xc8ddd4c77", - "401959009163867": "0x9dad946f5", - "404743790158374": "0xd38871ecc" + "370522581424279": "0x108b5f0f45" }, "plotIndexes": [ - "0x125e2e3adb36a", - "0x1478ffa5b4487", - "0x1481a38bef794", - "0x16ea2748bff02", - "0x16e4ffb8b3e21", - "0x16d945ff49a5b", - "0x1701cc1d66226" + "0x150fd02d8d897" ] } }, @@ -212655,7 +224570,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x0690166a66626C670be8f1A09bcC4D23c0838D35": { + "0x905B2Eb4B731B395E7517a4763CD829F6EC2f510": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212668,10 +224583,10 @@ "fields": { "0": { "plots": { - "325551813699206": "0x3d99cba01" + "379996617045843": "0x2b6c6daa7" }, "plotIndexes": [ - "0x1281670362686" + "0x1599adb5ff753" ] } }, @@ -212683,27 +224598,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8665E6A5c02FF4fCbE83d998982E4c08791b54e5": { + "0x45E5d313030Be8E40FCeB8f03d55300DA6a8799e": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x401", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "327158585388232": "0x161f40bc05", - "326820555366865": "0xc37cd3c61", - "489512551216130": "0x1f2c3c9f9a" + "361666644960846": "0x21a75c713" }, "plotIndexes": [ - "0x1298c8b446cc8", - "0x1293dd71ba1d1", - "0x1bd3585ba7402" + "0x148ef13e6664e" ] } }, @@ -212715,7 +224626,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xCB2d95308f1f7db3e53E4389A90798d3F7219a7e": { + "0xf152581b8cb486b24d73aD51e23a3Fd3E0222538": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212728,10 +224639,10 @@ "fields": { "0": { "plots": { - "325442315999585": "0xb01bbb7ba" + "379603990851302": "0x5b6a58486d" }, "plotIndexes": [ - "0x127fcf1a3d961" + "0x1593f7107aee6" ] } }, @@ -212743,7 +224654,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF1F2581Bd9BBd76134d5f111cA5CFF0a9753FD8E": { + "0x61e193e514DE408F57A648a641d9fcD412CdeD82": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212756,13 +224667,14 @@ "fields": { "0": { "plots": { - "324952375834966": "0x2023eb68f1", - "325090417418823": "0x3eccba73d5" + "377426413984498": "0x10841d94aa6" }, "plotIndexes": [ - "0x1278adeee3956", - "0x127ab02d9a247" + "0x157446f559af2" ] +======= + "plotIndexes": ["0x1347888a275f6"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -212773,26 +224685,24 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8e8357E84BCDbbA27dC0470cD9F84A9DFb86870f": { +<<<<<<< HEAD +======= + "0xcB0838c828Ec4911f6a0ba48e58BC67a8c5f9c3f": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "323055821493827": "0xa1640bba4", - "328737849859671": "0xb1a89e4b3" + "360153486671689": "0x8d8b8050" }, - "plotIndexes": [ - "0x125d14b7b9643", - "0x12afc3ec3de57" - ] + "plotIndexes": ["0x1478ec4a33f49"] } }, "depositAllowances": {}, @@ -212803,30 +224713,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x299e4B9591993c6001822baCF41aff63F9C1C93F": { + "0xe496c05e5E2a669cc60ab70572776ee22CA17F03": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "321198027851647": "0xb9081f0a63", - "328785539744522": "0x2300c040f9", - "356266241722575": "0x25f34e2918b", - "358874174134874": "0xb2684e00ad" + "376760788400310": "0x19ccd6160", + "451603278508011": "0x13f8e32d1" }, - "plotIndexes": [ - "0x12420be5a477f", - "0x12b07594dc30a", - "0x14405b2c888cf", - "0x14664e7ab1a5a" - ] + "plotIndexes": ["0x156a974f538b6", "0x19abb14feafeb"] } }, "depositAllowances": {}, @@ -212834,27 +224737,27 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xf64" + }, "sop": {} }, - "0xae5c0ff6738cE54598C00ca3d14dC71176a9d929": { + "0x8e5465757BAC6235C32670a1eDF15c0437cA4fE1": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "327253599004877": "0x364149a17" + "356013940250669": "0x320b5eb04f" }, - "plotIndexes": [ - "0x129a2aa8528cd" - ] + "plotIndexes": ["0x143caf471982d"] } }, "depositAllowances": {}, @@ -212865,7 +224768,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x08507B93B82152488512fe20Da7E42F4260D1209": { + "0x8f2800A82ec05fEB0bcb8AD2A397FF0343C24dF3": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212878,13 +224781,9 @@ "fields": { "0": { "plots": { - "328361555137833": "0x103e141da9", - "379374817295263": "0x1859a682fb" + "359857480112013": "0x3eb520f7a" }, - "plotIndexes": [ - "0x12aa4a1da1529", - "0x1590a1538bb9f" - ] + "plotIndexes": ["0x14749d945978d"] } }, "depositAllowances": {}, @@ -212895,24 +224794,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF4a04D998A8d6Cf89C9328486a952874E50892DC": { + "0x3f73493ecb5b77fE96044a4c59d66C92B7D488cA": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "321094975835782": "0xbc015822e" + "359874313037575": "0x4e907048e", + "355806866216773": "0x2ba31ef08c" }, - "plotIndexes": [ - "0x12408bff94e86" - ] + "plotIndexes": ["0x1474dc497a707", "0x1439abdde9745"] } }, "depositAllowances": {}, @@ -212923,26 +224821,22 @@ "internalTokenBalance": {}, "sop": {} }, - "0xa4BaD700438B907A781d5362bB3dEb7c0dC29dC5": { + "0x346aa548f2fB418a8c398D2bF879EbCc0A1f891d": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "328698722691368": "0x1a2f65", - "650916041448649": "0x9a50e7b3" + "373671956964097": "0x2b462d6d7b" }, - "plotIndexes": [ - "0x12af3229aa928", - "0x25001336ddcc9" - ] + "plotIndexes": ["0x153da4841e301"] } }, "depositAllowances": {}, @@ -212953,7 +224847,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x26AFBbC659076B062548e8f46D424842Bc715064": { + "0xF930b0A0500D8F53b2E7EFa4F7bCB5cc0c71067E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212966,11 +224860,9 @@ "fields": { "0": { "plots": { - "320072143901269": "0x15e6d58d36" + "378561390110104": "0x4d60e64d90" }, - "plotIndexes": [ - "0x1231a9a709255" - ] + "plotIndexes": ["0x1584cb12ee598"] } }, "depositAllowances": {}, @@ -212981,7 +224873,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x317B157e02c3b5A16Efc3cc4eb26ACcC1cfF24e3": { + "0x2352FDd9A457c549D822451B4cD43203580a29d1": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -212994,11 +224886,9 @@ "fields": { "0": { "plots": { - "319579237582534": "0x46bfbd257" + "360910868412337": "0x6d2234999e" }, - "plotIndexes": [ - "0x122a7d6ef06c6" - ] + "plotIndexes": ["0x1483f1c1b77b1"] } }, "depositAllowances": {}, @@ -213009,24 +224899,22 @@ "internalTokenBalance": {}, "sop": {} }, - "0x16b5e68f83684740b2DA481DB60EAb42362884b9": { + "0x61C95fe68834db2d1f323bb85F0590690002a06d": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "328466688526802": "0x25c16fef8" + "359895402458005": "0x5d21dba00" }, - "plotIndexes": [ - "0x12abd1c4a49d2" - ] + "plotIndexes": ["0x14752ad9eab95"] } }, "depositAllowances": {}, @@ -213037,7 +224925,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x990cf47831822275a365e0C9239DC534b833922D": { + "0xBF843F2AA6425952aE92760250503cE9930342b4": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213050,11 +224938,9 @@ "fields": { "0": { "plots": { - "328463036730072": "0xd9a9fefa" + "377334425097799": "0x156af704ab" }, - "plotIndexes": [ - "0x12abc42a04ad8" - ] + "plotIndexes": ["0x1572f045e9647"] } }, "depositAllowances": {}, @@ -213065,7 +224951,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xA371bDFc449B2770cc560A6BD2E2176c6E2dc797": { + "0xa48E7B26036360695be458D6904DE0892a5dB116": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213078,11 +224964,9 @@ "fields": { "0": { "plots": { - "328269884139182": "0x2584d476a" + "361675678821729": "0x53f99d29f2" }, - "plotIndexes": [ - "0x12a8f49d5a6ae" - ] + "plotIndexes": ["0x148f12e5c2d61"] } }, "depositAllowances": {}, @@ -213093,24 +224977,22 @@ "internalTokenBalance": {}, "sop": {} }, - "0xAA940d97Bd90B74991AB6029d35bf5Fc3BfEdB01": { + "0xcd805F0A5F1A26e3B344b31539AAF84f527Bf2DB": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "331560641183352": "0x832e34ffa" + "371946868967109": "0xdb336fd9d" }, - "plotIndexes": [ - "0x12d8d7a3d3e78" - ] + "plotIndexes": ["0x15248a10006c5"] } }, "depositAllowances": {}, @@ -213118,29 +225000,27 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xe89a880" + }, "sop": {} }, - "0x81eee01e854EC8b498543d9C2586e6aDCa3E2006": { + "0x3810EAcf5020D020B3317B559E59376c5d02dCB2": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "334136741601312": "0x440c82dd49", - "328965644144808": "0x2e34ec22f9" + "370593639163868": "0x1467aea500" }, - "plotIndexes": [ - "0x12fe545ca2020", - "0x12b31485cd0a8" - ] + "plotIndexes": ["0x1510d8e37e7dc"] } }, "depositAllowances": {}, @@ -213148,10 +225028,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x1c72ebd5" + }, "sop": {} }, - "0x96e6c919DCb6A3aD6Bb770cE5e95Bc0dB9b827d6": { + "0x9D496BA09C9dDAE8de72F146DE012701a10400CC": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213164,11 +225046,9 @@ "fields": { "0": { "plots": { - "343948668440753": "0x3eabdfa67a" + "359640428256007": "0x32894c7c86" }, - "plotIndexes": [ - "0x138d1ca3410b1" - ] + "plotIndexes": ["0x147174ff91b07"] } }, "depositAllowances": {}, @@ -213179,7 +225059,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x6D7e07990c35dEAC0cEb1104e4dC9301FE6b9968": { + "0x8756e7c68221969812d5DaC9B5FB1e59a32a5b1D": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213192,11 +225072,10 @@ "fields": { "0": { "plots": { - "334477990711769": "0x521c72298" + "380008273465850": "0x1749419476", + "386673517385669": "0x1b0c8e5783" }, - "plotIndexes": [ - "0x13034b9d251d9" - ] + "plotIndexes": ["0x1599d9226d1fa", "0x15fad71a5d7c5"] } }, "depositAllowances": {}, @@ -213207,7 +225086,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x671ec816F329ddc7c78137522Ea52e6FBC8decCD": { + "0x507165FF0417126930D7F79163961DE8Ff19c8b8": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213220,15 +225099,10 @@ "fields": { "0": { "plots": { - "328954278824745": "0x1a05df49", - "334845655178581": "0x171e3f743", - "376884850195985": "0x37673e19" + "360848988579994": "0xe68534f17", + "662609678589053": "0xddcbee75a" }, - "plotIndexes": [ - "0x12b2ea2efcb29", - "0x1308a5454dd55", - "0x156c6579dfe11" - ] + "plotIndexes": ["0x14830b3c8289a", "0x25aa3d6845c7d"] } }, "depositAllowances": {}, @@ -213237,28 +225111,26 @@ "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x2cac8a" + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xbf98e71" }, "sop": {} }, - "0x44F57E6064A6dc13fdD709DE4a8dB1628c9EaceB": { + "0x70C8eE0223D10c150b0db98A0423EC18Ec5aCa89": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "334679522049415": "0x1bdd0ebff6" + "378893728297768": "0x160c75d440" }, - "plotIndexes": [ - "0x13063a6067d87" - ] + "plotIndexes": ["0x1589a12153328"] } }, "depositAllowances": {}, @@ -213266,29 +225138,25 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x2f3b69b" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x0FF2FAa2294434919501475CF58117ee89e2729c": { + "0x532744D22891C4fccd5c4250D62894b3153667a7": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "340004534903929": "0x292c722d8" + "374145600795098": "0x21266bfdc38" }, - "plotIndexes": [ - "0x1353b79866479" - ] + "plotIndexes": ["0x154488fa131da"] } }, "depositAllowances": {}, @@ -213296,12 +225164,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x5e7bb" - }, + "internalTokenBalance": {}, "sop": {} }, - "0xaDd2955F0efC871902A7E421054DA7E6734d3DCA": { + "0x009A2534fd10c879D69daf4eE3000A6cb7E609Bb": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213314,13 +225180,10 @@ "fields": { "0": { "plots": { - "340002929884824": "0x5faaa5e1", - "340001324834920": "0x5fab1e30" + "355994286524369": "0x37ca3d46", + "613741059534895": "0x2dfbcca8d" }, - "plotIndexes": [ - "0x1353b19dbbe98", - "0x1353aba30a068" - ] + "plotIndexes": ["0x143c660fd87d1", "0x22e31b9d6702f"] } }, "depositAllowances": {}, @@ -213331,7 +225194,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8fCC6548DE7c4A1e5F5c196dE1b62c423E61cdaf": { + "0x5084949C8f7bf350c646796B242010919f70898E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213344,11 +225207,9 @@ "fields": { "0": { "plots": { - "340544190818194": "0x4f94be3ef" + "371914538333765": "0x2ba0111ff" }, - "plotIndexes": [ - "0x135b91f862792" - ] + "plotIndexes": ["0x1524119f1b645"] } }, "depositAllowances": {}, @@ -213359,7 +225220,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xcc5b337cd28b330705e2949a3e28e7EcA33FABF3": { + "0xc390578437F7BdEe1F766Fdb00f641848bc19366": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213372,11 +225233,9 @@ "fields": { "0": { "plots": { - "344217839974187": "0x212531cef2" + "372433833471833": "0xddf48b30" }, - "plotIndexes": [ - "0x139107613b72b" - ] + "plotIndexes": ["0x152ba0258af59"] } }, "depositAllowances": {}, @@ -213387,7 +225246,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF6FE6b3f7792B0a3E3E92Fdbe42B381395C2BBd8": { + "0xf13D8d9E5Ff8b123ffa5F5e981DA1685275cE176": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213400,11 +225259,10 @@ "fields": { "0": { "plots": { - "334637636520317": "0x3f31aace1" + "377332779708970": "0x6212a41d", + "456719911973263": "0x78364980" }, - "plotIndexes": [ - "0x13059e574097d" - ] + "plotIndexes": ["0x1572ea24bf22a", "0x19f62641d718f"] } }, "depositAllowances": {}, @@ -213412,27 +225270,27 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x2462ac4" + }, "sop": {} }, - "0x11C90869aC2a2Dde39B5DafeDc6C7fF48A8fDaE0": { + "0x25CD302E37a69D70a6Ef645dAea5A7de38c66E2a": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x401", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "328935876199427": "0x448e1c726" + "359920402458005": "0x13ca651200" }, - "plotIndexes": [ - "0x12b2a5a0e0403" - ] + "plotIndexes": ["0x147587fbc6595"] } }, "depositAllowances": {}, @@ -213443,24 +225301,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x15cdD0c3D5650A2FE14D5d1a85F6B1123b81A2DB": { + "0x6b87460Ce18951D31A7175cAbE2f3fc449E54256": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "333887021019794": "0x284538280" + "360115402458027": "0x8ddfefb9e", + "402818698087064": "0xae4da1a41" }, - "plotIndexes": [ - "0x12fab21487292" - ] + "plotIndexes": ["0x14785e6a443ab", "0x16e5c89688a98"] } }, "depositAllowances": {}, @@ -213471,7 +225328,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x5AdCa33aFC3D57C1193Cc83D562aBFE523412725": { + "0xF4E3f1c01BD9A5398B92ac1B8bedb66ba4a2d627": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213484,11 +225341,9 @@ "fields": { "0": { "plots": { - "331622129302332": "0xf9544bbc52" + "370522581424279": "0x108b5f0f45" }, - "plotIndexes": [ - "0x12d9bcb377b3c" - ] + "plotIndexes": ["0x150fd02d8d897"] } }, "depositAllowances": {}, @@ -213499,7 +225354,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x201ad214891136FC37750029A14008D99B9ab814": { + "0x905B2Eb4B731B395E7517a4763CD829F6EC2f510": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213512,11 +225367,9 @@ "fields": { "0": { "plots": { - "334959543421596": "0x1957f7334e" + "379996617045843": "0x2b6c6daa7" }, - "plotIndexes": [ - "0x130a4d8998a9c" - ] + "plotIndexes": ["0x1599adb5ff753"] } }, "depositAllowances": {}, @@ -213527,24 +225380,22 @@ "internalTokenBalance": {}, "sop": {} }, - "0x355C6d4ee23c2eA9345442f3Fe671Fa3C8612209": { + "0x45E5d313030Be8E40FCeB8f03d55300DA6a8799e": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x401", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "353389703784413": "0x1fc332ed017" + "361666644960846": "0x21a75c713" }, - "plotIndexes": [ - "0x14167f3c2e7dd" - ] + "plotIndexes": ["0x148ef13e6664e"] } }, "depositAllowances": {}, @@ -213555,7 +225406,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x3C8cD5597ac98cB0871Db580d3C9A86a384B9106": { + "0xf152581b8cb486b24d73aD51e23a3Fd3E0222538": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213568,11 +225419,9 @@ "fields": { "0": { "plots": { - "333010214249215": "0x1714b115a2" + "379603990851302": "0x5b6a58486d" }, - "plotIndexes": [ - "0x12edefb86e2ff" - ] + "plotIndexes": ["0x1593f7107aee6"] } }, "depositAllowances": {}, @@ -213583,7 +225432,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x9Fa8cd4FacBeb2a9A706864cBE4c0170D6D3caE1": { + "0x61e193e514DE408F57A648a641d9fcD412CdeD82": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213596,11 +225445,9 @@ "fields": { "0": { "plots": { - "340565553187713": "0x2cba95f6fe7" + "377426413984498": "0x10841d94aa6" }, - "plotIndexes": [ - "0x135be18d20b81" - ] + "plotIndexes": ["0x157446f559af2"] } }, "depositAllowances": {}, @@ -213611,7 +225458,8 @@ "internalTokenBalance": {}, "sop": {} }, - "0x17a9341a60EF47E861ea53E58e41250Fc9B55DFb": { +>>>>>>> b689ac329 (feat: update reseed jsons) + "0x26C08ce60A17a130f5483D50C404bDE46985bCaf": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213624,10 +225472,11 @@ "fields": { "0": { "plots": { - "343677590063786": "0x476fb52b3" + "386273913739633": "0x1a69fae8f0" }, +<<<<<<< HEAD "plotIndexes": [ - "0x13892acac4aaa" + "0x15f50676a1971" ] } }, @@ -213639,7 +225488,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x59dC1eaE22eEbD6CfbD144ee4b6f4048F8A59880": { + "0x66F1089eD7D915bC7c7055d2d226487362347d39": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213652,10 +225501,10 @@ "fields": { "0": { "plots": { - "328698724407437": "0x4b6ccad91" + "384283113068429": "0x422a5082" }, "plotIndexes": [ - "0x12af322b4d88d" + "0x15d80e272978d" ] } }, @@ -213667,25 +225516,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x3BD142a93adC0554C69395AAE69433A74CFFc765": { + "0x344e50417D9D51Dbc9eA3247597d7Adc5f7b2F97": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "328954715417202": "0x28b672636", - "386387360940641": "0x20f2a20553" + "381325946685316": "0x213391a16" }, "plotIndexes": [ - "0x12b2ebcf5aa72", - "0x15f6ad1650261" + "0x15ad05d988784" ] } }, @@ -213694,12 +225541,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x12e96906" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x18Ad8A3387aAc16C794F3b14451C591FeF0344fE": { + "0x5aB883168ab03c97239CEf348D5483FB2b57aFD9": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213712,10 +225557,10 @@ "fields": { "0": { "plots": { - "340001324829583": "0x14d9" + "380974686616344": "0x1441249016" }, "plotIndexes": [ - "0x1353aba308b8f" + "0x15a7e94dd3b18" ] } }, @@ -213727,7 +225572,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xE4202F5919F22377dB816a5D04851557480921dF": { + "0xeEe59d723433a4b178fCD383CD936de9C8666111": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213740,10 +225585,10 @@ "fields": { "0": { "plots": { - "343696766115165": "0x476b6f1fa" + "384705864961915": "0x107bb6f6a2b" }, "plotIndexes": [ - "0x1389723a79d5d" + "0x15de3506c8f7b" ] } }, @@ -213755,7 +225600,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xD11FaEdC6F7af5b05137A3F62cb836Ab0aE5dbb6": { + "0x8264EA7b0b15a7AD9339F06666D7E339129C9482": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213768,10 +225613,10 @@ "fields": { "0": { "plots": { - "329207240531105": "0x1fc858f033" + "382614804933710": "0x7749d3a6a" }, "plotIndexes": [ - "0x12b6988a11ca1" + "0x15bfc7388ac4e" ] } }, @@ -213783,7 +225628,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xDecaFa57F07292a338E59242AaC289594E6A0d68": { + "0x71603139a9781a8f412E0D955Dc020d0Aa2c2C22": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213796,10 +225641,12 @@ "fields": { "0": { "plots": { - "332704987205231": "0x209c877f66" + "385934932264792": "0x692e7f63b", + "458138123015409": "0x314f34d58" }, "plotIndexes": [ - "0x12e97ea93ce6f" + "0x15f017a8b4758", + "0x1a0ac981494f1" ] } }, @@ -213811,7 +225658,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x095CB8F5E61b69A0C2fE075A772bb953f2d11C2A": { + "0xAf93048424E9DBE29326AD1e1B00686760318f0D": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213824,10 +225671,12 @@ "fields": { "0": { "plots": { - "339210737506518": "0x17f6e7d50f" + "387099560901328": "0x21d5bbf45", + "603423204831971": "0x4018fd0ee" }, "plotIndexes": [ - "0x13482a78358d6" + "0x16010a3d1fad0", + "0x224cf69c5f2e3" ] } }, @@ -213839,7 +225688,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x82CFf592c2D9238f05E0007F240c81990f17F764": { + "0xC252A841Af842a55b0F0b507f68f3864bf1C02b5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213852,10 +225701,10 @@ "fields": { "0": { "plots": { - "334800355703455": "0x1eb17108c" + "383092890554906": "0x255650c573" }, "plotIndexes": [ - "0x1307fc845ba9f" + "0x15c6bc3a8521a" ] } }, @@ -213867,7 +225716,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8bFe70E2D583f512E7248D67ACE918116B892aeA": { + "0x08364bdB63045c391D33cb83d6AEd7582b94701d": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213880,10 +225729,10 @@ "fields": { "0": { "plots": { - "339167269778934": "0xa1ee0e2e0" + "383513997691489": "0x58c7c164c" }, "plotIndexes": [ - "0x1347888a275f6" + "0x15ccdcf994a61" ] } }, @@ -213895,23 +225744,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0xcB0838c828Ec4911f6a0ba48e58BC67a8c5f9c3f": { + "0x68ca44eD5d5Df216D10B14c13D18395a9151224a": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "360153486671689": "0x8d8b8050" + "388151583261614": "0x4581512395" }, "plotIndexes": [ - "0x1478ec4a33f49" + "0x16105953d43ae" ] } }, @@ -213923,7 +225772,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xe496c05e5E2a669cc60ab70572776ee22CA17F03": { + "0xECA7146bd5395A5BcAE51361989AcA45a87ae995": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213936,12 +225785,10 @@ "fields": { "0": { "plots": { - "376760788400310": "0x19ccd6160", - "451603278508011": "0x13f8e32d1" + "385963166743955": "0x4fd5b428a" }, "plotIndexes": [ - "0x156a974f538b6", - "0x19abb14feafeb" + "0x15f080d733d93" ] } }, @@ -213950,28 +225797,26 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xf64" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x8e5465757BAC6235C32670a1eDF15c0437cA4fE1": { + "0x23C58C2B6a51aF8AbB2F7D98FD10591976489F17": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "356013940250669": "0x320b5eb04f" + "387354276771954": "0x416007d40" }, "plotIndexes": [ - "0x143caf471982d" + "0x1604bf211b872" ] } }, @@ -213983,7 +225828,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8f2800A82ec05fEB0bcb8AD2A397FF0343C24dF3": { + "0x7aBe5fE607c3E3Df7009B023a4db1eb03e1A6b48": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -213996,10 +225841,10 @@ "fields": { "0": { "plots": { - "359857480112013": "0x3eb520f7a" + "380823279010078": "0x889e6ca9a" }, "plotIndexes": [ - "0x14749d945978d" + "0x15a5b5444811e" ] } }, @@ -214011,7 +225856,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x3f73493ecb5b77fE96044a4c59d66C92B7D488cA": { + "0x1D9329F4d69daf9e323177aBE998CBDe5063AA2E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214024,12 +225869,10 @@ "fields": { "0": { "plots": { - "359874313037575": "0x4e907048e", - "355806866216773": "0x2ba31ef08c" + "388613359660761": "0x1ca48bcfa9" }, "plotIndexes": [ - "0x1474dc497a707", - "0x1439abdde9745" + "0x161711941eed9" ] } }, @@ -214041,7 +225884,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x346aa548f2fB418a8c398D2bF879EbCc0A1f891d": { + "0x4C19CB883A243D1F33a0dCdFA091bCba7Bf8e3dC": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214054,10 +225897,10 @@ "fields": { "0": { "plots": { - "373671956964097": "0x2b462d6d7b" + "381061678877486": "0x1021f3e9f0" }, "plotIndexes": [ - "0x153da4841e301" + "0x15a92d601cb2e" ] } }, @@ -214066,10 +225909,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x22b44" + }, "sop": {} }, - "0xF930b0A0500D8F53b2E7EFa4F7bCB5cc0c71067E": { + "0x96154551Aca106BEb4179EFA04cDCCAfB0d31C1e": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214082,10 +225927,10 @@ "fields": { "0": { "plots": { - "378561390110104": "0x4d60e64d90" + "383075774673118": "0x3fc2fa13c" }, "plotIndexes": [ - "0x1584cb12ee598" + "0x15c67c778b0de" ] } }, @@ -214097,7 +225942,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x2352FDd9A457c549D822451B4cD43203580a29d1": { + "0x6e59973B7A5Bc7221311f0511C57ecc09b7a54B4": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214110,10 +225955,10 @@ "fields": { "0": { "plots": { - "360910868412337": "0x6d2234999e" + "385996041945699": "0xa61735e78" }, "plotIndexes": [ - "0x1483f1c1b77b1" + "0x15f0fb4f70263" ] } }, @@ -214125,23 +225970,25 @@ "internalTokenBalance": {}, "sop": {} }, - "0x61C95fe68834db2d1f323bb85F0590690002a06d": { + "0x80242f7125556698af577D16449c7263bCB80a0a": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "359895402458005": "0x5d21dba00" + "387389374771954": "0x416007d40", + "591077039421030": "0xe0d59535a" }, "plotIndexes": [ - "0x14752ad9eab95" + "0x160541e12b2f2", + "0x21994d8f83666" ] } }, @@ -214153,7 +226000,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xBF843F2AA6425952aE92760250503cE9930342b4": { + "0xe0E297e67191AF140BCa9E7c8dd9FfA7F57D3862": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214166,10 +226013,14 @@ "fields": { "0": { "plots": { - "377334425097799": "0x156af704ab" + "386877595575860": "0x16c17406", + "422879866140485": "0x1c9205b11", + "422877270899875": "0x9ab03aa2" }, "plotIndexes": [ - "0x1572f045e9647" + "0x15fdcf5a7e634", + "0x1809b64343745", + "0x1809ac983fca3" ] } }, @@ -214181,7 +226032,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xa48E7B26036360695be458D6904DE0892a5dB116": { + "0x6CA5b974aa4b7B08Ae62699b6CB2a5b8A52c4CdB": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214194,10 +226045,16 @@ "fields": { "0": { "plots": { - "361675678821729": "0x53f99d29f2" + "387178819624346": "0x54e56fe2e", + "401309728984959": "0x1487301dac", + "696212281967928": "0x9b9e5e8f0", + "696479737795444": "0x50b2318f0" }, "plotIndexes": [ - "0x148f12e5c2d61" + "0x1602318021d9a", + "0x16cfd33d74f7f", + "0x279338dc14538", + "0x27971d35d5374" ] } }, @@ -214209,23 +226066,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0xcd805F0A5F1A26e3B344b31539AAF84f527Bf2DB": { + "0xCfD2b6487AFA4A30b79408cF57b2103348660a02": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "371946868967109": "0xdb336fd9d" + "386586067388886": "0xd643cee22" }, "plotIndexes": [ - "0x15248a10006c5" + "0x15f991538c9d6" ] } }, @@ -214234,12 +226091,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xe89a880" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x3810EAcf5020D020B3317B559E59376c5d02dCB2": { + "0xbb595fEF3C86FE664836a5Ea6C6E549ECeA28dEe": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214252,10 +226107,10 @@ "fields": { "0": { "plots": { - "370593639163868": "0x1467aea500" + "380874877805325": "0x173d11980b" }, "plotIndexes": [ - "0x1510d8e37e7dc" + "0x15a6757cba30d" ] } }, @@ -214264,12 +226119,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x1c72ebd5" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x9D496BA09C9dDAE8de72F146DE012701a10400CC": { + "0x81696d556eeCDc42bED7C3b53b027de923cC5038": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214282,10 +226135,12 @@ "fields": { "0": { "plots": { - "359640428256007": "0x32894c7c86" + "380859952352184": "0x379a05755", + "463502571685807": "0x86881e996" }, "plotIndexes": [ - "0x147174ff91b07" + "0x15a63de2b4bb8", + "0x1a58d9a2347af" ] } }, @@ -214297,7 +226152,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8756e7c68221969812d5DaC9B5FB1e59a32a5b1D": { + "0x9c7ac7abbD3EC00E1d4b330C497529166db84f63": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214310,12 +226165,10 @@ "fields": { "0": { "plots": { - "380008273465850": "0x1749419476", - "386673517385669": "0x1b0c8e5783" + "384132556160937": "0x65f229d3b" }, "plotIndexes": [ - "0x1599d9226d1fa", - "0x15fad71a5d7c5" + "0x15d5dd48e7fa9" ] } }, @@ -214324,10 +226177,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xae1b6" + }, "sop": {} }, - "0x507165FF0417126930D7F79163961DE8Ff19c8b8": { + "0x73a901A5712bc405892F5ab02dDf0Cf18a6413b3": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214340,12 +226195,10 @@ "fields": { "0": { "plots": { - "360848988579994": "0xe68534f17", - "662609678589053": "0xddcbee75a" + "385887420980071": "0x3a6688143" }, "plotIndexes": [ - "0x14830b3c8289a", - "0x25aa3d6845c7d" + "0x15ef66aa69b67" ] } }, @@ -214354,12 +226207,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xbf98e71" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x70C8eE0223D10c150b0db98A0423EC18Ec5aCa89": { + "0x591f0E55fa6dc26737cDC550aA033FA5B1DC7509": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214372,10 +226223,10 @@ "fields": { "0": { "plots": { - "378893728297768": "0x160c75d440" + "388450105583427": "0x2d5b9b361" }, "plotIndexes": [ - "0x1589a12153328" + "0x1614b168e6743" ] } }, @@ -214387,7 +226238,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x532744D22891C4fccd5c4250D62894b3153667a7": { + "0xC9cE413f3761aB1Df6be145fe48Fc6c28A8DCc1a": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214400,10 +226251,10 @@ "fields": { "0": { "plots": { - "374145600795098": "0x21266bfdc38" + "384209179623467": "0x1136c6d762" }, "plotIndexes": [ - "0x154488fa131da" + "0x15d6fababc02b" ] } }, @@ -214415,7 +226266,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x009A2534fd10c879D69daf4eE3000A6cb7E609Bb": { + "0x26631e82aa93DeDeFB15eDBF5574bd4E84D0FC2D": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214428,12 +226279,10 @@ "fields": { "0": { "plots": { - "355994286524369": "0x37ca3d46", - "613741059534895": "0x2dfbcca8d" + "384391860674103": "0x53af90c1e" }, "plotIndexes": [ - "0x143c660fd87d1", - "0x22e31b9d6702f" + "0x15d9a344f5e37" ] } }, @@ -214445,7 +226294,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x5084949C8f7bf350c646796B242010919f70898E": { + "0x29e1A68927a46f42d3B82417A01645Ee23F86bD9": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214458,10 +226307,10 @@ "fields": { "0": { "plots": { - "371914538333765": "0x2ba0111ff" + "386040626569435": "0x6e17545" }, "plotIndexes": [ - "0x1524119f1b645" + "0x15f1a166a60db" ] } }, @@ -214473,7 +226322,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xc390578437F7BdEe1F766Fdb00f641848bc19366": { + "0x70F11dbD21809EbCd4C6604581103506A6a8443A": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214486,10 +226335,10 @@ "fields": { "0": { "plots": { - "372433833471833": "0xddf48b30" + "385984597229597": "0x2aa288246" }, "plotIndexes": [ - "0x152ba0258af59" + "0x15f0d0ace801d" ] } }, @@ -214501,7 +226350,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xf13D8d9E5Ff8b123ffa5F5e981DA1685275cE176": { + "0xC2705469f7426E9EbE91e55095dCA2AdF19Bcbb2": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214514,12 +226363,16 @@ "fields": { "0": { "plots": { - "377332779708970": "0x6212a41d", - "456719911973263": "0x78364980" + "387120303937976": "0xd9fce83ca", + "456679832668142": "0x954e9a9a1", + "470868926031598": "0x8067d6233", + "470903394650401": "0x80589ddff" }, "plotIndexes": [ - "0x1572ea24bf22a", - "0x19f62641d718f" + "0x16015783399b8", + "0x19f590f33c7ee", + "0x1ac40b71266ee", + "0x1ac48bd8fc921" ] } }, @@ -214528,28 +226381,30 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x2462ac4" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x25CD302E37a69D70a6Ef645dAea5A7de38c66E2a": { + "0x829Ceb00fC74bD087b1e50d31ec628a90894cD52": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x401", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "359920402458005": "0x13ca651200" + "384414324910677": "0xbc7c656ce", + "416442088554138": "0xe8b861795", + "428416613011571": "0xeeb7c1cbb" }, "plotIndexes": [ - "0x147587fbc6595" + "0x15d9f6f486a55", + "0x17ac07ac1fe9a", + "0x185a48408d073" ] } }, @@ -214561,7 +226416,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x6b87460Ce18951D31A7175cAbE2f3fc449E54256": { + "0xDeaB5B36743feb01150e47Ad9FfD981b9d5b7E8a": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214574,12 +226429,12 @@ "fields": { "0": { "plots": { - "360115402458027": "0x8ddfefb9e", - "402818698087064": "0xae4da1a41" + "387406923771954": "0x416007d40", + "388983838542393": "0x2cb2a94a0" }, "plotIndexes": [ - "0x14785e6a443ab", - "0x16e5c89688a98" + "0x1605834133032", + "0x161c75b850a39" ] } }, @@ -214591,7 +226446,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF4E3f1c01BD9A5398B92ac1B8bedb66ba4a2d627": { + "0x0be0eCC301a1c0175f07A66243cfF628c24DB852": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214604,10 +226459,10 @@ "fields": { "0": { "plots": { - "370522581424279": "0x108b5f0f45" + "387085583162537": "0x2be298d57" }, "plotIndexes": [ - "0x150fd02d8d897" + "0x1600d62ae9ca9" ] } }, @@ -214619,7 +226474,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x905B2Eb4B731B395E7517a4763CD829F6EC2f510": { + "0x7E295c18FCa9DE63CF965cFCd3223909e1dBA6af": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214632,10 +226487,10 @@ "fields": { "0": { "plots": { - "379996617045843": "0x2b6c6daa7" + "381241434287363": "0x129a3826a4" }, "plotIndexes": [ - "0x1599adb5ff753" + "0x15abcb043ad03" ] } }, @@ -214647,23 +226502,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x45E5d313030Be8E40FCeB8f03d55300DA6a8799e": { + "0x7c12222e79e1a2552CaF92ce8dA063e188a7234F": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x401", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "361666644960846": "0x21a75c713" + "388462281235108": "0x232cf9d435" }, "plotIndexes": [ - "0x148ef13e6664e" + "0x1614dec481aa4" ] } }, @@ -214675,7 +226530,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xf152581b8cb486b24d73aD51e23a3Fd3E0222538": { + "0x568092fb0aA37027a4B75CFf2492Dbe298FcE650": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214688,10 +226543,10 @@ "fields": { "0": { "plots": { - "379603990851302": "0x5b6a58486d" + "383570319922931": "0x4a83650f9d" }, "plotIndexes": [ - "0x1593f7107aee6" + "0x15cdaecaa56f3" ] } }, @@ -214703,7 +226558,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x61e193e514DE408F57A648a641d9fcD412CdeD82": { + "0xbFc016652a6708b20ae850Ee92D2Ea23ccA5F31a": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214716,10 +226571,10 @@ "fields": { "0": { "plots": { - "377426413984498": "0x10841d94aa6" + "384284223137807": "0x190ecd2f40" }, "plotIndexes": [ - "0x157446f559af2" + "0x15d81249ce80f" ] } }, @@ -214731,7 +226586,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x26C08ce60A17a130f5483D50C404bDE46985bCaf": { + "0x843F293423895a837DBe3Dca561604e49410576C": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -214744,11 +226599,14 @@ "fields": { "0": { "plots": { - "386273913739633": "0x1a69fae8f0" + "387108643387925": "0x2b705dfa3" }, "plotIndexes": [ - "0x15f50676a1971" + "0x16012c12dba15" ] +======= + "plotIndexes": ["0x15f50676a1971"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -214759,6 +226617,8 @@ "internalTokenBalance": {}, "sop": {} }, +<<<<<<< HEAD +======= "0x66F1089eD7D915bC7c7055d2d226487362347d39": { "roots": "0x0", "stalk": "0x0", @@ -214774,9 +226634,7 @@ "plots": { "384283113068429": "0x422a5082" }, - "plotIndexes": [ - "0x15d80e272978d" - ] + "plotIndexes": ["0x15d80e272978d"] } }, "depositAllowances": {}, @@ -214802,9 +226660,7 @@ "plots": { "381325946685316": "0x213391a16" }, - "plotIndexes": [ - "0x15ad05d988784" - ] + "plotIndexes": ["0x15ad05d988784"] } }, "depositAllowances": {}, @@ -214830,9 +226686,7 @@ "plots": { "380974686616344": "0x1441249016" }, - "plotIndexes": [ - "0x15a7e94dd3b18" - ] + "plotIndexes": ["0x15a7e94dd3b18"] } }, "depositAllowances": {}, @@ -214858,9 +226712,7 @@ "plots": { "384705864961915": "0x107bb6f6a2b" }, - "plotIndexes": [ - "0x15de3506c8f7b" - ] + "plotIndexes": ["0x15de3506c8f7b"] } }, "depositAllowances": {}, @@ -214886,9 +226738,7 @@ "plots": { "382614804933710": "0x7749d3a6a" }, - "plotIndexes": [ - "0x15bfc7388ac4e" - ] + "plotIndexes": ["0x15bfc7388ac4e"] } }, "depositAllowances": {}, @@ -214915,10 +226765,7 @@ "385934932264792": "0x692e7f63b", "458138123015409": "0x314f34d58" }, - "plotIndexes": [ - "0x15f017a8b4758", - "0x1a0ac981494f1" - ] + "plotIndexes": ["0x15f017a8b4758", "0x1a0ac981494f1"] } }, "depositAllowances": {}, @@ -214945,10 +226792,7 @@ "387099560901328": "0x21d5bbf45", "603423204831971": "0x4018fd0ee" }, - "plotIndexes": [ - "0x16010a3d1fad0", - "0x224cf69c5f2e3" - ] + "plotIndexes": ["0x16010a3d1fad0", "0x224cf69c5f2e3"] } }, "depositAllowances": {}, @@ -214974,9 +226818,7 @@ "plots": { "383092890554906": "0x255650c573" }, - "plotIndexes": [ - "0x15c6bc3a8521a" - ] + "plotIndexes": ["0x15c6bc3a8521a"] } }, "depositAllowances": {}, @@ -215002,9 +226844,7 @@ "plots": { "383513997691489": "0x58c7c164c" }, - "plotIndexes": [ - "0x15ccdcf994a61" - ] + "plotIndexes": ["0x15ccdcf994a61"] } }, "depositAllowances": {}, @@ -215030,9 +226870,7 @@ "plots": { "388151583261614": "0x4581512395" }, - "plotIndexes": [ - "0x16105953d43ae" - ] + "plotIndexes": ["0x16105953d43ae"] } }, "depositAllowances": {}, @@ -215058,9 +226896,7 @@ "plots": { "385963166743955": "0x4fd5b428a" }, - "plotIndexes": [ - "0x15f080d733d93" - ] + "plotIndexes": ["0x15f080d733d93"] } }, "depositAllowances": {}, @@ -215086,9 +226922,7 @@ "plots": { "387354276771954": "0x416007d40" }, - "plotIndexes": [ - "0x1604bf211b872" - ] + "plotIndexes": ["0x1604bf211b872"] } }, "depositAllowances": {}, @@ -215114,9 +226948,7 @@ "plots": { "380823279010078": "0x889e6ca9a" }, - "plotIndexes": [ - "0x15a5b5444811e" - ] + "plotIndexes": ["0x15a5b5444811e"] } }, "depositAllowances": {}, @@ -215142,9 +226974,7 @@ "plots": { "388613359660761": "0x1ca48bcfa9" }, - "plotIndexes": [ - "0x161711941eed9" - ] + "plotIndexes": ["0x161711941eed9"] } }, "depositAllowances": {}, @@ -215170,9 +227000,7 @@ "plots": { "381061678877486": "0x1021f3e9f0" }, - "plotIndexes": [ - "0x15a92d601cb2e" - ] + "plotIndexes": ["0x15a92d601cb2e"] } }, "depositAllowances": {}, @@ -215200,9 +227028,7 @@ "plots": { "383075774673118": "0x3fc2fa13c" }, - "plotIndexes": [ - "0x15c67c778b0de" - ] + "plotIndexes": ["0x15c67c778b0de"] } }, "depositAllowances": {}, @@ -215228,9 +227054,7 @@ "plots": { "385996041945699": "0xa61735e78" }, - "plotIndexes": [ - "0x15f0fb4f70263" - ] + "plotIndexes": ["0x15f0fb4f70263"] } }, "depositAllowances": {}, @@ -215257,10 +227081,7 @@ "387389374771954": "0x416007d40", "591077039421030": "0xe0d59535a" }, - "plotIndexes": [ - "0x160541e12b2f2", - "0x21994d8f83666" - ] + "plotIndexes": ["0x160541e12b2f2", "0x21994d8f83666"] } }, "depositAllowances": {}, @@ -215288,11 +227109,7 @@ "422879866140485": "0x1c9205b11", "422877270899875": "0x9ab03aa2" }, - "plotIndexes": [ - "0x15fdcf5a7e634", - "0x1809b64343745", - "0x1809ac983fca3" - ] + "plotIndexes": ["0x15fdcf5a7e634", "0x1809b64343745", "0x1809ac983fca3"] } }, "depositAllowances": {}, @@ -215321,12 +227138,7 @@ "696212281967928": "0x9b9e5e8f0", "696479737795444": "0x50b2318f0" }, - "plotIndexes": [ - "0x1602318021d9a", - "0x16cfd33d74f7f", - "0x279338dc14538", - "0x27971d35d5374" - ] + "plotIndexes": ["0x1602318021d9a", "0x16cfd33d74f7f", "0x279338dc14538", "0x27971d35d5374"] } }, "depositAllowances": {}, @@ -215352,9 +227164,7 @@ "plots": { "386586067388886": "0xd643cee22" }, - "plotIndexes": [ - "0x15f991538c9d6" - ] + "plotIndexes": ["0x15f991538c9d6"] } }, "depositAllowances": {}, @@ -215380,9 +227190,7 @@ "plots": { "380874877805325": "0x173d11980b" }, - "plotIndexes": [ - "0x15a6757cba30d" - ] + "plotIndexes": ["0x15a6757cba30d"] } }, "depositAllowances": {}, @@ -215409,10 +227217,7 @@ "380859952352184": "0x379a05755", "463502571685807": "0x86881e996" }, - "plotIndexes": [ - "0x15a63de2b4bb8", - "0x1a58d9a2347af" - ] + "plotIndexes": ["0x15a63de2b4bb8", "0x1a58d9a2347af"] } }, "depositAllowances": {}, @@ -215438,9 +227243,7 @@ "plots": { "384132556160937": "0x65f229d3b" }, - "plotIndexes": [ - "0x15d5dd48e7fa9" - ] + "plotIndexes": ["0x15d5dd48e7fa9"] } }, "depositAllowances": {}, @@ -215468,9 +227271,7 @@ "plots": { "385887420980071": "0x3a6688143" }, - "plotIndexes": [ - "0x15ef66aa69b67" - ] + "plotIndexes": ["0x15ef66aa69b67"] } }, "depositAllowances": {}, @@ -215496,9 +227297,7 @@ "plots": { "388450105583427": "0x2d5b9b361" }, - "plotIndexes": [ - "0x1614b168e6743" - ] + "plotIndexes": ["0x1614b168e6743"] } }, "depositAllowances": {}, @@ -215524,9 +227323,7 @@ "plots": { "384209179623467": "0x1136c6d762" }, - "plotIndexes": [ - "0x15d6fababc02b" - ] + "plotIndexes": ["0x15d6fababc02b"] } }, "depositAllowances": {}, @@ -215552,9 +227349,7 @@ "plots": { "384391860674103": "0x53af90c1e" }, - "plotIndexes": [ - "0x15d9a344f5e37" - ] + "plotIndexes": ["0x15d9a344f5e37"] } }, "depositAllowances": {}, @@ -215580,9 +227375,7 @@ "plots": { "386040626569435": "0x6e17545" }, - "plotIndexes": [ - "0x15f1a166a60db" - ] + "plotIndexes": ["0x15f1a166a60db"] } }, "depositAllowances": {}, @@ -215608,9 +227401,7 @@ "plots": { "385984597229597": "0x2aa288246" }, - "plotIndexes": [ - "0x15f0d0ace801d" - ] + "plotIndexes": ["0x15f0d0ace801d"] } }, "depositAllowances": {}, @@ -215639,12 +227430,7 @@ "470868926031598": "0x8067d6233", "470903394650401": "0x80589ddff" }, - "plotIndexes": [ - "0x16015783399b8", - "0x19f590f33c7ee", - "0x1ac40b71266ee", - "0x1ac48bd8fc921" - ] + "plotIndexes": ["0x16015783399b8", "0x19f590f33c7ee", "0x1ac40b71266ee", "0x1ac48bd8fc921"] } }, "depositAllowances": {}, @@ -215672,11 +227458,7 @@ "416442088554138": "0xe8b861795", "428416613011571": "0xeeb7c1cbb" }, - "plotIndexes": [ - "0x15d9f6f486a55", - "0x17ac07ac1fe9a", - "0x185a48408d073" - ] + "plotIndexes": ["0x15d9f6f486a55", "0x17ac07ac1fe9a", "0x185a48408d073"] } }, "depositAllowances": {}, @@ -215703,10 +227485,7 @@ "387406923771954": "0x416007d40", "388983838542393": "0x2cb2a94a0" }, - "plotIndexes": [ - "0x1605834133032", - "0x161c75b850a39" - ] + "plotIndexes": ["0x1605834133032", "0x161c75b850a39"] } }, "depositAllowances": {}, @@ -215732,9 +227511,7 @@ "plots": { "387085583162537": "0x2be298d57" }, - "plotIndexes": [ - "0x1600d62ae9ca9" - ] + "plotIndexes": ["0x1600d62ae9ca9"] } }, "depositAllowances": {}, @@ -215760,9 +227537,7 @@ "plots": { "381241434287363": "0x129a3826a4" }, - "plotIndexes": [ - "0x15abcb043ad03" - ] + "plotIndexes": ["0x15abcb043ad03"] } }, "depositAllowances": {}, @@ -215788,9 +227563,7 @@ "plots": { "388462281235108": "0x232cf9d435" }, - "plotIndexes": [ - "0x1614dec481aa4" - ] + "plotIndexes": ["0x1614dec481aa4"] } }, "depositAllowances": {}, @@ -215816,9 +227589,7 @@ "plots": { "383570319922931": "0x4a83650f9d" }, - "plotIndexes": [ - "0x15cdaecaa56f3" - ] + "plotIndexes": ["0x15cdaecaa56f3"] } }, "depositAllowances": {}, @@ -215844,9 +227615,7 @@ "plots": { "384284223137807": "0x190ecd2f40" }, - "plotIndexes": [ - "0x15d81249ce80f" - ] + "plotIndexes": ["0x15d81249ce80f"] } }, "depositAllowances": {}, @@ -215872,9 +227641,7 @@ "plots": { "387108643387925": "0x2b705dfa3" }, - "plotIndexes": [ - "0x16012c12dba15" - ] + "plotIndexes": ["0x16012c12dba15"] } }, "depositAllowances": {}, @@ -215885,6 +227652,7 @@ "internalTokenBalance": {}, "sop": {} }, +>>>>>>> b689ac329 (feat: update reseed jsons) "0xA8e54179AD4A4a844Cc7e941F60dF9393d0AD7a5": { "roots": "0x0", "stalk": "0x0", @@ -215900,9 +227668,7 @@ "plots": { "384072204135723": "0x20a0a8af1" }, - "plotIndexes": [ - "0x15d4fc74bad2b" - ] + "plotIndexes": ["0x15d4fc74bad2b"] } }, "depositAllowances": {}, @@ -215927,6 +227693,7 @@ "0": { "plots": { "381340402136618": "0x61f597bbe" +<<<<<<< HEAD }, "plotIndexes": [ "0x15ad3bb35362a" @@ -215963,6 +227730,42 @@ "636394053735133": "0x73b553469" }, "plotIndexes": [ +======= + }, + "plotIndexes": ["0x15ad3bb35362a"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x33c0BCac5c1835fe9D52D35079F6617A22c6C431": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "387476112263181": "0x1d2df013c0", + "389195837042393": "0x888641a00", + "594358295239774": "0x2f2f252ace", + "572397154046541": "0xb97a27254", + "614677841663135": "0xa2ee690a0", + "613936695193580": "0x3c63de0bd", + "636394053735133": "0x73b553469" + }, + "plotIndexes": [ +>>>>>>> b689ac329 (feat: update reseed jsons) "0x160685007c80d", "0x161f8b79d6ed9", "0x21c90d30e9c5e", @@ -215996,9 +227799,7 @@ "plots": { "400718076278698": "0x1de1c68a3d" }, - "plotIndexes": [ - "0x16c73729777aa" - ] + "plotIndexes": ["0x16c73729777aa"] } }, "depositAllowances": {}, @@ -216010,6 +227811,7 @@ "sop": {} }, "0x14b5B30014D11daA4b0dba48eC56AD2f1dF7a9ED": { +<<<<<<< HEAD "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -216590,6 +228392,8 @@ "sop": {} }, "0xF4839123454F7A65f79edb514A977d0A443d9F91": { +======= +>>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -216602,11 +228406,10 @@ "fields": { "0": { "plots": { - "398077843498350": "0x241a089dad", - "396499321739661": "0x250139b1c7", - "396672169852755": "0x46dd373119", - "493845501729151": "0x1b4151ea85" + "396986650725260": "0xcf93593a", + "396990133265606": "0xe17a6fdb" }, +<<<<<<< HEAD "plotIndexes": [ "0x16a0cb874656e", "0x1689d3139d98d", @@ -216641,6 +228444,9 @@ "plotIndexes": [ "0x169588ae6141b" ] +======= + "plotIndexes": ["0x1690ea84c0b8c", "0x1690f77df64c6"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -216666,9 +228472,13 @@ "plots": { "404265886768756": "0x840a7c79" }, +<<<<<<< HEAD "plotIndexes": [ "0x16fad7c935e74" ] +======= + "plotIndexes": ["0x16af532982411"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -216679,7 +228489,11 @@ "internalTokenBalance": {}, "sop": {} }, +<<<<<<< HEAD "0x2f89DB6B5E80C4849142789d777109D2F911F780": { +======= + "0x5a28b03C7fC7D1B51E72B1f9DF28A539173CAF79": { +>>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -216692,11 +228506,189 @@ "fields": { "0": { "plots": { +<<<<<<< HEAD "392855011748637": "0x139009a2b" }, "plotIndexes": [ "0x1654caf6c6b1d" ] +======= + "390728148329987": "0x1c12a9957b7", + "402274635542096": "0x654cf562d1", + "389232485042393": "0x156ccccf206", + "439720106933966": "0xe1b3289b68", + "453720230030637": "0xf75a2a5532", + "605146291993181": "0x189272f912" + }, + "plotIndexes": [ + "0x1635d7c7c2603", + "0x16ddddcc0ee50", + "0x16201400188d9", + "0x18fec50c63ece", + "0x19ca7f9236d2d", + "0x2266099c57a5d" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x422811e9Ca0493393a6C6bc8aF0718a0ec5eaa80": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "404106072954894": "0xee53b5866" + }, + "plotIndexes": ["0x16f8846ee180e"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x08c16a9c76Df28eE6bf9764B761E7C4cE411E890": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "393885772710066": "0xbaa2124e02" + }, + "plotIndexes": ["0x1663cad9080b2"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xCAeEf0dFCF97641389F8673264b7AbAB25D17c99": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "400315704255754": "0x440ca64780" + }, + "plotIndexes": ["0x16c15c359a50a"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x96e5aAcf14E93E6Bd747C403159526fa484F71dC": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "401533003762823": "0xec51cd8b", + "707611259809109": "0x3a13b1e20" + }, + "plotIndexes": ["0x16d31300e0c87", "0x2839195c7ad55"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x7ee2e900" + }, + "sop": {} + }, + "0x04A9b41a1288871FB60c6d015F3489612d36EB48": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "394687355735732": "0xefc5eea50" + }, + "plotIndexes": ["0x166f74fa2ceb4"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x3E83E8c2734e1Af95CA426EfeFB757aa9df742CC": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "401837348742701": "0x191a06ab80", + "404309982048493": "0x4c39ef3a98" + }, + "plotIndexes": ["0x16d780c6de62d", "0x16fb7c0dbf0ed"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -216722,9 +228714,13 @@ "plots": { "400607974255754": "0x555243261" }, +<<<<<<< HEAD "plotIndexes": [ "0x16c59cfffec8a" ] +======= + "plotIndexes": ["0x165623083f24b"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -216735,7 +228731,11 @@ "internalTokenBalance": {}, "sop": {} }, +<<<<<<< HEAD "0x6ab4566Df630Be242D3CD48777aa4CA19C635f56": { +======= + "0x81d8363845F96f94858Fac44A521117DADBfD837": { +>>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -216748,11 +228748,411 @@ "fields": { "0": { "plots": { +<<<<<<< HEAD "400652005822390": "0xf621b27f4" }, "plotIndexes": [ "0x16c64107c4fb6" ] +======= + "393561142971372": "0x4b9570b4c6" + }, + "plotIndexes": ["0x165f1181fcbec"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xCD4950a8Bd67123807dA21985F2d4C4553EA1523": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "400846418215399": "0x1aa4f65e8d" + }, + "plotIndexes": ["0x16c91545e01e7"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x0C2301083B7f8021fB967C05a4C2fb1ab731C302": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "390704799840991": "0x56fadab24" + }, + "plotIndexes": ["0x163580cce7adf"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x68C0b2aC21baBDAFbC42A837b2A259e21b825cDe": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "400121937452645": "0x70143f805" + }, + "plotIndexes": ["0x16be8a5f2de65"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x8a178306ffF20fd120C6d96666F08AC7c8b31ded": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "402871941536076": "0x1677590158" + }, + "plotIndexes": ["0x16e68eef7194c"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x737253bF1833A6AC51DCab69cFeDa5d5f3b11A14": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "401720368857579": "0x1b3c8b6442" + }, + "plotIndexes": ["0x16d5ccfe281eb"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x17c41659Cbd3C2e18aC15D8278c937464Da45f8f": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "393235443340203": "0x4bd535f841" + }, + "plotIndexes": ["0x165a542e9d3ab"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x58adF440dB094bDaD8c588Ad2f606F4C3464A4ba": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "403240604993759": "0x6873268bcd" + }, + "plotIndexes": ["0x16ebec50508df"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x87834847477c82d340FCD37BE6b5524b4dF5e7c5": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "402865487258841": "0x180b47473" + }, + "plotIndexes": ["0x16e676e42a4d9"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x9399943298b25632b21f4d1FA75DB0C5b8d457C5": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "404022519144524": "0x2d1215ffd", + "406000821375295": "0x69bf4e8b0" + }, + "plotIndexes": ["0x16f74d2bc204c", "0x171416ebc913f"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xF4839123454F7A65f79edb514A977d0A443d9F91": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "398077843498350": "0x241a089dad", + "396499321739661": "0x250139b1c7", + "396672169852755": "0x46dd373119", + "493845501729151": "0x1b4151ea85" + }, + "plotIndexes": ["0x16a0cb874656e", "0x1689d3139d98d", "0x168c56fc6bf53", "0x1c1265db4597f"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xb0226e96c71F94C44d998CE1b34F6a47c3A82404": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "397303985083419": "0xb29d34f9ca" + }, + "plotIndexes": ["0x169588ae6141b"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x66D8293781eF24184aa9164878dfC0486cfa9Aac": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "404265886768756": "0x840a7c79" + }, + "plotIndexes": ["0x16fad7c935e74"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x2f89DB6B5E80C4849142789d777109D2F911F780": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "392855011748637": "0x139009a2b" + }, + "plotIndexes": ["0x1654caf6c6b1d"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x4a4A24f4A0A71a004B55e027E37cfd4eDf684256": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "400607974255754": "0x555243261" + }, + "plotIndexes": ["0x16c59cfffec8a"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x6ab4566Df630Be242D3CD48777aa4CA19C635f56": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "400652005822390": "0xf621b27f4" + }, + "plotIndexes": ["0x16c64107c4fb6"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -216778,9 +229178,13 @@ "plots": { "405968762010244": "0x76d90488" }, +<<<<<<< HEAD "plotIndexes": [ "0x17139f7d97a84" ] +======= + "plotIndexes": ["0x17139f7d97a84"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -216806,9 +229210,13 @@ "plots": { "406154878759135": "0x945523530" }, +<<<<<<< HEAD "plotIndexes": [ "0x171654d45b0df" ] +======= + "plotIndexes": ["0x171654d45b0df"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -216836,11 +229244,15 @@ "531427120214450": "0x133b1c61fa", "643261775828307": "0x238d784359" }, +<<<<<<< HEAD "plotIndexes": [ "0x182892c37faf9", "0x1e35484b971b2", "0x2490b0da55553" ] +======= + "plotIndexes": ["0x182892c37faf9", "0x1e35484b971b2", "0x2490b0da55553"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -216866,9 +229278,13 @@ "plots": { "405897528944814": "0xccfd76140" }, +<<<<<<< HEAD "plotIndexes": [ "0x17129620728ae" ] +======= + "plotIndexes": ["0x17129620728ae"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -216894,9 +229310,13 @@ "plots": { "405859542087439": "0x35f1513ef" }, +<<<<<<< HEAD "plotIndexes": [ "0x1712089d5b70f" ] +======= + "plotIndexes": ["0x1712089d5b70f"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -216923,10 +229343,14 @@ "405972755944204": "0x4686ee85f", "437453984559649": "0x1bd9cd061" }, +<<<<<<< HEAD "plotIndexes": [ "0x1713ae5e8130c", "0x18ddcb15af221" ] +======= + "plotIndexes": ["0x1713ae5e8130c", "0x18ddcb15af221"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -216952,9 +229376,13 @@ "plots": { "411655097983604": "0x6f55c05c" }, +<<<<<<< HEAD "plotIndexes": [ "0x17665ebe2a274" ] +======= + "plotIndexes": ["0x17665ebe2a274"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -216981,10 +229409,14 @@ "405492506092600": "0xfa02122", "705094852706044": "0xcd56c4be" }, +<<<<<<< HEAD "plotIndexes": [ "0x170cb14c8e438", "0x28147b03a7efc" ] +======= + "plotIndexes": ["0x170cb14c8e438", "0x28147b03a7efc"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217010,9 +229442,13 @@ "plots": { "405828528337439": "0x7389044f0" }, +<<<<<<< HEAD "plotIndexes": [ "0x171195145721f" ] +======= + "plotIndexes": ["0x171195145721f"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217039,10 +229475,14 @@ "419104248331557": "0xe101f158d", "406100162097903": "0xcbd5dfdf0" }, +<<<<<<< HEAD "plotIndexes": [ "0x17d2c4fd87d25", "0x171588fe7b2ef" ] +======= + "plotIndexes": ["0x17d2c4fd87d25", "0x171588fe7b2ef"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217068,9 +229508,13 @@ "plots": { "405874022206206": "0x5791c5db0" }, +<<<<<<< HEAD "plotIndexes": [ "0x17123e8eacafe" ] +======= + "plotIndexes": ["0x17123e8eacafe"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217096,9 +229540,13 @@ "plots": { "405747527739939": "0x12dc0307fc" }, +<<<<<<< HEAD "plotIndexes": [ "0x1710675426a23" ] +======= + "plotIndexes": ["0x1710675426a23"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217126,9 +229574,13 @@ "plots": { "419164648346290": "0x48b2c2679" }, +<<<<<<< HEAD "plotIndexes": [ "0x17d3a5ff792b2" ] +======= + "plotIndexes": ["0x17d3a5ff792b2"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217154,9 +229606,13 @@ "plots": { "408564846537034": "0x949a4dbaa" }, +<<<<<<< HEAD "plotIndexes": [ "0x173966a8ba94a" ] +======= + "plotIndexes": ["0x173966a8ba94a"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217182,9 +229638,13 @@ "plots": { "404807646684224": "0x6cbcd01" }, +<<<<<<< HEAD "plotIndexes": [ "0x1702b9ffba440" ] +======= + "plotIndexes": ["0x1702b9ffba440"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217210,9 +229670,13 @@ "plots": { "422887535448662": "0x74dcc3680" }, +<<<<<<< HEAD "plotIndexes": [ "0x1809d2d549256" ] +======= + "plotIndexes": ["0x1809d2d549256"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217238,9 +229702,13 @@ "plots": { "405952555551214": "0x2558092dd" }, +<<<<<<< HEAD "plotIndexes": [ "0x1713631de89ee" ] +======= + "plotIndexes": ["0x1713631de89ee"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217266,9 +229734,13 @@ "plots": { "404955105302992": "0xc9b493a14" }, +<<<<<<< HEAD "plotIndexes": [ "0x1704df53399d0" ] +======= + "plotIndexes": ["0x1704df53399d0"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217294,9 +229766,13 @@ "plots": { "405991687912299": "0x2206595d4" }, +<<<<<<< HEAD "plotIndexes": [ "0x1713f4e56fb6b" ] +======= + "plotIndexes": ["0x1713f4e56fb6b"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217322,9 +229798,13 @@ "plots": { "405492768245082": "0x5e1450125" }, +<<<<<<< HEAD "plotIndexes": [ "0x170cb2469055a" ] +======= + "plotIndexes": ["0x170cb2469055a"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217350,9 +229830,13 @@ "plots": { "404684955626632": "0x5b39a7aa3" }, +<<<<<<< HEAD "plotIndexes": [ "0x1700f0f06ac88" ] +======= + "plotIndexes": ["0x1700f0f06ac88"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217379,10 +229863,14 @@ "422366589300603": "0xbeee5f8f", "411689905001233": "0x5d20fbcb" }, +<<<<<<< HEAD "plotIndexes": [ "0x18023e2852f7b", "0x1766e068b9311" ] +======= + "plotIndexes": ["0x18023e2852f7b", "0x1766e068b9311"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217410,9 +229898,13 @@ "plots": { "406359783000810": "0x1bf998d63b" }, +<<<<<<< HEAD "plotIndexes": [ "0x1719502844aea" ] +======= + "plotIndexes": ["0x1719502844aea"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217438,9 +229930,13 @@ "plots": { "416914807899146": "0x251a4c0e93" }, +<<<<<<< HEAD "plotIndexes": [ "0x17b2e8b06c40a" ] +======= + "plotIndexes": ["0x17b2e8b06c40a"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217466,9 +229962,13 @@ "plots": { "424067831520194": "0x11c7e09a60" }, +<<<<<<< HEAD "plotIndexes": [ "0x181affc755bc2" ] +======= + "plotIndexes": ["0x181affc755bc2"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217494,9 +229994,13 @@ "plots": { "404737495938253": "0x1772a2d59" }, +<<<<<<< HEAD "plotIndexes": [ "0x1701b4aac34cd" ] +======= + "plotIndexes": ["0x1701b4aac34cd"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217523,10 +230027,14 @@ "404929342948282": "0x5ff8e5616", "417074162881181": "0xe41d9a933" }, +<<<<<<< HEAD "plotIndexes": [ "0x17047f5a543ba", "0x17b53a552d29d" ] +======= + "plotIndexes": ["0x17047f5a543ba", "0x17b53a552d29d"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217552,9 +230060,13 @@ "plots": { "406205859764926": "0x23d68a302c" }, +<<<<<<< HEAD "plotIndexes": [ "0x171712bfa1abe" ] +======= + "plotIndexes": ["0x171712bfa1abe"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217582,11 +230094,15 @@ "620990777138369": "0x1c9d3b5ed", "650004772446996": "0xb18b8835" }, +<<<<<<< HEAD "plotIndexes": [ "0x17abc633f393f", "0x234c9aeae1cc1", "0x24f2d07906314" ] +======= + "plotIndexes": ["0x17abc633f393f", "0x234c9aeae1cc1", "0x24f2d07906314"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217612,9 +230128,13 @@ "plots": { "404736255118145": "0x49f5698c" }, +<<<<<<< HEAD "plotIndexes": [ "0x1701b00b6cb41" ] +======= + "plotIndexes": ["0x1701b00b6cb41"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217641,10 +230161,14 @@ "423269308404787": "0x175e8250f", "437554929146101": "0x5f0d575a3" }, +<<<<<<< HEAD "plotIndexes": [ "0x180f610c59433", "0x18df4321f18f5" ] +======= + "plotIndexes": ["0x180f610c59433", "0x18df4321f18f5"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217670,9 +230194,13 @@ "plots": { "414623981770600": "0x4ab09ed147" }, +<<<<<<< HEAD "plotIndexes": [ "0x179192b261768" ] +======= + "plotIndexes": ["0x179192b261768"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217698,9 +230226,13 @@ "plots": { "404637371542405": "0x4e4923432" }, +<<<<<<< HEAD "plotIndexes": [ "0x17003facb2b85" ] +======= + "plotIndexes": ["0x17003facb2b85"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217726,9 +230258,13 @@ "plots": { "404807760703809": "0x1c4eddd279" }, +<<<<<<< HEAD "plotIndexes": [ "0x1702ba6c77141" ] +======= + "plotIndexes": ["0x1702ba6c77141"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217754,9 +230290,13 @@ "plots": { "416581788749222": "0x2aa52f5a82" }, +<<<<<<< HEAD "plotIndexes": [ "0x17ae10189cda6" ] +======= + "plotIndexes": ["0x17ae10189cda6"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217782,9 +230322,13 @@ "plots": { "416777307799778": "0x1d1874a7af" }, +<<<<<<< HEAD "plotIndexes": [ "0x17b0e8761c0e2" ] +======= + "plotIndexes": ["0x17b0e8761c0e2"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217810,9 +230354,13 @@ "plots": { "405569526477439": "0x117c60cc04" }, +<<<<<<< HEAD "plotIndexes": [ "0x170dd038eb27f" ] +======= + "plotIndexes": ["0x170dd038eb27f"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217838,9 +230386,7 @@ "plots": { "437428256972808": "0x5fd7bd219" }, - "plotIndexes": [ - "0x18dd6b3df2008" - ] + "plotIndexes": ["0x18dd6b3df2008"] } }, "depositAllowances": {}, @@ -217867,10 +230413,7 @@ "439262284146563": "0x22836a946", "707897763173856": "0x6a080410" }, - "plotIndexes": [ - "0x18f81b868e783", - "0x283d44ab615e0" - ] + "plotIndexes": ["0x18f81b868e783", "0x283d44ab615e0"] } }, "depositAllowances": {}, @@ -217899,10 +230442,14 @@ "432507957558432": "0xec5a7bdb7d", "436394987906845": "0xf093a2b8eb" }, +<<<<<<< HEAD "plotIndexes": [ "0x1895d1b2c3ca0", "0x18ce6203c671d" ] +======= + "plotIndexes": ["0x1895d1b2c3ca0", "0x18ce6203c671d"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -217928,9 +230475,7 @@ "plots": { "439487841879353": "0x2d1dfabd20" }, - "plotIndexes": [ - "0x18fb63cb2c539" - ] + "plotIndexes": ["0x18fb63cb2c539"] } }, "depositAllowances": {}, @@ -217956,9 +230501,7 @@ "plots": { "446386709284268": "0x49b58523ce" }, - "plotIndexes": [ - "0x195fc813d45ac" - ] + "plotIndexes": ["0x195fc813d45ac"] } }, "depositAllowances": {}, @@ -217984,9 +230527,7 @@ "plots": { "446354539704178": "0x3b828bf7a" }, - "plotIndexes": [ - "0x195f503c86f72" - ] + "plotIndexes": ["0x195f503c86f72"] } }, "depositAllowances": {}, @@ -218012,9 +230553,7 @@ "plots": { "455953914009110": "0x1ed95ab640" }, - "plotIndexes": [ - "0x19eb00b141616" - ] + "plotIndexes": ["0x19eb00b141616"] } }, "depositAllowances": {}, @@ -218043,12 +230582,16 @@ "459319023744532": "0x1eacfb1009", "490256846516323": "0x14b8148bc" }, +<<<<<<< HEAD "plotIndexes": [ "0x19dac71e7ddbc", "0x1a153c2a22c4e", "0x1a1bf8b3fb614", "0x1bde2d12f7063" ] +======= + "plotIndexes": ["0x19dac71e7ddbc", "0x1a153c2a22c4e", "0x1a1bf8b3fb614", "0x1bde2d12f7063"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -218075,10 +230618,14 @@ "458021403565594": "0x7b757ff4c", "458124884153206": "0x31519017b" }, +<<<<<<< HEAD "plotIndexes": [ "0x1a0916b0f1e1a", "0x1a0a982fb9376" ] +======= + "plotIndexes": ["0x1a0916b0f1e1a", "0x1a0a982fb9376"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -218104,9 +230651,7 @@ "plots": { "458204265300255": "0x97c42a6b2f" }, - "plotIndexes": [ - "0x1a0bbfe77c11f" - ] + "plotIndexes": ["0x1a0bbfe77c11f"] } }, "depositAllowances": {}, @@ -218131,6 +230676,7 @@ "0": { "plots": { "462275867766454": "0x165a0bc00" +<<<<<<< HEAD }, "plotIndexes": [ "0x1a46ffce2eeb6" @@ -218570,6 +231116,414 @@ "521789411796482": "0x720e15a0" }, "plotIndexes": [ +======= + }, + "plotIndexes": ["0x1a46ffce2eeb6"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xd42E21c0b98c6b7EDbE350bCeD787CE0B9644877": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "463368747590625": "0x1890f25c5", + "568331431730306": "0x106d7b259", + "568316734551538": "0x36c052690" + }, + "plotIndexes": ["0x1a56e7199a3e1", "0x204e4f91a5c82", "0x204e18d1535f2"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xAFb3aC7EEC7e683734f81affBC3ee24C786ef2d0": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "458054544334182": "0x83215600" + }, + "plotIndexes": ["0x1a09922671d66"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x33033E306c89Dc5b662f01e74B12623f9a39CCE4": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "462263867766454": "0x165a0bc00" + }, + "plotIndexes": ["0x1a46d31a176b6"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xab2b4e053Ceb42B50f39c4C172B79E86A5e217c3": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x401", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "457500650018099": "0x1ee51ae904", + "656283295570897": "0x2e400aa8c" + }, + "plotIndexes": ["0x1a0182bba9533", "0x254e2dcb45bd1"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x6e568a11b" + }, + "sop": {} + }, + "0xf6Dd6A99A970d627A3F0D673cb162F0fe3D03251": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "463568948475744": "0x7e1e15391" + }, + "plotIndexes": ["0x1a59d0e80b760"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xeAB3981257d761d809E7036F498208F06ce0E5bb": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "458056744334182": "0x71bf9909" + }, + "plotIndexes": ["0x1a099a5887366"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x96b793d04E0D068083792E4D6E7780EEE50755Fa": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "464061872519163": "0x736b74d21" + }, + "plotIndexes": ["0x1a60fd310b7fb"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x2d0DDb67B7D551aFa7c8FA4D31F86DA9cc947450": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "462530193955529": "0x1f18862572" + }, + "plotIndexes": ["0x1a4ab33e89ac9"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xDaD87a8cCe8D5B9C57e44ae28111034e2A39eD50": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "464341586704871": "0x95d30942d" + }, + "plotIndexes": ["0x1a650f35479e7"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x47b2EFa18736C6C211505aEFd321bEC3AC3E8779": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "461663522612249": "0x1eeae3e0ff" + }, + "plotIndexes": ["0x1a3e16a456419"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xDf3e8B69943AD8278D198681175E6f93135CDDfC": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "464470389283162": "0x1d73d5d4ce" + }, + "plotIndexes": ["0x1a66ef08fd95a"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x5F0f6F695FebF386AA93126237b48c424961797B": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "463538684768581": "0x70bdb861b" + }, + "plotIndexes": ["0x1a59602a53145"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x2C01E651a64387352EbAF860165778049031e190": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "462269867766454": "0x165a0bc00" + }, + "plotIndexes": ["0x1a46e974232b6"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xf0ec8fFED51B4Ba996005F04d38c3dBeF3A92773": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "462663749386299": "0x163f33a71" + }, + "plotIndexes": ["0x1a4ca4c6ec03b"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x897512dFC6F2417b9f7b4bd21cdb7a4Fbb4939Df": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "461796312433944": "0x2f2e1705ef", + "469471119091257": "0x694f8fee", + "469472885913127": "0x69e15cfb", + "472836318883874": "0x6970e6a2", + "469469352906555": "0x6945d6fe", + "469474662290210": "0x69e9f5b4", + "470700696631708": "0x73a9aecb", + "521585204013082": "0x71d2eeaf", + "521587113662153": "0x71d00d59", + "521789411796482": "0x720e15a0" + }, + "plotIndexes": [ +>>>>>>> b689ac329 (feat: update reseed jsons) "0x1a40055294518", "0x1aafb43492639", "0x1aafbac98b627", @@ -218606,9 +231560,13 @@ "plots": { "462675052970405": "0xa1836be23c" }, +<<<<<<< HEAD "plotIndexes": [ "0x1a4ccee2dc1a5" ] +======= + "plotIndexes": ["0x1a4ccee2dc1a5"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -218634,6 +231592,7 @@ "plots": { "464028180668427": "0x7d830d7f0" }, +<<<<<<< HEAD "plotIndexes": [ "0x1a607fadfe00b" ] @@ -218893,6 +231852,38 @@ "plotIndexes": [ "0x1aafc806408d6" ] +======= + "plotIndexes": ["0x1a607fadfe00b"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, +<<<<<<< HEAD +======= + "0xd776347E2FD043Cb2903Fd6999533a07eD4D6B48": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "467339102657012": "0x28fbd296", + "467339790249098": "0x71e703cda" + }, + "plotIndexes": ["0x1a90add3419f4", "0x1a90b062fec8a"] } }, "depositAllowances": {}, @@ -218903,6 +231894,216 @@ "internalTokenBalance": {}, "sop": {} }, + "0xC25148EB441B3cAD327E2Ff9c45f317f087dF049": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "486935208595291": "0x76c9bd3b" + }, + "plotIndexes": ["0x1badd70230f5b"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x78d03BeEBEfB15EC912e4D6f7F89F571f33FaA21": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "470937847310112": "0x139c45a5f1" + }, + "plotIndexes": ["0x1ac50c319a720"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x5355C2B0e056d032a4F11E096c235e9a59F5E6af": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "469498391761616": "0x68ae3574a", + "502195415776668": "0x29388f65b5" + }, + "plotIndexes": ["0x1ab019cdd12d0", "0x1c8be7b5d7d9c"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x1FA517A273cC7e4305843DD136c09c8c370814be": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "469335949866381": "0xfcdbb409b" + }, + "plotIndexes": ["0x1aadbca92758d"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x0ACe049e9378FfDbcFcb93AEE763d72A935038AE": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "469335271362681": "0x28712514" + }, + "plotIndexes": ["0x1aadba2215079"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xEEf102b4B5A2f714aFd7c00C94257D7379dc913E": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "469550813615889": "0xcf4eb08d" + }, + "plotIndexes": ["0x1ab0dd1731711"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x03fFDf41a57Fabf55C245F9175fc8644F8381C48": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "469267431670089": "0xfcb8f8f30" + }, + "plotIndexes": ["0x1aacbd691c149"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x46b7c8c6513818348beF33cc5638dDe99e5c9E74": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "469476439230678": "0x2c31f1dba" + }, + "plotIndexes": ["0x1aafc806408d6"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, +>>>>>>> b689ac329 (feat: update reseed jsons) "0x97c46EeC87a51320c05291286f36689967834854": { "roots": "0x0", "stalk": "0x0", @@ -218918,9 +232119,33 @@ "plots": { "476619349663811": "0xe02db63ab" }, - "plotIndexes": [ - "0x1b17b9707a043" - ] + "plotIndexes": ["0x1b17b9707a043"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x9389dD268Bb9758Bc73E9715d7C129b5A7dAa228": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "476490739234120": "0x50fc0001e" + }, + "plotIndexes": ["0x1b15da5403548"] } }, "depositAllowances": {}, @@ -218976,11 +232201,7 @@ "716295671103690": "0x611f0588", "741119395427445": "0x178912a65e" }, - "plotIndexes": [ - "0x1ac19ff7b2867", - "0x28b779507c0ca", - "0x2a20b4e4cf475" - ] + "plotIndexes": ["0x1ac19ff7b2867", "0x28b779507c0ca", "0x2a20b4e4cf475"] } }, "depositAllowances": {}, @@ -219006,9 +232227,13 @@ "plots": { "492791683332142": "0xd84b378983" }, +<<<<<<< HEAD "plotIndexes": [ "0x1c031013bb82e" ] +======= + "plotIndexes": ["0x1c031013bb82e"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -219034,9 +232259,13 @@ "plots": { "490810794234272": "0x3e16926aa" }, +<<<<<<< HEAD "plotIndexes": [ "0x1be63cb0ad1a0" ] +======= + "plotIndexes": ["0x1be63cb0ad1a0"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -219062,9 +232291,13 @@ "plots": { "504973746057585": "0x3a17dfb2a" }, +<<<<<<< HEAD "plotIndexes": [ "0x1cb455cc13171" ] +======= + "plotIndexes": ["0x1cb455cc13171"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -219091,10 +232324,186 @@ "526495525703189": "0x2f7abc717", "595967650797840": "0x47a42a060" }, +<<<<<<< HEAD "plotIndexes": [ "0x1ded84ac90e15", "0x21e07881f9910" ] +======= + "plotIndexes": ["0x1ded84ac90e15", "0x21e07881f9910"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xF7f1dAEc57991db325a4d24Ca72E96a2EdF3683d": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "519666974560053": "0x968233c90" + }, + "plotIndexes": ["0x1d8a2656b8f35"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x1aA6F8B965d692c8162131F98219a6986DD10A83": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "491209036915919": "0x3940f0cff" + }, + "plotIndexes": ["0x1bec08427e4cf"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xF96A38c599D458fDb4BB1Cd6d4f22c9851427c61": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "493962561733636": "0x34f0a749a" + }, + "plotIndexes": ["0x1c1419f064404"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x58fb0ecfb2d2b40ba4e826023f981aa36945aaf9": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "556455242057128": "0x306d3455e" + }, + "plotIndexes": ["0x1fa17d50945a8"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x21D4Df25397446300C02338f334d0D219ABcc9C3": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "556861481023206": "0x3b1242748e", + "531921340528773": "0x8c14ebba1", + "531509716308908": "0x5fd6b724d9", + "556478516642786": "0x592a74b304", + "596005613074562": "0x15b52dbfd8", + "613864088561276": "0x10e7b14970", + "613952906039465": "0x9453c67fd1", + "634295738092098": "0x28830aea06" + }, + "plotIndexes": [ + "0x1fa766ac3f6e6", + "0x1e3c7968cf885", + "0x1e367bfd5d3ac", + "0x1fa1d404f43e2", + "0x21e105ed9f882", + "0x22e4e5ef0667c", + "0x22e630cdf90a9", + "0x240e37c26ca42" + ] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x21754dF1E545e836be345B0F56Cde2D8419a21B2": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "526456157420239": "0x92a885346" + }, + "plotIndexes": ["0x1decf2040bacf"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -219120,6 +232529,7 @@ "plots": { "519666974560053": "0x968233c90" }, +<<<<<<< HEAD "plotIndexes": [ "0x1d8a2656b8f35" ] @@ -219179,6 +232589,9 @@ "plotIndexes": [ "0x1c1419f064404" ] +======= + "plotIndexes": ["0x1f02c3701f8cd"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -219189,7 +232602,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x58fb0ecfb2d2b40ba4e826023f981aa36945aaf9": { + "0x54E6E97FAAE412bba0a42a8CCE362d66882Ff529": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219202,11 +232615,87 @@ "fields": { "0": { "plots": { - "556455242057128": "0x306d3455e" + "521791325322146": "0x118ad269c8" }, - "plotIndexes": [ - "0x1fa17d50945a8" - ] + "plotIndexes": ["0x1da910297bba2"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x76ce7A233804C5f662897bBfc469212d28D11613": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "493720658198961": "0x1d114117ce" + }, + "plotIndexes": ["0x1c1094c7341b1"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xc99c16815c5aEa507c2D8AeB1e69eed4CC8e4E56": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "502039772720798": "0x2171a952ee" + }, + "plotIndexes": ["0x1c89a3e50ee9e"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x51b2Adf97650A8D732380f2D04f5922D740122E3": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "491115783635980": "0x27a594" + }, + "plotIndexes": ["0x1beaacdd3c40c"] } }, "depositAllowances": {}, @@ -219442,9 +232931,7 @@ "plots": { "556351773854003": "0x84d25c944" }, - "plotIndexes": [ - "0x1f9ffbdd9c933" - ] + "plotIndexes": ["0x1f9ffbdd9c933"] } }, "depositAllowances": {}, @@ -219456,6 +232943,7 @@ "sop": {} }, "0x120Be1406E6B46dDD7878EDC06069C811f608844": { +<<<<<<< HEAD "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219692,6 +233180,8 @@ "sop": {} }, "0x445fe76afD6f1c8292Bd232D2AA7B67f1a9da96F": { +======= +>>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219704,11 +233194,10 @@ "fields": { "0": { "plots": { - "577492473102165": "0xb3e6bedd43" + "556387427914359": "0xfca09b331", + "646143725856011": "0xa75f71a5e" }, - "plotIndexes": [ - "0x20d39f1b83f55" - ] + "plotIndexes": ["0x1fa080aff9277", "0x24baa0f40e50b"] } }, "depositAllowances": {}, @@ -219719,7 +233208,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x2817a8dFe9DCff27449C8C66Fa02e05530859B73": { + "0xd14Cb607F99f9c5c9a47D1DEF59a02A3fBbf14Fd": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219732,8 +233221,9 @@ "fields": { "0": { "plots": { - "557115190438772": "0x4c24d44944" + "538353942308571": "0xb08c89ad5" }, +<<<<<<< HEAD "plotIndexes": [ "0x1fab17d066b74" ] @@ -219797,6 +233287,9 @@ "plotIndexes": [ "0x21a0b6479af0f" ] +======= + "plotIndexes": ["0x1e9a14b7ea6db"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -219822,9 +233315,281 @@ "plots": { "568070700207176": "0x875e281df" }, +<<<<<<< HEAD "plotIndexes": [ "0x204a8444b0c48" ] +======= + "plotIndexes": ["0x204a4f16c66b2"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xAc0D2CB9BC2488Da7Db1dd13321b5d01A0ae90c2": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "593804898539595": "0x30c85d824" + }, + "plotIndexes": ["0x21c0ffa0b184b"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x59D8F21eA46a96d52a4eec72D2B2e7C2bEd0995F": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "568107037724199": "0x2058c8c4c6" + }, + "plotIndexes": ["0x204b0ba2d8e27"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xA8dFD30f66FeE7cC504b4605E9C3f5e27e4a78F7": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "585809012696029": "0x83b0859f5a", + "593094411895687": "0x9301297bcc", + "594950942092362": "0xecb88facc6" + }, + "plotIndexes": ["0x214ca4a1ba3dd", "0x21b6a8dbd4387", "0x21d1acf8fec4a"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x784616aa101D735b21d12Ba102b97fA2C8dE4C9e": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "557474269916507": "0x71ad7bbb01", + "584407516797670": "0x22ca575d6b", + "592354657193833": "0x486f8ed77b" + }, + "plotIndexes": ["0x1fb0517d46d5b", "0x21383fa715ae6", "0x21abe50ec4f69"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x12a2294" + }, + "sop": {} + }, + "0x9336a604077688Ae5bB9e18EbDF305d81d474817": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "568756414668700": "0x3d021c579" + }, + "plotIndexes": ["0x20547ec0f5f9c"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x445fe76afD6f1c8292Bd232D2AA7B67f1a9da96F": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "577492473102165": "0xb3e6bedd43" + }, + "plotIndexes": ["0x20d39f1b83f55"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x2817a8dFe9DCff27449C8C66Fa02e05530859B73": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "557115190438772": "0x4c24d44944" + }, + "plotIndexes": ["0x1fab17d066b74"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xAFE1f61f9848477E45E5c7eF832451e4d1a6f21A": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "577442842692513": "0xb8e33f3b4", + "568256114535784": "0xe1d3c088a", + "594190730526984": "0xe0724ea92" + }, + "plotIndexes": ["0x20d2e63844ba1", "0x204d36fd92d68", "0x21c69cf6c0108"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xB17fC3D59de766b659644241Dba722546E32b163": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "591586186080015": "0x4fae855e2" + }, + "plotIndexes": ["0x21a0b6479af0f"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x676B0Add3De8d340201F3F58F486beFEDCD609cD": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "568070700207176": "0x875e281df" + }, + "plotIndexes": ["0x204a8444b0c48"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -219851,10 +233616,14 @@ "586871081432488": "0x27e1e5da2", "591064164890363": "0x2ff61bf6b" }, +<<<<<<< HEAD "plotIndexes": [ "0x215c1925675a8", "0x21991d99676fb" ] +======= + "plotIndexes": ["0x215c1925675a8", "0x21991d99676fb"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -219880,6 +233649,7 @@ "plots": { "568247857730253": "0x1ec24da9b" }, +<<<<<<< HEAD "plotIndexes": [ "0x204d183b452cd" ] @@ -220113,6 +233883,9 @@ "plotIndexes": [ "0x233a04dad58ab" ] +======= + "plotIndexes": ["0x204d183b452cd"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -220123,7 +233896,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x6cE2381Df220609Fa80346E8c5CffF88bA0D6D27": { + "0xD0ce08617E88D87696fDB034AF7Cc66f6ae2c203": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220136,6 +233909,7 @@ "fields": { "0": { "plots": { +<<<<<<< HEAD "596237315381223": "0xfc6dffb57b", "599009603400904": "0x1923937352d", "603696952850202": "0x14eff8b569d", @@ -220147,6 +233921,11 @@ "0x2250f266d371a", "0x21f42bf624d62" ] +======= + "593817994165201": "0x55d3dffd9a", + "634004669814871": "0x41ff34aac7" + }, + "plotIndexes": ["0x21c13069a7bd1", "0x2409fb7215857"] } }, "depositAllowances": {}, @@ -220157,7 +233936,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xc76b280880686397F7b95AfC72B581b1a52e6Bad": { + "0xBC0A7F1CB55d8f6eAdde498DbFE0FF2f78149A84": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220170,9 +233949,142 @@ "fields": { "0": { "plots": { - "608869982259746": "0xfdca1291b", - "608803305172730": "0xee9d896d0" + "568772791444757": "0x4d55e8171" + }, + "plotIndexes": ["0x2054bbc312515"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xb3F7DF25CB052052dF6d73d83EdBF6a2238c67de": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "593817993539695": "0x98b62" + }, + "plotIndexes": ["0x21c130690f06f"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x7d3a9a4F82766285102f5C44731b974e6a5F5DD0": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "578265143516312": "0x5fd750844", + "636425945808043": "0x8b96045ca" + }, + "plotIndexes": ["0x20dedd8771c98", "0x242d3766cfcab"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xf9380E9F90aDE257C8F23d53817b33FBbF975a19": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "594649546202924": "0x6dddba1e6" + }, + "plotIndexes": ["0x21cd4a2f79f2c"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xBaD292Dbb933Aea623a3699621901A881E22FfAC": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "594560949667628": "0x14a0c3d800", + "612635280033573": "0x4d9286adc7" + }, + "plotIndexes": ["0x21cc00233c72c", "0x22d30443e4725"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xcdeC732853019E9F287A9Fdf02f21cfd5eFa0436": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "594250979928986": "0x154ebc8537" }, +<<<<<<< HEAD "plotIndexes": [ "0x229c39701ca22", "0x229b410be2efa" @@ -220609,6 +234521,9 @@ "plotIndexes": [ "0x233a2522250f2" ] +======= + "plotIndexes": ["0x21c77d690eb9a"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -220634,9 +234549,492 @@ "plots": { "594940109425366": "0x285ad6174" }, +<<<<<<< HEAD "plotIndexes": [ "0x21d1849e28ad6" ] +======= + "plotIndexes": ["0x233a04dad58ab"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x6cE2381Df220609Fa80346E8c5CffF88bA0D6D27": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "596237315381223": "0xfc6dffb57b", + "599009603400904": "0x1923937352d", + "603696952850202": "0x14eff8b569d", + "597321492614498": "0x1890b3e6766" + }, + "plotIndexes": ["0x21e46516297e7", "0x220cbcaa0b4c8", "0x2250f266d371a", "0x21f42bf624d62"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xc76b280880686397F7b95AfC72B581b1a52e6Bad": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "608869982259746": "0xfdca1291b", + "608803305172730": "0xee9d896d0" + }, + "plotIndexes": ["0x229c39701ca22", "0x229b410be2efa"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x8316B668C742e5D5CF2C63FC489935d530D97D26": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "602359789978270": "0xf54461a7f9", + "601154487873853": "0xf49b77f635" + }, + "plotIndexes": ["0x223d7d14f029e", "0x222bf2fb4713d"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x7Ccc734e367c8C3D85c8AF7886721433a30bD8e8": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "612615964925164": "0x4bb450f9" + }, + "plotIndexes": ["0x22d2bc4f91cec"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x5925ced0" + }, + "sop": {} + }, + "0xf1608f6796E1b121674036691203C8ecE7516cC2": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "621655357810171": "0xd09dd2b831" + }, + "plotIndexes": ["0x235646ac665fb"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xE043b38b90712bdFf29a2D930047FF9A56660b0F": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "605435936348975": "0x972595880" + }, + "plotIndexes": ["0x226a409eb9b2f"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xaA3eaFD722A326b80F4BF8c1F97445ac57850D5f": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "614943877475358": "0xf4240", + "614943878475358": "0x456863e6a4d" + }, + "plotIndexes": ["0x22f49c75fac1e", "0x22f49c76eee5e"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x3E5ed320828B992Ab80d4A8b3d80b24c0F64b58c": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "595986881853808": "0x45c77bf12" + }, + "plotIndexes": ["0x21e0c02623970"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xb68F761056eF1044eDf8E15646c8412FB86Cf6F2": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "613432974464989": "0x47bb4d1852", + "638225681914516": "0x23b822a3cd", + "638146861484331": "0x125a105169" + }, + "plotIndexes": ["0x22de9fe8957dd", "0x244767f0e9a94", "0x2446424fe492b"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x913c72456D6e3CeEa44Aa49a76B2DF494CED008F": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "619753544044710": "0x12010d6cc1b" + }, + "plotIndexes": ["0x233a99dd750a6"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xDb8D484c46cE6B0bd00f38a51b299EB129928AC0": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "612353902657132": "0xb88e74fd" + }, + "plotIndexes": ["0x22ceec0d83e6c"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x880bba07fA004b948D22f4492808b255d853DFFe": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "612050576784932": "0x9b9ff1eba" + }, + "plotIndexes": ["0x22ca82136be24"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x4065A8cA3fD17A7EE02e23f260FCEefFD4806aF5": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "600737140173301": "0x612bdc8748", + "614721578198335": "0x33c211c6df" + }, + "plotIndexes": ["0x2225e03d7e9f5", "0x22f16054de53f"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x5c666Cb946c856238FE949c78Acb7fF2010f5eE6": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "622600228434741": "0x1854e0ad0" + }, + "plotIndexes": ["0x236406973f335"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xed67448506A9C724E78bF42d5Cf35b4b617cE2F6": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "594872434210527": "0xfc1c1d3f7" + }, + "plotIndexes": ["0x21d088820b6df"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x0EdAc71d6c67BFA7A4dDD79A75967D9c0984F1ce": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "594698791721651": "0x7e874b462" + }, + "plotIndexes": ["0x21ce01a3a9ab3"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xdDd607Ee226b65Ee1292bB2d67682b86cd024930": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "619722209120498": "0x74bb4ffb4" + }, + "plotIndexes": ["0x233a2522250f2"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x8E3f6FecF3C954ef166e9e0CEc56B283e6C729a9": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "594940109425366": "0x285ad6174" + }, + "plotIndexes": ["0x21d1849e28ad6"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -220662,8 +235060,70 @@ "plots": { "622995115594871": "0x159007814" }, + "plotIndexes": ["0x2369c5a8fd477"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x5b8C24B5Fe50cf3A3bDDa9b9954F751788eb50E4": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "622903969411506": "0xb489a9223" + }, + "plotIndexes": ["0x2368721d371b2"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x3c7cFaF3680953f8Ca3C7e319Ac2A4c35870E86c": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "623714888044871": "0xb4a593300", + "629694089075109": "0xb4a5b00fd", + "627708183606040": "0xb4a5b00fd", + "626050365185271": "0xb4a5b00fd", + "633046989282047": "0xb4a5b00fd", + "631376008043778": "0xb4a5b00fd" + }, "plotIndexes": [ - "0x2369c5a8fd477" + "0x23743f057d147", + "0x23cb4147f19a5", + "0x23ae5b34e7318", + "0x23963b5a0dcf7", + "0x23fc0bcec1aff", + "0x23e3baeaddd02" ] } }, @@ -220757,10 +235217,7 @@ "622551358840364": "0xb60dad509", "656378346012897": "0x5d8e32000" }, - "plotIndexes": [ - "0x2363508991e2c", - "0x254f8fe2700e1" - ] + "plotIndexes": ["0x2363508991e2c", "0x254f8fe2700e1"] } }, "depositAllowances": {}, @@ -220786,9 +235243,13 @@ "plots": { "613753403161276": "0x19c55d2bc0" }, +<<<<<<< HEAD "plotIndexes": [ "0x22e3499933abc" ] +======= + "plotIndexes": ["0x22e3499933abc"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -220816,9 +235277,7 @@ "plots": { "622952432141269": "0x6489fbd84" }, - "plotIndexes": [ - "0x236926a6e03d5" - ] + "plotIndexes": ["0x236926a6e03d5"] } }, "depositAllowances": {}, @@ -220844,9 +235303,13 @@ "plots": { "621063660888218": "0x144c70ad36" }, +<<<<<<< HEAD "plotIndexes": [ "0x234daa6e3e09a" ] +======= + "plotIndexes": ["0x234daa6e3e09a"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -220872,9 +235335,13 @@ "plots": { "614589966717050": "0x1475c14425" }, +<<<<<<< HEAD "plotIndexes": [ "0x22ef760a6107a" ] +======= + "plotIndexes": ["0x22ef760a6107a"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -220900,9 +235367,13 @@ "plots": { "612356999000937": "0x360fa424b9" }, +<<<<<<< HEAD "plotIndexes": [ "0x22cef7966b369" ] +======= + "plotIndexes": ["0x22cef7966b369"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -220928,9 +235399,13 @@ "plots": { "596098847062106": "0x1f74314d40" }, +<<<<<<< HEAD "plotIndexes": [ "0x21e261407b85a" ] +======= + "plotIndexes": ["0x21e261407b85a"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -220994,9 +235469,7 @@ "plots": { "632123021912047": "0x78029478" }, - "plotIndexes": [ - "0x23ee99c2ce7ef" - ] + "plotIndexes": ["0x23ee99c2ce7ef"] } }, "depositAllowances": {}, @@ -221024,9 +235497,13 @@ "plots": { "626098857303540": "0x146cc2030" }, +<<<<<<< HEAD "plotIndexes": [ "0x2396efffbddf4" ] +======= + "plotIndexes": ["0x2396efffbddf4"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -221052,9 +235529,13 @@ "plots": { "624730707044871": "0x230dc6fcc0" }, +<<<<<<< HEAD "plotIndexes": [ "0x2383073dfaa07" ] +======= + "plotIndexes": ["0x2383073dfaa07"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -221080,9 +235561,13 @@ "plots": { "634469735314504": "0x83024d0d0" }, +<<<<<<< HEAD "plotIndexes": [ "0x2410bff31b448" ] +======= + "plotIndexes": ["0x2410bff31b448"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -221108,9 +235593,13 @@ "plots": { "636425113945926": "0x31953565" }, +<<<<<<< HEAD "plotIndexes": [ "0x242d344d7c746" ] +======= + "plotIndexes": ["0x242d344d7c746"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -221136,9 +235625,13 @@ "plots": { "643046863279717": "0x76bc5058" }, +<<<<<<< HEAD "plotIndexes": [ "0x248d903dc1665" ] +======= + "plotIndexes": ["0x248d903dc1665"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -221164,9 +235657,13 @@ "plots": { "640246497738027": "0x829814d2" }, +<<<<<<< HEAD "plotIndexes": [ "0x2464d0110fd2b" ] +======= + "plotIndexes": ["0x2464d0110fd2b"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -221194,9 +235691,13 @@ "plots": { "640192401336369": "0xa38742486" }, +<<<<<<< HEAD "plotIndexes": [ "0x2464068ab6831" ] +======= + "plotIndexes": ["0x2464068ab6831"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -221270,9 +235771,13 @@ "plots": { "634589454042581": "0xdf3e1eb52" }, +<<<<<<< HEAD "plotIndexes": [ "0x24127defc85d5" ] +======= + "plotIndexes": ["0x24127defc85d5"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -221298,9 +235803,13 @@ "plots": { "638808515968683": "0x116d4bc6e3" }, +<<<<<<< HEAD "plotIndexes": [ "0x244fe32ac7eab" ] +======= + "plotIndexes": ["0x244fe32ac7eab"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -221406,9 +235915,13 @@ "plots": { "643542781900783": "0x129dd46c" }, +<<<<<<< HEAD "plotIndexes": [ "0x2494c7ae9b7ef" ] +======= + "plotIndexes": ["0x2494c7ae9b7ef"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -221546,9 +236059,13 @@ "plots": { "634779007760082": "0x155cd08f2" }, +<<<<<<< HEAD "plotIndexes": [ "0x241540144b6d2" ] +======= + "plotIndexes": ["0x241540144b6d2"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -221574,9 +236091,13 @@ "plots": { "643524849940607": "0x42cd3ff70" }, +<<<<<<< HEAD "plotIndexes": [ "0x249484e15b87f" ] +======= + "plotIndexes": ["0x249484e15b87f"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -221602,9 +236123,13 @@ "plots": { "643661899835648": "0x22fd71082" }, +<<<<<<< HEAD "plotIndexes": [ "0x2496836e52900" ] +======= + "plotIndexes": ["0x2496836e52900"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -221670,9 +236195,13 @@ "plots": { "641161763710685": "0x149052ee26" }, +<<<<<<< HEAD "plotIndexes": [ "0x247221b2b66dd" ] +======= + "plotIndexes": ["0x247221b2b66dd"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -221698,9 +236227,13 @@ "plots": { "643543094234203": "0x268aedfc" }, +<<<<<<< HEAD "plotIndexes": [ "0x2494c8d878c5b" ] +======= + "plotIndexes": ["0x2494c8d878c5b"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -221726,9 +236259,7 @@ "plots": { "641250084410627": "0x13d2626549" }, - "plotIndexes": [ - "0x24736ab7e5503" - ] + "plotIndexes": ["0x24736ab7e5503"] } }, "depositAllowances": {}, @@ -221754,9 +236285,13 @@ "plots": { "643052207829410": "0xa460ce93" }, +<<<<<<< HEAD "plotIndexes": [ "0x248da426b71a2" ] +======= + "plotIndexes": ["0x248da426b71a2"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -221785,12 +236320,16 @@ "649898706059057": "0x11439c22b0", "649594886309057": "0x11439c22b0" }, +<<<<<<< HEAD "plotIndexes": [ "0x24e86db60ca51", "0x24db7a35df531", "0x24f145583bf31", "0x24ecd987244c1" ] +======= + "plotIndexes": ["0x24e86db60ca51", "0x24db7a35df531", "0x24f145583bf31", "0x24ecd987244c1"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -221818,9 +236357,13 @@ "plots": { "659295737757685": "0x7987c1268" }, +<<<<<<< HEAD "plotIndexes": [ "0x257a040403ff5" ] +======= + "plotIndexes": ["0x257a040403ff5"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -221848,9 +236391,7 @@ "plots": { "647198203663452": "0x962482180" }, - "plotIndexes": [ - "0x24c9f9307545c" - ] + "plotIndexes": ["0x24c9f9307545c"] } }, "depositAllowances": {}, @@ -221877,9 +236418,79 @@ "0": { "plots": { "647768381299006": "0x1aad5fee6" +<<<<<<< HEAD }, "plotIndexes": [ "0x24d245443993e" +======= + }, + "plotIndexes": ["0x24d245443993e"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x6223dd77dd5ED000592d7A8C745D68B2599C640D": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "656226928313897": "0x1d14563e8" + }, + "plotIndexes": ["0x254d5bcf44629"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xdc95f2Ec354b814Fc253846524b13b03be739Cd6": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "654164513469293": "0x56fe022e76", + "661537927845790": "0x7a42b0af04", + "663103266591658": "0x275c29f5d5", + "742559423794395": "0x2ef0ddff06", + "972139314219125": "0x7c4e5ce8d8", + "979431393566237": "0x2f437c4300", + "979634389246237": "0x2540be400" + }, + "plotIndexes": [ + "0x252f58b73336d", + "0x259aa4d31d79e", + "0x25b16c2a793aa", + "0x2a35a96ae0cdb", + "0x37427d27f0875", + "0x37ac9a44b9e1d", + "0x37af8e7c7e11d" +>>>>>>> b689ac329 (feat: update reseed jsons) ] } }, @@ -221891,6 +236502,7 @@ "internalTokenBalance": {}, "sop": {} }, +<<<<<<< HEAD "0x6223dd77dd5ED000592d7A8C745D68B2599C640D": { "roots": "0x0", "stalk": "0x0", @@ -221959,6 +236571,8 @@ "internalTokenBalance": {}, "sop": {} }, +======= +>>>>>>> b689ac329 (feat: update reseed jsons) "0x58e4e9D30Da309624c785069A99709b16276B196": { "roots": "0x0", "stalk": "0x0", @@ -221974,9 +236588,7 @@ "plots": { "656308235880897": "0x236d824fc" }, - "plotIndexes": [ - "0x254e8ab4349c1" - ] + "plotIndexes": ["0x254e8ab4349c1"] } }, "depositAllowances": {}, @@ -222005,9 +236617,13 @@ "plots": { "659328360796765": "0x6ece1ae09" }, +<<<<<<< HEAD "plotIndexes": [ "0x257a7d8bc525d" ] +======= + "plotIndexes": ["0x257a7d8bc525d"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222033,9 +236649,13 @@ "plots": { "659195405831758": "0x174a7d84f4" }, +<<<<<<< HEAD "plotIndexes": [ "0x25788e4008e4e" ] +======= + "plotIndexes": ["0x25788e4008e4e"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222062,10 +236682,14 @@ "647831216014808": "0x3af0ea35f9", "647509510720119": "0x3a4888a907" }, +<<<<<<< HEAD "plotIndexes": [ "0x24d32f58145d8", "0x24ce80e600a77" ] +======= + "plotIndexes": ["0x24d32f58145d8", "0x24ce80e600a77"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222092,10 +236716,14 @@ "659533224957918": "0xa4820614a3", "659358104813670": "0x28c5f95778" }, +<<<<<<< HEAD "plotIndexes": [ "0x257d78b9757de", "0x257aec59e0066" ] +======= + "plotIndexes": ["0x257d78b9757de", "0x257aec59e0066"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222121,9 +236749,7 @@ "plots": { "660239782498384": "0x174bd55f1" }, - "plotIndexes": [ - "0x2587c0db3d050" - ] + "plotIndexes": ["0x2587c0db3d050"] } }, "depositAllowances": {}, @@ -222151,9 +236777,13 @@ "plots": { "656650962775397": "0x271fef48e0" }, +<<<<<<< HEAD "plotIndexes": [ "0x255387760ad65" ] +======= + "plotIndexes": ["0x255387760ad65"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222179,9 +236809,7 @@ "plots": { "656434070362897": "0x7adef1d20" }, - "plotIndexes": [ - "0x25505f7951b11" - ] + "plotIndexes": ["0x25505f7951b11"] } }, "depositAllowances": {}, @@ -222207,9 +236835,13 @@ "plots": { "647759835739006": "0x1fd5ae5c0" }, +<<<<<<< HEAD "plotIndexes": [ "0x24d2256e8b37e" ] +======= + "plotIndexes": ["0x24d2256e8b37e"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222237,9 +236869,7 @@ "plots": { "660239781031041": "0x1663cf" }, - "plotIndexes": [ - "0x2587c0d9d6c81" - ] + "plotIndexes": ["0x2587c0d9d6c81"] } }, "depositAllowances": {}, @@ -222265,9 +236895,13 @@ "plots": { "652130723745575": "0x8060945df0" }, +<<<<<<< HEAD "plotIndexes": [ "0x2511c0422cf27" ] +======= + "plotIndexes": ["0x2511c0422cf27"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222293,9 +236927,13 @@ "plots": { "647172198157478": "0x60e0c87b6" }, +<<<<<<< HEAD "plotIndexes": [ "0x24c9984facca6" ] +======= + "plotIndexes": ["0x24c9984facca6"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222323,9 +236961,13 @@ "plots": { "656317745950397": "0x2f7a97514" }, +<<<<<<< HEAD "plotIndexes": [ "0x254eae21b6ebd" ] +======= + "plotIndexes": ["0x254eae21b6ebd"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222351,9 +236993,111 @@ "plots": { "667453397655544": "0x3dcc0f2e" }, - "plotIndexes": [ - "0x25f0b9aabdff8" - ] + "plotIndexes": ["0x25f0b9aabdff8"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xDBB493488991F070176367aF5c57De2B8de5aAb1": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "663033553583023": "0xf4cc59c9b" + }, + "plotIndexes": ["0x25b06876f7baf"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xA908Af6fD5E61360e24FcA8C8fa6755786409cCe": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "685836952618602": "0x151bd8935" + }, + "plotIndexes": ["0x26fc3dbef466a"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x375C1DC69F05Ff526498C8aCa48805EeC52861d5": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "685835659103948": "0x4d19779e" + }, + "plotIndexes": ["0x26fc38ed5cecc"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xDd6Ab3d27d63e7Ed502422918BBcc9D881c9F4B7": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "685842618961823": "0x22b6cfe62" + }, + "plotIndexes": ["0x26fc52daccf9f"] } }, "depositAllowances": {}, @@ -222377,10 +237121,29 @@ "fields": { "0": { "plots": { +<<<<<<< HEAD "663033553583023": "0xf4cc59c9b" }, "plotIndexes": [ "0x25b06876f7baf" +======= + "688356208269952": "0x4aba54745d", + "688037856465588": "0x4a1f3f07cc", + "664908507938608": "0x850db4e2f0", + "668086557908591": "0xa0ad2a5500", + "687964932466621": "0x10fa9beaf7", + "665479968547360": "0x4fc48d2200", + "667884722593831": "0x2efe527e48" + }, + "plotIndexes": [ + "0x2720e6b45da80", + "0x271c44c06d2b4", + "0x25cbb136c7f30", + "0x25f9f05f69e6f", + "0x271b3516ae7bd", + "0x25d4021216220", + "0x25f7007a42027" +>>>>>>> b689ac329 (feat: update reseed jsons) ] } }, @@ -222392,7 +237155,11 @@ "internalTokenBalance": {}, "sop": {} }, +<<<<<<< HEAD "0xA908Af6fD5E61360e24FcA8C8fa6755786409cCe": { +======= + "0x60Ac0b2f9760b24CcD0C6b03d2b9f2E19c283FF9": { +>>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222405,6 +237172,7 @@ "fields": { "0": { "plots": { +<<<<<<< HEAD "685836952618602": "0x151bd8935" }, "plotIndexes": [ @@ -222534,6 +237302,11 @@ "plotIndexes": [ "0x263e9369d1c07" ] +======= + "672803248217095": "0x81e993da6" + }, + "plotIndexes": ["0x263e9369d1c07"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222595,9 +237368,86 @@ "plots": { "685677656801301": "0x3ae689fde" }, - "plotIndexes": [ - "0x26f9ec52a0015" - ] + "plotIndexes": ["0x26f9ec52a0015"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xb2dDD631015D5AA8edcbD38dD9bfa0ca8a7f109e": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "663808218829746": "0x1163e2a2de", + "663882909070992": "0xbf9b829ffb" + }, + "plotIndexes": ["0x25bbae51513b2", "0x25bcc48f7b690"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xDF2501f4181Cd63D41ECE0F4EDcf722eEAd58EbD": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "662063032731298": "0x7f46a1d5db" + }, + "plotIndexes": ["0x25a248fe286a2"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x7438CA839eDcCDA1CA75Fc1fD2b84f6c59D2DeC6": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "663099266111562": "0xee727b60" + }, + "plotIndexes": ["0x25b15d435184a"] } }, "depositAllowances": {}, @@ -222765,9 +237615,13 @@ "plots": { "692168843768664": "0x2b15d3b18" }, +<<<<<<< HEAD "plotIndexes": [ "0x275861e0eb358" ] +======= + "plotIndexes": ["0x275861e0eb358"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222795,9 +237649,13 @@ "plots": { "692181315084066": "0x2f9af998" }, +<<<<<<< HEAD "plotIndexes": [ "0x275890567df22" ] +======= + "plotIndexes": ["0x275890567df22"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222825,9 +237683,13 @@ "plots": { "693862296947457": "0x105f7fe1e" }, +<<<<<<< HEAD "plotIndexes": [ "0x2771067bb8b01" ] +======= + "plotIndexes": ["0x2771067bb8b01"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222853,9 +237715,13 @@ "plots": { "694033329648897": "0x18101143e" }, +<<<<<<< HEAD "plotIndexes": [ "0x277383a137501" ] +======= + "plotIndexes": ["0x277383a137501"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222881,9 +237747,7 @@ "plots": { "692923732371787": "0x4e559b4e" }, - "plotIndexes": [ - "0x27635e0eca94b" - ] + "plotIndexes": ["0x27635e0eca94b"] } }, "depositAllowances": {}, @@ -222911,10 +237775,85 @@ "696555237254531": "0x184272bc1", "828436629940747": "0x9951ca26" }, +<<<<<<< HEAD "plotIndexes": [ "0x276f8184871d2", "0x27983677ba583", "0x2f1756f0bea0b" +======= + "plotIndexes": ["0x276f8184871d2", "0x27983677ba583", "0x2f1756f0bea0b"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x7a1DbFc4a4294a08c9701B679A2F1038EA45a72b": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "692925046604953": "0x55e16ba3" + }, + "plotIndexes": ["0x276362f424499"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x122de1514670141D4c22e5675010B6D65386a9F6": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "694574785077846": "0x14940a4d28", + "695196582394395": "0xd4352e609", + "695183279638366": "0x14c7594a5", + "695337036890007": "0xb8944ad52", + "709442632657024": "0x16634ffdc", + "729443134053802": "0x3946b97ce", + "738623048174838": "0x40b163f94", + "740877182108564": "0x8b62ebf8", + "736215587653365": "0x104150b6d8", + "803330678270578": "0xb2f6504df" + }, + "plotIndexes": [ + "0x277b64b55a256", + "0x278471157ba1b", + "0x27843f86fc75e", + "0x27867c5153f97", + "0x2853bfc1ba880", + "0x2976cb6e39daa", + "0x29fc61468ccf6", + "0x2a1d2e9430394", + "0x29d958c9486f5", + "0x2da9fffb72a72" +>>>>>>> b689ac329 (feat: update reseed jsons) ] } }, @@ -222926,6 +237865,7 @@ "internalTokenBalance": {}, "sop": {} }, +<<<<<<< HEAD "0x7a1DbFc4a4294a08c9701B679A2F1038EA45a72b": { "roots": "0x0", "stalk": "0x0", @@ -223000,6 +237940,8 @@ "internalTokenBalance": {}, "sop": {} }, +======= +>>>>>>> b689ac329 (feat: update reseed jsons) "0x8C93ea0DDaAa29b053e935Ff2AcD6D888272470b": { "roots": "0x0", "stalk": "0x0", @@ -223053,9 +237995,13 @@ "plots": { "694170873964491": "0x2572bc4c" }, +<<<<<<< HEAD "plotIndexes": [ "0x27758405b27cb" ] +======= + "plotIndexes": ["0x27758405b27cb"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -223081,9 +238027,13 @@ "plots": { "695792940661609": "0x4a817c800" }, +<<<<<<< HEAD "plotIndexes": [ "0x278d1eb10bb69" ] +======= + "plotIndexes": ["0x278d1eb10bb69"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -223109,9 +238059,13 @@ "plots": { "695610864358308": "0xe41ba79c" }, +<<<<<<< HEAD "plotIndexes": [ "0x278a78678d3a4" ] +======= + "plotIndexes": ["0x278a78678d3a4"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -223138,10 +238092,14 @@ "695628448981609": "0x445c000", "697932690524647": "0x2b4662f4" }, +<<<<<<< HEAD "plotIndexes": [ "0x278ab9e98e269", "0x27ac41e1889e7" ] +======= + "plotIndexes": ["0x278ab9e98e269", "0x27ac41e1889e7"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -223170,12 +238128,16 @@ "803977000488083": "0x547984d0", "803978417738083": "0x547984d0" }, +<<<<<<< HEAD "plotIndexes": [ "0x278a2d3273cb9", "0x2a20a16d540c4", "0x2db367b858c93", "0x2db36cfff1163" ] +======= + "plotIndexes": ["0x278a2d3273cb9", "0x2a20a16d540c4", "0x2db367b858c93", "0x2db36cfff1163"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -223201,9 +238163,7 @@ "plots": { "695901977229816": "0x108cda1" }, - "plotIndexes": [ - "0x278eb4e26b9f8" - ] + "plotIndexes": ["0x278eb4e26b9f8"] } }, "depositAllowances": {}, @@ -223231,9 +238191,7 @@ "plots": { "695886648382448": "0x401889f0" }, - "plotIndexes": [ - "0x278e7bc7b13f0" - ] + "plotIndexes": ["0x278e7bc7b13f0"] } }, "depositAllowances": {}, @@ -223245,6 +238203,8 @@ "sop": {} }, "0x7A1184786066077022F671957299A685b2850BD6": { +<<<<<<< HEAD +======= "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223260,7 +238220,77 @@ "697072832177245": "0x1f4c1505", "697117243021141": "0x202401924" }, + "plotIndexes": ["0x279fbea8b645d", "0x27a0641a31755"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xe78483c03249C1D5bb9687f3A95597f0c6360b84": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "697856064607657": "0x6fc23ac00" + }, + "plotIndexes": ["0x27ab246d5d5a9"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x172edd47" + }, + "sop": {} + }, + "0x90777294a457DDe6F7d297F66cCf30e1aD728997": { +>>>>>>> b689ac329 (feat: update reseed jsons) + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "696995360461084": "0x707de415", + "697136625622211": "0x2a843f6f8", + "697053271972969": "0x14eee5300", + "697062746622554": "0x1bd54e62", + "697169223382459": "0x1aa8ad09a", + "697073357257058": "0x2a50a0d9c", + "697042806708021": "0x1236f63af", + "697084716091134": "0x216595c9e", + "697148038583227": "0x13d2d8376", + "697165199164808": "0xefdcb033", + "696979964509301": "0x19dd0edb4", + "696994769069974": "0x233fe986", + "697153359943473": "0x177530902", + "701618207425246": "0x5d5dc062c", + "701643270228234": "0x978d6eb3a" + }, "plotIndexes": [ +<<<<<<< HEAD "0x279fbea8b645d", "0x27a0641a31755" ] @@ -223334,6 +238364,8 @@ "701643270228234": "0x978d6eb3a" }, "plotIndexes": [ +======= +>>>>>>> b689ac329 (feat: update reseed jsons) "0x279e9e0ded11c", "0x27a0ac4ee1cc3", "0x279f75caa5c69", @@ -223349,6 +238381,7 @@ "0x27a0eaa5f9731", "0x27e1e380582de", "0x27e240de1890a" +<<<<<<< HEAD ] } }, @@ -223437,6 +238470,8 @@ }, "plotIndexes": [ "0x27ac9357dea1a" +======= +>>>>>>> b689ac329 (feat: update reseed jsons) ] } }, @@ -223463,6 +238498,7 @@ "plots": { "697695869212688": "0x235663f839" }, +<<<<<<< HEAD "plotIndexes": [ "0x27a8cfa721810" ] @@ -223578,6 +238614,194 @@ "plotIndexes": [ "0x27b1477b4c0d0" ] +======= + "plotIndexes": ["0x27ab050d61049"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x14a093a" + }, + "sop": {} + }, + "0xDb22E2AC346617C2a7e20F5F0a49009F679cEED9": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "698258564525194": "0x154a8cd", + "704172791572212": "0x1c985931" + }, + "plotIndexes": ["0x27b0ffdb32c8a", "0x28071011a26f4"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x4B8734cDa37c4bB97Ae9e2dcFD1f6E6DB9Dc461e": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "697954557880858": "0x4b2440f1" + }, + "plotIndexes": ["0x27ac9357dea1a"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x9FbCB5a7d1132bF96E72268C24ef29b7433f7402": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "697695869212688": "0x235663f839" + }, + "plotIndexes": ["0x27a8cfa721810"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x326481a3b0C792Cc7DF1df0c8e76490B5ccd7031": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "697462003533001": "0x36737b1347" + }, + "plotIndexes": ["0x27a5686f704c9"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x8Fc6F10C4476bEe6D5b5dcb7b7EB21EA99e7cF2E": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "698086181129630": "0x1a74285f3" + }, + "plotIndexes": ["0x27ae7dad94d9e"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x6eBDbCAcfFDA2F78Be2B66395EE852DBF104E83C": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "697886064607657": "0x54883e948" + }, + "plotIndexes": ["0x27ab942f981a9"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x3A529A643e5b89555712B02e911AEC6add0d3188": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "698277791318224": "0x1107a76d" + }, + "plotIndexes": ["0x27b1477b4c0d0"] } }, "depositAllowances": {}, @@ -223605,9 +238829,7 @@ "plots": { "701581145085419": "0x8a1166cf3" }, - "plotIndexes": [ - "0x27e1596ef15eb" - ] + "plotIndexes": ["0x27e1596ef15eb"] } }, "depositAllowances": {}, @@ -223634,10 +238856,14 @@ "699405441346617": "0x13d81156b", "699271005074756": "0x5567e76" }, +<<<<<<< HEAD "plotIndexes": [ "0x27c1b04e2ac39", "0x27bfbb7dbf544" ] +======= + "plotIndexes": ["0x27c1b04e2ac39", "0x27bfbb7dbf544"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -223707,9 +238933,7 @@ "plots": { "702657437444244": "0x62741a8" }, - "plotIndexes": [ - "0x27f102ef52894" - ] + "plotIndexes": ["0x27f102ef52894"] } }, "depositAllowances": {}, @@ -223869,8 +239093,178 @@ "plots": { "704978331050700": "0x18c8ac50b" }, + "plotIndexes": ["0x2812c8eff22cc"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xDdBee81969465Bf34C390bdbebb51693aa60872A": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "704205655117520": "0x129717bb9", + "705488811259829": "0x1e29d8cdd", + "705425628545624": "0x2593d12cc", + "705329714382930": "0x1f89b763d", + "705391462535304": "0xd3fddf00", + "705338392776362": "0x1f8629f14", + "705821777920352": "0x28c594c75", + "708051734339483": "0x2f2550916", + "707764396453467": "0xcafe2d8f", + "707742863600211": "0x48544753", + "707744077083046": "0x1884ba5cc", + "707961290879052": "0x2399c9e20", + "707750658709362": "0x2031a05ce", + "705832722517461": "0x1a3c7caa5", + "707842595017590": "0x18e37f840", + "707952799836604": "0x1ef89c1f0", + "707930543676958": "0x22dbb59ac", + "707880777724785": "0x18daea400", + "707919740645652": "0x10c5f46a0", + "708081968129614": "0x32f6cd144", + "705730439516801": "0x388e6e585", + "705704703646383": "0x1a497bea7", + "708527392045696": "0x68db926e", + "708334042048997": "0x10eb5f1cd", + "708934865698884": "0x3210c907d", + "708583377718030": "0x10bb43ee2", + "708641764976217": "0x238f1e8d3", + "708402870339846": "0x3b0e00bd8", + "708691820417569": "0x196e0e755", + "708486177656200": "0xf7a09492", + "708529151266030": "0x3baf78ccc", + "708140759203304": "0x3da9b1b20", + "708651444037897": "0x12baf5d82", + "708418722714846": "0x4efec8788", + "708698646706550": "0x281db57c8", + "708095822174912": "0x1bc937e30", + "708554206703530": "0x34c6496c4", + "709710243864014": "0x2e9992861", + "709688339552863": "0x3327247a4", + "709654242636632": "0x2c65cdc7a", + "709870314867704": "0x21e2f0e8d", + "709734977740006": "0x18350c3d0", + "709666192852147": "0x1542b86e3", + "709492513851051": "0x337889bda", + "709678554276790": "0x2473f76a9", + "709671899958166": "0x18ca0d820", + "709977485640084": "0x990ccbcd4", + "711260418189665": "0x455010780", + "710844935768367": "0x3c8973242", + "710903226562975": "0x582deb9e0", + "711196004355719": "0x921f476b8", + "710494268790118": "0x7d1963adf", + "711348151871048": "0x6eb49c08", + "710460867868243": "0x7c6d99f13", + "710834506069250": "0x26da8942d", + "712856258402101": "0x1e51250700", + "711718808016445": "0xe15390300", + "713215936840483": "0x149bedab5", + "712478227177567": "0xd55cb85f", + "715899465190677": "0x9334f7a0", + "716466017242076": "0x21af9ca740", + "711627994076332": "0xbcb8c2680", + "714727913469225": "0x124d500467", + "713120110487243": "0xe1af2a58", + "716132397750173": "0x2603d9a92d", + "714990004106503": "0x26cad7d660", + "711848288194577": "0x8086f796", + "715333455019979": "0x23348e5b00", + "712749505526426": "0x187739ece0", + "715484660619979": "0xa980af46", + "715158664546867": "0x2855e89e00", + "714808266664085": "0x29f067e5c0", + "716768803489169": "0xc41c01556" + }, "plotIndexes": [ - "0x2812c8eff22cc" + "0x28078a7ec0ed0", + "0x281a369fcf7b5", + "0x28194b4014258", + "0x2817e5f134852", + "0x2818cbf8d5088", + "0x2818064590eaa", + "0x281f0f0590160", + "0x283f8241b9f9b", + "0x283b53d6f6e5b", + "0x283b039fa2a53", + "0x283b0824e71a6", + "0x283e31541f04c", + "0x283b20a9a1772", + "0x281f37cb24dd5", + "0x283c7726ed376", + "0x283e11b26e9bc", + "0x283dbec94de1e", + "0x283d0564cb371", + "0x283d968abb114", + "0x283ff2e2ea64e", + "0x281dbac279281", + "0x281d5ae2d5aaf", + "0x28466e3843a80", + "0x28439def569e5", + "0x284c5c2d6c044", + "0x28473ec85cb0e", + "0x2848184aca659", + "0x28449e571c906", + "0x2848d2c361221", + "0x2845d4af28d88", + "0x284674c5fccee", + "0x2840cde673de8", + "0x28483c5976909", + "0x2844d9651d4de", + "0x2848ec316f976", + "0x2840267f29ac0", + "0x2846d21cb6faa", + "0x2857a4afa9dce", + "0x2857531615a5f", + "0x2856d410bb358", + "0x2859f8ff44bf8", + "0x285800d3b9ce6", + "0x28570095584b3", + "0x28547994246ab", + "0x28572ea21e3b6", + "0x285715d810b96", + "0x285b883d48194", + "0x286e33891a961", + "0x286827be3092f", + "0x286900e49f99f", + "0x286d439348e87", + "0x28630d6819566", + "0x286f7a5e76648", + "0x286290fa7f653", + "0x286800e3a7502", + "0x28856c80ed735", + "0x2874df2bb563d", + "0x288aa86904323", + "0x287fec3a4205f", + "0x28b1b55514d15", + "0x28b9f3e738bdc", + "0x28738cdcc94ac", + "0x28a0a8f64b529", + "0x2889436de26cb", + "0x28b51912e179d", + "0x28a4795367507", + "0x2876c185a1011", + "0x28a978c7b7fcb", + "0x2883ded173a9a", + "0x28abac109dacb", + "0x28a6eda288a33", + "0x28a1d44d12895", + "0x28be5bdeb0591" ] } }, @@ -223882,6 +239276,7 @@ "internalTokenBalance": {}, "sop": {} }, +<<<<<<< HEAD "0xDdBee81969465Bf34C390bdbebb51693aa60872A": { "roots": "0x0", "stalk": "0x0", @@ -224054,6 +239449,8 @@ "internalTokenBalance": {}, "sop": {} }, +======= +>>>>>>> b689ac329 (feat: update reseed jsons) "0xDa90d355b1bd4d01F6124fEE7669090d4cbD5778": { "roots": "0x0", "stalk": "0x0", @@ -224069,9 +239466,13 @@ "plots": { "704798591975267": "0x7d37f38f" }, +<<<<<<< HEAD "plotIndexes": [ "0x28102b5b67f63" ] +======= + "plotIndexes": ["0x28102b5b67f63"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -224097,9 +239498,13 @@ "plots": { "704234841656996": "0xd0e26d20" }, +<<<<<<< HEAD "plotIndexes": [ "0x2807f73934ea4" ] +======= + "plotIndexes": ["0x2807f73934ea4"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -224125,9 +239530,13 @@ "plots": { "704778664446188": "0x1d943c31" }, +<<<<<<< HEAD "plotIndexes": [ "0x280fe11f088ec" ] +======= + "plotIndexes": ["0x280fe11f088ec"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -224153,9 +239562,7 @@ "plots": { "705514288315159": "0x7c813251" }, - "plotIndexes": [ - "0x281a95889fb17" - ] + "plotIndexes": ["0x281a95889fb17"] } }, "depositAllowances": {}, @@ -224181,9 +239588,7 @@ "plots": { "705295151950217": "0x7a35392d" }, - "plotIndexes": [ - "0x2817652fe6989" - ] + "plotIndexes": ["0x2817652fe6989"] } }, "depositAllowances": {}, @@ -224211,9 +239616,7 @@ "plots": { "707899542084080": "0x5eaad611" }, - "plotIndexes": [ - "0x283d4b4be19f0" - ] + "plotIndexes": ["0x283d4b4be19f0"] } }, "depositAllowances": {}, @@ -224239,6 +239642,7 @@ "plots": { "707626849717109": "0x13b2569f80" }, +<<<<<<< HEAD "plotIndexes": [ "0x283953702cb75" ] @@ -224330,6 +239734,9 @@ "plotIndexes": [ "0x28458150b314e" ] +======= + "plotIndexes": ["0x283953702cb75"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -224355,9 +239762,91 @@ "plots": { "708634633516030": "0xa99ee5b" }, +<<<<<<< HEAD "plotIndexes": [ "0x2847fdb9b33fe" ] +======= + "plotIndexes": ["0x284402df4f87d", "0x2897379f51b53", "0x28c614d21e9bc"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xA8D9Ff69724C66dA3fD239C2D5459BD924372d85": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "708651373061258": "0x43b047f" + }, + "plotIndexes": ["0x28483c15c648a"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x579De8E7dA10b45b43a24aC21dA8b1a3a9452D64": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "708463798464846": "0x535e75c3a" + }, + "plotIndexes": ["0x28458150b314e"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xf454a5753C12d990A79A69729d1B541a526cD7F5": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "708634633516030": "0xa99ee5b" + }, + "plotIndexes": ["0x2847fdb9b33fe"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -224383,9 +239872,7 @@ "plots": { "709239583276736": "0x8afd15a7" }, - "plotIndexes": [ - "0x2850cb56bfec0" - ] + "plotIndexes": ["0x2850cb56bfec0"] } }, "depositAllowances": {}, @@ -224411,9 +239898,33 @@ "plots": { "709216912697001": "0x19f47a28f" }, - "plotIndexes": [ - "0x285076e2666a9" - ] + "plotIndexes": ["0x285076e2666a9"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xEa8f1607df5fd7e54BDd76a8Cb9dc4B0970089bD": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x42b", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "709272520931976": "0xfb98b5" + }, + "plotIndexes": ["0x2851460a8ba88"] } }, "depositAllowances": {}, @@ -224467,9 +239978,33 @@ "plots": { "709189528114459": "0x67439f4" }, - "plotIndexes": [ - "0x285010de6d51b" - ] + "plotIndexes": ["0x285010de6d51b"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x1298751f99f2f715178Cc58fB3779C55e91C26bC": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "709666160880200": "0x1e7da6b" + }, + "plotIndexes": ["0x28570076daa48"] } }, "depositAllowances": {}, @@ -224523,9 +240058,13 @@ "plots": { "714015471329582": "0xecb6cba25" }, +<<<<<<< HEAD "plotIndexes": [ "0x28964ae88612e" ] +======= + "plotIndexes": ["0x28964ae88612e"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -224603,9 +240142,7 @@ "plots": { "717854210663826": "0x40a4bdb8" }, - "plotIndexes": [ - "0x28ce2753a2592" - ] + "plotIndexes": ["0x28ce2753a2592"] } }, "depositAllowances": {}, @@ -224681,9 +240218,13 @@ "plots": { "718795450032336": "0x1176592e00" }, +<<<<<<< HEAD "plotIndexes": [ "0x28dbd9b7720d0" ] +======= + "plotIndexes": ["0x28dbd9b7720d0"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -224711,11 +240252,15 @@ "824974359951649": "0x721a66ad6", "829209600931636": "0x43b7cb" }, +<<<<<<< HEAD "plotIndexes": [ "0x291a4f47d087d", "0x2ee4f4fac7921", "0x2f22967b53734" ] +======= + "plotIndexes": ["0x291a4f47d087d", "0x2ee4f4fac7921", "0x2f22967b53734"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -224777,9 +240322,7 @@ "plots": { "729656390040828": "0x2a7f35e52" }, - "plotIndexes": [ - "0x2979e5defbcfc" - ] + "plotIndexes": ["0x2979e5defbcfc"] } }, "depositAllowances": {}, @@ -224805,9 +240348,7 @@ "plots": { "728214888648499": "0x1b4ffb9fc" }, - "plotIndexes": [ - "0x2964ebdc20f33" - ] + "plotIndexes": ["0x2964ebdc20f33"] } }, "depositAllowances": {}, @@ -224835,9 +240376,13 @@ "plots": { "731285511699802": "0x3e131ec2b" }, +<<<<<<< HEAD "plotIndexes": [ "0x29919ad277d5a" ] +======= + "plotIndexes": ["0x29919ad277d5a"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -224863,9 +240408,7 @@ "plots": { "738007970284137": "0x17e807dd" }, - "plotIndexes": [ - "0x29f36dee90269" - ] + "plotIndexes": ["0x29f36dee90269"] } }, "depositAllowances": {}, @@ -224893,9 +240436,13 @@ "plots": { "737675246086875": "0x2ee94e5" }, +<<<<<<< HEAD "plotIndexes": [ "0x29ee96700aadb" ] +======= + "plotIndexes": ["0x29ee96700aadb"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -224921,9 +240468,7 @@ "plots": { "738895794225566": "0xa1aced" }, - "plotIndexes": [ - "0x2a0059557419e" - ] + "plotIndexes": ["0x2a0059557419e"] } }, "depositAllowances": {}, @@ -224952,12 +240497,16 @@ "742999522640359": "0xc9a9152", "742999734096697": "0xc455d24" }, +<<<<<<< HEAD "plotIndexes": [ "0x2a5782a1ff18e", "0x2a3dd45fab12a", "0x2a3c10e9d81e7", "0x2a3c11b381339" ] +======= + "plotIndexes": ["0x2a5782a1ff18e", "0x2a3dd45fab12a", "0x2a3c10e9d81e7", "0x2a3c11b381339"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -224983,9 +240532,7 @@ "plots": { "742768891113037": "0x8f1951023" }, - "plotIndexes": [ - "0x2a38b5be7ae4d" - ] + "plotIndexes": ["0x2a38b5be7ae4d"] } }, "depositAllowances": {}, @@ -225011,9 +240558,7 @@ "plots": { "741114169868555": "0xa31b5f0" }, - "plotIndexes": [ - "0x2a20a16d5410b" - ] + "plotIndexes": ["0x2a20a16d5410b"] } }, "depositAllowances": {}, @@ -225040,10 +240585,7 @@ "743141732275121": "0xdb4b72d", "787609148721716": "0x1de08170" }, - "plotIndexes": [ - "0x2a3e22af853b1", - "0x2cc538b880a34" - ] + "plotIndexes": ["0x2a3e22af853b1", "0x2cc538b880a34"] } }, "depositAllowances": {}, @@ -225072,10 +240614,14 @@ "741947593267708": "0x9ec0ae01", "741688854260083": "0x15d7c70b" }, +<<<<<<< HEAD "plotIndexes": [ "0x2a2cc22bd19fc", "0x2a28fe4b12973" ] +======= + "plotIndexes": ["0x2a2cc22bd19fc", "0x2a28fe4b12973"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -225104,10 +240650,14 @@ "743974165800386": "0x2771f4", "802847562379845": "0x6a9319e" }, +<<<<<<< HEAD "plotIndexes": [ "0x2a4a3fbdfe5c2", "0x2da2f83c3b245" ] +======= + "plotIndexes": ["0x2a4a3fbdfe5c2", "0x2da2f83c3b245"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -225135,9 +240685,13 @@ "plots": { "741234744629846": "0x365f002f" }, +<<<<<<< HEAD "plotIndexes": [ "0x2a22629a61a56" ] +======= + "plotIndexes": ["0x2a22629a61a56"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -225167,11 +240721,15 @@ "790894542941892": "0xadc2deee3", "787516426212822": "0x1596b1345e" }, +<<<<<<< HEAD "plotIndexes": [ "0x2cc069e33dad2", "0x2cf507c496ec4", "0x2cc3df4d6d5d6" ] +======= + "plotIndexes": ["0x2cc069e33dad2", "0x2cf507c496ec4", "0x2cc3df4d6d5d6"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -225233,9 +240791,7 @@ "plots": { "781580532443581": "0xa2ba82d2e" }, - "plotIndexes": [ - "0x2c6d7e5ffe9bd" - ] + "plotIndexes": ["0x2c6d7e5ffe9bd"] } }, "depositAllowances": {}, @@ -225263,9 +240819,13 @@ "plots": { "801772970204304": "0x121bbcb47" }, +<<<<<<< HEAD "plotIndexes": [ "0x2d93551145c90" ] +======= + "plotIndexes": ["0x2d93551145c90"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -225291,6 +240851,7 @@ "plots": { "802848328820547": "0x1660f0" }, +<<<<<<< HEAD "plotIndexes": [ "0x2da2fb172a743" ] @@ -225326,6 +240887,9 @@ "0x2dc8a70947bcc", "0x2dc924bf4742d" ] +======= + "plotIndexes": ["0x2da2fb172a743"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -225349,6 +240913,7 @@ "fields": { "0": { "plots": { +<<<<<<< HEAD "805404344665518": "0x1dc1979a9", "804723861648793": "0xdcab64af", "805912145565172": "0x151f88fb2" @@ -225358,6 +240923,41 @@ "0x2dbe45fea7599", "0x2dcf90b2815f4" ] +======= + "805425939868589": "0x2998a901f", + "805437105798092": "0x7db5ff861", + "805470851068973": "0x3eda73e32" + }, + "plotIndexes": ["0x2dc87d709ebad", "0x2dc8a70947bcc", "0x2dc924bf4742d"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x54e7efC4817cEeE97b9C9a8E87d1cC6D3ec4D2E1": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "805404344665518": "0x1dc1979a9", + "804723861648793": "0xdcab64af", + "805912145565172": "0x151f88fb2" + }, + "plotIndexes": ["0x2dc82cfdd45ae", "0x2dbe45fea7599", "0x2dcf90b2815f4"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -225383,9 +240983,7 @@ "plots": { "821672492311173": "0x2540be4000" }, - "plotIndexes": [ - "0x2eb4e8906a285" - ] + "plotIndexes": ["0x2eb4e8906a285"] } }, "depositAllowances": {}, @@ -225411,9 +241009,7 @@ "plots": { "824965612570458": "0x35815cf0" }, - "plotIndexes": [ - "0x2ee4d464a075a" - ] + "plotIndexes": ["0x2ee4d464a075a"] } }, "depositAllowances": {}, @@ -225441,9 +241037,7 @@ "plots": { "825422040281690": "0x137b3e8cb" }, - "plotIndexes": [ - "0x2eeb78b80325a" - ] + "plotIndexes": ["0x2eeb78b80325a"] } }, "depositAllowances": {}, @@ -225471,9 +241065,7 @@ "plots": { "825246129641277": "0x12eea13b4" }, - "plotIndexes": [ - "0x2ee8e9668d73d" - ] + "plotIndexes": ["0x2ee8e9668d73d"] } }, "depositAllowances": {}, @@ -225501,9 +241093,13 @@ "plots": { "825245695255323": "0x19e43422" }, +<<<<<<< HEAD "plotIndexes": [ "0x2ee8e7c84a31b" ] +======= + "plotIndexes": ["0x2ee8e7c84a31b"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -225529,9 +241125,7 @@ "plots": { "828431390478544": "0x1384bd93b" }, - "plotIndexes": [ - "0x2f17436c010d0" - ] + "plotIndexes": ["0x2f17436c010d0"] } }, "depositAllowances": {}, @@ -225560,10 +241154,14 @@ "828636097593870": "0xc7674ac7", "847955778737101": "0xa52a3088b" }, +<<<<<<< HEAD "plotIndexes": [ "0x2f1a3e03ec20e", "0x3033616fa13cd" ] +======= + "plotIndexes": ["0x2f1a3e03ec20e", "0x3033616fa13cd"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -225589,9 +241187,13 @@ "plots": { "828255388496272": "0x160f39170" }, +<<<<<<< HEAD "plotIndexes": [ "0x2f14b3c36f190" ] +======= + "plotIndexes": ["0x2f14b3c36f190"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -225617,9 +241219,7 @@ "plots": { "828811561503065": "0x55351ec9b" }, - "plotIndexes": [ - "0x2f1ccbab58959" - ] + "plotIndexes": ["0x2f1ccbab58959"] } }, "depositAllowances": {}, @@ -225645,9 +241245,7 @@ "plots": { "828771792470419": "0x942690090" }, - "plotIndexes": [ - "0x2f1c3784a4193" - ] + "plotIndexes": ["0x2f1c3784a4193"] } }, "depositAllowances": {}, @@ -225673,9 +241271,13 @@ "plots": { "828995077896677": "0x2824cb600" }, +<<<<<<< HEAD "plotIndexes": [ "0x2f1f7752379e5" ] +======= + "plotIndexes": ["0x2f1f7752379e5"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -225701,9 +241303,13 @@ "plots": { "829479271484636": "0x8113f4a52" }, +<<<<<<< HEAD "plotIndexes": [ "0x2f26831534cdc" ] +======= + "plotIndexes": ["0x2f26831534cdc"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -225731,9 +241337,13 @@ "plots": { "829693924992790": "0x8bbd993" }, +<<<<<<< HEAD "plotIndexes": [ "0x2f29a2babe716" ] +======= + "plotIndexes": ["0x2f29a2babe716"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -225760,10 +241370,14 @@ "829455831521265": "0x265d78ca", "973035905649934": "0x598774cef" }, +<<<<<<< HEAD "plotIndexes": [ "0x2f262bc31d7f1", "0x374f893828d0e" ] +======= + "plotIndexes": ["0x2f262bc31d7f1", "0x374f893828d0e"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -225793,11 +241407,7 @@ "921379066108433": "0x8523284c4", "929384439310039": "0x14e2d1cfe9" }, - "plotIndexes": [ - "0x2f2a2c154845f", - "0x345fd47f05a11", - "0x34d452d5d66d7" - ] + "plotIndexes": ["0x2f2a2c154845f", "0x345fd47f05a11", "0x34d452d5d66d7"] } }, "depositAllowances": {}, @@ -225825,9 +241435,7 @@ "plots": { "829846521525914": "0x989680" }, - "plotIndexes": [ - "0x2f2bdb322369a" - ] + "plotIndexes": ["0x2f2bdb322369a"] } }, "depositAllowances": {}, @@ -225853,9 +241461,7 @@ "plots": { "829914412604502": "0xaa0d5340" }, - "plotIndexes": [ - "0x2f2cd81c1dc56" - ] + "plotIndexes": ["0x2f2cd81c1dc56"] } }, "depositAllowances": {}, @@ -225883,9 +241489,7 @@ "plots": { "832058901590534": "0x808fbae75" }, - "plotIndexes": [ - "0x2f4c0cf42f206" - ] + "plotIndexes": ["0x2f4c0cf42f206"] } }, "depositAllowances": {}, @@ -225915,11 +241519,15 @@ "835708527309577": "0x418e5312d75", "832269218432754": "0x2c7ab05cb83" }, +<<<<<<< HEAD "plotIndexes": [ "0x2f347bb9fdd0e", "0x2f8128de7f309", "0x2f4f1c71f46f2" ] +======= + "plotIndexes": ["0x2f347bb9fdd0e", "0x2f8128de7f309", "0x2f4f1c71f46f2"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -225945,9 +241553,7 @@ "plots": { "843657385645275": "0x1179684ec9" }, - "plotIndexes": [ - "0x2ff4d4ac894db" - ] + "plotIndexes": ["0x2ff4d4ac894db"] } }, "depositAllowances": {}, @@ -225973,9 +241579,13 @@ "plots": { "844244491110052": "0x3621f4e3b2" }, +<<<<<<< HEAD "plotIndexes": [ "0x2ffd5fcff06a4" ] +======= + "plotIndexes": ["0x2ffd5fcff06a4"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -226001,9 +241611,13 @@ "plots": { "844505594006708": "0xf4240" }, +<<<<<<< HEAD "plotIndexes": [ "0x30012c7f10cb4" ] +======= + "plotIndexes": ["0x30012c7f10cb4"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -226029,9 +241643,7 @@ "plots": { "850685454918538": "0x6f480a3b80" }, - "plotIndexes": [ - "0x305b1a45b238a" - ] + "plotIndexes": ["0x305b1a45b238a"] } }, "depositAllowances": {}, @@ -226057,6 +241669,7 @@ "plots": { "853797557101674": "0x7ca7080b3" }, +<<<<<<< HEAD "plotIndexes": [ "0x308863c19e46a" ] @@ -226144,6 +241757,89 @@ "plotIndexes": [ "0x3109fc930d7c5" ] +======= + "plotIndexes": ["0x308863c19e46a"] +>>>>>>> b689ac329 (feat: update reseed jsons) + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, +<<<<<<< HEAD +======= + "0x88ad88c5b3beaE06a248E286d1ed08C27E8B043b": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "862822651886528": "0x174876d800" + }, + "plotIndexes": ["0x310bb8dab7bc0"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x6974611c9e1437D74c07b5F031779Fb88f19923E": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "869691940601923": "0x205115423c" + }, + "plotIndexes": ["0x316faef2f0043"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xd26Cc622697e8f6E580645094d62742EEc9bd4fc": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "862703391397829": "0x1bc47aa3fb" + }, + "plotIndexes": ["0x3109fc930d7c5"] } }, "depositAllowances": {}, @@ -226154,6 +241850,7 @@ "internalTokenBalance": {}, "sop": {} }, +>>>>>>> b689ac329 (feat: update reseed jsons) "0x39167e20B785B46EBd856CC86DDc615FeFa51E76": { "roots": "0x0", "stalk": "0x0", @@ -226169,9 +241866,13 @@ "plots": { "886877107069810": "0x7551a24001" }, +<<<<<<< HEAD "plotIndexes": [ "0x3269c2aed2372" ] +======= + "plotIndexes": ["0x3269c2aed2372"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -226197,9 +241898,7 @@ "plots": { "906535984748110": "0x22b26cb634" }, - "plotIndexes": [ - "0x3387d5b58d64e" - ] + "plotIndexes": ["0x3387d5b58d64e"] } }, "depositAllowances": {}, @@ -226225,9 +241924,7 @@ "plots": { "906377715248110": "0x24d998ea60" }, - "plotIndexes": [ - "0x3385881bfebee" - ] + "plotIndexes": ["0x3385881bfebee"] } }, "depositAllowances": {}, @@ -226253,9 +241950,7 @@ "plots": { "880016381329810": "0x63d631ee1e0" }, - "plotIndexes": [ - "0x3205ec7ce4192" - ] + "plotIndexes": ["0x3205ec7ce4192"] } }, "depositAllowances": {}, @@ -226281,9 +241976,13 @@ "plots": { "887464147869040": "0x21f29e6f7" }, +<<<<<<< HEAD "plotIndexes": [ "0x32724d948dd70" ] +======= + "plotIndexes": ["0x32724d948dd70"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -226295,6 +241994,8 @@ "sop": {} }, "0x6d8Db35bC58c9cC930B0a65282e96C69d9715E06": { +<<<<<<< HEAD +======= "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -226309,6 +242010,62 @@ "plots": { "898434888668647": "0x15d91556679" }, + "plotIndexes": ["0x3311f2c6495e7"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0xe182F132B7aB8639c3B2faEBa87f4c952B4b2319": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "920344600501839": "0xa7e29cd4f" + }, + "plotIndexes": ["0x3450c6cfbde4f"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x10a" + }, + "sop": {} + }, + "0xa714B49Ff1Bae62E141e6a05bb10356069C31518": { +>>>>>>> b689ac329 (feat: update reseed jsons) + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { +<<<<<<< HEAD + "898434888668647": "0x15d91556679" + }, "plotIndexes": [ "0x3311f2c6495e7" ] @@ -226365,6 +242122,8 @@ "fields": { "0": { "plots": { +======= +>>>>>>> b689ac329 (feat: update reseed jsons) "921555163101248": "0xa0", "921521067323540": "0xa0", "921555163102048": "0xa0", @@ -226728,12 +242487,7 @@ "948372056649332": "0xac4e343c9", "948180044585873": "0xe021a5839" }, - "plotIndexes": [ - "0x346c43194af0a", - "0x34f5d46bbb0db", - "0x35e8a138d2e74", - "0x35e5d5ebd9b91" - ] + "plotIndexes": ["0x346c43194af0a", "0x34f5d46bbb0db", "0x35e8a138d2e74", "0x35e5d5ebd9b91"] } }, "depositAllowances": {}, @@ -226761,9 +242515,13 @@ "plots": { "922632881887979": "0x3a8080600" }, +<<<<<<< HEAD "plotIndexes": [ "0x34721352edaeb" ] +======= + "plotIndexes": ["0x34721352edaeb"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -226789,9 +242547,13 @@ "plots": { "930654205477734": "0x146c66720a" }, +<<<<<<< HEAD "plotIndexes": [ "0x34e6cd1538366" ] +======= + "plotIndexes": ["0x34e6cd1538366"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -226818,10 +242580,7 @@ "931316549943649": "0x5478789400", "950092088204807": "0x260bbb9dee" }, - "plotIndexes": [ - "0x34f0708220161", - "0x3601a8d6bde07" - ] + "plotIndexes": ["0x34f0708220161", "0x3601a8d6bde07"] } }, "depositAllowances": {}, @@ -226849,9 +242608,7 @@ "plots": { "933960523170146": "0x491b1c69a7" }, - "plotIndexes": [ - "0x3516ea137c162" - ] + "plotIndexes": ["0x3516ea137c162"] } }, "depositAllowances": {}, @@ -226877,9 +242634,7 @@ "plots": { "944658495966134": "0x13c65a5c3" }, - "plotIndexes": [ - "0x35b2972160bb6" - ] + "plotIndexes": ["0x35b2972160bb6"] } }, "depositAllowances": {}, @@ -226905,9 +242660,13 @@ "plots": { "947585500813146": "0x1f544ba567" }, +<<<<<<< HEAD "plotIndexes": [ "0x35dd2f12b975a" ] +======= + "plotIndexes": ["0x35dd2f12b975a"] +>>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -226933,9 +242692,33 @@ "plots": { "947821225912354": "0x3d7e2ec780" }, - "plotIndexes": [ - "0x35e09d37b2822" - ] + "plotIndexes": ["0x35e09d37b2822"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x9ec0CF5fA0bD8754FDF2C3E827a8d0a87b50F6a4": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "947157324068361": "0xb6768954d" + }, + "plotIndexes": ["0x35d6f3fd8f609"] } }, "depositAllowances": {}, @@ -226990,10 +242773,7 @@ "949411235551363": "0x4dd806b50", "972959010985644": "0xe6e9171d2" }, - "plotIndexes": [ - "0x35f7c0770d883", - "0x374e6ac3b16ac" - ] + "plotIndexes": ["0x35f7c0770d883", "0x374e6ac3b16ac"] } }, "depositAllowances": {}, @@ -227019,9 +242799,33 @@ "plots": { "966119151381565": "0x31da3e555cf" }, - "plotIndexes": [ - "0x36eae24d42c3d" - ] + "plotIndexes": ["0x36eae24d42c3d"] + } + }, + "depositAllowances": {}, + "tokenAllowances": {}, + "mowStatuses": {}, + "isApprovedForAll": {}, + "germinatingStalk": {}, + "internalTokenBalance": {}, + "sop": {} + }, + "0x23cAea94eB856767cf71a30824d72Ed5B93aA365": { + "roots": "0x0", + "stalk": "0x0", + "depositPermitNonces": "0x0", + "tokenPermitNonces": "0x0", + "lastUpdate": "0x5fbc", + "lastSop": "0x0", + "lastRain": "0x0", + "deposits": {}, + "depositIdList": {}, + "fields": { + "0": { + "plots": { + "976547212156243": "0x379f8cb500" + }, + "plotIndexes": ["0x3782a1dafdd53"] } }, "depositAllowances": {}, @@ -227075,9 +242879,7 @@ "plots": { "976523795556384": "0x3caaee481" }, - "plotIndexes": [ - "0x37824a9f2e820" - ] + "plotIndexes": ["0x37824a9f2e820"] } }, "depositAllowances": {}, @@ -227105,9 +242907,7 @@ "plots": { "978364317474455": "0x7abf7396b" }, - "plotIndexes": [ - "0x379d1319a9e97" - ] + "plotIndexes": ["0x379d1319a9e97"] } }, "depositAllowances": {}, @@ -239081,4 +254881,4 @@ "internalTokenBalance": {}, "sop": {} } -} \ No newline at end of file +} diff --git a/protocol/reseed/data/exports/storage-fertilizer20736200.json b/protocol/reseed/data/exports/storage-fertilizer20736200.json index d39e77be2..bbe4a89e0 100644 --- a/protocol/reseed/data/exports/storage-fertilizer20736200.json +++ b/protocol/reseed/data/exports/storage-fertilizer20736200.json @@ -4613,4 +4613,4 @@ } } } -} \ No newline at end of file +} diff --git a/protocol/reseed/data/exports/storage-system20736200.json b/protocol/reseed/data/exports/storage-system20736200.json index f6b666ff0..f038e2354 100644 --- a/protocol/reseed/data/exports/storage-system20736200.json +++ b/protocol/reseed/data/exports/storage-system20736200.json @@ -974,4 +974,4 @@ "excessivePriceThreshold": "0x0" }, "sop": {} -} \ No newline at end of file +} From 05657a7238d32b5e492827d9d4c671a173a44102 Mon Sep 17 00:00:00 2001 From: Spacebean Date: Fri, 13 Sep 2024 12:31:27 -0600 Subject: [PATCH 08/14] feat: update ABIs --- protocol/abi/Beanstalk.json | 338 +++++++++++++++++++++------- protocol/abi/MockBeanstalk.json | 377 ++++++++++++++++++++++++-------- 2 files changed, 552 insertions(+), 163 deletions(-) diff --git a/protocol/abi/Beanstalk.json b/protocol/abi/Beanstalk.json index 8fc9dd43f..4deff7da3 100644 --- a/protocol/abi/Beanstalk.json +++ b/protocol/abi/Beanstalk.json @@ -4765,6 +4765,11 @@ }, { "components": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, { "internalType": "bytes", "name": "callData", @@ -4776,8 +4781,8 @@ "type": "bytes" } ], - "internalType": "struct AdvancedFarmCall[]", - "name": "advancedFarmCalls", + "internalType": "struct AdvancedPipeCall[]", + "name": "advancedPipeCalls", "type": "tuple[]" } ], @@ -5908,7 +5913,7 @@ "type": "tuple" } ], - "name": "UpdatedLiqudityWeightImplementationForToken", + "name": "UpdatedLiquidityWeightImplementationForToken", "type": "event" }, { @@ -6039,75 +6044,6 @@ "name": "WhitelistToken", "type": "event" }, - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "address", - "name": "token", - "type": "address" - }, - { - "components": [ - { - "internalType": "address", - "name": "target", - "type": "address" - }, - { - "internalType": "bytes4", - "name": "selector", - "type": "bytes4" - }, - { - "internalType": "bytes1", - "name": "encodeType", - "type": "bytes1" - }, - { - "internalType": "bytes", - "name": "data", - "type": "bytes" - } - ], - "indexed": false, - "internalType": "struct Implementation", - "name": "gpImplementation", - "type": "tuple" - }, - { - "components": [ - { - "internalType": "address", - "name": "target", - "type": "address" - }, - { - "internalType": "bytes4", - "name": "selector", - "type": "bytes4" - }, - { - "internalType": "bytes1", - "name": "encodeType", - "type": "bytes1" - }, - { - "internalType": "bytes", - "name": "data", - "type": "bytes" - } - ], - "indexed": false, - "internalType": "struct Implementation", - "name": "lwImplementation", - "type": "tuple" - } - ], - "name": "WhitelistTokenImplementations", - "type": "event" - }, { "inputs": [ { @@ -7241,9 +7177,9 @@ "name": "bdvs", "outputs": [ { - "internalType": "uint256", - "name": "_bdv", - "type": "uint256" + "internalType": "uint256[]", + "name": "_bdvs", + "type": "uint256[]" } ], "stateMutability": "view", @@ -8923,6 +8859,64 @@ "stateMutability": "view", "type": "function" }, + { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "lookback", + "type": "uint256" + } + ], + "name": "getMillionUsdPrice", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256", + "name": "lookback", + "type": "uint256" + } + ], + "name": "getRatiosAndBeanIndex", + "outputs": [ + { + "internalType": "uint256[]", + "name": "ratios", + "type": "uint256[]" + }, + { + "internalType": "uint256", + "name": "beanIndex", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "success", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, { "inputs": [ { @@ -11057,6 +11051,70 @@ "name": "L1InternalBalancesMigrated", "type": "event" }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "receiver", + "type": "address" + }, + { + "components": [ + { + "components": [ + { + "internalType": "address", + "name": "orderer", + "type": "address" + }, + { + "internalType": "uint256", + "name": "fieldId", + "type": "uint256" + }, + { + "internalType": "uint24", + "name": "pricePerPod", + "type": "uint24" + }, + { + "internalType": "uint256", + "name": "maxPlaceInLine", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "minFillAmount", + "type": "uint256" + } + ], + "internalType": "struct Order.PodOrder", + "name": "podOrder", + "type": "tuple" + }, + { + "internalType": "uint256", + "name": "beanAmount", + "type": "uint256" + } + ], + "indexed": false, + "internalType": "struct L1RecieverFacet.L1PodOrder[]", + "name": "orders", + "type": "tuple[]" + } + ], + "name": "L1OrdersMigrated", + "type": "event" + }, { "anonymous": false, "inputs": [ @@ -11318,6 +11376,68 @@ "stateMutability": "nonpayable", "type": "function" }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "components": [ + { + "components": [ + { + "internalType": "address", + "name": "orderer", + "type": "address" + }, + { + "internalType": "uint256", + "name": "fieldId", + "type": "uint256" + }, + { + "internalType": "uint24", + "name": "pricePerPod", + "type": "uint24" + }, + { + "internalType": "uint256", + "name": "maxPlaceInLine", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "minFillAmount", + "type": "uint256" + } + ], + "internalType": "struct Order.PodOrder", + "name": "podOrder", + "type": "tuple" + }, + { + "internalType": "uint256", + "name": "beanAmount", + "type": "uint256" + } + ], + "internalType": "struct L1RecieverFacet.L1PodOrder[]", + "name": "orders", + "type": "tuple[]" + }, + { + "internalType": "bytes32[]", + "name": "proof", + "type": "bytes32[]" + } + ], + "name": "issuePodOrders", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, { "inputs": [ { @@ -11453,6 +11573,74 @@ "stateMutability": "pure", "type": "function" }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "components": [ + { + "components": [ + { + "internalType": "address", + "name": "orderer", + "type": "address" + }, + { + "internalType": "uint256", + "name": "fieldId", + "type": "uint256" + }, + { + "internalType": "uint24", + "name": "pricePerPod", + "type": "uint24" + }, + { + "internalType": "uint256", + "name": "maxPlaceInLine", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "minFillAmount", + "type": "uint256" + } + ], + "internalType": "struct Order.PodOrder", + "name": "podOrder", + "type": "tuple" + }, + { + "internalType": "uint256", + "name": "beanAmount", + "type": "uint256" + } + ], + "internalType": "struct L1RecieverFacet.L1PodOrder[]", + "name": "orders", + "type": "tuple[]" + }, + { + "internalType": "bytes32[]", + "name": "proof", + "type": "bytes32[]" + } + ], + "name": "verifyOrderProof", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "pure", + "type": "function" + }, { "inputs": [ { diff --git a/protocol/abi/MockBeanstalk.json b/protocol/abi/MockBeanstalk.json index ef01b512e..94170ab5d 100644 --- a/protocol/abi/MockBeanstalk.json +++ b/protocol/abi/MockBeanstalk.json @@ -4765,6 +4765,11 @@ }, { "components": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, { "internalType": "bytes", "name": "callData", @@ -4776,8 +4781,8 @@ "type": "bytes" } ], - "internalType": "struct AdvancedFarmCall[]", - "name": "advancedFarmCalls", + "internalType": "struct AdvancedPipeCall[]", + "name": "advancedPipeCalls", "type": "tuple[]" } ], @@ -5908,7 +5913,7 @@ "type": "tuple" } ], - "name": "UpdatedLiqudityWeightImplementationForToken", + "name": "UpdatedLiquidityWeightImplementationForToken", "type": "event" }, { @@ -6039,75 +6044,6 @@ "name": "WhitelistToken", "type": "event" }, - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "address", - "name": "token", - "type": "address" - }, - { - "components": [ - { - "internalType": "address", - "name": "target", - "type": "address" - }, - { - "internalType": "bytes4", - "name": "selector", - "type": "bytes4" - }, - { - "internalType": "bytes1", - "name": "encodeType", - "type": "bytes1" - }, - { - "internalType": "bytes", - "name": "data", - "type": "bytes" - } - ], - "indexed": false, - "internalType": "struct Implementation", - "name": "gpImplementation", - "type": "tuple" - }, - { - "components": [ - { - "internalType": "address", - "name": "target", - "type": "address" - }, - { - "internalType": "bytes4", - "name": "selector", - "type": "bytes4" - }, - { - "internalType": "bytes1", - "name": "encodeType", - "type": "bytes1" - }, - { - "internalType": "bytes", - "name": "data", - "type": "bytes" - } - ], - "indexed": false, - "internalType": "struct Implementation", - "name": "lwImplementation", - "type": "tuple" - } - ], - "name": "WhitelistTokenImplementations", - "type": "event" - }, { "inputs": [ { @@ -7241,9 +7177,9 @@ "name": "bdvs", "outputs": [ { - "internalType": "uint256", - "name": "_bdv", - "type": "uint256" + "internalType": "uint256[]", + "name": "_bdvs", + "type": "uint256[]" } ], "stateMutability": "view", @@ -8712,6 +8648,64 @@ "name": "TotalStalkChangedFromGermination", "type": "event" }, + { + "inputs": [ + { + "internalType": "address", + "name": "token", + "type": "address" + }, + { + "internalType": "uint256", + "name": "lookback", + "type": "uint256" + } + ], + "name": "getMillionUsdPrice", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract IERC20[]", + "name": "tokens", + "type": "address[]" + }, + { + "internalType": "uint256", + "name": "lookback", + "type": "uint256" + } + ], + "name": "getRatiosAndBeanIndex", + "outputs": [ + { + "internalType": "uint256[]", + "name": "ratios", + "type": "uint256[]" + }, + { + "internalType": "uint256", + "name": "beanIndex", + "type": "uint256" + }, + { + "internalType": "bool", + "name": "success", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, { "inputs": [ { @@ -10846,6 +10840,70 @@ "name": "L1InternalBalancesMigrated", "type": "event" }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "receiver", + "type": "address" + }, + { + "components": [ + { + "components": [ + { + "internalType": "address", + "name": "orderer", + "type": "address" + }, + { + "internalType": "uint256", + "name": "fieldId", + "type": "uint256" + }, + { + "internalType": "uint24", + "name": "pricePerPod", + "type": "uint24" + }, + { + "internalType": "uint256", + "name": "maxPlaceInLine", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "minFillAmount", + "type": "uint256" + } + ], + "internalType": "struct Order.PodOrder", + "name": "podOrder", + "type": "tuple" + }, + { + "internalType": "uint256", + "name": "beanAmount", + "type": "uint256" + } + ], + "indexed": false, + "internalType": "struct L1RecieverFacet.L1PodOrder[]", + "name": "orders", + "type": "tuple[]" + } + ], + "name": "L1OrdersMigrated", + "type": "event" + }, { "anonymous": false, "inputs": [ @@ -11107,6 +11165,68 @@ "stateMutability": "nonpayable", "type": "function" }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "components": [ + { + "components": [ + { + "internalType": "address", + "name": "orderer", + "type": "address" + }, + { + "internalType": "uint256", + "name": "fieldId", + "type": "uint256" + }, + { + "internalType": "uint24", + "name": "pricePerPod", + "type": "uint24" + }, + { + "internalType": "uint256", + "name": "maxPlaceInLine", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "minFillAmount", + "type": "uint256" + } + ], + "internalType": "struct Order.PodOrder", + "name": "podOrder", + "type": "tuple" + }, + { + "internalType": "uint256", + "name": "beanAmount", + "type": "uint256" + } + ], + "internalType": "struct L1RecieverFacet.L1PodOrder[]", + "name": "orders", + "type": "tuple[]" + }, + { + "internalType": "bytes32[]", + "name": "proof", + "type": "bytes32[]" + } + ], + "name": "issuePodOrders", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, { "inputs": [ { @@ -11242,6 +11362,74 @@ "stateMutability": "pure", "type": "function" }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "components": [ + { + "components": [ + { + "internalType": "address", + "name": "orderer", + "type": "address" + }, + { + "internalType": "uint256", + "name": "fieldId", + "type": "uint256" + }, + { + "internalType": "uint24", + "name": "pricePerPod", + "type": "uint24" + }, + { + "internalType": "uint256", + "name": "maxPlaceInLine", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "minFillAmount", + "type": "uint256" + } + ], + "internalType": "struct Order.PodOrder", + "name": "podOrder", + "type": "tuple" + }, + { + "internalType": "uint256", + "name": "beanAmount", + "type": "uint256" + } + ], + "internalType": "struct L1RecieverFacet.L1PodOrder[]", + "name": "orders", + "type": "tuple[]" + }, + { + "internalType": "bytes32[]", + "name": "proof", + "type": "bytes32[]" + } + ], + "name": "verifyOrderProof", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "pure", + "type": "function" + }, { "inputs": [ { @@ -12324,19 +12512,6 @@ "stateMutability": "view", "type": "function" }, - { - "inputs": [], - "name": "getUsdEthPrice", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, { "inputs": [], "name": "initOracleForAllWhitelistedWells", @@ -12999,6 +13174,32 @@ "stateMutability": "view", "type": "function" }, + { + "inputs": [], + "name": "mockInitState", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "pool", + "type": "address" + } + ], + "name": "poolCurrentDeltaBMock", + "outputs": [ + { + "internalType": "int256", + "name": "deltaB", + "type": "int256" + } + ], + "stateMutability": "view", + "type": "function" + }, { "inputs": [ { From c7c15846010c54a7b1df966e43b4cf73ccebacdd Mon Sep 17 00:00:00 2001 From: Spacebean Date: Fri, 13 Sep 2024 12:39:04 -0600 Subject: [PATCH 09/14] feat: re-update reseed exports --- .../exports/storage-accounts20736200.json | 24382 +++------------- .../exports/storage-fertilizer20736200.json | 2 +- .../data/exports/storage-system20736200.json | 2 +- 3 files changed, 4293 insertions(+), 20093 deletions(-) diff --git a/protocol/reseed/data/exports/storage-accounts20736200.json b/protocol/reseed/data/exports/storage-accounts20736200.json index 5d0470787..c1d158513 100644 --- a/protocol/reseed/data/exports/storage-accounts20736200.json +++ b/protocol/reseed/data/exports/storage-accounts20736200.json @@ -470,7 +470,9 @@ "plots": { "259307845556208": "0x63cb2c21f" }, - "plotIndexes": ["0xebd6d00597f0"] + "plotIndexes": [ + "0xebd6d00597f0" + ] } }, "depositAllowances": {}, @@ -1139,7 +1141,11 @@ "264869362106309": "0x4d20924851", "281473918555928": "0x827825acf" }, - "plotIndexes": ["0xca0865af5559", "0xf0e5b43d7fc5", "0xffffc0edd718"] + "plotIndexes": [ + "0xca0865af5559", + "0xf0e5b43d7fc5", + "0xffffc0edd718" + ] } }, "depositAllowances": {}, @@ -1263,7 +1269,10 @@ "311759016079886": "0x24a370445", "332692990408590": "0x2cb1096e1" }, - "plotIndexes": ["0x11b8b0d68b20e", "0x12e951f83378e"] + "plotIndexes": [ + "0x11b8b0d68b20e", + "0x12e951f83378e" + ] } }, "depositAllowances": {}, @@ -1463,7 +1472,9 @@ "plots": { "309578044631862": "0xf21dd5eb9" }, - "plotIndexes": ["0x1198f41616b36"] + "plotIndexes": [ + "0x1198f41616b36" + ] } }, "depositAllowances": {}, @@ -1525,7 +1536,9 @@ "plots": { "225503555091497": "0x3100845cf" }, - "plotIndexes": ["0xcd18234bfc29"] + "plotIndexes": [ + "0xcd18234bfc29" + ] } }, "depositAllowances": {}, @@ -1772,7 +1785,9 @@ "plots": { "656330490962897": "0x3080b7330" }, - "plotIndexes": ["0x254edd9c4e3d1"] + "plotIndexes": [ + "0x254edd9c4e3d1" + ] } }, "depositAllowances": {}, @@ -1839,7 +1854,9 @@ "plots": { "334429009280382": "0xb6785545b" }, - "plotIndexes": ["0x13029524cfd7e"] + "plotIndexes": [ + "0x13029524cfd7e" + ] } }, "depositAllowances": {}, @@ -2324,14 +2341,10 @@ "326066593794316": "0x9817c852d", "326115054051340": "0x10cf81804" }, -<<<<<<< HEAD "plotIndexes": [ "0x1288e4b7f090c", "0x1289993f3e00c" ] -======= - "plotIndexes": ["0x1288e4b7f090c", "0x1289993f3e00c"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -2491,7 +2504,10 @@ "373925950027664": "0xa8c3a872a", "582169824919253": "0x9ffa2d917" }, - "plotIndexes": ["0x154156b6c7790", "0x2117af99cfed5"] + "plotIndexes": [ + "0x154156b6c7790", + "0x2117af99cfed5" + ] } }, "depositAllowances": {}, @@ -2627,7 +2643,10 @@ "293603662086844": "0x12a05f200", "339785493449995": "0x12a05f200" }, - "plotIndexes": ["0x10b07edfbc2bc", "0x1350879a30d0b"] + "plotIndexes": [ + "0x10b07edfbc2bc", + "0x1350879a30d0b" + ] } }, "depositAllowances": {}, @@ -3378,7 +3397,11 @@ "267130014958056": "0x66c57d7e00", "372014214928944": "0x1e56f47eb0" }, - "plotIndexes": ["0xdc3030db97ce", "0xf2f40da681e8", "0x152584f21da30"] + "plotIndexes": [ + "0xdc3030db97ce", + "0xf2f40da681e8", + "0x152584f21da30" + ] } }, "depositAllowances": {}, @@ -4190,7 +4213,11 @@ "451881155731609": "0xa09e0fa9", "625899610647771": "0x36660db50" }, - "plotIndexes": ["0x10b342addaebc", "0x19afbc7c4a099", "0x239409bf52cdb"] + "plotIndexes": [ + "0x10b342addaebc", + "0x19afbc7c4a099", + "0x239409bf52cdb" + ] } }, "depositAllowances": {}, @@ -4376,7 +4403,9 @@ "plots": { "288633732961858": "0x443118235" }, - "plotIndexes": ["0x10682c71f9642"] + "plotIndexes": [ + "0x10682c71f9642" + ] } }, "depositAllowances": {}, @@ -4545,7 +4574,10 @@ "115734261815618": "0x13fc19e7938", "572446942692513": "0x48b32d84700" }, - "plotIndexes": ["0x69427b905942", "0x208a330ac04a1"] + "plotIndexes": [ + "0x69427b905942", + "0x208a330ac04a1" + ] } }, "depositAllowances": {}, @@ -4739,7 +4771,9 @@ "plots": { "506164338357844": "0x392e27dbe00" }, - "plotIndexes": ["0x1cc5a9195f654"] + "plotIndexes": [ + "0x1cc5a9195f654" + ] } }, "depositAllowances": {}, @@ -5058,7 +5092,9 @@ "plots": { "205258499222763": "0x15df3a4379" }, - "plotIndexes": ["0xbaae77eeeceb"] + "plotIndexes": [ + "0xbaae77eeeceb" + ] } }, "depositAllowances": {}, @@ -5422,14 +5458,10 @@ "260751601304940": "0xd0101f373", "252900231373437": "0x25cf47e59" }, -<<<<<<< HEAD "plotIndexes": [ "0xed26f692056c", "0xe602ec74627d" ] -======= - "plotIndexes": ["0xed26f692056c", "0xe602ec74627d"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -5550,7 +5582,9 @@ "plots": { "716821446204135": "0x13af27b77c" }, - "plotIndexes": ["0x28bf1ffab1ae7"] + "plotIndexes": [ + "0x28bf1ffab1ae7" + ] } }, "depositAllowances": {}, @@ -5619,7 +5653,11 @@ "711678653676332": "0x61ffbdc5", "714806519970192": "0x681c6f05" }, - "plotIndexes": ["0x6a9933ab95d6", "0x287449958bb2c", "0x28a1cdcb4b990"] + "plotIndexes": [ + "0x6a9933ab95d6", + "0x287449958bb2c", + "0x28a1cdcb4b990" + ] } }, "depositAllowances": {}, @@ -6059,7 +6097,9 @@ "plots": { "242202028393123": "0x468092963" }, - "plotIndexes": ["0xdc480dddc2a3"] + "plotIndexes": [ + "0xdc480dddc2a3" + ] } }, "depositAllowances": {}, @@ -6386,7 +6426,10 @@ "154125130757084": "0x251ea0b69", "829906387458599": "0x4e1c49b3" }, - "plotIndexes": ["0x8c2d0dab73dc", "0x2f2cba36bda27"] + "plotIndexes": [ + "0x8c2d0dab73dc", + "0x2f2cba36bda27" + ] } }, "depositAllowances": {}, @@ -6619,7 +6662,11 @@ "695495577990844": "0xb06aaa89", "696086990150023": "0x50d294b1" }, - "plotIndexes": ["0x278635556ebfb", "0x2788caede76bc", "0x2791661c7d987"] + "plotIndexes": [ + "0x278635556ebfb", + "0x2788caede76bc", + "0x2791661c7d987" + ] } }, "depositAllowances": {}, @@ -7317,7 +7364,11 @@ "698249185306444": "0x15b80f990", "700134813855459": "0xf2c58010e" }, - "plotIndexes": ["0x27aeecbeac203", "0x27b0dcea7a74c", "0x27cc4d6dfeee3"] + "plotIndexes": [ + "0x27aeecbeac203", + "0x27b0dcea7a74c", + "0x27cc4d6dfeee3" + ] } }, "depositAllowances": {}, @@ -7500,7 +7551,9 @@ "plots": { "710118154870377": "0x3aaf4cf0" }, - "plotIndexes": ["0x285d9445e9e69"] + "plotIndexes": [ + "0x285d9445e9e69" + ] } }, "depositAllowances": {}, @@ -7683,7 +7736,9 @@ "plots": { "510095548540793": "0x6feb9560" }, - "plotIndexes": ["0x1cfeddff8e779"] + "plotIndexes": [ + "0x1cfeddff8e779" + ] } }, "depositAllowances": {}, @@ -7822,7 +7877,9 @@ "plots": { "922232828111947": "0x5a395b1" }, - "plotIndexes": ["0x346c4101eac4b"] + "plotIndexes": [ + "0x346c4101eac4b" + ] } }, "depositAllowances": {}, @@ -7956,7 +8013,9 @@ "plots": { "404800573112562": "0x211d1ae3" }, - "plotIndexes": ["0x17029fa5d80f2"] + "plotIndexes": [ + "0x17029fa5d80f2" + ] } }, "depositAllowances": {}, @@ -8268,7 +8327,10 @@ "221202055914502": "0x16ef9ec3f6", "263964858351524": "0x14b8fd2c22" }, - "plotIndexes": ["0xc92e9df76406", "0xf0131b9d7fa4"] + "plotIndexes": [ + "0xc92e9df76406", + "0xf0131b9d7fa4" + ] } }, "depositAllowances": {}, @@ -8393,7 +8455,9 @@ "plots": { "802402236468190": "0x3b195880" }, - "plotIndexes": ["0x2d9c7d4458bde"] + "plotIndexes": [ + "0x2d9c7d4458bde" + ] } }, "depositAllowances": {}, @@ -8533,7 +8597,10 @@ "218827625606992": "0x1523e75c3b", "379279622042320": "0x162a1448cf" }, - "plotIndexes": ["0xc705c6e42f50", "0x158f3eb2472d0"] + "plotIndexes": [ + "0xc705c6e42f50", + "0x158f3eb2472d0" + ] } }, "depositAllowances": {}, @@ -8657,7 +8724,12 @@ "467318943712484": "0x4b1911510", "640173287406938": "0x473476ad7" }, - "plotIndexes": ["0xd131aa07f8c3", "0x19af6720c2d14", "0x1a9062ba304e4", "0x2463bf563fd5a"] + "plotIndexes": [ + "0xd131aa07f8c3", + "0x19af6720c2d14", + "0x1a9062ba304e4", + "0x2463bf563fd5a" + ] } }, "depositAllowances": {}, @@ -8856,15 +8928,11 @@ "327094716728275": "0x6b606afea", "343639296408424": "0x8ea7acf42" }, -<<<<<<< HEAD "plotIndexes": [ "0x1298644ade656", "0x1297dac6603d3", "0x13889c2317b68" ] -======= - "plotIndexes": ["0x1298644ade656", "0x1297dac6603d3", "0x13889c2317b68"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -9340,7 +9408,12 @@ "381366697898472": "0x12298f9fa66", "472919334210993": "0x320fcbd7b67" }, - "plotIndexes": ["0x10d9bf2db1465", "0x13a30c8ac2d36", "0x15ad9da8eb1e8", "0x1ae1e1cec4db1"] + "plotIndexes": [ + "0x10d9bf2db1465", + "0x13a30c8ac2d36", + "0x15ad9da8eb1e8", + "0x1ae1e1cec4db1" + ] } }, "depositAllowances": {}, @@ -9821,7 +9894,9 @@ "plots": { "422363385300603": "0x8f68a580" }, - "plotIndexes": ["0x18023238c067b"] + "plotIndexes": [ + "0x18023238c067b" + ] } }, "depositAllowances": {}, @@ -9977,7 +10052,9 @@ "plots": { "635286832458963": "0x4490ba802" }, - "plotIndexes": ["0x241ca3dfaacd3"] + "plotIndexes": [ + "0x241ca3dfaacd3" + ] } }, "depositAllowances": {}, @@ -10764,7 +10841,10 @@ "742807303929456": "0x1c0b05499", "803378843060369": "0x5ba76" }, - "plotIndexes": ["0x2a3944d7cbe70", "0x2daab368f8891"] + "plotIndexes": [ + "0x2a3944d7cbe70", + "0x2daab368f8891" + ] } }, "depositAllowances": {}, @@ -10953,7 +11033,9 @@ "plots": { "625914213173291": "0x457de89a" }, - "plotIndexes": ["0x239440256082b"] + "plotIndexes": [ + "0x239440256082b" + ] } }, "depositAllowances": {}, @@ -11167,7 +11249,11 @@ "467315572517841": "0x64787823", "513189588115820": "0x67ed50094" }, - "plotIndexes": ["0x1a905c72b23f4", "0x1a90562b2abd1", "0x1d2be431a216c"] + "plotIndexes": [ + "0x1a905c72b23f4", + "0x1a90562b2abd1", + "0x1d2be431a216c" + ] } }, "depositAllowances": {}, @@ -11281,7 +11367,9 @@ "plots": { "61618647066095": "0x24c13a04" }, - "plotIndexes": ["0x380ab591e5ef"] + "plotIndexes": [ + "0x380ab591e5ef" + ] } }, "depositAllowances": {}, @@ -11620,7 +11708,9 @@ "plots": { "705511785947571": "0x95271964" }, - "plotIndexes": ["0x281a8c362e1b3"] + "plotIndexes": [ + "0x281a8c362e1b3" + ] } }, "depositAllowances": {}, @@ -12044,14 +12134,10 @@ "206627322508711": "0x9f9898f55", "206670163756284": "0x9f61db67b" }, -<<<<<<< HEAD "plotIndexes": [ "0xbbed2c28b5a7", "0xbbf725b244fc" ] -======= - "plotIndexes": ["0xbbed2c28b5a7", "0xbbf725b244fc"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -12287,7 +12373,9 @@ "plots": { "122213630970075": "0x9502f900" }, - "plotIndexes": ["0x6f27140f88db"] + "plotIndexes": [ + "0x6f27140f88db" + ] } }, "depositAllowances": {}, @@ -12460,7 +12548,9 @@ "plots": { "219659688648330": "0x5ff82ca3" }, - "plotIndexes": ["0xc7c781b69e8a"] + "plotIndexes": [ + "0xc7c781b69e8a" + ] } }, "depositAllowances": {}, @@ -12635,7 +12725,9 @@ "plots": { "921105492232241": "0x1c8c179db8" }, - "plotIndexes": ["0x345bd95aa4831"] + "plotIndexes": [ + "0x345bd95aa4831" + ] } }, "depositAllowances": {}, @@ -12720,7 +12812,10 @@ "843583452824618": "0xef0603cd9", "889722682869114": "0x24bcc1767d" }, - "plotIndexes": ["0x2ff3c140b442a", "0x32932b476057a"] + "plotIndexes": [ + "0x2ff3c140b442a", + "0x32932b476057a" + ] } }, "depositAllowances": {}, @@ -12795,7 +12890,11 @@ "94355302482701": "0x35e1158e", "859415870473872": "0x2136f3b35" }, - "plotIndexes": ["0x380ab41a9ed7", "0x55d0ce49830d", "0x30da259ac8690"] + "plotIndexes": [ + "0x380ab41a9ed7", + "0x55d0ce49830d", + "0x30da259ac8690" + ] } }, "depositAllowances": {}, @@ -12907,7 +13006,9 @@ "plots": { "708120196123286": "0x12" }, - "plotIndexes": ["0x2840814bf8a96"] + "plotIndexes": [ + "0x2840814bf8a96" + ] } }, "depositAllowances": {}, @@ -13031,14 +13132,10 @@ "672857205023752": "0x9a923bc3540", "684773211540053": "0x7b2ea17e44" }, -<<<<<<< HEAD "plotIndexes": [ "0x263f5c6b0a408", "0x26ecc30068a55" ] -======= - "plotIndexes": ["0x263f5c6b0a408", "0x26ecc30068a55"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -13537,7 +13634,9 @@ "plots": { "288960520307671": "0xa99b62916" }, - "plotIndexes": ["0x106cedd2ac3d7"] + "plotIndexes": [ + "0x106cedd2ac3d7" + ] } }, "depositAllowances": {}, @@ -13634,16 +13733,12 @@ "582212768487404": "0x19b57d485bd", "591607575479537": "0x1d270f8fda" }, -<<<<<<< HEAD "plotIndexes": [ "0x1fcbd5d614f76", "0x21a03136fcefd", "0x21184f93fd7ec", "0x21a105f6204f1" ] -======= - "plotIndexes": ["0x1fcbd5d614f76", "0x21a03136fcefd", "0x21184f93fd7ec", "0x21a105f6204f1"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -13717,7 +13812,9 @@ "plots": { "325833631808009": "0xb232df280" }, - "plotIndexes": ["0x128580de13a09"] + "plotIndexes": [ + "0x128580de13a09" + ] } }, "depositAllowances": {}, @@ -14117,7 +14214,9 @@ "plots": { "328431316120274": "0x4b498e32a" }, - "plotIndexes": ["0x12ab4dfee32d2"] + "plotIndexes": [ + "0x12ab4dfee32d2" + ] } }, "depositAllowances": {}, @@ -14194,7 +14293,9 @@ "plots": { "733779102875875": "0x6d6f5e574" }, - "plotIndexes": ["0x29b5e42c540e3"] + "plotIndexes": [ + "0x29b5e42c540e3" + ] } }, "depositAllowances": {}, @@ -14308,7 +14409,9 @@ "plots": { "221885504514381": "0xc44baebd" }, - "plotIndexes": ["0xc9cdbead694d"] + "plotIndexes": [ + "0xc9cdbead694d" + ] } }, "depositAllowances": {}, @@ -14848,7 +14951,12 @@ "921452930531316": "0xc1e9153c", "978072441547137": "0x361626b90" }, - "plotIndexes": ["0x345ad5b401cbf", "0x345bce12320a2", "0x3460e7a99fff4", "0x3798d3c716981"] + "plotIndexes": [ + "0x345ad5b401cbf", + "0x345bce12320a2", + "0x3460e7a99fff4", + "0x3798d3c716981" + ] } }, "depositAllowances": {}, @@ -14904,15 +15012,11 @@ "275066767853782": "0x2f29f980", "276925106918842": "0x3df508ea9b" }, -<<<<<<< HEAD "plotIndexes": [ "0xfa2c2826c256", "0xfa2bf8fcc8d6", "0xfbdca6a095ba" ] -======= - "plotIndexes": ["0xfa2c2826c256", "0xfa2bf8fcc8d6", "0xfbdca6a095ba"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -14968,7 +15072,9 @@ "plots": { "829727454479103": "0xc7251f9c" }, - "plotIndexes": ["0x2f2a1fa2f42ff"] + "plotIndexes": [ + "0x2f2a1fa2f42ff" + ] } }, "depositAllowances": {}, @@ -15147,7 +15253,9 @@ "plots": { "829217258503469": "0x13a30136" }, - "plotIndexes": ["0x2f22b30227d2d"] + "plotIndexes": [ + "0x2f22b30227d2d" + ] } }, "depositAllowances": {}, @@ -15303,7 +15411,10 @@ "320733140604175": "0x543f0f7977", "319211641505303": "0x26ef69816a" }, - "plotIndexes": ["0x123b480e9d50f", "0x1225240800617"] + "plotIndexes": [ + "0x123b480e9d50f", + "0x1225240800617" + ] } }, "depositAllowances": {}, @@ -17056,7 +17167,9 @@ "plots": { "273849569531660": "0x5e58b0a751" }, - "plotIndexes": ["0xf9109250570c"] + "plotIndexes": [ + "0xf9109250570c" + ] } }, "depositAllowances": {}, @@ -17112,7 +17225,9 @@ "plots": { "782079849018782": "0x382139cb6" }, - "plotIndexes": ["0x2c74c2796359e"] + "plotIndexes": [ + "0x2c74c2796359e" + ] } }, "depositAllowances": {}, @@ -17283,7 +17398,10 @@ "704261722238546": "0x9502f9000", "705035364874150": "0xc8a3fc91" }, - "plotIndexes": ["0x28085b5c86e52", "0x28139d67a37a6"] + "plotIndexes": [ + "0x28085b5c86e52", + "0x28139d67a37a6" + ] } }, "depositAllowances": {}, @@ -17347,7 +17465,9 @@ "plots": { "380108286748272": "0x166c894561" }, - "plotIndexes": ["0x159b4db686670"] + "plotIndexes": [ + "0x159b4db686670" + ] } }, "depositAllowances": {}, @@ -17779,7 +17899,9 @@ "plots": { "231383431415446": "0x422d56d8b" }, - "plotIndexes": ["0xd271273c8696"] + "plotIndexes": [ + "0xd271273c8696" + ] } }, "depositAllowances": {}, @@ -19036,7 +19158,10 @@ "710372916011430": "0x11652efc3", "857167591329417": "0x13b1f7855e" }, - "plotIndexes": ["0x28614955121a6", "0x30b96e1cb4e89"] + "plotIndexes": [ + "0x28614955121a6", + "0x30b96e1cb4e89" + ] } }, "depositAllowances": {}, @@ -19242,7 +19367,9 @@ "plots": { "842942611006904": "0x6e30922b1" }, - "plotIndexes": ["0x2fea6dee525b8"] + "plotIndexes": [ + "0x2fea6dee525b8" + ] } }, "depositAllowances": {}, @@ -19625,7 +19752,11 @@ "315350882670410": "0x1f499cd0c0", "592915046792108": "0xc39f938cf" }, - "plotIndexes": ["0x798896a987a0", "0x11ecf5957574a", "0x21b40cabefbac"] + "plotIndexes": [ + "0x798896a987a0", + "0x11ecf5957574a", + "0x21b40cabefbac" + ] } }, "depositAllowances": {}, @@ -19869,7 +20000,11 @@ "221828136095026": "0x48f22cbc1", "462669721238188": "0x13dcbc6f9" }, - "plotIndexes": ["0x37fd973416f3", "0xc9c06340cd32", "0x1a4cbb061faac"] + "plotIndexes": [ + "0x37fd973416f3", + "0xc9c06340cd32", + "0x1a4cbb061faac" + ] } }, "depositAllowances": {}, @@ -20011,7 +20146,10 @@ "64930655802639": "0x3b9aca00", "99189665085461": "0x2540be400" }, - "plotIndexes": ["0x3b0dd8ac950f", "0x5a3664c0b815"] + "plotIndexes": [ + "0x3b0dd8ac950f", + "0x5a3664c0b815" + ] } }, "depositAllowances": {}, @@ -20206,16 +20344,12 @@ "397292891284114": "0x2953df189", "399504324312896": "0x2efb78098" }, -<<<<<<< HEAD "plotIndexes": [ "0x16a0b281b0de5", "0x165494cc27d6d", "0x16955f5a82292", "0x16b58d9563f40" ] -======= - "plotIndexes": ["0x16a0b281b0de5", "0x165494cc27d6d", "0x16955f5a82292", "0x16b58d9563f40"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -20300,7 +20434,10 @@ "716942471194887": "0x69a0c61", "803620842189824": "0xbcafb03b0" }, - "plotIndexes": ["0x28c0e2d51e907", "0x2dae38ed53400"] + "plotIndexes": [ + "0x28c0e2d51e907", + "0x2dae38ed53400" + ] } }, "depositAllowances": {}, @@ -20409,16 +20546,12 @@ "249938635416148": "0x1aac2f468", "281320695833261": "0x2cc7e081b" }, -<<<<<<< HEAD "plotIndexes": [ "0xd011152c2087", "0xe3a43d0ed127", "0xe3515f946254", "0xffdc1424a2ad" ] -======= - "plotIndexes": ["0xd011152c2087", "0xe3a43d0ed127", "0xe3515f946254", "0xffdc1424a2ad"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -20538,7 +20671,10 @@ "170713622328250": "0x4bedf2a6", "695948584939839": "0x899ac16f" }, - "plotIndexes": ["0x9b435cd133ba", "0x278f6282ff13f"] + "plotIndexes": [ + "0x9b435cd133ba", + "0x278f6282ff13f" + ] } }, "depositAllowances": {}, @@ -20937,7 +21073,9 @@ "plots": { "698245289553297": "0xe83479bb" }, - "plotIndexes": ["0x27b0ce6732d91"] + "plotIndexes": [ + "0x27b0ce6732d91" + ] } }, "depositAllowances": {}, @@ -21246,7 +21384,9 @@ "plots": { "437461460697730": "0x17f36a2bd" }, - "plotIndexes": ["0x18dde6ef7c282"] + "plotIndexes": [ + "0x18dde6ef7c282" + ] } }, "depositAllowances": {}, @@ -21371,7 +21511,12 @@ "787226641244792": "0x36661fc3f", "920389666843550": "0x3dba71d3a" }, - "plotIndexes": ["0x18e003831ae00", "0x2a39be6ee4fa0", "0x2cbfa7c4f2278", "0x34516eb25ab9e"] + "plotIndexes": [ + "0x18e003831ae00", + "0x2a39be6ee4fa0", + "0x2cbfa7c4f2278", + "0x34516eb25ab9e" + ] } }, "depositAllowances": {}, @@ -21715,14 +21860,10 @@ "696390462795444": "0x14c93464c0", "696118400377928": "0x15dbc760f0" }, -<<<<<<< HEAD "plotIndexes": [ "0x2795d0a28eeb4", "0x2791db1f9e448" ] -======= - "plotIndexes": ["0x2795d0a28eeb4", "0x2791db1f9e448"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -22127,7 +22268,10 @@ "203059138411712": "0x34656de40", "687187720700622": "0x1d4573807b" }, - "plotIndexes": ["0xb8ae63d03cc0", "0x270fe5bfc82ce"] + "plotIndexes": [ + "0xb8ae63d03cc0", + "0x270fe5bfc82ce" + ] } }, "depositAllowances": {}, @@ -22199,7 +22343,9 @@ "plots": { "710861186022257": "0x2acc19d" }, - "plotIndexes": ["0x28686447a3b71"] + "plotIndexes": [ + "0x28686447a3b71" + ] } }, "depositAllowances": {}, @@ -22375,7 +22521,9 @@ "plots": { "828631129842715": "0xdaf7476" }, - "plotIndexes": ["0x2f1a2b824e41b"] + "plotIndexes": [ + "0x2f1a2b824e41b" + ] } }, "depositAllowances": {}, @@ -22663,7 +22811,11 @@ "262966718164117": "0x3d2384738d", "281320695818691": "0x38ea" }, - "plotIndexes": ["0xefac42d095a4", "0xef2ab5d2ec95", "0xffdc142469c3"] + "plotIndexes": [ + "0xefac42d095a4", + "0xef2ab5d2ec95", + "0xffdc142469c3" + ] } }, "depositAllowances": {}, @@ -23114,7 +23266,9 @@ "plots": { "980155130122492": "0x4309db79" }, - "plotIndexes": ["0x37b72265b10fc"] + "plotIndexes": [ + "0x37b72265b10fc" + ] } }, "depositAllowances": {}, @@ -23221,7 +23375,11 @@ "143946577539573": "0x489f3077ec", "433523087906845": "0x29caa944f00" }, - "plotIndexes": ["0x6fddcfa0302c", "0x82eb2c9ef1f5", "0x18a4975a8181d"] + "plotIndexes": [ + "0x6fddcfa0302c", + "0x82eb2c9ef1f5", + "0x18a4975a8181d" + ] } }, "depositAllowances": {}, @@ -23441,7 +23599,9 @@ "plots": { "247712146323222": "0x1fec3fcb8" }, - "plotIndexes": ["0xe14afa7cf716"] + "plotIndexes": [ + "0xe14afa7cf716" + ] } }, "depositAllowances": {}, @@ -23510,7 +23670,9 @@ "plots": { "360425196306582": "0x51fe5f296" }, - "plotIndexes": ["0x147ce07cb4096"] + "plotIndexes": [ + "0x147ce07cb4096" + ] } }, "depositAllowances": {}, @@ -23712,7 +23874,9 @@ "plots": { "710259438675628": "0xd1d9e78" }, - "plotIndexes": ["0x285fa298a66ac"] + "plotIndexes": [ + "0x285fa298a66ac" + ] } }, "depositAllowances": {}, @@ -24705,7 +24869,9 @@ "plots": { "327967567546864": "0x32710c5aff" }, - "plotIndexes": ["0x12a48e65c89f0"] + "plotIndexes": [ + "0x12a48e65c89f0" + ] } }, "depositAllowances": {}, @@ -24765,7 +24931,9 @@ "plots": { "328333232198974": "0x202a13840" }, - "plotIndexes": ["0x12a9e09ac553e"] + "plotIndexes": [ + "0x12a9e09ac553e" + ] } }, "depositAllowances": {}, @@ -24947,7 +25115,9 @@ "plots": { "372144522811616": "0x173d7c19c" }, - "plotIndexes": ["0x15276a61658e0"] + "plotIndexes": [ + "0x15276a61658e0" + ] } }, "depositAllowances": {}, @@ -25021,7 +25191,9 @@ "plots": { "705496908203154": "0x629e07e" }, - "plotIndexes": ["0x281a54c9a8492"] + "plotIndexes": [ + "0x281a54c9a8492" + ] } }, "depositAllowances": {}, @@ -25199,7 +25371,11 @@ "203073203411712": "0x2540be400", "805893939193172": "0x43d2f30a0" }, - "plotIndexes": ["0x4803eaf088b7", "0xb8b1aa271b00", "0x2dcf4cdf8e554"] + "plotIndexes": [ + "0x4803eaf088b7", + "0xb8b1aa271b00", + "0x2dcf4cdf8e554" + ] } }, "depositAllowances": {}, @@ -25782,7 +25958,11 @@ "698890211517596": "0x58a91090a8", "827563810470578": "0x3973b118b" }, - "plotIndexes": ["0xc9b489fd5999", "0x27ba30ecb649c", "0x2f0aa36f3bab2"] + "plotIndexes": [ + "0xc9b489fd5999", + "0x27ba30ecb649c", + "0x2f0aa36f3bab2" + ] } }, "depositAllowances": {}, @@ -25995,7 +26175,10 @@ "79180247523918": "0x3007fb0", "79180297888254": "0x4976a564" }, - "plotIndexes": ["0x48039686e24e", "0x4803998761fe"] + "plotIndexes": [ + "0x48039686e24e", + "0x4803998761fe" + ] } }, "depositAllowances": {}, @@ -26200,15 +26383,11 @@ "228686945368367": "0x13c1076758", "695319193240357": "0x663c60de" }, -<<<<<<< HEAD "plotIndexes": [ "0xc9bb8bb73890", "0xcffd5424b92f", "0x278639d84c325" ] -======= - "plotIndexes": ["0xc9bb8bb73890", "0xcffd5424b92f", "0x278639d84c325"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -26591,7 +26770,11 @@ "263947015910096": "0x4277e0cbe", "469175726963278": "0x25410bd8a" }, - "plotIndexes": ["0x661932bc99dc", "0xf00ef41f72d0", "0x1aab67c8afa4e"] + "plotIndexes": [ + "0x661932bc99dc", + "0xf00ef41f72d0", + "0x1aab67c8afa4e" + ] } }, "depositAllowances": {}, @@ -26900,7 +27083,12 @@ "821312920063558": "0x2b805f7b", "821599578141387": "0x15ffa0a9" }, - "plotIndexes": ["0x7cbe7d715e47", "0x2a2577de92a45", "0x2eafad0d98e46", "0x2eb3d8f00b2cb"] + "plotIndexes": [ + "0x7cbe7d715e47", + "0x2a2577de92a45", + "0x2eafad0d98e46", + "0x2eb3d8f00b2cb" + ] } }, "depositAllowances": {}, @@ -26970,7 +27158,9 @@ "plots": { "319161563141827": "0x9d626565e" }, - "plotIndexes": ["0x122469798d6c3"] + "plotIndexes": [ + "0x122469798d6c3" + ] } }, "depositAllowances": {}, @@ -27644,7 +27834,9 @@ "plots": { "802121584517836": "0x369d1b387" }, - "plotIndexes": ["0x2d9867c1ca2cc"] + "plotIndexes": [ + "0x2d9867c1ca2cc" + ] } }, "depositAllowances": {}, @@ -27866,7 +28058,11 @@ "139698958414857": "0x14dfd4b83", "168574996066331": "0x104162468" }, - "plotIndexes": ["0x511dd78b8674", "0x7f0e32cab409", "0x99516cc2301b"] + "plotIndexes": [ + "0x511dd78b8674", + "0x7f0e32cab409", + "0x99516cc2301b" + ] } }, "depositAllowances": {}, @@ -28238,7 +28434,11 @@ "408604736783604": "0x167754c6480", "406479934660901": "0x15f7705f500" }, - "plotIndexes": ["0x43fbe94ce38b", "0x1739fb43084f4", "0x171b0fc1d2125"] + "plotIndexes": [ + "0x43fbe94ce38b", + "0x1739fb43084f4", + "0x171b0fc1d2125" + ] } }, "depositAllowances": {}, @@ -28559,7 +28759,9 @@ "plots": { "383419389986175": "0x16070f04e2" }, - "plotIndexes": ["0x15cb7c88a457f"] + "plotIndexes": [ + "0x15cb7c88a457f" + ] } }, "depositAllowances": {}, @@ -29227,7 +29429,9 @@ "plots": { "220713870788997": "0x173dd6a53a" }, - "plotIndexes": ["0xc8bcf3dd8985"] + "plotIndexes": [ + "0xc8bcf3dd8985" + ] } }, "depositAllowances": {}, @@ -30669,7 +30873,9 @@ "plots": { "672838121314733": "0x4717a4a5b" }, - "plotIndexes": ["0x263f1553659ad"] + "plotIndexes": [ + "0x263f1553659ad" + ] } }, "depositAllowances": {}, @@ -31544,7 +31750,9 @@ "plots": { "270753617517203": "0xa28e6fcf" }, - "plotIndexes": ["0xf63fbd319a93"] + "plotIndexes": [ + "0xf63fbd319a93" + ] } }, "depositAllowances": {}, @@ -31880,7 +32088,10 @@ "218701606726030": "0x70e18992f", "733815599504575": "0x221be82c8" }, - "plotIndexes": ["0xc6e86f94a98e", "0x29b66c2239cbf"] + "plotIndexes": [ + "0xc6e86f94a98e", + "0x29b66c2239cbf" + ] } }, "depositAllowances": {}, @@ -32046,7 +32257,10 @@ "250294538522915": "0x4", "311893596417090": "0x6" }, - "plotIndexes": ["0xe3a43d0ed123", "0x11baa6305ac42"] + "plotIndexes": [ + "0xe3a43d0ed123", + "0x11baa6305ac42" + ] } }, "depositAllowances": {}, @@ -32207,7 +32421,9 @@ "plots": { "139710719558186": "0x1" }, - "plotIndexes": ["0x7f10efcf822a"] + "plotIndexes": [ + "0x7f10efcf822a" + ] } }, "depositAllowances": {}, @@ -32278,7 +32494,12 @@ "296377664705848": "0x70727724f", "593799800299595": "0x12fe0f800" }, - "plotIndexes": ["0xd2a0cc4c92f5", "0xe1e089da18c3", "0x10d8dcd6c9538", "0x21c0eca2a204b"] + "plotIndexes": [ + "0xd2a0cc4c92f5", + "0xe1e089da18c3", + "0x10d8dcd6c9538", + "0x21c0eca2a204b" + ] } }, "depositAllowances": {}, @@ -32624,7 +32845,9 @@ "plots": { "89552406100600": "0x71175311" }, - "plotIndexes": ["0x51728b5aba78"] + "plotIndexes": [ + "0x51728b5aba78" + ] } }, "depositAllowances": {}, @@ -32795,7 +33018,9 @@ "plots": { "761165787154183": "0x19f8fd7ac" }, - "plotIndexes": ["0x2b446b85bc707"] + "plotIndexes": [ + "0x2b446b85bc707" + ] } }, "depositAllowances": {}, @@ -32885,7 +33110,10 @@ "263902250213507": "0xa6c3e524d", "335286193422314": "0x1e7c2d8d9e" }, - "plotIndexes": ["0xf00487e12083", "0x130f0e674ffea"] + "plotIndexes": [ + "0xf00487e12083", + "0x130f0e674ffea" + ] } }, "depositAllowances": {}, @@ -32975,7 +33203,10 @@ "345401629709038": "0x51bb9d500", "428483895698649": "0x251a000980" }, - "plotIndexes": ["0x13a24157192ee", "0x185b42e6524d9"] + "plotIndexes": [ + "0x13a24157192ee", + "0x185b42e6524d9" + ] } }, "depositAllowances": {}, @@ -33159,7 +33390,10 @@ "387178819624322": "0x18", "401291905968469": "0x650c1b89" }, - "plotIndexes": ["0x1602318021d82", "0x16cf90d81a955"] + "plotIndexes": [ + "0x1602318021d82", + "0x16cf90d81a955" + ] } }, "depositAllowances": {}, @@ -33291,7 +33525,9 @@ "plots": { "695165389013847": "0x146ce4e5d" }, - "plotIndexes": ["0x2783fce128357"] + "plotIndexes": [ + "0x2783fce128357" + ] } }, "depositAllowances": {}, @@ -33429,7 +33665,9 @@ "plots": { "428480693333294": "0xbee037ab" }, - "plotIndexes": ["0x185b36f84ed2e"] + "plotIndexes": [ + "0x185b36f84ed2e" + ] } }, "depositAllowances": {}, @@ -34013,7 +34251,9 @@ "plots": { "695262582394210": "0x903ec3ba" }, - "plotIndexes": ["0x278566f3fcd62"] + "plotIndexes": [ + "0x278566f3fcd62" + ] } }, "depositAllowances": {}, @@ -34868,14 +35108,10 @@ "696088346127928": "0x492aa3f20", "696374692545444": "0x13f45b420" }, -<<<<<<< HEAD "plotIndexes": [ "0x27916b29a6e38", "0x279595e2e03a4" ] -======= - "plotIndexes": ["0x27916b29a6e38", "0x279595e2e03a4"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -35011,7 +35247,10 @@ "79244791972952": "0x1fc86366781", "526508270867756": "0x4759d7e8800" }, - "plotIndexes": ["0x48129dad0458", "0x1dedb4274d52c"] + "plotIndexes": [ + "0x48129dad0458", + "0x1dedb4274d52c" + ] } }, "depositAllowances": {}, @@ -35083,7 +35322,9 @@ "plots": { "592974120360191": "0xeadf0b37" }, - "plotIndexes": ["0x21b4e8bce18ff"] + "plotIndexes": [ + "0x21b4e8bce18ff" + ] } }, "depositAllowances": {}, @@ -35313,7 +35554,10 @@ "278393127641126": "0x110a626ad2", "726112472837908": "0x118acb9be8" }, - "plotIndexes": ["0xfd32737b2026", "0x294653c02af14"] + "plotIndexes": [ + "0xfd32737b2026", + "0x294653c02af14" + ] } }, "depositAllowances": {}, @@ -35506,7 +35750,9 @@ "plots": { "401439474290340": "0xa1e0f560" }, - "plotIndexes": ["0x16d1b69438ea4"] + "plotIndexes": [ + "0x16d1b69438ea4" + ] } }, "depositAllowances": {}, @@ -35946,7 +36192,9 @@ "plots": { "251638322154111": "0xa61cae0fa" }, - "plotIndexes": ["0xe4dd1ccdca7f"] + "plotIndexes": [ + "0xe4dd1ccdca7f" + ] } }, "depositAllowances": {}, @@ -36636,16 +36884,12 @@ "712614668536408": "0xd4ecdb71", "796591631208380": "0x90bda7781" }, -<<<<<<< HEAD "plotIndexes": [ "0x28615ac34b6a4", "0x286d40488c755", "0x2881e882e0a58", "0x2d47ef1358fbc" ] -======= - "plotIndexes": ["0x28615ac34b6a4", "0x286d40488c755", "0x2881e882e0a58", "0x2d47ef1358fbc"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -36817,7 +37061,11 @@ "122199613970823": "0x29f766028", "117219099496678": "0x2c804f425" }, - "plotIndexes": ["0x54594712d346", "0x6f23d0951987", "0x6a9c32c950e6"] + "plotIndexes": [ + "0x54594712d346", + "0x6f23d0951987", + "0x6a9c32c950e6" + ] } }, "depositAllowances": {}, @@ -38950,7 +39198,9 @@ "plots": { "660246036031041": "0x101a3d3291" }, - "plotIndexes": ["0x2587d82712641"] + "plotIndexes": [ + "0x2587d82712641" + ] } }, "depositAllowances": {}, @@ -39572,7 +39822,11 @@ "319977964011072": "0x15ed8f1415", "326650849478990": "0x107f259c63" }, - "plotIndexes": ["0xc7e063cb5df0", "0x12304ace17e40", "0x1291653d9494e"] + "plotIndexes": [ + "0xc7e063cb5df0", + "0x12304ace17e40", + "0x1291653d9494e" + ] } }, "depositAllowances": {}, @@ -39881,7 +40135,11 @@ "386944141009871": "0x1b08a5a8c6", "401612828045566": "0x1909ee90ed" }, - "plotIndexes": ["0x1111b11a97a0d", "0x15fec7412a3cf", "0x16d43c5f3f0fe"] + "plotIndexes": [ + "0x1111b11a97a0d", + "0x15fec7412a3cf", + "0x16d43c5f3f0fe" + ] } }, "depositAllowances": {}, @@ -39966,7 +40224,9 @@ "plots": { "92734901265345": "0x10b66fa2c" }, - "plotIndexes": ["0x545786d923c1"] + "plotIndexes": [ + "0x545786d923c1" + ] } }, "depositAllowances": {}, @@ -40096,7 +40356,9 @@ "plots": { "621038458340633": "0x23732a300" }, - "plotIndexes": ["0x234d4c8b38519"] + "plotIndexes": [ + "0x234d4c8b38519" + ] } }, "depositAllowances": {}, @@ -40203,7 +40465,9 @@ "plots": { "705252881467059": "0x11968a5" }, - "plotIndexes": ["0x2816c7b7a06b3"] + "plotIndexes": [ + "0x2816c7b7a06b3" + ] } }, "depositAllowances": {}, @@ -40762,7 +41026,9 @@ "plots": { "386528870598580": "0x2adfbd60d" }, - "plotIndexes": ["0x15f8bc40707b4"] + "plotIndexes": [ + "0x15f8bc40707b4" + ] } }, "depositAllowances": {}, @@ -40883,7 +41149,11 @@ "710982397909733": "0x3e00fc4", "710635821671358": "0x879102623" }, - "plotIndexes": ["0x2376b4f30c107", "0x286a27d44dae5", "0x28651cbb723be"] + "plotIndexes": [ + "0x2376b4f30c107", + "0x286a27d44dae5", + "0x28651cbb723be" + ] } }, "depositAllowances": {}, @@ -41010,7 +41280,9 @@ "plots": { "708357952746096": "0xbdcf460d" }, - "plotIndexes": ["0x2843f7025b270"] + "plotIndexes": [ + "0x2843f7025b270" + ] } }, "depositAllowances": {}, @@ -41388,15 +41660,11 @@ "416764948719656": "0x253334645", "416774934523501": "0x8d755275" }, -<<<<<<< HEAD "plotIndexes": [ "0x17b2b9fd66891", "0x17b0ba6b92828", "0x17b0df9ec6e6d" ] -======= - "plotIndexes": ["0x17b2b9fd66891", "0x17b0ba6b92828", "0x17b0df9ec6e6d"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -41559,7 +41827,12 @@ "592967559033979": "0x18715e484", "723779316763287": "0x368606c" }, - "plotIndexes": ["0x5d251b0dda7a", "0x10e1aa2dc345b", "0x21b4d04b8347b", "0x2924601124a97"] + "plotIndexes": [ + "0x5d251b0dda7a", + "0x10e1aa2dc345b", + "0x21b4d04b8347b", + "0x2924601124a97" + ] } }, "depositAllowances": {}, @@ -41771,7 +42044,10 @@ "708854521472745": "0x6ea39ef18", "829433630619951": "0xd10a5356" }, - "plotIndexes": ["0x284b30df326e9", "0x2f25d90eaf92f"] + "plotIndexes": [ + "0x284b30df326e9", + "0x2f25d90eaf92f" + ] } }, "depositAllowances": {}, @@ -41865,7 +42141,10 @@ "74553264982603": "0xabe288700", "446341746703841": "0x2fa85b191" }, - "plotIndexes": ["0x43ce48e04a4b", "0x195f20942bde1"] + "plotIndexes": [ + "0x43ce48e04a4b", + "0x195f20942bde1" + ] } }, "depositAllowances": {}, @@ -42023,7 +42302,9 @@ "plots": { "945086995481420": "0x27da7a96e5" }, - "plotIndexes": ["0x35b8d36a5c34c"] + "plotIndexes": [ + "0x35b8d36a5c34c" + ] } }, "depositAllowances": {}, @@ -42270,7 +42551,12 @@ "789657062113970": "0x7140a29e70", "851449379923934": "0x1e0c6817b8" }, - "plotIndexes": ["0x2a57a3441b3c6", "0x2a3fa56c368b6", "0x2ce305cae82b2", "0x3066381d5a7de"] + "plotIndexes": [ + "0x2a57a3441b3c6", + "0x2a3fa56c368b6", + "0x2ce305cae82b2", + "0x3066381d5a7de" + ] } }, "depositAllowances": {}, @@ -42594,7 +42880,10 @@ "345423569709038": "0x79780c548", "705867886947037": "0x19817f88" }, - "plotIndexes": ["0x13a29312b67ee", "0x281fbaca8eadd"] + "plotIndexes": [ + "0x13a29312b67ee", + "0x281fbaca8eadd" + ] } }, "depositAllowances": {}, @@ -43258,7 +43547,9 @@ "plots": { "699433319525762": "0xd7f733d86" }, - "plotIndexes": ["0x27c21828ded82"] + "plotIndexes": [ + "0x27c21828ded82" + ] } }, "depositAllowances": {}, @@ -43522,7 +43813,10 @@ "140373758599368": "0xc1962227c", "204878133820660": "0x2d8ac83349" }, - "plotIndexes": ["0x7fab500460c8", "0xba55e8637cf4"] + "plotIndexes": [ + "0x7fab500460c8", + "0xba55e8637cf4" + ] } }, "depositAllowances": {}, @@ -43584,7 +43878,9 @@ "plots": { "504989340347547": "0x571ddc1f9" }, - "plotIndexes": ["0x1cb48fe3f2c9b"] + "plotIndexes": [ + "0x1cb48fe3f2c9b" + ] } }, "depositAllowances": {}, @@ -44407,7 +44703,9 @@ "plots": { "805412332289879": "0x14daab380" }, - "plotIndexes": ["0x2dc84abf6bf57"] + "plotIndexes": [ + "0x2dc84abf6bf57" + ] } }, "depositAllowances": {}, @@ -44463,7 +44761,9 @@ "plots": { "710272326799610": "0x4cf36e" }, - "plotIndexes": ["0x285fd29bb90fa"] + "plotIndexes": [ + "0x285fd29bb90fa" + ] } }, "depositAllowances": {}, @@ -44551,7 +44851,10 @@ "251689318096142": "0x4264e95ef", "446328959443385": "0x2fa2e1c28" }, - "plotIndexes": ["0xe4e8fc661d0e", "0x195ef0f14a1b9"] + "plotIndexes": [ + "0xe4e8fc661d0e", + "0x195ef0f14a1b9" + ] } }, "depositAllowances": {}, @@ -45109,7 +45412,12 @@ "89554303454601": "0xb7180efa", "89190107363598": "0x450de0628" }, - "plotIndexes": ["0x3811aba88a13", "0x51d808ad7df0", "0x5172fc720d89", "0x511e30aab90e"] + "plotIndexes": [ + "0x3811aba88a13", + "0x51d808ad7df0", + "0x5172fc720d89", + "0x511e30aab90e" + ] } }, "depositAllowances": {}, @@ -45523,15 +45831,11 @@ "590928120113238": "0x3111520bb", "590991887858839": "0x10d40bfa64" }, -<<<<<<< HEAD "plotIndexes": [ "0x2059db1b57e5e", "0x219722cafe856", "0x21981058a7c97" ] -======= - "plotIndexes": ["0x2059db1b57e5e", "0x219722cafe856", "0x21981058a7c97"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -45671,7 +45975,11 @@ "705502798541410": "0xb7de03cc", "829201089289885": "0x962f339a" }, - "plotIndexes": ["0x2814161977168", "0x281a6abb1f262", "0x2f2276c5fde9d"] + "plotIndexes": [ + "0x2814161977168", + "0x281a6abb1f262", + "0x2f2276c5fde9d" + ] } }, "depositAllowances": {}, @@ -46080,7 +46388,9 @@ "plots": { "828631128825075": "0xf8728" }, - "plotIndexes": ["0x2f1a2b8155cf3"] + "plotIndexes": [ + "0x2f1a2b8155cf3" + ] } }, "depositAllowances": {}, @@ -46126,14 +46436,10 @@ "829846531525914": "0xa09acea0", "829846511525914": "0x989680" }, -<<<<<<< HEAD "plotIndexes": [ "0x2f2bdb3bacd1a", "0x2f2bdb289a01a" ] -======= - "plotIndexes": ["0x2f2bdb3bacd1a", "0x2f2bdb289a01a"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -46219,7 +46525,9 @@ "plots": { "246715075632743": "0x112872255" }, - "plotIndexes": ["0xe062d4719e67"] + "plotIndexes": [ + "0xe062d4719e67" + ] } }, "depositAllowances": {}, @@ -46656,7 +46964,10 @@ "828639443033247": "0x32d13056", "830263540434495": "0x88b37b4" }, - "plotIndexes": ["0x2f1a4a7a61c9f", "0x2f31ecb65c63f"] + "plotIndexes": [ + "0x2f1a4a7a61c9f", + "0x2f31ecb65c63f" + ] } }, "depositAllowances": {}, @@ -46967,7 +47278,9 @@ "plots": { "265237981975245": "0x3015eda0b" }, - "plotIndexes": ["0xf13b87b252cd"] + "plotIndexes": [ + "0xf13b87b252cd" + ] } }, "depositAllowances": {}, @@ -47871,7 +48184,9 @@ "plots": { "323837562208542": "0x353529bb" }, - "plotIndexes": ["0x126874edc411e"] + "plotIndexes": [ + "0x126874edc411e" + ] } }, "depositAllowances": {}, @@ -48215,7 +48530,12 @@ "340534562977258": "0x23ddd31a8", "381334859129242": "0x14a639490" }, - "plotIndexes": ["0x55d1042a989b", "0xf88aa479a8c1", "0x135b6e1a8f5ea", "0x15ad270d1a19a"] + "plotIndexes": [ + "0x55d1042a989b", + "0xf88aa479a8c1", + "0x135b6e1a8f5ea", + "0x15ad270d1a19a" + ] } }, "depositAllowances": {}, @@ -48264,7 +48584,9 @@ "plots": { "384464921215267": "0x38195dce58" }, - "plotIndexes": ["0x15dab370ec123"] + "plotIndexes": [ + "0x15dab370ec123" + ] } }, "depositAllowances": {}, @@ -48783,7 +49105,9 @@ "plots": { "545618833854003": "0x25842bc1500" }, - "plotIndexes": ["0x1f03cc8c64e33"] + "plotIndexes": [ + "0x1f03cc8c64e33" + ] } }, "depositAllowances": {}, @@ -48907,7 +49231,10 @@ "262282827399224": "0x5a9ac0f18", "709241915118695": "0x3f255d521" }, - "plotIndexes": ["0xee8b7ac20038", "0x2850d40691467"] + "plotIndexes": [ + "0xee8b7ac20038", + "0x2850d40691467" + ] } }, "depositAllowances": {}, @@ -50426,7 +50753,9 @@ "plots": { "371926248900676": "0x14ba9c7ea" }, - "plotIndexes": ["0x15243d3f2c844"] + "plotIndexes": [ + "0x15243d3f2c844" + ] } }, "depositAllowances": {}, @@ -50531,7 +50860,9 @@ "plots": { "273212723767312": "0xc87df4a3c" }, - "plotIndexes": ["0xf87c4b592810"] + "plotIndexes": [ + "0xf87c4b592810" + ] } }, "depositAllowances": {}, @@ -50917,7 +51248,9 @@ "plots": { "136916132809737": "0x1dcd65000" }, - "plotIndexes": ["0x7c864575cc09"] + "plotIndexes": [ + "0x7c864575cc09" + ] } }, "depositAllowances": {}, @@ -50994,7 +51327,9 @@ "plots": { "731385825209645": "0x21d06dac4" }, - "plotIndexes": ["0x29931084e2d2d"] + "plotIndexes": [ + "0x29931084e2d2d" + ] } }, "depositAllowances": {}, @@ -51064,7 +51399,9 @@ "plots": { "274296479205287": "0xcccc3edc0" }, - "plotIndexes": ["0xf978a034c7a7"] + "plotIndexes": [ + "0xf978a034c7a7" + ] } }, "depositAllowances": {}, @@ -51207,7 +51544,10 @@ "208552718877075": "0x481b213353", "891043664348577": "0x3270e3eaae" }, - "plotIndexes": ["0xbdad76b9c193", "0x32a664517c5a1"] + "plotIndexes": [ + "0xbdad76b9c193", + "0x32a664517c5a1" + ] } }, "depositAllowances": {}, @@ -51576,7 +51916,9 @@ "plots": { "246669957392680": "0xa8141b53f" }, - "plotIndexes": ["0xe058532fe928"] + "plotIndexes": [ + "0xe058532fe928" + ] } }, "depositAllowances": {}, @@ -52143,7 +52485,11 @@ "229437412992433": "0x427447bb2", "262153242867270": "0x9388dc70a" }, - "plotIndexes": ["0xc1ed84f89dfb", "0xd0ac0f7fe5b1", "0xee6d4eeaf646"] + "plotIndexes": [ + "0xc1ed84f89dfb", + "0xd0ac0f7fe5b1", + "0xee6d4eeaf646" + ] } }, "depositAllowances": {}, @@ -52569,7 +52915,9 @@ "plots": { "656258795032897": "0x2d6e578dc" }, - "plotIndexes": ["0x254dd285bd141"] + "plotIndexes": [ + "0x254dd285bd141" + ] } }, "depositAllowances": {}, @@ -53701,7 +54049,10 @@ "66084769661334": "0x1", "92743843990176": "0x1" }, - "plotIndexes": ["0x3c1a8f388196", "0x54599be04aa0"] + "plotIndexes": [ + "0x3c1a8f388196", + "0x54599be04aa0" + ] } }, "depositAllowances": {}, @@ -54044,16 +54395,12 @@ "250498439776055": "0x3c57f12d5", "723112643012217": "0x39a40db1e" }, -<<<<<<< HEAD "plotIndexes": [ "0x7f1e7f1df009", "0x7f12dae27c09", "0xe3d3b6850737", "0x291aac8382679" ] -======= - "plotIndexes": ["0x7f1e7f1df009", "0x7f12dae27c09", "0xe3d3b6850737", "0x291aac8382679"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -54417,7 +54764,10 @@ "188657736324783": "0x17", "334429009280361": "0x15" }, - "plotIndexes": ["0xab954d5b96af", "0x13029524cfd69"] + "plotIndexes": [ + "0xab954d5b96af", + "0x13029524cfd69" + ] } }, "depositAllowances": {}, @@ -55097,7 +55447,9 @@ "plots": { "828936762063483": "0x12a0a039b" }, - "plotIndexes": ["0x2f1e9e13e7a7b"] + "plotIndexes": [ + "0x2f1e9e13e7a7b" + ] } }, "depositAllowances": {}, @@ -55826,7 +56178,9 @@ "plots": { "225765065776620": "0x55b80bc80" }, - "plotIndexes": ["0xcd55068c5dec"] + "plotIndexes": [ + "0xcd55068c5dec" + ] } }, "depositAllowances": {}, @@ -55984,7 +56338,9 @@ "plots": { "262899104239013": "0x4171ce567" }, - "plotIndexes": ["0xef1af7b84da5"] + "plotIndexes": [ + "0xef1af7b84da5" + ] } }, "depositAllowances": {}, @@ -56096,7 +56452,9 @@ "plots": { "92719137052691": "0x3ab9ecbae" }, - "plotIndexes": ["0x5453db3a5813"] + "plotIndexes": [ + "0x5453db3a5813" + ] } }, "depositAllowances": {}, @@ -56156,7 +56514,9 @@ "plots": { "476539574311782": "0xf6a810ddd" }, - "plotIndexes": ["0x1b169040c5b66"] + "plotIndexes": [ + "0x1b169040c5b66" + ] } }, "depositAllowances": {}, @@ -56304,7 +56664,9 @@ "plots": { "66072179684940": "0x13c91af21" }, - "plotIndexes": ["0x3c17a0ccb64c"] + "plotIndexes": [ + "0x3c17a0ccb64c" + ] } }, "depositAllowances": {}, @@ -56555,14 +56917,10 @@ "148525943306600": "0x158198c5fc", "144795264713117": "0x10736f3e64" }, -<<<<<<< HEAD "plotIndexes": [ "0x871564173968", "0x83b0c651819d" ] -======= - "plotIndexes": ["0x871564173968", "0x83b0c651819d"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -56855,7 +57213,9 @@ "plots": { "328184212546799": "0x8fa94b659" }, - "plotIndexes": ["0x12a7b5768e4ef"] + "plotIndexes": [ + "0x12a7b5768e4ef" + ] } }, "depositAllowances": {}, @@ -56998,7 +57358,9 @@ "plots": { "253674859079781": "0x82fa7f933" }, - "plotIndexes": ["0xe6b747dd2865"] + "plotIndexes": [ + "0xe6b747dd2865" + ] } }, "depositAllowances": {}, @@ -57826,7 +58188,9 @@ "plots": { "387060250201237": "0x5e5f65014" }, - "plotIndexes": ["0x160077cb84c95"] + "plotIndexes": [ + "0x160077cb84c95" + ] } }, "depositAllowances": {}, @@ -58075,7 +58439,11 @@ "66098356384040": "0x2a45d1a7", "787251008279513": "0x6758146f9" }, - "plotIndexes": ["0x3bff5d253d22", "0x3c1db90d7128", "0x2cc0028b293d9"] + "plotIndexes": [ + "0x3bff5d253d22", + "0x3c1db90d7128", + "0x2cc0028b293d9" + ] } }, "depositAllowances": {}, @@ -58713,7 +59081,9 @@ "plots": { "848000115350590": "0xa93ad9b" }, - "plotIndexes": ["0x3034069a51c3e"] + "plotIndexes": [ + "0x3034069a51c3e" + ] } }, "depositAllowances": {}, @@ -58978,14 +59348,10 @@ "695950893560494": "0x1b835b45f", "695883029551470": "0xd7b2fa82" }, -<<<<<<< HEAD "plotIndexes": [ "0x278f6b1cab2ae", "0x278e6e4c8196e" ] -======= - "plotIndexes": ["0x278f6b1cab2ae", "0x278e6e4c8196e"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -59396,7 +59762,10 @@ "404072352993016": "0x10fcd79b2", "921793706552858": "0x22060a95e0" }, - "plotIndexes": ["0x16f806d104ef8", "0x3465dd26f6e1a"] + "plotIndexes": [ + "0x16f806d104ef8", + "0x3465dd26f6e1a" + ] } }, "depositAllowances": {}, @@ -59762,7 +60131,9 @@ "plots": { "329343745789140": "0x170915d0d7" }, - "plotIndexes": ["0x12b8950fa0cd4"] + "plotIndexes": [ + "0x12b8950fa0cd4" + ] } }, "depositAllowances": {}, @@ -59893,7 +60264,11 @@ "430683433278432": "0x1a8ce1f20c0", "569175292938999": "0x28245cd3380" }, - "plotIndexes": ["0x3813ffb46e13", "0x187b44d0d1be0", "0x205a973268af7"] + "plotIndexes": [ + "0x3813ffb46e13", + "0x187b44d0d1be0", + "0x205a973268af7" + ] } }, "depositAllowances": {}, @@ -60008,7 +60383,9 @@ "plots": { "729235941744400": "0x303d9fbe9a" }, - "plotIndexes": ["0x2973c7943df10"] + "plotIndexes": [ + "0x2973c7943df10" + ] } }, "depositAllowances": {}, @@ -60541,16 +60918,12 @@ "708321754068675": "0x2dc6bb322", "708948464817453": "0xea7f8970" }, -<<<<<<< HEAD "plotIndexes": [ "0x27858941cd095", "0x284a595117a65", "0x284370289b6c3", "0x284c8ed68d52d" ] -======= - "plotIndexes": ["0x27858941cd095", "0x284a595117a65", "0x284370289b6c3", "0x284c8ed68d52d"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -60750,7 +61123,11 @@ "243000491428745": "0x60a6e3229", "263428207273619": "0x3c325f096" }, - "plotIndexes": ["0x8794a46d222a", "0xdd01f5f8cb89", "0xef9628b7e693"] + "plotIndexes": [ + "0x8794a46d222a", + "0xdd01f5f8cb89", + "0xef9628b7e693" + ] } }, "depositAllowances": {}, @@ -61324,15 +61701,11 @@ "829675447607975": "0x3e253f78e", "829614178933391": "0xd01a83f2b" }, -<<<<<<< HEAD "plotIndexes": [ "0x2f2847a2faffd", "0x2f295de5562a7", "0x2f2879a6f9a8f" ] -======= - "plotIndexes": ["0x2f2847a2faffd", "0x2f295de5562a7", "0x2f2879a6f9a8f"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -61513,16 +61886,12 @@ "709185678005625": "0xe57bffa2", "725599911125635": "0xbc1a3290e" }, -<<<<<<< HEAD "plotIndexes": [ "0x6a9eface450b", "0x6f26700b79af", "0x28500286ad579", "0x293ede4f3a283" ] -======= - "plotIndexes": ["0x6a9eface450b", "0x6f26700b79af", "0x28500286ad579", "0x293ede4f3a283"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -61602,7 +61971,9 @@ "plots": { "311996527622013": "0xdd43ff5a4" }, - "plotIndexes": ["0x11bc25a33377d"] + "plotIndexes": [ + "0x11bc25a33377d" + ] } }, "depositAllowances": {}, @@ -61801,7 +62172,9 @@ "plots": { "133684865469102": "0x4a817c800" }, - "plotIndexes": ["0x7995eeeb0aae"] + "plotIndexes": [ + "0x7995eeeb0aae" + ] } }, "depositAllowances": {}, @@ -62241,7 +62614,9 @@ "plots": { "218964552881591": "0x4d97fc312" }, - "plotIndexes": ["0xc725a86495b7"] + "plotIndexes": [ + "0xc725a86495b7" + ] } }, "depositAllowances": {}, @@ -62462,7 +62837,10 @@ "297373764711688": "0x8e726c41d", "306238279513344": "0x802e946ff" }, - "plotIndexes": ["0x10e75b99c7508", "0x11685a7ddf500"] + "plotIndexes": [ + "0x10e75b99c7508", + "0x11685a7ddf500" + ] } }, "depositAllowances": {}, @@ -63294,7 +63672,10 @@ "370904434739966": "0xa2b0f3c4a", "381131949645927": "0x197dcb0c9c" }, - "plotIndexes": ["0x15155eb140afe", "0x15aa33278a067"] + "plotIndexes": [ + "0x15155eb140afe", + "0x15aa33278a067" + ] } }, "depositAllowances": {}, @@ -63363,7 +63744,10 @@ "327880245815221": "0x1454c7e23b", "929264027457555": "0x31979a095" }, - "plotIndexes": ["0x12a349194a7b5", "0x34d2924425813"] + "plotIndexes": [ + "0x12a349194a7b5", + "0x34d2924425813" + ] } }, "depositAllowances": {}, @@ -64014,7 +64398,9 @@ "plots": { "248278425109276": "0xfc269fef" }, - "plotIndexes": ["0xe1ced355831c"] + "plotIndexes": [ + "0xe1ced355831c" + ] } }, "depositAllowances": {}, @@ -64249,7 +64635,10 @@ "590941291612433": "0xbc7c57386", "590900855644397": "0x65916c769" }, - "plotIndexes": ["0x219753dc50911", "0x2196bd39920ed"] + "plotIndexes": [ + "0x219753dc50911", + "0x2196bd39920ed" + ] } }, "depositAllowances": {}, @@ -64311,7 +64700,9 @@ "plots": { "181299068052561": "0x77dd252c0" }, - "plotIndexes": ["0xa4e3fa8ca451"] + "plotIndexes": [ + "0xa4e3fa8ca451" + ] } }, "depositAllowances": {}, @@ -65225,7 +65616,9 @@ "plots": { "92833059143567": "0xee6b28000" }, - "plotIndexes": ["0x546e61837f8f"] + "plotIndexes": [ + "0x546e61837f8f" + ] } }, "depositAllowances": {}, @@ -65534,7 +65927,9 @@ "plots": { "709654240841564": "0x1b63fc" }, - "plotIndexes": ["0x2856d40f04f5c"] + "plotIndexes": [ + "0x2856d40f04f5c" + ] } }, "depositAllowances": {}, @@ -66161,7 +66556,10 @@ "490205291129867": "0x939d0bb27", "902789663460379": "0xef928c81" }, - "plotIndexes": ["0x1bdd6d03eac0b", "0x3351519328c1b"] + "plotIndexes": [ + "0x1bdd6d03eac0b", + "0x3351519328c1b" + ] } }, "depositAllowances": {}, @@ -66264,7 +66662,10 @@ "647775542417444": "0x1522c39b4", "646576510127020": "0x970d4100" }, - "plotIndexes": ["0x24d25ff199824", "0x24c0ed334cbac"] + "plotIndexes": [ + "0x24d25ff199824", + "0x24c0ed334cbac" + ] } }, "depositAllowances": {}, @@ -66518,7 +66919,10 @@ "295492903609864": "0x17b4597e1b", "656467053262897": "0xaf78288c0" }, - "plotIndexes": ["0x10cbfcd8da608", "0x2550da5843831"] + "plotIndexes": [ + "0x10cbfcd8da608", + "0x2550da5843831" + ] } }, "depositAllowances": {}, @@ -66857,7 +67261,9 @@ "plots": { "311801867615122": "0x9f869e026" }, - "plotIndexes": ["0x11b95078f3b92"] + "plotIndexes": [ + "0x11b95078f3b92" + ] } }, "depositAllowances": {}, @@ -66927,7 +67333,9 @@ "plots": { "469185727281112": "0x1255cab2af" }, - "plotIndexes": ["0x1aab8d09bb7d8"] + "plotIndexes": [ + "0x1aab8d09bb7d8" + ] } }, "depositAllowances": {}, @@ -66983,7 +67391,9 @@ "plots": { "469169645692260": "0x16a78d4ea" }, - "plotIndexes": ["0x1aab512122564"] + "plotIndexes": [ + "0x1aab512122564" + ] } }, "depositAllowances": {}, @@ -67258,7 +67668,9 @@ "plots": { "387342442778997": "0x2c15c66fd" }, - "plotIndexes": ["0x1604930b55175"] + "plotIndexes": [ + "0x1604930b55175" + ] } }, "depositAllowances": {}, @@ -67797,7 +68209,9 @@ "plots": { "94333693372636": "0x27bc86aaa" }, - "plotIndexes": ["0x55cbc648a8dc"] + "plotIndexes": [ + "0x55cbc648a8dc" + ] } }, "depositAllowances": {}, @@ -68574,7 +68988,9 @@ "plots": { "927634141843427": "0x544f4bec04" }, - "plotIndexes": ["0x34bada7818fe3"] + "plotIndexes": [ + "0x34bada7818fe3" + ] } }, "depositAllowances": {}, @@ -68860,7 +69276,9 @@ "plots": { "456659655291143": "0x190f1e8c0" }, - "plotIndexes": ["0x19f545c897107"] + "plotIndexes": [ + "0x19f545c897107" + ] } }, "depositAllowances": {}, @@ -69447,7 +69865,9 @@ "plots": { "659295439819586": "0x11c22cb3" }, - "plotIndexes": ["0x257a02e7e1342"] + "plotIndexes": [ + "0x257a02e7e1342" + ] } }, "depositAllowances": {}, @@ -69564,14 +69984,10 @@ "698477241949083": "0xda7801c1", "702368636779868": "0xe28f6a1d" }, -<<<<<<< HEAD "plotIndexes": [ "0x27b42e7e3db9b", "0x27eccf118bd5c" ] -======= - "plotIndexes": ["0x27b42e7e3db9b", "0x27eccf118bd5c"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -69916,7 +70332,11 @@ "289572383709939": "0x61656dbde", "290871125843437": "0x2dd7c69135" }, - "plotIndexes": ["0xf2d25b338de0", "0x1075d53115af3", "0x1088bb6219ded"] + "plotIndexes": [ + "0xf2d25b338de0", + "0x1075d53115af3", + "0x1088bb6219ded" + ] } }, "depositAllowances": {}, @@ -70061,7 +70481,12 @@ "910693748575674": "0x3cf5c57f0", "892260306698253": "0x48514579d" }, - "plotIndexes": ["0x29246ba143b23", "0x2d93f8da2556a", "0x33c4569620dba", "0x32b818aa0c00d"] + "plotIndexes": [ + "0x29246ba143b23", + "0x2d93f8da2556a", + "0x33c4569620dba", + "0x32b818aa0c00d" + ] } }, "depositAllowances": {}, @@ -70347,7 +70772,9 @@ "plots": { "828677403443205": "0x4b2e9e60" }, - "plotIndexes": ["0x2f1ad7e440005"] + "plotIndexes": [ + "0x2f1ad7e440005" + ] } }, "depositAllowances": {}, @@ -70430,7 +70857,9 @@ "plots": { "711381608801232": "0x35417206" }, - "plotIndexes": ["0x286ff7017a3d0"] + "plotIndexes": [ + "0x286ff7017a3d0" + ] } }, "depositAllowances": {}, @@ -71200,7 +71629,12 @@ "646579044355244": "0x8c06fd11", "695601083772865": "0x57eebe00" }, - "plotIndexes": ["0x55bf5367e368", "0x244258220981f", "0x24c0f6a420cac", "0x278a53f80efc1"] + "plotIndexes": [ + "0x55bf5367e368", + "0x244258220981f", + "0x24c0f6a420cac", + "0x278a53f80efc1" + ] } }, "depositAllowances": {}, @@ -71265,7 +71699,9 @@ "plots": { "334136741601291": "0x15" }, - "plotIndexes": ["0x12fe545ca200b"] + "plotIndexes": [ + "0x12fe545ca200b" + ] } }, "depositAllowances": {}, @@ -71401,7 +71837,9 @@ "plots": { "692839388798357": "0x64d3534ea" }, - "plotIndexes": ["0x276223da7dd95"] + "plotIndexes": [ + "0x276223da7dd95" + ] } }, "depositAllowances": {}, @@ -72034,7 +72472,9 @@ "plots": { "458151359406665": "0xbb3d3ffcf" }, - "plotIndexes": ["0x1a0afad07e249"] + "plotIndexes": [ + "0x1a0afad07e249" + ] } }, "depositAllowances": {}, @@ -72105,7 +72545,12 @@ "973088659433490": "0xd062d91d3", "980412293238477": "0x11cc10da08" }, - "plotIndexes": ["0x313ee99f38ba6", "0x35b4079d3c464", "0x37504dbe16812", "0x37bae0678cecd"] + "plotIndexes": [ + "0x313ee99f38ba6", + "0x35b4079d3c464", + "0x37504dbe16812", + "0x37bae0678cecd" + ] } }, "depositAllowances": {}, @@ -73071,7 +73516,9 @@ "plots": { "464596886728232": "0xfe414816" }, - "plotIndexes": ["0x1a68c6465ae28"] + "plotIndexes": [ + "0x1a68c6465ae28" + ] } }, "depositAllowances": {}, @@ -73137,7 +73584,10 @@ "392885437378366": "0xe6b95430d", "469449946056586": "0x1941d80d8" }, - "plotIndexes": ["0x16553c4eeaf3e", "0x1aaf65546478a"] + "plotIndexes": [ + "0x16553c4eeaf3e", + "0x1aaf65546478a" + ] } }, "depositAllowances": {}, @@ -73252,7 +73702,10 @@ "61549350441365": "0x171363d0", "829018632524342": "0xff9620235" }, - "plotIndexes": ["0x37fa932b5195", "0x2f1fcf11a9236"] + "plotIndexes": [ + "0x37fa932b5195", + "0x2f1fcf11a9236" + ] } }, "depositAllowances": {}, @@ -73663,7 +74116,9 @@ "plots": { "401293601260766": "0x3c1498aa1" }, - "plotIndexes": ["0x16cf9728dc4de"] + "plotIndexes": [ + "0x16cf9728dc4de" + ] } }, "depositAllowances": {}, @@ -73908,7 +74363,9 @@ "plots": { "828631979817405": "0xf5704851" }, - "plotIndexes": ["0x2f1a2eace79bd"] + "plotIndexes": [ + "0x2f1a2eace79bd" + ] } }, "depositAllowances": {}, @@ -74100,7 +74557,12 @@ "190556859399088": "0x6cd3360200", "264089423115184": "0x4d52b3d900" }, - "plotIndexes": ["0x6db51ab746e8", "0xa8d1f07c89af", "0xad4f79e9fbb0", "0xf0301c40f3b0"] + "plotIndexes": [ + "0x6db51ab746e8", + "0xa8d1f07c89af", + "0xad4f79e9fbb0", + "0xf0301c40f3b0" + ] } }, "depositAllowances": {}, @@ -74653,7 +75115,9 @@ "plots": { "732098380453278": "0x6b95281" }, - "plotIndexes": ["0x299d6efe8559e"] + "plotIndexes": [ + "0x299d6efe8559e" + ] } }, "depositAllowances": {}, @@ -74746,7 +75210,10 @@ "319877964011072": "0x1308b3befb", "828245820742732": "0x14a57eee0" }, - "plotIndexes": ["0x122ed646a9640", "0x2f14901ee9c4c"] + "plotIndexes": [ + "0x122ed646a9640", + "0x2f14901ee9c4c" + ] } }, "depositAllowances": {}, @@ -75045,7 +75512,9 @@ "plots": { "556468241468166": "0x26472b8dc" }, - "plotIndexes": ["0x1fa1adbdc8b06"] + "plotIndexes": [ + "0x1fa1adbdc8b06" + ] } }, "depositAllowances": {}, @@ -75124,7 +75593,10 @@ "103707589567835": "0xd68e9a1328", "369436700764088": "0xfcd387f0df" }, - "plotIndexes": ["0x5e524e09655b", "0x150002f50e7b8"] + "plotIndexes": [ + "0x5e524e09655b", + "0x150002f50e7b8" + ] } }, "depositAllowances": {}, @@ -76279,7 +76751,11 @@ "152069659197493": "0x815c5a940", "296942140597416": "0x714012bb3" }, - "plotIndexes": ["0x54982ca8b8ee", "0x8a4e7a048035", "0x10e113acf24a8"] + "plotIndexes": [ + "0x54982ca8b8ee", + "0x8a4e7a048035", + "0x10e113acf24a8" + ] } }, "depositAllowances": {}, @@ -76377,15 +76853,11 @@ "333947098307518": "0x267c899642", "360355776306507": "0x1029c1234b" }, -<<<<<<< HEAD "plotIndexes": [ "0x134d087e62376", "0x12fb91e2b1bbe", "0x147bdde0a1d4b" ] -======= - "plotIndexes": ["0x134d087e62376", "0x12fb91e2b1bbe", "0x147bdde0a1d4b"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -77391,7 +77863,10 @@ "136889611492596": "0x1dcd65000", "204495039904762": "0x28c94b62c" }, - "plotIndexes": ["0x7c8018aa9cf4", "0xb9fcb6363bfa"] + "plotIndexes": [ + "0x7c8018aa9cf4", + "0xb9fcb6363bfa" + ] } }, "depositAllowances": {}, @@ -77527,7 +78002,10 @@ "236275109596786": "0x117e94ab8f", "248750069836807": "0x3e47244ff" }, - "plotIndexes": ["0xd6e415fa0e72", "0xe23ca38cec07"] + "plotIndexes": [ + "0xd6e415fa0e72", + "0xe23ca38cec07" + ] } }, "depositAllowances": {}, @@ -77662,7 +78140,9 @@ "plots": { "73813424150780": "0x18c6e7a1de" }, - "plotIndexes": ["0x432206ed18fc"] + "plotIndexes": [ + "0x432206ed18fc" + ] } }, "depositAllowances": {}, @@ -77994,7 +78474,9 @@ "plots": { "643414473152684": "0x106e3ce00" }, - "plotIndexes": ["0x2492e9b1d98ac"] + "plotIndexes": [ + "0x2492e9b1d98ac" + ] } }, "depositAllowances": {}, @@ -78131,7 +78613,9 @@ "plots": { "701404861672440": "0xf6711b3" }, - "plotIndexes": ["0x27dec8b9fabf8"] + "plotIndexes": [ + "0x27dec8b9fabf8" + ] } }, "depositAllowances": {}, @@ -78437,7 +78921,9 @@ "plots": { "384159922068708": "0xb77faa347" }, - "plotIndexes": ["0x15d6433b11ce4"] + "plotIndexes": [ + "0x15d6433b11ce4" + ] } }, "depositAllowances": {}, @@ -79475,7 +79961,9 @@ "plots": { "335517175308668": "0x2a93eefab" }, - "plotIndexes": ["0x13126ae0ce17c"] + "plotIndexes": [ + "0x13126ae0ce17c" + ] } }, "depositAllowances": {}, @@ -79524,7 +80012,9 @@ "plots": { "548196933854003": "0x893d5ca00" }, - "plotIndexes": ["0x1f2950b826333"] + "plotIndexes": [ + "0x1f2950b826333" + ] } }, "depositAllowances": {}, @@ -79691,7 +80181,9 @@ "plots": { "61619455558487": "0x3ac6f97" }, - "plotIndexes": ["0x380ae5c28357"] + "plotIndexes": [ + "0x380ae5c28357" + ] } }, "depositAllowances": {}, @@ -79842,7 +80334,9 @@ "plots": { "148192829238946": "0x770c26241" }, - "plotIndexes": ["0x86c7d4f1eea2"] + "plotIndexes": [ + "0x86c7d4f1eea2" + ] } }, "depositAllowances": {}, @@ -80110,7 +80604,10 @@ "81489555435321": "0x12812ff83", "921019116580415": "0x2abf2f231" }, - "plotIndexes": ["0x4a1d44012f39", "0x345a979466e3f"] + "plotIndexes": [ + "0x4a1d44012f39", + "0x345a979466e3f" + ] } }, "depositAllowances": {}, @@ -80861,15 +81358,11 @@ "401185145968469": "0xc6db22900", "401238525968469": "0xc6db22900" }, -<<<<<<< HEAD "plotIndexes": [ "0x15d51d156381c", "0x16ce0321d5755", "0x16cec9fcf8055" ] -======= - "plotIndexes": ["0x15d51d156381c", "0x16ce0321d5755", "0x16cec9fcf8055"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -80988,7 +81481,9 @@ "plots": { "401442190164996": "0x24529a518" }, - "plotIndexes": ["0x16d1c0b248404"] + "plotIndexes": [ + "0x16d1c0b248404" + ] } }, "depositAllowances": {}, @@ -81047,7 +81542,10 @@ "170714896213600": "0x3992286b6", "705261555332818": "0x1e674d91b" }, - "plotIndexes": ["0x9b43a8bf2660", "0x2816e807ab6d2"] + "plotIndexes": [ + "0x9b43a8bf2660", + "0x2816e807ab6d2" + ] } }, "depositAllowances": {}, @@ -81207,7 +81705,9 @@ "plots": { "685794219209263": "0x9a6029c9d" }, - "plotIndexes": ["0x26fb9e8d3322f"] + "plotIndexes": [ + "0x26fb9e8d3322f" + ] } }, "depositAllowances": {}, @@ -81392,7 +81892,9 @@ "plots": { "325881466662025": "0x200f4f955" }, - "plotIndexes": ["0x12863310f2c89"] + "plotIndexes": [ + "0x12863310f2c89" + ] } }, "depositAllowances": {}, @@ -81459,7 +81961,9 @@ "plots": { "705875361414229": "0xcb785ec" }, - "plotIndexes": ["0x281fd6a2c3c55"] + "plotIndexes": [ + "0x281fd6a2c3c55" + ] } }, "depositAllowances": {}, @@ -81653,15 +82157,11 @@ "801292506582851": "0x415dcc5332", "800295495177172": "0xe82282bb6f" }, -<<<<<<< HEAD "plotIndexes": [ "0x2d6f69f58fc8b", "0x2d8c573374f43", "0x2d7dd50b493d4" ] -======= - "plotIndexes": ["0x2d6f69f58fc8b", "0x2d8c573374f43", "0x2d7dd50b493d4"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -81760,7 +82260,9 @@ "plots": { "115104358803162": "0x92a9253268" }, - "plotIndexes": ["0x68afd26b26da"] + "plotIndexes": [ + "0x68afd26b26da" + ] } }, "depositAllowances": {}, @@ -81890,7 +82392,10 @@ "235588719194871": "0x4172637b72", "372208194310817": "0x3489245cb8" }, - "plotIndexes": ["0xd64445ebb2f7", "0x15285793452a1"] + "plotIndexes": [ + "0xd64445ebb2f7", + "0x15285793452a1" + ] } }, "depositAllowances": {}, @@ -82128,7 +82633,10 @@ "733502153649619": "0x534c175a4", "735061538500731": "0xd62aec66e" }, - "plotIndexes": ["0x29b1dc74f6dd3", "0x29c88d9e3f07b"] + "plotIndexes": [ + "0x29b1dc74f6dd3", + "0x29c88d9e3f07b" + ] } }, "depositAllowances": {}, @@ -82346,16 +82854,12 @@ "211201155017630": "0x1794d04a36", "260829150583722": "0x15074a803f" }, -<<<<<<< HEAD "plotIndexes": [ "0xbedfb81977cb", "0xbf8743e9c7b8", "0xc01619d22b9e", "0xed3904de1baa" ] -======= - "plotIndexes": ["0xbedfb81977cb", "0xbf8743e9c7b8", "0xc01619d22b9e", "0xed3904de1baa"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -82399,7 +82903,9 @@ "plots": { "264511318157528": "0x840d16440" }, - "plotIndexes": ["0xf092572868d8"] + "plotIndexes": [ + "0xf092572868d8" + ] } }, "depositAllowances": {}, @@ -82753,14 +83259,10 @@ "288295221343358": "0x152f96cd2b", "290682958511741": "0x2bcfa59f70" }, -<<<<<<< HEAD "plotIndexes": [ "0x10633f642347e", "0x1085fe67bfe7d" ] -======= - "plotIndexes": ["0x10633f642347e", "0x1085fe67bfe7d"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -82822,7 +83324,10 @@ "94255248987404": "0x979212e6", "708924934892507": "0x87a98ab4" }, - "plotIndexes": ["0x55b982a2550c", "0x284c372eaabdb"] + "plotIndexes": [ + "0x55b982a2550c", + "0x284c372eaabdb" + ] } }, "depositAllowances": {}, @@ -83458,7 +83963,9 @@ "plots": { "255052991465844": "0x3171da1b50" }, - "plotIndexes": ["0xe7f826f48974"] + "plotIndexes": [ + "0xe7f826f48974" + ] } }, "depositAllowances": {}, @@ -83908,7 +84415,11 @@ "708304635318675": "0x3e4143379", "781624214558443": "0xcf02ed9cc" }, - "plotIndexes": ["0x380466c80e22", "0x28433062e5193", "0x2c6e211a816eb"] + "plotIndexes": [ + "0x380466c80e22", + "0x28433062e5193", + "0x2c6e211a816eb" + ] } }, "depositAllowances": {}, @@ -84244,7 +84755,9 @@ "plots": { "670420999163189": "0x4ac8eba59" }, - "plotIndexes": ["0x261be8d814d35"] + "plotIndexes": [ + "0x261be8d814d35" + ] } }, "depositAllowances": {}, @@ -84706,7 +85219,9 @@ "plots": { "684710715486316": "0xe8d0e19e9" }, - "plotIndexes": ["0x26ebda2f8706c"] + "plotIndexes": [ + "0x26ebda2f8706c" + ] } }, "depositAllowances": {}, @@ -85008,7 +85523,9 @@ "plots": { "478564758595291": "0x3ba6b5c2000" }, - "plotIndexes": ["0x1b3408a7026db"] + "plotIndexes": [ + "0x1b3408a7026db" + ] } }, "depositAllowances": {}, @@ -85237,7 +85754,10 @@ "145860635343358": "0x154ac6daa7", "137553610896101": "0x160fbdf8e8" }, - "plotIndexes": ["0x84a8d35b39fe", "0x7d1ab21d72e5"] + "plotIndexes": [ + "0x84a8d35b39fe", + "0x7d1ab21d72e5" + ] } }, "depositAllowances": {}, @@ -85294,7 +85814,10 @@ "135308874736610": "0x5f294c57a", "227353999537909": "0x144ec78167" }, - "plotIndexes": ["0x7b100d69e3e2", "0xcec6fa6176f5"] + "plotIndexes": [ + "0x7b100d69e3e2", + "0xcec6fa6176f5" + ] } }, "depositAllowances": {}, @@ -85540,7 +86063,9 @@ "plots": { "828640296186909": "0x8a3b7da10" }, - "plotIndexes": ["0x2f1a4da80341d"] + "plotIndexes": [ + "0x2f1a4da80341d" + ] } }, "depositAllowances": {}, @@ -85982,7 +86507,10 @@ "705315982821399": "0x21", "705202370008774": "0x2c8c546" }, - "plotIndexes": ["0x2817b2c9c4817", "0x28160b8c256c6"] + "plotIndexes": [ + "0x2817b2c9c4817", + "0x28160b8c256c6" + ] } }, "depositAllowances": {}, @@ -86231,7 +86759,9 @@ "plots": { "298138328262598": "0x59d300de2" }, - "plotIndexes": ["0x10f27bd2667c6"] + "plotIndexes": [ + "0x10f27bd2667c6" + ] } }, "depositAllowances": {}, @@ -86331,7 +86861,10 @@ "146134038045227": "0x421c6beb1", "199333964622114": "0x4f1604f66" }, - "plotIndexes": ["0x84e87b6d622b", "0xb54b0e272922"] + "plotIndexes": [ + "0x84e87b6d622b", + "0xb54b0e272922" + ] } }, "depositAllowances": {}, @@ -87104,7 +87637,12 @@ "387201608784840": "0x5d34ee700", "396976528945260": "0x25b4e1b20" }, - "plotIndexes": ["0x55bfce2083a8", "0xfb5b7c74bc48", "0x1602866591bc8", "0x1690c4cfdf06c"] + "plotIndexes": [ + "0x55bfce2083a8", + "0xfb5b7c74bc48", + "0x1602866591bc8", + "0x1690c4cfdf06c" + ] } }, "depositAllowances": {}, @@ -87332,7 +87870,10 @@ "278669782994289": "0x55aad4781", "326721702127025": "0x58d209284" }, - "plotIndexes": ["0xfd72dd6ccd71", "0x12926d2fee5b1"] + "plotIndexes": [ + "0xfd72dd6ccd71", + "0x12926d2fee5b1" + ] } }, "depositAllowances": {}, @@ -87787,7 +88328,10 @@ "279944599116288": "0x151c9889a4", "572188643809800": "0x308c2db845" }, - "plotIndexes": ["0xfe9bae631a00", "0x208670cdbda08"] + "plotIndexes": [ + "0xfe9bae631a00", + "0x208670cdbda08" + ] } }, "depositAllowances": {}, @@ -88491,7 +89035,11 @@ "699431659841853": "0x62ecc445", "710284322742664": "0x2d2dbe0e4" }, - "plotIndexes": ["0x27a02ae1b9c4a", "0x27c211fa1293d", "0x285fff4bf2188"] + "plotIndexes": [ + "0x27a02ae1b9c4a", + "0x27c211fa1293d", + "0x285fff4bf2188" + ] } }, "depositAllowances": {}, @@ -88560,7 +89108,9 @@ "plots": { "373644075768360": "0x67dd948d9" }, - "plotIndexes": ["0x153d3ca689a28"] + "plotIndexes": [ + "0x153d3ca689a28" + ] } }, "depositAllowances": {}, @@ -88732,14 +89282,10 @@ "737811992121289": "0x66873", "737815110802113": "0xbfe19" }, -<<<<<<< HEAD "plotIndexes": [ "0x29f093db38fc9", "0x29f09f796dac1" ] -======= - "plotIndexes": ["0x29f093db38fc9", "0x29f09f796dac1"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -88805,7 +89351,9 @@ "plots": { "469403825976872": "0xabcf89162" }, - "plotIndexes": ["0x1aaeb984db628"] + "plotIndexes": [ + "0x1aaeb984db628" + ] } }, "depositAllowances": {}, @@ -88864,7 +89412,10 @@ "380516409078784": "0x17455a5224", "380616356873764": "0x173e15adc1" }, - "plotIndexes": ["0x15a13e164f400", "0x15a2b26bf4624"] + "plotIndexes": [ + "0x15a13e164f400", + "0x15a2b26bf4624" + ] } }, "depositAllowances": {}, @@ -89169,7 +89720,9 @@ "plots": { "256741264517324": "0x3ebb93be1" }, - "plotIndexes": ["0xe9813bdee8cc"] + "plotIndexes": [ + "0xe9813bdee8cc" + ] } }, "depositAllowances": {}, @@ -89425,7 +89978,10 @@ "77525487677503": "0x142d25f5da3", "513251371472285": "0x33e0a8f0200" }, - "plotIndexes": ["0x46824f27703f", "0x1d2cca5ad559d"] + "plotIndexes": [ + "0x46824f27703f", + "0x1d2cca5ad559d" + ] } }, "depositAllowances": {}, @@ -89547,7 +90103,10 @@ "742761033370593": "0x1d45ba26c", "741235656825477": "0x1e24339ab" }, - "plotIndexes": ["0x2a389878c0be1", "0x2a22660051a85"] + "plotIndexes": [ + "0x2a389878c0be1", + "0x2a22660051a85" + ] } }, "depositAllowances": {}, @@ -89783,7 +90342,9 @@ "plots": { "332990203193622": "0xbcf9279" }, - "plotIndexes": ["0x12eda52c66916"] + "plotIndexes": [ + "0x12eda52c66916" + ] } }, "depositAllowances": {}, @@ -90245,7 +90806,9 @@ "plots": { "821313649896897": "0x2c73d37d8" }, - "plotIndexes": ["0x2eafafc59edc1"] + "plotIndexes": [ + "0x2eafafc59edc1" + ] } }, "depositAllowances": {}, @@ -90512,7 +91075,10 @@ "801754549832839": "0xe74f5786", "830438768262888": "0x20673d01" }, - "plotIndexes": ["0x2d9310723cc87", "0x2f34797ca3ee8"] + "plotIndexes": [ + "0x2d9310723cc87", + "0x2f34797ca3ee8" + ] } }, "depositAllowances": {}, @@ -90764,7 +91330,9 @@ "plots": { "829766411373307": "0x199f6ea65" }, - "plotIndexes": ["0x2f2ab0c324afb"] + "plotIndexes": [ + "0x2f2ab0c324afb" + ] } }, "depositAllowances": {}, @@ -91946,7 +92514,11 @@ "888758709596303": "0x19cb324c04", "888869492849811": "0xc6a61688e7" }, - "plotIndexes": ["0xd031895a560d", "0x32852432d308f", "0x3286c0e5f7c93"] + "plotIndexes": [ + "0xd031895a560d", + "0x32852432d308f", + "0x3286c0e5f7c93" + ] } }, "depositAllowances": {}, @@ -92536,7 +93108,9 @@ "plots": { "411656965874384": "0x74dbee3c1" }, - "plotIndexes": ["0x176665b3862d0"] + "plotIndexes": [ + "0x176665b3862d0" + ] } }, "depositAllowances": {}, @@ -92608,7 +93182,9 @@ "plots": { "406029207697903": "0x1085363900" }, - "plotIndexes": ["0x171480ab179ef"] + "plotIndexes": [ + "0x171480ab179ef" + ] } }, "depositAllowances": {}, @@ -93208,7 +93784,9 @@ "plots": { "241628702712952": "0x69f6bc7" }, - "plotIndexes": ["0xdbc290fe2478"] + "plotIndexes": [ + "0xdbc290fe2478" + ] } }, "depositAllowances": {}, @@ -93296,7 +93874,11 @@ "782094916244052": "0x28440a6952", "851182956547742": "0x3e031b0462" }, - "plotIndexes": ["0x26fe5f0caf52b", "0x2c74fa9a9d254", "0x3062579c38e9e"] + "plotIndexes": [ + "0x26fe5f0caf52b", + "0x2c74fa9a9d254", + "0x3062579c38e9e" + ] } }, "depositAllowances": {}, @@ -93479,7 +94061,9 @@ "plots": { "234609525467517": "0x15f32633c" }, - "plotIndexes": ["0xd560496d297d"] + "plotIndexes": [ + "0xd560496d297d" + ] } }, "depositAllowances": {}, @@ -93548,7 +94132,11 @@ "385914550632686": "0x4bed7066a", "398965539093275": "0x19cb5be8f6" }, - "plotIndexes": ["0x54966e6b2181", "0x15efcbbb440ee", "0x16adb673c3b1b"] + "plotIndexes": [ + "0x54966e6b2181", + "0x15efcbbb440ee", + "0x16adb673c3b1b" + ] } }, "depositAllowances": {}, @@ -93958,7 +94546,9 @@ "plots": { "334551383798769": "0x141510158c" }, - "plotIndexes": ["0x13045d063f3f1"] + "plotIndexes": [ + "0x13045d063f3f1" + ] } }, "depositAllowances": {}, @@ -94113,16 +94703,12 @@ "718009928907392": "0x12a05f200", "718072806907414": "0x2540be400" }, -<<<<<<< HEAD "plotIndexes": [ "0x284f3bfbb8faf", "0x289ca269fa683", "0x28d06b6c1fa80", "0x28d155a941e16" ] -======= - "plotIndexes": ["0x284f3bfbb8faf", "0x289ca269fa683", "0x28d06b6c1fa80", "0x28d155a941e16"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -94193,7 +94779,11 @@ "718102416527369": "0x36a3392aa", "740617842723123": "0x25a9299e4" }, - "plotIndexes": ["0x28488ea9528f1", "0x28d1c3f731009", "0x2a196876e0933"] + "plotIndexes": [ + "0x28488ea9528f1", + "0x28d1c3f731009", + "0x2a196876e0933" + ] } }, "depositAllowances": {}, @@ -94386,7 +94976,9 @@ "plots": { "334951569354608": "0x1db4a9b2c" }, - "plotIndexes": ["0x130a2fd4eef70"] + "plotIndexes": [ + "0x130a2fd4eef70" + ] } }, "depositAllowances": {}, @@ -94489,7 +95081,10 @@ "980115296480441": "0x9428b79a0", "980488900027563": "0xa004f6fc8" }, - "plotIndexes": ["0x37b68e015ecb9", "0x37bbfdc97a4ab"] + "plotIndexes": [ + "0x37b68e015ecb9", + "0x37bbfdc97a4ab" + ] } }, "depositAllowances": {}, @@ -94654,7 +95249,11 @@ "323193045387977": "0xd761da96", "491115786234272": "0xc95df68a6" }, - "plotIndexes": ["0xee7731cca55b", "0x125f13eaa0ac9", "0x1beaacdfb69a0"] + "plotIndexes": [ + "0xee7731cca55b", + "0x125f13eaa0ac9", + "0x1beaacdfb69a0" + ] } }, "depositAllowances": {}, @@ -94921,7 +95520,9 @@ "plots": { "254336564840316": "0x508679421" }, - "plotIndexes": ["0xe7515899c77c"] + "plotIndexes": [ + "0xe7515899c77c" + ] } }, "depositAllowances": {}, @@ -95011,7 +95612,12 @@ "329164100531105": "0xa0b582900", "446842521140999": "0x1665f7820" }, - "plotIndexes": ["0x10e75b85241c8", "0x118aab2578056", "0x12b5f7d48f3a1", "0x19666a1be3f07"] + "plotIndexes": [ + "0x10e75b85241c8", + "0x118aab2578056", + "0x12b5f7d48f3a1", + "0x19666a1be3f07" + ] } }, "depositAllowances": {}, @@ -95060,7 +95666,9 @@ "plots": { "799197247444195": "0x1447f06ff1" }, - "plotIndexes": ["0x2d6dd9c0a14e3"] + "plotIndexes": [ + "0x2d6dd9c0a14e3" + ] } }, "depositAllowances": {}, @@ -95284,7 +95892,10 @@ "381130967987486": "0x3a82eb49", "457667790166306": "0xc3624f80" }, - "plotIndexes": ["0x15aa2f7f5b51e", "0x1a03f160ed922"] + "plotIndexes": [ + "0x15aa2f7f5b51e", + "0x1a03f160ed922" + ] } }, "depositAllowances": {}, @@ -95526,7 +96137,9 @@ "plots": { "404709443708715": "0x63e15a416" }, - "plotIndexes": ["0x17014c2a1272b"] + "plotIndexes": [ + "0x17014c2a1272b" + ] } }, "depositAllowances": {}, @@ -96147,7 +96760,9 @@ "plots": { "608725940757720": "0x1203474a22" }, - "plotIndexes": ["0x229a20d76e4d8"] + "plotIndexes": [ + "0x229a20d76e4d8" + ] } }, "depositAllowances": {}, @@ -96317,7 +96932,9 @@ "plots": { "106067083507977": "0xda0d76992" }, - "plotIndexes": ["0x6077aad5b909"] + "plotIndexes": [ + "0x6077aad5b909" + ] } }, "depositAllowances": {}, @@ -96462,7 +97079,12 @@ "655120353318480": "0xfd81898800", "870719619853486": "0x1010b87c87" }, - "plotIndexes": ["0x6a9f832bf4a1", "0x6aa52700eccb", "0x253d417f1d650", "0x317ea35a3ecae"] + "plotIndexes": [ + "0x6a9f832bf4a1", + "0x6aa52700eccb", + "0x253d417f1d650", + "0x317ea35a3ecae" + ] } }, "depositAllowances": {}, @@ -96525,14 +97147,10 @@ "137268178757187": "0x76a84c01", "137270169498180": "0x164088008" }, -<<<<<<< HEAD "plotIndexes": [ "0x7cd83d08a643", "0x7cd8b3b0f244" ] -======= - "plotIndexes": ["0x7cd83d08a643", "0x7cd8b3b0f244"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -96761,7 +97379,9 @@ "plots": { "820978887802944": "0x3597627c2" }, - "plotIndexes": ["0x2eaad0af9c040"] + "plotIndexes": [ + "0x2eaad0af9c040" + ] } }, "depositAllowances": {}, @@ -97022,7 +97642,10 @@ "222959502580400": "0x1acf798f80", "263791400213507": "0x19cf2cc480" }, - "plotIndexes": ["0xcac7cdf35ab0", "0xefeab8b45c03"] + "plotIndexes": [ + "0xcac7cdf35ab0", + "0xefeab8b45c03" + ] } }, "depositAllowances": {}, @@ -97335,7 +97958,10 @@ "278493127641126": "0x88425eb0", "296972540989531": "0x2540be400" }, - "plotIndexes": ["0xfd49bbf20826", "0x10e184ed0505b"] + "plotIndexes": [ + "0xfd49bbf20826", + "0x10e184ed0505b" + ] } }, "depositAllowances": {}, @@ -97608,7 +98234,9 @@ "plots": { "94418147246757": "0x547b738" }, - "plotIndexes": ["0x55df702082a5"] + "plotIndexes": [ + "0x55df702082a5" + ] } }, "depositAllowances": {}, @@ -97998,7 +98626,12 @@ "801735193101157": "0x481c04922", "824966510240842": "0x1d3e114d7" }, - "plotIndexes": ["0x284e127deb79a", "0x28d189b6577b7", "0x2d92c85638365", "0x2ee4d7bcb644a"] + "plotIndexes": [ + "0x284e127deb79a", + "0x28d189b6577b7", + "0x2d92c85638365", + "0x2ee4d7bcb644a" + ] } }, "depositAllowances": {}, @@ -98177,7 +98810,9 @@ "plots": { "705213144042951": "0x129408482" }, - "plotIndexes": ["0x281633af10dc7"] + "plotIndexes": [ + "0x281633af10dc7" + ] } }, "depositAllowances": {}, @@ -98828,15 +99463,11 @@ "695442580762530": "0xade3d6ac", "695445498152526": "0x5fdcdbdb" }, -<<<<<<< HEAD "plotIndexes": [ "0x27846ec23ea58", "0x2788057fcefa2", "0x2788105e0c64e" ] -======= - "plotIndexes": ["0x27846ec23ea58", "0x2788057fcefa2", "0x2788105e0c64e"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -99100,7 +99731,9 @@ "plots": { "94009622936383": "0xf1d0bd249" }, - "plotIndexes": ["0x5580522e3b3f"] + "plotIndexes": [ + "0x5580522e3b3f" + ] } }, "depositAllowances": {}, @@ -100060,7 +100693,12 @@ "545031168363462": "0x190fefe0a8", "805920059376678": "0x1c2fb1ce2" }, - "plotIndexes": ["0x11a9e021386d1", "0x15c9119f9178d", "0x1efb3f52e8bc6", "0x2dcfae2db4426"] + "plotIndexes": [ + "0x11a9e021386d1", + "0x15c9119f9178d", + "0x1efb3f52e8bc6", + "0x2dcfae2db4426" + ] } }, "depositAllowances": {}, @@ -100301,7 +100939,10 @@ "89618032979953": "0x4be8df", "404170048368756": "0x165069ee00" }, - "plotIndexes": ["0x5181d3056ff1", "0x16f972c297074"] + "plotIndexes": [ + "0x5181d3056ff1", + "0x16f972c297074" + ] } }, "depositAllowances": {}, @@ -100548,7 +101189,9 @@ "plots": { "360447206306604": "0xd14df2a65" }, - "plotIndexes": ["0x147d327b1332c"] + "plotIndexes": [ + "0x147d327b1332c" + ] } }, "depositAllowances": {}, @@ -101021,7 +101664,9 @@ "plots": { "282849931909438": "0x1481aeaa1c" }, - "plotIndexes": ["0x1014021b7593e"] + "plotIndexes": [ + "0x1014021b7593e" + ] } }, "depositAllowances": {}, @@ -101373,7 +102018,9 @@ "plots": { "214906704616754": "0x22a8bac6c9" }, - "plotIndexes": ["0xc374ddc9dd32"] + "plotIndexes": [ + "0xc374ddc9dd32" + ] } }, "depositAllowances": {}, @@ -101652,7 +102299,9 @@ "plots": { "179397038527663": "0x3ece42b12" }, - "plotIndexes": ["0xa32920c154af"] + "plotIndexes": [ + "0xa32920c154af" + ] } }, "depositAllowances": {}, @@ -102282,7 +102931,9 @@ "plots": { "99174348476492": "0x355561dc9" }, - "plotIndexes": ["0x5a32d3cfd04c"] + "plotIndexes": [ + "0x5a32d3cfd04c" + ] } }, "depositAllowances": {}, @@ -102352,15 +103003,11 @@ "707961113586604": "0xa9144a0", "707970847379052": "0x912346a" }, -<<<<<<< HEAD "plotIndexes": [ "0x7ce50b0feaa4", "0x283e30ab0abac", "0x283e54ede8e6c" ] -======= - "plotIndexes": ["0x7ce50b0feaa4", "0x283e30ab0abac", "0x283e54ede8e6c"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -104282,7 +104929,11 @@ "692928162008877": "0x6c17d060", "704933743496239": "0x190a7127f" }, - "plotIndexes": ["0x1ecadef33e486", "0x27636e8f38f2d", "0x281222d5f0c2f"] + "plotIndexes": [ + "0x1ecadef33e486", + "0x27636e8f38f2d", + "0x281222d5f0c2f" + ] } }, "depositAllowances": {}, @@ -104521,7 +105172,9 @@ "plots": { "79182663733943": "0x74d7807" }, - "plotIndexes": ["0x4804268b52b7"] + "plotIndexes": [ + "0x4804268b52b7" + ] } }, "depositAllowances": {}, @@ -104610,7 +105263,12 @@ "325950651461073": "0x345b65872", "372005710267490": "0x1faead5ce" }, - "plotIndexes": ["0xef1a89c9e8a4", "0xffe3c6fef971", "0x128734ccb6dd1", "0x1525654370462"] + "plotIndexes": [ + "0xef1a89c9e8a4", + "0xffe3c6fef971", + "0x128734ccb6dd1", + "0x1525654370462" + ] } }, "depositAllowances": {}, @@ -104686,15 +105344,11 @@ "656343510832897": "0x38b1b6410", "647244453263452": "0xbdb29cec4" }, -<<<<<<< HEAD "plotIndexes": [ "0x1bd3356ba62b6", "0x254f0e1d05701", "0x24caa57b8385c" ] -======= - "plotIndexes": ["0x1bd3356ba62b6", "0x254f0e1d05701", "0x24caa57b8385c"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -104831,15 +105485,11 @@ "710139039155338": "0x27ab7a26", "710156152304688": "0x1ccba5ec" }, -<<<<<<< HEAD "plotIndexes": [ "0x2861ec5144941", "0x285de212b848a", "0x285e21d317430" ] -======= - "plotIndexes": ["0x2861ec5144941", "0x285de212b848a", "0x285e21d317430"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -104918,7 +105568,9 @@ "plots": { "730030468714506": "0x9823da71" }, - "plotIndexes": ["0x297f576c3500a"] + "plotIndexes": [ + "0x297f576c3500a" + ] } }, "depositAllowances": {}, @@ -105121,7 +105773,10 @@ "157852242536462": "0x407f29ed4", "279031628514856": "0x34ada71a30" }, - "plotIndexes": ["0x8f90d6d7e80e", "0xfdc71d194628"] + "plotIndexes": [ + "0x8f90d6d7e80e", + "0xfdc71d194628" + ] } }, "depositAllowances": {}, @@ -105296,7 +105951,9 @@ "plots": { "379502238337329": "0x17b0ec25b5" }, - "plotIndexes": ["0x15927c01b8931"] + "plotIndexes": [ + "0x15927c01b8931" + ] } }, "depositAllowances": {}, @@ -105370,14 +106027,10 @@ "720949940194594": "0x2134c65b4c", "717247201282406": "0x7f9d9bcd" }, -<<<<<<< HEAD "plotIndexes": [ "0x28fb33d160d22", "0x28c5520a60966" ] -======= - "plotIndexes": ["0x28fb33d160d22", "0x28c5520a60966"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -105519,7 +106172,9 @@ "plots": { "832026119943265": "0x7a1f03da5" }, - "plotIndexes": ["0x2f4b92d52b461"] + "plotIndexes": [ + "0x2f4b92d52b461" + ] } }, "depositAllowances": {}, @@ -105707,7 +106362,9 @@ "plots": { "828439202214961": "0x6cbe5353" }, - "plotIndexes": ["0x2f176085db431"] + "plotIndexes": [ + "0x2f176085db431" + ] } }, "depositAllowances": {}, @@ -105809,7 +106466,9 @@ "plots": { "729028199659376": "0x7fe5acf5" }, - "plotIndexes": ["0x2970c1adf3770"] + "plotIndexes": [ + "0x2970c1adf3770" + ] } }, "depositAllowances": {}, @@ -105884,7 +106543,9 @@ "plots": { "251973284998916": "0x1a2ef9c80d" }, - "plotIndexes": ["0xe52b1a252f04"] + "plotIndexes": [ + "0xe52b1a252f04" + ] } }, "depositAllowances": {}, @@ -106304,7 +106965,11 @@ "89653878484825": "0x8d25d08b", "710672212511201": "0x2ce898a" }, - "plotIndexes": ["0x512281b685f6", "0x518a2b946f59", "0x2865a44c749e1"] + "plotIndexes": [ + "0x512281b685f6", + "0x518a2b946f59", + "0x2865a44c749e1" + ] } }, "depositAllowances": {}, @@ -106493,7 +107158,10 @@ "140425724068676": "0x113eb455006", "249261881615002": "0x93d849c886" }, - "plotIndexes": ["0x7fb769668344", "0xe2b3cde8e29a"] + "plotIndexes": [ + "0x7fb769668344", + "0xe2b3cde8e29a" + ] } }, "depositAllowances": {}, @@ -106810,14 +107478,10 @@ "622881743106936": "0x5229851e3", "622863481299524": "0x4407d1134" }, -<<<<<<< HEAD "plotIndexes": [ "0x23681f508f378", "0x2367db48be244" ] -======= - "plotIndexes": ["0x23681f508f378", "0x2367db48be244"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -107015,7 +107679,9 @@ "plots": { "723128115855767": "0x5d21dba00" }, - "plotIndexes": ["0x291ae62790197"] + "plotIndexes": [ + "0x291ae62790197" + ] } }, "depositAllowances": {}, @@ -107202,14 +107868,10 @@ "709027482095723": "0xc23f4", "709010668288003": "0x6586a78" }, -<<<<<<< HEAD "plotIndexes": [ "0x284db5334d06b", "0x284d769067803" ] -======= - "plotIndexes": ["0x284db5334d06b", "0x284d769067803"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -107278,7 +107940,9 @@ "plots": { "639063951103669": "0xdbedae6af" }, - "plotIndexes": ["0x24539abcb56b5"] + "plotIndexes": [ + "0x24539abcb56b5" + ] } }, "depositAllowances": {}, @@ -107769,15 +108433,11 @@ "89999524099760": "0xfdd0f07", "137158194248374": "0x2" }, -<<<<<<< HEAD "plotIndexes": [ "0x51da3b3d234c", "0x51daa5a9f6b0", "0x7cbea1723ab6" ] -======= - "plotIndexes": ["0x51da3b3d234c", "0x51daa5a9f6b0", "0x7cbea1723ab6"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -108213,15 +108873,11 @@ "592978060846134": "0x1b17101f51", "605342348741118": "0x15ca419131" }, -<<<<<<< HEAD "plotIndexes": [ "0x21cdb80d34112", "0x21b4f76ad2436", "0x2268e3faa09fe" ] -======= - "plotIndexes": ["0x21cdb80d34112", "0x21b4f76ad2436", "0x2268e3faa09fe"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -108674,7 +109330,10 @@ "206586140823282": "0x5983ef417", "248705737408140": "0x66d97c79b" }, - "plotIndexes": ["0xbbe3958a0ef2", "0xe2325121be8c"] + "plotIndexes": [ + "0xbbe3958a0ef2", + "0xe2325121be8c" + ] } }, "depositAllowances": {}, @@ -109002,7 +109661,9 @@ "plots": { "743635887035182": "0x2f227180b" }, - "plotIndexes": ["0x2a45538e3932e"] + "plotIndexes": [ + "0x2a45538e3932e" + ] } }, "depositAllowances": {}, @@ -109174,7 +109835,11 @@ "469547339542651": "0x52d45acd", "695587678882559": "0xb2a4b1ba" }, - "plotIndexes": ["0x10f10f32d2f75", "0x1ab0d0260f07b", "0x278a220828aff"] + "plotIndexes": [ + "0x10f10f32d2f75", + "0x1ab0d0260f07b", + "0x278a220828aff" + ] } }, "depositAllowances": {}, @@ -109366,7 +110031,10 @@ "203219196546565": "0x42b01c1e5", "490244915816242": "0x2c7200931" }, - "plotIndexes": ["0xb8d3a8058e05", "0x1bde00a0f6732"] + "plotIndexes": [ + "0xb8d3a8058e05", + "0x1bde00a0f6732" + ] } }, "depositAllowances": {}, @@ -109523,7 +110191,9 @@ "plots": { "137282998912124": "0x49fc317f" }, - "plotIndexes": ["0x7cdbb062447c"] + "plotIndexes": [ + "0x7cdbb062447c" + ] } }, "depositAllowances": {}, @@ -109868,7 +110538,9 @@ "plots": { "693287626526291": "0x1ed92a0bac" }, - "plotIndexes": ["0x2768a9ab4ce53"] + "plotIndexes": [ + "0x2768a9ab4ce53" + ] } }, "depositAllowances": {}, @@ -109934,7 +110606,9 @@ "plots": { "698739099764552": "0xc8543ac" }, - "plotIndexes": ["0x27b7fdfd50748"] + "plotIndexes": [ + "0x27b7fdfd50748" + ] } }, "depositAllowances": {}, @@ -110174,7 +110848,9 @@ "plots": { "869688549762427": "0xca1c1ac8" }, - "plotIndexes": ["0x316fa2512e57b"] + "plotIndexes": [ + "0x316fa2512e57b" + ] } }, "depositAllowances": {}, @@ -110239,7 +110915,9 @@ "plots": { "263964858351502": "0x16" }, - "plotIndexes": ["0xf0131b9d7f8e"] + "plotIndexes": [ + "0xf0131b9d7f8e" + ] } }, "depositAllowances": {}, @@ -110396,7 +111074,10 @@ "343733188268035": "0x4763517cd", "456504925931714": "0x638805c80" }, - "plotIndexes": ["0x1389f9e959003", "0x19f3055f2c8c2"] + "plotIndexes": [ + "0x1389f9e959003", + "0x19f3055f2c8c2" + ] } }, "depositAllowances": {}, @@ -111269,7 +111950,10 @@ "272456937859503": "0xb6317a145", "311901125265412": "0xbb18d0ecc" }, - "plotIndexes": ["0xf7cc52ff69af", "0x11bac23c6c804"] + "plotIndexes": [ + "0xf7cc52ff69af", + "0x11bac23c6c804" + ] } }, "depositAllowances": {}, @@ -111449,14 +112133,10 @@ "696318708480928": "0xd08e90804", "696561749381444": "0x1672e6aa40" }, -<<<<<<< HEAD "plotIndexes": [ "0x2794c5544fba0", "0x27984eba2d144" ] -======= - "plotIndexes": ["0x2794c5544fba0", "0x27984eba2d144"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -111522,7 +112202,12 @@ "743140025593601": "0x7469a33", "747313755152217": "0xfc9feddcd" }, - "plotIndexes": ["0x29f13fb2925ac", "0x2a3e20cadfa2d", "0x2a3e1c53e6f01", "0x2a7ad8ae95f59"] + "plotIndexes": [ + "0x29f13fb2925ac", + "0x2a3e20cadfa2d", + "0x2a3e1c53e6f01", + "0x2a7ad8ae95f59" + ] } }, "depositAllowances": {}, @@ -112468,7 +113153,10 @@ "218985381779657": "0x10aa56688", "281332716579528": "0x26f16d91d" }, - "plotIndexes": ["0xc72a81e458c9", "0xffdee0a2aac8"] + "plotIndexes": [ + "0xc72a81e458c9", + "0xffdee0a2aac8" + ] } }, "depositAllowances": {}, @@ -112759,7 +113447,9 @@ "plots": { "711780404576445": "0x177a494" }, - "plotIndexes": ["0x2875c4a2c40bd"] + "plotIndexes": [ + "0x2875c4a2c40bd" + ] } }, "depositAllowances": {}, @@ -112832,14 +113522,10 @@ "241619965026016": "0x208ce8598", "241187757624377": "0x4e8b2176" }, -<<<<<<< HEAD "plotIndexes": [ "0xdbc0882f9ee0", "0xdb5be69e0c39" ] -======= - "plotIndexes": ["0xdbc0882f9ee0", "0xdb5be69e0c39"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -113066,7 +113752,9 @@ "plots": { "139710719558187": "0x3b9aca00" }, - "plotIndexes": ["0x7f10efcf822b"] + "plotIndexes": [ + "0x7f10efcf822b" + ] } }, "depositAllowances": {}, @@ -113302,7 +113990,9 @@ "plots": { "238731986695824": "0x53cf7ea5a" }, - "plotIndexes": ["0xd9201f437690"] + "plotIndexes": [ + "0xd9201f437690" + ] } }, "depositAllowances": {}, @@ -113904,7 +114594,9 @@ "plots": { "403136003365944": "0x14a141b97" }, - "plotIndexes": ["0x16ea66a46dc38"] + "plotIndexes": [ + "0x16ea66a46dc38" + ] } }, "depositAllowances": {}, @@ -114939,7 +115631,10 @@ "288431410066080": "0x153f30b83b", "302065553585736": "0x2823d73c00" }, - "plotIndexes": ["0x10653abbd32a0", "0x112ba1e053648"] + "plotIndexes": [ + "0x10653abbd32a0", + "0x112ba1e053648" + ] } }, "depositAllowances": {}, @@ -115069,7 +115764,10 @@ "148507402919772": "0x45117da0c", "218918422285195": "0xabd990a2c" }, - "plotIndexes": ["0x871112ff5f5c", "0xc71aeacb8b8b"] + "plotIndexes": [ + "0x871112ff5f5c", + "0xc71aeacb8b8b" + ] } }, "depositAllowances": {}, @@ -115255,7 +115953,10 @@ "235586467178002": "0x863b0ce5", "278219154129515": "0x17497ee220" }, - "plotIndexes": ["0xd643bfb0a612", "0xfd09f1da026b"] + "plotIndexes": [ + "0xd643bfb0a612", + "0xfd09f1da026b" + ] } }, "depositAllowances": {}, @@ -115309,7 +116010,9 @@ "plots": { "708681698730544": "0x187bd4a" }, - "plotIndexes": ["0x2848ad0e96230"] + "plotIndexes": [ + "0x2848ad0e96230" + ] } }, "depositAllowances": {}, @@ -115410,7 +116113,9 @@ "plots": { "403231089271090": "0x2372e67ad" }, - "plotIndexes": ["0x16ebc8dd6a132"] + "plotIndexes": [ + "0x16ebc8dd6a132" + ] } }, "depositAllowances": {}, @@ -116329,7 +117034,10 @@ "828441026627460": "0x1384d7a79", "851852363441414": "0x53b12b16" }, - "plotIndexes": ["0x2f176751c0784", "0x306c155862506"] + "plotIndexes": [ + "0x2f176751c0784", + "0x306c155862506" + ] } }, "depositAllowances": {}, @@ -116555,7 +117263,9 @@ "plots": { "147341296377729": "0x230ffb900" }, - "plotIndexes": ["0x860191a19f81"] + "plotIndexes": [ + "0x860191a19f81" + ] } }, "depositAllowances": {}, @@ -116711,7 +117421,11 @@ "851853767561244": "0x2ef384178c", "866412741469874": "0x1ca0b2eeb5" }, - "plotIndexes": ["0x5464b23fc0c1", "0x306c1a937501c", "0x313ff6faf26b2"] + "plotIndexes": [ + "0x5464b23fc0c1", + "0x306c1a937501c", + "0x313ff6faf26b2" + ] } }, "depositAllowances": {}, @@ -117279,16 +117993,12 @@ "148981530924047": "0x2faf0800", "139712642473749": "0x463f5ea0" }, -<<<<<<< HEAD "plotIndexes": [ "0x877ea0a6f00f", "0x86c4d37fecc5", "0x877f773a940f", "0x7f11626cdf15" ] -======= - "plotIndexes": ["0x877ea0a6f00f", "0x86c4d37fecc5", "0x877f773a940f", "0x7f11626cdf15"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -117590,7 +118300,11 @@ "672694542217095": "0x194f61ec80", "921041054593050": "0xe4c412ccd" }, - "plotIndexes": ["0x263b889121487", "0x263cfe73b2f87", "0x345ae94e1f01a"] + "plotIndexes": [ + "0x263b889121487", + "0x263cfe73b2f87", + "0x345ae94e1f01a" + ] } }, "depositAllowances": {}, @@ -117807,7 +118521,9 @@ "plots": { "280303043396627": "0x3c0420c717" }, - "plotIndexes": ["0xfeef2354c413"] + "plotIndexes": [ + "0xfeef2354c413" + ] } }, "depositAllowances": {}, @@ -117945,7 +118661,10 @@ "231484786889457": "0x180bce4004", "247720715547598": "0x1be4673477" }, - "plotIndexes": ["0xd288c07e52f1", "0xe14cf940f3ce"] + "plotIndexes": [ + "0xd288c07e52f1", + "0xe14cf940f3ce" + ] } }, "depositAllowances": {}, @@ -118390,7 +119109,12 @@ "234464873892798": "0xbdc8964ff", "401945159569837": "0x3398008ae" }, - "plotIndexes": ["0xd01603a335b9", "0xd5fd037da114", "0xd53e9b854bbe", "0x16d91267491ad"] + "plotIndexes": [ + "0xd01603a335b9", + "0xd5fd037da114", + "0xd53e9b854bbe", + "0x16d91267491ad" + ] } }, "depositAllowances": {}, @@ -118577,7 +119301,10 @@ "457409482850195": "0x4e150380", "608867358000586": "0x9c6b0458" }, - "plotIndexes": ["0x1a002f1bdff93", "0x229c2fa96c5ca"] + "plotIndexes": [ + "0x1a002f1bdff93", + "0x229c2fa96c5ca" + ] } }, "depositAllowances": {}, @@ -118905,7 +119632,10 @@ "211331639575030": "0x16d6f4c390", "557962511788124": "0xb76703adf9" }, - "plotIndexes": ["0xc0347b4e81f6", "0x1fb76c550285c"] + "plotIndexes": [ + "0xc0347b4e81f6", + "0x1fb76c550285c" + ] } }, "depositAllowances": {}, @@ -119774,7 +120504,9 @@ "plots": { "698244652210039": "0x25fd161a" }, - "plotIndexes": ["0x27b0cc0761777"] + "plotIndexes": [ + "0x27b0cc0761777" + ] } }, "depositAllowances": {}, @@ -120618,7 +121350,9 @@ "plots": { "326054841301059": "0x2bc80d0c9" }, - "plotIndexes": ["0x1288b8efe3843"] + "plotIndexes": [ + "0x1288b8efe3843" + ] } }, "depositAllowances": {}, @@ -121585,7 +122319,9 @@ "plots": { "709912882840970": "0x13e95d0" }, - "plotIndexes": ["0x285a97934058a"] + "plotIndexes": [ + "0x285a97934058a" + ] } }, "depositAllowances": {}, @@ -122143,7 +122879,9 @@ "plots": { "191324987903919": "0x764e819fc2" }, - "plotIndexes": ["0xae0251f0cfaf"] + "plotIndexes": [ + "0xae0251f0cfaf" + ] } }, "depositAllowances": {}, @@ -122214,7 +122952,9 @@ "plots": { "252900231373433": "0x4" }, - "plotIndexes": ["0xe602ec746279"] + "plotIndexes": [ + "0xe602ec746279" + ] } }, "depositAllowances": {}, @@ -122357,7 +123097,9 @@ "plots": { "225729337993345": "0x8518ab56b" }, - "plotIndexes": ["0xcd4cb501a881"] + "plotIndexes": [ + "0xcd4cb501a881" + ] } }, "depositAllowances": {}, @@ -123028,7 +123770,10 @@ "279023004179684": "0x2020ce944", "790143477817634": "0x43e5e1fd10" }, - "plotIndexes": ["0xfdc51b0c5ce4", "0x2cea19d512122"] + "plotIndexes": [ + "0xfdc51b0c5ce4", + "0x2cea19d512122" + ] } }, "depositAllowances": {}, @@ -123186,7 +123931,10 @@ "285782944886025": "0x97e3327b3", "280795609685940": "0x34b4a6d" }, - "plotIndexes": ["0x103eb06e9ad09", "0xff61d291dfb4"] + "plotIndexes": [ + "0x103eb06e9ad09", + "0xff61d291dfb4" + ] } }, "depositAllowances": {}, @@ -123395,7 +124143,10 @@ "144865920860161": "0x47433537d3", "459450774898205": "0x1de448ae200" }, - "plotIndexes": ["0x83c139c0c001", "0x1a1de383ac61d"] + "plotIndexes": [ + "0x83c139c0c001", + "0x1a1de383ac61d" + ] } }, "depositAllowances": {}, @@ -123555,7 +124306,10 @@ "66084769661335": "0x1a42550c9", "716940669389169": "0x6b655f96" }, - "plotIndexes": ["0x3c1a8f388197", "0x28c0dc1ec8971"] + "plotIndexes": [ + "0x3c1a8f388197", + "0x28c0dc1ec8971" + ] } }, "depositAllowances": {}, @@ -123619,15 +124373,11 @@ "692591545312322": "0x184e7519ba", "693420118956543": "0x12f927103a" }, -<<<<<<< HEAD "plotIndexes": [ "0x2760173384841", "0x275e889086442", "0x276a973ded9ff" ] -======= - "plotIndexes": ["0x2760173384841", "0x275e889086442", "0x276a973ded9ff"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -124018,7 +124768,12 @@ "211429735220614": "0x43795c3bf", "216896549205986": "0x171b83c415" }, - "plotIndexes": ["0xbd08f0d73b48", "0xc0340c040a2e", "0xc04b52434586", "0xc54429c4b7e2"] + "plotIndexes": [ + "0xbd08f0d73b48", + "0xc0340c040a2e", + "0xc04b52434586", + "0xc54429c4b7e2" + ] } }, "depositAllowances": {}, @@ -124201,7 +124956,10 @@ "311772293109387": "0x6e2c72507", "311768851134035": "0xcd286038" }, - "plotIndexes": ["0x11b8e24c8168b", "0x11b8d579fb653"] + "plotIndexes": [ + "0x11b8e24c8168b", + "0x11b8d579fb653" + ] } }, "depositAllowances": {}, @@ -124522,7 +125280,12 @@ "462395957190637": "0x1f41227adc", "717100914282406": "0x220f6279c0" }, - "plotIndexes": ["0x18298e9b7ca7a", "0x19acec3909588", "0x1a48bf2c61fed", "0x28c3311438fa6"] + "plotIndexes": [ + "0x18298e9b7ca7a", + "0x19acec3909588", + "0x1a48bf2c61fed", + "0x28c3311438fa6" + ] } }, "depositAllowances": {}, @@ -124618,7 +125381,9 @@ "plots": { "709239251125570": "0x13cc397e" }, - "plotIndexes": ["0x2850ca19fc542"] + "plotIndexes": [ + "0x2850ca19fc542" + ] } }, "depositAllowances": {}, @@ -125391,7 +126156,9 @@ "plots": { "825251211700977": "0x1739bb24" }, - "plotIndexes": ["0x2ee8fc552eaf1"] + "plotIndexes": [ + "0x2ee8fc552eaf1" + ] } }, "depositAllowances": {}, @@ -125708,7 +126475,9 @@ "plots": { "382861084620606": "0x31fc8639a0" }, - "plotIndexes": ["0x15c35caf2773e"] + "plotIndexes": [ + "0x15c35caf2773e" + ] } }, "depositAllowances": {}, @@ -126117,7 +126886,11 @@ "247709563496291": "0x99f2cfb3", "254358180682653": "0x11d8206e46" }, - "plotIndexes": ["0x6f4e2858fb8f", "0xe14a608a2763", "0xe75661015b9d"] + "plotIndexes": [ + "0x6f4e2858fb8f", + "0xe14a608a2763", + "0xe75661015b9d" + ] } }, "depositAllowances": {}, @@ -147903,15 +148676,11 @@ "245347547726707": "0x6c5d5efb14", "245812970700423": "0x989680" }, -<<<<<<< HEAD "plotIndexes": [ "0xbb436950607b", "0xdf246d6dc373", "0xdf90caccbe87" ] -======= - "plotIndexes": ["0xbb436950607b", "0xdf246d6dc373", "0xdf90caccbe87"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -148330,7 +149099,12 @@ "295229653187803": "0x213b1a43a7", "300448068579740": "0xb16a08d45" }, - "plotIndexes": ["0xb739ada1c288", "0x1003db3fa2965", "0x10c82829afcdb", "0x111418466b19c"] + "plotIndexes": [ + "0xb739ada1c288", + "0x1003db3fa2965", + "0x10c82829afcdb", + "0x111418466b19c" + ] } }, "depositAllowances": {}, @@ -148576,7 +149350,9 @@ "plots": { "708095648692114": "0xa57232e" }, - "plotIndexes": ["0x284025d9b7792"] + "plotIndexes": [ + "0x284025d9b7792" + ] } }, "depositAllowances": {}, @@ -148664,15 +149440,11 @@ "829108707937549": "0x5d1afdd0", "840777772674190": "0xb7bd2a29" }, -<<<<<<< HEAD "plotIndexes": [ "0x2f212471f4add", "0x2f211ea044d0d", "0x2fcaed479ac8e" ] -======= - "plotIndexes": ["0x2f212471f4add", "0x2f211ea044d0d", "0x2fcaed479ac8e"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -149556,7 +150328,9 @@ "plots": { "720678752310386": "0x74773fb60" }, - "plotIndexes": ["0x28f7419075472"] + "plotIndexes": [ + "0x28f7419075472" + ] } }, "depositAllowances": {}, @@ -149659,7 +150433,10 @@ "328320292096710": "0x3034a4a78", "422918905448662": "0x110a26f43a" }, - "plotIndexes": ["0x12a9b06620ac6", "0x180a47b20c8d6"] + "plotIndexes": [ + "0x12a9b06620ac6", + "0x180a47b20c8d6" + ] } }, "depositAllowances": {}, @@ -150090,7 +150867,9 @@ "plots": { "655101870360636": "0x44dab8e14" }, - "plotIndexes": ["0x253cfca46483c"] + "plotIndexes": [ + "0x253cfca46483c" + ] } }, "depositAllowances": {}, @@ -150337,7 +151116,9 @@ "plots": { "980156302633580": "0x1dcb45f54b" }, - "plotIndexes": ["0x37b726c3e2a6c"] + "plotIndexes": [ + "0x37b726c3e2a6c" + ] } }, "depositAllowances": {}, @@ -150398,7 +151179,9 @@ "plots": { "320166210969483": "0x337e15633" }, - "plotIndexes": ["0x1233081461f8b"] + "plotIndexes": [ + "0x1233081461f8b" + ] } }, "depositAllowances": {}, @@ -150716,7 +151499,9 @@ "plots": { "273275464185929": "0xe1000541c" }, - "plotIndexes": ["0xf88ae6f7f849"] + "plotIndexes": [ + "0xf88ae6f7f849" + ] } }, "depositAllowances": {}, @@ -151410,7 +152195,9 @@ "plots": { "279926667638567": "0x42ccca2d9" }, - "plotIndexes": ["0xfe9781967727"] + "plotIndexes": [ + "0xfe9781967727" + ] } }, "depositAllowances": {}, @@ -151461,7 +152248,10 @@ "643036860621235": "0x2890b2", "656209153318480": "0x7fc0535" }, - "plotIndexes": ["0x248d6afa7a1b3", "0x254d1997b5e50"] + "plotIndexes": [ + "0x248d6afa7a1b3", + "0x254d1997b5e50" + ] } }, "depositAllowances": {}, @@ -151726,7 +152516,10 @@ "61638545548819": "0x2540be400", "340032517656384": "0x372ab2a6f" }, - "plotIndexes": ["0x380f579ca613", "0x13541fd6d4f40"] + "plotIndexes": [ + "0x380f579ca613", + "0x13541fd6d4f40" + ] } }, "depositAllowances": {}, @@ -151888,7 +152681,9 @@ "plots": { "113368183061335": "0x111d9831e9d" }, - "plotIndexes": ["0x671b9647bb57"] + "plotIndexes": [ + "0x671b9647bb57" + ] } }, "depositAllowances": {}, @@ -152016,7 +152811,9 @@ "plots": { "591794773294125": "0x5c8d731ce5" }, - "plotIndexes": ["0x21a3bf53dfc2d"] + "plotIndexes": [ + "0x21a3bf53dfc2d" + ] } }, "depositAllowances": {}, @@ -152219,7 +153016,10 @@ "262274378621214": "0x1f7961f1a", "724808689235963": "0x9f14fd926" }, - "plotIndexes": ["0xee89832be11e", "0x29335ac73b7fb"] + "plotIndexes": [ + "0xee89832be11e", + "0x29335ac73b7fb" + ] } }, "depositAllowances": {}, @@ -152345,7 +153145,11 @@ "705338180288143": "0xcaa501b", "705711760021846": "0x2cde198e" }, - "plotIndexes": ["0x9b3a95002a28", "0x2818057aebe8f", "0x281d752c51956"] + "plotIndexes": [ + "0x9b3a95002a28", + "0x2818057aebe8f", + "0x281d752c51956" + ] } }, "depositAllowances": {}, @@ -152431,7 +153235,10 @@ "705090818684110": "0xf0724a2e", "705505883321902": "0x15fd2eb85" }, - "plotIndexes": ["0x28146bfc834ce", "0x281a7638ff62e"] + "plotIndexes": [ + "0x28146bfc834ce", + "0x281a7638ff62e" + ] } }, "depositAllowances": {}, @@ -153100,7 +153907,12 @@ "315703398038150": "0x5c33e7739", "464439664065321": "0x31df7d4f2" }, - "plotIndexes": ["0xe16bd98e9743", "0x113e9eb37e24e", "0x11f216ce4fa86", "0x1a667c9323b29"] + "plotIndexes": [ + "0xe16bd98e9743", + "0x113e9eb37e24e", + "0x11f216ce4fa86", + "0x1a667c9323b29" + ] } }, "depositAllowances": {}, @@ -153566,7 +154378,12 @@ "931679348366271": "0x1c62111ed", "973194749444164": "0x370881b70" }, - "plotIndexes": ["0x2f1bfb9406b44", "0x2f2aa57f317ce", "0x34f5b809a9bbf", "0x3751d8f568044"] + "plotIndexes": [ + "0x2f1bfb9406b44", + "0x2f2aa57f317ce", + "0x34f5b809a9bbf", + "0x3751d8f568044" + ] } }, "depositAllowances": {}, @@ -153755,7 +154572,9 @@ "plots": { "640869029506791": "0x44285177f6" }, - "plotIndexes": ["0x246ddf2d9eee7"] + "plotIndexes": [ + "0x246ddf2d9eee7" + ] } }, "depositAllowances": {}, @@ -154042,15 +154861,11 @@ "102738799520478": "0x19c1efa6b", "339313664142821": "0x2deaaae52f" }, -<<<<<<< HEAD "plotIndexes": [ "0x60a4670073d0", "0x5d70bda66ade", "0x1349a9e6b2de5" ] -======= - "plotIndexes": ["0x60a4670073d0", "0x5d70bda66ade", "0x1349a9e6b2de5"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -154215,7 +155030,10 @@ "648452995559057": "0x8da7774400", "707566423717109": "0xa70707860" }, - "plotIndexes": ["0x24dc3ba742e91", "0x28387255734f5"] + "plotIndexes": [ + "0x24dc3ba742e91", + "0x28387255734f5" + ] } }, "depositAllowances": {}, @@ -154907,7 +155725,9 @@ "plots": { "662669216662487": "0x2a3cba4e76" }, - "plotIndexes": ["0x25ab1b34343d7"] + "plotIndexes": [ + "0x25ab1b34343d7" + ] } }, "depositAllowances": {}, @@ -155151,7 +155971,9 @@ "plots": { "603440410903505": "0x111276d744" }, - "plotIndexes": ["0x224d36b55c3d1"] + "plotIndexes": [ + "0x224d36b55c3d1" + ] } }, "depositAllowances": {}, @@ -155725,7 +156547,10 @@ "934349602396467": "0x2ae14cdef", "934274510665946": "0x117bd0e059" }, - "plotIndexes": ["0x351c938259933", "0x351b7bc54b8da"] + "plotIndexes": [ + "0x351c938259933", + "0x351b7bc54b8da" + ] } }, "depositAllowances": {}, @@ -155861,7 +156686,9 @@ "plots": { "282808447027022": "0x39b09c2ee" }, - "plotIndexes": ["0x101367906474e"] + "plotIndexes": [ + "0x101367906474e" + ] } }, "depositAllowances": {}, @@ -156043,16 +156870,12 @@ "293528031483784": "0x119bef6b34", "293611040837832": "0x9ec6ca5f4" }, -<<<<<<< HEAD "plotIndexes": [ "0x108588986f11e", "0x10b2adaa985a0", "0x10af6520c5788", "0x10b09a5ca90c8" ] -======= - "plotIndexes": ["0x108588986f11e", "0x10b2adaa985a0", "0x10af6520c5788", "0x10b09a5ca90c8"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -156197,7 +157020,9 @@ "plots": { "711149302815635": "0x417c54c2" }, - "plotIndexes": ["0x286c959939b93"] + "plotIndexes": [ + "0x286c959939b93" + ] } }, "depositAllowances": {}, @@ -156404,7 +157229,9 @@ "plots": { "704775356837324": "0xc5261b20" }, - "plotIndexes": ["0x280fd4cca6dcc"] + "plotIndexes": [ + "0x280fd4cca6dcc" + ] } }, "depositAllowances": {}, @@ -157148,7 +157975,10 @@ "102525075901902": "0x536bf265", "741220479376083": "0xf7714a49" }, - "plotIndexes": ["0x5d3efabacdce", "0x2a222d75f9ad3"] + "plotIndexes": [ + "0x5d3efabacdce", + "0x2a222d75f9ad3" + ] } }, "depositAllowances": {}, @@ -157741,7 +158571,10 @@ "526408170375278": "0x198345a9d", "640236298144951": "0xe1b3986e" }, - "plotIndexes": ["0x1dec3f400886e", "0x2464aa11f8cb7"] + "plotIndexes": [ + "0x1dec3f400886e", + "0x2464aa11f8cb7" + ] } }, "depositAllowances": {}, @@ -157901,7 +158734,10 @@ "106125616554651": "0x1f1b535135", "201085473425602": "0x2acf2128e8" }, - "plotIndexes": ["0x60854bad229b", "0xb6e2dc3688c2"] + "plotIndexes": [ + "0x60854bad229b", + "0xb6e2dc3688c2" + ] } }, "depositAllowances": {}, @@ -158533,16 +159369,12 @@ "710594453064805": "0x1aace120", "710926902109899": "0x813bdbbba" }, -<<<<<<< HEAD "plotIndexes": [ "0x286959128b37f", "0x2865176f4ef75", "0x2864829f44c65", "0x28695917626cb" ] -======= - "plotIndexes": ["0x286959128b37f", "0x2865176f4ef75", "0x2864829f44c65", "0x28695917626cb"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -158607,7 +159439,9 @@ "plots": { "705108207674441": "0x16c16fce3" }, - "plotIndexes": ["0x2814acc3f2449"] + "plotIndexes": [ + "0x2814acc3f2449" + ] } }, "depositAllowances": {}, @@ -158680,7 +159514,9 @@ "plots": { "327783999805850": "0x1668b58e1b" }, - "plotIndexes": ["0x12a1e28df199a"] + "plotIndexes": [ + "0x12a1e28df199a" + ] } }, "depositAllowances": {}, @@ -158752,7 +159588,9 @@ "plots": { "647295374853920": "0x25c3a8cb6f" }, - "plotIndexes": ["0x24cb632e20720"] + "plotIndexes": [ + "0x24cb632e20720" + ] } }, "depositAllowances": {}, @@ -159142,7 +159980,9 @@ "plots": { "326745544685621": "0x3678774ef" }, - "plotIndexes": ["0x1292c601f7835"] + "plotIndexes": [ + "0x1292c601f7835" + ] } }, "depositAllowances": {}, @@ -159870,7 +160710,9 @@ "plots": { "107032396306938": "0x4149f8a149d" }, - "plotIndexes": ["0x61586bf619fa"] + "plotIndexes": [ + "0x61586bf619fa" + ] } }, "depositAllowances": {}, @@ -161083,14 +161925,10 @@ "328248386875502": "0x501563640", "328222776335176": "0x5f681d526" }, -<<<<<<< HEAD "plotIndexes": [ "0x12a8a487f706e", "0x12a8451fd9b48" ] -======= - "plotIndexes": ["0x12a8a487f706e", "0x12a8451fd9b48"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -161225,7 +162063,9 @@ "plots": { "326760166518052": "0x4fc22ac80" }, - "plotIndexes": ["0x1292fc7a6ed24"] + "plotIndexes": [ + "0x1292fc7a6ed24" + ] } }, "depositAllowances": {}, @@ -161289,7 +162129,9 @@ "plots": { "825241803481990": "0x21d3ee8d" }, - "plotIndexes": ["0x2ee8d948ce386"] + "plotIndexes": [ + "0x2ee8d948ce386" + ] } }, "depositAllowances": {}, @@ -161385,7 +162227,9 @@ "plots": { "78911996612066": "0x3e7500146c" }, - "plotIndexes": ["0x47c52186cde2"] + "plotIndexes": [ + "0x47c52186cde2" + ] } }, "depositAllowances": {}, @@ -162910,7 +163754,9 @@ "plots": { "668776657908591": "0x391280160" }, - "plotIndexes": ["0x2603fb320f36f"] + "plotIndexes": [ + "0x2603fb320f36f" + ] } }, "depositAllowances": {}, @@ -163098,7 +163944,12 @@ "976425187503346": "0x2639d9e66", "976472218629212": "0x89008bbd3" }, - "plotIndexes": ["0xd2598bf8b619", "0x283fe39f91a7a", "0x3780db4736cf2", "0x37818a7b9745c"] + "plotIndexes": [ + "0xd2598bf8b619", + "0x283fe39f91a7a", + "0x3780db4736cf2", + "0x37818a7b9745c" + ] } }, "depositAllowances": {}, @@ -163342,7 +164193,10 @@ "950025729152542": "0xf734ddd34", "980284276067778": "0x1dcc9ae4bb" }, - "plotIndexes": ["0x3600b1a1d161e", "0x37b90380dcdc2"] + "plotIndexes": [ + "0x3600b1a1d161e", + "0x37b90380dcdc2" + ] } }, "depositAllowances": {}, @@ -163540,7 +164394,9 @@ "plots": { "182105251296260": "0x1261ce36d3" }, - "plotIndexes": ["0xa59faed0b404"] + "plotIndexes": [ + "0xa59faed0b404" + ] } }, "depositAllowances": {}, @@ -164041,7 +164897,9 @@ "plots": { "702615802242518": "0x15b578d71" }, - "plotIndexes": ["0x27f067d4e65d6"] + "plotIndexes": [ + "0x27f067d4e65d6" + ] } }, "depositAllowances": {}, @@ -164311,7 +165169,10 @@ "787303159010592": "0x2f4d6a3d29", "825251601360405": "0xe056a32f8" }, - "plotIndexes": ["0x2cc0c4d1f9520", "0x2ee8fdc8ca615"] + "plotIndexes": [ + "0x2cc0c4d1f9520", + "0x2ee8fdc8ca615" + ] } }, "depositAllowances": {}, @@ -165112,7 +165973,11 @@ "289006048832749": "0x54c280867", "334654600033886": "0x5cd77c729" }, - "plotIndexes": ["0xf9709b2ced30", "0x106d976e0eced", "0x1305dd88eb65e"] + "plotIndexes": [ + "0xf9709b2ced30", + "0x106d976e0eced", + "0x1305dd88eb65e" + ] } }, "depositAllowances": {}, @@ -165182,7 +166047,9 @@ "plots": { "827241244621487": "0xac850a0" }, - "plotIndexes": ["0x2f05f1c877aaf"] + "plotIndexes": [ + "0x2f05f1c877aaf" + ] } }, "depositAllowances": {}, @@ -165338,7 +166205,12 @@ "709406140263143": "0x12a2302ab", "709406120075496": "0x13409ff" }, - "plotIndexes": ["0x281908a3151ff", "0x28174099510fb", "0x285337cfdeae7", "0x285337bc9e0e8"] + "plotIndexes": [ + "0x281908a3151ff", + "0x28174099510fb", + "0x285337cfdeae7", + "0x285337bc9e0e8" + ] } }, "depositAllowances": {}, @@ -165433,7 +166305,9 @@ "plots": { "148224785797347": "0xcf91ef7" }, - "plotIndexes": ["0x86cf45b450e3"] + "plotIndexes": [ + "0x86cf45b450e3" + ] } }, "depositAllowances": {}, @@ -165652,16 +166526,12 @@ "387097363491328": "0x82f9d0d0", "387719729833906": "0x23dd2c83e" }, -<<<<<<< HEAD "plotIndexes": [ "0x15924c32bfd6f", "0x15acf4a7bd3a7", "0x1601020d82a00", "0x160a108c4e7b2" ] -======= - "plotIndexes": ["0x15924c32bfd6f", "0x15acf4a7bd3a7", "0x1601020d82a00", "0x160a108c4e7b2"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -165808,7 +166678,9 @@ "plots": { "328341866253694": "0x2405c488a" }, - "plotIndexes": ["0x12aa00c4d8d7e"] + "plotIndexes": [ + "0x12aa00c4d8d7e" + ] } }, "depositAllowances": {}, @@ -165910,7 +166782,9 @@ "plots": { "202665556232120": "0xd3696699b" }, - "plotIndexes": ["0xb852c07cc7b8"] + "plotIndexes": [ + "0xb852c07cc7b8" + ] } }, "depositAllowances": {}, @@ -166037,7 +166911,9 @@ "plots": { "196975395659177": "0x202f5df4a" }, - "plotIndexes": ["0xb325e87cdda9"] + "plotIndexes": [ + "0xb325e87cdda9" + ] } }, "depositAllowances": {}, @@ -166275,7 +167151,9 @@ "plots": { "451822464754774": "0x4d5c4e7cd" }, - "plotIndexes": ["0x19aee1d836456"] + "plotIndexes": [ + "0x19aee1d836456" + ] } }, "depositAllowances": {}, @@ -166413,7 +167291,9 @@ "plots": { "693155946760383": "0x8b4a9cf54" }, - "plotIndexes": ["0x2766bf1fb08bf"] + "plotIndexes": [ + "0x2766bf1fb08bf" + ] } }, "depositAllowances": {}, @@ -166499,7 +167379,11 @@ "388957611450048": "0x2f1123a4c", "737811867246072": "0x77171d1" }, - "plotIndexes": ["0x1353aba186628", "0x161c140435ec0", "0x29f0936421df8"] + "plotIndexes": [ + "0x1353aba186628", + "0x161c140435ec0", + "0x29f0936421df8" + ] } }, "depositAllowances": {}, @@ -167400,7 +168284,10 @@ "274448643868893": "0x3f49d50e0", "718117083194035": "0x470d26109" }, - "plotIndexes": ["0xf99c0ded48dd", "0x28d1fa9a6a2b3"] + "plotIndexes": [ + "0xf99c0ded48dd", + "0x28d1fa9a6a2b3" + ] } }, "depositAllowances": {}, @@ -167843,7 +168730,9 @@ "plots": { "248733345875495": "0x3e4d365e0" }, - "plotIndexes": ["0xe238beb98627"] + "plotIndexes": [ + "0xe238beb98627" + ] } }, "depositAllowances": {}, @@ -167975,7 +168864,9 @@ "plots": { "491226133332142": "0x16c820d3780" }, - "plotIndexes": ["0x1bec47f2e80ae"] + "plotIndexes": [ + "0x1bec47f2e80ae" + ] } }, "depositAllowances": {}, @@ -168406,7 +169297,11 @@ "326119566604304": "0x7bb2ed513e", "386040742008352": "0x2af5c19651" }, - "plotIndexes": ["0x1295bbb540a5a", "0x1289aa0ebf810", "0x15f1a1d4bd620"] + "plotIndexes": [ + "0x1295bbb540a5a", + "0x1289aa0ebf810", + "0x15f1a1d4bd620" + ] } }, "depositAllowances": {}, @@ -168543,7 +169438,9 @@ "plots": { "313159159514394": "0x4fa72a9bb" }, - "plotIndexes": ["0x11cd10c76051a"] + "plotIndexes": [ + "0x11cd10c76051a" + ] } }, "depositAllowances": {}, @@ -168627,7 +169524,9 @@ "plots": { "634989472785580": "0x453c048827" }, - "plotIndexes": ["0x2418501f624ac"] + "plotIndexes": [ + "0x2418501f624ac" + ] } }, "depositAllowances": {}, @@ -168726,7 +169625,9 @@ "plots": { "828971315411802": "0x162f18307" }, - "plotIndexes": ["0x2f1f1ecc8bb5a"] + "plotIndexes": [ + "0x2f1f1ecc8bb5a" + ] } }, "depositAllowances": {}, @@ -168921,7 +169822,9 @@ "plots": { "458201621062168": "0x9d9bdf07" }, - "plotIndexes": ["0x1a0bb60dbe218"] + "plotIndexes": [ + "0x1a0bb60dbe218" + ] } }, "depositAllowances": {}, @@ -169026,7 +169929,9 @@ "plots": { "275482299353284": "0x2ad00c7599" }, - "plotIndexes": ["0xfa8cb89848c4"] + "plotIndexes": [ + "0xfa8cb89848c4" + ] } }, "depositAllowances": {}, @@ -169134,7 +170039,10 @@ "220964407867656": "0x923c9d210", "262455511024505": "0x13eb635b39" }, - "plotIndexes": ["0xc8f74909f908", "0xeeb3af810379"] + "plotIndexes": [ + "0xc8f74909f908", + "0xeeb3af810379" + ] } }, "depositAllowances": {}, @@ -169450,7 +170358,11 @@ "236255249235083": "0x4347a5312", "328279955533336": "0x9643f1cae" }, - "plotIndexes": ["0xc76ce1014a4a", "0xd6df7634fc8b", "0x12a91a222ee18"] + "plotIndexes": [ + "0xc76ce1014a4a", + "0xd6df7634fc8b", + "0x12a91a222ee18" + ] } }, "depositAllowances": {}, @@ -169654,7 +170566,9 @@ "plots": { "608381722514915": "0x3fd240347b" }, - "plotIndexes": ["0x22951e87555e3"] + "plotIndexes": [ + "0x22951e87555e3" + ] } }, "depositAllowances": {}, @@ -169899,7 +170813,10 @@ "89611453141913": "0xf32d5994", "122079887289765": "0xe2623300" }, - "plotIndexes": ["0x51804ad51399", "0x6f07f050eda5"] + "plotIndexes": [ + "0x51804ad51399", + "0x6f07f050eda5" + ] } }, "depositAllowances": {}, @@ -170324,7 +171241,12 @@ "247129078873496": "0x1045d2895a", "386225253739633": "0xb545cad00" }, - "plotIndexes": ["0xb327eb72bcf3", "0xcf4f12c836c4", "0xe0c338f5bd98", "0x15f45130d6c71"] + "plotIndexes": [ + "0xb327eb72bcf3", + "0xcf4f12c836c4", + "0xe0c338f5bd98", + "0x15f45130d6c71" + ] } }, "depositAllowances": {}, @@ -171110,7 +172032,9 @@ "plots": { "305492349986784": "0x8363d3bcbe" }, - "plotIndexes": ["0x115d7fb00a7e0"] + "plotIndexes": [ + "0x115d7fb00a7e0" + ] } }, "depositAllowances": {}, @@ -171561,7 +172485,9 @@ "plots": { "977044923514850": "0x4b5cf8aea" }, - "plotIndexes": ["0x3789dff987fe2"] + "plotIndexes": [ + "0x3789dff987fe2" + ] } }, "depositAllowances": {}, @@ -172219,7 +173145,10 @@ "203410780104759": "0x2540be400", "380815886869713": "0x1b89b1c4d" }, - "plotIndexes": ["0xb900434aa837", "0x15a599ba964d1"] + "plotIndexes": [ + "0xb900434aa837", + "0x15a599ba964d1" + ] } }, "depositAllowances": {}, @@ -172532,7 +173461,11 @@ "622903877191951": "0x57f28a3", "634541694896879": "0xb1eaabae6" }, - "plotIndexes": ["0x2368717a1455b", "0x236871c54490f", "0x2411cc051caef"] + "plotIndexes": [ + "0x2368717a1455b", + "0x236871c54490f", + "0x2411cc051caef" + ] } }, "depositAllowances": {}, @@ -172848,7 +173781,9 @@ "plots": { "218731907990205": "0x6b9b09fb6" }, - "plotIndexes": ["0xc6ef7dad42bd"] + "plotIndexes": [ + "0xc6ef7dad42bd" + ] } }, "depositAllowances": {}, @@ -172973,7 +173908,9 @@ "plots": { "328718971143710": "0x7782e0e9" }, - "plotIndexes": ["0x12af7d981861e"] + "plotIndexes": [ + "0x12af7d981861e" + ] } }, "depositAllowances": {}, @@ -173272,7 +174209,9 @@ "plots": { "910427813535356": "0x5de04080b" }, - "plotIndexes": ["0x33c077e6b5e7c"] + "plotIndexes": [ + "0x33c077e6b5e7c" + ] } }, "depositAllowances": {}, @@ -174400,15 +175339,11 @@ "456652929979237": "0x190dc1da2", "456639477465638": "0x321d5113f" }, -<<<<<<< HEAD "plotIndexes": [ "0x11294e550d6c3", "0x19f52cbad5365", "0x19f4fa9d84226" ] -======= - "plotIndexes": ["0x11294e550d6c3", "0x19f52cbad5365", "0x19f4fa9d84226"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -174680,7 +175615,9 @@ "plots": { "980012575261775": "0x17ea61656a" }, - "plotIndexes": ["0x37b50f56c844f"] + "plotIndexes": [ + "0x37b50f56c844f" + ] } }, "depositAllowances": {}, @@ -174946,7 +175883,10 @@ "205196258596006": "0xe7dd49845", "203356949474752": "0xc888e3a77" }, - "plotIndexes": ["0xba9ffa1a54a6", "0xb8f3babc6dc0"] + "plotIndexes": [ + "0xba9ffa1a54a6", + "0xb8f3babc6dc0" + ] } }, "depositAllowances": {}, @@ -175045,7 +175985,9 @@ "plots": { "235571347898002": "0x3852de780" }, - "plotIndexes": ["0xd6403a82be92"] + "plotIndexes": [ + "0xd6403a82be92" + ] } }, "depositAllowances": {}, @@ -175230,7 +176172,9 @@ "plots": { "829547866455087": "0xc504833ce" }, - "plotIndexes": ["0x2f27829e77c2f"] + "plotIndexes": [ + "0x2f27829e77c2f" + ] } }, "depositAllowances": {}, @@ -176290,7 +177234,12 @@ "594868490530527": "0xeb0fc800", "720860015864786": "0x201b95cb4" }, - "plotIndexes": ["0x3bfd6e42eb75", "0x5d31b0e7adcf", "0x21d079d10eedf", "0x28f9e4d2dabd2"] + "plotIndexes": [ + "0x3bfd6e42eb75", + "0x5d31b0e7adcf", + "0x21d079d10eedf", + "0x28f9e4d2dabd2" + ] } }, "depositAllowances": {}, @@ -176633,7 +177582,10 @@ "343752351328208": "0x2db56968e1", "344445589997019": "0xde98684d13" }, - "plotIndexes": ["0x138a414caa7d0", "0x139457d0945db"] + "plotIndexes": [ + "0x138a414caa7d0", + "0x139457d0945db" + ] } }, "depositAllowances": {}, @@ -176919,14 +177871,10 @@ "737670614886875": "0x1140a8100", "737670607309781": "0x739e06" }, -<<<<<<< HEAD "plotIndexes": [ "0x29ee852f629db", "0x29ee852828bd5" ] -======= - "plotIndexes": ["0x29ee852f629db", "0x29ee852828bd5"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -177206,7 +178154,9 @@ "plots": { "463738063696356": "0xdfb7e8fa" }, - "plotIndexes": ["0x1a5c46e8e31e4"] + "plotIndexes": [ + "0x1a5c46e8e31e4" + ] } }, "depositAllowances": {}, @@ -177478,7 +178428,11 @@ "383555642858478": "0x265b594a0", "695580562805062": "0x80904f89" }, - "plotIndexes": ["0x1478f522ebf99", "0x15cd781d81bee", "0x278a0785bd146"] + "plotIndexes": [ + "0x1478f522ebf99", + "0x15cd781d81bee", + "0x278a0785bd146" + ] } }, "depositAllowances": {}, @@ -177653,7 +178607,12 @@ "693843930503827": "0x201118", "692183827554964": "0x10fc4195f2" }, - "plotIndexes": ["0x25dabca3e9218", "0x26f67bbb02a2a", "0x2770c2101da93", "0x275899b292294"] + "plotIndexes": [ + "0x25dabca3e9218", + "0x26f67bbb02a2a", + "0x2770c2101da93", + "0x275899b292294" + ] } }, "depositAllowances": {}, @@ -177724,7 +178683,12 @@ "710702630301259": "0xcc19b97", "802852389202760": "0x31f517e1" }, - "plotIndexes": ["0x662497156aee", "0x27b2b82df1271", "0x2866159d1ee4b", "0x2da30a3772b48"] + "plotIndexes": [ + "0x662497156aee", + "0x27b2b82df1271", + "0x2866159d1ee4b", + "0x2da30a3772b48" + ] } }, "depositAllowances": {}, @@ -178016,7 +178980,12 @@ "260818302741512": "0x28694efa2", "284815597094697": "0x386335e8e" }, - "plotIndexes": ["0xccefa661bb91", "0xe168dda82845", "0xed367e492c08", "0x10309cc7dc729"] + "plotIndexes": [ + "0xccefa661bb91", + "0xe168dda82845", + "0xed367e492c08", + "0x10309cc7dc729" + ] } }, "depositAllowances": {}, @@ -178168,7 +179137,9 @@ "plots": { "787506321281609": "0x137675961" }, - "plotIndexes": ["0x2cc3b9a89d249"] + "plotIndexes": [ + "0x2cc3b9a89d249" + ] } }, "depositAllowances": {}, @@ -178243,7 +179214,9 @@ "plots": { "437467889952063": "0x1443f0b3b6" }, - "plotIndexes": ["0x18ddfee2e653f"] + "plotIndexes": [ + "0x18ddfee2e653f" + ] } }, "depositAllowances": {}, @@ -178388,7 +179361,10 @@ "612614464925164": "0x59682f00", "705585044182153": "0x1c6e38b8a" }, - "plotIndexes": ["0x22d2b6b90edec", "0x281b9d1ead489"] + "plotIndexes": [ + "0x22d2b6b90edec", + "0x281b9d1ead489" + ] } }, "depositAllowances": {}, @@ -178802,16 +179778,12 @@ "439359021881225": "0x1dfe452db0", "439352533238997": "0xf4875e49" }, -<<<<<<< HEAD "plotIndexes": [ "0x6d8753bf8533", "0x12af851046707", "0x18f983e6d9789", "0x18f96bbacc4d5" ] -======= - "plotIndexes": ["0x6d8753bf8533", "0x12af851046707", "0x18f983e6d9789", "0x18f96bbacc4d5"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -179580,7 +180552,10 @@ "179457356901067": "0xa33cd10300", "517220616160053": "0x22f0a8421b0" }, - "plotIndexes": ["0xa3372c02aacb", "0x1d668cf18c335"] + "plotIndexes": [ + "0xa3372c02aacb", + "0x1d668cf18c335" + ] } }, "depositAllowances": {}, @@ -179813,7 +180788,10 @@ "634945228489192": "0x86d6a9ef", "708681724483889": "0x318870ff" }, - "plotIndexes": ["0x2417ab4cbc1e8", "0x2848ad2725931"] + "plotIndexes": [ + "0x2417ab4cbc1e8", + "0x2848ad2725931" + ] } }, "depositAllowances": {}, @@ -180390,14 +181368,10 @@ "638778618685577": "0x6f6045622", "636463415640693": "0x9c72074c" }, -<<<<<<< HEAD "plotIndexes": [ "0x244f73ca82889", "0x242dc2fcd4275" ] -======= - "plotIndexes": ["0x244f73ca82889", "0x242dc2fcd4275"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -181317,7 +182291,9 @@ "plots": { "202261936601483": "0x178e3fc67d" }, - "plotIndexes": ["0xb7f4c6e1f98b"] + "plotIndexes": [ + "0xb7f4c6e1f98b" + ] } }, "depositAllowances": {}, @@ -181671,7 +182647,11 @@ "392873013056712": "0x2e48c1a76", "451927223440496": "0x5e8b0b56f" }, - "plotIndexes": ["0xfcf765c39036", "0x16550e06294c8", "0x19b06819e1470"] + "plotIndexes": [ + "0xfcf765c39036", + "0x16550e06294c8", + "0x19b06819e1470" + ] } }, "depositAllowances": {}, @@ -182061,7 +183041,9 @@ "plots": { "591543946444869": "0x184a3ceb8" }, - "plotIndexes": ["0x21a018ecc0045"] + "plotIndexes": [ + "0x21a018ecc0045" + ] } }, "depositAllowances": {}, @@ -182401,7 +183383,10 @@ "247323106895278": "0x1231bb5ce", "247321163790225": "0x73d16e1d" }, - "plotIndexes": ["0xe0f065ee65ae", "0xe0eff21cf791"] + "plotIndexes": [ + "0xe0f065ee65ae", + "0xe0eff21cf791" + ] } }, "depositAllowances": {}, @@ -182518,7 +183503,10 @@ "422369792593674": "0x4a7a17f6fb", "705080717481611": "0x65f765d1" }, - "plotIndexes": ["0x18024a1738f0a", "0x2814465b4168b"] + "plotIndexes": [ + "0x18024a1738f0a", + "0x2814465b4168b" + ] } }, "depositAllowances": {}, @@ -182673,7 +183661,11 @@ "262808988167960": "0x148d67b98c", "297184241475114": "0x2c1f2ce39e" }, - "plotIndexes": ["0xc8e017fcc228", "0xef05fc622f18", "0x10e4999255e2a"] + "plotIndexes": [ + "0xc8e017fcc228", + "0xef05fc622f18", + "0x10e4999255e2a" + ] } }, "depositAllowances": {}, @@ -182735,7 +183727,9 @@ "plots": { "700841083224368": "0x7878b72c" }, - "plotIndexes": ["0x27d6947cf4130"] + "plotIndexes": [ + "0x27d6947cf4130" + ] } }, "depositAllowances": {}, @@ -183493,7 +184487,11 @@ "334799194897789": "0x45307d22", "708018038561787": "0x5121a91" }, - "plotIndexes": ["0x54981a739dce", "0x1307f83153d7d", "0x283f04baedbfb"] + "plotIndexes": [ + "0x54981a739dce", + "0x1307f83153d7d", + "0x283f04baedbfb" + ] } }, "depositAllowances": {}, @@ -184188,14 +185186,10 @@ "463456140675342": "0x48b20eece", "463741817068254": "0x42ac99c52d" }, -<<<<<<< HEAD "plotIndexes": [ "0x1a582caa2490e", "0x1a5c54e461ade" ] -======= - "plotIndexes": ["0x1a582caa2490e", "0x1a5c54e461ade"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -184354,16 +185348,12 @@ "584401899740089": "0xa7678e46", "584404708321791": "0xa765f0e7" }, -<<<<<<< HEAD "plotIndexes": [ "0xc02daea275d4", "0x1222b5ab3252a", "0x21382aba3dbb9", "0x21383530b69ff" ] -======= - "plotIndexes": ["0xc02daea275d4", "0x1222b5ab3252a", "0x21382aba3dbb9", "0x21383530b69ff"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -184497,7 +185487,10 @@ "290651334177058": "0x3da61f658", "294349852765854": "0x37be1909e" }, - "plotIndexes": ["0x108588986f122", "0x10bb5aa69ee9e"] + "plotIndexes": [ + "0x108588986f122", + "0x10bb5aa69ee9e" + ] } }, "depositAllowances": {}, @@ -184601,7 +185594,9 @@ "plots": { "267042704125029": "0x1454219583" }, - "plotIndexes": ["0xf2dfb984ec65"] + "plotIndexes": [ + "0xf2dfb984ec65" + ] } }, "depositAllowances": {}, @@ -184832,7 +185827,10 @@ "302438433985351": "0x2e069cb3a", "320180033385918": "0xc44c59d52" }, - "plotIndexes": ["0x11310ef6c9347", "0x12333b92775be"] + "plotIndexes": [ + "0x11310ef6c9347", + "0x12333b92775be" + ] } }, "depositAllowances": {}, @@ -184992,7 +185990,10 @@ "383537829470381": "0x425c2bb41", "472806870191278": "0x6db476374" }, - "plotIndexes": ["0x15cd35c1560ad", "0x1ae03ed8b8cae"] + "plotIndexes": [ + "0x15cd35c1560ad", + "0x1ae03ed8b8cae" + ] } }, "depositAllowances": {}, @@ -185234,7 +186235,9 @@ "plots": { "829907742748562": "0x67be822f" }, - "plotIndexes": ["0x2f2cbf433ef92"] + "plotIndexes": [ + "0x2f2cbf433ef92" + ] } }, "depositAllowances": {}, @@ -186175,7 +187178,9 @@ "plots": { "335417125801352": "0x174b6a53f4" }, - "plotIndexes": ["0x1310f62a28d88"] + "plotIndexes": [ + "0x1310f62a28d88" + ] } }, "depositAllowances": {}, @@ -186339,7 +187344,11 @@ "712108322279785": "0x17afb3f8", "715901934912693": "0x11" }, - "plotIndexes": ["0x28500286ad56b", "0x287a8a3975169", "0x28b1be88644b5"] + "plotIndexes": [ + "0x28500286ad56b", + "0x287a8a3975169", + "0x28b1be88644b5" + ] } }, "depositAllowances": {}, @@ -186490,7 +187499,11 @@ "201676000879056": "0x1b8c99a0e1", "199257636281033": "0xd95ee5780" }, - "plotIndexes": ["0x8a7be5aa3d41", "0xb76c5a6461d0", "0xb53948a11ac9"] + "plotIndexes": [ + "0x8a7be5aa3d41", + "0xb76c5a6461d0", + "0xb53948a11ac9" + ] } }, "depositAllowances": {}, @@ -187103,7 +188116,10 @@ "146151784587484": "0xc6293d54", "235555565795257": "0x3acafc6d9" }, - "plotIndexes": ["0x84ec9d3420dc", "0xd63c8dd2f7b9"] + "plotIndexes": [ + "0x84ec9d3420dc", + "0xd63c8dd2f7b9" + ] } }, "depositAllowances": {}, @@ -187252,7 +188268,10 @@ "440689480358454": "0xe9b5f34900", "445596103536239": "0x78835d380" }, - "plotIndexes": ["0x190ce03eeda36", "0x195446d76ee6f"] + "plotIndexes": [ + "0x190ce03eeda36", + "0x195446d76ee6f" + ] } }, "depositAllowances": {}, @@ -187455,7 +188474,9 @@ "plots": { "516816371472285": "0x4b4be38946" }, - "plotIndexes": ["0x1d60ab03c579d"] + "plotIndexes": [ + "0x1d60ab03c579d" + ] } }, "depositAllowances": {}, @@ -187522,7 +188543,9 @@ "plots": { "697420059520285": "0xdca76693" }, - "plotIndexes": ["0x27a4cc2e82d1d"] + "plotIndexes": [ + "0x27a4cc2e82d1d" + ] } }, "depositAllowances": {}, @@ -187743,7 +188766,10 @@ "737664855304048": "0x28f348", "741689220722814": "0x269c6dd04" }, - "plotIndexes": ["0x29ee6fba9e770", "0x2a28ffa88f07e"] + "plotIndexes": [ + "0x29ee6fba9e770", + "0x2a28ffa88f07e" + ] } }, "depositAllowances": {}, @@ -188236,7 +189262,9 @@ "plots": { "168585228445771": "0x3" }, - "plotIndexes": ["0x9953cea7e84b"] + "plotIndexes": [ + "0x9953cea7e84b" + ] } }, "depositAllowances": {}, @@ -188301,7 +189329,10 @@ "139711776684751": "0x339ae446", "708384539121096": "0xdb9734d5" }, - "plotIndexes": ["0x7f112ed1facf", "0x28445a0d195c8"] + "plotIndexes": [ + "0x7f112ed1facf", + "0x28445a0d195c8" + ] } }, "depositAllowances": {}, @@ -188458,7 +189489,10 @@ "697933611972377": "0x57c3577a", "697933416557787": "0xba5ca3e" }, - "plotIndexes": ["0x27ac45504b719", "0x27ac4495eecdb"] + "plotIndexes": [ + "0x27ac45504b719", + "0x27ac4495eecdb" + ] } }, "depositAllowances": {}, @@ -188551,7 +189585,10 @@ "218989855358801": "0x4154778af9", "584556940408913": "0x968772510" }, - "plotIndexes": ["0xc72b8c89bf51", "0x213a6c4c8b851"] + "plotIndexes": [ + "0xc72b8c89bf51", + "0x213a6c4c8b851" + ] } }, "depositAllowances": {}, @@ -188812,7 +189849,11 @@ "401451940456732": "0x12dfbfe36b", "400630877527787": "0x4eb5830cb" }, - "plotIndexes": ["0x15fa96c61d2c8", "0x16d1e504e291c", "0x16c5f25241eeb"] + "plotIndexes": [ + "0x15fa96c61d2c8", + "0x16d1e504e291c", + "0x16c5f25241eeb" + ] } }, "depositAllowances": {}, @@ -189400,7 +190441,9 @@ "plots": { "74020410789705": "0x3df2c9e11" }, - "plotIndexes": ["0x4352384a8f49"] + "plotIndexes": [ + "0x4352384a8f49" + ] } }, "depositAllowances": {}, @@ -189577,14 +190620,10 @@ "383890351941264": "0x28613f60d", "383922594208774": "0x22d5725125" }, -<<<<<<< HEAD "plotIndexes": [ "0x15d25700f6690", "0x15d2cf1d95c06" ] -======= - "plotIndexes": ["0x15d25700f6690", "0x15d2cf1d95c06"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -189744,7 +190783,10 @@ "709064906743137": "0x42702f758", "709010774745723": "0x3e3d5edf0" }, - "plotIndexes": ["0x284e409e39d61", "0x284d76f5ee27b"] + "plotIndexes": [ + "0x284e409e39d61", + "0x284d76f5ee27b" + ] } }, "depositAllowances": {}, @@ -189806,7 +190848,9 @@ "plots": { "502195414411318": "0x14d566" }, - "plotIndexes": ["0x1c8be7b48a836"] + "plotIndexes": [ + "0x1c8be7b48a836" + ] } }, "depositAllowances": {}, @@ -189893,7 +190937,9 @@ "plots": { "213971945873184": "0x17a5a619a7" }, - "plotIndexes": ["0xc29b39d35f20"] + "plotIndexes": [ + "0xc29b39d35f20" + ] } }, "depositAllowances": {}, @@ -190169,7 +191215,10 @@ "709335462929874": "0x139397f17", "725650404461457": "0x16d1e02c52" }, - "plotIndexes": ["0x28523084b65d2", "0x293f9a696cb91"] + "plotIndexes": [ + "0x28523084b65d2", + "0x293f9a696cb91" + ] } }, "depositAllowances": {}, @@ -190352,7 +191401,10 @@ "66141501266485": "0x210895e655f", "482663958595291": "0x3e27a56c880" }, - "plotIndexes": ["0x3c27c4b01a35", "0x1b6faf5cc46db"] + "plotIndexes": [ + "0x3c27c4b01a35", + "0x1b6faf5cc46db" + ] } }, "depositAllowances": {}, @@ -190593,7 +191645,9 @@ "plots": { "211308250412322": "0x101a93685" }, - "plotIndexes": ["0xc02f09343522"] + "plotIndexes": [ + "0xc02f09343522" + ] } }, "depositAllowances": {}, @@ -191055,7 +192109,10 @@ "257846813181966": "0x5bf48c566c", "270343223673734": "0x54e1df12db" }, - "plotIndexes": ["0xea82a3b4c80e", "0xf5e02fd08386"] + "plotIndexes": [ + "0xea82a3b4c80e", + "0xf5e02fd08386" + ] } }, "depositAllowances": {}, @@ -191391,7 +192448,9 @@ "plots": { "280606415159353": "0x149cee5a8b" }, - "plotIndexes": ["0xff35c5b28039"] + "plotIndexes": [ + "0xff35c5b28039" + ] } }, "depositAllowances": {}, @@ -191680,7 +192739,9 @@ "plots": { "93479805568870": "0x157fb88" }, - "plotIndexes": ["0x5504f69ac766"] + "plotIndexes": [ + "0x5504f69ac766" + ] } }, "depositAllowances": {}, @@ -193060,7 +194121,10 @@ "404067859818534": "0x10bd066d2", "642222658063359": "0xbf9d16a0a" }, - "plotIndexes": ["0x16f7f613fe826", "0x248191d668bff"] + "plotIndexes": [ + "0x16f7f613fe826", + "0x248191d668bff" + ] } }, "depositAllowances": {}, @@ -193360,7 +194424,9 @@ "plots": { "380456360701830": "0xdfb29847a" }, - "plotIndexes": ["0x15a05e63b6f86"] + "plotIndexes": [ + "0x15a05e63b6f86" + ] } }, "depositAllowances": {}, @@ -193448,7 +194514,9 @@ "plots": { "742850188138272": "0x1aa6903da2" }, - "plotIndexes": ["0x2a39e4995d720"] + "plotIndexes": [ + "0x2a39e4995d720" + ] } }, "depositAllowances": {}, @@ -193926,7 +194994,9 @@ "plots": { "376885779708970": "0x681346b600" }, - "plotIndexes": ["0x156c68f053c2a"] + "plotIndexes": [ + "0x156c68f053c2a" + ] } }, "depositAllowances": {}, @@ -194052,7 +195122,12 @@ "317850358107286": "0x3e13b0818c", "330088432377041": "0x15556e177a9" }, - "plotIndexes": ["0xf96eeb00fe5d", "0xfd850fb4766a", "0x121154dafcc96", "0x12c36b3c19cd1"] + "plotIndexes": [ + "0xf96eeb00fe5d", + "0xfd850fb4766a", + "0x121154dafcc96", + "0x12c36b3c19cd1" + ] } }, "depositAllowances": {}, @@ -194410,7 +195485,12 @@ "719100357414327": "0x3803c337b", "801777831126999": "0x91ad22d93" }, - "plotIndexes": ["0x7ce6e6ea9909", "0x281b0514c0385", "0x28e04995c8db7", "0x2d93672d027d7"] + "plotIndexes": [ + "0x7ce6e6ea9909", + "0x281b0514c0385", + "0x28e04995c8db7", + "0x2d93672d027d7" + ] } }, "depositAllowances": {}, @@ -194611,7 +195691,9 @@ "plots": { "707767802108906": "0x10d23cb64" }, - "plotIndexes": ["0x283b6086d9bea"] + "plotIndexes": [ + "0x283b6086d9bea" + ] } }, "depositAllowances": {}, @@ -194718,7 +195800,12 @@ "709753706632464": "0x11ace78b9", "722685699957057": "0xf5ddffb63" }, - "plotIndexes": ["0x283c900a6cbb6", "0x2858c84d8e3c9", "0x28584698fd510", "0x29147606e2141"] + "plotIndexes": [ + "0x283c900a6cbb6", + "0x2858c84d8e3c9", + "0x28584698fd510", + "0x29147606e2141" + ] } }, "depositAllowances": {}, @@ -195233,7 +196320,11 @@ "203420780104759": "0xc8ec7b9561", "531411470867756": "0x218711a00" }, - "plotIndexes": ["0x54e2ce50c681", "0xb90297568c37", "0x1e350dff35d2c"] + "plotIndexes": [ + "0x54e2ce50c681", + "0xb90297568c37", + "0x1e350dff35d2c" + ] } }, "depositAllowances": {}, @@ -195523,7 +196614,10 @@ "371946252710197": "0x24bb5590", "371909386482287": "0x1331303d6" }, - "plotIndexes": ["0x152487c44b135", "0x1523fe6deb26f"] + "plotIndexes": [ + "0x152487c44b135", + "0x1523fe6deb26f" + ] } }, "depositAllowances": {}, @@ -195872,7 +196966,11 @@ "493976772720798": "0x3d738745500", "656358729562897": "0x4913b45d0" }, - "plotIndexes": ["0x7d30c1db6bcd", "0x1c144ee10b89e", "0x254f46cebbb11"] + "plotIndexes": [ + "0x7d30c1db6bcd", + "0x1c144ee10b89e", + "0x254f46cebbb11" + ] } }, "depositAllowances": {}, @@ -196197,7 +197295,9 @@ "plots": { "921377157399744": "0x71c3c7e7" }, - "plotIndexes": ["0x345fcd62bc4c0"] + "plotIndexes": [ + "0x345fcd62bc4c0" + ] } }, "depositAllowances": {}, @@ -196680,14 +197780,10 @@ "446757619493079": "0x650dc2e1", "446738966558233": "0x62ebb67e" }, -<<<<<<< HEAD "plotIndexes": [ "0x19652dd35e8d7", "0x1964e8568b619" ] -======= - "plotIndexes": ["0x19652dd35e8d7", "0x1964e8568b619"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -196934,14 +198030,10 @@ "275666178457181": "0x557c2f3b4", "276055150472028": "0x54f581c31" }, -<<<<<<< HEAD "plotIndexes": [ "0xfab788a4be5d", "0xfb12192eab5c" ] -======= - "plotIndexes": ["0xfab788a4be5d", "0xfb12192eab5c"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -197026,7 +198118,9 @@ "plots": { "386897475567381": "0xadd7a24ba" }, - "plotIndexes": ["0x15fe196987f15"] + "plotIndexes": [ + "0x15fe196987f15" + ] } }, "depositAllowances": {}, @@ -197165,7 +198259,6 @@ "sop": {} }, "0x4c806D260846A0A9faEDb405cDeB1908F9bc32A6": { -<<<<<<< HEAD "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -204199,8 +205292,6 @@ "sop": {} }, "0x632f3c0548f656c8470e2882582d02602CfF821C": { -======= ->>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -204212,8 +205303,12 @@ "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "68519420745986": "0x13d2f245a" + }, + "plotIndexes": [ + "0x3e516bbbd902" + ] } }, "depositAllowances": {}, @@ -204224,45 +205319,35 @@ "internalTokenBalance": {}, "sop": {} }, - "0xBB2E54038196A51f6a42A9BB5aD6BD0EB2CF6C01": { - "roots": "0xc77f2a3d19396d91b5400000", - "stalk": "0xdb5956fa3d1400", + "0x2920A3192613d8c42f21b64873dc0Ddfcbf018D4": { + "roots": "0x0", + "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", "lastSop": "0x0", "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x5e35ad", - "bdv": "0x5e35ad" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, + "deposits": {}, + "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "68524742212956": "0x2540be400" + }, + "plotIndexes": [ + "0x3e52a8eafd5c" + ] } }, "depositAllowances": {}, "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x5e35ad" - } - }, + "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": {}, "sop": {} }, - "0xE55091052af445fD666D13880A8f202d019F2D0b": { + "0x7fFA930D3F4774a0ba1d1fBB5b26000BBb90cA70": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -204274,8 +205359,20 @@ "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "81429748380955": "0x1", + "202233002999979": "0x8aa79219", + "202235329237700": "0x576816d2", + "218671968549714": "0xe5d1f417", + "694491673804561": "0x2170596a0" + }, + "plotIndexes": [ + "0x4a0f5739f51b", + "0xb7ee0a4e40ab", + "0xb7ee94f5d2c4", + "0xc6e18901fb52", + "0x277a2f1843f11" + ] } }, "depositAllowances": {}, @@ -204283,63 +205380,59 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xd39" + }, "sop": {} }, - "0x3376Bde856bf6ec5dc7b9796895C788d53605da0": { - "roots": "0x1243e9b5fa7ffbc1602c00000", - "stalk": "0x1415387be266c00", + "0x854e4406b9C2CFdC36a8992f1718e09E5F0D2371": { + "roots": "0x0", + "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", "lastSop": "0x0", "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x8a0233", - "bdv": "0x8a0233" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, + "deposits": {}, + "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "66081776800891": "0xae10de" + }, + "plotIndexes": [ + "0x3c19dcd5147b" + ] } }, "depositAllowances": {}, "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x8a0233" - } - }, + "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x111ff6b0" + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x77" }, "sop": {} }, - "0xf658305D26c8DF03e9ED3ff7C7287F7233dE472D": { + "0x1b9A6108D335e6E0E0325Ccc5b0164BFB65c6B9E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "74106039934810": "0x4ea004d8b" + }, + "plotIndexes": [ + "0x4366282f9f5a" + ] } }, "depositAllowances": {}, @@ -204350,7 +205443,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xDf08e9D4Ca290593AcDDb18363c49dF35A060Df2": { + "0xB6CC924486681a1ca489639200dcEB4c41C283d3": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -204362,8 +205455,24 @@ "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "64890353334796": "0x732f1a343", + "147686892058520": "0xafba52799", + "168834068658194": "0x789901407", + "168866441350169": "0x4d0a9613c", + "152164040168590": "0x175913a746", + "250350635854037": "0xbbe927228", + "393026470651510": "0x30a7be2d35" + }, + "plotIndexes": [ + "0x3b047675ba0c", + "0x865208bd3798", + "0x998dbeb03812", + "0x999548404c19", + "0x8a64738fd48e", + "0xe3b14cb828d5", + "0x165749b2ba676" + ] } }, "depositAllowances": {}, @@ -204374,7 +205483,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x1Af3e47327e771ac6C9AE1DBC218e36b41B70756": { + "0xE9D18dbFd105155eb367fcFef87eAaAFD15ea4B2": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -204386,8 +205495,12 @@ "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "68534742212956": "0x2540be400" + }, + "plotIndexes": [ + "0x3e54fcf6e15c" + ] } }, "depositAllowances": {}, @@ -204398,7 +205511,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x3BF9cb2117585f5b0680e9F959090A84e63aFB58": { + "0x510b301E8E4828E54ca5e5F466d8F31e5Ce83EbE": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -204410,8 +205523,18 @@ "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "81429748380956": "0x1d1b1d10e", + "117217726315318": "0x51d915b0", + "136979532734270": "0x3b9aca00", + "251882385453211": "0x4dc06fe22" + }, + "plotIndexes": [ + "0x4a0f5739f51c", + "0x6a9be0f03b36", + "0x7c950863df3e", + "0xe515f01c309b" + ] } }, "depositAllowances": {}, @@ -204419,12 +205542,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x39e209f8" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x9DbE561Cae4f1708FA7cBa9d61747ce7816aCbf0": { + "0x6B7F8019390Aa85b4A8679f963295D568098Cf51": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -204436,8 +205557,12 @@ "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "66099065602767": "0x9e15cd766" + }, + "plotIndexes": [ + "0x3c1de35342cf" + ] } }, "depositAllowances": {}, @@ -204448,58 +205573,76 @@ "internalTokenBalance": {}, "sop": {} }, - "0x6ECa54EE3DA212773A05a3CDd07ff4B33aD54c2b": { - "roots": "0x21e19e0c9bab2400000", - "stalk": "0x2540be400", + "0x0d619C8e3194b2aA5eddDdE5768c431bA76E27A4": { + "roots": "0x0", + "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x401", + "lastSop": "0x0", "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x1", - "bdv": "0x1" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, + "deposits": {}, + "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "79190322716306": "0xcae9ee5c6" + }, + "plotIndexes": [ + "0x4805ef0e1e92" + ] } }, "depositAllowances": {}, "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x1" - } - }, + "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": {}, "sop": {} }, - "0x1164fe7a76D22EAA66f6A0aDcE3E3a30d9957A5f": { + "0x52f3F126342fca99AC76D7c8f364671C9bb3fC67": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x401", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "89507398941830": "0xd225540d", + "89656246550500": "0x200c2d6c3", + "743848476657704": "0x498371a2", + "855190099925501": "0x189a6c3d80", + "863597854618078": "0x8eaabeff80", + "859424786465221": "0x342c357400", + "909448360414556": "0xe40bf49120", + "887758447796303": "0xe8e43fd040", + "921034865451866": "0x125d4140", + "921034560497738": "0x122d3b10", + "921035333523306": "0x8e529cc", + "921035173553306": "0x988f2d0", + "921035482759478": "0x12799b89" + }, + "plotIndexes": [ + "0x516810b7fc86", + "0x518ab8ba3fe4", + "0x2a486b837c828", + "0x309ca761f19fd", + "0x311700b5a71de", + "0x30da46d1bc1c5", + "0x33b237276cd5c", + "0x327695eed604f", + "0x345ad23fb235a", + "0x345ad11cde84a", + "0x345ad3fe1576a", + "0x345ad3658649a", + "0x345ad48c68136" + ] } }, "depositAllowances": {}, @@ -204507,13 +205650,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x37026b", - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xfe82849" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x46bEfF3C23e91009699A7cb0b997911F16829DD0": { + "0x251FAe8f687545BDD462Ba4FCDd7581051740463": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -204525,8 +205665,52 @@ "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "89496924603539": "0x2540be400", + "99851452914852": "0xee6b280", + "94235781987404": "0x17f8daca9", + "122129787959482": "0x2f0d67ef", + "133665283117841": "0xbebc200", + "137124860862443": "0x139ffcb25", + "136913196875357": "0xaefecdac", + "278603290580864": "0x4d1446cc", + "281273103745391": "0xb098184a4", + "394751719356676": "0x2ebdfc9785", + "439356635751198": "0x267775bd", + "636808516114655": "0x8f6572fd8", + "635516475006264": "0xd0160cc58", + "687313439949641": "0x151f4420f5", + "695163561382883": "0x6cef6f74", + "741224630773020": "0x25ad5353a", + "828953329689546": "0x450c7a1f", + "829107101257549": "0x5fc3fdc0", + "851791077155618": "0xe2ef57ea7", + "853786403387780": "0x298d02ae6", + "906315055949346": "0xe96c905cc" + }, + "plotIndexes": [ + "0x5165a0664493", + "0x5ad07a619ca4", + "0x55b4fa4f7c4c", + "0x6f138ea0b8ba", + "0x79915fb81311", + "0x7cb6de9f1feb", + "0x7c859676fe5d", + "0xfd63622b1780", + "0xffd0ff6f016f", + "0x167064c01b904", + "0x18f97b034231e", + "0x2432c896498df", + "0x241ffb5bddd38", + "0x2711ba1700349", + "0x2783f612313e3", + "0x2a223ced0e51c", + "0x2f1edbcc063ca", + "0x2f2118a404f4d", + "0x306b31093a322", + "0x30883a349b984", + "0x33849eaf6e622" + ] } }, "depositAllowances": {}, @@ -204534,25 +205718,27 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x5d21dba00" - }, + "internalTokenBalance": {}, "sop": {} }, - "0xA813f78E3A60129218A0C0aBCA0fB6320C6c0D4F": { + "0xC1E64944de6BEE91752431fF83507dCBd57E186b": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "89547003810515": "0x1420067a5" + }, + "plotIndexes": [ + "0x5171495a52d3" + ] } }, "depositAllowances": {}, @@ -204563,20 +205749,24 @@ "internalTokenBalance": {}, "sop": {} }, - "0xB8da309775c696576d26Ef7d25b68C103a9aB0d5": { + "0x12B9D75389409d119Dd9a96DF1D41092204e8f32": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "92695810999829": "0x2b7307b6c" + }, + "plotIndexes": [ + "0x544e6ce30615" + ] } }, "depositAllowances": {}, @@ -204587,31 +205777,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0xc80102BA8bFB97F2cD1b2B0dA158Dfe6200B33B3": { + "0xAA420e97534aB55637957e868b658193b112A551": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "260684773844629": "0x21ab33e66", - "296986706249004": "0x37bd054b", - "325360140162588": "0x90fbcbd9e", - "411688335001233": "0x5d944c80", - "422365791300603": "0x2f908380" + "92901634103041": "0xa23335380" }, "plotIndexes": [ - "0xed176757e695", - "0x10e1b9b21052c", - "0x127e9cf94161c", - "0x1766da8f74691", - "0x18023b2f4abfb" + "0x547e58e65701" ] } }, @@ -204620,29 +205802,33 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x4d508e880" + }, "sop": {} }, -<<<<<<< HEAD - "0x2920A3192613d8c42f21b64873dc0Ddfcbf018D4": { -======= - "0x9ae3821d72B53F767F5b72c9630ce864C54c09bc": { ->>>>>>> b689ac329 (feat: update reseed jsons) + "0xd0D628acf9E985c94a4542CaE88E0Af7B2378c81": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", -<<<<<<< HEAD -======= "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "89208643960630": "0x2dc6c0", + "122216130970075": "0x51cbad9a1", + "684090892689899": "0x343e20b01" + }, + "plotIndexes": [ + "0x51228188bf36", + "0x6f27a91281db", + "0x26e2d52a721eb" + ] } }, "depositAllowances": {}, @@ -204650,10 +205836,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x141241c" + }, "sop": {} }, - "0x42fb915d37f3A4ea92C29f217A74465a1f331B83": { + "0x76a05Df20bFEF5EcE3eB16afF9cb10134199A921": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -204665,8 +205853,14 @@ "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "92743843990177": "0x1685f7d0d", + "634649380286759": "0x13675c2571" + }, + "plotIndexes": [ + "0x54599be04aa1", + "0x24135d2de7127" + ] } }, "depositAllowances": {}, @@ -204674,23 +205868,29 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xd29bf10" + }, "sop": {} }, - "0x8f3426398C39c82218901623acA10E4924710f12": { + "0x1FA29B6DcBC5fA3B529fEecd46F57Ee46718716b": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "94074534759816": "0x258b156ec4" + }, + "plotIndexes": [ + "0x558f6f3a0d88" + ] } }, "depositAllowances": {}, @@ -204701,7 +205901,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xccD40F3fF051EEc5e17cd326AC56292c1D807AeF": { + "0x44440AA675Ae3196E2614c1A9Ac897e5Cd6F8545": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -204713,8 +205913,14 @@ "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "94280290718369": "0x3e43d783", + "704216199980940": "0x5e935e5c" + }, + "plotIndexes": [ + "0x55bf573cd2a1", + "0x2807b1c71e78c" + ] } }, "depositAllowances": {}, @@ -204725,97 +205931,84 @@ "internalTokenBalance": {}, "sop": {} }, - "0xc9931D499EcAA1AE3E1F46fc385E03f7a47C2E54": { - "roots": "0x2b80e5234850ba755000000", - "stalk": "0x2fd52547c5000", + "0x5Ea861872592804FF69847Dd73Eef2BD01A0dde0": { + "roots": "0x0", + "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", "lastSop": "0x0", "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x148b4", - "bdv": "0x148b4" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, + "deposits": {}, + "depositIdList": {}, "fields": { "0": { "plots": { - "929242018796667": "0x51fd17a2e", - "929223150841785": "0xa87fe882", - "929225977796667": "0x3bc1e3c40" + "99847422900232": "0xf035249c" }, - "plotIndexes": ["0x34d240470d47b", "0x34d1f9fd2afb9", "0x34d204852983b"] + "plotIndexes": [ + "0x5acf8a2c7808" + ] } }, "depositAllowances": {}, "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x148b4" - } - }, + "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": {}, "sop": {} }, - "0xBd120e919eb05343DbA68863f2f8468bd7010163": { - "roots": "0x6b83ac832c3e2c05cc000000", - "stalk": "0x76369976a0c000", + "0x5e93941A8f3Aede7788188b6CB8092b6e57d02A6": { + "roots": "0x0", + "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", "lastSop": "0x0", "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x32c5b0", - "bdv": "0x32c5b0" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, + "deposits": {}, + "depositIdList": {}, "fields": { "0": { "plots": { - "829006199994809": "0xdc4e6a27" + "94281335351848": "0x389fd980", + "437580444503704": "0x4c3aee346", + "463414838278024": "0x2d4850279", + "662850624131661": "0x3e82892fe", + "695537635383030": "0x15e2b763f", + "697945151970404": "0x22f996129", + "701398278226282": "0x1509633d8", + "705660334202228": "0xc922c8a0" }, - "plotIndexes": ["0x2f1fa0c1139b9"] + "plotIndexes": [ + "0x55bf9580aa28", + "0x18dfa22f48e98", + "0x1a5792cd1b788", + "0x25adbeffd924d", + "0x2789679af56f6", + "0x27ac704db1c64", + "0x27deb0338416a", + "0x281cb598d5d74" + ] } }, "depositAllowances": {}, "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x32c5b0" - } - }, + "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x1888b9e4" + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x2" }, "sop": {} }, - "0x9eD25251826C88122E16428CbB70e65a33E85B19": { + "0x2206e33975EF5CBf8d0DE16e4c6574a3a3aC65B6": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", ->>>>>>> b689ac329 (feat: update reseed jsons) "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, @@ -204823,15 +206016,11 @@ "fields": { "0": { "plots": { -<<<<<<< HEAD - "68524742212956": "0x2540be400" + "94255248987397": "0x7" }, "plotIndexes": [ - "0x3e52a8eafd5c" -======= - "851163404918538": "0x48d5e2f94" - }, - "plotIndexes": ["0x30620ec655f0a"] + "0x55b982a25505" + ] } }, "depositAllowances": {}, @@ -204842,7 +206031,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x729AD565b305be00729E0A5677401DCa268E6D8a": { + "0xD99f87535972Ba63B0fcE0bC2B3F7a2aF7193886": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -204854,8 +206043,16 @@ "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "93318838342273": "0x3521af400", + "591137392921024": "0x1d1a94a200", + "643048855332541": "0xc7d30ae5" + }, + "plotIndexes": [ + "0x54df7c35d281", + "0x219a2e65189c0", + "0x248d97a9866bd" + ] } }, "depositAllowances": {}, @@ -204866,7 +206063,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x00D1EBE373806B2E5a3db01903AA777FF3F4471d": { + "0x399baf8F9AD4B3289d905f416bD3e245792C5fA6": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -204878,8 +206075,12 @@ "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "93009983755725": "0x8768c801" + }, + "plotIndexes": [ + "0x5497930ad5cd" + ] } }, "depositAllowances": {}, @@ -204890,7 +206091,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x1e25D2596d02cbD6AEd54994FDF2Df7239C8C4Dc": { + "0x284f942F11a5046a5D11BCbEC9beCb46d1172512": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -204902,8 +206103,14 @@ "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "112217222887362": "0x99707621a", + "319598229117213": "0x1678c96929" + }, + "plotIndexes": [ + "0x660f9bb537c2", + "0x122ac42ead91d" + ] } }, "depositAllowances": {}, @@ -204914,45 +206121,37 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8A8073cE976490D9e13953B3D85A65476F27712F": { - "roots": "0x121135b99b95cee7228400000", - "stalk": "0x13dd78d6ad54400", + "0x6bDd8c55a23D432D34c276A87584b8A96C03717F": { + "roots": "0x0", + "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", "lastSop": "0x0", "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x888319", - "bdv": "0x888319" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, + "deposits": {}, + "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "113336590076810": "0x49912548d", + "113316826225763": "0x49a046f27" + }, + "plotIndexes": [ + "0x67143b310b8a", + "0x670fa12c9c63" + ] } }, "depositAllowances": {}, "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x888319" - } - }, + "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": {}, "sop": {} }, - "0xE8dFA9c13CaB87E38991961d51FA391aAbb8ca9c": { + "0x14FC66BeBdBe500D1ee86FA3cBDc4d201E644248": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -204964,8 +206163,16 @@ "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "102482441363213": "0x3e68c1130", + "102501887271161": "0x3fcdcb1", + "325399058895802": "0x48e728d01" + }, + "plotIndexes": [ + "0x5d350d835f0d", + "0x5d39949460f9", + "0x127f2df50d3ba" + ] } }, "depositAllowances": {}, @@ -204974,24 +206181,28 @@ "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x3b592" + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x204912b8" }, "sop": {} }, - "0x82610F2bbA3fC9b3207805b46E79F7db27C6af68": { + "0x6A7E0712838A0b257C20e042cf9b6C5E910F221F": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "111519018790551": "0x3174540ce" + }, + "plotIndexes": [ + "0x656d0b802e97" + ] } }, "depositAllowances": {}, @@ -204999,14 +206210,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x1ad56f54", - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x20a7a60d9", - "0x1BEA059c3Ea15F6C10be1c53d70C75fD1266D788": "0x6b06b1408" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x42225B0C8C3f0c7C4d5B21a008a899e9a4992788": { + "0xF3F03727e066B33323662ACa4BE939aFBE49d198": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -205018,8 +206225,12 @@ "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "112305865851667": "0x57d7e7db" + }, + "plotIndexes": [ + "0x66243f3d8313" + ] } }, "depositAllowances": {}, @@ -205030,7 +206241,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xa569D7C014433DB04a895eD854B864e2E33EB0f0": { + "0x1Bd6aAB7DCf6228D3Be0C244F1D36e23DAac3BAe": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -205042,8 +206253,24 @@ "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "106868611705393": "0x3d76c6cf1", + "148243785783460": "0x2bdaaa3718", + "311692403880222": "0xc12ef6f32", + "328628658281539": "0x10502a0ce5", + "328527449691073": "0x1790808882", + "634504902771992": "0x890fb45d7", + "931736156920528": "0x1f1b0360c8e" + }, + "plotIndexes": [ + "0x613249a36a31", + "0x86d3b23118a4", + "0x11b7b8b03311e", + "0x12ae2d2709c43", + "0x12acb41f013c1", + "0x241142f568518", + "0x34f68baa85ad0" + ] } }, "depositAllowances": {}, @@ -205052,11 +206279,11 @@ "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x1" + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x1850eb26" }, "sop": {} }, - "0x82Ff15f5de70250a96FC07a0E831D3e391e47c48": { + "0xd80eC2F30FB3542F0577EeD01fBDCCF007257127": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -205069,9 +206296,11 @@ "fields": { "0": { "plots": { - "829113684669523": "0x108a50600" + "117373037489804": "0x3eeaeffe8" }, - "plotIndexes": ["0x2f21312a73453"] + "plotIndexes": [ + "0x6ac00a34ae8c" + ] } }, "depositAllowances": {}, @@ -205079,12 +206308,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x11e556e" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x71849E63d07320559284befD3b259f47654dB977": { + "0x3a1Bc767d7442355E96BA646Ff83706f70518dAA": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -205096,8 +206323,26 @@ "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "121663369666252": "0x8d59e225c", + "121742830315112": "0x4e7a29473d", + "446243884304809": "0x100a786310", + "445937161222528": "0x337e498fe9", + "489859129059979": "0x5098de0180", + "521589023122466": "0x2ea81881e0", + "505145411205774": "0xeb01072d8", + "571933833018999": "0x2da8479111" + }, + "plotIndexes": [ + "0x6ea6f5ee5ecc", + "0x6eb97627a668", + "0x195db403509a9", + "0x19593d6163980", + "0x1bd863760aa8b", + "0x1da61e8712422", + "0x1cb6d54cb7a8e", + "0x2082bb8f3be77" + ] } }, "depositAllowances": {}, @@ -205108,7 +206353,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xc1c0541C05FeEC0a65c2633d8574c6aD2bdBA48a": { + "0x9A5d202C5384a032473b2370D636DcA39adcC28f": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -205120,8 +206365,12 @@ "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "102403247311465": "0x27ddfd011" + }, + "plotIndexes": [ + "0x5d229d2e0a69" + ] } }, "depositAllowances": {}, @@ -205132,7 +206381,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x0469E94F1aDC4D06120FAC04F48fB8B97a742CA1": { + "0x12849Ec7cB1a7B29FAFD3E16Dc5159b2F5D67303": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -205144,8 +206393,12 @@ "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "121128776667659": "0x528539e45e" + }, + "plotIndexes": [ + "0x6e2a7db4920b" + ] } }, "depositAllowances": {}, @@ -205156,88 +206409,73 @@ "internalTokenBalance": {}, "sop": {} }, - "0x2E34723A04B9bb5938373DCFdD61410F43189246": { - "roots": "0x4c544690b0e00a738f5800000", - "stalk": "0x53ecc2a1d6bd800", + "0x085656Bd50C53E7e93D19270546956B00711FE2B": { + "roots": "0x0", + "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", "lastSop": "0x0", "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x240ba26", - "bdv": "0x240ba26" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, + "deposits": {}, + "depositIdList": {}, "fields": { "0": { "plots": { - "128510457444781": "0x564b7060" + "134062407569102": "0xf9c52f78a" }, - "plotIndexes": ["0x74e12c2a79ad"] + "plotIndexes": [ + "0x79edd62e4ece" + ] } }, "depositAllowances": {}, "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x240ba26" - } - }, + "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x189e901", - "0xBEA00dAf62D5549D265c5cA6D6BE87eF17881279": "0x10a2927" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x3b57579A35425A24c2A786DaCebE1837c09e5fBb": { - "roots": "0xe36ab12a009f2913400000", - "stalk": "0xfa0c20fcf400", + "0x408fc5413Ea0D489D66acBc1BcB5369Fc9F32e22": { + "roots": "0x0", + "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", "lastSop": "0x0", "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x6b65", - "bdv": "0x6b65" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, + "deposits": {}, + "depositIdList": {}, "fields": { "0": { - "plots": {}, - "plotIndexes": [] + "plots": { + "137228728484742": "0x484b302fe", + "630926654506278": "0x4ed38a827", + "695170871906740": "0x918fa063", + "698060293717985": "0x4a45f4c25", + "700924209542750": "0x140899cd00", + "701813606595271": "0x2f060d5540" + }, + "plotIndexes": [ + "0x7ccf0d9d4386", + "0x23dd30f1f0526", + "0x2784114e0d1b4", + "0x27ae1d3d6bfe1", + "0x27d7ca286365e", + "0x27e4bb6b83ac7" + ] } }, "depositAllowances": {}, "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x6b65" - } - }, + "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": {}, "sop": {} }, - "0x08Bf22fB93892583a815C598502b9B0a88124DAD": { + "0xb5566c4F8ee35E46c397CECf963Bfe9F8798F714": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -205250,43 +206488,14 @@ "fields": { "0": { "plots": { - "167974630577392": "0x47b8e053", - "214824984432909": "0x114f7798d", - "214861255972590": "0xa602ba6f", - "273266542932556": "0x861e2992", - "277396766693154": "0x1f95a5a1ed", - "299905735929341": "0x2e90edd000", - "405009250178020": "0x70844c1054", - "441693260358454": "0xb88b2f471", - "490827460900938": "0x1f3f9e6cd6", - "490699224234272": "0x19fa171880", - "659059601095085": "0x1f9e97d4a1", - "692180409380464": "0x35fbf0b2", - "695893457979616": "0xb7e34240", - "800159464446651": "0xfca1ccf2d", - "803378843435783": "0x1b9bdcccb", - "803386254626770": "0x24eee9ff4", - "805534501973837": "0x2d2304c47" + "137248134678148": "0x396392e4", + "640240084788517": "0xe0fbf3e0", + "695877378915987": "0xf7f49000" }, "plotIndexes": [ - "0x98c5a42fd4f0", - "0xc361d6e2d10d", - "0xc36a48d696ee", - "0xf888d338724c", - "0xfc4a77bd9722", - "0x110c33edb2dfd", - "0x1705a907cd3e4", - "0x191b7b9e22336", - "0x1be67ac73f84a", - "0x1be49d0f3b920", - "0x257694568b9ad", - "0x27588cf6bee70", - "0x278e9525d48e0", - "0x2d7bda4a45abb", - "0x2daab36954307", - "0x2daacf0530fd2", - "0x2dca11dd82f4d" ->>>>>>> b689ac329 (feat: update reseed jsons) + "0x7cd392504684", + "0x2464b82d32525", + "0x278e593fa3e93" ] } }, @@ -205295,12 +206504,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x21beb60" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x64298A72F4E3e23387EFc409fc424a3f17356fC4": { + "0xd5eF94eC1a13a9356C67CF9902B8eD22Ebd6A0f6": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -205310,13008 +206517,15 @@ "lastRain": "0x0", "deposits": {}, "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x15c0a6", - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xaf6" - }, - "sop": {} - }, - "0x1c694Fc3006D81ff4a56F97E1b99529066a23725": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xe201fC1Da79E71b953C07a1A24F5Ad3c974F2813": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x4ec2DcdFb3c165dA62DD1367cB42fe7551524984": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x31229e8" - }, - "sop": {} - }, - "0x0a1f1d3E71E981156EEF5538e7B3Ed40729684FF": { - "roots": "0xa4785eb7b0d5069d22800000", - "stalk": "0xb4d63e8ffda800", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x4dab3a", - "bdv": "0x4dab3a" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x4dab3a" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x1b05F4675a627463a25434b8fD703536f3A840A6": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x6D3F3553b5c369c7ceE68c07d0B222103f37a0c3": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x988fbe" - }, - "sop": {} - }, - "0x5b0B3D1eb4Fa45BBcBb22C4AB963733B29eA5230": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x0C6b4974c305447efCcdDEaE7b726202Eb0Cc891": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xfb4570E63a5B87Fd415ec6F855373902CAe7A1f7": { - "roots": "0xa968163f0a57b400000", - "stalk": "0xba43b7400", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x401", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x5", - "bdv": "0x5" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x5" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x13EBB0A690b0c7EBa90893F7ec300A099A32C322": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xA0cd3Faf3c370e7448D08f0b3C45703eb61a1974": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xcc977Dfb5c0A7E1Bd87145f56502aC67c951eb6A": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x4962664aB3bE8f478e59F4A1A629a32F5A4C79b2": { - "roots": "0xe19eda36671f838fec0b000000", - "stalk": "0xf81287a1cdd9b000", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x6a8bd8cc", - "bdv": "0x6a8bd8cc" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x6a8bd8cc" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x0a53D9586Dd052a06FCA7649A02b973Cc164c1B4": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "801616107211474": "0xb2ea3e7f", - "801619108907345": "0x481459a08" - }, - "plotIndexes": ["0x2d910cb510ad2", "0x2d9117e3b4951"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x857e126" - }, - "sop": {} - }, - "0x0519425dD15902466e7F7FA332F7b664c5c03503": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "741804565445464": "0x1eb331228e", - "741593512489483": "0x1632cff768", - "741530440114781": "0xb0cd06b42", - "909387138062923": "0x765df64b6" - }, - "plotIndexes": ["0x2a2aad59dbb58", "0x2a279b1e1320b", "0x2a26b0279225d", "0x33b153153da4b"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x689ca486E22bE18937e1E53B668C1b5cD1b6899c": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xA36Aa9dbdB7bbC2c986a5e30386a057f8Aa38d9c": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "636847008762039": "0x7a0cae41c", - "666696008012860": "0x310b31a380", - "897240723495689": "0x23c4d2ad9d", - "906149640768261": "0x22bf182e7d", - "920406236907736": "0x22f8a66442" - }, - "plotIndexes": [ - "0x243357fbbc8b7", - "0x25e5b42bb143c", - "0x33009229a1b09", - "0x3382367738b05", - "0x3451ac6ccc8d8" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x8525664820C549864982D4965a41F83A7d26AF58": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "89514620914919": "0xee6b2800" - }, - "plotIndexes": ["0x5169bf2e8ce7"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x0bf7Fb51211b4842bAd8E831ba2F42fcB836C7e1": { - "roots": "0x1fd038c716aad1ed800000", - "stalk": "0x22faaaa35800", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0xf06", - "bdv": "0xf06" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0xf06" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x9142A918Df6208Ae1bE65e2Be0ea9DAd6067155e": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x044c53d8576d4D700E6327c954f88388EE03b8dB": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x401", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x09Ea3281Eeb7395DaD7851E7e37ad6aff9d68a4c": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "506085097010473": "0x41dd838aa" - }, - "plotIndexes": ["0x1cc481e6ef529"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x2E010a776c51550D30699Bf87CFB574b42a48eE0": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x13af3C337A0d9B54E71C7Fd663Fe5bAb9E341b6E": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xd9Da13DE745bfa50FFAAFD0a531B92f0511B72Cf": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xF83a182BAE282D6D7dC6011a8C8fece73DA37E5c": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x4DE246Ac9Db59E9b2EF6b395c3Ea9798Ea87DA12": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x8e6CD98f0275D180393d68abBF3e59D9519EC741": { - "roots": "0x96592d57f2c76fc00000", - "stalk": "0xa54f4c3c00", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x47", - "bdv": "0x47" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x47" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xE84c01208c4868d5615FCCf0b98f8c90f460d2b6": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xF9383a2d0D81Ee4046F83CE1B5D8580834333470": { - "roots": "0x43c33c1937564800000", - "stalk": "0x4a817c800", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x2", - "bdv": "0x2" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x2" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x17372637a937f7427871573a85e6FaC2400D147f": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x61698" - }, - "sop": {} - }, - "0x96D48b045C9F825f2999C533Ad56B6B0fCa91F92": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x8821d14" - }, - "sop": {} - }, - "0x4DDE0C41511d49E83ACE51c94E668828214D9C51": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "92716616649965": "0x556a7250", - "741944065377362": "0xd24755aa", - "872301195087389": "0x1a908f515" - }, - "plotIndexes": ["0x545345000ced", "0x2a2cb5075c452", "0x3195a72dece1d"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x4847a" - }, - "sop": {} - }, - "0xEfbC103259B500EBe6408fc7c91535b0e158E22b": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x7eee7D572148b3188412cC18B6d9632c2e78f182": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xFec1561ac66d0B76D7Caebe5386cdA39a2056380": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xD2d038f866Ef6441e598E0f685f885693ef59917": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x102e8ac", - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x1" - }, - "sop": {} - }, - "0xa4Be84C37287350AA58eAea4d2F736463C03c893": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x59d94Dc973D144FF29453a7f45161ac53a3d2842": { - "roots": "0x152d02c7e14af6800000", - "stalk": "0x174876e800", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0xa", - "bdv": "0xa" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0xa" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x888E552FC9A9DbFaA5B854bc6F128c1A4142aD28": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x4bCbB32e470627AB0D767AC56bBCB2c33c181BCE": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x92d0920" - }, - "sop": {} - }, - "0xE7003d4f740D6bBc2Bb0f057D41Df36085d8CbA8": { - "roots": "0x21e19e0c9bab2400000", - "stalk": "0x2540be400", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x1", - "bdv": "0x1" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x1" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x77E3CF7d9051f7e76889EC11D9Ab758F9dedc5c4": { - "roots": "0x6c183a2c94a5f43473c00000", - "stalk": "0x76d9ef84c87c00", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x330bd7", - "bdv": "0x330bd7" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x330bd7" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x8083b29d", - "0x1BEA059c3Ea15F6C10be1c53d70C75fD1266D788": "0x2567d5963" - }, - "sop": {} - }, - "0xB816B9eF17535B5CA2071E005da994a1f1eb3a16": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xA3c5A4DF1C8DdaD68Af70c0f26Ddd4eA99F323A4": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x559fb65c37ca2F546d869B6Ff03Cfb22dAfdE9Df": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "787241243844279": "0x246017522" - }, - "plotIndexes": ["0x2cbfde2b11eb7"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x17b2cec" - }, - "sop": {} - }, - "0x4FF37892B9c7411Fd9d189533D3D4a2bf87f2EC6": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "396993916163233": "0x459c4e4df1" - }, - "plotIndexes": ["0x169105959d4a1"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xDbEf835a7c4C1571F7737Ca2722dC12162c91E0D": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x140C4433dbf6B3e6931Bb94855b7Db4AeA3bb846": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xC6AcC0bf7Cc2e6578387B0D24923B2C220c8B936": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x050eab5DECfBef8FbD9d9d0E7897116FD590706e": { - "roots": "0x1adde853ff70b58c00000", - "stalk": "0x1d8a56dcc00", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0xcb", - "bdv": "0xcb" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0xcb" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x85806019a442224D6345a1c2eD597d8a5DCE1F2B": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x14118ce4" - }, - "sop": {} - }, - "0x12e1b13555D430f0be94E2F5D785DC320e886B46": { - "roots": "0x2261cf48312f3f8dbd6000000", - "stalk": "0x25cdb12dd2f6000", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x103c898", - "bdv": "0x103c898" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x103c898" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xfdF8146c2dbAf678A84797AdecD62D0f3A51D365": { - "roots": "0x21e19e0c9bab2400000", - "stalk": "0x2540be400", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x1", - "bdv": "0x1" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x1" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xDFe18DE4852AB020FC82502dcE862B1F4206C587": { - "roots": "0x21e19e0c9bab2400000", - "stalk": "0x2540be400", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x1", - "bdv": "0x1" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x1" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x3dc0371" - }, - "sop": {} - }, - "0xDd2c8Ad91325012B65aBbFDFAD59Cfa23117B3e5": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x28e5366E2e8D6732bCc474d810CaCcc4d758dce1": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA059c3Ea15F6C10be1c53d70C75fD1266D788": "0xaec5c" - }, - "sop": {} - }, - "0xB6Df387d7Ff5dEd6a09EdC941c153772A7C42011": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xE4452Cb39ad3Faa39434b9D768677B34Dc90D5dc": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "623914133044871": "0x75d5ac1c0", - "625867979397771": "0x75d5e9250", - "630168261903378": "0x75d5e9250", - "627250871646040": "0x75d5e9250", - "633246235937816": "0x75d5e9250", - "631193622256278": "0x75d5e9250" - }, - "plotIndexes": [ - "0x2377254453e87", - "0x239393e969a8b", - "0x23d227b664412", - "0x23a7b3963b758", - "0x23fef20f2cc18", - "0x23e1137a39a96" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x1f89d85f4", - "0x1BEA059c3Ea15F6C10be1c53d70C75fD1266D788": "0x16596c96b" - }, - "sop": {} - }, - "0x1e6DA01cf34373cF673434E51Dc3124b70ba4663": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x23444f470C8760bef7424C457c30DC2d4378974b": { - "roots": "0xb7cb80835f7669ba728400000", - "stalk": "0xca15ac6e5254400", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x56cb719", - "bdv": "0x56cb719" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x56cb719" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x224e69025A2f705C8f31EFB6694398f8Fd09ac5C": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "828707206927635": "0x2379e0d2" - }, - "plotIndexes": ["0x2f1b46eb11513"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x50367e" - }, - "sop": {} - }, - "0x9b04EA8897DfA0a817403ACACcDb24df019c7085": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x243925c8" - }, - "sop": {} - }, - "0xE42Ab6d6dC5cc1569802c26a25aF993eeF76cAA2": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "897495730767354": "0x728ecc73f", - "887397958651799": "0xf692f4dd9" - }, - "plotIndexes": ["0x33044823845fa", "0x3271570198f97"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xd43c026148DDa7a17B9E96088d67C9f5e603A36F": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xe4b420F15d6d878dCD0Df7120Ac0fc1509ee9Cab": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "66081788234166": "0xac97ba63", - "828678664933246": "0x6a52f2896", - "928030515655350": "0x1227ac13c0" - }, - "plotIndexes": ["0x3c19dd8389b6", "0x2f1adc974cf7e", "0x34c09f139f2b6"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xb89FF4E9AD6B33F69153fa710F9849f51712eEc4": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xa846AFaa450De64C50d52248A66F7DD7E36688F2": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xf2f65A8a44f0Bb1a634A85b1a4eb4be4D69769B6": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x6D4ed8a1599DEe2655D51B245f786293E03d58f7": { - "roots": "0xcb7386cabd92ff407000000", - "stalk": "0xdfb2716ad7000", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x6013c", - "bdv": "0x6013c" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": { - "829909483286977": "0x11a85eee7" - }, - "plotIndexes": ["0x2f2cc5bf271c1"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x6013c" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x9de665" - }, - "sop": {} - }, - "0x027DA06f9247832D294b3004F1565C8E97382A1F": { - "roots": "0x21e19e0c9bab2400000", - "stalk": "0x2540be400", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x1", - "bdv": "0x1" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x1" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xe5a752e5011b8e191Dad28882e494065518119a7": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x9B0f5cCC13fa9fc22AB6C4766e419BB2A881eb1B": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xC997B8078A2c4AA2aC8e17589583173518F3bc94": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "921521055206279": "0xa0", - "921521054540522": "0xa0", - "921521055911956": "0xa0", - "921521057452817": "0xa0", - "921521067107110": "0xa0", - "921521065767862": "0xa0", - "921521056659950": "0xa0", - "921521058293432": "0xa0", - "921521053912448": "0xa0", - "921521067107430": "0xa0", - "921521067106950": "0xa0", - "921521057452977": "0xa0", - "921521057453137": "0xa0" - }, - "plotIndexes": [ - "0x3461e57260b87", - "0x3461e571be2ea", - "0x3461e5730d014", - "0x3461e57485311", - "0x3461e57dba326", - "0x3461e57c733b6", - "0x3461e573c39ee", - "0x3461e575526b8", - "0x3461e57124d80", - "0x3461e57dba466", - "0x3461e57dba286", - "0x3461e574853b1", - "0x3461e57485451" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x5fA5d55f11BA187d4C318b21A2c1B67714b5A9e4": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xfF961eD9c48FBEbDEf48542432D21efA546ddb89": { - "roots": "0x2928ddd49667a20b33400000", - "stalk": "0x2d4168427ef400", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x136fe5", - "bdv": "0x136fe5" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": { - "278495413994289": "0x393933bc0", - "698298390580000": "0x7e6eceb89", - "800030544923179": "0xd18f153d0", - "843809565189232": "0x3814dd9c4", - "862922651882432": "0x8a59c998f4", - "922824131039105": "0xcad4181c88", - "928724942845271": "0x49ebbf5226", - "948946767655894": "0xdfcb9c1df", - "972673204896245": "0x2006f2470e", - "979747827188563": "0x3da40b234c" - }, - "plotIndexes": [ - "0xfd4a44390331", - "0x27b1943848b20", - "0x2d79fa0708a2b", - "0x2ff70b9642470", - "0x310d2d62253c0", - "0x3474dbc854f81", - "0x34caba04ff557", - "0x35f0fe2ff33d6", - "0x374a420dc41f5", - "0x37b1351358353" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x136fe5" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x9F791Ae2160f4Ec6D9c8986c40Da9b99c3A5F2FE": { - "roots": "0x65a4da25d3016c00000", - "stalk": "0x6fc23ac00", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x401", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x3", - "bdv": "0x3" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x3" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x2f0FDFC5c1F15a56017f3Ed69A47ABdCc0bB2ae7": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x63a3f4" - }, - "sop": {} - }, - "0x6115E98D1183987f5f6224Aa63215E20C7B41680": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x66fA22aEfb2cF14c1fA45725c36C2542521C0d3E": { - "roots": "0x18f9e56fd9bfe06606e800000", - "stalk": "0x1b7629cb6f66800", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0xbcb6ea", - "bdv": "0xbcb6ea" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": { - "145586439347522": "0xc81f826" - }, - "plotIndexes": ["0x8468fc005d42"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0xbcb6ea" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xcaf0648" - }, - "sop": {} - }, - "0x4bD60086997F3896332B612eC36d30A6Ad57928E": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x185a60" - }, - "sop": {} - }, - "0xA88bbFF5B5edec5Ab232174cce7e0921EAAa0EdC": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x18c66f74" - }, - "sop": {} - }, - "0xd5d37cb5d2Fb53C998b645bcDA99B00d36643a7A": { - "roots": "0x1026609d3c1549f50151c00000", - "stalk": "0x11c1cbc83b605c00", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x7a0678f", - "bdv": "0x7a0678f" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x7a0678f" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x00c2CdFd0CCF699632d87BAc5802e9136F9989E2": { - "roots": "0x41c13ba5d170701f4b400000", - "stalk": "0x484c55ddc87400", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x1f0d45", - "bdv": "0x1f0d45" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x1f0d45" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x263397A2559b0BD4E0eF2c7D4195a53F0ca58b9E": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xb3b454c4b4a73ccdd5c79c8e0E4e703B478E872D": { - "roots": "0x21e19e0c9bab2400000", - "stalk": "0x2540be400", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x1", - "bdv": "0x1" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x1" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x2ae5c12", - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xb853530c" - }, - "sop": {} - }, - "0x054EA9bF1E3e8577b106730D5FF47d333ef05233": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x55179ffEFc2d49daB14BA15D25fb023408450409": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "90007738582860": "0x6130d230c", - "285652969925862": "0x213a36873", - "285585338065737": "0x27b15263c", - "285661889336665": "0x18dd67d00", - "293738371159084": "0x2e9336c88", - "293521542986844": "0x182be9b2c", - "311216880418289": "0x140529a68", - "310884055386319": "0x118d86ed1", - "572129929809800": "0xdaba08a80", - "825221386036599": "0x42e11ad3", - "827301562675683": "0x1f90cc84f" - }, - "plotIndexes": [ - "0x51dc8f49074c", - "0x103ccc3cd2ce6", - "0x103bd04a0e349", - "0x103ced7709559", - "0x10b274b45142c", - "0x10af4cf4dbc5c", - "0x11b0cd39afdf1", - "0x11abf55b008cf", - "0x20859613b4f88", - "0x2ee88d3936577", - "0x2f06d27c3f1e3" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x4889e0110" - }, - "sop": {} - }, - "0xED1D7713863d16830F7621c61103f79C385f7CC9": { - "roots": "0x2ce3510ea4b654698a9c00000", - "stalk": "0x315ad614a9ddc00", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x15329ef", - "bdv": "0x15329ef" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x15329ef" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x7E88276D8D638426f4CB3b4bBb5a9BF42C24075a": { - "roots": "0xa5d768ad96b661e6400000", - "stalk": "0xb658373b2400", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x4e51", - "bdv": "0x4e51" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x4e51" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xAFFA4d2BA07F854F3dC34D2C4ce3c1602731043f": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "830263701820170": "0x4d394980", - "832093433457838": "0x287af0a41", - "843732436968356": "0x481cc0260", - "844485217740720": "0x4b74ac5c0" - }, - "plotIndexes": ["0x2f31ed504530a", "0x2f4c8d9856cae", "0x2ff5ec430e3a4", "0x3000e096be7b0"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x1a6d39" - }, - "sop": {} - }, - "0xca71e1c8c80654c872fdD2b8BC65233e9468c802": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x401", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xCDbe0c24C858a75eADC38eb9a8DDAEE7f1598f71": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xb0B822e1c3995503442682CaEea1b6c683169D2e": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA00dAf62D5549D265c5cA6D6BE87eF17881279": "0x98f4c7" - }, - "sop": {} - }, - "0xF5Bf009BEC4cbb93E9571fFb7E1428ffFD398191": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x734A6263fE23c1d68Ec9042e03082575C34c968C": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x13e368" - }, - "sop": {} - }, - "0x97B10F1d005C8edee0FB004af3Bb6E7B47c954fF": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "740627952214807": "0x3c405cdd", - "741114340898555": "0x12d45fd7a", - "973020995561025": "0x3789ceffa" - }, - "plotIndexes": ["0x2a198e200a317", "0x2a20a2106f6fb", "0x374f51acca641"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x8c40b54" - }, - "sop": {} - }, - "0x4319fBf2c6B823e20EdAA4002F5eac872CcAd3BD": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x1ead95940" - }, - "sop": {} - }, - "0xC940a80B7ceeaF00798B9178E63210ffCd23Ba9b": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xD81a2cC2596E37Ae49322eDB198D84dc3986A3ed": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x30ffe" - }, - "sop": {} - }, - "0x575C9606CfcCF6F93D2E5a0C37d2C7696BCab132": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x7D0E6Ae85c94922427F1b1a1D3022Fa186dDb764": { - "roots": "0x16a469057a1cfe85afc00000", - "stalk": "0x18e5386ff03c00", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0xab147", - "bdv": "0xab147" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0xab147" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x6d253d11789415EB1d32D753956fE9AC78bD61b0": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x36144015872CF2d1d1498CF6df7fAe2880C1F079": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x652877AbA8812f976345FEf9ED3dd1Ab23268d5E": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "89189871782553": "0xde697e6" - }, - "plotIndexes": ["0x511e22a00a99"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x3a7f1a2c" - }, - "sop": {} - }, - "0x5b6c9938aB5D4F0a80b7f6f146b8B155164f4dcf": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x0000000002cE79Aacd54227D2163Ff3791338975": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x87dbeaa" - }, - "sop": {} - }, - "0x2c8BD739BC1eDd3a0Ce49A49652Ad715DDdF0670": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x83b33Ba5B1446955bee0B3110C163150f555e40e": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x2812ffa" - }, - "sop": {} - }, - "0xF28df3a3924eEC94853b66dAaAce2c85e1EB24ca": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "271616769085401": "0x8dd3e85d8", - "641335218453068": "0x979678590", - "689683744695426": "0x2c7c396232", - "687404158821438": "0x8290b6c37f", - "689874807391924": "0x1938fc68d5", - "686366502751306": "0xd4a1ca59a", - "691943291190327": "0x10195af68a", - "689174241648861": "0x76a0bf83a5", - "691661469732857": "0x1b47310b7", - "691679103646508": "0x3d82ce010b", - "686348394807411": "0x437514bd7", - "688677161946845": "0x7a7672630", - "686471231511801": "0xa6d21565d5", - "693083416760383": "0x10e31ff880", - "693535758530681": "0x2046c4582e", - "693249722635591": "0x8d33f790c", - "695155947986631": "0x108cddca4", - "695253546475556": "0x1117c0b5d", - "694663168126846": "0x9d082fcd8", - "695191279715360": "0x116dca638", - "695188857379843": "0x9061e81d", - "704433408190413": "0x704eef420", - "708018123634316": "0x393176b8c", - "724510428051588": "0x4571c07f77" - }, - "plotIndexes": [ - "0xf708b5094fd9", - "0x2474a7de0ba4c", - "0x27343829c2482", - "0x27130c0b4243e", - "0x2736ffed586b4", - "0x2703f27950c4a", - "0x275519a137c37", - "0x272cce1dca0dd", - "0x2750ffc354ff9", - "0x2751417457b2c", - "0x2703af043c073", - "0x27259259a4edd", - "0x2705789e71cf9", - "0x2765b0edb103f", - "0x276c46086b879", - "0x27681c7755547", - "0x2783d9b57dec7", - "0x2785454aaa024", - "0x277cadf5fef7e", - "0x27845d5474420", - "0x2784544e55c03", - "0x280adaf1027cd", - "0x283f050c0f68c", - "0x292f03ab33884" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x5a86CCA3fD278b39B82ADB696E27d4402D58dbe9": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xcCBF5d0A96ca77da1D21438eB9c06e485e6723C2": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xF35e261393F9705e10B378C6785582B2a5A71094": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x8EDa691ffE419A4Abe60b66809066852761b4D8d": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x548E13dDc5E2c6bC9456648A9a487DA335b6eC25": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xc48CdC9f5b35Bb6679DBE9a36a359fFB2dE8733E": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x6820572d10F8eC5B48694294F3FCFa1A640CFf40": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "291082705689464": "0x260d178cc", - "340047326378415": "0x22ecb25c00", - "340207113253615": "0x95ce396c0" - }, - "plotIndexes": ["0x108bcf945db78", "0x13545701879af", "0x1356aa422b2ef"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x71B49dd7E69CD8a1e81F7a1e3012C7c12195b7f9": { - "roots": "0x3e5423eb3d4d1d64fac00000", - "stalk": "0x4487f638bdec00", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x1d6f13", - "bdv": "0x1d6f13" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x1d6f13" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x9573470" - }, - "sop": {} - }, - "0xb1bE0000bFdcDDc92A8290202830C4Ef689dCeaa": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x49cE991352A44f7B50AF79b89a50db6289013633": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "214073509247175": "0x5e6042530", - "213316892343591": "0x4bc7097df", - "240823369076303": "0x29b1851f0", - "250466009925474": "0x78cf83fd5" - }, - "plotIndexes": ["0xc2b2df7978c7", "0xc202b597bd27", "0xdb070f5e0e4f", "0xe3cc298cc762"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x15209ef6", - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x1a2cb71a8", - "0x1BEA059c3Ea15F6C10be1c53d70C75fD1266D788": "0x6695fcb66" - }, - "sop": {} - }, - "0x9913DBA3ABcc837Ec9DABea34F49b3FbE431685a": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "623208367044871": "0x58606edbc0", - "628041084589709": "0x58606edbc0", - "631551446912047": "0x58606edbc0", - "626225804053540": "0x58606edbc0", - "632540467532047": "0x58606edbc0", - "629030105209709": "0x58606edbc0" - }, - "plotIndexes": [ - "0x236ce0156b907", - "0x23b3335c0568d", - "0x23e6487a68c2f", - "0x2398c8e998c24", - "0x23f4acddf910f", - "0x23c197bf95b6d" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xC0d3bBF4EB62004A7FD86f13f9048A1f8369b185": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xB1d229741797536194f54892CB3aA7545Fbf1450": { - "roots": "0x2da4e6d65d6002cecb5c00000", - "stalk": "0x322faf6fae29c00", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x158e09f", - "bdv": "0x158e09f" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x158e09f" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x90030396F05AA263776c15e418a908Da4B018157": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x2263c2e" - }, - "sop": {} - }, - "0xdFD6475eea9D67942ceb6c6ea09Cd500D4BE36b0": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "228812087123550": "0x12756dbdc", - "250515993903243": "0x25d6a6ad0", - "262376049001474": "0x32192f8b4", - "297495649811425": "0x1d599d3d4", - "387265643983999": "0x84134e485", - "470681734695761": "0x12ff7f6b5", - "476857007472007": "0x68600554", - "470677624988816": "0xf4f526c1", - "469548729191240": "0x7c3dcbc9", - "510093738357844": "0x6be53325", - "691647958342200": "0x16bdc8798", - "694421867540204": "0x2735afe6", - "707740682508050": "0x8200d341", - "707792108369382": "0x35cfcabeb", - "722432205171487": "0x822404b0c", - "720670274568288": "0x7ec3d349", - "733524513579895": "0x9e4fe65b", - "735406764740276": "0x30af0ae60", - "735386014435662": "0x4d4d08566" - }, - "plotIndexes": [ - "0xd01a772c5e5e", - "0xe3d7ccd3c08b", - "0xeea12f32c402", - "0x10e921a877be1", - "0x160374f24b47f", - "0x1ac1521994b51", - "0x1b1b2ec89fd87", - "0x1ac142ca42490", - "0x1ab0d55354b48", - "0x1cfed7413b454", - "0x2750cd6ddda38", - "0x27792b0bd2eec", - "0x283afb7f95712", - "0x283bbb131b5e6", - "0x2910c5af6ab1f", - "0x28f721fb74060", - "0x29b22fc10e377", - "0x29cd93afa4eb4", - "0x29cd46629c94e" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x155ab09", - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x1f980e91", - "0x1BEA059c3Ea15F6C10be1c53d70C75fD1266D788": "0x52ef8877" - }, - "sop": {} - }, - "0xE8fddb45457CF34EbDdcDb79C3FCFdA311049aed": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x38f733Fb3180276bE19135B3878580126F32c5Ab": { - "roots": "0xbeba8d70a392c0b0cc00000", - "stalk": "0xd1b55cba50c00", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x5a11b", - "bdv": "0x5a11b" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": { - "94419985260424": "0x625500a", - "828251362986796": "0x88ae16d8", - "828771230228142": "0x2182c663" - }, - "plotIndexes": ["0x55dfddae5f88", "0x2f14a4c468b2c", "0x2f1c356c71eae"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x5a11b" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x2ba7e63FA4F30e18d71755DeB4f5385B9f0b7DCf": { - "roots": "0xdf2bb5e67620ff894c00000", - "stalk": "0xf560fae558c00", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x6963b", - "bdv": "0x6963b" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": { - "848000854335918": "0x3795157f", - "848000403545262": "0x1ade8500" - }, - "plotIndexes": ["0x3034095b121ae", "0x303407ad29cae"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x6963b" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xe47cfc1" - }, - "sop": {} - }, - "0x82a8409a264ea933405f5Fe0c4011c3327626D9B": { - "roots": "0x290b451ee6a426abe0c00000", - "stalk": "0x2d20dd944e4c00", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x1361eb", - "bdv": "0x1361eb" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": { - "931232211328334": "0xb588ae6d6" - }, - "plotIndexes": ["0x34ef36528dd4e"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x1361eb" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xe5D57B3546663EdeCa885cF5e4E4fc318cc51168": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xf6F46f437691b6C42cd92c91b1b7c251D6793222": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "741776141210263": "0x69e3768c1", - "920756460282115": "0x51d9cebb0" - }, - "plotIndexes": ["0x2a2a437665297", "0x3456c51bd6103"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x3f4a1a" - }, - "sop": {} - }, - "0xB615e3E80f20beA214076c463D61B336f6676566": { - "roots": "0x3235102fd8f1b421cc00000", - "stalk": "0x373417ac60c00", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x17b5b", - "bdv": "0x17b5b" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": { - "218760793154163": "0x18cde1a95", - "513181895808128": "0x1ca7f4cec", - "707530520602109": "0x85bfe0ef8" - }, - "plotIndexes": ["0xc6f6375de273", "0x1d2bc789ad480", "0x2837ec95925fd"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x17b5b" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xe7453d383EB7d1D2C34e62AB0c1a3865B064Babb": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x66C19e3612efa7b18C18ee4D75A8aaE1d7902225": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x12a23890" - }, - "sop": {} - }, - "0x6Ab61142B3893dD2E4bdcb25AaA77db56cc4b8f3": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x0aF4a5c820cC97fC86d9be25d3cD4791eD436866": { - "roots": "0x1891a8753fe9bba167400000", - "stalk": "0x1b038d599e3400", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0xb9a35", - "bdv": "0xb9a35" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0xb9a35" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x4f4dae8" - }, - "sop": {} - }, - "0xe27bdF8c099934f425a1C604DFc9A82C3b3DD458": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "446838825122091": "0x45043a76" - }, - "plotIndexes": ["0x19665c571792b"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x32a9ee8" - }, - "sop": {} - }, - "0x99854BA0A00012336fb508c082e5Bd974333dBD3": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x0D8969Db749fa22C8107Ff3871E30b2DA246984c": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x48c7e0db3DAd3FE4Eb0513b86fe5C38ebB4E0F91": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "647238507263452": "0x16268c280" - }, - "plotIndexes": ["0x24ca8f54f75dc"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x4FE7788DEb22C548E57c4E95a365600Ed377265B": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x5c2e9221bc596e5E50C109cd6cAEa616764491Ec": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xC94D518EC16c9221f72f3F4Ca48746F4972C57ea": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x104F621B57Dc5c928cFea658fA3dF1a7310be2DF": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x543B4bb8915A5090588F0AD567283d669295D924": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xcf5C67136c5AaFcdBa3195E1dA38A3eE792434D6": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x2efb1" - }, - "sop": {} - }, - "0x3a472FD2bab732329Ea490440e8015e126a4FDB7": { - "roots": "0x21e19e0c9bab2400000", - "stalk": "0x2540be400", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x1", - "bdv": "0x1" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x1" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xdc785D07b151fbB39A0B1742558BFac7f4cf330E": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xAFF0f9e75A6030b342577E29fAaA90E5d6f09bCE": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xe0A2bBCE060EC449f8Ac00Bfc5df4CB0f1167786": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x7e946603F26b7F46FDB0D106124db35Bf14fCdb8": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xa1622394854BA618764Fcb57B15c510AECFfe8a0": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xf7a7ae64Cf9E9dd26Fd2530a9B6fC571A31e75A1": { - "roots": "0x1b87506a3e7b0d400000", - "stalk": "0x1e449a9400", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0xd", - "bdv": "0xd" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0xd" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x194c58c" - }, - "sop": {} - }, - "0x9129D3AeC25F8c7E74b8ce3e1f1d755329A2792F": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x401", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x642daF04770fd6c258CC26EF78505Df4D2DC4091": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xcBF3d4AB955d0bE844DbAed50d3A6e94Ada97E8b": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "89190104998527": "0x24168f" - }, - "plotIndexes": ["0x511e3086a27f"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x0C46F12612Dbc8b10FF4c5385d10C12052b95b99": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xf7379F7091860b685A055aCf64434D32220C1659": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x3bB6c5D9883556AcA4305a46DDFfC67fcCa39352": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x8967362138b31874F4b0b4754ab0555563A94849": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x9821Aac07d0724C69835367D596352Aaf09C309c": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xF6aaadA76eA7f044ffA028565b028740Dce5389F": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xb7ab3f0667eFF5e2299d39C23Aa0C956e8982235": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xcDe68F6a7078f47Ee664cCBc594c9026a8a72d25": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "79182786251454": "0x1c13553d4", - "88804198806155": "0x1952bb8a", - "89664849254055": "0x9fbbc4a5", - "92749915150291": "0xc2f374cc", - "89667529136972": "0x36bfaf73a", - "89738429009108": "0x5b379585c", - "90007717538406": "0x1411ce6", - "89618037954768": "0xcb8f9ec9", - "92791464007095": "0x1de7623b0", - "89607142206304": "0x100f3a839", - "93526764525688": "0xef3773fb", - "93172058592273": "0x3f621f762", - "93518899641683": "0x12a05f200", - "93513899641683": "0x12a05f200", - "93489828194161": "0x30e1dac22", - "93061720723498": "0xa59e5b97", - "94344360260424": "0x28c350fc5", - "99853956449927": "0xb2755e", - "102452933462070": "0x1c8f46bd9", - "102464387242791": "0xd78052a8", - "117244874310129": "0xc26b2", - "112307342413569": "0x40cba1883", - "102474523284594": "0x1d7f44a9b", - "133684807083166": "0x37ae610", - "128226210874732": "0x559b66", - "128760521677597": "0x6fc23ac00", - "128507585109607": "0x5a2d4d5", - "131666681045210": "0x3597cbb", - "148895359495855": "0x4ccbc8608", - "145726675134910": "0x6864b1e", - "145689641471760": "0x738424c", - "150109707437893": "0x80fede6", - "280560810691370": "0xa9e3cf50f", - "302500361239637": "0x6813e88ac", - "707863376349667": "0x1233d678f", - "718096885617267": "0x149aafd96", - "736285402938829": "0xb028528", - "743141962222302": "0x2540be400", - "824882897708819": "0x124f7", - "920556437450010": "0x2e90edcf6f", - "891260306698319": "0xe8d4a50fbe", - "897526482144569": "0xd3813f88ae", - "906685007105154": "0x4583f21c20", - "947737266638625": "0x138c5cd901", - "947416151681051": "0x276dfe9b5b", - "961127308227772": "0x30fcd13800", - "976435448714174": "0x88fa85ec1", - "976407929873421": "0x404a26ce3" - }, - "plotIndexes": [ - "0x48042dd8cabe", - "0x50c456b9728b", - "0x518cb97d16a7", - "0x545b05bed7d3", - "0x518d5938db4c", - "0x519ddb2f0cd4", - "0x51dc8e07ea66", - "0x5181d35158d0", - "0x5464b24015b7", - "0x517f49e16b60", - "0x550fe5939878", - "0x54bd4f749411", - "0x550e10cafd53", - "0x550ce6c50b53", - "0x55074bffe771", - "0x54a39ece502a", - "0x55ce42147348", - "0x5ad10f9a8687", - "0x5d2e2eb48836", - "0x5d30d9675b27", - "0x6aa23315c1f1", - "0x662497400f01", - "0x5d33358f1472", - "0x7995eb70249e", - "0x749efdc0056c", - "0x751b6527db1d", - "0x74e080f61e67", - "0x77c009c0a0da", - "0x876b6702eeaf", - "0x8489a2b4a9be", - "0x84810353cf10", - "0x888623ca0745", - "0xff2b27758b2a", - "0x1131f5a937c55", - "0x283cc4918c9e3", - "0x28d1af5c81273", - "0x29da5cde53dcd", - "0x2a3e238ad0ade", - "0x2ee3a04196713", - "0x3453dbf732d1a", - "0x32a98b5fbb04f", - "0x3304bab250d39", - "0x338a00dc58c82", - "0x35df6471e4f21", - "0x35dab832ce81b", - "0x36a23e3ca74bc", - "0x37810181113be", - "0x37809afd0e40d" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xA92aB746eaC03E5eC31Cd3A879014a7D1e04640c": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "89518725321659": "0x1a1a1d2f3", - "92753185885345": "0x3152a5e0", - "92718049689405": "0x40cfd8d6", - "93309455842273": "0x1bf08eb0", - "93292097092273": "0x3152a5e0", - "93139374842273": "0xa88839e0" - }, - "plotIndexes": [ - "0x516ab3d2d3bb", - "0x545bc8b24ca1", - "0x54539a6a7f3d", - "0x54dd4cf83be1", - "0x54d9424ebab1", - "0x54b5b35a21a1" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xccff78c" - }, - "sop": {} - }, - "0x40ca67bA095c038B711AD37BbebAd8a586ae6f38": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x5f18d" - }, - "sop": {} - }, - "0xa77056BeeD4FAad617724A813cf9120D35308B7C": { - "roots": "0x48433316e40302c800000", - "stalk": "0x4f7415c4800", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x222", - "bdv": "0x222" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x222" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x25f030D68E56F831011c8821913CED6248Dd0676": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xc8dbd54" - }, - "sop": {} - }, - "0x89D17FEedA1d1FcC73Bb5c9e403CCF38aff301A4": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x5a34897A6c1607811Ae763350839720c02107682": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "829849331491739": "0xd4095a9c8" - }, - "plotIndexes": ["0x2f2be5a9ee39b"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x16588520" - }, - "sop": {} - }, - "0x39522C0146B51e9B502fE628A022808da2645A34": { - "roots": "0x7c0baba69cf2ee491e400000", - "stalk": "0x8863ba9e16a400", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x3a9431", - "bdv": "0x3a9431" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x3a9431" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xC81635aBBF6EC73d0271F237a78b6456D6766132": { - "roots": "0x21e19e0c9bab2400000", - "stalk": "0x2540be400", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x401", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x1", - "bdv": "0x1" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x1" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x6a25ec64", - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xe46d0c577", - "0x1BEA059c3Ea15F6C10be1c53d70C75fD1266D788": "0x93e82f2b8" - }, - "sop": {} - }, - "0x48Bd8B9287Aa6C592f1B44c87901cf24A5b64228": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xe9C8C25038bF05DFC4E408b42D5751Ab6af30b85": { - "roots": "0x1399940db3aa61f097000000", - "stalk": "0x158ce2bea67000", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x9417c", - "bdv": "0x9417c" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x9417c" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xB77c0dBA1186483E9cc284a950564Fe886c12dB8": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x3D63719699585FD0bb308174d3f0aD8082d8c5A2": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x27ab85fc" - }, - "sop": {} - }, - "0xaF616dABa40f81b75aF5373294d4dBE29DD0E0f6": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x7482fe6A86C52D6eEb42E92A8F661f5b027d4397": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "731041912594216": "0xa5858bf", - "725798462383772": "0x1e1f766", - "738895645474676": "0xec27a0", - "738895660951316": "0x3654b10" - }, - "plotIndexes": ["0x298e0f5841f28", "0x2941c1f87669c", "0x2a0058c797f74", "0x2a0058d65a714"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x6579df7" - }, - "sop": {} - }, - "0xbDAaA4D3aB02badBD2C1B5AdaF673184B62FE7Ee": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xAf812E8BABab3173EdCE179fE6Fc6c2B1c482E39": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x2d7605" - }, - "sop": {} - }, - "0x9c8fc7e1BEaA9152B555D081C4bcC326cB13C72b": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "446848533640999": "0xbd8030a5", - "446823738027105": "0xcf4fbe26", - "456637461841745": "0x7823fad5", - "666276777312860": "0x310b31a380", - "693767795503827": "0x11b9ffe7c0", - "725784022220843": "0x35cb36671", - "736285587653365": "0x13897172f7", - "737958552803938": "0x2540be400" - }, - "plotIndexes": [ - "0x19668081db727", - "0x19662422eac61", - "0x19f4f31b44751", - "0x25df9a6a2425c", - "0x276fa6701f2d3", - "0x29418c2d4002b", - "0x29da5d8e7c2f5", - "0x29f2b5d661a62" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x58D9A499AC82D74b08b3Cb76E69d8f32e1395746": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "256773707204461": "0xa55cc4a8", - "828446266196477": "0xe825dab0", - "828707802792097": "0x101bb0100", - "828977278210961": "0x10d2cb100", - "829014107524072": "0x10db60540" - }, - "plotIndexes": [ - "0xe988c99b076d", - "0x2f177ad6981fd", - "0x2f1b4923540a1", - "0x2f1f35031d391", - "0x2f1fbe3648be8" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xd216472bcc3e6080Fc28BC95D0565128ffE16De9": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x15AD9ef623b0D635F2eEBf20e0548121CBaFc719": { - "roots": "0x33a5bcd542e3163f66800000", - "stalk": "0x38c9744a8de800", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x1863ca", - "bdv": "0x1863ca" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x1863ca" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x8a1802888" - }, - "sop": {} - }, - "0x53c9AccDD1C2162B416899edB87Eb69C58aFFacf": { - "roots": "0x21e19e0c9bab2400000", - "stalk": "0x2540be400", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x1", - "bdv": "0x1" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x1" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x4bdf56" - }, - "sop": {} - }, - "0xb11903Ec9E1036F1a3FaFe5815E84D8c1f62e254": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "741699585297794": "0x2fa5d3086", - "802201950732340": "0xd9d6e012c", - "872308325991218": "0x46bb398c2", - "872290220599070": "0x28e2166ff", - "910475277864161": "0x2a981dbe0", - "922625815607546": "0x1a52d5a2b" - }, - "plotIndexes": [ - "0x2a292644fcd82", - "0x2d999324fc034", - "0x3195c1be7c332", - "0x31957e4bd671e", - "0x33c128b838ce1", - "0x3471f8ffff8fa" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x136e83" - }, - "sop": {} - }, - "0x71678647939666d2c8D3C198B62da9028c5EBabC": { - "roots": "0xe6a102433020507ebd000000", - "stalk": "0xfd9446966ad000", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x6ce954", - "bdv": "0x6ce954" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x6ce954" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x027be82BF7895db5fc1Fea5696117e875BbCc0dE": { - "roots": "0xb2bcb8458336556a000000", - "stalk": "0xc4860ba4a000", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": { - "86222139228609838984622303097359211701898488658201059011717492786806482056773": { - "amount": "0x5468", - "bdv": "0x5468" - } - }, - "depositIdList": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": [ - "0xbea0005b8599265d41256905a9b3073d397812e400000000000000087d50b645" - ] - }, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": { - "lastStem": "0x87d50b645", - "bdv": "0x5468" - } - }, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x291882" - }, - "sop": {} - }, - "0x5add1ceC842699d7d0EaEA77632F92Cf3f3Ff8cf": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x0D5a8A26B9172f8C5b6449167f6F307A756F1EE5": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x032865e6e27E90F465968ffc635900a4F7CEEB84": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "787511545768874": "0x122e5aa2c" - }, - "plotIndexes": ["0x2cc3cd1f12baa"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x952ea9dc718A8AF41Aa9f66a2CdF33fd68adEfAf": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": {}, - "plotIndexes": [] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xF493Fd087093522526b1fF0A14Ec79A1f77945cF": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "844505595006708": "0x4d11010" - }, - "plotIndexes": ["0x30012c8004ef4"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xc9bB1DCDBF9Ed97298301569AB648e26d51Ce09b": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "65961902893995": "0x1695ad177", - "99851702914852": "0x86523763", - "133665483117841": "0x47fcc4f8d", - "949006843151357": "0xb8fea6a05" - }, - "plotIndexes": ["0x3bfdf3ca6bab", "0x5ad089484f24", "0x79916ba3d511", "0x35f1ddfc683fd"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x34347f40" - }, - "sop": {} - }, - "0x632f3c0548f656c8470e2882582d02602CfF821C": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "68519420745986": "0x13d2f245a" - }, - "plotIndexes": ["0x3e516bbbd902"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x2920A3192613d8c42f21b64873dc0Ddfcbf018D4": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "68524742212956": "0x2540be400" - }, - "plotIndexes": ["0x3e52a8eafd5c"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x7fFA930D3F4774a0ba1d1fBB5b26000BBb90cA70": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "81429748380955": "0x1", - "202233002999979": "0x8aa79219", - "202235329237700": "0x576816d2", - "218671968549714": "0xe5d1f417", - "694491673804561": "0x2170596a0" - }, - "plotIndexes": [ - "0x4a0f5739f51b", - "0xb7ee0a4e40ab", - "0xb7ee94f5d2c4", - "0xc6e18901fb52", - "0x277a2f1843f11" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xd39" - }, - "sop": {} - }, - "0x854e4406b9C2CFdC36a8992f1718e09E5F0D2371": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "66081776800891": "0xae10de" - }, - "plotIndexes": ["0x3c19dcd5147b"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x77" - }, - "sop": {} - }, - "0x1b9A6108D335e6E0E0325Ccc5b0164BFB65c6B9E": { -<<<<<<< HEAD - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "74106039934810": "0x4ea004d8b" - }, - "plotIndexes": [ - "0x4366282f9f5a" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xB6CC924486681a1ca489639200dcEB4c41C283d3": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "64890353334796": "0x732f1a343", - "147686892058520": "0xafba52799", - "168834068658194": "0x789901407", - "168866441350169": "0x4d0a9613c", - "152164040168590": "0x175913a746", - "250350635854037": "0xbbe927228", - "393026470651510": "0x30a7be2d35" - }, - "plotIndexes": [ - "0x3b047675ba0c", - "0x865208bd3798", - "0x998dbeb03812", - "0x999548404c19", - "0x8a64738fd48e", - "0xe3b14cb828d5", - "0x165749b2ba676" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xE9D18dbFd105155eb367fcFef87eAaAFD15ea4B2": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "68534742212956": "0x2540be400" - }, - "plotIndexes": [ - "0x3e54fcf6e15c" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x510b301E8E4828E54ca5e5F466d8F31e5Ce83EbE": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "81429748380956": "0x1d1b1d10e", - "117217726315318": "0x51d915b0", - "136979532734270": "0x3b9aca00", - "251882385453211": "0x4dc06fe22" - }, - "plotIndexes": [ - "0x4a0f5739f51c", - "0x6a9be0f03b36", - "0x7c950863df3e", - "0xe515f01c309b" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x6B7F8019390Aa85b4A8679f963295D568098Cf51": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "66099065602767": "0x9e15cd766" - }, - "plotIndexes": [ - "0x3c1de35342cf" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x0d619C8e3194b2aA5eddDdE5768c431bA76E27A4": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "79190322716306": "0xcae9ee5c6" - }, - "plotIndexes": [ - "0x4805ef0e1e92" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x52f3F126342fca99AC76D7c8f364671C9bb3fC67": { -======= ->>>>>>> b689ac329 (feat: update reseed jsons) - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "89507398941830": "0xd225540d", - "89656246550500": "0x200c2d6c3", - "743848476657704": "0x498371a2", - "855190099925501": "0x189a6c3d80", - "863597854618078": "0x8eaabeff80", - "859424786465221": "0x342c357400", - "909448360414556": "0xe40bf49120", - "887758447796303": "0xe8e43fd040", - "921034865451866": "0x125d4140", - "921034560497738": "0x122d3b10", - "921035333523306": "0x8e529cc", - "921035173553306": "0x988f2d0", - "921035482759478": "0x12799b89" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x516810b7fc86", - "0x518ab8ba3fe4", - "0x2a486b837c828", - "0x309ca761f19fd", - "0x311700b5a71de", - "0x30da46d1bc1c5", - "0x33b237276cd5c", - "0x327695eed604f", - "0x345ad23fb235a", - "0x345ad11cde84a", - "0x345ad3fe1576a", - "0x345ad3658649a", - "0x345ad48c68136" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x251FAe8f687545BDD462Ba4FCDd7581051740463": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "89496924603539": "0x2540be400", - "99851452914852": "0xee6b280", - "94235781987404": "0x17f8daca9", - "122129787959482": "0x2f0d67ef", - "133665283117841": "0xbebc200", - "137124860862443": "0x139ffcb25", - "136913196875357": "0xaefecdac", - "278603290580864": "0x4d1446cc", - "281273103745391": "0xb098184a4", - "394751719356676": "0x2ebdfc9785", - "439356635751198": "0x267775bd", - "636808516114655": "0x8f6572fd8", - "635516475006264": "0xd0160cc58", - "687313439949641": "0x151f4420f5", - "695163561382883": "0x6cef6f74", - "741224630773020": "0x25ad5353a", - "828953329689546": "0x450c7a1f", - "829107101257549": "0x5fc3fdc0", - "851791077155618": "0xe2ef57ea7", - "853786403387780": "0x298d02ae6", - "906315055949346": "0xe96c905cc" - }, - "plotIndexes": [ - "0x5165a0664493", - "0x5ad07a619ca4", - "0x55b4fa4f7c4c", - "0x6f138ea0b8ba", - "0x79915fb81311", - "0x7cb6de9f1feb", - "0x7c859676fe5d", - "0xfd63622b1780", - "0xffd0ff6f016f", - "0x167064c01b904", - "0x18f97b034231e", - "0x2432c896498df", - "0x241ffb5bddd38", - "0x2711ba1700349", - "0x2783f612313e3", - "0x2a223ced0e51c", - "0x2f1edbcc063ca", - "0x2f2118a404f4d", - "0x306b31093a322", - "0x30883a349b984", - "0x33849eaf6e622" - ] -======= - "plotIndexes": ["0x4366282f9f5a"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xC1E64944de6BEE91752431fF83507dCBd57E186b": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { -<<<<<<< HEAD - "89547003810515": "0x1420067a5" - }, - "plotIndexes": [ - "0x5171495a52d3" -======= - "64890353334796": "0x732f1a343", - "147686892058520": "0xafba52799", - "168834068658194": "0x789901407", - "168866441350169": "0x4d0a9613c", - "152164040168590": "0x175913a746", - "250350635854037": "0xbbe927228", - "393026470651510": "0x30a7be2d35" - }, - "plotIndexes": [ - "0x3b047675ba0c", - "0x865208bd3798", - "0x998dbeb03812", - "0x999548404c19", - "0x8a64738fd48e", - "0xe3b14cb828d5", - "0x165749b2ba676" ->>>>>>> b689ac329 (feat: update reseed jsons) - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, -<<<<<<< HEAD - "0x12B9D75389409d119Dd9a96DF1D41092204e8f32": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "92695810999829": "0x2b7307b6c" - }, - "plotIndexes": [ - "0x544e6ce30615" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xAA420e97534aB55637957e868b658193b112A551": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "92901634103041": "0xa23335380" - }, - "plotIndexes": [ - "0x547e58e65701" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x4d508e880" - }, - "sop": {} - }, - "0xd0D628acf9E985c94a4542CaE88E0Af7B2378c81": { -======= - "0xE9D18dbFd105155eb367fcFef87eAaAFD15ea4B2": { ->>>>>>> b689ac329 (feat: update reseed jsons) - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "68534742212956": "0x2540be400" - }, - "plotIndexes": ["0x3e54fcf6e15c"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, -<<<<<<< HEAD - "0x76a05Df20bFEF5EcE3eB16afF9cb10134199A921": { -======= - "0x510b301E8E4828E54ca5e5F466d8F31e5Ce83EbE": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "81429748380956": "0x1d1b1d10e", - "117217726315318": "0x51d915b0", - "136979532734270": "0x3b9aca00", - "251882385453211": "0x4dc06fe22" - }, - "plotIndexes": ["0x4a0f5739f51c", "0x6a9be0f03b36", "0x7c950863df3e", "0xe515f01c309b"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x6B7F8019390Aa85b4A8679f963295D568098Cf51": { ->>>>>>> b689ac329 (feat: update reseed jsons) - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "66099065602767": "0x9e15cd766" - }, - "plotIndexes": ["0x3c1de35342cf"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x0d619C8e3194b2aA5eddDdE5768c431bA76E27A4": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "79190322716306": "0xcae9ee5c6" - }, - "plotIndexes": ["0x4805ef0e1e92"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x52f3F126342fca99AC76D7c8f364671C9bb3fC67": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "89507398941830": "0xd225540d", - "89656246550500": "0x200c2d6c3", - "743848476657704": "0x498371a2", - "855190099925501": "0x189a6c3d80", - "863597854618078": "0x8eaabeff80", - "859424786465221": "0x342c357400", - "909448360414556": "0xe40bf49120", - "887758447796303": "0xe8e43fd040", - "921034865451866": "0x125d4140", - "921034560497738": "0x122d3b10", - "921035333523306": "0x8e529cc", - "921035173553306": "0x988f2d0", - "921035482759478": "0x12799b89" - }, - "plotIndexes": [ - "0x516810b7fc86", - "0x518ab8ba3fe4", - "0x2a486b837c828", - "0x309ca761f19fd", - "0x311700b5a71de", - "0x30da46d1bc1c5", - "0x33b237276cd5c", - "0x327695eed604f", - "0x345ad23fb235a", - "0x345ad11cde84a", - "0x345ad3fe1576a", - "0x345ad3658649a", - "0x345ad48c68136" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, -<<<<<<< HEAD -======= - "0x251FAe8f687545BDD462Ba4FCDd7581051740463": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "89496924603539": "0x2540be400", - "99851452914852": "0xee6b280", - "94235781987404": "0x17f8daca9", - "122129787959482": "0x2f0d67ef", - "133665283117841": "0xbebc200", - "137124860862443": "0x139ffcb25", - "136913196875357": "0xaefecdac", - "278603290580864": "0x4d1446cc", - "281273103745391": "0xb098184a4", - "394751719356676": "0x2ebdfc9785", - "439356635751198": "0x267775bd", - "636808516114655": "0x8f6572fd8", - "635516475006264": "0xd0160cc58", - "687313439949641": "0x151f4420f5", - "695163561382883": "0x6cef6f74", - "741224630773020": "0x25ad5353a", - "828953329689546": "0x450c7a1f", - "829107101257549": "0x5fc3fdc0", - "851791077155618": "0xe2ef57ea7", - "853786403387780": "0x298d02ae6", - "906315055949346": "0xe96c905cc" - }, - "plotIndexes": [ - "0x5165a0664493", - "0x5ad07a619ca4", - "0x55b4fa4f7c4c", - "0x6f138ea0b8ba", - "0x79915fb81311", - "0x7cb6de9f1feb", - "0x7c859676fe5d", - "0xfd63622b1780", - "0xffd0ff6f016f", - "0x167064c01b904", - "0x18f97b034231e", - "0x2432c896498df", - "0x241ffb5bddd38", - "0x2711ba1700349", - "0x2783f612313e3", - "0x2a223ced0e51c", - "0x2f1edbcc063ca", - "0x2f2118a404f4d", - "0x306b31093a322", - "0x30883a349b984", - "0x33849eaf6e622" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xC1E64944de6BEE91752431fF83507dCBd57E186b": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "89547003810515": "0x1420067a5" - }, - "plotIndexes": ["0x5171495a52d3"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x12B9D75389409d119Dd9a96DF1D41092204e8f32": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "92695810999829": "0x2b7307b6c" - }, - "plotIndexes": ["0x544e6ce30615"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xAA420e97534aB55637957e868b658193b112A551": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "92901634103041": "0xa23335380" - }, - "plotIndexes": ["0x547e58e65701"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x4d508e880" - }, - "sop": {} - }, - "0xd0D628acf9E985c94a4542CaE88E0Af7B2378c81": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "89208643960630": "0x2dc6c0", - "122216130970075": "0x51cbad9a1", - "684090892689899": "0x343e20b01" - }, - "plotIndexes": ["0x51228188bf36", "0x6f27a91281db", "0x26e2d52a721eb"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x141241c" - }, - "sop": {} - }, - "0x76a05Df20bFEF5EcE3eB16afF9cb10134199A921": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "92743843990177": "0x1685f7d0d", - "634649380286759": "0x13675c2571" - }, - "plotIndexes": ["0x54599be04aa1", "0x24135d2de7127"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xd29bf10" - }, - "sop": {} - }, ->>>>>>> b689ac329 (feat: update reseed jsons) - "0x1FA29B6DcBC5fA3B529fEecd46F57Ee46718716b": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "94074534759816": "0x258b156ec4" - }, - "plotIndexes": ["0x558f6f3a0d88"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x44440AA675Ae3196E2614c1A9Ac897e5Cd6F8545": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "94280290718369": "0x3e43d783", - "704216199980940": "0x5e935e5c" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x55bf573cd2a1", - "0x2807b1c71e78c" - ] -======= - "plotIndexes": ["0x55bf573cd2a1", "0x2807b1c71e78c"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x5Ea861872592804FF69847Dd73Eef2BD01A0dde0": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "99847422900232": "0xf035249c" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x5acf8a2c7808" - ] -======= - "plotIndexes": ["0x5acf8a2c7808"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x5e93941A8f3Aede7788188b6CB8092b6e57d02A6": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "94281335351848": "0x389fd980", - "437580444503704": "0x4c3aee346", - "463414838278024": "0x2d4850279", - "662850624131661": "0x3e82892fe", - "695537635383030": "0x15e2b763f", - "697945151970404": "0x22f996129", - "701398278226282": "0x1509633d8", - "705660334202228": "0xc922c8a0" - }, - "plotIndexes": [ - "0x55bf9580aa28", - "0x18dfa22f48e98", - "0x1a5792cd1b788", - "0x25adbeffd924d", - "0x2789679af56f6", - "0x27ac704db1c64", - "0x27deb0338416a", - "0x281cb598d5d74" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x2" - }, - "sop": {} - }, - "0x2206e33975EF5CBf8d0DE16e4c6574a3a3aC65B6": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "94255248987397": "0x7" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x55b982a25505" - ] -======= - "plotIndexes": ["0x55b982a25505"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xD99f87535972Ba63B0fcE0bC2B3F7a2aF7193886": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "93318838342273": "0x3521af400", - "591137392921024": "0x1d1a94a200", - "643048855332541": "0xc7d30ae5" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x54df7c35d281", - "0x219a2e65189c0", - "0x248d97a9866bd" - ] -======= - "plotIndexes": ["0x54df7c35d281", "0x219a2e65189c0", "0x248d97a9866bd"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x399baf8F9AD4B3289d905f416bD3e245792C5fA6": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "93009983755725": "0x8768c801" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x5497930ad5cd" - ] -======= - "plotIndexes": ["0x5497930ad5cd"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x284f942F11a5046a5D11BCbEC9beCb46d1172512": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "112217222887362": "0x99707621a", - "319598229117213": "0x1678c96929" - }, - "plotIndexes": ["0x660f9bb537c2", "0x122ac42ead91d"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x6bDd8c55a23D432D34c276A87584b8A96C03717F": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "113336590076810": "0x49912548d", - "113316826225763": "0x49a046f27" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x67143b310b8a", - "0x670fa12c9c63" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x14FC66BeBdBe500D1ee86FA3cBDc4d201E644248": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "102482441363213": "0x3e68c1130", - "102501887271161": "0x3fcdcb1", - "325399058895802": "0x48e728d01" - }, - "plotIndexes": [ - "0x5d350d835f0d", - "0x5d39949460f9", - "0x127f2df50d3ba" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x204912b8" - }, - "sop": {} - }, - "0x6A7E0712838A0b257C20e042cf9b6C5E910F221F": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "111519018790551": "0x3174540ce" - }, - "plotIndexes": [ - "0x656d0b802e97" - ] -======= - "plotIndexes": ["0x67143b310b8a", "0x670fa12c9c63"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xF3F03727e066B33323662ACa4BE939aFBE49d198": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { -<<<<<<< HEAD - "112305865851667": "0x57d7e7db" - }, - "plotIndexes": [ - "0x66243f3d8313" -======= - "102482441363213": "0x3e68c1130", - "102501887271161": "0x3fcdcb1", - "325399058895802": "0x48e728d01" - }, - "plotIndexes": ["0x5d350d835f0d", "0x5d39949460f9", "0x127f2df50d3ba"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x204912b8" - }, - "sop": {} - }, - "0x6A7E0712838A0b257C20e042cf9b6C5E910F221F": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "111519018790551": "0x3174540ce" - }, - "plotIndexes": ["0x656d0b802e97"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xF3F03727e066B33323662ACa4BE939aFBE49d198": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "112305865851667": "0x57d7e7db" - }, - "plotIndexes": ["0x66243f3d8313"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x1Bd6aAB7DCf6228D3Be0C244F1D36e23DAac3BAe": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "106868611705393": "0x3d76c6cf1", - "148243785783460": "0x2bdaaa3718", - "311692403880222": "0xc12ef6f32", - "328628658281539": "0x10502a0ce5", - "328527449691073": "0x1790808882", - "634504902771992": "0x890fb45d7", - "931736156920528": "0x1f1b0360c8e" - }, - "plotIndexes": [ - "0x613249a36a31", - "0x86d3b23118a4", - "0x11b7b8b03311e", - "0x12ae2d2709c43", - "0x12acb41f013c1", - "0x241142f568518", - "0x34f68baa85ad0" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x1850eb26" - }, - "sop": {} - }, - "0xd80eC2F30FB3542F0577EeD01fBDCCF007257127": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "117373037489804": "0x3eeaeffe8" - }, - "plotIndexes": ["0x6ac00a34ae8c"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x3a1Bc767d7442355E96BA646Ff83706f70518dAA": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "121663369666252": "0x8d59e225c", - "121742830315112": "0x4e7a29473d", - "446243884304809": "0x100a786310", - "445937161222528": "0x337e498fe9", - "489859129059979": "0x5098de0180", - "521589023122466": "0x2ea81881e0", - "505145411205774": "0xeb01072d8", - "571933833018999": "0x2da8479111" - }, - "plotIndexes": [ - "0x6ea6f5ee5ecc", - "0x6eb97627a668", - "0x195db403509a9", - "0x19593d6163980", - "0x1bd863760aa8b", - "0x1da61e8712422", - "0x1cb6d54cb7a8e", - "0x2082bb8f3be77" ->>>>>>> b689ac329 (feat: update reseed jsons) - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, -<<<<<<< HEAD - "0x1Bd6aAB7DCf6228D3Be0C244F1D36e23DAac3BAe": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "106868611705393": "0x3d76c6cf1", - "148243785783460": "0x2bdaaa3718", - "311692403880222": "0xc12ef6f32", - "328628658281539": "0x10502a0ce5", - "328527449691073": "0x1790808882", - "634504902771992": "0x890fb45d7", - "931736156920528": "0x1f1b0360c8e" - }, - "plotIndexes": [ - "0x613249a36a31", - "0x86d3b23118a4", - "0x11b7b8b03311e", - "0x12ae2d2709c43", - "0x12acb41f013c1", - "0x241142f568518", - "0x34f68baa85ad0" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x1850eb26" - }, - "sop": {} - }, - "0xd80eC2F30FB3542F0577EeD01fBDCCF007257127": { -======= - "0x9A5d202C5384a032473b2370D636DcA39adcC28f": { ->>>>>>> b689ac329 (feat: update reseed jsons) - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "102403247311465": "0x27ddfd011" - }, - "plotIndexes": ["0x5d229d2e0a69"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, -<<<<<<< HEAD - "0x3a1Bc767d7442355E96BA646Ff83706f70518dAA": { -======= - "0x12849Ec7cB1a7B29FAFD3E16Dc5159b2F5D67303": { ->>>>>>> b689ac329 (feat: update reseed jsons) - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { -<<<<<<< HEAD - "121663369666252": "0x8d59e225c", - "121742830315112": "0x4e7a29473d", - "446243884304809": "0x100a786310", - "445937161222528": "0x337e498fe9", - "489859129059979": "0x5098de0180", - "521589023122466": "0x2ea81881e0", - "505145411205774": "0xeb01072d8", - "571933833018999": "0x2da8479111" - }, - "plotIndexes": [ - "0x6ea6f5ee5ecc", - "0x6eb97627a668", - "0x195db403509a9", - "0x19593d6163980", - "0x1bd863760aa8b", - "0x1da61e8712422", - "0x1cb6d54cb7a8e", - "0x2082bb8f3be77" - ] -======= - "121128776667659": "0x528539e45e" - }, - "plotIndexes": ["0x6e2a7db4920b"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, -<<<<<<< HEAD - "0x9A5d202C5384a032473b2370D636DcA39adcC28f": { -======= - "0x085656Bd50C53E7e93D19270546956B00711FE2B": { ->>>>>>> b689ac329 (feat: update reseed jsons) - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { -<<<<<<< HEAD - "102403247311465": "0x27ddfd011" - }, - "plotIndexes": [ - "0x5d229d2e0a69" - ] -======= - "134062407569102": "0xf9c52f78a" - }, - "plotIndexes": ["0x79edd62e4ece"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, -<<<<<<< HEAD - "sop": {} - }, - "0x12849Ec7cB1a7B29FAFD3E16Dc5159b2F5D67303": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "121128776667659": "0x528539e45e" - }, - "plotIndexes": [ - "0x6e2a7db4920b" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x085656Bd50C53E7e93D19270546956B00711FE2B": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "134062407569102": "0xf9c52f78a" - }, - "plotIndexes": [ - "0x79edd62e4ece" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, -======= ->>>>>>> b689ac329 (feat: update reseed jsons) - "sop": {} - }, - "0x408fc5413Ea0D489D66acBc1BcB5369Fc9F32e22": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "137228728484742": "0x484b302fe", - "630926654506278": "0x4ed38a827", - "695170871906740": "0x918fa063", - "698060293717985": "0x4a45f4c25", - "700924209542750": "0x140899cd00", - "701813606595271": "0x2f060d5540" - }, - "plotIndexes": [ - "0x7ccf0d9d4386", - "0x23dd30f1f0526", - "0x2784114e0d1b4", - "0x27ae1d3d6bfe1", - "0x27d7ca286365e", - "0x27e4bb6b83ac7" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xb5566c4F8ee35E46c397CECf963Bfe9F8798F714": { -<<<<<<< HEAD -======= - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "137248134678148": "0x396392e4", - "640240084788517": "0xe0fbf3e0", - "695877378915987": "0xf7f49000" - }, - "plotIndexes": ["0x7cd392504684", "0x2464b82d32525", "0x278e593fa3e93"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xd5eF94eC1a13a9356C67CF9902B8eD22Ebd6A0f6": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "135334419409244": "0xba4090547", - "136132384541471": "0xbcb66de70" - }, - "plotIndexes": ["0x7b15fffea95c", "0x7bcfca6c4b1f"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x19CB3CfB44B052077E2c4dF7095900ce0b634056": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "137255763505128": "0x23d0ee19a" - }, - "plotIndexes": ["0x7cd55906efe8"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x6Ac3BDBB58D671f81563998dd9ca561d527E5F43": { ->>>>>>> b689ac329 (feat: update reseed jsons) - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "128468620580196": "0x912778903", - "887473260643431": "0x42667a9be8" - }, - "plotIndexes": ["0x74d76e7e9564", "0x32726f872c467"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x386f4e50" - }, - "sop": {} - }, - "0x93E4c75ff6e0C7BC4Bcfc7CA2F19e6733d6009Eb": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "137266188068234": "0x76a780b9", - "704198943665924": "0x190089fcc" - }, - "plotIndexes": ["0x7cd7c661258a", "0x2807717e36f04"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xd5eF94eC1a13a9356C67CF9902B8eD22Ebd6A0f6": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "135334419409244": "0xba4090547", - "136132384541471": "0xbcb66de70" - }, - "plotIndexes": [ - "0x7b15fffea95c", - "0x7bcfca6c4b1f" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x19CB3CfB44B052077E2c4dF7095900ce0b634056": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "137255763505128": "0x23d0ee19a" - }, - "plotIndexes": [ - "0x7cd55906efe8" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x6Ac3BDBB58D671f81563998dd9ca561d527E5F43": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "128468620580196": "0x912778903", - "887473260643431": "0x42667a9be8" - }, - "plotIndexes": [ - "0x74d76e7e9564", - "0x32726f872c467" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x386f4e50" - }, - "sop": {} - }, - "0x93E4c75ff6e0C7BC4Bcfc7CA2F19e6733d6009Eb": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "137266188068234": "0x76a780b9", - "704198943665924": "0x190089fcc" - }, - "plotIndexes": [ - "0x7cd7c661258a", - "0x2807717e36f04" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x084a35aE3B2F2513FF92fab6ad2954A1DF418093": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "134838782590422": "0x189726cf73", - "134830609083484": "0x1e72dd17a", - "202891108289560": "0x3b6c7bc3e" - }, - "plotIndexes": ["0x7aa299bcfdd6", "0x7aa0b28f2c5c", "0xb88744700c18"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x84649973923f8d3565E8520171618588508983aF": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "137249097505128": "0x18d531680" - }, - "plotIndexes": ["0x7cd3cbb3d968"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xE48436022460c33e32FC98391CD6442d55CD1c69": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "137265377825154": "0x304b5408" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x7cd79615d182" - ] -======= - "plotIndexes": ["0x7cd79615d182"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xFA2a3c48b85D6790B943F645Abf35A1E12770D09": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "134129454761560": "0xe5afb9145" - }, - "plotIndexes": ["0x79fd72814658"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x411bbd5BAf8eb2447611FF3Ac6E187fBBE0573A7": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "136815080964510": "0xed3efc0ee", - "204505988395558": "0x91e12b51b", - "625573606332771": "0x6617bebb8", - "627237168988540": "0x330bdf5dc", - "630912951848778": "0x330bdf5dc", - "630199893153378": "0x330bdf5dc", - "633544834937816": "0x330bdf5dc" - }, - "plotIndexes": [ - "0x7c6ebe4d019e", - "0xb9ff42caf226", - "0x238f4b4961963", - "0x23a7808a5c17c", - "0x23dcfde610f4a", - "0x23d29d8c4d662", - "0x24034a6d5f3d8" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x9bf49f20" - }, - "sop": {} - }, - "0x9B1AC8E6d08053C55713d9aA8fDE1c53e9a929e2": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "128790521677597": "0x1bf08eb00", - "388736379371138": "0x338275a03e", - "387786058520473": "0x551af8ec15" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x7522614b871d", - "0x1618dbdcdbe82", - "0x160b07a445799" - ] -======= - "plotIndexes": ["0x7522614b871d", "0x1618dbdcdbe82", "0x160b07a445799"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xF074d66B602DaE945d261673B10C5d6197Ae5175": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "145260774599348": "0x15c6ddc7b9", - "145952084202661": "0x2a5d4b4d86", - "145354305335917": "0x2b538b066b" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x841d28deaab4", - "0x84be1e2214a5", - "0x8432efbc726d" - ] -======= - "plotIndexes": ["0x841d28deaab4", "0x84be1e2214a5", "0x8432efbc726d"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x433770F8B8fA5272aa9d1Fe899FBEdD68e386569": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "137531094651758": "0x53e129f77" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x7d15740ad36e" - ] -======= - "plotIndexes": ["0x7d15740ad36e"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x1B89a08D82079337740e1cef68c571069725306e": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "148148500497930": "0x6d98b52bb" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x86bd82bf060a" - ] -======= - "plotIndexes": ["0x86bd82bf060a"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xE3546C83C06A298148214C8a25B4081d72a704B4": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "145540390549720": "0x9622f36ba" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x845e434778d8" - ] -======= - "plotIndexes": ["0x845e434778d8"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x4932Ad7cde36e2aD8724f86648dF772D0413c39E": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "144258485938657": "0x789af507d9" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x8333cbcf69e1" - ] -======= - "plotIndexes": ["0x8333cbcf69e1"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xdF02A9ba6C6A5118CF259f01eD7A023A4599a945": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "139975732251488": "0x5cac381568", - "181407955635376": "0x7eea4ef6d4", - "232388914759088": "0x38b3cc31cd", - "231851733041965": "0x33471466a0", - "241282142603223": "0x4ea7c91709" - }, - "plotIndexes": [ - "0x7f4ea3cc4b60", - "0xa4fd54c14cb0", - "0xd35b42b6c5b0", - "0xd2de3030432d", - "0xdb71e06687d7" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x6384F5369d601992309c3102ac7670c62D33c239": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "147555339912491": "0x15d466ade0", - "201794323874481": "0x54f6e887c1", - "181331243759377": "0x11dc62559f" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x8633679ec52b", - "0xb787e6fe02b1", - "0xa4eb785ef711" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x3d860D1e938Ea003d12b9FC756Be12dBe1d5C4f5": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "141610787263306": "0x21fd7f31eab", - "191837226999990": "0x4694f486ecf" - }, - "plotIndexes": [ - "0x80cb54abd34a", - "0xae7995c520b6" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x8496e1b0aAd23e70Ef76F390518Cf2b4CC4a4849": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "145580692516754": "0x15689adb0", - "705687548615966": "0x191bc3d00", - "705712512774884": "0x178833fad" - }, - "plotIndexes": [ - "0x8467a576af92", - "0x281d1afa85d1e", - "0x281d77fa332e4" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x0c492D61651965E3096740306F8345516fCd8990": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "147484814729971": "0x106ba0e238", - "180281626769160": "0xb6f2c120d6", - "200410780844889": "0x518c86de80" - }, - "plotIndexes": [ - "0x8622fbfde2f3", - "0xa3f71652b708", - "0xb645c566c359" - ] -======= - "plotIndexes": ["0x8633679ec52b", "0xb787e6fe02b1", "0xa4eb785ef711"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xCd3F4c42552F24d5d8b1f508F8b8d138b01af53F": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "148432137965500": "0xc1d91e994" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x86ff8cdb4fbc" - ] -======= - "plotIndexes": ["0x80cb54abd34a", "0xae7995c520b6"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, -<<<<<<< HEAD - "0x3E24c27F8fDCfC1f3E7E8683D9df0691AcE251C6": { -======= - "0x8496e1b0aAd23e70Ef76F390518Cf2b4CC4a4849": { ->>>>>>> b689ac329 (feat: update reseed jsons) - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { -<<<<<<< HEAD - "148618311892836": "0x156fa17ab6" - }, - "plotIndexes": [ - "0x872ae5afff64" - ] -======= - "145580692516754": "0x15689adb0", - "705687548615966": "0x191bc3d00", - "705712512774884": "0x178833fad" - }, - "plotIndexes": ["0x8467a576af92", "0x281d1afa85d1e", "0x281d77fa332e4"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, -<<<<<<< HEAD - "0x921Ed81DeE5099d700D447a5Acb33fC65Ba6bf96": { -======= - "0x0c492D61651965E3096740306F8345516fCd8990": { ->>>>>>> b689ac329 (feat: update reseed jsons) - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { -<<<<<<< HEAD - "145586649191784": "0x7ed23ea2a" - }, - "plotIndexes": [ - "0x846908825568" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x94Ff138F71b8B4214e70d3bf6CcF73b3eb4581cB": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "144776481763770": "0x45f8d0fe3", - "332990401346447": "0x49cf0e770" - }, - "plotIndexes": [ - "0x83ac66c471ba", - "0x12eda5e95fb8f" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x6ab075abfA7cdD7B19FA83663b1f2a83e4A957e3": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "139575720236986": "0x16c726714f" - }, - "plotIndexes": [ - "0x7ef1813957ba" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xa01b14d9fA355178408Dd873CB7C1F7aFd3C2151": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "153630962562924": "0xc7c0b92e6" - }, - "plotIndexes": [ - "0x8bb9fef3376c" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x53c92792E6C8Dad49568e8De3ea06888f4830Fe0": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "170679729221505": "0x6e417ffbc", - "725321098785789": "0x29a20bc686" - }, - "plotIndexes": [ - "0x9b3b78a16f81", - "0x293acfa70f3fd" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xe1887385C1ed2d53782F0231D8032E4Ae570B3CE": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "168135476389285": "0x2fb03c5d4c", - "168068691873325": "0x8cc4e9b31" - }, - "plotIndexes": [ - "0x98eb175825a5", - "0x98db8aad4e2d" - ] -======= - "147484814729971": "0x106ba0e238", - "180281626769160": "0xb6f2c120d6", - "200410780844889": "0x518c86de80" - }, - "plotIndexes": ["0x8622fbfde2f3", "0xa3f71652b708", "0xb645c566c359"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xCd3F4c42552F24d5d8b1f508F8b8d138b01af53F": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "148432137965500": "0xc1d91e994" - }, - "plotIndexes": ["0x86ff8cdb4fbc"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x3E24c27F8fDCfC1f3E7E8683D9df0691AcE251C6": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "148618311892836": "0x156fa17ab6" - }, - "plotIndexes": ["0x872ae5afff64"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x921Ed81DeE5099d700D447a5Acb33fC65Ba6bf96": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "145586649191784": "0x7ed23ea2a" - }, - "plotIndexes": ["0x846908825568"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x94Ff138F71b8B4214e70d3bf6CcF73b3eb4581cB": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "144776481763770": "0x45f8d0fe3", - "332990401346447": "0x49cf0e770" - }, - "plotIndexes": ["0x83ac66c471ba", "0x12eda5e95fb8f"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x6ab075abfA7cdD7B19FA83663b1f2a83e4A957e3": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "139575720236986": "0x16c726714f" - }, - "plotIndexes": ["0x7ef1813957ba"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xa01b14d9fA355178408Dd873CB7C1F7aFd3C2151": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "153630962562924": "0xc7c0b92e6" - }, - "plotIndexes": ["0x8bb9fef3376c"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x53c92792E6C8Dad49568e8De3ea06888f4830Fe0": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "170679729221505": "0x6e417ffbc", - "725321098785789": "0x29a20bc686" - }, - "plotIndexes": ["0x9b3b78a16f81", "0x293acfa70f3fd"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x41954b53cFB5e4292223720cB3577d3ed885D4f7": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", -<<<<<<< HEAD - "lastSop": "0x42b", -======= - "lastSop": "0x0", ->>>>>>> b689ac329 (feat: update reseed jsons) - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { -<<<<<<< HEAD - "157994454912867": "0x2324c599ab" - }, - "plotIndexes": [ - "0x8fb1f35c8f63" - ] -======= - "168135476389285": "0x2fb03c5d4c", - "168068691873325": "0x8cc4e9b31" - }, - "plotIndexes": ["0x98eb175825a5", "0x98db8aad4e2d"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, -<<<<<<< HEAD - "0x922d012c7E8fCe3C46ac761179Bdb6d16246782D": { -======= - "0xbb9dDEE672BF27905663F49bf950090050C4e9ad": { ->>>>>>> b689ac329 (feat: update reseed jsons) - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { -<<<<<<< HEAD - "150084707437893": "0x5d21dba00", - "685372204853017": "0x1014e10311" - }, - "plotIndexes": [ - "0x888051ac4d45", - "0x26f57a6cf2719" -======= - "168493012264452": "0x13169d8a17" - }, - "plotIndexes": ["0x993e5624a604"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x41954b53cFB5e4292223720cB3577d3ed885D4f7": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "157994454912867": "0x2324c599ab" - }, - "plotIndexes": ["0x8fb1f35c8f63"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x922d012c7E8fCe3C46ac761179Bdb6d16246782D": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "150084707437893": "0x5d21dba00", - "685372204853017": "0x1014e10311" - }, - "plotIndexes": ["0x888051ac4d45", "0x26f57a6cf2719"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x30d0DEb932b5535f792d359604D7341D1B357a35": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "153844244754703": "0x3cb8b79b97" - }, - "plotIndexes": ["0x8beba78f310f"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xdbC529316fe45F5Ce50528BF2356211051fB0F71": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "149967196818046": "0x366014730", - "269534561489665": "0x1522e45820" - }, - "plotIndexes": ["0x8864f57e8a7e", "0xf523e7cad301"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xede90b8" - }, - "sop": {} - }, - "0xb9c3Dd8fee9A4ACe100f8cC0B8239AB49B021fA5": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "149577120077935": "0x989680", - "149431927422856": "0x21ce2818e7", - "149577130077935": "0xf4240", - "213270572343591": "0xac8e31c00", - "262592826339996": "0x16fae598c9", - "402001335542096": "0x3fa1f30d00", - "699491292359432": "0x238812e413", - "701405120085419": "0x28fbe85840" - }, - "plotIndexes": [ - "0x880a231bd86f", - "0x87e854f3bf88", - "0x880a23b46eef", - "0xc1f7ecb4a127", - "0xeed3a822729c", - "0x16d9e3acde150", - "0x27c2f02012b08", - "0x27dec9b06bdab" ->>>>>>> b689ac329 (feat: update reseed jsons) - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x30d0DEb932b5535f792d359604D7341D1B357a35": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "153844244754703": "0x3cb8b79b97" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x8beba78f310f" - ] -======= - "plotIndexes": ["0x8bde329a05dc"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x7C28205352AD687348578f9cB2AB04DE1DcaA040": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "168585228445774": "0x39f0084fc4" - }, - "plotIndexes": ["0x9953cea7e84e"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x219312542D51cae86E47a1A18585f0bac6E6867B": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "154105041833126": "0x4ad64a736" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x8864f57e8a7e", - "0xf523e7cad301" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xede90b8" - }, - "sop": {} - }, - "0xb9c3Dd8fee9A4ACe100f8cC0B8239AB49B021fA5": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "149577120077935": "0x989680", - "149431927422856": "0x21ce2818e7", - "149577130077935": "0xf4240", - "213270572343591": "0xac8e31c00", - "262592826339996": "0x16fae598c9", - "402001335542096": "0x3fa1f30d00", - "699491292359432": "0x238812e413", - "701405120085419": "0x28fbe85840" - }, - "plotIndexes": [ - "0x880a231bd86f", - "0x87e854f3bf88", - "0x880a23b46eef", - "0xc1f7ecb4a127", - "0xeed3a822729c", - "0x16d9e3acde150", - "0x27c2f02012b08", - "0x27dec9b06bdab" - ] -======= - "plotIndexes": ["0x8c286046cca6"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, -<<<<<<< HEAD - "0xcA580c4e991061D151021B13b984De73B183b06e": { -======= - "0x0e9dc8fFc3a5A04A2Abdd5C5cBc52187E6653E42": { ->>>>>>> b689ac329 (feat: update reseed jsons) - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { -<<<<<<< HEAD - "153786447955420": "0xd74f52b33" - }, - "plotIndexes": [ - "0x8bde329a05dc" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x7C28205352AD687348578f9cB2AB04DE1DcaA040": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "168585228445774": "0x39f0084fc4" - }, - "plotIndexes": [ - "0x9953cea7e84e" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x219312542D51cae86E47a1A18585f0bac6E6867B": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "154105041833126": "0x4ad64a736" - }, - "plotIndexes": [ - "0x8c286046cca6" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x0e9dc8fFc3a5A04A2Abdd5C5cBc52187E6653E42": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "170739819759175": "0x1d432f8da7c", - "205352438673508": "0x7f12273017", - "208195727704637": "0x4e879d35bc", - "230656709472518": "0x19f878cfa5", - "230768252321963": "0x77a044356e", - "237606953663534": "0x1f274005aa", - "236350247713281": "0x8fd21a1b11", - "237740756156888": "0xb3ef222778", - "505208494615910": "0x60f80685b2", - "531421470867756": "0x150ba3086", - "531420470867756": "0x3b9aca00", - "545138809924718": "0x593969aea1" - }, - "plotIndexes": [ -======= - "170739819759175": "0x1d432f8da7c", - "205352438673508": "0x7f12273017", - "208195727704637": "0x4e879d35bc", - "230656709472518": "0x19f878cfa5", - "230768252321963": "0x77a044356e", - "237606953663534": "0x1f274005aa", - "236350247713281": "0x8fd21a1b11", - "237740756156888": "0xb3ef222778", - "505208494615910": "0x60f80685b2", - "531421470867756": "0x150ba3086", - "531420470867756": "0x3b9aca00", - "545138809924718": "0x593969aea1" - }, - "plotIndexes": [ ->>>>>>> b689ac329 (feat: update reseed jsons) - "0x9b49764e4647", - "0xbac457293064", - "0xbd5a5864c23d", - "0xd1c7f33bb106", - "0xd1e1ebb480ab", - "0xd81a2e11bc2e", - "0xd6f5948eba01", - "0xd8395551c1d8", - "0x1cb7c04dbed66", - "0x1e35333ff412c", - "0x1e352f864772c", - "0x1efcd051e6c6e" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x5004Be84E3C40fAf175218a50779b333B7c84276": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "168106479315294": "0x6c05c3c47", - "282729479437291": "0x1262d5cb63" - }, - "plotIndexes": ["0x98e456fbe95e", "0x1012416307beb"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x57068722592FeD292Aa9fdfA186A156D00A87a59": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "153517294218286": "0x1a77294b3e" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x8b9f87c9ec2e" - ] -======= - "plotIndexes": ["0x8b9f87c9ec2e"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x085E98CD14e00f9FC3E9F670e1740F954124e824": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "154158293224517": "0x26381a3980", - "271915086191895": "0xc442d3a4e", - "273185381030890": "0x3190220b6" - }, - "plotIndexes": ["0x8c34c64e8c45", "0xf74e2a1f1d17", "0xf875ed981bea"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x262126FD37D04321D7f824c8984976542fCA2C36": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "153684583303762": "0x17b79b3b8a" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x8bc67afeca52" - ] -======= - "plotIndexes": ["0x8bc67afeca52"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x26f781D7f59c67BBd16acED83dB4ba90d1e47689": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "170677478669570": "0x8624b27f" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x9b3af27cbd02" - ] -======= - "plotIndexes": ["0x9b3af27cbd02"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xB3B6757364eCa9Cd74f46A587F8775b832d72D2e": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "168340296598257": "0x238e902313", - "308693409732309": "0x1201b1f020" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0x991ac79482f1", - "0x118c1490816d5" - ] -======= - "plotIndexes": ["0x991ac79482f1", "0x118c1490816d5"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xd8388Ad2fF4C781903b6D9F17A60Daf4e919f2ce": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "180158456901067": "0x1cad7f093d", - "188657736324806": "0x93327c3ae", - "221757890116192": "0x481b91f39", - "231324321180518": "0x1f7a96dff", - "231457766946954": "0x1337265e7", - "231332771223909": "0x1f78c4724", - "225343185979003": "0x4327220f1", - "242180107603542": "0x51a94b44d", - "242174757473730": "0x13ee48094", - "268449221949319": "0x9b6ef4a744", - "294586560057632": "0x682b9b62f4", - "294364816047932": "0x20f90f7f8f", - "299594100999804": "0xb26af37af" - }, - "plotIndexes": [ - "0xa3da68d3adcb", - "0xab954d5b96c6", - "0xc9b008443a60", - "0xd26363fdeb66", - "0xd28275fab88a", - "0xd2655ba75965", - "0xccf2cc8d867b", - "0xdc42f3490e56", - "0xdc41b4648dc2", - "0xf4273483b787", - "0x10becc7449120", - "0x10bb9264b7f3c", - "0x1107aaff7867c" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x1904e56D521aC77B05270caefB55E18033b9b520": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "202615094361235": "0xbbfc30b25", - "220065412002903": "0x22c1148efe" - }, - "plotIndexes": ["0xb84700b9bc93", "0xc825f8b5b457"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xD1373DfB5Ff412291C06e5dFe6b25be239DBcf3E": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "181953052558212": "0x236fc07080" - }, - "plotIndexes": ["0xa57c3f104384"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x9b8dB915fA36e5d9Fb65974183172E720fDf3B52": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "202907059734614": "0x1ea70a714" - }, - "plotIndexes": ["0xb88afb37c856"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xAc4c5952231a86E8ba3107F2C5e9C5b6b303C0EE": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "204483741086104": "0x26f5e10c", - "328476823472330": "0xbc98ecaf7", - "656403459612897": "0x7208afa30" - }, - "plotIndexes": ["0xb9fa14bff198", "0x12abf786148ca", "0x254fed70a20e1"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xbFd7ddd26653A7706146895d6e314aF42f7B18D5": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "204489002275103": "0x167deeadb", - "269327679034543": "0x1afffc89bb", - "261741019824303": "0x318bc202b", - "273814984429661": "0x80d6ec6af", - "312146875547105": "0x1856730f0" - }, - "plotIndexes": [ - "0xb9fb4e57511f", - "0xf4f3bca314af", - "0xee0d548280af", - "0xf90884e1905d", - "0x11be55ba27de1" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, -<<<<<<< HEAD - "0xD1373DfB5Ff412291C06e5dFe6b25be239DBcf3E": { -======= - "0x6AB3E708231eBc450549B37f8DDF269E789ed322": { ->>>>>>> b689ac329 (feat: update reseed jsons) - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { -<<<<<<< HEAD - "181953052558212": "0x236fc07080" - }, - "plotIndexes": [ - "0xa57c3f104384" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x9b8dB915fA36e5d9Fb65974183172E720fDf3B52": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "202907059734614": "0x1ea70a714" - }, - "plotIndexes": [ - "0xb88afb37c856" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xAc4c5952231a86E8ba3107F2C5e9C5b6b303C0EE": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "204483741086104": "0x26f5e10c", - "328476823472330": "0xbc98ecaf7", - "656403459612897": "0x7208afa30" - }, - "plotIndexes": [ - "0xb9fa14bff198", - "0x12abf786148ca", - "0x254fed70a20e1" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xbFd7ddd26653A7706146895d6e314aF42f7B18D5": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "204489002275103": "0x167deeadb", - "269327679034543": "0x1afffc89bb", - "261741019824303": "0x318bc202b", - "273814984429661": "0x80d6ec6af", - "312146875547105": "0x1856730f0" - }, - "plotIndexes": [ - "0xb9fb4e57511f", - "0xf4f3bca314af", - "0xee0d548280af", - "0xf90884e1905d", - "0x11be55ba27de1" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x6AB3E708231eBc450549B37f8DDF269E789ed322": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "200867811074584": "0x32adafe6aa", - "234774888197334": "0x54dcb37000", - "239092831941854": "0x8430897d80", - "260118373627924": "0x4b4b641f40", - "254494491465844": "0x820931b100", - "446815618027105": "0x1e3fd5e00", - "446827216136839": "0x2b3f30ea4", - "463426993699329": "0x6c94b8f0d", - "464453051748379": "0x40965c93f", - "586613207988784": "0xff2577b96", - "634288124330782": "0x1c5d0c724", - "649805925059057": "0xc650da2c0", - "649502105309057": "0xc650da2c0", - "649198285559057": "0xc650da2c0", - "696501399481444": "0xc88fb391f", - "696254055525928": "0x14477e378", - "698739309824756": "0x23227119a8", - "718136155898812": "0x62875eea4", - "716905989198435": "0x81319b70e", - "720175216460971": "0x20d23da2d7", - "738009093827168": "0x12e8a80e0f", - "737010650241966": "0xd84a54b00", - "743151962222302": "0xb6c15a258", - "805417930289879": "0x1dd6878d6" - }, - "plotIndexes": [ -======= - "200867811074584": "0x32adafe6aa", - "234774888197334": "0x54dcb37000", - "239092831941854": "0x8430897d80", - "260118373627924": "0x4b4b641f40", - "254494491465844": "0x820931b100", - "446815618027105": "0x1e3fd5e00", - "446827216136839": "0x2b3f30ea4", - "463426993699329": "0x6c94b8f0d", - "464453051748379": "0x40965c93f", - "586613207988784": "0xff2577b96", - "634288124330782": "0x1c5d0c724", - "649805925059057": "0xc650da2c0", - "649502105309057": "0xc650da2c0", - "649198285559057": "0xc650da2c0", - "696501399481444": "0xc88fb391f", - "696254055525928": "0x14477e378", - "698739309824756": "0x23227119a8", - "718136155898812": "0x62875eea4", - "716905989198435": "0x81319b70e", - "720175216460971": "0x20d23da2d7", - "738009093827168": "0x12e8a80e0f", - "737010650241966": "0xd84a54b00", - "743151962222302": "0xb6c15a258", - "805417930289879": "0x1dd6878d6" - }, - "plotIndexes": [ ->>>>>>> b689ac329 (feat: update reseed jsons) - "0xb6b02e86a218", - "0xd586c9d02cd6", - "0xd9742350f4de", - "0xec9387427814", - "0xe7761dc2d874", - "0x196605e314e61", - "0x19663117e6a87", - "0x1a57c0156ba01", - "0x1a66ae72a101b", - "0x2158587e1fa30", - "0x240e1b656031e", - "0x24efebb5609f1", - "0x24eb7fe448f81", - "0x24e7141331511", - "0x27976de806c64", - "0x2793d47a72e28", - "0x27b7fec5a4af4", - "0x28d241a7903bc", - "0x28c05aed2d263", - "0x28efedbf404ab", - "0x29f3721e0ea60", - "0x29e4eaa00dbae", - "0x2a3e48cb8eede", - "0x2dc85f9a172d7" -<<<<<<< HEAD - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xF28841b27FD011475184aC5BECadd12a14667e04": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "191833111162737": "0xf552b145" - }, - "plotIndexes": [ - "0xae78a0726f71" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x9cFD5052DC827c11a6B3Ab2BB5091773765ea2c8": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "203083203411712": "0x72520cba0" - }, - "plotIndexes": [ - "0xb8b3fe32ff00" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x5ef1500" - }, - "sop": {} - }, - "0x4497aAbaa9C178dc1525827b1690a3b8f3647457": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "202722306634067": "0x274d5cdac5" - }, - "plotIndexes": [ - "0xb85ff7133153" -======= ->>>>>>> b689ac329 (feat: update reseed jsons) - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xF28841b27FD011475184aC5BECadd12a14667e04": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "191833111162737": "0xf552b145" - }, - "plotIndexes": ["0xae78a0726f71"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x9cFD5052DC827c11a6B3Ab2BB5091773765ea2c8": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "203083203411712": "0x72520cba0" - }, - "plotIndexes": ["0xb8b3fe32ff00"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x5ef1500" - }, - "sop": {} - }, - "0x4497aAbaa9C178dc1525827b1690a3b8f3647457": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "202722306634067": "0x274d5cdac5" - }, - "plotIndexes": ["0xb85ff7133153"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xae0aAF5E7135058919aB10756C6CdD574a92e557": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "204283741086104": "0x2e90edd000" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xb9cb83d22198" - ] -======= - "plotIndexes": ["0xb9cb83d22198"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x47635847a5bC731592F7EfB9a10f2461C2F5CdAb": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "200761030844889": "0x112904ba2f" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xb69751eda1d9" - ] -======= - "plotIndexes": ["0xb69751eda1d9"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x8FA1E05245660E20df4e6DfDfB32Fcd2f2E1cAcd": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "204560148294849": "0x3ff64a3cc0", - "227441220581468": "0x1039f6a5e", - "221300565354492": "0xf0203af62", - "344360197916189": "0x13e1c3bfbe", - "489666388361106": "0x2ce03daaf9" - }, - "plotIndexes": [ - "0xba0bdef96cc1", - "0xcedb4928f85c", - "0xc9458d9627fc", - "0x139319b45861d", - "0x1bd595722ff92" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xc9EA118C809C72ccb561Dd227036ce3C88D892C2": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "202915287953258": "0x1ccc1fa7fd" - }, - "plotIndexes": ["0xb88ce5a86f6a"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x0c940e42D91FE16E0f0Eccc964b26dde7808ab5d": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "204834863294849": "0xa131fd373" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xba4bd543a981" - ] -======= - "plotIndexes": ["0xba4bd543a981"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x136e6F25117aF5e5ff5d353dC41A0e91F013D461": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "205073735725117": "0x1c86eea469" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xba83732bb03d" - ] -======= - "plotIndexes": ["0xba83732bb03d"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xEd52006B09b111dAa000126598ACD95F991692D6": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "201288716074320": "0x277f368538", - "191024259399088": "0x4604d0d1ff", - "253710018355608": "0x91e114a5e4" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xb7122e6b3d50", - "0xadbc4d1ffdb0", - "0xe6bf77852198" - ] -======= - "plotIndexes": ["0xb7122e6b3d50", "0xadbc4d1ffdb0", "0xe6bf77852198"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xcEB03369b7537eB3eCa2b2951DdfD6D032c01c41": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "199315986281033": "0x42f97b6d9" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xb546de8f7249" - ] -======= - "plotIndexes": ["0xb546de8f7249"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xF352e5320291298bE60D00a015b27D3960F879FA": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "204484394734244": "0x112a17e7b", - "931280942124652": "0x84a633e9e", - "943534242598500": "0x18042bf910" - }, - "plotIndexes": ["0xb9fa3bb5d2a4", "0x34efebdbdce6c", "0x35a23af5d0e64"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xb58370b" - }, - "sop": {} - }, - "0x1dE6844C76Fa59C5e7B4566044CC1Bb9ef958714": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "220637584990881": "0x89638240", - "220709260788997": "0x112c70480" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xc8ab30e0a2a1", - "0xc8bbe1168505" - ] -======= - "plotIndexes": ["0xc8ab30e0a2a1", "0xc8bbe1168505"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x3201277a" - }, - "sop": {} - }, - "0x354F7a379e9478Ad1734f5c48e856F89E309a597": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "213213798353310": "0x2d042545d" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xc1eab4b6499e" - ] -======= - "plotIndexes": ["0xc1eab4b6499e"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x07f7cA325221752380d6CdFBcFF9B5E5E9EC058F": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "219683298748205": "0x1362cf36c3" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xc7cd00fc272d" - ] -======= - "plotIndexes": ["0xc7cd00fc272d"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x2bDB0cB25Db0012dF643041B3490d163A1809eE6": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "218546663766811": "0x13b30abc5d" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xc6c45c42bb1b" - ] -======= - "plotIndexes": ["0xc6c45c42bb1b"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x342Ba89a30Af6e785EBF651fb0EAd52752Ab1c9F": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "212188823059772": "0xa7374b4e92", - "255265354982596": "0x9be7452800", - "459187067180977": "0x1eb9395e63", - "586881787286346": "0x3a7c3244da3", - "558750219097685": "0x86d4529c86", - "635572332702096": "0x43ef59f533", - "636541607037349": "0x31bea413b6" - }, - "plotIndexes": [ - "0xc0fc0f6c7d3c", - "0xe82998cea4c4", - "0x1a1a0d20657b1", - "0x215c41074d34a", - "0x1fc2e2c53d655", - "0x2420cb71ea990", - "0x242ee645f49a5" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x8325D26d08DaBf644582D2a8da311D94DBD02A97": { -<<<<<<< HEAD -======= - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "214830162730441": "0x2902dda9f", - "293750873555124": "0x9d70e8ae" - }, - "plotIndexes": ["0xc3630b895dc9", "0x10b2a347880b4"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x8676c5" - }, - "sop": {} - }, - "0xF7cCA800424e518728F88D7FC3B67Ed6dFa0693C": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "214824040374252": "0x38453121" - }, - "plotIndexes": ["0xc3619e9d9fec"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x38Cf87B5d7B0672Ac544Ed279cbbff31Bb83b3D5": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "213264452873369": "0x16cbfb48e", - "268381273591215": "0x42ec0a2a8" - }, - "plotIndexes": ["0xc1f67ff4ec99", "0xf417627a0daf"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x9eB97e6aee08EF7AC5F6b523886E10bb1Cd8DE9d": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "212907010280398": "0x2fabb322cf", - "491199224234272": "0x666e3aa0" - }, - "plotIndexes": ["0xc1a346b7cbce", "0x1bebe3b464120"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x54CE05973cFadd3bbACf46497C08Fc6DAe156521": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "211486572900138": "0xc3e287e0" - }, - "plotIndexes": ["0xc0588e0d6f2a"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xa9bc" - }, - "sop": {} - }, - "0x6a12c8594c5C850d57612CA58810ABb8aeBbC04B": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "217940532047787": "0x19d0f6880", - "217947462047787": "0x6b9d444e00", - "491200942734272": "0x6675dbc0", - "491202661734272": "0x3d87a5e0" - }, - "plotIndexes": ["0xc6373bfeafab", "0xc638d90e182b", "0x1bebea1b47bc0", "0x1bebf082a5780"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xb69D09d54bF5a489Ca9F0d8E0D50d2c958aE55C5": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "219661298748205": "0x51f4d5c00" - }, - "plotIndexes": ["0xc7c7e1aecb2d"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x17FA401eBAd908CC02bd2Cb2DC37A71c872B47e5": { ->>>>>>> b689ac329 (feat: update reseed jsons) - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "220639889990881": "0x1026d26024", - "401536968546834": "0xd7d3ac544" - }, - "plotIndexes": ["0xc8abba4424e1", "0x16d321c5fda12"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x54Af3F7c7dBb94293f94EE15dBFD819C572B9235": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "217546047951373": "0x5bd9159d9e", - "242397324583886": "0x50d008dee1" - }, - "plotIndexes": ["0xc5db62e9120d", "0xdc75866d23ce"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x533ac5848d57672399a281b65A834d88B0b2dF45": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "214901535169245": "0x1341f8255", - "231673913235551": "0x7fa261d23" - }, - "plotIndexes": ["0xc373a9aa5add", "0xd2b4c94d585f"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x73C28f0571ee437171E421c80a55Bdcc6c07cc5C": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "218677718578589": "0x111cfc387" - }, - "plotIndexes": ["0xc6e2dfbc759d"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x406874Ac226662369d23B4a2B76313f3Cb8da983": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "214361103094275": "0x6bc9364de9", - "399147164949892": "0x53285b61bc" - }, - "plotIndexes": ["0xc2f5d5675203", "0x16b05b0fadd84"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x328e124cE7F35d9aCe181B2e2B4071f51779B363": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "220813692513983": "0xbe6489369" - }, - "plotIndexes": ["0xc8d431b42ebf"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xF7cCA800424e518728F88D7FC3B67Ed6dFa0693C": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "214824040374252": "0x38453121" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xc3619e9d9fec" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x38Cf87B5d7B0672Ac544Ed279cbbff31Bb83b3D5": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "213264452873369": "0x16cbfb48e", - "268381273591215": "0x42ec0a2a8" - }, - "plotIndexes": [ - "0xc1f67ff4ec99", - "0xf417627a0daf" - ] -======= - "plotIndexes": ["0xce59a66dd76b"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x9eB97e6aee08EF7AC5F6b523886E10bb1Cd8DE9d": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", -<<<<<<< HEAD - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "212907010280398": "0x2fabb322cf", - "491199224234272": "0x666e3aa0" - }, - "plotIndexes": [ - "0xc1a346b7cbce", - "0x1bebe3b464120" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x54CE05973cFadd3bbACf46497C08Fc6DAe156521": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "211486572900138": "0xc3e287e0" - }, - "plotIndexes": [ - "0xc0588e0d6f2a" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xa9bc" - }, - "sop": {} - }, - "0x6a12c8594c5C850d57612CA58810ABb8aeBbC04B": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", -======= ->>>>>>> b689ac329 (feat: update reseed jsons) - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { -<<<<<<< HEAD - "217940532047787": "0x19d0f6880", - "217947462047787": "0x6b9d444e00", - "491200942734272": "0x6675dbc0", - "491202661734272": "0x3d87a5e0" - }, - "plotIndexes": [ - "0xc6373bfeafab", - "0xc638d90e182b", - "0x1bebea1b47bc0", - "0x1bebf082a5780" - ] -======= - "221709363811083": "0xb4c64a755", - "298041802666608": "0x16795fb556", - "326781576518052": "0x91352082d", - "326873031171634": "0x11ac6b2c28" - }, - "plotIndexes": ["0xc9a4bbdf930b", "0x10f1143c6b270", "0x12934c3c999a4", "0x1294a0ee8de32"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, -<<<<<<< HEAD - "0xb69D09d54bF5a489Ca9F0d8E0D50d2c958aE55C5": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "219661298748205": "0x51f4d5c00" - }, - "plotIndexes": [ - "0xc7c7e1aecb2d" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x17FA401eBAd908CC02bd2Cb2DC37A71c872B47e5": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "220639889990881": "0x1026d26024", - "401536968546834": "0xd7d3ac544" - }, - "plotIndexes": [ - "0xc8abba4424e1", - "0x16d321c5fda12" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x54Af3F7c7dBb94293f94EE15dBFD819C572B9235": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "217546047951373": "0x5bd9159d9e", - "242397324583886": "0x50d008dee1" - }, - "plotIndexes": [ - "0xc5db62e9120d", - "0xdc75866d23ce" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x533ac5848d57672399a281b65A834d88B0b2dF45": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "214901535169245": "0x1341f8255", - "231673913235551": "0x7fa261d23" - }, - "plotIndexes": [ - "0xc373a9aa5add", - "0xd2b4c94d585f" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x73C28f0571ee437171E421c80a55Bdcc6c07cc5C": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "218677718578589": "0x111cfc387" - }, - "plotIndexes": [ - "0xc6e2dfbc759d" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x406874Ac226662369d23B4a2B76313f3Cb8da983": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "214361103094275": "0x6bc9364de9", - "399147164949892": "0x53285b61bc" - }, - "plotIndexes": [ - "0xc2f5d5675203", - "0x16b05b0fadd84" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x328e124cE7F35d9aCe181B2e2B4071f51779B363": { -======= - "0xaaEB726768606079484aa6b3715efEEC7E901D13": { ->>>>>>> b689ac329 (feat: update reseed jsons) - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "225361212188524": "0xc2fe150bd" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xc8d431b42ebf" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x058107C8b15Dd30eFF1c1d01Cf15bd68e6BEf26F": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "226884439627627": "0x1a0f759d3" - }, - "plotIndexes": [ - "0xce59a66dd76b" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x5234e3A15a9b0F86C6E77c400dc4706A3DFC0A04": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "221709363811083": "0xb4c64a755", - "298041802666608": "0x16795fb556", - "326781576518052": "0x91352082d", - "326873031171634": "0x11ac6b2c28" - }, - "plotIndexes": [ - "0xc9a4bbdf930b", - "0x10f1143c6b270", - "0x12934c3c999a4", - "0x1294a0ee8de32" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xaaEB726768606079484aa6b3715efEEC7E901D13": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "225361212188524": "0xc2fe150bd" - }, - "plotIndexes": [ - "0xccf6feffa76c" - ] -======= - "plotIndexes": ["0xccf6feffa76c"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xE8c22A092593061D49d3Fbc2B5Ab733E82a66352": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "244563066566020": "0x4f0bf445bc", - "239866879581854": "0x10479b4", - "240817882040757": "0x1470d849a", - "285823716873404": "0x3fd0c5405", - "399108141891711": "0x915f49d05", - "456632495406880": "0xd800273a", - "583979473591721": "0xcc957739e" - }, - "plotIndexes": [ - "0xde6dc6b53584", - "0xda285c269e9e", - "0xdb05c85089b5", - "0x103f4851cd4bc", - "0x16afc9b06407f", - "0x19f4e09ae7f20", - "0x2132051145da9" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x7bE74966867b552dd2CE1F09E71b1CA92C321Af0": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "236273309536157": "0x6b4abed5" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xd6e3aaaf4f9d" - ] -======= - "plotIndexes": ["0xd6e3aaaf4f9d"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x7310E238f2260ff111a941059B023B3eBCF2D54e": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "235227898442395": "0xcc029ae79", - "251906258747456": "0x8b101e0de" - }, - "plotIndexes": ["0xd5f04353f29b", "0xe51b7f11c040"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xc59821CBF1A4590cF659E2BA74de9Bbf7612E538": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "238513567295824": "0x32dacf8d40" - }, - "plotIndexes": ["0xd8ed4473e950"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xc59821CBF1A4590cF659E2BA74de9Bbf7612E538": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "238513567295824": "0x32dacf8d40" - }, - "plotIndexes": [ - "0xd8ed4473e950" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x18637e9C1f3bBf5D4492D541CE67Dcf39f1609A2": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "239660581941854": "0x30084c2c40", - "238754484412650": "0x4ec71593f4" - }, - "plotIndexes": ["0xd9f853da725e", "0xd9255c3b60ea"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x15666e84" - }, - "sop": {} - }, - "0xc4c89a41Ad3050Bb82deE573833f76f2c449353e": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", -<<<<<<< HEAD - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "240640507285101": "0x294c5bfb48", - "249896870521632": "0x9b961b734" - }, - "plotIndexes": [ - "0xdadc7bf48e6d", - "0xe347a632ab20" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xE3faBA780BDe12D3DFEB226A120aA4271f1D72B2": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "241976256153648": "0x1cb410cf9e", - "243781055572115": "0x10a300e398", - "269116803407563": "0x52c8e4f7", - "279505824996797": "0x5182d9aa7", - "355680382750323": "0x1d730088d2", - "400152023455338": "0x61184d0f9", - "445628453536239": "0xeaf2fbb09" - }, - "plotIndexes": [ - "0xdc137ccac830", - "0xddb7b3386893", - "0xf4c2a3785ecb", - "0xfe3585695dbd", - "0x1437d4ade0e73", - "0x16befa736d66a", - "0x1954bf5acc1ef" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xE67ae530c6578bCD59230EDac111Dd18eE47b344": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", -======= ->>>>>>> b689ac329 (feat: update reseed jsons) - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "240640507285101": "0x294c5bfb48", - "249896870521632": "0x9b961b734" - }, - "plotIndexes": ["0xdadc7bf48e6d", "0xe347a632ab20"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x2AdC396D8092D79Db0fA8a18fa7e3451Dc1dFB37": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { -<<<<<<< HEAD - "248282655499019": "0x9d82eabb8" - }, - "plotIndexes": [ - "0xe1cfcf7c230b" -======= - "241976256153648": "0x1cb410cf9e", - "243781055572115": "0x10a300e398", - "269116803407563": "0x52c8e4f7", - "279505824996797": "0x5182d9aa7", - "355680382750323": "0x1d730088d2", - "400152023455338": "0x61184d0f9", - "445628453536239": "0xeaf2fbb09" - }, - "plotIndexes": [ - "0xdc137ccac830", - "0xddb7b3386893", - "0xf4c2a3785ecb", - "0xfe3585695dbd", - "0x1437d4ade0e73", - "0x16befa736d66a", - "0x1954bf5acc1ef" ->>>>>>> b689ac329 (feat: update reseed jsons) - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xE67ae530c6578bCD59230EDac111Dd18eE47b344": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "243852509793323": "0x4cc4cee9a" - }, - "plotIndexes": ["0xddc856394c2b"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x2AdC396D8092D79Db0fA8a18fa7e3451Dc1dFB37": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "248282655499019": "0x9d82eabb8" - }, - "plotIndexes": ["0xe1cfcf7c230b"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x427Dfd9661eaF494be14CAf5e84501DDF3d42d31": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "241011518848871": "0x2908a64cd2" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xdb32ddf7bf67" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x2Efc14A5276bB2b6E32B913fFa8CEDa02552750F": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "245155440103610": "0x1f583032c5" - }, - "plotIndexes": [ - "0xdef7b2ec10ba" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x3572F1b678f48C6a2145F5e5fF94159F3C99b01e": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "235887412728787": "0xa6c3bb445" - }, - "plotIndexes": [ - "0xd689d17153d3" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xf4240" - }, - "sop": {} - }, - "0x2Ac6f4E13a2023bad7D429995Bf07C6ecC1AC05C": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "247377186269264": "0x5fc8dfc0", - "695624119694114": "0x5d0af840" - }, - "plotIndexes": [ - "0xe0fcfd502850", - "0x278aa9c8d3322" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x7125B7C60Ec85F9aD33742D9362f6161d403EC92": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "246922293237268": "0x3025626784" - }, - "plotIndexes": [ - "0xe09313935614" - ] -======= - "plotIndexes": ["0xdb32ddf7bf67"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x8709DD5FE0F07219D8d4cd60735B58E2C3009073": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", -<<<<<<< HEAD - "lastSop": "0x42b", -======= - "lastSop": "0x0", ->>>>>>> b689ac329 (feat: update reseed jsons) - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "234615417572537": "0x252130a01d", - "251943588176158": "0x6ea118de6" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xd561a89f8cb9", - "0xe5243013a11e" - ] -======= - "plotIndexes": ["0xdef7b2ec10ba"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x3572F1b678f48C6a2145F5e5fF94159F3C99b01e": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "235887412728787": "0xa6c3bb445" - }, - "plotIndexes": ["0xd689d17153d3"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xf4240" - }, - "sop": {} - }, - "0x2Ac6f4E13a2023bad7D429995Bf07C6ecC1AC05C": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "247377186269264": "0x5fc8dfc0", - "695624119694114": "0x5d0af840" - }, - "plotIndexes": ["0xe0fcfd502850", "0x278aa9c8d3322"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x7125B7C60Ec85F9aD33742D9362f6161d403EC92": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "246922293237268": "0x3025626784" - }, - "plotIndexes": ["0xe09313935614"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x8709DD5FE0F07219D8d4cd60735B58E2C3009073": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "234615417572537": "0x252130a01d", - "251943588176158": "0x6ea118de6" - }, - "plotIndexes": ["0xd561a89f8cb9", "0xe5243013a11e"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xC21a7Fe78A0Fb9DF4Da21F2Ce78c76BdAe63e611": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "247378793269264": "0x38fc788f3d", - "250829898506136": "0x64a0644164" - }, - "plotIndexes": ["0xe0fd5d190810", "0xe420e2ffdf98"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x4067ed1c0" - }, - "sop": {} - }, - "0x8A17B7aF6d76f7348deb9C324AbF98f873b6691A": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "246309595703075": "0x34f88da75e" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xe0046bf4e723" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x06E6932ed7D7De9bcF5bD7a11723Dc698D813F7e": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "241189075365295": "0x294181315", - "274351454205287": "0x19fff9658", - "325771315526926": "0x35968bc7b" - }, - "plotIndexes": [ - "0xdb5c35292daf", - "0xf9856cf8b567", - "0x128498b8a3d0e" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x9e1e2beD5271a08a8E2Acc8d5ECF99eC5382cf7A": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "250526151093083": "0x1161de86fa", - "695628520661609": "0x21647f8700" - }, - "plotIndexes": [ - "0xe3da2a3e2b5b", - "0x278aba2dea269" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xD5351308c8Cb15ca93a8159325bFb392DC1e52aC": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "256758104204461": "0x3a202e2c0", - "256710058517324": "0x74405c580" - }, - "plotIndexes": [ - "0xe985279824ad", - "0xe979f7d9234c" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x6fBDc235B6f55755BE1c0B554469633108E60608": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "253030586999657": "0x3d0076e167" - }, - "plotIndexes": [ - "0xe62146416369" - ] -======= - "plotIndexes": ["0xe0046bf4e723"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x06E6932ed7D7De9bcF5bD7a11723Dc698D813F7e": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { -<<<<<<< HEAD - "250043585667303": "0x87b5aecf5", - "250401077762813": "0xf1e422c65" - }, - "plotIndexes": [ - "0xe369cf1a20e7", - "0xe3bd0b4a9afd" - ] -======= - "241189075365295": "0x294181315", - "274351454205287": "0x19fff9658", - "325771315526926": "0x35968bc7b" - }, - "plotIndexes": ["0xdb5c35292daf", "0xf9856cf8b567", "0x128498b8a3d0e"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x9e1e2beD5271a08a8E2Acc8d5ECF99eC5382cf7A": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "250526151093083": "0x1161de86fa", - "695628520661609": "0x21647f8700" - }, - "plotIndexes": ["0xe3da2a3e2b5b", "0x278aba2dea269"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xD5351308c8Cb15ca93a8159325bFb392DC1e52aC": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "256758104204461": "0x3a202e2c0", - "256710058517324": "0x74405c580" - }, - "plotIndexes": ["0xe985279824ad", "0xe979f7d9234c"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x6fBDc235B6f55755BE1c0B554469633108E60608": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "253030586999657": "0x3d0076e167" - }, - "plotIndexes": ["0xe62146416369"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xbf9Db3564c22fd22FF30A8dB7f689D654Bf5F1fD": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "250043585667303": "0x87b5aecf5", - "250401077762813": "0xf1e422c65" - }, - "plotIndexes": ["0xe369cf1a20e7", "0xe3bd0b4a9afd"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xB817bCfa60f2a4c9cE7E900cc1a0B1bd5f45bb70": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "252279493675340": "0x4c44f10af3" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xe572659ac94c" - ] -======= - "plotIndexes": ["0xe572659ac94c"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xF4B2300e02977720D590353725e4a73a67250bf3": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "252622959858488": "0x408eab8f41" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xe5c25dc8d338" - ] -======= - "plotIndexes": ["0xe5c25dc8d338"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x5d9f8ecA4a1d3eEB7B78002EF0D2Bb53ADF259ee": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "260693811733759": "0x54677828a" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xed19820b24ff" - ] -======= - "plotIndexes": ["0xed19820b24ff"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x11F3BAcAa1e4DEeB728A1c37f99694A8e026cF7D": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "252085742270225": "0x8aa575427", - "693534396400586": "0x513074af", - "695910518553961": "0x2f7d1394" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xe545491ef711", - "0x276c40f5643ca", - "0x278ed4b40fd69" - ] -======= - "plotIndexes": ["0xe545491ef711", "0x276c40f5643ca", "0x278ed4b40fd69"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x325b8" - }, - "sop": {} - }, - "0x6C8513a6C51C5F83C4E4DC53E0fabA45112c0E09": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "248455141384543": "0x3a58afdd2d" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xe1f7f871e15f" - ] -======= - "plotIndexes": ["0xe1f7f871e15f"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x0846Bf78c84C11D58Bb2320Fc8807C1983A2797C": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "259218447065702": "0xa69ae8e5b", - "260052583934374": "0xb1b4d14aa" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xebc1ff74e266", - "0xec8435e369a6" - ] -======= - "plotIndexes": ["0xebc1ff74e266", "0xec8435e369a6"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x567dA563057BE92a42B0c14a765bFB1a3dD250be": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "259263169786049": "0xa66e2272f" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xebcc692370c1" - ] -======= - "plotIndexes": ["0xebcc692370c1"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x3638570931B30FbBa478535A94D3f2ec1Cd802cB": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "258890580795053": "0x4c565a43b9", - "266899609550289": "0x13f2c8900f" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xeb75a91a9ead", - "0xf2be686afdd1" - ] -======= - "plotIndexes": ["0xeb75a91a9ead", "0xf2be686afdd1"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x6CC9b3940EB6d94cad1A25c437d9bE966Af821E3": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "256776481524757": "0xc09838a659" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xe9896ef7cc15" - ] -======= - "plotIndexes": ["0xe9896ef7cc15"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x0A7ED639830269B08eE845776E9b7a9EFD178574": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "255934954982596": "0x2a572cb9f" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xe8c58013ccc4" - ] -======= - "plotIndexes": ["0xe8c58013ccc4"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x09DaDF51d403684A67886DB545AE1703d7856056": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "249945795286716": "0x16c4c2ca2b" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xe3530a5756bc" - ] -======= - "plotIndexes": ["0xe3530a5756bc"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xB8eCEcF183e45D6EB8A06E2F27354d1c3940aA76": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "260441761027924": "0x4e4762341" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xecded2a69754" - ] -======= - "plotIndexes": ["0xecded2a69754"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x7eFaC69750cc933e7830829474F86149A7DD8e35": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "261973680486751": "0x29cec07ce7", - "261973679486751": "0xf4240", - "271999469298681": "0x4438dab0a1" - }, - "plotIndexes": ["0xee43802a795f", "0xee43801b371f", "0xf761cfbf23f9"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x09147d29d27E0c8122fC0b66Ff6Ca060Cda40aDc": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "263444366219049": "0x1256f2be7b", - "340340310399004": "0x2d3a5b1dce" - }, - "plotIndexes": ["0xef99ebddd729", "0x13589a74dd81c"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x15682A522C149029F90108e2792A114E94AB4187": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "262244417024534": "0x2515b8b98", - "262254371913134": "0x4a87e2370" - }, -<<<<<<< HEAD - "plotIndexes": [ - "0xee8289523216", - "0xee84daadbdae" - ] -======= - "plotIndexes": ["0xee8289523216", "0xee84daadbdae"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x61C562283B268F982ffa1334B643118eACF54480": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "266885888878451": "0x331d0d65e" - }, - "plotIndexes": ["0xf2bb369a2773"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x27553635B0EA3E0d4b551c61Ea89c9c1b81e266f": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "262570166065123": "0x3aed7b847" - }, - "plotIndexes": ["0xeece617a17e3"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x9B6425F32361eE115C7A2170349a8f5a3A51b0F0": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "262389497183414": "0xf5ebb46c3" - }, - "plotIndexes": ["0xeea450c5bcb6"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xB5030cAc364bE50104803A49C30CCfA0d6A48629": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "271716973263145": "0x2e207363ee" - }, - "plotIndexes": ["0xf72009abb929"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x27553635B0EA3E0d4b551c61Ea89c9c1b81e266f": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "262570166065123": "0x3aed7b847" - }, - "plotIndexes": [ - "0xeece617a17e3" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x9B6425F32361eE115C7A2170349a8f5a3A51b0F0": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, "fields": { "0": { "plots": { - "262389497183414": "0xf5ebb46c3" + "135334419409244": "0xba4090547", + "136132384541471": "0xbcb66de70" }, "plotIndexes": [ - "0xeea450c5bcb6" + "0x7b15fffea95c", + "0x7bcfca6c4b1f" ] } }, @@ -218323,7 +206537,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xB5030cAc364bE50104803A49C30CCfA0d6A48629": { + "0x19CB3CfB44B052077E2c4dF7095900ce0b634056": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -218336,10 +206550,10 @@ "fields": { "0": { "plots": { - "271716973263145": "0x2e207363ee" + "137255763505128": "0x23d0ee19a" }, "plotIndexes": [ - "0xf72009abb929" + "0x7cd55906efe8" ] } }, @@ -218351,7 +206565,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x7c9551322a2e259830A7357e436107565EA79205": { + "0x6Ac3BDBB58D671f81563998dd9ca561d527E5F43": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -218364,53 +206578,13 @@ "fields": { "0": { "plots": { - "270707790419553": "0xa62875b42", - "334808594828075": "0x4c60f72ce", - "491177308591557": "0x51a462b5b", - "625298680160271": "0x3aeaf49280", - "643112195637173": "0x1aad800d00", - "712108719670625": "0x1d57d0a767" - }, - "plotIndexes": [ - "0xf63511af9661", - "0x13081b35ccb2b", - "0x1beb9210015c5", - "0x238b4b1b5a00f", - "0x248e839f8bfb5", - "0x287a8bb470561" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x953Ba402AE27a6561e09edFDF12A2F5D4e7e9C95": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "264546765360408": "0xa88282fea" + "128468620580196": "0x912778903", + "887473260643431": "0x42667a9be8" }, -<<<<<<< HEAD "plotIndexes": [ - "0xf09a97f9cd18" + "0x74d76e7e9564", + "0x32726f872c467" ] -======= - "plotIndexes": ["0xf09a97f9cd18"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -218418,36 +206592,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x925D19C24fa0b14e4eFfBE6349E387f0751f8f36": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "262220837330704": "0x41a7c3dbe" - }, - "plotIndexes": ["0xee7d0bdc9f10"] - } + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x386f4e50" }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, "sop": {} }, - "0xCfCF5A55708Cd1Ae90fdcad70C7445073eB04d94": { + "0x93E4c75ff6e0C7BC4Bcfc7CA2F19e6733d6009Eb": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -218460,11 +206610,12 @@ "fields": { "0": { "plots": { - "272383450599356": "0x111c2e99f3" + "137266188068234": "0x76a780b9", + "704198943665924": "0x190089fcc" }, -<<<<<<< HEAD "plotIndexes": [ - "0xf7bb36d0cfbc" + "0x7cd7c661258a", + "0x2807717e36f04" ] } }, @@ -218476,7 +206627,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x59b9540ee2A8b2ab527a5312Ab622582b884749B": { + "0x084a35aE3B2F2513FF92fab6ad2954A1DF418093": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -218489,10 +206640,14 @@ "fields": { "0": { "plots": { - "274578680043801": "0x35a4e900" + "134838782590422": "0x189726cf73", + "134830609083484": "0x1e72dd17a", + "202891108289560": "0x3b6c7bc3e" }, "plotIndexes": [ - "0xf9ba54afd919" + "0x7aa299bcfdd6", + "0x7aa0b28f2c5c", + "0xb88744700c18" ] } }, @@ -218504,7 +206659,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xde8351633c96Ac16860a78D90D3311fa390182BF": { + "0x84649973923f8d3565E8520171618588508983aF": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -218517,10 +206672,10 @@ "fields": { "0": { "plots": { - "277537073969119": "0x13ee50c261" + "137249097505128": "0x18d531680" }, "plotIndexes": [ - "0xfc6b22b4b7df" + "0x7cd3cbb3d968" ] } }, @@ -218532,7 +206687,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xD49946B3dA0428fE4E69c5F4D6c4125e5D0bf942": { + "0xE48436022460c33e32FC98391CD6442d55CD1c69": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -218545,12 +206700,10 @@ "fields": { "0": { "plots": { - "277622676617792": "0x14fd0f2e8a", - "277712821594314": "0x18330ebf32" + "137265377825154": "0x304b5408" }, "plotIndexes": [ - "0xfc7f11057a40", - "0xfc940e14a8ca" + "0x7cd79615d182" ] } }, @@ -218562,7 +206715,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xcD26f79e60fd260c867EEbAeAB45e021bAeCe92D": { + "0xFA2a3c48b85D6790B943F645Abf35A1E12770D09": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -218575,40 +206728,10 @@ "fields": { "0": { "plots": { - "274579580043801": "0x1a8f65e31" - }, - "plotIndexes": [ - "0xf9ba8a54c219" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x80771B6DC16d2c8C291e84C8f6D820150567534C": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "274586709729354": "0x351cf5dd9", - "274600967175715": "0x2b79fc238d" + "134129454761560": "0xe5afb9145" }, "plotIndexes": [ - "0xf9bc334b204a", - "0xf9bf851a7e23" + "0x79fd72814658" ] } }, @@ -218620,7 +206743,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xDB2480a43C79126F93Bd5a825dc0CBa46d7C0612": { + "0x411bbd5BAf8eb2447611FF3Ac6E187fBBE0573A7": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -218633,12 +206756,22 @@ "fields": { "0": { "plots": { - "273275462311532": "0x1c99dd", - "376596837312302": "0x20b464" + "136815080964510": "0xed3efc0ee", + "204505988395558": "0x91e12b51b", + "625573606332771": "0x6617bebb8", + "627237168988540": "0x330bdf5dc", + "630912951848778": "0x330bdf5dc", + "630199893153378": "0x330bdf5dc", + "633544834937816": "0x330bdf5dc" }, "plotIndexes": [ - "0xf88ae6db5e6c", - "0x1568348b6272e" + "0x7c6ebe4d019e", + "0xb9ff42caf226", + "0x238f4b4961963", + "0x23a7808a5c17c", + "0x23dcfde610f4a", + "0x23d29d8c4d662", + "0x24034a6d5f3d8" ] } }, @@ -218648,29 +206781,31 @@ "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xf2eb8" + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x9bf49f20" }, "sop": {} }, - "0x0A0761a91009101a86B7a0D786dBbA744cE2E240": { + "0x9B1AC8E6d08053C55713d9aA8fDE1c53e9a929e2": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "277532421339407": "0x115517ed0", - "278185787491171": "0x14e6fef49" + "128790521677597": "0x1bf08eb00", + "388736379371138": "0x338275a03e", + "387786058520473": "0x551af8ec15" }, "plotIndexes": [ - "0xfc6a0d63390f", - "0xfd022d0b8363" + "0x7522614b871d", + "0x1618dbdcdbe82", + "0x160b07a445799" ] } }, @@ -218682,7 +206817,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x0F0520237DB57A05728fa0880F8f08A1fd57ccff": { + "0xF074d66B602DaE945d261673B10C5d6197Ae5175": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -218695,10 +206830,14 @@ "fields": { "0": { "plots": { - "276395162620514": "0x259e55b10" + "145260774599348": "0x15c6ddc7b9", + "145952084202661": "0x2a5d4b4d86", + "145354305335917": "0x2b538b066b" }, "plotIndexes": [ - "0xfb61437c5262" + "0x841d28deaab4", + "0x84be1e2214a5", + "0x8432efbc726d" ] } }, @@ -218710,7 +206849,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x368a5564F46Bd896C8b365A2Dd45536252008372": { + "0x433770F8B8fA5272aa9d1Fe899FBEdD68e386569": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -218723,14 +206862,11 @@ "fields": { "0": { "plots": { - "273379926066013": "0x2b56a3043c" + "137531094651758": "0x53e129f77" }, "plotIndexes": [ - "0xf8a33961c35d" + "0x7d15740ad36e" ] -======= - "plotIndexes": ["0xf7bb36d0cfbc"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -218741,7 +206877,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xD0126092d4292F8DC755E6d8eEE8106fbf84583D": { + "0x1B89a08D82079337740e1cef68c571069725306e": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -218754,17 +206890,11 @@ "fields": { "0": { "plots": { - "276405260758386": "0x2603916394", - "285840847218881": "0x122dcec3e6" + "148148500497930": "0x6d98b52bb" }, -<<<<<<< HEAD "plotIndexes": [ - "0xfb639d61ad72", - "0x103f8822928c1" + "0x86bd82bf060a" ] -======= - "plotIndexes": ["0xf9ba54afd919"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -218775,11 +206905,7 @@ "internalTokenBalance": {}, "sop": {} }, -<<<<<<< HEAD - "0x0B7021897485cC2Db909866D78A1D82657A4be6F": { -======= - "0xde8351633c96Ac16860a78D90D3311fa390182BF": { ->>>>>>> b689ac329 (feat: update reseed jsons) + "0xE3546C83C06A298148214C8a25B4081d72a704B4": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -218792,72 +206918,11 @@ "fields": { "0": { "plots": { -<<<<<<< HEAD - "273335862185061": "0xa426976f8", - "318810216692840": "0x918f92667" + "145540390549720": "0x9622f36ba" }, "plotIndexes": [ - "0xf898f6f84c65", - "0x121f4c9b77c68" + "0x845e434778d8" ] -======= - "277537073969119": "0x13ee50c261" - }, - "plotIndexes": ["0xfc6b22b4b7df"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xD49946B3dA0428fE4E69c5F4D6c4125e5D0bf942": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "277622676617792": "0x14fd0f2e8a", - "277712821594314": "0x18330ebf32" - }, - "plotIndexes": ["0xfc7f11057a40", "0xfc940e14a8ca"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xcD26f79e60fd260c867EEbAeAB45e021bAeCe92D": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "274579580043801": "0x1a8f65e31" - }, - "plotIndexes": ["0xf9ba8a54c219"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -218868,37 +206933,24 @@ "internalTokenBalance": {}, "sop": {} }, - "0xEF64581Af57dFEc2722e618d4Dd5f3c9934C17De": { + "0x4932Ad7cde36e2aD8724f86648dF772D0413c39E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", -<<<<<<< HEAD "lastSop": "0x0", -======= - "lastSop": "0x42b", ->>>>>>> b689ac329 (feat: update reseed jsons) "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { -<<<<<<< HEAD - "273653841644570": "0xf93c297b8", - "386540379495873": "0xaa335ec15" + "144258485938657": "0x789af507d9" }, "plotIndexes": [ - "0xf8e30005cc1a", - "0x15f8e7202ddc1" + "0x8333cbcf69e1" ] -======= - "274586709729354": "0x351cf5dd9", - "274600967175715": "0x2b79fc238d" - }, - "plotIndexes": ["0xf9bc334b204a", "0xf9bf851a7e23"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -218909,11 +206961,7 @@ "internalTokenBalance": {}, "sop": {} }, -<<<<<<< HEAD - "0x17536a82E8721E8DC61Ab12a08c4BfE3fd7fD2C7": { -======= - "0xDB2480a43C79126F93Bd5a825dc0CBa46d7C0612": { ->>>>>>> b689ac329 (feat: update reseed jsons) + "0xdF02A9ba6C6A5118CF259f01eD7A023A4599a945": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -218926,17 +206974,18 @@ "fields": { "0": { "plots": { -<<<<<<< HEAD - "284761889788419": "0xc81347526", - "283862931443313": "0x3394c08e9", - "322288771602655": "0xb297bc7d64", - "335611264683963": "0x325142938f3" + "139975732251488": "0x5cac381568", + "181407955635376": "0x7eea4ef6d4", + "232388914759088": "0x38b3cc31cd", + "231851733041965": "0x33471466a0", + "241282142603223": "0x4ea7c91709" }, "plotIndexes": [ - "0x102fd4b495203", - "0x1022bfd318e71", - "0x1251eb3bf18df", - "0x1313c9636cfbb" + "0x7f4ea3cc4b60", + "0xa4fd54c14cb0", + "0xd35b42b6c5b0", + "0xd2de3030432d", + "0xdb71e06687d7" ] } }, @@ -218948,7 +206997,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x019285701d4502df31141dF600A472c61c054e63": { + "0x6384F5369d601992309c3102ac7670c62D33c239": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -218961,12 +207010,14 @@ "fields": { "0": { "plots": { - "285400078671087": "0x18d5500481", - "295033968260116": "0x17c29d2b57" + "147555339912491": "0x15d466ade0", + "201794323874481": "0x54f6e887c1", + "181331243759377": "0x11dc62559f" }, "plotIndexes": [ - "0x10391e24edcef", - "0x10c54f2dff414" + "0x8633679ec52b", + "0xb787e6fe02b1", + "0xa4eb785ef711" ] } }, @@ -218978,7 +207029,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x110dfBb05F447880B9B29206c1140C07372090dc": { + "0x3d860D1e938Ea003d12b9FC756Be12dBe1d5C4f5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -218991,10 +207042,12 @@ "fields": { "0": { "plots": { - "282823933037116": "0x60da74f02" + "141610787263306": "0x21fd7f31eab", + "191837226999990": "0x4694f486ecf" }, "plotIndexes": [ - "0x1013a14100a3c" + "0x80cb54abd34a", + "0xae7995c520b6" ] } }, @@ -219006,7 +207059,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x6039675c6D83B0B26F647AE3d33F7C34B8Ea945a": { + "0x8496e1b0aAd23e70Ef76F390518Cf2b4CC4a4849": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219019,10 +207072,14 @@ "fields": { "0": { "plots": { - "289487146073469": "0x8bbf6ca8a" + "145580692516754": "0x15689adb0", + "705687548615966": "0x191bc3d00", + "705712512774884": "0x178833fad" }, "plotIndexes": [ - "0x107497a823d7d" + "0x8467a576af92", + "0x281d1afa85d1e", + "0x281d77fa332e4" ] } }, @@ -219034,7 +207091,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x97Ada2E26C06C263c68ECCe43756708d0f03D94A": { + "0x0c492D61651965E3096740306F8345516fCd8990": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219047,10 +207104,14 @@ "fields": { "0": { "plots": { - "281369121491336": "0x1866644d90" + "147484814729971": "0x106ba0e238", + "180281626769160": "0xb6f2c120d6", + "200410780844889": "0x518c86de80" }, "plotIndexes": [ - "0xffe75a898988" + "0x8622fbfde2f3", + "0xa3f71652b708", + "0xb645c566c359" ] } }, @@ -219062,7 +207123,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF8444CF11708d3901Ee7B981b204eD0c7130fB93": { + "0xCd3F4c42552F24d5d8b1f508F8b8d138b01af53F": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219075,18 +207136,10 @@ "fields": { "0": { "plots": { - "286712631781524": "0xdf1071dc9b", - "285918925155495": "0xb8cc99fbed", - "287670685386031": "0x91693e6f4f", - "327268162978532": "0x70b04663e0", - "368431939737151": "0xe9f06c9179" + "148432137965500": "0xc1d91e994" }, "plotIndexes": [ - "0x104c37c91e894", - "0x1040aaff7eca7", - "0x105a28d03c52f", - "0x129a60e99c2e4", - "0x14f163ee4563f" + "0x86ff8cdb4fbc" ] } }, @@ -219098,7 +207151,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x651afE5D50d1cD8F7D891dd6bc2a3Db4A14E5287": { + "0x3E24c27F8fDCfC1f3E7E8683D9df0691AcE251C6": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219111,10 +207164,10 @@ "fields": { "0": { "plots": { - "280705451279893": "0x1210ed74ef" + "148618311892836": "0x156fa17ab6" }, "plotIndexes": [ - "0xff4cd4b5c615" + "0x872ae5afff64" ] } }, @@ -219126,7 +207179,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x79645bfB4Ef32902F4ee436A23E4A10A50789e54": { + "0x921Ed81DeE5099d700D447a5Acb33fC65Ba6bf96": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219139,12 +207192,10 @@ "fields": { "0": { "plots": { - "289603276344849": "0x338f941502", - "289037900183227": "0x656bc88400" + "145586649191784": "0x7ed23ea2a" }, "plotIndexes": [ - "0x1076484698e11", - "0x106e0e15df6bb" + "0x846908825568" ] } }, @@ -219156,23 +207207,25 @@ "internalTokenBalance": {}, "sop": {} }, - "0x821bb6973FdA779183d22C9891f566B2e59C8230": { + "0x94Ff138F71b8B4214e70d3bf6CcF73b3eb4581cB": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "279899339370850": "0x29db3f4d3" + "144776481763770": "0x45f8d0fe3", + "332990401346447": "0x49cf0e770" }, "plotIndexes": [ - "0xfe9124b23162" + "0x83ac66c471ba", + "0x12eda5e95fb8f" ] } }, @@ -219184,7 +207237,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x49444e6d0b374f33c43D5d27c53d0504241B9553": { + "0x6ab075abfA7cdD7B19FA83663b1f2a83e4A957e3": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219197,16 +207250,10 @@ "fields": { "0": { "plots": { - "289598528304849": "0x11b015740", - "325785700465033": "0xb28ee4080", - "333897831019794": "0xb788f26ac", - "372461099911308": "0x157adb58ab" + "139575720236986": "0x16c726714f" }, "plotIndexes": [ - "0x10763696836d1", - "0x1284ce4f2f989", - "0x12fada59bf512", - "0x152c05b8d888c" + "0x7ef1813957ba" ] } }, @@ -219218,7 +207265,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x0e56C87075CD53477C497D5B5F68CdcA8605cBF7": { + "0xa01b14d9fA355178408Dd873CB7C1F7aFd3C2151": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219231,12 +207278,10 @@ "fields": { "0": { "plots": { - "283860746063250": "0x824240df", - "311893596417096": "0x1c0c11bbc" + "153630962562924": "0xc7c0b92e6" }, "plotIndexes": [ - "0x1022b7aef4d92", - "0x11baa6305ac48" + "0x8bb9fef3376c" ] } }, @@ -219248,7 +207293,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xc32B1e77879F3544e629261E711A0cc87ae01182": { + "0x53c92792E6C8Dad49568e8De3ea06888f4830Fe0": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219261,10 +207306,12 @@ "fields": { "0": { "plots": { - "281343170282469": "0x27745758c" + "170679729221505": "0x6e417ffbc", + "725321098785789": "0x29a20bc686" }, "plotIndexes": [ - "0xffe14fb983e5" + "0x9b3b78a16f81", + "0x293acfa70f3fd" ] } }, @@ -219276,7 +207323,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF57c5533a9037E25E5688726fbccD03E09738aCd": { + "0xe1887385C1ed2d53782F0231D8032E4Ae570B3CE": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219289,10 +207336,12 @@ "fields": { "0": { "plots": { - "290667882932090": "0x382931703" + "168135476389285": "0x2fb03c5d4c", + "168068691873325": "0x8cc4e9b31" }, "plotIndexes": [ - "0x1085c63e8e77a" + "0x98eb175825a5", + "0x98db8aad4e2d" ] } }, @@ -219304,23 +207353,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x5edd743E40c978590d987c74912b9424B7258677": { + "0xbb9dDEE672BF27905663F49bf950090050C4e9ad": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x401", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "282938006963034": "0x116db8888" + "168493012264452": "0x13169d8a17" }, "plotIndexes": [ - "0x10154a366035a" + "0x993e5624a604" ] } }, @@ -219332,23 +207381,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x7e53AF93688908D67fc3ddcE3f4B033dBc257C20": { + "0x41954b53cFB5e4292223720cB3577d3ed885D4f7": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "280702256803893": "0xbe67d5e0" + "157994454912867": "0x2324c599ab" }, "plotIndexes": [ - "0xff4c164df035" + "0x8fb1f35c8f63" ] } }, @@ -219360,7 +207409,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xeeBF4Ea438D5216115577f9340cD4fB0EDD29BD9": { + "0x922d012c7E8fCe3C46ac761179Bdb6d16246782D": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219373,12 +207422,12 @@ "fields": { "0": { "plots": { - "279922610063052": "0xf1d9b05b", - "334851860911256": "0x1737161ad8" + "150084707437893": "0x5d21dba00", + "685372204853017": "0x1014e10311" }, "plotIndexes": [ - "0xfe968fbcc6cc", - "0x1308bc638d498" + "0x888051ac4d45", + "0x26f57a6cf2719" ] } }, @@ -219390,7 +207439,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8E8Ae083aC4455108829789e8ACb4DbdDe330e2E": { + "0x30d0DEb932b5535f792d359604D7341D1B357a35": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219403,10 +207452,10 @@ "fields": { "0": { "plots": { - "289524659324935": "0x95033ae50" + "153844244754703": "0x3cb8b79b97" }, "plotIndexes": [ - "0x1075236790807" + "0x8beba78f310f" ] } }, @@ -219418,32 +207467,26 @@ "internalTokenBalance": {}, "sop": {} }, - "0x89AA0D7EBdCc58D230aF421676A8F62cA168d57a": { + "0xdbC529316fe45F5Ce50528BF2356211051fB0F71": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "289473500183227": "0x32d5bc2c2", - "465942921824991": "0x324cf5720" + "149967196818046": "0x366014730", + "269534561489665": "0x1522e45820" }, "plotIndexes": [ - "0x107464d267abb", - "0x1a7c5ca574adf" + "0x8864f57e8a7e", + "0xf523e7cad301" ] -======= - "273275462311532": "0x1c99dd", - "376596837312302": "0x20b464" - }, - "plotIndexes": ["0xf88ae6db5e6c", "0x1568348b6272e"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -219452,15 +207495,11 @@ "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xf2eb8" + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xede90b8" }, "sop": {} }, -<<<<<<< HEAD - "0x3BD4c721C1b547Ea42F728B5a19eB6233803963E": { -======= - "0x0A0761a91009101a86B7a0D786dBbA744cE2E240": { ->>>>>>> b689ac329 (feat: update reseed jsons) + "0xb9c3Dd8fee9A4ACe100f8cC0B8239AB49B021fA5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219473,11 +207512,24 @@ "fields": { "0": { "plots": { -<<<<<<< HEAD - "279910575121973": "0x2cd56a097" + "149577120077935": "0x989680", + "149431927422856": "0x21ce2818e7", + "149577130077935": "0xf4240", + "213270572343591": "0xac8e31c00", + "262592826339996": "0x16fae598c9", + "402001335542096": "0x3fa1f30d00", + "699491292359432": "0x238812e413", + "701405120085419": "0x28fbe85840" }, "plotIndexes": [ - "0xfe93c2662635" + "0x880a231bd86f", + "0x87e854f3bf88", + "0x880a23b46eef", + "0xc1f7ecb4a127", + "0xeed3a822729c", + "0x16d9e3acde150", + "0x27c2f02012b08", + "0x27dec9b06bdab" ] } }, @@ -219489,7 +207541,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x99997957BF3c202446b1DCB1CAc885348C5b2222": { + "0xcA580c4e991061D151021B13b984De73B183b06e": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219502,19 +207554,11 @@ "fields": { "0": { "plots": { - "285760338065737": "0x54378b3c0", - "298929583976174": "0xf7ec009ac" + "153786447955420": "0xd74f52b33" }, "plotIndexes": [ - "0x103e5c370f949", - "0x10fdff7aa6eee" + "0x8bde329a05dc" ] -======= - "277532421339407": "0x115517ed0", - "278185787491171": "0x14e6fef49" - }, - "plotIndexes": ["0xfc6a0d63390f", "0xfd022d0b8363"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -219525,7 +207569,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x0F0520237DB57A05728fa0880F8f08A1fd57ccff": { + "0x7C28205352AD687348578f9cB2AB04DE1DcaA040": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219538,9 +207582,11 @@ "fields": { "0": { "plots": { - "276395162620514": "0x259e55b10" + "168585228445774": "0x39f0084fc4" }, - "plotIndexes": ["0xfb61437c5262"] + "plotIndexes": [ + "0x9953cea7e84e" + ] } }, "depositAllowances": {}, @@ -219551,10 +207597,7 @@ "internalTokenBalance": {}, "sop": {} }, -<<<<<<< HEAD - "0x74fEd61c646B86c0BCd261EcfE69c7C7d5E16b81": { -======= - "0x368a5564F46Bd896C8b365A2Dd45536252008372": { + "0x219312542D51cae86E47a1A18585f0bac6E6867B": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219567,9 +207610,11 @@ "fields": { "0": { "plots": { - "273379926066013": "0x2b56a3043c" + "154105041833126": "0x4ad64a736" }, - "plotIndexes": ["0xf8a33961c35d"] + "plotIndexes": [ + "0x8c286046cca6" + ] } }, "depositAllowances": {}, @@ -219580,7 +207625,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xD0126092d4292F8DC755E6d8eEE8106fbf84583D": { + "0x0e9dc8fFc3a5A04A2Abdd5C5cBc52187E6653E42": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219593,10 +207638,33 @@ "fields": { "0": { "plots": { - "276405260758386": "0x2603916394", - "285840847218881": "0x122dcec3e6" + "170739819759175": "0x1d432f8da7c", + "205352438673508": "0x7f12273017", + "208195727704637": "0x4e879d35bc", + "230656709472518": "0x19f878cfa5", + "230768252321963": "0x77a044356e", + "237606953663534": "0x1f274005aa", + "236350247713281": "0x8fd21a1b11", + "237740756156888": "0xb3ef222778", + "505208494615910": "0x60f80685b2", + "531421470867756": "0x150ba3086", + "531420470867756": "0x3b9aca00", + "545138809924718": "0x593969aea1" }, - "plotIndexes": ["0xfb639d61ad72", "0x103f8822928c1"] + "plotIndexes": [ + "0x9b49764e4647", + "0xbac457293064", + "0xbd5a5864c23d", + "0xd1c7f33bb106", + "0xd1e1ebb480ab", + "0xd81a2e11bc2e", + "0xd6f5948eba01", + "0xd8395551c1d8", + "0x1cb7c04dbed66", + "0x1e35333ff412c", + "0x1e352f864772c", + "0x1efcd051e6c6e" + ] } }, "depositAllowances": {}, @@ -219607,8 +207675,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x0B7021897485cC2Db909866D78A1D82657A4be6F": { ->>>>>>> b689ac329 (feat: update reseed jsons) + "0x5004Be84E3C40fAf175218a50779b333B7c84276": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219621,10 +207688,13 @@ "fields": { "0": { "plots": { - "273335862185061": "0xa426976f8", - "318810216692840": "0x918f92667" + "168106479315294": "0x6c05c3c47", + "282729479437291": "0x1262d5cb63" }, - "plotIndexes": ["0xf898f6f84c65", "0x121f4c9b77c68"] + "plotIndexes": [ + "0x98e456fbe95e", + "0x1012416307beb" + ] } }, "depositAllowances": {}, @@ -219635,7 +207705,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xEF64581Af57dFEc2722e618d4Dd5f3c9934C17De": { + "0x57068722592FeD292Aa9fdfA186A156D00A87a59": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219648,10 +207718,11 @@ "fields": { "0": { "plots": { - "273653841644570": "0xf93c297b8", - "386540379495873": "0xaa335ec15" + "153517294218286": "0x1a77294b3e" }, - "plotIndexes": ["0xf8e30005cc1a", "0x15f8e7202ddc1"] + "plotIndexes": [ + "0x8b9f87c9ec2e" + ] } }, "depositAllowances": {}, @@ -219662,28 +207733,28 @@ "internalTokenBalance": {}, "sop": {} }, -<<<<<<< HEAD - "0x6d26C4f242971eaCCe5Dc1EAEd77a76F5705B190": { -======= - "0x17536a82E8721E8DC61Ab12a08c4BfE3fd7fD2C7": { + "0x085E98CD14e00f9FC3E9F670e1740F954124e824": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "284761889788419": "0xc81347526", - "283862931443313": "0x3394c08e9", - "322288771602655": "0xb297bc7d64", - "335611264683963": "0x325142938f3" + "154158293224517": "0x26381a3980", + "271915086191895": "0xc442d3a4e", + "273185381030890": "0x3190220b6" }, - "plotIndexes": ["0x102fd4b495203", "0x1022bfd318e71", "0x1251eb3bf18df", "0x1313c9636cfbb"] + "plotIndexes": [ + "0x8c34c64e8c45", + "0xf74e2a1f1d17", + "0xf875ed981bea" + ] } }, "depositAllowances": {}, @@ -219694,7 +207765,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x019285701d4502df31141dF600A472c61c054e63": { + "0x262126FD37D04321D7f824c8984976542fCA2C36": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219707,10 +207778,11 @@ "fields": { "0": { "plots": { - "285400078671087": "0x18d5500481", - "295033968260116": "0x17c29d2b57" + "153684583303762": "0x17b79b3b8a" }, - "plotIndexes": ["0x10391e24edcef", "0x10c54f2dff414"] + "plotIndexes": [ + "0x8bc67afeca52" + ] } }, "depositAllowances": {}, @@ -219721,7 +207793,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x110dfBb05F447880B9B29206c1140C07372090dc": { + "0x26f781D7f59c67BBd16acED83dB4ba90d1e47689": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219734,9 +207806,11 @@ "fields": { "0": { "plots": { - "282823933037116": "0x60da74f02" + "170677478669570": "0x8624b27f" }, - "plotIndexes": ["0x1013a14100a3c"] + "plotIndexes": [ + "0x9b3af27cbd02" + ] } }, "depositAllowances": {}, @@ -219747,7 +207821,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x6039675c6D83B0B26F647AE3d33F7C34B8Ea945a": { + "0xB3B6757364eCa9Cd74f46A587F8775b832d72D2e": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219760,9 +207834,13 @@ "fields": { "0": { "plots": { - "289487146073469": "0x8bbf6ca8a" + "168340296598257": "0x238e902313", + "308693409732309": "0x1201b1f020" }, - "plotIndexes": ["0x107497a823d7d"] + "plotIndexes": [ + "0x991ac79482f1", + "0x118c1490816d5" + ] } }, "depositAllowances": {}, @@ -219773,7 +207851,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x97Ada2E26C06C263c68ECCe43756708d0f03D94A": { + "0xd8388Ad2fF4C781903b6D9F17A60Daf4e919f2ce": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219786,9 +207864,35 @@ "fields": { "0": { "plots": { - "281369121491336": "0x1866644d90" + "180158456901067": "0x1cad7f093d", + "188657736324806": "0x93327c3ae", + "221757890116192": "0x481b91f39", + "231324321180518": "0x1f7a96dff", + "231457766946954": "0x1337265e7", + "231332771223909": "0x1f78c4724", + "225343185979003": "0x4327220f1", + "242180107603542": "0x51a94b44d", + "242174757473730": "0x13ee48094", + "268449221949319": "0x9b6ef4a744", + "294586560057632": "0x682b9b62f4", + "294364816047932": "0x20f90f7f8f", + "299594100999804": "0xb26af37af" }, - "plotIndexes": ["0xffe75a898988"] + "plotIndexes": [ + "0xa3da68d3adcb", + "0xab954d5b96c6", + "0xc9b008443a60", + "0xd26363fdeb66", + "0xd28275fab88a", + "0xd2655ba75965", + "0xccf2cc8d867b", + "0xdc42f3490e56", + "0xdc41b4648dc2", + "0xf4273483b787", + "0x10becc7449120", + "0x10bb9264b7f3c", + "0x1107aaff7867c" + ] } }, "depositAllowances": {}, @@ -219799,31 +207903,25 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF8444CF11708d3901Ee7B981b204eD0c7130fB93": { + "0x1904e56D521aC77B05270caefB55E18033b9b520": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "286712631781524": "0xdf1071dc9b", - "285918925155495": "0xb8cc99fbed", - "287670685386031": "0x91693e6f4f", - "327268162978532": "0x70b04663e0", - "368431939737151": "0xe9f06c9179" + "202615094361235": "0xbbfc30b25", + "220065412002903": "0x22c1148efe" }, "plotIndexes": [ - "0x104c37c91e894", - "0x1040aaff7eca7", - "0x105a28d03c52f", - "0x129a60e99c2e4", - "0x14f163ee4563f" + "0xb84700b9bc93", + "0xc825f8b5b457" ] } }, @@ -219835,7 +207933,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x651afE5D50d1cD8F7D891dd6bc2a3Db4A14E5287": { + "0xD1373DfB5Ff412291C06e5dFe6b25be239DBcf3E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219848,9 +207946,11 @@ "fields": { "0": { "plots": { - "280705451279893": "0x1210ed74ef" + "181953052558212": "0x236fc07080" }, - "plotIndexes": ["0xff4cd4b5c615"] + "plotIndexes": [ + "0xa57c3f104384" + ] } }, "depositAllowances": {}, @@ -219861,7 +207961,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x79645bfB4Ef32902F4ee436A23E4A10A50789e54": { + "0x9b8dB915fA36e5d9Fb65974183172E720fDf3B52": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219874,10 +207974,11 @@ "fields": { "0": { "plots": { - "289603276344849": "0x338f941502", - "289037900183227": "0x656bc88400" + "202907059734614": "0x1ea70a714" }, - "plotIndexes": ["0x1076484698e11", "0x106e0e15df6bb"] + "plotIndexes": [ + "0xb88afb37c856" + ] } }, "depositAllowances": {}, @@ -219888,7 +207989,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x821bb6973FdA779183d22C9891f566B2e59C8230": { + "0xAc4c5952231a86E8ba3107F2C5e9C5b6b303C0EE": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219901,9 +208002,15 @@ "fields": { "0": { "plots": { - "279899339370850": "0x29db3f4d3" + "204483741086104": "0x26f5e10c", + "328476823472330": "0xbc98ecaf7", + "656403459612897": "0x7208afa30" }, - "plotIndexes": ["0xfe9124b23162"] + "plotIndexes": [ + "0xb9fa14bff198", + "0x12abf786148ca", + "0x254fed70a20e1" + ] } }, "depositAllowances": {}, @@ -219914,7 +208021,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x49444e6d0b374f33c43D5d27c53d0504241B9553": { + "0xbFd7ddd26653A7706146895d6e314aF42f7B18D5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219927,12 +208034,19 @@ "fields": { "0": { "plots": { - "289598528304849": "0x11b015740", - "325785700465033": "0xb28ee4080", - "333897831019794": "0xb788f26ac", - "372461099911308": "0x157adb58ab" + "204489002275103": "0x167deeadb", + "269327679034543": "0x1afffc89bb", + "261741019824303": "0x318bc202b", + "273814984429661": "0x80d6ec6af", + "312146875547105": "0x1856730f0" }, - "plotIndexes": ["0x10763696836d1", "0x1284ce4f2f989", "0x12fada59bf512", "0x152c05b8d888c"] + "plotIndexes": [ + "0xb9fb4e57511f", + "0xf4f3bca314af", + "0xee0d548280af", + "0xf90884e1905d", + "0x11be55ba27de1" + ] } }, "depositAllowances": {}, @@ -219943,7 +208057,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x0e56C87075CD53477C497D5B5F68CdcA8605cBF7": { + "0x6AB3E708231eBc450549B37f8DDF269E789ed322": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219956,10 +208070,57 @@ "fields": { "0": { "plots": { - "283860746063250": "0x824240df", - "311893596417096": "0x1c0c11bbc" + "200867811074584": "0x32adafe6aa", + "234774888197334": "0x54dcb37000", + "239092831941854": "0x8430897d80", + "260118373627924": "0x4b4b641f40", + "254494491465844": "0x820931b100", + "446815618027105": "0x1e3fd5e00", + "446827216136839": "0x2b3f30ea4", + "463426993699329": "0x6c94b8f0d", + "464453051748379": "0x40965c93f", + "586613207988784": "0xff2577b96", + "634288124330782": "0x1c5d0c724", + "649805925059057": "0xc650da2c0", + "649502105309057": "0xc650da2c0", + "649198285559057": "0xc650da2c0", + "696501399481444": "0xc88fb391f", + "696254055525928": "0x14477e378", + "698739309824756": "0x23227119a8", + "718136155898812": "0x62875eea4", + "716905989198435": "0x81319b70e", + "720175216460971": "0x20d23da2d7", + "738009093827168": "0x12e8a80e0f", + "737010650241966": "0xd84a54b00", + "743151962222302": "0xb6c15a258", + "805417930289879": "0x1dd6878d6" }, - "plotIndexes": ["0x1022b7aef4d92", "0x11baa6305ac48"] + "plotIndexes": [ + "0xb6b02e86a218", + "0xd586c9d02cd6", + "0xd9742350f4de", + "0xec9387427814", + "0xe7761dc2d874", + "0x196605e314e61", + "0x19663117e6a87", + "0x1a57c0156ba01", + "0x1a66ae72a101b", + "0x2158587e1fa30", + "0x240e1b656031e", + "0x24efebb5609f1", + "0x24eb7fe448f81", + "0x24e7141331511", + "0x27976de806c64", + "0x2793d47a72e28", + "0x27b7fec5a4af4", + "0x28d241a7903bc", + "0x28c05aed2d263", + "0x28efedbf404ab", + "0x29f3721e0ea60", + "0x29e4eaa00dbae", + "0x2a3e48cb8eede", + "0x2dc85f9a172d7" + ] } }, "depositAllowances": {}, @@ -219970,7 +208131,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xc32B1e77879F3544e629261E711A0cc87ae01182": { + "0xF28841b27FD011475184aC5BECadd12a14667e04": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -219983,9 +208144,11 @@ "fields": { "0": { "plots": { - "281343170282469": "0x27745758c" + "191833111162737": "0xf552b145" }, - "plotIndexes": ["0xffe14fb983e5"] + "plotIndexes": [ + "0xae78a0726f71" + ] } }, "depositAllowances": {}, @@ -219996,7 +208159,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF57c5533a9037E25E5688726fbccD03E09738aCd": { + "0x9cFD5052DC827c11a6B3Ab2BB5091773765ea2c8": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220009,9 +208172,11 @@ "fields": { "0": { "plots": { - "290667882932090": "0x382931703" + "203083203411712": "0x72520cba0" }, - "plotIndexes": ["0x1085c63e8e77a"] + "plotIndexes": [ + "0xb8b3fe32ff00" + ] } }, "depositAllowances": {}, @@ -220019,36 +208184,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x5edd743E40c978590d987c74912b9424B7258677": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x401", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "282938006963034": "0x116db8888" - }, - "plotIndexes": ["0x10154a366035a"] - } + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x5ef1500" }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, "sop": {} }, - "0x7e53AF93688908D67fc3ddcE3f4B033dBc257C20": { + "0x4497aAbaa9C178dc1525827b1690a3b8f3647457": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220061,9 +208202,11 @@ "fields": { "0": { "plots": { - "280702256803893": "0xbe67d5e0" + "202722306634067": "0x274d5cdac5" }, - "plotIndexes": ["0xff4c164df035"] + "plotIndexes": [ + "0xb85ff7133153" + ] } }, "depositAllowances": {}, @@ -220074,7 +208217,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xeeBF4Ea438D5216115577f9340cD4fB0EDD29BD9": { + "0xae0aAF5E7135058919aB10756C6CdD574a92e557": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220087,10 +208230,11 @@ "fields": { "0": { "plots": { - "279922610063052": "0xf1d9b05b", - "334851860911256": "0x1737161ad8" + "204283741086104": "0x2e90edd000" }, - "plotIndexes": ["0xfe968fbcc6cc", "0x1308bc638d498"] + "plotIndexes": [ + "0xb9cb83d22198" + ] } }, "depositAllowances": {}, @@ -220101,7 +208245,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8E8Ae083aC4455108829789e8ACb4DbdDe330e2E": { + "0x47635847a5bC731592F7EfB9a10f2461C2F5CdAb": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220114,9 +208258,11 @@ "fields": { "0": { "plots": { - "289524659324935": "0x95033ae50" + "200761030844889": "0x112904ba2f" }, - "plotIndexes": ["0x1075236790807"] + "plotIndexes": [ + "0xb69751eda1d9" + ] } }, "depositAllowances": {}, @@ -220127,36 +208273,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x89AA0D7EBdCc58D230aF421676A8F62cA168d57a": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "289473500183227": "0x32d5bc2c2", - "465942921824991": "0x324cf5720" - }, - "plotIndexes": ["0x107464d267abb", "0x1a7c5ca574adf"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x166d0ca" - }, - "sop": {} - }, - "0x3BD4c721C1b547Ea42F728B5a19eB6233803963E": { + "0x8FA1E05245660E20df4e6DfDfB32Fcd2f2E1cAcd": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220169,9 +208286,19 @@ "fields": { "0": { "plots": { - "279910575121973": "0x2cd56a097" + "204560148294849": "0x3ff64a3cc0", + "227441220581468": "0x1039f6a5e", + "221300565354492": "0xf0203af62", + "344360197916189": "0x13e1c3bfbe", + "489666388361106": "0x2ce03daaf9" }, - "plotIndexes": ["0xfe93c2662635"] + "plotIndexes": [ + "0xba0bdef96cc1", + "0xcedb4928f85c", + "0xc9458d9627fc", + "0x139319b45861d", + "0x1bd595722ff92" + ] } }, "depositAllowances": {}, @@ -220182,7 +208309,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x99997957BF3c202446b1DCB1CAc885348C5b2222": { + "0xc9EA118C809C72ccb561Dd227036ce3C88D892C2": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220195,10 +208322,11 @@ "fields": { "0": { "plots": { - "285760338065737": "0x54378b3c0", - "298929583976174": "0xf7ec009ac" + "202915287953258": "0x1ccc1fa7fd" }, - "plotIndexes": ["0x103e5c370f949", "0x10fdff7aa6eee"] + "plotIndexes": [ + "0xb88ce5a86f6a" + ] } }, "depositAllowances": {}, @@ -220209,7 +208337,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x4DA9d25c0203Dc7Ce50c87Df2eb6C9068Eca256E": { + "0x0c940e42D91FE16E0f0Eccc964b26dde7808ab5d": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220222,9 +208350,11 @@ "fields": { "0": { "plots": { - "281360732660114": "0x1f40367f6" + "204834863294849": "0xa131fd373" }, - "plotIndexes": ["0xffe566862192"] + "plotIndexes": [ + "0xba4bd543a981" + ] } }, "depositAllowances": {}, @@ -220235,7 +208365,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x74fEd61c646B86c0BCd261EcfE69c7C7d5E16b81": { + "0x136e6F25117aF5e5ff5d353dC41A0e91F013D461": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220248,9 +208378,11 @@ "fields": { "0": { "plots": { - "288652038051959": "0x3fca11c2a5" + "205073735725117": "0x1c86eea469" }, - "plotIndexes": ["0x106870a311877"] + "plotIndexes": [ + "0xba83732bb03d" + ] } }, "depositAllowances": {}, @@ -220261,7 +208393,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x6d26C4f242971eaCCe5Dc1EAEd77a76F5705B190": { + "0xEd52006B09b111dAa000126598ACD95F991692D6": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220274,10 +208406,15 @@ "fields": { "0": { "plots": { - "289570099594839": "0x8824d49c", - "325489589719323": "0x3c25e2833" + "201288716074320": "0x277f368538", + "191024259399088": "0x4604d0d1ff", + "253710018355608": "0x91e114a5e4" }, - "plotIndexes": ["0x1075ccaec8657", "0x12807f35f911b"] + "plotIndexes": [ + "0xb7122e6b3d50", + "0xadbc4d1ffdb0", + "0xe6bf77852198" + ] } }, "depositAllowances": {}, @@ -220288,36 +208425,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x90B113Cf662039394D28505f51f0B1B4678Cc3b5": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "280783044688644": "0x2eceea4b0" - }, - "plotIndexes": ["0xff5ee5a33b04"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x29f6bb0d" - }, - "sop": {} - }, - "0x382C29bB63Af1E6Bd3Fc818FeA85bd25Afb0E92E": { ->>>>>>> b689ac329 (feat: update reseed jsons) + "0xcEB03369b7537eB3eCa2b2951DdfD6D032c01c41": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220330,12 +208438,10 @@ "fields": { "0": { "plots": { - "288522664536795": "0x15247153d9" + "199315986281033": "0x42f97b6d9" }, -<<<<<<< HEAD "plotIndexes": [ - "0x1075ccaec8657", - "0x12807f35f911b" + "0xb546de8f7249" ] } }, @@ -220347,7 +208453,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x90B113Cf662039394D28505f51f0B1B4678Cc3b5": { + "0xF352e5320291298bE60D00a015b27D3960F879FA": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220360,10 +208466,14 @@ "fields": { "0": { "plots": { - "280783044688644": "0x2eceea4b0" + "204484394734244": "0x112a17e7b", + "931280942124652": "0x84a633e9e", + "943534242598500": "0x18042bf910" }, "plotIndexes": [ - "0xff5ee5a33b04" + "0xb9fa3bb5d2a4", + "0x34efebdbdce6c", + "0x35a23af5d0e64" ] } }, @@ -220373,11 +208483,11 @@ "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x29f6bb0d" + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xb58370b" }, "sop": {} }, - "0x382C29bB63Af1E6Bd3Fc818FeA85bd25Afb0E92E": { + "0x1dE6844C76Fa59C5e7B4566044CC1Bb9ef958714": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220390,52 +208500,13 @@ "fields": { "0": { "plots": { - "288522664536795": "0x15247153d9" - }, - "plotIndexes": [ - "0x10668eaedeadb" - ] -======= - "plotIndexes": ["0x10668eaedeadb"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x682a4c54F9c9cE3a66700AE6f3b67f5984D85C21": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "298426082271272": "0x7f5a25c40", - "298739111357662": "0x2c590d8210", - "318131255471558": "0x723730fe71", - "318849290379983": "0x2d7802825b" + "220637584990881": "0x89638240", + "220709260788997": "0x112c70480" }, -<<<<<<< HEAD "plotIndexes": [ - "0x10f6abca02028", - "0x10fb39e9cecde", - "0x12156b4796dc6", - "0x121fde2b0a2cf" + "0xc8ab30e0a2a1", + "0xc8bbe1168505" ] -======= - "plotIndexes": ["0x10f6abca02028", "0x10fb39e9cecde", "0x12156b4796dc6", "0x121fde2b0a2cf"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -220443,10 +208514,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x3201277a" + }, "sop": {} }, - "0xFe2da4E7e3675b00BE2Ff58c6a018Ed06237C81D": { + "0x354F7a379e9478Ad1734f5c48e856F89E309a597": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220459,15 +208532,11 @@ "fields": { "0": { "plots": { - "295372378685570": "0x34cc0b749" + "213213798353310": "0x2d042545d" }, -<<<<<<< HEAD "plotIndexes": [ - "0x10ca3bdb54082" + "0xc1eab4b6499e" ] -======= - "plotIndexes": ["0x10ca3bdb54082"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -220478,7 +208547,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xdF3A7C30313779D3b6AA577A28456259226Ff452": { + "0x07f7cA325221752380d6CdFBcFF9B5E5E9EC058F": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220491,15 +208560,11 @@ "fields": { "0": { "plots": { - "298546668100712": "0x71d22e703" + "219683298748205": "0x1362cf36c3" }, -<<<<<<< HEAD "plotIndexes": [ - "0x10f86d019dc68" + "0xc7cd00fc272d" ] -======= - "plotIndexes": ["0x10f86d019dc68"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -220510,7 +208575,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x93b34d74a134b403450f993e3f2fb75B751fa3d6": { + "0x2bDB0cB25Db0012dF643041B3490d163A1809eE6": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220523,15 +208588,11 @@ "fields": { "0": { "plots": { - "296797858583543": "0x208bb44280" + "218546663766811": "0x13b30abc5d" }, -<<<<<<< HEAD "plotIndexes": [ - "0x10defa2ee53f7" + "0xc6c45c42bb1b" ] -======= - "plotIndexes": ["0x10defa2ee53f7"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -220539,12 +208600,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x1cc5b5" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x74b0b7cEa336fBb34Bc23EB58F48AC5e4C04159E": { + "0x342Ba89a30Af6e785EBF651fb0EAd52752Ab1c9F": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220557,21 +208616,23 @@ "fields": { "0": { "plots": { - "297412002527525": "0xdc07230bc", - "300538713353756": "0x46e4b383e", - "295473191285707": "0x496f2323d", - "296283253996855": "0x15fb511801" + "212188823059772": "0xa7374b4e92", + "255265354982596": "0x9be7452800", + "459187067180977": "0x1eb9395e63", + "586881787286346": "0x3a7c3244da3", + "558750219097685": "0x86d4529c86", + "635572332702096": "0x43ef59f533", + "636541607037349": "0x31bea413b6" }, -<<<<<<< HEAD "plotIndexes": [ - "0x10e7ea0c33925", - "0x111569f402e1c", - "0x10cbb369b73cb", - "0x10d77d21b7d37" + "0xc0fc0f6c7d3c", + "0xe82998cea4c4", + "0x1a1a0d20657b1", + "0x215c41074d34a", + "0x1fc2e2c53d655", + "0x2420cb71ea990", + "0x242ee645f49a5" ] -======= - "plotIndexes": ["0x10e7ea0c33925", "0x111569f402e1c", "0x10cbb369b73cb", "0x10d77d21b7d37"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -220582,7 +208643,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xFD7998c9c23aa865590fd3405F19c23423a0611B": { + "0x8325D26d08DaBf644582D2a8da311D94DBD02A97": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220595,15 +208656,13 @@ "fields": { "0": { "plots": { - "298460268100712": "0x141dd76000" + "214830162730441": "0x2902dda9f", + "293750873555124": "0x9d70e8ae" }, -<<<<<<< HEAD "plotIndexes": [ - "0x10f72b2427c68" + "0xc3630b895dc9", + "0x10b2a347880b4" ] -======= - "plotIndexes": ["0x10f72b2427c68"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -220611,10 +208670,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x8676c5" + }, "sop": {} }, - "0xDa12B5133e13e01d95f9a5BE0cc61496b17E5494": { + "0xF7cCA800424e518728F88D7FC3B67Ed6dFa0693C": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220627,15 +208688,11 @@ "fields": { "0": { "plots": { - "297843565336066": "0x1b0d0a4020" + "214824040374252": "0x38453121" }, -<<<<<<< HEAD "plotIndexes": [ - "0x10ee31be91602" + "0xc3619e9d9fec" ] -======= - "plotIndexes": ["0x10ee31be91602"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -220646,7 +208703,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x41a93Eb81720F943FE52b7F72E4a7ac9620AcC54": { + "0x38Cf87B5d7B0672Ac544Ed279cbbff31Bb83b3D5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220659,15 +208716,13 @@ "fields": { "0": { "plots": { - "291654604244211": "0xad71848cc" + "213264452873369": "0x16cbfb48e", + "268381273591215": "0x42ec0a2a8" }, -<<<<<<< HEAD "plotIndexes": [ - "0x10942211544f3" + "0xc1f67ff4ec99", + "0xf417627a0daf" ] -======= - "plotIndexes": ["0x10942211544f3"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -220675,33 +208730,29 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xb60206" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x4d26976EC64f11ce10325297363862669fCaAaD5": { + "0x9eB97e6aee08EF7AC5F6b523886E10bb1Cd8DE9d": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "293290104729008": "0x1633af4b50" + "212907010280398": "0x2fabb322cf", + "491199224234272": "0x666e3aa0" }, -<<<<<<< HEAD "plotIndexes": [ - "0x10abeec822db0" + "0xc1a346b7cbce", + "0x1bebe3b464120" ] -======= - "plotIndexes": ["0x10abeec822db0"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -220712,28 +208763,24 @@ "internalTokenBalance": {}, "sop": {} }, - "0xe2282eA0D41b1a9D99B593e81D9adb500476C7C5": { + "0x54CE05973cFadd3bbACf46497C08Fc6DAe156521": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "297959748228642": "0xa20c0e1f1" + "211486572900138": "0xc3e287e0" }, -<<<<<<< HEAD "plotIndexes": [ - "0x10efe28f35622" + "0xc0588e0d6f2a" ] -======= - "plotIndexes": ["0x10efe28f35622"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -220741,10 +208788,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xa9bc" + }, "sop": {} }, - "0x08b6e06F64f62b7255840329b2DDB592d6A2c336": { + "0x6a12c8594c5C850d57612CA58810ABb8aeBbC04B": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220757,15 +208806,17 @@ "fields": { "0": { "plots": { - "293279130525087": "0x28e1d1011" + "217940532047787": "0x19d0f6880", + "217947462047787": "0x6b9d444e00", + "491200942734272": "0x6675dbc0", + "491202661734272": "0x3d87a5e0" }, -<<<<<<< HEAD "plotIndexes": [ - "0x10abc5e651d9f" + "0xc6373bfeafab", + "0xc638d90e182b", + "0x1bebea1b47bc0", + "0x1bebf082a5780" ] -======= - "plotIndexes": ["0x10abc5e651d9f"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -220776,30 +208827,24 @@ "internalTokenBalance": {}, "sop": {} }, - "0xEC9F16FAacD809ED3EC90D22C92cE84C5C115FAC": { + "0xb69D09d54bF5a489Ca9F0d8E0D50d2c958aE55C5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "297471065811425": "0x5b9521200", - "297503528406965": "0x3d686b5bc" + "219661298748205": "0x51f4d5c00" }, -<<<<<<< HEAD "plotIndexes": [ - "0x10e8c613569e1", - "0x10e93f0214fb5" + "0xc7c7e1aecb2d" ] -======= - "plotIndexes": ["0x10e8c613569e1", "0x10e93f0214fb5"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -220807,14 +208852,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x2f02075d" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x5A803cD039d7c427AD01875990f76886cC574339": { -<<<<<<< HEAD -======= + "0x17FA401eBAd908CC02bd2Cb2DC37A71c872B47e5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220827,10 +208868,13 @@ "fields": { "0": { "plots": { - "304668727377586": "0xbfc3bba92e", - "303460189172472": "0xeb1283af8c" + "220639889990881": "0x1026d26024", + "401536968546834": "0xd7d3ac544" }, - "plotIndexes": ["0x115183744feb2", "0x113fed4c772f8"] + "plotIndexes": [ + "0xc8abba4424e1", + "0x16d321c5fda12" + ] } }, "depositAllowances": {}, @@ -220841,7 +208885,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x5D177d3f4878038521936e6449C17BeCd2D10cBA": { + "0x54Af3F7c7dBb94293f94EE15dBFD819C572B9235": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220854,9 +208898,13 @@ "fields": { "0": { "plots": { - "302037489993568": "0x688b86ee8" + "217546047951373": "0x5bd9159d9e", + "242397324583886": "0x50d008dee1" }, - "plotIndexes": ["0x112b3954cc760"] + "plotIndexes": [ + "0xc5db62e9120d", + "0xdc75866d23ce" + ] } }, "depositAllowances": {}, @@ -220867,7 +208915,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8eaA2d22eDd38E9769a9Ec7505bDe53933294DB1": { + "0x533ac5848d57672399a281b65A834d88B0b2dF45": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220880,9 +208928,13 @@ "fields": { "0": { "plots": { - "311951348717264": "0x4ace2a3d8" + "214901535169245": "0x1341f8255", + "231673913235551": "0x7fa261d23" }, - "plotIndexes": ["0x11bb7d553d6d0"] + "plotIndexes": [ + "0xc373a9aa5add", + "0xd2b4c94d585f" + ] } }, "depositAllowances": {}, @@ -220893,7 +208945,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xD2927a91570146218eD700566DF516d67C5ECFAB": { + "0x73C28f0571ee437171E421c80a55Bdcc6c07cc5C": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220906,10 +208958,11 @@ "fields": { "0": { "plots": { - "311239094540889": "0x4c5003", - "461998949157639": "0x3dae612baf" + "218677718578589": "0x111cfc387" }, - "plotIndexes": ["0x11b11ffab9a59", "0x1a42f83404b07"] + "plotIndexes": [ + "0xc6e2dfbc759d" + ] } }, "depositAllowances": {}, @@ -220920,8 +208973,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xe4082AaCDEd950C0f21FEbAC03Aa6f48D15cd58D": { ->>>>>>> b689ac329 (feat: update reseed jsons) + "0x406874Ac226662369d23B4a2B76313f3Cb8da983": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220934,9 +208986,13 @@ "fields": { "0": { "plots": { - "306191115507544": "0xafb319da8" + "214361103094275": "0x6bc9364de9", + "399147164949892": "0x53285b61bc" }, - "plotIndexes": ["0x1167aacac5758"] + "plotIndexes": [ + "0xc2f5d5675203", + "0x16b05b0fadd84" + ] } }, "depositAllowances": {}, @@ -220947,7 +209003,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xd6E52faa29312cFda21a8a5962E8568b7cfe179a": { + "0x328e124cE7F35d9aCe181B2e2B4071f51779B363": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -220960,9 +209016,11 @@ "fields": { "0": { "plots": { - "302424774125728": "0x32e30eaa7" + "220813692513983": "0xbe6489369" }, - "plotIndexes": ["0x1130dc13ba8a0"] + "plotIndexes": [ + "0xc8d431b42ebf" + ] } }, "depositAllowances": {}, @@ -220973,22 +209031,24 @@ "internalTokenBalance": {}, "sop": {} }, - "0xE6375dF92796f95394a276E0BA4Efc4176D41D49": { + "0x058107C8b15Dd30eFF1c1d01Cf15bd68e6BEf26F": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "315485261670410": "0x32c9f0d27c" + "226884439627627": "0x1a0f759d3" }, - "plotIndexes": ["0x11eeea2f4280a"] + "plotIndexes": [ + "0xce59a66dd76b" + ] } }, "depositAllowances": {}, @@ -220999,23 +209059,29 @@ "internalTokenBalance": {}, "sop": {} }, - "0x5D177d3f4878038521936e6449C17BeCd2D10cBA": { + "0x5234e3A15a9b0F86C6E77c400dc4706A3DFC0A04": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "302037489993568": "0x688b86ee8" + "221709363811083": "0xb4c64a755", + "298041802666608": "0x16795fb556", + "326781576518052": "0x91352082d", + "326873031171634": "0x11ac6b2c28" }, "plotIndexes": [ - "0x112b3954cc760" + "0xc9a4bbdf930b", + "0x10f1143c6b270", + "0x12934c3c999a4", + "0x1294a0ee8de32" ] } }, @@ -221027,7 +209093,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8eaA2d22eDd38E9769a9Ec7505bDe53933294DB1": { + "0xaaEB726768606079484aa6b3715efEEC7E901D13": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221040,10 +209106,10 @@ "fields": { "0": { "plots": { - "311951348717264": "0x4ace2a3d8" + "225361212188524": "0xc2fe150bd" }, "plotIndexes": [ - "0x11bb7d553d6d0" + "0xccf6feffa76c" ] } }, @@ -221055,7 +209121,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xD2927a91570146218eD700566DF516d67C5ECFAB": { + "0xE8c22A092593061D49d3Fbc2B5Ab733E82a66352": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221068,12 +209134,22 @@ "fields": { "0": { "plots": { - "311239094540889": "0x4c5003", - "461998949157639": "0x3dae612baf" + "244563066566020": "0x4f0bf445bc", + "239866879581854": "0x10479b4", + "240817882040757": "0x1470d849a", + "285823716873404": "0x3fd0c5405", + "399108141891711": "0x915f49d05", + "456632495406880": "0xd800273a", + "583979473591721": "0xcc957739e" }, "plotIndexes": [ - "0x11b11ffab9a59", - "0x1a42f83404b07" + "0xde6dc6b53584", + "0xda285c269e9e", + "0xdb05c85089b5", + "0x103f4851cd4bc", + "0x16afc9b06407f", + "0x19f4e09ae7f20", + "0x2132051145da9" ] } }, @@ -221085,23 +209161,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0xe4082AaCDEd950C0f21FEbAC03Aa6f48D15cd58D": { + "0x7bE74966867b552dd2CE1F09E71b1CA92C321Af0": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "306191115507544": "0xafb319da8" + "236273309536157": "0x6b4abed5" }, "plotIndexes": [ - "0x1167aacac5758" + "0xd6e3aaaf4f9d" ] } }, @@ -221113,7 +209189,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xd6E52faa29312cFda21a8a5962E8568b7cfe179a": { + "0x7310E238f2260ff111a941059B023B3eBCF2D54e": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221126,10 +209202,12 @@ "fields": { "0": { "plots": { - "302424774125728": "0x32e30eaa7" + "235227898442395": "0xcc029ae79", + "251906258747456": "0x8b101e0de" }, "plotIndexes": [ - "0x1130dc13ba8a0" + "0xd5f04353f29b", + "0xe51b7f11c040" ] } }, @@ -221141,23 +209219,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0xE6375dF92796f95394a276E0BA4Efc4176D41D49": { + "0xc59821CBF1A4590cF659E2BA74de9Bbf7612E538": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "315485261670410": "0x32c9f0d27c" + "238513567295824": "0x32dacf8d40" }, "plotIndexes": [ - "0x11eeea2f4280a" + "0xd8ed4473e950" ] } }, @@ -221169,7 +209247,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x220c12268c6f1744553f456c3BF161bd8b423662": { + "0x18637e9C1f3bBf5D4492D541CE67Dcf39f1609A2": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221182,9 +209260,13 @@ "fields": { "0": { "plots": { - "311744261169232": "0x36f7611be" + "239660581941854": "0x30084c2c40", + "238754484412650": "0x4ec71593f4" }, - "plotIndexes": ["0x11b879df2a050"] + "plotIndexes": [ + "0xd9f853da725e", + "0xd9255c3b60ea" + ] } }, "depositAllowances": {}, @@ -221192,10 +209274,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x15666e84" + }, "sop": {} }, - "0xcd1E27461aF28E23bd3e84eD87e2C9a281bF0d9F": { + "0xc4c89a41Ad3050Bb82deE573833f76f2c449353e": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221208,9 +209292,13 @@ "fields": { "0": { "plots": { - "312080923158305": "0xf5b1196c0" + "240640507285101": "0x294c5bfb48", + "249896870521632": "0x9b961b734" }, - "plotIndexes": ["0x11bd60090e721"] + "plotIndexes": [ + "0xdadc7bf48e6d", + "0xe347a632ab20" + ] } }, "depositAllowances": {}, @@ -221221,7 +209309,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x0948934A39767226E1FfC53bd0B95efa90055178": { + "0xE3faBA780BDe12D3DFEB226A120aA4271f1D72B2": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221234,9 +209322,23 @@ "fields": { "0": { "plots": { - "311619295234752": "0x3b93251ca" + "241976256153648": "0x1cb410cf9e", + "243781055572115": "0x10a300e398", + "269116803407563": "0x52c8e4f7", + "279505824996797": "0x5182d9aa7", + "355680382750323": "0x1d730088d2", + "400152023455338": "0x61184d0f9", + "445628453536239": "0xeaf2fbb09" }, - "plotIndexes": ["0x11b6a8565cac0"] + "plotIndexes": [ + "0xdc137ccac830", + "0xddb7b3386893", + "0xf4c2a3785ecb", + "0xfe3585695dbd", + "0x1437d4ade0e73", + "0x16befa736d66a", + "0x1954bf5acc1ef" + ] } }, "depositAllowances": {}, @@ -221247,7 +209349,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x1ef22E33287A5c26CF6b9Ffc49e902830180E3Ca": { + "0xE67ae530c6578bCD59230EDac111Dd18eE47b344": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221260,9 +209362,11 @@ "fields": { "0": { "plots": { - "317838397685316": "0x2c8e58e52" + "243852509793323": "0x4cc4cee9a" }, - "plotIndexes": ["0x1211284ca3e44"] + "plotIndexes": [ + "0xddc856394c2b" + ] } }, "depositAllowances": {}, @@ -221273,7 +209377,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x34Aec84391B6602e7624363Df85Efe02A1FF35f5": { + "0x2AdC396D8092D79Db0fA8a18fa7e3451Dc1dFB37": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221286,9 +209390,11 @@ "fields": { "0": { "plots": { - "309267907666277": "0x17662a2847" + "248282655499019": "0x9d82eabb8" }, - "plotIndexes": ["0x119470bc6e165"] + "plotIndexes": [ + "0xe1cfcf7c230b" + ] } }, "depositAllowances": {}, @@ -221299,22 +209405,24 @@ "internalTokenBalance": {}, "sop": {} }, - "0x349E8490C47f42AB633D9392a077D6F1aF4d4c85": { + "0x427Dfd9661eaF494be14CAf5e84501DDF3d42d31": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "311971429120680": "0x5d7fcbcd5" + "241011518848871": "0x2908a64cd2" }, - "plotIndexes": ["0x11bbc82367aa8"] + "plotIndexes": [ + "0xdb32ddf7bf67" + ] } }, "depositAllowances": {}, @@ -221325,7 +209433,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xd380b5Fed7b9BaAFF7521aA4cEfC257Db3043d26": { + "0x2Efc14A5276bB2b6E32B913fFa8CEDa02552750F": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221338,9 +209446,11 @@ "fields": { "0": { "plots": { - "311635287219338": "0xd4c6b1494" + "245155440103610": "0x1f583032c5" }, - "plotIndexes": ["0x11b6e3e981c8a"] + "plotIndexes": [ + "0xdef7b2ec10ba" + ] } }, "depositAllowances": {}, @@ -221351,22 +209461,24 @@ "internalTokenBalance": {}, "sop": {} }, - "0x997563ba8058E80f1E4dd5b7f695b5C2B065408e": { + "0x3572F1b678f48C6a2145F5e5fF94159F3C99b01e": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "312055923158305": "0x5d21dba00" + "235887412728787": "0xa6c3bb445" }, - "plotIndexes": ["0x11bd02e732d21"] + "plotIndexes": [ + "0xd689d17153d3" + ] } }, "depositAllowances": {}, @@ -221374,10 +209486,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xf4240" + }, "sop": {} }, - "0x27320AAc0E3bbc165E6048aFc0F28500091dca73": { + "0x2Ac6f4E13a2023bad7D429995Bf07C6ecC1AC05C": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221390,9 +209504,13 @@ "fields": { "0": { "plots": { - "301703166264323": "0x373cbfd71" + "247377186269264": "0x5fc8dfc0", + "695624119694114": "0x5d0af840" }, - "plotIndexes": ["0x11265be0d8403"] + "plotIndexes": [ + "0xe0fcfd502850", + "0x278aa9c8d3322" + ] } }, "depositAllowances": {}, @@ -221403,7 +209521,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x5F067841319aD19eD32c432ac69DcF32AC3a773F": { + "0x7125B7C60Ec85F9aD33742D9362f6161d403EC92": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221416,9 +209534,11 @@ "fields": { "0": { "plots": { - "301635847094275": "0xfac890400" + "246922293237268": "0x3025626784" }, - "plotIndexes": ["0x1125611848003"] + "plotIndexes": [ + "0xe09313935614" + ] } }, "depositAllowances": {}, @@ -221429,22 +209549,26 @@ "internalTokenBalance": {}, "sop": {} }, - "0xf5f165910e11496C2d1B3D46319a5A07f09Bf2D9": { + "0x8709DD5FE0F07219D8d4cd60735B58E2C3009073": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "311375845353216": "0x2f394d735b" + "234615417572537": "0x252130a01d", + "251943588176158": "0x6ea118de6" }, - "plotIndexes": ["0x11b31d6a76700"] + "plotIndexes": [ + "0xd561a89f8cb9", + "0xe5243013a11e" + ] } }, "depositAllowances": {}, @@ -221455,23 +209579,25 @@ "internalTokenBalance": {}, "sop": {} }, - "0xcd1E27461aF28E23bd3e84eD87e2C9a281bF0d9F": { + "0xC21a7Fe78A0Fb9DF4Da21F2Ce78c76BdAe63e611": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "312080923158305": "0xf5b1196c0" + "247378793269264": "0x38fc788f3d", + "250829898506136": "0x64a0644164" }, "plotIndexes": [ - "0x11bd60090e721" + "0xe0fd5d190810", + "0xe420e2ffdf98" ] } }, @@ -221480,10 +209606,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x4067ed1c0" + }, "sop": {} }, - "0x0948934A39767226E1FfC53bd0B95efa90055178": { + "0x8A17B7aF6d76f7348deb9C324AbF98f873b6691A": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221496,10 +209624,10 @@ "fields": { "0": { "plots": { - "311619295234752": "0x3b93251ca" + "246309595703075": "0x34f88da75e" }, "plotIndexes": [ - "0x11b6a8565cac0" + "0xe0046bf4e723" ] } }, @@ -221511,7 +209639,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x1ef22E33287A5c26CF6b9Ffc49e902830180E3Ca": { + "0x06E6932ed7D7De9bcF5bD7a11723Dc698D813F7e": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221524,10 +209652,14 @@ "fields": { "0": { "plots": { - "317838397685316": "0x2c8e58e52" + "241189075365295": "0x294181315", + "274351454205287": "0x19fff9658", + "325771315526926": "0x35968bc7b" }, "plotIndexes": [ - "0x1211284ca3e44" + "0xdb5c35292daf", + "0xf9856cf8b567", + "0x128498b8a3d0e" ] } }, @@ -221539,23 +209671,25 @@ "internalTokenBalance": {}, "sop": {} }, - "0x34Aec84391B6602e7624363Df85Efe02A1FF35f5": { + "0x9e1e2beD5271a08a8E2Acc8d5ECF99eC5382cf7A": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "309267907666277": "0x17662a2847" + "250526151093083": "0x1161de86fa", + "695628520661609": "0x21647f8700" }, "plotIndexes": [ - "0x119470bc6e165" + "0xe3da2a3e2b5b", + "0x278aba2dea269" ] } }, @@ -221567,7 +209701,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x349E8490C47f42AB633D9392a077D6F1aF4d4c85": { + "0xD5351308c8Cb15ca93a8159325bFb392DC1e52aC": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221580,10 +209714,12 @@ "fields": { "0": { "plots": { - "311971429120680": "0x5d7fcbcd5" + "256758104204461": "0x3a202e2c0", + "256710058517324": "0x74405c580" }, "plotIndexes": [ - "0x11bbc82367aa8" + "0xe985279824ad", + "0xe979f7d9234c" ] } }, @@ -221595,23 +209731,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0xd380b5Fed7b9BaAFF7521aA4cEfC257Db3043d26": { + "0x6fBDc235B6f55755BE1c0B554469633108E60608": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "311635287219338": "0xd4c6b1494" + "253030586999657": "0x3d0076e167" }, "plotIndexes": [ - "0x11b6e3e981c8a" + "0xe62146416369" ] } }, @@ -221623,7 +209759,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x997563ba8058E80f1E4dd5b7f695b5C2B065408e": { + "0xbf9Db3564c22fd22FF30A8dB7f689D654Bf5F1fD": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221636,10 +209772,12 @@ "fields": { "0": { "plots": { - "312055923158305": "0x5d21dba00" + "250043585667303": "0x87b5aecf5", + "250401077762813": "0xf1e422c65" }, "plotIndexes": [ - "0x11bd02e732d21" + "0xe369cf1a20e7", + "0xe3bd0b4a9afd" ] } }, @@ -221651,7 +209789,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x27320AAc0E3bbc165E6048aFc0F28500091dca73": { + "0xB817bCfa60f2a4c9cE7E900cc1a0B1bd5f45bb70": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221664,10 +209802,10 @@ "fields": { "0": { "plots": { - "301703166264323": "0x373cbfd71" + "252279493675340": "0x4c44f10af3" }, "plotIndexes": [ - "0x11265be0d8403" + "0xe572659ac94c" ] } }, @@ -221679,7 +209817,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x5F067841319aD19eD32c432ac69DcF32AC3a773F": { + "0xF4B2300e02977720D590353725e4a73a67250bf3": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221692,10 +209830,10 @@ "fields": { "0": { "plots": { - "301635847094275": "0xfac890400" + "252622959858488": "0x408eab8f41" }, "plotIndexes": [ - "0x1125611848003" + "0xe5c25dc8d338" ] } }, @@ -221707,7 +209845,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xf5f165910e11496C2d1B3D46319a5A07f09Bf2D9": { + "0x5d9f8ecA4a1d3eEB7B78002EF0D2Bb53ADF259ee": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221720,10 +209858,10 @@ "fields": { "0": { "plots": { - "311375845353216": "0x2f394d735b" + "260693811733759": "0x54677828a" }, "plotIndexes": [ - "0x11b31d6a76700" + "0xed19820b24ff" ] } }, @@ -221735,7 +209873,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x4588a155d63CFFC23b3321b4F99E8d34128B227a": { + "0x11F3BAcAa1e4DEeB728A1c37f99694A8e026cF7D": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221748,9 +209886,15 @@ "fields": { "0": { "plots": { - "317739518695316": "0x1705a5a6b0" + "252085742270225": "0x8aa575427", + "693534396400586": "0x513074af", + "695910518553961": "0x2f7d1394" }, - "plotIndexes": ["0x120fb7f249794"] + "plotIndexes": [ + "0xe545491ef711", + "0x276c40f5643ca", + "0x278ed4b40fd69" + ] } }, "depositAllowances": {}, @@ -221759,28 +209903,27 @@ "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x3e0dd" + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x325b8" }, "sop": {} }, - "0x669E4aCd20Aa30ABA80483fc8B82aeD626e60B60": { + "0x6C8513a6C51C5F83C4E4DC53E0fabA45112c0E09": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", -<<<<<<< HEAD + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "306189714236944": "0x5385b148" + "248455141384543": "0x3a58afdd2d" }, "plotIndexes": [ - "0x1167a5926a610" + "0xe1f7f871e15f" ] } }, @@ -221792,25 +209935,25 @@ "internalTokenBalance": {}, "sop": {} }, - "0xda333519D92b4D7a83DBAACB4fd7a31cDB4f24A4": { + "0x0846Bf78c84C11D58Bb2320Fc8807C1983A2797C": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "325505735571790": "0xaba786d38", - "324929278595488": "0x560b3e7b6" + "259218447065702": "0xa69ae8e5b", + "260052583934374": "0xb1b4d14aa" }, "plotIndexes": [ - "0x1280bb5bdb94e", - "0x127857e3a51a0" + "0xebc1ff74e266", + "0xec8435e369a6" ] } }, @@ -221822,26 +209965,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x7D575d5Fcf60bf3Ce92bb0A634277A1C05A273Cb": { + "0x567dA563057BE92a42B0c14a765bFB1a3dD250be": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", "lastSop": "0x0", -======= ->>>>>>> b689ac329 (feat: update reseed jsons) "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { -<<<<<<< HEAD - "325418628636859": "0x33b7ad7ff" + "259263169786049": "0xa66e2272f" }, "plotIndexes": [ - "0x127f76dc360bb" + "0xebcc692370c1" ] } }, @@ -221853,7 +209993,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x215F97a79287BE4192990FCc4555F7a102a7D3DE": { + "0x3638570931B30FbBa478535A94D3f2ec1Cd802cB": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221866,10 +210006,12 @@ "fields": { "0": { "plots": { - "319063706774890": "0x473ed82d8" + "258890580795053": "0x4c565a43b9", + "266899609550289": "0x13f2c8900f" }, "plotIndexes": [ - "0x1222fcee72d6a" + "0xeb75a91a9ead", + "0xf2be686afdd1" ] } }, @@ -221881,7 +210023,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xbFC415Eb25AaCbEEf20aE5BC35f1F4CfdE9e3FC6": { + "0x6CC9b3940EB6d94cad1A25c437d9bE966Af821E3": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221894,10 +210036,10 @@ "fields": { "0": { "plots": { - "321992733053410": "0x44ed45c6fd" + "256776481524757": "0xc09838a659" }, "plotIndexes": [ - "0x124d9c67951e2" + "0xe9896ef7cc15" ] } }, @@ -221909,7 +210051,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x28aB25Bf7A691416445A85290717260971151eD2": { + "0x0A7ED639830269B08eE845776E9b7a9EFD178574": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221922,10 +210064,10 @@ "fields": { "0": { "plots": { - "328451525907964": "0x2ae1934dc" + "255934954982596": "0x2a572cb9f" }, "plotIndexes": [ - "0x12ab9948715fc" + "0xe8c58013ccc4" ] } }, @@ -221937,35 +210079,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0xB3561671651455D2E8BF99d2f9E2257f2a313a2c": { + "0x09DaDF51d403684A67886DB545AE1703d7856056": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "323131389358954": "0xe5afc575f", - "360158682891399": "0x180d273e80", - "360752435099540": "0x167b093106", - "403118995799810": "0x3f5badd36", - "402764778389025": "0xc8ddd4c77", - "401959009163867": "0x9dad946f5", - "404743790158374": "0xd38871ecc" + "249945795286716": "0x16c4c2ca2b" }, "plotIndexes": [ - "0x125e2e3adb36a", - "0x1478ffa5b4487", - "0x1481a38bef794", - "0x16ea2748bff02", - "0x16e4ffb8b3e21", - "0x16d945ff49a5b", - "0x1701cc1d66226" + "0xe3530a5756bc" ] } }, @@ -221977,7 +210107,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x0690166a66626C670be8f1A09bcC4D23c0838D35": { + "0xB8eCEcF183e45D6EB8A06E2F27354d1c3940aA76": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -221990,10 +210120,10 @@ "fields": { "0": { "plots": { - "325551813699206": "0x3d99cba01" + "260441761027924": "0x4e4762341" }, "plotIndexes": [ - "0x1281670362686" + "0xecded2a69754" ] } }, @@ -222005,7 +210135,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8665E6A5c02FF4fCbE83d998982E4c08791b54e5": { + "0x7eFaC69750cc933e7830829474F86149A7DD8e35": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222018,20 +210148,15 @@ "fields": { "0": { "plots": { - "327158585388232": "0x161f40bc05", - "326820555366865": "0xc37cd3c61", - "489512551216130": "0x1f2c3c9f9a" + "261973680486751": "0x29cec07ce7", + "261973679486751": "0xf4240", + "271999469298681": "0x4438dab0a1" }, "plotIndexes": [ - "0x1298c8b446cc8", - "0x1293dd71ba1d1", - "0x1bd3585ba7402" + "0xee43802a795f", + "0xee43801b371f", + "0xf761cfbf23f9" ] -======= - "306189714236944": "0x5385b148" - }, - "plotIndexes": ["0x1167a5926a610"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222042,9 +210167,7 @@ "internalTokenBalance": {}, "sop": {} }, -<<<<<<< HEAD -======= - "0xda333519D92b4D7a83DBAACB4fd7a31cDB4f24A4": { + "0x09147d29d27E0c8122fC0b66Ff6Ca060Cda40aDc": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222057,10 +210180,13 @@ "fields": { "0": { "plots": { - "325505735571790": "0xaba786d38", - "324929278595488": "0x560b3e7b6" + "263444366219049": "0x1256f2be7b", + "340340310399004": "0x2d3a5b1dce" }, - "plotIndexes": ["0x1280bb5bdb94e", "0x127857e3a51a0"] + "plotIndexes": [ + "0xef99ebddd729", + "0x13589a74dd81c" + ] } }, "depositAllowances": {}, @@ -222071,7 +210197,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x7D575d5Fcf60bf3Ce92bb0A634277A1C05A273Cb": { + "0x15682A522C149029F90108e2792A114E94AB4187": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222084,9 +210210,13 @@ "fields": { "0": { "plots": { - "325418628636859": "0x33b7ad7ff" + "262244417024534": "0x2515b8b98", + "262254371913134": "0x4a87e2370" }, - "plotIndexes": ["0x127f76dc360bb"] + "plotIndexes": [ + "0xee8289523216", + "0xee84daadbdae" + ] } }, "depositAllowances": {}, @@ -222097,7 +210227,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x215F97a79287BE4192990FCc4555F7a102a7D3DE": { + "0x61C562283B268F982ffa1334B643118eACF54480": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222110,9 +210240,11 @@ "fields": { "0": { "plots": { - "319063706774890": "0x473ed82d8" + "266885888878451": "0x331d0d65e" }, - "plotIndexes": ["0x1222fcee72d6a"] + "plotIndexes": [ + "0xf2bb369a2773" + ] } }, "depositAllowances": {}, @@ -222123,22 +210255,24 @@ "internalTokenBalance": {}, "sop": {} }, - "0xbFC415Eb25AaCbEEf20aE5BC35f1F4CfdE9e3FC6": { + "0x27553635B0EA3E0d4b551c61Ea89c9c1b81e266f": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "321992733053410": "0x44ed45c6fd" + "262570166065123": "0x3aed7b847" }, - "plotIndexes": ["0x124d9c67951e2"] + "plotIndexes": [ + "0xeece617a17e3" + ] } }, "depositAllowances": {}, @@ -222149,7 +210283,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x28aB25Bf7A691416445A85290717260971151eD2": { + "0x9B6425F32361eE115C7A2170349a8f5a3A51b0F0": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222162,9 +210296,11 @@ "fields": { "0": { "plots": { - "328451525907964": "0x2ae1934dc" + "262389497183414": "0xf5ebb46c3" }, - "plotIndexes": ["0x12ab9948715fc"] + "plotIndexes": [ + "0xeea450c5bcb6" + ] } }, "depositAllowances": {}, @@ -222175,7 +210311,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xB3561671651455D2E8BF99d2f9E2257f2a313a2c": { + "0xB5030cAc364bE50104803A49C30CCfA0d6A48629": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222188,22 +210324,10 @@ "fields": { "0": { "plots": { - "323131389358954": "0xe5afc575f", - "360158682891399": "0x180d273e80", - "360752435099540": "0x167b093106", - "403118995799810": "0x3f5badd36", - "402764778389025": "0xc8ddd4c77", - "401959009163867": "0x9dad946f5", - "404743790158374": "0xd38871ecc" + "271716973263145": "0x2e207363ee" }, "plotIndexes": [ - "0x125e2e3adb36a", - "0x1478ffa5b4487", - "0x1481a38bef794", - "0x16ea2748bff02", - "0x16e4ffb8b3e21", - "0x16d945ff49a5b", - "0x1701cc1d66226" + "0xf72009abb929" ] } }, @@ -222215,7 +210339,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x0690166a66626C670be8f1A09bcC4D23c0838D35": { + "0x7c9551322a2e259830A7357e436107565EA79205": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222228,9 +210352,21 @@ "fields": { "0": { "plots": { - "325551813699206": "0x3d99cba01" + "270707790419553": "0xa62875b42", + "334808594828075": "0x4c60f72ce", + "491177308591557": "0x51a462b5b", + "625298680160271": "0x3aeaf49280", + "643112195637173": "0x1aad800d00", + "712108719670625": "0x1d57d0a767" }, - "plotIndexes": ["0x1281670362686"] + "plotIndexes": [ + "0xf63511af9661", + "0x13081b35ccb2b", + "0x1beb9210015c5", + "0x238b4b1b5a00f", + "0x248e839f8bfb5", + "0x287a8bb470561" + ] } }, "depositAllowances": {}, @@ -222241,24 +210377,24 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8665E6A5c02FF4fCbE83d998982E4c08791b54e5": { + "0x953Ba402AE27a6561e09edFDF12A2F5D4e7e9C95": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "327158585388232": "0x161f40bc05", - "326820555366865": "0xc37cd3c61", - "489512551216130": "0x1f2c3c9f9a" + "264546765360408": "0xa88282fea" }, - "plotIndexes": ["0x1298c8b446cc8", "0x1293dd71ba1d1", "0x1bd3585ba7402"] + "plotIndexes": [ + "0xf09a97f9cd18" + ] } }, "depositAllowances": {}, @@ -222269,8 +210405,7 @@ "internalTokenBalance": {}, "sop": {} }, ->>>>>>> b689ac329 (feat: update reseed jsons) - "0xCB2d95308f1f7db3e53E4389A90798d3F7219a7e": { + "0x925D19C24fa0b14e4eFfBE6349E387f0751f8f36": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222283,15 +210418,11 @@ "fields": { "0": { "plots": { - "325442315999585": "0xb01bbb7ba" + "262220837330704": "0x41a7c3dbe" }, -<<<<<<< HEAD "plotIndexes": [ - "0x127fcf1a3d961" + "0xee7d0bdc9f10" ] -======= - "plotIndexes": ["0x127fcf1a3d961"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222302,7 +210433,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF1F2581Bd9BBd76134d5f111cA5CFF0a9753FD8E": { + "0xCfCF5A55708Cd1Ae90fdcad70C7445073eB04d94": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222315,13 +210446,10 @@ "fields": { "0": { "plots": { - "324952375834966": "0x2023eb68f1", - "325090417418823": "0x3eccba73d5" + "272383450599356": "0x111c2e99f3" }, -<<<<<<< HEAD "plotIndexes": [ - "0x1278adeee3956", - "0x127ab02d9a247" + "0xf7bb36d0cfbc" ] } }, @@ -222333,7 +210461,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8e8357E84BCDbbA27dC0470cD9F84A9DFb86870f": { + "0x59b9540ee2A8b2ab527a5312Ab622582b884749B": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222346,12 +210474,10 @@ "fields": { "0": { "plots": { - "323055821493827": "0xa1640bba4", - "328737849859671": "0xb1a89e4b3" + "274578680043801": "0x35a4e900" }, "plotIndexes": [ - "0x125d14b7b9643", - "0x12afc3ec3de57" + "0xf9ba54afd919" ] } }, @@ -222363,29 +210489,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x299e4B9591993c6001822baCF41aff63F9C1C93F": { + "0xde8351633c96Ac16860a78D90D3311fa390182BF": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "321198027851647": "0xb9081f0a63", - "328785539744522": "0x2300c040f9", - "356266241722575": "0x25f34e2918b", - "358874174134874": "0xb2684e00ad" + "277537073969119": "0x13ee50c261" }, "plotIndexes": [ - "0x12420be5a477f", - "0x12b07594dc30a", - "0x14405b2c888cf", - "0x14664e7ab1a5a" + "0xfc6b22b4b7df" ] } }, @@ -222397,7 +210517,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xae5c0ff6738cE54598C00ca3d14dC71176a9d929": { + "0xD49946B3dA0428fE4E69c5F4D6c4125e5D0bf942": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222410,14 +210530,13 @@ "fields": { "0": { "plots": { - "327253599004877": "0x364149a17" + "277622676617792": "0x14fd0f2e8a", + "277712821594314": "0x18330ebf32" }, "plotIndexes": [ - "0x129a2aa8528cd" + "0xfc7f11057a40", + "0xfc940e14a8ca" ] -======= - "plotIndexes": ["0x1278adeee3956", "0x127ab02d9a247"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222428,9 +210547,7 @@ "internalTokenBalance": {}, "sop": {} }, -<<<<<<< HEAD -======= - "0x8e8357E84BCDbbA27dC0470cD9F84A9DFb86870f": { + "0xcD26f79e60fd260c867EEbAeAB45e021bAeCe92D": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222443,10 +210560,11 @@ "fields": { "0": { "plots": { - "323055821493827": "0xa1640bba4", - "328737849859671": "0xb1a89e4b3" + "274579580043801": "0x1a8f65e31" }, - "plotIndexes": ["0x125d14b7b9643", "0x12afc3ec3de57"] + "plotIndexes": [ + "0xf9ba8a54c219" + ] } }, "depositAllowances": {}, @@ -222457,7 +210575,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x299e4B9591993c6001822baCF41aff63F9C1C93F": { + "0x80771B6DC16d2c8C291e84C8f6D820150567534C": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222470,12 +210588,13 @@ "fields": { "0": { "plots": { - "321198027851647": "0xb9081f0a63", - "328785539744522": "0x2300c040f9", - "356266241722575": "0x25f34e2918b", - "358874174134874": "0xb2684e00ad" + "274586709729354": "0x351cf5dd9", + "274600967175715": "0x2b79fc238d" }, - "plotIndexes": ["0x12420be5a477f", "0x12b07594dc30a", "0x14405b2c888cf", "0x14664e7ab1a5a"] + "plotIndexes": [ + "0xf9bc334b204a", + "0xf9bf851a7e23" + ] } }, "depositAllowances": {}, @@ -222486,7 +210605,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xae5c0ff6738cE54598C00ca3d14dC71176a9d929": { + "0xDB2480a43C79126F93Bd5a825dc0CBa46d7C0612": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222499,9 +210618,13 @@ "fields": { "0": { "plots": { - "327253599004877": "0x364149a17" + "273275462311532": "0x1c99dd", + "376596837312302": "0x20b464" }, - "plotIndexes": ["0x129a2aa8528cd"] + "plotIndexes": [ + "0xf88ae6db5e6c", + "0x1568348b6272e" + ] } }, "depositAllowances": {}, @@ -222509,11 +210632,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xf2eb8" + }, "sop": {} }, ->>>>>>> b689ac329 (feat: update reseed jsons) - "0x08507B93B82152488512fe20Da7E42F4260D1209": { + "0x0A0761a91009101a86B7a0D786dBbA744cE2E240": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222526,10 +210650,13 @@ "fields": { "0": { "plots": { - "328361555137833": "0x103e141da9", - "379374817295263": "0x1859a682fb" + "277532421339407": "0x115517ed0", + "278185787491171": "0x14e6fef49" }, - "plotIndexes": ["0x12aa4a1da1529", "0x1590a1538bb9f"] + "plotIndexes": [ + "0xfc6a0d63390f", + "0xfd022d0b8363" + ] } }, "depositAllowances": {}, @@ -222540,22 +210667,24 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF4a04D998A8d6Cf89C9328486a952874E50892DC": { + "0x0F0520237DB57A05728fa0880F8f08A1fd57ccff": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "321094975835782": "0xbc015822e" + "276395162620514": "0x259e55b10" }, - "plotIndexes": ["0x12408bff94e86"] + "plotIndexes": [ + "0xfb61437c5262" + ] } }, "depositAllowances": {}, @@ -222566,30 +210695,24 @@ "internalTokenBalance": {}, "sop": {} }, - "0xa4BaD700438B907A781d5362bB3dEb7c0dC29dC5": { + "0x368a5564F46Bd896C8b365A2Dd45536252008372": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "328698722691368": "0x1a2f65", - "650916041448649": "0x9a50e7b3" + "273379926066013": "0x2b56a3043c" }, -<<<<<<< HEAD "plotIndexes": [ - "0x12af3229aa928", - "0x25001336ddcc9" + "0xf8a33961c35d" ] -======= - "plotIndexes": ["0x12af3229aa928", "0x25001336ddcc9"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222600,7 +210723,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x26AFBbC659076B062548e8f46D424842Bc715064": { + "0xD0126092d4292F8DC755E6d8eEE8106fbf84583D": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222613,15 +210736,13 @@ "fields": { "0": { "plots": { - "320072143901269": "0x15e6d58d36" + "276405260758386": "0x2603916394", + "285840847218881": "0x122dcec3e6" }, -<<<<<<< HEAD "plotIndexes": [ - "0x1231a9a709255" + "0xfb639d61ad72", + "0x103f8822928c1" ] -======= - "plotIndexes": ["0x1231a9a709255"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222632,7 +210753,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x317B157e02c3b5A16Efc3cc4eb26ACcC1cfF24e3": { + "0x0B7021897485cC2Db909866D78A1D82657A4be6F": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222645,15 +210766,13 @@ "fields": { "0": { "plots": { - "319579237582534": "0x46bfbd257" + "273335862185061": "0xa426976f8", + "318810216692840": "0x918f92667" }, -<<<<<<< HEAD "plotIndexes": [ - "0x122a7d6ef06c6" + "0xf898f6f84c65", + "0x121f4c9b77c68" ] -======= - "plotIndexes": ["0x122a7d6ef06c6"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222664,7 +210783,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x16b5e68f83684740b2DA481DB60EAb42362884b9": { + "0xEF64581Af57dFEc2722e618d4Dd5f3c9934C17De": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222677,15 +210796,13 @@ "fields": { "0": { "plots": { - "328466688526802": "0x25c16fef8" + "273653841644570": "0xf93c297b8", + "386540379495873": "0xaa335ec15" }, -<<<<<<< HEAD "plotIndexes": [ - "0x12abd1c4a49d2" + "0xf8e30005cc1a", + "0x15f8e7202ddc1" ] -======= - "plotIndexes": ["0x12abd1c4a49d2"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222696,7 +210813,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x990cf47831822275a365e0C9239DC534b833922D": { + "0x17536a82E8721E8DC61Ab12a08c4BfE3fd7fD2C7": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222709,15 +210826,17 @@ "fields": { "0": { "plots": { - "328463036730072": "0xd9a9fefa" + "284761889788419": "0xc81347526", + "283862931443313": "0x3394c08e9", + "322288771602655": "0xb297bc7d64", + "335611264683963": "0x325142938f3" }, -<<<<<<< HEAD "plotIndexes": [ - "0x12abc42a04ad8" + "0x102fd4b495203", + "0x1022bfd318e71", + "0x1251eb3bf18df", + "0x1313c9636cfbb" ] -======= - "plotIndexes": ["0x12abc42a04ad8"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222728,7 +210847,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xA371bDFc449B2770cc560A6BD2E2176c6E2dc797": { + "0x019285701d4502df31141dF600A472c61c054e63": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222741,15 +210860,13 @@ "fields": { "0": { "plots": { - "328269884139182": "0x2584d476a" + "285400078671087": "0x18d5500481", + "295033968260116": "0x17c29d2b57" }, -<<<<<<< HEAD "plotIndexes": [ - "0x12a8f49d5a6ae" + "0x10391e24edcef", + "0x10c54f2dff414" ] -======= - "plotIndexes": ["0x12a8f49d5a6ae"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222760,7 +210877,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xAA940d97Bd90B74991AB6029d35bf5Fc3BfEdB01": { + "0x110dfBb05F447880B9B29206c1140C07372090dc": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222773,15 +210890,11 @@ "fields": { "0": { "plots": { - "331560641183352": "0x832e34ffa" + "282823933037116": "0x60da74f02" }, -<<<<<<< HEAD "plotIndexes": [ - "0x12d8d7a3d3e78" + "0x1013a14100a3c" ] -======= - "plotIndexes": ["0x12d8d7a3d3e78"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222792,30 +210905,24 @@ "internalTokenBalance": {}, "sop": {} }, - "0x81eee01e854EC8b498543d9C2586e6aDCa3E2006": { + "0x6039675c6D83B0B26F647AE3d33F7C34B8Ea945a": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "334136741601312": "0x440c82dd49", - "328965644144808": "0x2e34ec22f9" + "289487146073469": "0x8bbf6ca8a" }, -<<<<<<< HEAD "plotIndexes": [ - "0x12fe545ca2020", - "0x12b31485cd0a8" + "0x107497a823d7d" ] -======= - "plotIndexes": ["0x12fe545ca2020", "0x12b31485cd0a8"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222826,7 +210933,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x96e6c919DCb6A3aD6Bb770cE5e95Bc0dB9b827d6": { + "0x97Ada2E26C06C263c68ECCe43756708d0f03D94A": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222839,15 +210946,11 @@ "fields": { "0": { "plots": { - "343948668440753": "0x3eabdfa67a" + "281369121491336": "0x1866644d90" }, -<<<<<<< HEAD "plotIndexes": [ - "0x138d1ca3410b1" + "0xffe75a898988" ] -======= - "plotIndexes": ["0x138d1ca3410b1"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222858,7 +210961,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x6D7e07990c35dEAC0cEb1104e4dC9301FE6b9968": { + "0xF8444CF11708d3901Ee7B981b204eD0c7130fB93": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222871,15 +210974,19 @@ "fields": { "0": { "plots": { - "334477990711769": "0x521c72298" + "286712631781524": "0xdf1071dc9b", + "285918925155495": "0xb8cc99fbed", + "287670685386031": "0x91693e6f4f", + "327268162978532": "0x70b04663e0", + "368431939737151": "0xe9f06c9179" }, -<<<<<<< HEAD "plotIndexes": [ - "0x13034b9d251d9" + "0x104c37c91e894", + "0x1040aaff7eca7", + "0x105a28d03c52f", + "0x129a60e99c2e4", + "0x14f163ee4563f" ] -======= - "plotIndexes": ["0x13034b9d251d9"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222890,7 +210997,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x671ec816F329ddc7c78137522Ea52e6FBC8decCD": { + "0x651afE5D50d1cD8F7D891dd6bc2a3Db4A14E5287": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222903,19 +211010,11 @@ "fields": { "0": { "plots": { - "328954278824745": "0x1a05df49", - "334845655178581": "0x171e3f743", - "376884850195985": "0x37673e19" + "280705451279893": "0x1210ed74ef" }, -<<<<<<< HEAD "plotIndexes": [ - "0x12b2ea2efcb29", - "0x1308a5454dd55", - "0x156c6579dfe11" + "0xff4cd4b5c615" ] -======= - "plotIndexes": ["0x12b2ea2efcb29", "0x1308a5454dd55", "0x156c6579dfe11"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -222923,27 +211022,29 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x2cac8a" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x44F57E6064A6dc13fdD709DE4a8dB1628c9EaceB": { + "0x79645bfB4Ef32902F4ee436A23E4A10A50789e54": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "334679522049415": "0x1bdd0ebff6" + "289603276344849": "0x338f941502", + "289037900183227": "0x656bc88400" }, - "plotIndexes": ["0x13063a6067d87"] + "plotIndexes": [ + "0x1076484698e11", + "0x106e0e15df6bb" + ] } }, "depositAllowances": {}, @@ -222951,27 +211052,27 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x2f3b69b" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x0FF2FAa2294434919501475CF58117ee89e2729c": { + "0x821bb6973FdA779183d22C9891f566B2e59C8230": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "340004534903929": "0x292c722d8" + "279899339370850": "0x29db3f4d3" }, - "plotIndexes": ["0x1353b79866479"] + "plotIndexes": [ + "0xfe9124b23162" + ] } }, "depositAllowances": {}, @@ -222979,12 +211080,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x5e7bb" - }, + "internalTokenBalance": {}, "sop": {} }, - "0xaDd2955F0efC871902A7E421054DA7E6734d3DCA": { + "0x49444e6d0b374f33c43D5d27c53d0504241B9553": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -222997,17 +211096,17 @@ "fields": { "0": { "plots": { - "340002929884824": "0x5faaa5e1", - "340001324834920": "0x5fab1e30" + "289598528304849": "0x11b015740", + "325785700465033": "0xb28ee4080", + "333897831019794": "0xb788f26ac", + "372461099911308": "0x157adb58ab" }, -<<<<<<< HEAD "plotIndexes": [ - "0x1353b19dbbe98", - "0x1353aba30a068" + "0x10763696836d1", + "0x1284ce4f2f989", + "0x12fada59bf512", + "0x152c05b8d888c" ] -======= - "plotIndexes": ["0x1353b19dbbe98", "0x1353aba30a068"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -223018,7 +211117,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8fCC6548DE7c4A1e5F5c196dE1b62c423E61cdaf": { + "0x0e56C87075CD53477C497D5B5F68CdcA8605cBF7": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223031,15 +211130,13 @@ "fields": { "0": { "plots": { - "340544190818194": "0x4f94be3ef" + "283860746063250": "0x824240df", + "311893596417096": "0x1c0c11bbc" }, -<<<<<<< HEAD "plotIndexes": [ - "0x135b91f862792" + "0x1022b7aef4d92", + "0x11baa6305ac48" ] -======= - "plotIndexes": ["0x135b91f862792"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -223050,7 +211147,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xcc5b337cd28b330705e2949a3e28e7EcA33FABF3": { + "0xc32B1e77879F3544e629261E711A0cc87ae01182": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223063,9 +211160,11 @@ "fields": { "0": { "plots": { - "344217839974187": "0x212531cef2" + "281343170282469": "0x27745758c" }, - "plotIndexes": ["0x139107613b72b"] + "plotIndexes": [ + "0xffe14fb983e5" + ] } }, "depositAllowances": {}, @@ -223076,7 +211175,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF6FE6b3f7792B0a3E3E92Fdbe42B381395C2BBd8": { + "0xF57c5533a9037E25E5688726fbccD03E09738aCd": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223089,9 +211188,11 @@ "fields": { "0": { "plots": { - "334637636520317": "0x3f31aace1" + "290667882932090": "0x382931703" }, - "plotIndexes": ["0x13059e574097d"] + "plotIndexes": [ + "0x1085c63e8e77a" + ] } }, "depositAllowances": {}, @@ -223102,22 +211203,24 @@ "internalTokenBalance": {}, "sop": {} }, - "0x11C90869aC2a2Dde39B5DafeDc6C7fF48A8fDaE0": { + "0x5edd743E40c978590d987c74912b9424B7258677": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x401", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "328935876199427": "0x448e1c726" + "282938006963034": "0x116db8888" }, - "plotIndexes": ["0x12b2a5a0e0403"] + "plotIndexes": [ + "0x10154a366035a" + ] } }, "depositAllowances": {}, @@ -223128,22 +211231,24 @@ "internalTokenBalance": {}, "sop": {} }, - "0x15cdD0c3D5650A2FE14D5d1a85F6B1123b81A2DB": { + "0x7e53AF93688908D67fc3ddcE3f4B033dBc257C20": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "333887021019794": "0x284538280" + "280702256803893": "0xbe67d5e0" }, - "plotIndexes": ["0x12fab21487292"] + "plotIndexes": [ + "0xff4c164df035" + ] } }, "depositAllowances": {}, @@ -223154,7 +211259,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x5AdCa33aFC3D57C1193Cc83D562aBFE523412725": { + "0xeeBF4Ea438D5216115577f9340cD4fB0EDD29BD9": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223167,9 +211272,13 @@ "fields": { "0": { "plots": { - "331622129302332": "0xf9544bbc52" + "279922610063052": "0xf1d9b05b", + "334851860911256": "0x1737161ad8" }, - "plotIndexes": ["0x12d9bcb377b3c"] + "plotIndexes": [ + "0xfe968fbcc6cc", + "0x1308bc638d498" + ] } }, "depositAllowances": {}, @@ -223180,7 +211289,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x201ad214891136FC37750029A14008D99B9ab814": { + "0x8E8Ae083aC4455108829789e8ACb4DbdDe330e2E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223193,9 +211302,11 @@ "fields": { "0": { "plots": { - "334959543421596": "0x1957f7334e" + "289524659324935": "0x95033ae50" }, - "plotIndexes": ["0x130a4d8998a9c"] + "plotIndexes": [ + "0x1075236790807" + ] } }, "depositAllowances": {}, @@ -223206,22 +211317,26 @@ "internalTokenBalance": {}, "sop": {} }, - "0x355C6d4ee23c2eA9345442f3Fe671Fa3C8612209": { + "0x89AA0D7EBdCc58D230aF421676A8F62cA168d57a": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "353389703784413": "0x1fc332ed017" + "289473500183227": "0x32d5bc2c2", + "465942921824991": "0x324cf5720" }, - "plotIndexes": ["0x14167f3c2e7dd"] + "plotIndexes": [ + "0x107464d267abb", + "0x1a7c5ca574adf" + ] } }, "depositAllowances": {}, @@ -223229,10 +211344,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x166d0ca" + }, "sop": {} }, - "0x3C8cD5597ac98cB0871Db580d3C9A86a384B9106": { + "0x3BD4c721C1b547Ea42F728B5a19eB6233803963E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223245,9 +211362,11 @@ "fields": { "0": { "plots": { - "333010214249215": "0x1714b115a2" + "279910575121973": "0x2cd56a097" }, - "plotIndexes": ["0x12edefb86e2ff"] + "plotIndexes": [ + "0xfe93c2662635" + ] } }, "depositAllowances": {}, @@ -223258,7 +211377,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x9Fa8cd4FacBeb2a9A706864cBE4c0170D6D3caE1": { + "0x99997957BF3c202446b1DCB1CAc885348C5b2222": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223271,9 +211390,13 @@ "fields": { "0": { "plots": { - "340565553187713": "0x2cba95f6fe7" + "285760338065737": "0x54378b3c0", + "298929583976174": "0xf7ec009ac" }, - "plotIndexes": ["0x135be18d20b81"] + "plotIndexes": [ + "0x103e5c370f949", + "0x10fdff7aa6eee" + ] } }, "depositAllowances": {}, @@ -223284,7 +211407,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF6FE6b3f7792B0a3E3E92Fdbe42B381395C2BBd8": { + "0x4DA9d25c0203Dc7Ce50c87Df2eb6C9068Eca256E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223297,10 +211420,10 @@ "fields": { "0": { "plots": { - "334637636520317": "0x3f31aace1" + "281360732660114": "0x1f40367f6" }, "plotIndexes": [ - "0x13059e574097d" + "0xffe566862192" ] } }, @@ -223312,7 +211435,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x11C90869aC2a2Dde39B5DafeDc6C7fF48A8fDaE0": { + "0x74fEd61c646B86c0BCd261EcfE69c7C7d5E16b81": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223325,10 +211448,10 @@ "fields": { "0": { "plots": { - "328935876199427": "0x448e1c726" + "288652038051959": "0x3fca11c2a5" }, "plotIndexes": [ - "0x12b2a5a0e0403" + "0x106870a311877" ] } }, @@ -223340,23 +211463,25 @@ "internalTokenBalance": {}, "sop": {} }, - "0x15cdD0c3D5650A2FE14D5d1a85F6B1123b81A2DB": { + "0x6d26C4f242971eaCCe5Dc1EAEd77a76F5705B190": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "333887021019794": "0x284538280" + "289570099594839": "0x8824d49c", + "325489589719323": "0x3c25e2833" }, "plotIndexes": [ - "0x12fab21487292" + "0x1075ccaec8657", + "0x12807f35f911b" ] } }, @@ -223368,7 +211493,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x5AdCa33aFC3D57C1193Cc83D562aBFE523412725": { + "0x90B113Cf662039394D28505f51f0B1B4678Cc3b5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223381,10 +211506,10 @@ "fields": { "0": { "plots": { - "331622129302332": "0xf9544bbc52" + "280783044688644": "0x2eceea4b0" }, "plotIndexes": [ - "0x12d9bcb377b3c" + "0xff5ee5a33b04" ] } }, @@ -223393,10 +211518,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x29f6bb0d" + }, "sop": {} }, - "0x201ad214891136FC37750029A14008D99B9ab814": { + "0x382C29bB63Af1E6Bd3Fc818FeA85bd25Afb0E92E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223409,10 +211536,10 @@ "fields": { "0": { "plots": { - "334959543421596": "0x1957f7334e" + "288522664536795": "0x15247153d9" }, "plotIndexes": [ - "0x130a4d8998a9c" + "0x10668eaedeadb" ] } }, @@ -223424,23 +211551,29 @@ "internalTokenBalance": {}, "sop": {} }, - "0x355C6d4ee23c2eA9345442f3Fe671Fa3C8612209": { + "0x682a4c54F9c9cE3a66700AE6f3b67f5984D85C21": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "353389703784413": "0x1fc332ed017" + "298426082271272": "0x7f5a25c40", + "298739111357662": "0x2c590d8210", + "318131255471558": "0x723730fe71", + "318849290379983": "0x2d7802825b" }, "plotIndexes": [ - "0x14167f3c2e7dd" + "0x10f6abca02028", + "0x10fb39e9cecde", + "0x12156b4796dc6", + "0x121fde2b0a2cf" ] } }, @@ -223452,7 +211585,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x3C8cD5597ac98cB0871Db580d3C9A86a384B9106": { + "0xFe2da4E7e3675b00BE2Ff58c6a018Ed06237C81D": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223465,10 +211598,10 @@ "fields": { "0": { "plots": { - "333010214249215": "0x1714b115a2" + "295372378685570": "0x34cc0b749" }, "plotIndexes": [ - "0x12edefb86e2ff" + "0x10ca3bdb54082" ] } }, @@ -223480,7 +211613,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x9Fa8cd4FacBeb2a9A706864cBE4c0170D6D3caE1": { + "0xdF3A7C30313779D3b6AA577A28456259226Ff452": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223493,10 +211626,10 @@ "fields": { "0": { "plots": { - "340565553187713": "0x2cba95f6fe7" + "298546668100712": "0x71d22e703" }, "plotIndexes": [ - "0x135be18d20b81" + "0x10f86d019dc68" ] } }, @@ -223508,7 +211641,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x17a9341a60EF47E861ea53E58e41250Fc9B55DFb": { + "0x93b34d74a134b403450f993e3f2fb75B751fa3d6": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223521,15 +211654,11 @@ "fields": { "0": { "plots": { - "343677590063786": "0x476fb52b3" + "296797858583543": "0x208bb44280" }, -<<<<<<< HEAD "plotIndexes": [ - "0x13892acac4aaa" + "0x10defa2ee53f7" ] -======= - "plotIndexes": ["0x13892acac4aaa"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -223537,10 +211666,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x1cc5b5" + }, "sop": {} }, - "0x59dC1eaE22eEbD6CfbD144ee4b6f4048F8A59880": { + "0x74b0b7cEa336fBb34Bc23EB58F48AC5e4C04159E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223553,9 +211684,17 @@ "fields": { "0": { "plots": { - "328698724407437": "0x4b6ccad91" + "297412002527525": "0xdc07230bc", + "300538713353756": "0x46e4b383e", + "295473191285707": "0x496f2323d", + "296283253996855": "0x15fb511801" }, - "plotIndexes": ["0x12af322b4d88d"] + "plotIndexes": [ + "0x10e7ea0c33925", + "0x111569f402e1c", + "0x10cbb369b73cb", + "0x10d77d21b7d37" + ] } }, "depositAllowances": {}, @@ -223566,26 +211705,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x3BD142a93adC0554C69395AAE69433A74CFFc765": { + "0xFD7998c9c23aa865590fd3405F19c23423a0611B": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "328954715417202": "0x28b672636", - "386387360940641": "0x20f2a20553" + "298460268100712": "0x141dd76000" }, -<<<<<<< HEAD "plotIndexes": [ - "0x12b2ebcf5aa72", - "0x15f6ad1650261" + "0x10f72b2427c68" ] } }, @@ -223594,12 +211730,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x12e96906" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x18Ad8A3387aAc16C794F3b14451C591FeF0344fE": { + "0xDa12B5133e13e01d95f9a5BE0cc61496b17E5494": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223612,10 +211746,10 @@ "fields": { "0": { "plots": { - "340001324829583": "0x14d9" + "297843565336066": "0x1b0d0a4020" }, "plotIndexes": [ - "0x1353aba308b8f" + "0x10ee31be91602" ] } }, @@ -223627,7 +211761,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xE4202F5919F22377dB816a5D04851557480921dF": { + "0x41a93Eb81720F943FE52b7F72E4a7ac9620AcC54": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223640,10 +211774,10 @@ "fields": { "0": { "plots": { - "343696766115165": "0x476b6f1fa" + "291654604244211": "0xad71848cc" }, "plotIndexes": [ - "0x1389723a79d5d" + "0x10942211544f3" ] } }, @@ -223652,10 +211786,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xb60206" + }, "sop": {} }, - "0xD11FaEdC6F7af5b05137A3F62cb836Ab0aE5dbb6": { + "0x4d26976EC64f11ce10325297363862669fCaAaD5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223668,10 +211804,10 @@ "fields": { "0": { "plots": { - "329207240531105": "0x1fc858f033" + "293290104729008": "0x1633af4b50" }, "plotIndexes": [ - "0x12b6988a11ca1" + "0x10abeec822db0" ] } }, @@ -223683,7 +211819,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xDecaFa57F07292a338E59242AaC289594E6A0d68": { + "0xe2282eA0D41b1a9D99B593e81D9adb500476C7C5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223696,10 +211832,10 @@ "fields": { "0": { "plots": { - "332704987205231": "0x209c877f66" + "297959748228642": "0xa20c0e1f1" }, "plotIndexes": [ - "0x12e97ea93ce6f" + "0x10efe28f35622" ] } }, @@ -223711,7 +211847,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x095CB8F5E61b69A0C2fE075A772bb953f2d11C2A": { + "0x08b6e06F64f62b7255840329b2DDB592d6A2c336": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223724,10 +211860,10 @@ "fields": { "0": { "plots": { - "339210737506518": "0x17f6e7d50f" + "293279130525087": "0x28e1d1011" }, "plotIndexes": [ - "0x13482a78358d6" + "0x10abc5e651d9f" ] } }, @@ -223739,7 +211875,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x82CFf592c2D9238f05E0007F240c81990f17F764": { + "0xEC9F16FAacD809ED3EC90D22C92cE84C5C115FAC": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223752,10 +211888,12 @@ "fields": { "0": { "plots": { - "334800355703455": "0x1eb17108c" + "297471065811425": "0x5b9521200", + "297503528406965": "0x3d686b5bc" }, "plotIndexes": [ - "0x1307fc845ba9f" + "0x10e8c613569e1", + "0x10e93f0214fb5" ] } }, @@ -223764,10 +211902,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x2f02075d" + }, "sop": {} }, - "0x8bFe70E2D583f512E7248D67ACE918116B892aeA": { + "0x5A803cD039d7c427AD01875990f76886cC574339": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223780,10 +211920,12 @@ "fields": { "0": { "plots": { - "339167269778934": "0xa1ee0e2e0" + "304668727377586": "0xbfc3bba92e", + "303460189172472": "0xeb1283af8c" }, "plotIndexes": [ - "0x1347888a275f6" + "0x115183744feb2", + "0x113fed4c772f8" ] } }, @@ -223795,7 +211937,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xcB0838c828Ec4911f6a0ba48e58BC67a8c5f9c3f": { + "0x5D177d3f4878038521936e6449C17BeCd2D10cBA": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223808,10 +211950,10 @@ "fields": { "0": { "plots": { - "360153486671689": "0x8d8b8050" + "302037489993568": "0x688b86ee8" }, "plotIndexes": [ - "0x1478ec4a33f49" + "0x112b3954cc760" ] } }, @@ -223823,7 +211965,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xe496c05e5E2a669cc60ab70572776ee22CA17F03": { + "0x8eaA2d22eDd38E9769a9Ec7505bDe53933294DB1": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223836,16 +211978,11 @@ "fields": { "0": { "plots": { - "376760788400310": "0x19ccd6160", - "451603278508011": "0x13f8e32d1" + "311951348717264": "0x4ace2a3d8" }, "plotIndexes": [ - "0x156a974f538b6", - "0x19abb14feafeb" + "0x11bb7d553d6d0" ] -======= - "plotIndexes": ["0x12b2ebcf5aa72", "0x15f6ad1650261"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -223853,43 +211990,29 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x12e96906" - }, + "internalTokenBalance": {}, "sop": {} }, -<<<<<<< HEAD - "0x8e5465757BAC6235C32670a1eDF15c0437cA4fE1": { -======= - "0x18Ad8A3387aAc16C794F3b14451C591FeF0344fE": { ->>>>>>> b689ac329 (feat: update reseed jsons) + "0xD2927a91570146218eD700566DF516d67C5ECFAB": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", -<<<<<<< HEAD - "lastSop": "0x42b", -======= "lastSop": "0x0", ->>>>>>> b689ac329 (feat: update reseed jsons) "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { -<<<<<<< HEAD - "356013940250669": "0x320b5eb04f" + "311239094540889": "0x4c5003", + "461998949157639": "0x3dae612baf" }, "plotIndexes": [ - "0x143caf471982d" + "0x11b11ffab9a59", + "0x1a42f83404b07" ] -======= - "340001324829583": "0x14d9" - }, - "plotIndexes": ["0x1353aba308b8f"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -223900,11 +212023,7 @@ "internalTokenBalance": {}, "sop": {} }, -<<<<<<< HEAD - "0x8f2800A82ec05fEB0bcb8AD2A397FF0343C24dF3": { -======= - "0xE4202F5919F22377dB816a5D04851557480921dF": { ->>>>>>> b689ac329 (feat: update reseed jsons) + "0xe4082AaCDEd950C0f21FEbAC03Aa6f48D15cd58D": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223917,11 +212036,10 @@ "fields": { "0": { "plots": { -<<<<<<< HEAD - "359857480112013": "0x3eb520f7a" + "306191115507544": "0xafb319da8" }, "plotIndexes": [ - "0x14749d945978d" + "0x1167aacac5758" ] } }, @@ -223933,7 +212051,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x3f73493ecb5b77fE96044a4c59d66C92B7D488cA": { + "0xd6E52faa29312cFda21a8a5962E8568b7cfe179a": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -223946,12 +212064,10 @@ "fields": { "0": { "plots": { - "359874313037575": "0x4e907048e", - "355806866216773": "0x2ba31ef08c" + "302424774125728": "0x32e30eaa7" }, "plotIndexes": [ - "0x1474dc497a707", - "0x1439abdde9745" + "0x1130dc13ba8a0" ] } }, @@ -223963,23 +212079,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x346aa548f2fB418a8c398D2bF879EbCc0A1f891d": { + "0xE6375dF92796f95394a276E0BA4Efc4176D41D49": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "373671956964097": "0x2b462d6d7b" + "315485261670410": "0x32c9f0d27c" }, "plotIndexes": [ - "0x153da4841e301" + "0x11eeea2f4280a" ] } }, @@ -223991,7 +212107,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF930b0A0500D8F53b2E7EFa4F7bCB5cc0c71067E": { + "0x220c12268c6f1744553f456c3BF161bd8b423662": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224004,10 +212120,10 @@ "fields": { "0": { "plots": { - "378561390110104": "0x4d60e64d90" + "311744261169232": "0x36f7611be" }, "plotIndexes": [ - "0x1584cb12ee598" + "0x11b879df2a050" ] } }, @@ -224019,7 +212135,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x2352FDd9A457c549D822451B4cD43203580a29d1": { + "0xcd1E27461aF28E23bd3e84eD87e2C9a281bF0d9F": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224032,10 +212148,10 @@ "fields": { "0": { "plots": { - "360910868412337": "0x6d2234999e" + "312080923158305": "0xf5b1196c0" }, "plotIndexes": [ - "0x1483f1c1b77b1" + "0x11bd60090e721" ] } }, @@ -224047,23 +212163,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x61C95fe68834db2d1f323bb85F0590690002a06d": { + "0x0948934A39767226E1FfC53bd0B95efa90055178": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "359895402458005": "0x5d21dba00" + "311619295234752": "0x3b93251ca" }, "plotIndexes": [ - "0x14752ad9eab95" + "0x11b6a8565cac0" ] } }, @@ -224075,7 +212191,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xBF843F2AA6425952aE92760250503cE9930342b4": { + "0x1ef22E33287A5c26CF6b9Ffc49e902830180E3Ca": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224088,10 +212204,10 @@ "fields": { "0": { "plots": { - "377334425097799": "0x156af704ab" + "317838397685316": "0x2c8e58e52" }, "plotIndexes": [ - "0x1572f045e9647" + "0x1211284ca3e44" ] } }, @@ -224103,7 +212219,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xa48E7B26036360695be458D6904DE0892a5dB116": { + "0x34Aec84391B6602e7624363Df85Efe02A1FF35f5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224116,10 +212232,10 @@ "fields": { "0": { "plots": { - "361675678821729": "0x53f99d29f2" + "309267907666277": "0x17662a2847" }, "plotIndexes": [ - "0x148f12e5c2d61" + "0x119470bc6e165" ] } }, @@ -224131,7 +212247,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xcd805F0A5F1A26e3B344b31539AAF84f527Bf2DB": { + "0x349E8490C47f42AB633D9392a077D6F1aF4d4c85": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224144,10 +212260,10 @@ "fields": { "0": { "plots": { - "371946868967109": "0xdb336fd9d" + "311971429120680": "0x5d7fcbcd5" }, "plotIndexes": [ - "0x15248a10006c5" + "0x11bbc82367aa8" ] } }, @@ -224156,12 +212272,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xe89a880" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x3810EAcf5020D020B3317B559E59376c5d02dCB2": { + "0xd380b5Fed7b9BaAFF7521aA4cEfC257Db3043d26": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224174,10 +212288,10 @@ "fields": { "0": { "plots": { - "370593639163868": "0x1467aea500" + "311635287219338": "0xd4c6b1494" }, "plotIndexes": [ - "0x1510d8e37e7dc" + "0x11b6e3e981c8a" ] } }, @@ -224186,12 +212300,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x1c72ebd5" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x9D496BA09C9dDAE8de72F146DE012701a10400CC": { + "0x997563ba8058E80f1E4dd5b7f695b5C2B065408e": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224204,10 +212316,10 @@ "fields": { "0": { "plots": { - "359640428256007": "0x32894c7c86" + "312055923158305": "0x5d21dba00" }, "plotIndexes": [ - "0x147174ff91b07" + "0x11bd02e732d21" ] } }, @@ -224219,7 +212331,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8756e7c68221969812d5DaC9B5FB1e59a32a5b1D": { + "0x27320AAc0E3bbc165E6048aFc0F28500091dca73": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224232,18 +212344,11 @@ "fields": { "0": { "plots": { - "380008273465850": "0x1749419476", - "386673517385669": "0x1b0c8e5783" + "301703166264323": "0x373cbfd71" }, "plotIndexes": [ - "0x1599d9226d1fa", - "0x15fad71a5d7c5" + "0x11265be0d8403" ] -======= - "343696766115165": "0x476b6f1fa" - }, - "plotIndexes": ["0x1389723a79d5d"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -224254,7 +212359,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xD11FaEdC6F7af5b05137A3F62cb836Ab0aE5dbb6": { + "0x5F067841319aD19eD32c432ac69DcF32AC3a773F": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224267,12 +212372,10 @@ "fields": { "0": { "plots": { - "329207240531105": "0x1fc858f033" + "301635847094275": "0xfac890400" }, -<<<<<<< HEAD "plotIndexes": [ - "0x14830b3c8289a", - "0x25aa3d6845c7d" + "0x1125611848003" ] } }, @@ -224281,12 +212384,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xbf98e71" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x70C8eE0223D10c150b0db98A0423EC18Ec5aCa89": { + "0xf5f165910e11496C2d1B3D46319a5A07f09Bf2D9": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224299,14 +212400,11 @@ "fields": { "0": { "plots": { - "378893728297768": "0x160c75d440" + "311375845353216": "0x2f394d735b" }, "plotIndexes": [ - "0x1589a12153328" + "0x11b31d6a76700" ] -======= - "plotIndexes": ["0x12b6988a11ca1"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -224317,7 +212415,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xDecaFa57F07292a338E59242AaC289594E6A0d68": { + "0x4588a155d63CFFC23b3321b4F99E8d34128B227a": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224330,9 +212428,11 @@ "fields": { "0": { "plots": { - "332704987205231": "0x209c877f66" + "317739518695316": "0x1705a5a6b0" }, - "plotIndexes": ["0x12e97ea93ce6f"] + "plotIndexes": [ + "0x120fb7f249794" + ] } }, "depositAllowances": {}, @@ -224340,39 +212440,29 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x3e0dd" + }, "sop": {} }, -<<<<<<< HEAD - "0x009A2534fd10c879D69daf4eE3000A6cb7E609Bb": { -======= - "0x095CB8F5E61b69A0C2fE075A772bb953f2d11C2A": { ->>>>>>> b689ac329 (feat: update reseed jsons) + "0x669E4aCd20Aa30ABA80483fc8B82aeD626e60B60": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { -<<<<<<< HEAD - "355994286524369": "0x37ca3d46", - "613741059534895": "0x2dfbcca8d" + "306189714236944": "0x5385b148" }, "plotIndexes": [ - "0x143c660fd87d1", - "0x22e31b9d6702f" + "0x1167a5926a610" ] -======= - "339210737506518": "0x17f6e7d50f" - }, - "plotIndexes": ["0x13482a78358d6"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -224383,28 +212473,25 @@ "internalTokenBalance": {}, "sop": {} }, -<<<<<<< HEAD - "0x5084949C8f7bf350c646796B242010919f70898E": { -======= - "0x82CFf592c2D9238f05E0007F240c81990f17F764": { ->>>>>>> b689ac329 (feat: update reseed jsons) + "0xda333519D92b4D7a83DBAACB4fd7a31cDB4f24A4": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", -<<<<<<< HEAD + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "371914538333765": "0x2ba0111ff" + "325505735571790": "0xaba786d38", + "324929278595488": "0x560b3e7b6" }, "plotIndexes": [ - "0x1524119f1b645" + "0x1280bb5bdb94e", + "0x127857e3a51a0" ] } }, @@ -224416,7 +212503,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xc390578437F7BdEe1F766Fdb00f641848bc19366": { + "0x7D575d5Fcf60bf3Ce92bb0A634277A1C05A273Cb": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224429,10 +212516,10 @@ "fields": { "0": { "plots": { - "372433833471833": "0xddf48b30" + "325418628636859": "0x33b7ad7ff" }, "plotIndexes": [ - "0x152ba0258af59" + "0x127f76dc360bb" ] } }, @@ -224444,7 +212531,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xf13D8d9E5Ff8b123ffa5F5e981DA1685275cE176": { + "0x215F97a79287BE4192990FCc4555F7a102a7D3DE": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224457,12 +212544,10 @@ "fields": { "0": { "plots": { - "377332779708970": "0x6212a41d", - "456719911973263": "0x78364980" + "319063706774890": "0x473ed82d8" }, "plotIndexes": [ - "0x1572ea24bf22a", - "0x19f62641d718f" + "0x1222fcee72d6a" ] } }, @@ -224471,37 +212556,27 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x2462ac4" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x25CD302E37a69D70a6Ef645dAea5A7de38c66E2a": { + "0xbFC415Eb25AaCbEEf20aE5BC35f1F4CfdE9e3FC6": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x401", -======= ->>>>>>> b689ac329 (feat: update reseed jsons) + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { -<<<<<<< HEAD - "359920402458005": "0x13ca651200" + "321992733053410": "0x44ed45c6fd" }, "plotIndexes": [ - "0x147587fbc6595" + "0x124d9c67951e2" ] -======= - "334800355703455": "0x1eb17108c" - }, - "plotIndexes": ["0x1307fc845ba9f"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -224512,7 +212587,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8bFe70E2D583f512E7248D67ACE918116B892aeA": { + "0x28aB25Bf7A691416445A85290717260971151eD2": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224525,12 +212600,10 @@ "fields": { "0": { "plots": { - "339167269778934": "0xa1ee0e2e0" + "328451525907964": "0x2ae1934dc" }, -<<<<<<< HEAD "plotIndexes": [ - "0x14785e6a443ab", - "0x16e5c89688a98" + "0x12ab9948715fc" ] } }, @@ -224542,7 +212615,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF4E3f1c01BD9A5398B92ac1B8bedb66ba4a2d627": { + "0xB3561671651455D2E8BF99d2f9E2257f2a313a2c": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224555,10 +212628,22 @@ "fields": { "0": { "plots": { - "370522581424279": "0x108b5f0f45" + "323131389358954": "0xe5afc575f", + "360158682891399": "0x180d273e80", + "360752435099540": "0x167b093106", + "403118995799810": "0x3f5badd36", + "402764778389025": "0xc8ddd4c77", + "401959009163867": "0x9dad946f5", + "404743790158374": "0xd38871ecc" }, "plotIndexes": [ - "0x150fd02d8d897" + "0x125e2e3adb36a", + "0x1478ffa5b4487", + "0x1481a38bef794", + "0x16ea2748bff02", + "0x16e4ffb8b3e21", + "0x16d945ff49a5b", + "0x1701cc1d66226" ] } }, @@ -224570,7 +212655,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x905B2Eb4B731B395E7517a4763CD829F6EC2f510": { + "0x0690166a66626C670be8f1A09bcC4D23c0838D35": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224583,10 +212668,10 @@ "fields": { "0": { "plots": { - "379996617045843": "0x2b6c6daa7" + "325551813699206": "0x3d99cba01" }, "plotIndexes": [ - "0x1599adb5ff753" + "0x1281670362686" ] } }, @@ -224598,23 +212683,27 @@ "internalTokenBalance": {}, "sop": {} }, - "0x45E5d313030Be8E40FCeB8f03d55300DA6a8799e": { + "0x8665E6A5c02FF4fCbE83d998982E4c08791b54e5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x401", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "361666644960846": "0x21a75c713" + "327158585388232": "0x161f40bc05", + "326820555366865": "0xc37cd3c61", + "489512551216130": "0x1f2c3c9f9a" }, "plotIndexes": [ - "0x148ef13e6664e" + "0x1298c8b446cc8", + "0x1293dd71ba1d1", + "0x1bd3585ba7402" ] } }, @@ -224626,7 +212715,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xf152581b8cb486b24d73aD51e23a3Fd3E0222538": { + "0xCB2d95308f1f7db3e53E4389A90798d3F7219a7e": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224639,10 +212728,10 @@ "fields": { "0": { "plots": { - "379603990851302": "0x5b6a58486d" + "325442315999585": "0xb01bbb7ba" }, "plotIndexes": [ - "0x1593f7107aee6" + "0x127fcf1a3d961" ] } }, @@ -224654,7 +212743,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x61e193e514DE408F57A648a641d9fcD412CdeD82": { + "0xF1F2581Bd9BBd76134d5f111cA5CFF0a9753FD8E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224667,14 +212756,13 @@ "fields": { "0": { "plots": { - "377426413984498": "0x10841d94aa6" + "324952375834966": "0x2023eb68f1", + "325090417418823": "0x3eccba73d5" }, "plotIndexes": [ - "0x157446f559af2" + "0x1278adeee3956", + "0x127ab02d9a247" ] -======= - "plotIndexes": ["0x1347888a275f6"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -224685,24 +212773,26 @@ "internalTokenBalance": {}, "sop": {} }, -<<<<<<< HEAD -======= - "0xcB0838c828Ec4911f6a0ba48e58BC67a8c5f9c3f": { + "0x8e8357E84BCDbbA27dC0470cD9F84A9DFb86870f": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "360153486671689": "0x8d8b8050" + "323055821493827": "0xa1640bba4", + "328737849859671": "0xb1a89e4b3" }, - "plotIndexes": ["0x1478ec4a33f49"] + "plotIndexes": [ + "0x125d14b7b9643", + "0x12afc3ec3de57" + ] } }, "depositAllowances": {}, @@ -224713,23 +212803,30 @@ "internalTokenBalance": {}, "sop": {} }, - "0xe496c05e5E2a669cc60ab70572776ee22CA17F03": { + "0x299e4B9591993c6001822baCF41aff63F9C1C93F": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "376760788400310": "0x19ccd6160", - "451603278508011": "0x13f8e32d1" + "321198027851647": "0xb9081f0a63", + "328785539744522": "0x2300c040f9", + "356266241722575": "0x25f34e2918b", + "358874174134874": "0xb2684e00ad" }, - "plotIndexes": ["0x156a974f538b6", "0x19abb14feafeb"] + "plotIndexes": [ + "0x12420be5a477f", + "0x12b07594dc30a", + "0x14405b2c888cf", + "0x14664e7ab1a5a" + ] } }, "depositAllowances": {}, @@ -224737,27 +212834,27 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xf64" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x8e5465757BAC6235C32670a1eDF15c0437cA4fE1": { + "0xae5c0ff6738cE54598C00ca3d14dC71176a9d929": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "356013940250669": "0x320b5eb04f" + "327253599004877": "0x364149a17" }, - "plotIndexes": ["0x143caf471982d"] + "plotIndexes": [ + "0x129a2aa8528cd" + ] } }, "depositAllowances": {}, @@ -224768,7 +212865,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8f2800A82ec05fEB0bcb8AD2A397FF0343C24dF3": { + "0x08507B93B82152488512fe20Da7E42F4260D1209": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224781,9 +212878,13 @@ "fields": { "0": { "plots": { - "359857480112013": "0x3eb520f7a" + "328361555137833": "0x103e141da9", + "379374817295263": "0x1859a682fb" }, - "plotIndexes": ["0x14749d945978d"] + "plotIndexes": [ + "0x12aa4a1da1529", + "0x1590a1538bb9f" + ] } }, "depositAllowances": {}, @@ -224794,23 +212895,24 @@ "internalTokenBalance": {}, "sop": {} }, - "0x3f73493ecb5b77fE96044a4c59d66C92B7D488cA": { + "0xF4a04D998A8d6Cf89C9328486a952874E50892DC": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "359874313037575": "0x4e907048e", - "355806866216773": "0x2ba31ef08c" + "321094975835782": "0xbc015822e" }, - "plotIndexes": ["0x1474dc497a707", "0x1439abdde9745"] + "plotIndexes": [ + "0x12408bff94e86" + ] } }, "depositAllowances": {}, @@ -224821,22 +212923,26 @@ "internalTokenBalance": {}, "sop": {} }, - "0x346aa548f2fB418a8c398D2bF879EbCc0A1f891d": { + "0xa4BaD700438B907A781d5362bB3dEb7c0dC29dC5": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "373671956964097": "0x2b462d6d7b" + "328698722691368": "0x1a2f65", + "650916041448649": "0x9a50e7b3" }, - "plotIndexes": ["0x153da4841e301"] + "plotIndexes": [ + "0x12af3229aa928", + "0x25001336ddcc9" + ] } }, "depositAllowances": {}, @@ -224847,7 +212953,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF930b0A0500D8F53b2E7EFa4F7bCB5cc0c71067E": { + "0x26AFBbC659076B062548e8f46D424842Bc715064": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224860,9 +212966,11 @@ "fields": { "0": { "plots": { - "378561390110104": "0x4d60e64d90" + "320072143901269": "0x15e6d58d36" }, - "plotIndexes": ["0x1584cb12ee598"] + "plotIndexes": [ + "0x1231a9a709255" + ] } }, "depositAllowances": {}, @@ -224873,7 +212981,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x2352FDd9A457c549D822451B4cD43203580a29d1": { + "0x317B157e02c3b5A16Efc3cc4eb26ACcC1cfF24e3": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224886,9 +212994,11 @@ "fields": { "0": { "plots": { - "360910868412337": "0x6d2234999e" + "319579237582534": "0x46bfbd257" }, - "plotIndexes": ["0x1483f1c1b77b1"] + "plotIndexes": [ + "0x122a7d6ef06c6" + ] } }, "depositAllowances": {}, @@ -224899,22 +213009,24 @@ "internalTokenBalance": {}, "sop": {} }, - "0x61C95fe68834db2d1f323bb85F0590690002a06d": { + "0x16b5e68f83684740b2DA481DB60EAb42362884b9": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "359895402458005": "0x5d21dba00" + "328466688526802": "0x25c16fef8" }, - "plotIndexes": ["0x14752ad9eab95"] + "plotIndexes": [ + "0x12abd1c4a49d2" + ] } }, "depositAllowances": {}, @@ -224925,7 +213037,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xBF843F2AA6425952aE92760250503cE9930342b4": { + "0x990cf47831822275a365e0C9239DC534b833922D": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224938,9 +213050,11 @@ "fields": { "0": { "plots": { - "377334425097799": "0x156af704ab" + "328463036730072": "0xd9a9fefa" }, - "plotIndexes": ["0x1572f045e9647"] + "plotIndexes": [ + "0x12abc42a04ad8" + ] } }, "depositAllowances": {}, @@ -224951,7 +213065,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xa48E7B26036360695be458D6904DE0892a5dB116": { + "0xA371bDFc449B2770cc560A6BD2E2176c6E2dc797": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -224964,9 +213078,11 @@ "fields": { "0": { "plots": { - "361675678821729": "0x53f99d29f2" + "328269884139182": "0x2584d476a" }, - "plotIndexes": ["0x148f12e5c2d61"] + "plotIndexes": [ + "0x12a8f49d5a6ae" + ] } }, "depositAllowances": {}, @@ -224977,22 +213093,24 @@ "internalTokenBalance": {}, "sop": {} }, - "0xcd805F0A5F1A26e3B344b31539AAF84f527Bf2DB": { + "0xAA940d97Bd90B74991AB6029d35bf5Fc3BfEdB01": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "371946868967109": "0xdb336fd9d" + "331560641183352": "0x832e34ffa" }, - "plotIndexes": ["0x15248a10006c5"] + "plotIndexes": [ + "0x12d8d7a3d3e78" + ] } }, "depositAllowances": {}, @@ -225000,27 +213118,29 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xe89a880" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x3810EAcf5020D020B3317B559E59376c5d02dCB2": { + "0x81eee01e854EC8b498543d9C2586e6aDCa3E2006": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "370593639163868": "0x1467aea500" + "334136741601312": "0x440c82dd49", + "328965644144808": "0x2e34ec22f9" }, - "plotIndexes": ["0x1510d8e37e7dc"] + "plotIndexes": [ + "0x12fe545ca2020", + "0x12b31485cd0a8" + ] } }, "depositAllowances": {}, @@ -225028,12 +213148,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x1c72ebd5" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x9D496BA09C9dDAE8de72F146DE012701a10400CC": { + "0x96e6c919DCb6A3aD6Bb770cE5e95Bc0dB9b827d6": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225046,9 +213164,11 @@ "fields": { "0": { "plots": { - "359640428256007": "0x32894c7c86" + "343948668440753": "0x3eabdfa67a" }, - "plotIndexes": ["0x147174ff91b07"] + "plotIndexes": [ + "0x138d1ca3410b1" + ] } }, "depositAllowances": {}, @@ -225059,7 +213179,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8756e7c68221969812d5DaC9B5FB1e59a32a5b1D": { + "0x6D7e07990c35dEAC0cEb1104e4dC9301FE6b9968": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225072,10 +213192,11 @@ "fields": { "0": { "plots": { - "380008273465850": "0x1749419476", - "386673517385669": "0x1b0c8e5783" + "334477990711769": "0x521c72298" }, - "plotIndexes": ["0x1599d9226d1fa", "0x15fad71a5d7c5"] + "plotIndexes": [ + "0x13034b9d251d9" + ] } }, "depositAllowances": {}, @@ -225086,7 +213207,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x507165FF0417126930D7F79163961DE8Ff19c8b8": { + "0x671ec816F329ddc7c78137522Ea52e6FBC8decCD": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225099,10 +213220,15 @@ "fields": { "0": { "plots": { - "360848988579994": "0xe68534f17", - "662609678589053": "0xddcbee75a" + "328954278824745": "0x1a05df49", + "334845655178581": "0x171e3f743", + "376884850195985": "0x37673e19" }, - "plotIndexes": ["0x14830b3c8289a", "0x25aa3d6845c7d"] + "plotIndexes": [ + "0x12b2ea2efcb29", + "0x1308a5454dd55", + "0x156c6579dfe11" + ] } }, "depositAllowances": {}, @@ -225111,26 +213237,28 @@ "isApprovedForAll": {}, "germinatingStalk": {}, "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xbf98e71" + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x2cac8a" }, "sop": {} }, - "0x70C8eE0223D10c150b0db98A0423EC18Ec5aCa89": { + "0x44F57E6064A6dc13fdD709DE4a8dB1628c9EaceB": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "378893728297768": "0x160c75d440" + "334679522049415": "0x1bdd0ebff6" }, - "plotIndexes": ["0x1589a12153328"] + "plotIndexes": [ + "0x13063a6067d87" + ] } }, "depositAllowances": {}, @@ -225138,25 +213266,29 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x2f3b69b" + }, "sop": {} }, - "0x532744D22891C4fccd5c4250D62894b3153667a7": { + "0x0FF2FAa2294434919501475CF58117ee89e2729c": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "374145600795098": "0x21266bfdc38" + "340004534903929": "0x292c722d8" }, - "plotIndexes": ["0x154488fa131da"] + "plotIndexes": [ + "0x1353b79866479" + ] } }, "depositAllowances": {}, @@ -225164,10 +213296,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x5e7bb" + }, "sop": {} }, - "0x009A2534fd10c879D69daf4eE3000A6cb7E609Bb": { + "0xaDd2955F0efC871902A7E421054DA7E6734d3DCA": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225180,10 +213314,13 @@ "fields": { "0": { "plots": { - "355994286524369": "0x37ca3d46", - "613741059534895": "0x2dfbcca8d" + "340002929884824": "0x5faaa5e1", + "340001324834920": "0x5fab1e30" }, - "plotIndexes": ["0x143c660fd87d1", "0x22e31b9d6702f"] + "plotIndexes": [ + "0x1353b19dbbe98", + "0x1353aba30a068" + ] } }, "depositAllowances": {}, @@ -225194,7 +213331,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x5084949C8f7bf350c646796B242010919f70898E": { + "0x8fCC6548DE7c4A1e5F5c196dE1b62c423E61cdaf": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225207,9 +213344,11 @@ "fields": { "0": { "plots": { - "371914538333765": "0x2ba0111ff" + "340544190818194": "0x4f94be3ef" }, - "plotIndexes": ["0x1524119f1b645"] + "plotIndexes": [ + "0x135b91f862792" + ] } }, "depositAllowances": {}, @@ -225220,7 +213359,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xc390578437F7BdEe1F766Fdb00f641848bc19366": { + "0xcc5b337cd28b330705e2949a3e28e7EcA33FABF3": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225233,9 +213372,11 @@ "fields": { "0": { "plots": { - "372433833471833": "0xddf48b30" + "344217839974187": "0x212531cef2" }, - "plotIndexes": ["0x152ba0258af59"] + "plotIndexes": [ + "0x139107613b72b" + ] } }, "depositAllowances": {}, @@ -225246,7 +213387,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xf13D8d9E5Ff8b123ffa5F5e981DA1685275cE176": { + "0xF6FE6b3f7792B0a3E3E92Fdbe42B381395C2BBd8": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225259,10 +213400,11 @@ "fields": { "0": { "plots": { - "377332779708970": "0x6212a41d", - "456719911973263": "0x78364980" + "334637636520317": "0x3f31aace1" }, - "plotIndexes": ["0x1572ea24bf22a", "0x19f62641d718f"] + "plotIndexes": [ + "0x13059e574097d" + ] } }, "depositAllowances": {}, @@ -225270,27 +213412,27 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x2462ac4" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x25CD302E37a69D70a6Ef645dAea5A7de38c66E2a": { + "0x11C90869aC2a2Dde39B5DafeDc6C7fF48A8fDaE0": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x401", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "359920402458005": "0x13ca651200" + "328935876199427": "0x448e1c726" }, - "plotIndexes": ["0x147587fbc6595"] + "plotIndexes": [ + "0x12b2a5a0e0403" + ] } }, "depositAllowances": {}, @@ -225301,23 +213443,24 @@ "internalTokenBalance": {}, "sop": {} }, - "0x6b87460Ce18951D31A7175cAbE2f3fc449E54256": { + "0x15cdD0c3D5650A2FE14D5d1a85F6B1123b81A2DB": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "360115402458027": "0x8ddfefb9e", - "402818698087064": "0xae4da1a41" + "333887021019794": "0x284538280" }, - "plotIndexes": ["0x14785e6a443ab", "0x16e5c89688a98"] + "plotIndexes": [ + "0x12fab21487292" + ] } }, "depositAllowances": {}, @@ -225328,7 +213471,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xF4E3f1c01BD9A5398B92ac1B8bedb66ba4a2d627": { + "0x5AdCa33aFC3D57C1193Cc83D562aBFE523412725": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225341,9 +213484,11 @@ "fields": { "0": { "plots": { - "370522581424279": "0x108b5f0f45" + "331622129302332": "0xf9544bbc52" }, - "plotIndexes": ["0x150fd02d8d897"] + "plotIndexes": [ + "0x12d9bcb377b3c" + ] } }, "depositAllowances": {}, @@ -225354,7 +213499,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x905B2Eb4B731B395E7517a4763CD829F6EC2f510": { + "0x201ad214891136FC37750029A14008D99B9ab814": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225367,9 +213512,11 @@ "fields": { "0": { "plots": { - "379996617045843": "0x2b6c6daa7" + "334959543421596": "0x1957f7334e" }, - "plotIndexes": ["0x1599adb5ff753"] + "plotIndexes": [ + "0x130a4d8998a9c" + ] } }, "depositAllowances": {}, @@ -225380,22 +213527,24 @@ "internalTokenBalance": {}, "sop": {} }, - "0x45E5d313030Be8E40FCeB8f03d55300DA6a8799e": { + "0x355C6d4ee23c2eA9345442f3Fe671Fa3C8612209": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x401", + "lastSop": "0x0", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "361666644960846": "0x21a75c713" + "353389703784413": "0x1fc332ed017" }, - "plotIndexes": ["0x148ef13e6664e"] + "plotIndexes": [ + "0x14167f3c2e7dd" + ] } }, "depositAllowances": {}, @@ -225406,7 +213555,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xf152581b8cb486b24d73aD51e23a3Fd3E0222538": { + "0x3C8cD5597ac98cB0871Db580d3C9A86a384B9106": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225419,9 +213568,11 @@ "fields": { "0": { "plots": { - "379603990851302": "0x5b6a58486d" + "333010214249215": "0x1714b115a2" }, - "plotIndexes": ["0x1593f7107aee6"] + "plotIndexes": [ + "0x12edefb86e2ff" + ] } }, "depositAllowances": {}, @@ -225432,7 +213583,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x61e193e514DE408F57A648a641d9fcD412CdeD82": { + "0x9Fa8cd4FacBeb2a9A706864cBE4c0170D6D3caE1": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225445,9 +213596,11 @@ "fields": { "0": { "plots": { - "377426413984498": "0x10841d94aa6" + "340565553187713": "0x2cba95f6fe7" }, - "plotIndexes": ["0x157446f559af2"] + "plotIndexes": [ + "0x135be18d20b81" + ] } }, "depositAllowances": {}, @@ -225458,8 +213611,7 @@ "internalTokenBalance": {}, "sop": {} }, ->>>>>>> b689ac329 (feat: update reseed jsons) - "0x26C08ce60A17a130f5483D50C404bDE46985bCaf": { + "0x17a9341a60EF47E861ea53E58e41250Fc9B55DFb": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225472,11 +213624,10 @@ "fields": { "0": { "plots": { - "386273913739633": "0x1a69fae8f0" + "343677590063786": "0x476fb52b3" }, -<<<<<<< HEAD "plotIndexes": [ - "0x15f50676a1971" + "0x13892acac4aaa" ] } }, @@ -225488,7 +213639,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x66F1089eD7D915bC7c7055d2d226487362347d39": { + "0x59dC1eaE22eEbD6CfbD144ee4b6f4048F8A59880": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225501,10 +213652,10 @@ "fields": { "0": { "plots": { - "384283113068429": "0x422a5082" + "328698724407437": "0x4b6ccad91" }, "plotIndexes": [ - "0x15d80e272978d" + "0x12af322b4d88d" ] } }, @@ -225516,23 +213667,25 @@ "internalTokenBalance": {}, "sop": {} }, - "0x344e50417D9D51Dbc9eA3247597d7Adc5f7b2F97": { + "0x3BD142a93adC0554C69395AAE69433A74CFFc765": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "381325946685316": "0x213391a16" + "328954715417202": "0x28b672636", + "386387360940641": "0x20f2a20553" }, "plotIndexes": [ - "0x15ad05d988784" + "0x12b2ebcf5aa72", + "0x15f6ad1650261" ] } }, @@ -225541,10 +213694,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x12e96906" + }, "sop": {} }, - "0x5aB883168ab03c97239CEf348D5483FB2b57aFD9": { + "0x18Ad8A3387aAc16C794F3b14451C591FeF0344fE": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225557,10 +213712,10 @@ "fields": { "0": { "plots": { - "380974686616344": "0x1441249016" + "340001324829583": "0x14d9" }, "plotIndexes": [ - "0x15a7e94dd3b18" + "0x1353aba308b8f" ] } }, @@ -225572,7 +213727,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xeEe59d723433a4b178fCD383CD936de9C8666111": { + "0xE4202F5919F22377dB816a5D04851557480921dF": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225585,10 +213740,10 @@ "fields": { "0": { "plots": { - "384705864961915": "0x107bb6f6a2b" + "343696766115165": "0x476b6f1fa" }, "plotIndexes": [ - "0x15de3506c8f7b" + "0x1389723a79d5d" ] } }, @@ -225600,7 +213755,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x8264EA7b0b15a7AD9339F06666D7E339129C9482": { + "0xD11FaEdC6F7af5b05137A3F62cb836Ab0aE5dbb6": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225613,10 +213768,10 @@ "fields": { "0": { "plots": { - "382614804933710": "0x7749d3a6a" + "329207240531105": "0x1fc858f033" }, "plotIndexes": [ - "0x15bfc7388ac4e" + "0x12b6988a11ca1" ] } }, @@ -225628,7 +213783,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x71603139a9781a8f412E0D955Dc020d0Aa2c2C22": { + "0xDecaFa57F07292a338E59242AaC289594E6A0d68": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225641,12 +213796,10 @@ "fields": { "0": { "plots": { - "385934932264792": "0x692e7f63b", - "458138123015409": "0x314f34d58" + "332704987205231": "0x209c877f66" }, "plotIndexes": [ - "0x15f017a8b4758", - "0x1a0ac981494f1" + "0x12e97ea93ce6f" ] } }, @@ -225658,7 +213811,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xAf93048424E9DBE29326AD1e1B00686760318f0D": { + "0x095CB8F5E61b69A0C2fE075A772bb953f2d11C2A": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225671,12 +213824,10 @@ "fields": { "0": { "plots": { - "387099560901328": "0x21d5bbf45", - "603423204831971": "0x4018fd0ee" + "339210737506518": "0x17f6e7d50f" }, "plotIndexes": [ - "0x16010a3d1fad0", - "0x224cf69c5f2e3" + "0x13482a78358d6" ] } }, @@ -225688,7 +213839,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xC252A841Af842a55b0F0b507f68f3864bf1C02b5": { + "0x82CFf592c2D9238f05E0007F240c81990f17F764": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225701,10 +213852,10 @@ "fields": { "0": { "plots": { - "383092890554906": "0x255650c573" + "334800355703455": "0x1eb17108c" }, "plotIndexes": [ - "0x15c6bc3a8521a" + "0x1307fc845ba9f" ] } }, @@ -225716,7 +213867,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x08364bdB63045c391D33cb83d6AEd7582b94701d": { + "0x8bFe70E2D583f512E7248D67ACE918116B892aeA": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225729,10 +213880,10 @@ "fields": { "0": { "plots": { - "383513997691489": "0x58c7c164c" + "339167269778934": "0xa1ee0e2e0" }, "plotIndexes": [ - "0x15ccdcf994a61" + "0x1347888a275f6" ] } }, @@ -225744,23 +213895,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x68ca44eD5d5Df216D10B14c13D18395a9151224a": { + "0xcB0838c828Ec4911f6a0ba48e58BC67a8c5f9c3f": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "388151583261614": "0x4581512395" + "360153486671689": "0x8d8b8050" }, "plotIndexes": [ - "0x16105953d43ae" + "0x1478ec4a33f49" ] } }, @@ -225772,7 +213923,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xECA7146bd5395A5BcAE51361989AcA45a87ae995": { + "0xe496c05e5E2a669cc60ab70572776ee22CA17F03": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225785,10 +213936,12 @@ "fields": { "0": { "plots": { - "385963166743955": "0x4fd5b428a" + "376760788400310": "0x19ccd6160", + "451603278508011": "0x13f8e32d1" }, "plotIndexes": [ - "0x15f080d733d93" + "0x156a974f538b6", + "0x19abb14feafeb" ] } }, @@ -225797,26 +213950,28 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xf64" + }, "sop": {} }, - "0x23C58C2B6a51aF8AbB2F7D98FD10591976489F17": { + "0x8e5465757BAC6235C32670a1eDF15c0437cA4fE1": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "387354276771954": "0x416007d40" + "356013940250669": "0x320b5eb04f" }, "plotIndexes": [ - "0x1604bf211b872" + "0x143caf471982d" ] } }, @@ -225828,7 +213983,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x7aBe5fE607c3E3Df7009B023a4db1eb03e1A6b48": { + "0x8f2800A82ec05fEB0bcb8AD2A397FF0343C24dF3": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225841,10 +213996,10 @@ "fields": { "0": { "plots": { - "380823279010078": "0x889e6ca9a" + "359857480112013": "0x3eb520f7a" }, "plotIndexes": [ - "0x15a5b5444811e" + "0x14749d945978d" ] } }, @@ -225856,7 +214011,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x1D9329F4d69daf9e323177aBE998CBDe5063AA2E": { + "0x3f73493ecb5b77fE96044a4c59d66C92B7D488cA": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225869,10 +214024,12 @@ "fields": { "0": { "plots": { - "388613359660761": "0x1ca48bcfa9" + "359874313037575": "0x4e907048e", + "355806866216773": "0x2ba31ef08c" }, "plotIndexes": [ - "0x161711941eed9" + "0x1474dc497a707", + "0x1439abdde9745" ] } }, @@ -225884,7 +214041,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x4C19CB883A243D1F33a0dCdFA091bCba7Bf8e3dC": { + "0x346aa548f2fB418a8c398D2bF879EbCc0A1f891d": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225897,10 +214054,10 @@ "fields": { "0": { "plots": { - "381061678877486": "0x1021f3e9f0" + "373671956964097": "0x2b462d6d7b" }, "plotIndexes": [ - "0x15a92d601cb2e" + "0x153da4841e301" ] } }, @@ -225909,12 +214066,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x22b44" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x96154551Aca106BEb4179EFA04cDCCAfB0d31C1e": { + "0xF930b0A0500D8F53b2E7EFa4F7bCB5cc0c71067E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225927,10 +214082,10 @@ "fields": { "0": { "plots": { - "383075774673118": "0x3fc2fa13c" + "378561390110104": "0x4d60e64d90" }, "plotIndexes": [ - "0x15c67c778b0de" + "0x1584cb12ee598" ] } }, @@ -225942,7 +214097,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x6e59973B7A5Bc7221311f0511C57ecc09b7a54B4": { + "0x2352FDd9A457c549D822451B4cD43203580a29d1": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -225955,10 +214110,10 @@ "fields": { "0": { "plots": { - "385996041945699": "0xa61735e78" + "360910868412337": "0x6d2234999e" }, "plotIndexes": [ - "0x15f0fb4f70263" + "0x1483f1c1b77b1" ] } }, @@ -225970,25 +214125,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x80242f7125556698af577D16449c7263bCB80a0a": { + "0x61C95fe68834db2d1f323bb85F0590690002a06d": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "387389374771954": "0x416007d40", - "591077039421030": "0xe0d59535a" + "359895402458005": "0x5d21dba00" }, "plotIndexes": [ - "0x160541e12b2f2", - "0x21994d8f83666" + "0x14752ad9eab95" ] } }, @@ -226000,7 +214153,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xe0E297e67191AF140BCa9E7c8dd9FfA7F57D3862": { + "0xBF843F2AA6425952aE92760250503cE9930342b4": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -226013,14 +214166,10 @@ "fields": { "0": { "plots": { - "386877595575860": "0x16c17406", - "422879866140485": "0x1c9205b11", - "422877270899875": "0x9ab03aa2" + "377334425097799": "0x156af704ab" }, "plotIndexes": [ - "0x15fdcf5a7e634", - "0x1809b64343745", - "0x1809ac983fca3" + "0x1572f045e9647" ] } }, @@ -226032,7 +214181,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x6CA5b974aa4b7B08Ae62699b6CB2a5b8A52c4CdB": { + "0xa48E7B26036360695be458D6904DE0892a5dB116": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -226045,16 +214194,10 @@ "fields": { "0": { "plots": { - "387178819624346": "0x54e56fe2e", - "401309728984959": "0x1487301dac", - "696212281967928": "0x9b9e5e8f0", - "696479737795444": "0x50b2318f0" + "361675678821729": "0x53f99d29f2" }, "plotIndexes": [ - "0x1602318021d9a", - "0x16cfd33d74f7f", - "0x279338dc14538", - "0x27971d35d5374" + "0x148f12e5c2d61" ] } }, @@ -226066,23 +214209,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0xCfD2b6487AFA4A30b79408cF57b2103348660a02": { + "0xcd805F0A5F1A26e3B344b31539AAF84f527Bf2DB": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x42b", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "386586067388886": "0xd643cee22" + "371946868967109": "0xdb336fd9d" }, "plotIndexes": [ - "0x15f991538c9d6" + "0x15248a10006c5" ] } }, @@ -226091,10 +214234,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xe89a880" + }, "sop": {} }, - "0xbb595fEF3C86FE664836a5Ea6C6E549ECeA28dEe": { + "0x3810EAcf5020D020B3317B559E59376c5d02dCB2": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -226107,10 +214252,10 @@ "fields": { "0": { "plots": { - "380874877805325": "0x173d11980b" + "370593639163868": "0x1467aea500" }, "plotIndexes": [ - "0x15a6757cba30d" + "0x1510d8e37e7dc" ] } }, @@ -226119,10 +214264,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x1c72ebd5" + }, "sop": {} }, - "0x81696d556eeCDc42bED7C3b53b027de923cC5038": { + "0x9D496BA09C9dDAE8de72F146DE012701a10400CC": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -226135,12 +214282,10 @@ "fields": { "0": { "plots": { - "380859952352184": "0x379a05755", - "463502571685807": "0x86881e996" + "359640428256007": "0x32894c7c86" }, "plotIndexes": [ - "0x15a63de2b4bb8", - "0x1a58d9a2347af" + "0x147174ff91b07" ] } }, @@ -226152,7 +214297,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x9c7ac7abbD3EC00E1d4b330C497529166db84f63": { + "0x8756e7c68221969812d5DaC9B5FB1e59a32a5b1D": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -226165,10 +214310,12 @@ "fields": { "0": { "plots": { - "384132556160937": "0x65f229d3b" + "380008273465850": "0x1749419476", + "386673517385669": "0x1b0c8e5783" }, "plotIndexes": [ - "0x15d5dd48e7fa9" + "0x1599d9226d1fa", + "0x15fad71a5d7c5" ] } }, @@ -226177,12 +214324,10 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0xae1b6" - }, + "internalTokenBalance": {}, "sop": {} }, - "0x73a901A5712bc405892F5ab02dDf0Cf18a6413b3": { + "0x507165FF0417126930D7F79163961DE8Ff19c8b8": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -226195,10 +214340,12 @@ "fields": { "0": { "plots": { - "385887420980071": "0x3a6688143" + "360848988579994": "0xe68534f17", + "662609678589053": "0xddcbee75a" }, "plotIndexes": [ - "0x15ef66aa69b67" + "0x14830b3c8289a", + "0x25aa3d6845c7d" ] } }, @@ -226207,10 +214354,12 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0xbf98e71" + }, "sop": {} }, - "0x591f0E55fa6dc26737cDC550aA033FA5B1DC7509": { + "0x70C8eE0223D10c150b0db98A0423EC18Ec5aCa89": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -226223,10 +214372,10 @@ "fields": { "0": { "plots": { - "388450105583427": "0x2d5b9b361" + "378893728297768": "0x160c75d440" }, "plotIndexes": [ - "0x1614b168e6743" + "0x1589a12153328" ] } }, @@ -226238,7 +214387,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xC9cE413f3761aB1Df6be145fe48Fc6c28A8DCc1a": { + "0x532744D22891C4fccd5c4250D62894b3153667a7": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -226251,10 +214400,10 @@ "fields": { "0": { "plots": { - "384209179623467": "0x1136c6d762" + "374145600795098": "0x21266bfdc38" }, "plotIndexes": [ - "0x15d6fababc02b" + "0x154488fa131da" ] } }, @@ -226266,7 +214415,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x26631e82aa93DeDeFB15eDBF5574bd4E84D0FC2D": { + "0x009A2534fd10c879D69daf4eE3000A6cb7E609Bb": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -226279,10 +214428,12 @@ "fields": { "0": { "plots": { - "384391860674103": "0x53af90c1e" + "355994286524369": "0x37ca3d46", + "613741059534895": "0x2dfbcca8d" }, "plotIndexes": [ - "0x15d9a344f5e37" + "0x143c660fd87d1", + "0x22e31b9d6702f" ] } }, @@ -226294,7 +214445,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x29e1A68927a46f42d3B82417A01645Ee23F86bD9": { + "0x5084949C8f7bf350c646796B242010919f70898E": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -226307,10 +214458,10 @@ "fields": { "0": { "plots": { - "386040626569435": "0x6e17545" + "371914538333765": "0x2ba0111ff" }, "plotIndexes": [ - "0x15f1a166a60db" + "0x1524119f1b645" ] } }, @@ -226322,7 +214473,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x70F11dbD21809EbCd4C6604581103506A6a8443A": { + "0xc390578437F7BdEe1F766Fdb00f641848bc19366": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -226335,10 +214486,10 @@ "fields": { "0": { "plots": { - "385984597229597": "0x2aa288246" + "372433833471833": "0xddf48b30" }, "plotIndexes": [ - "0x15f0d0ace801d" + "0x152ba0258af59" ] } }, @@ -226350,7 +214501,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xC2705469f7426E9EbE91e55095dCA2AdF19Bcbb2": { + "0xf13D8d9E5Ff8b123ffa5F5e981DA1685275cE176": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -226363,16 +214514,12 @@ "fields": { "0": { "plots": { - "387120303937976": "0xd9fce83ca", - "456679832668142": "0x954e9a9a1", - "470868926031598": "0x8067d6233", - "470903394650401": "0x80589ddff" + "377332779708970": "0x6212a41d", + "456719911973263": "0x78364980" }, "plotIndexes": [ - "0x16015783399b8", - "0x19f590f33c7ee", - "0x1ac40b71266ee", - "0x1ac48bd8fc921" + "0x1572ea24bf22a", + "0x19f62641d718f" ] } }, @@ -226381,30 +214528,28 @@ "mowStatuses": {}, "isApprovedForAll": {}, "germinatingStalk": {}, - "internalTokenBalance": {}, + "internalTokenBalance": { + "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x2462ac4" + }, "sop": {} }, - "0x829Ceb00fC74bD087b1e50d31ec628a90894cD52": { + "0x25CD302E37a69D70a6Ef645dAea5A7de38c66E2a": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x42b", + "lastSop": "0x401", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "384414324910677": "0xbc7c656ce", - "416442088554138": "0xe8b861795", - "428416613011571": "0xeeb7c1cbb" + "359920402458005": "0x13ca651200" }, "plotIndexes": [ - "0x15d9f6f486a55", - "0x17ac07ac1fe9a", - "0x185a48408d073" + "0x147587fbc6595" ] } }, @@ -226416,7 +214561,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xDeaB5B36743feb01150e47Ad9FfD981b9d5b7E8a": { + "0x6b87460Ce18951D31A7175cAbE2f3fc449E54256": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -226429,12 +214574,12 @@ "fields": { "0": { "plots": { - "387406923771954": "0x416007d40", - "388983838542393": "0x2cb2a94a0" + "360115402458027": "0x8ddfefb9e", + "402818698087064": "0xae4da1a41" }, "plotIndexes": [ - "0x1605834133032", - "0x161c75b850a39" + "0x14785e6a443ab", + "0x16e5c89688a98" ] } }, @@ -226446,7 +214591,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x0be0eCC301a1c0175f07A66243cfF628c24DB852": { + "0xF4E3f1c01BD9A5398B92ac1B8bedb66ba4a2d627": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -226459,10 +214604,10 @@ "fields": { "0": { "plots": { - "387085583162537": "0x2be298d57" + "370522581424279": "0x108b5f0f45" }, "plotIndexes": [ - "0x1600d62ae9ca9" + "0x150fd02d8d897" ] } }, @@ -226474,7 +214619,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x7E295c18FCa9DE63CF965cFCd3223909e1dBA6af": { + "0x905B2Eb4B731B395E7517a4763CD829F6EC2f510": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -226487,10 +214632,10 @@ "fields": { "0": { "plots": { - "381241434287363": "0x129a3826a4" + "379996617045843": "0x2b6c6daa7" }, "plotIndexes": [ - "0x15abcb043ad03" + "0x1599adb5ff753" ] } }, @@ -226502,23 +214647,23 @@ "internalTokenBalance": {}, "sop": {} }, - "0x7c12222e79e1a2552CaF92ce8dA063e188a7234F": { + "0x45E5d313030Be8E40FCeB8f03d55300DA6a8799e": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", "tokenPermitNonces": "0x0", "lastUpdate": "0x5fbc", - "lastSop": "0x0", + "lastSop": "0x401", "lastRain": "0x0", "deposits": {}, "depositIdList": {}, "fields": { "0": { "plots": { - "388462281235108": "0x232cf9d435" + "361666644960846": "0x21a75c713" }, "plotIndexes": [ - "0x1614dec481aa4" + "0x148ef13e6664e" ] } }, @@ -226530,7 +214675,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x568092fb0aA37027a4B75CFf2492Dbe298FcE650": { + "0xf152581b8cb486b24d73aD51e23a3Fd3E0222538": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -226543,10 +214688,10 @@ "fields": { "0": { "plots": { - "383570319922931": "0x4a83650f9d" + "379603990851302": "0x5b6a58486d" }, "plotIndexes": [ - "0x15cdaecaa56f3" + "0x1593f7107aee6" ] } }, @@ -226558,7 +214703,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xbFc016652a6708b20ae850Ee92D2Ea23ccA5F31a": { + "0x61e193e514DE408F57A648a641d9fcD412CdeD82": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -226571,10 +214716,10 @@ "fields": { "0": { "plots": { - "384284223137807": "0x190ecd2f40" + "377426413984498": "0x10841d94aa6" }, "plotIndexes": [ - "0x15d81249ce80f" + "0x157446f559af2" ] } }, @@ -226586,7 +214731,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x843F293423895a837DBe3Dca561604e49410576C": { + "0x26C08ce60A17a130f5483D50C404bDE46985bCaf": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -226599,14 +214744,11 @@ "fields": { "0": { "plots": { - "387108643387925": "0x2b705dfa3" + "386273913739633": "0x1a69fae8f0" }, "plotIndexes": [ - "0x16012c12dba15" + "0x15f50676a1971" ] -======= - "plotIndexes": ["0x15f50676a1971"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -226617,8 +214759,6 @@ "internalTokenBalance": {}, "sop": {} }, -<<<<<<< HEAD -======= "0x66F1089eD7D915bC7c7055d2d226487362347d39": { "roots": "0x0", "stalk": "0x0", @@ -226634,7 +214774,9 @@ "plots": { "384283113068429": "0x422a5082" }, - "plotIndexes": ["0x15d80e272978d"] + "plotIndexes": [ + "0x15d80e272978d" + ] } }, "depositAllowances": {}, @@ -226660,7 +214802,9 @@ "plots": { "381325946685316": "0x213391a16" }, - "plotIndexes": ["0x15ad05d988784"] + "plotIndexes": [ + "0x15ad05d988784" + ] } }, "depositAllowances": {}, @@ -226686,7 +214830,9 @@ "plots": { "380974686616344": "0x1441249016" }, - "plotIndexes": ["0x15a7e94dd3b18"] + "plotIndexes": [ + "0x15a7e94dd3b18" + ] } }, "depositAllowances": {}, @@ -226712,7 +214858,9 @@ "plots": { "384705864961915": "0x107bb6f6a2b" }, - "plotIndexes": ["0x15de3506c8f7b"] + "plotIndexes": [ + "0x15de3506c8f7b" + ] } }, "depositAllowances": {}, @@ -226738,7 +214886,9 @@ "plots": { "382614804933710": "0x7749d3a6a" }, - "plotIndexes": ["0x15bfc7388ac4e"] + "plotIndexes": [ + "0x15bfc7388ac4e" + ] } }, "depositAllowances": {}, @@ -226765,7 +214915,10 @@ "385934932264792": "0x692e7f63b", "458138123015409": "0x314f34d58" }, - "plotIndexes": ["0x15f017a8b4758", "0x1a0ac981494f1"] + "plotIndexes": [ + "0x15f017a8b4758", + "0x1a0ac981494f1" + ] } }, "depositAllowances": {}, @@ -226792,7 +214945,10 @@ "387099560901328": "0x21d5bbf45", "603423204831971": "0x4018fd0ee" }, - "plotIndexes": ["0x16010a3d1fad0", "0x224cf69c5f2e3"] + "plotIndexes": [ + "0x16010a3d1fad0", + "0x224cf69c5f2e3" + ] } }, "depositAllowances": {}, @@ -226818,7 +214974,9 @@ "plots": { "383092890554906": "0x255650c573" }, - "plotIndexes": ["0x15c6bc3a8521a"] + "plotIndexes": [ + "0x15c6bc3a8521a" + ] } }, "depositAllowances": {}, @@ -226844,7 +215002,9 @@ "plots": { "383513997691489": "0x58c7c164c" }, - "plotIndexes": ["0x15ccdcf994a61"] + "plotIndexes": [ + "0x15ccdcf994a61" + ] } }, "depositAllowances": {}, @@ -226870,7 +215030,9 @@ "plots": { "388151583261614": "0x4581512395" }, - "plotIndexes": ["0x16105953d43ae"] + "plotIndexes": [ + "0x16105953d43ae" + ] } }, "depositAllowances": {}, @@ -226896,7 +215058,9 @@ "plots": { "385963166743955": "0x4fd5b428a" }, - "plotIndexes": ["0x15f080d733d93"] + "plotIndexes": [ + "0x15f080d733d93" + ] } }, "depositAllowances": {}, @@ -226922,7 +215086,9 @@ "plots": { "387354276771954": "0x416007d40" }, - "plotIndexes": ["0x1604bf211b872"] + "plotIndexes": [ + "0x1604bf211b872" + ] } }, "depositAllowances": {}, @@ -226948,7 +215114,9 @@ "plots": { "380823279010078": "0x889e6ca9a" }, - "plotIndexes": ["0x15a5b5444811e"] + "plotIndexes": [ + "0x15a5b5444811e" + ] } }, "depositAllowances": {}, @@ -226974,7 +215142,9 @@ "plots": { "388613359660761": "0x1ca48bcfa9" }, - "plotIndexes": ["0x161711941eed9"] + "plotIndexes": [ + "0x161711941eed9" + ] } }, "depositAllowances": {}, @@ -227000,7 +215170,9 @@ "plots": { "381061678877486": "0x1021f3e9f0" }, - "plotIndexes": ["0x15a92d601cb2e"] + "plotIndexes": [ + "0x15a92d601cb2e" + ] } }, "depositAllowances": {}, @@ -227028,7 +215200,9 @@ "plots": { "383075774673118": "0x3fc2fa13c" }, - "plotIndexes": ["0x15c67c778b0de"] + "plotIndexes": [ + "0x15c67c778b0de" + ] } }, "depositAllowances": {}, @@ -227054,7 +215228,9 @@ "plots": { "385996041945699": "0xa61735e78" }, - "plotIndexes": ["0x15f0fb4f70263"] + "plotIndexes": [ + "0x15f0fb4f70263" + ] } }, "depositAllowances": {}, @@ -227081,7 +215257,10 @@ "387389374771954": "0x416007d40", "591077039421030": "0xe0d59535a" }, - "plotIndexes": ["0x160541e12b2f2", "0x21994d8f83666"] + "plotIndexes": [ + "0x160541e12b2f2", + "0x21994d8f83666" + ] } }, "depositAllowances": {}, @@ -227109,7 +215288,11 @@ "422879866140485": "0x1c9205b11", "422877270899875": "0x9ab03aa2" }, - "plotIndexes": ["0x15fdcf5a7e634", "0x1809b64343745", "0x1809ac983fca3"] + "plotIndexes": [ + "0x15fdcf5a7e634", + "0x1809b64343745", + "0x1809ac983fca3" + ] } }, "depositAllowances": {}, @@ -227138,7 +215321,12 @@ "696212281967928": "0x9b9e5e8f0", "696479737795444": "0x50b2318f0" }, - "plotIndexes": ["0x1602318021d9a", "0x16cfd33d74f7f", "0x279338dc14538", "0x27971d35d5374"] + "plotIndexes": [ + "0x1602318021d9a", + "0x16cfd33d74f7f", + "0x279338dc14538", + "0x27971d35d5374" + ] } }, "depositAllowances": {}, @@ -227164,7 +215352,9 @@ "plots": { "386586067388886": "0xd643cee22" }, - "plotIndexes": ["0x15f991538c9d6"] + "plotIndexes": [ + "0x15f991538c9d6" + ] } }, "depositAllowances": {}, @@ -227190,7 +215380,9 @@ "plots": { "380874877805325": "0x173d11980b" }, - "plotIndexes": ["0x15a6757cba30d"] + "plotIndexes": [ + "0x15a6757cba30d" + ] } }, "depositAllowances": {}, @@ -227217,7 +215409,10 @@ "380859952352184": "0x379a05755", "463502571685807": "0x86881e996" }, - "plotIndexes": ["0x15a63de2b4bb8", "0x1a58d9a2347af"] + "plotIndexes": [ + "0x15a63de2b4bb8", + "0x1a58d9a2347af" + ] } }, "depositAllowances": {}, @@ -227243,7 +215438,9 @@ "plots": { "384132556160937": "0x65f229d3b" }, - "plotIndexes": ["0x15d5dd48e7fa9"] + "plotIndexes": [ + "0x15d5dd48e7fa9" + ] } }, "depositAllowances": {}, @@ -227271,7 +215468,9 @@ "plots": { "385887420980071": "0x3a6688143" }, - "plotIndexes": ["0x15ef66aa69b67"] + "plotIndexes": [ + "0x15ef66aa69b67" + ] } }, "depositAllowances": {}, @@ -227297,7 +215496,9 @@ "plots": { "388450105583427": "0x2d5b9b361" }, - "plotIndexes": ["0x1614b168e6743"] + "plotIndexes": [ + "0x1614b168e6743" + ] } }, "depositAllowances": {}, @@ -227323,7 +215524,9 @@ "plots": { "384209179623467": "0x1136c6d762" }, - "plotIndexes": ["0x15d6fababc02b"] + "plotIndexes": [ + "0x15d6fababc02b" + ] } }, "depositAllowances": {}, @@ -227349,7 +215552,9 @@ "plots": { "384391860674103": "0x53af90c1e" }, - "plotIndexes": ["0x15d9a344f5e37"] + "plotIndexes": [ + "0x15d9a344f5e37" + ] } }, "depositAllowances": {}, @@ -227375,7 +215580,9 @@ "plots": { "386040626569435": "0x6e17545" }, - "plotIndexes": ["0x15f1a166a60db"] + "plotIndexes": [ + "0x15f1a166a60db" + ] } }, "depositAllowances": {}, @@ -227401,7 +215608,9 @@ "plots": { "385984597229597": "0x2aa288246" }, - "plotIndexes": ["0x15f0d0ace801d"] + "plotIndexes": [ + "0x15f0d0ace801d" + ] } }, "depositAllowances": {}, @@ -227430,7 +215639,12 @@ "470868926031598": "0x8067d6233", "470903394650401": "0x80589ddff" }, - "plotIndexes": ["0x16015783399b8", "0x19f590f33c7ee", "0x1ac40b71266ee", "0x1ac48bd8fc921"] + "plotIndexes": [ + "0x16015783399b8", + "0x19f590f33c7ee", + "0x1ac40b71266ee", + "0x1ac48bd8fc921" + ] } }, "depositAllowances": {}, @@ -227458,7 +215672,11 @@ "416442088554138": "0xe8b861795", "428416613011571": "0xeeb7c1cbb" }, - "plotIndexes": ["0x15d9f6f486a55", "0x17ac07ac1fe9a", "0x185a48408d073"] + "plotIndexes": [ + "0x15d9f6f486a55", + "0x17ac07ac1fe9a", + "0x185a48408d073" + ] } }, "depositAllowances": {}, @@ -227485,7 +215703,10 @@ "387406923771954": "0x416007d40", "388983838542393": "0x2cb2a94a0" }, - "plotIndexes": ["0x1605834133032", "0x161c75b850a39"] + "plotIndexes": [ + "0x1605834133032", + "0x161c75b850a39" + ] } }, "depositAllowances": {}, @@ -227511,7 +215732,9 @@ "plots": { "387085583162537": "0x2be298d57" }, - "plotIndexes": ["0x1600d62ae9ca9"] + "plotIndexes": [ + "0x1600d62ae9ca9" + ] } }, "depositAllowances": {}, @@ -227537,7 +215760,9 @@ "plots": { "381241434287363": "0x129a3826a4" }, - "plotIndexes": ["0x15abcb043ad03"] + "plotIndexes": [ + "0x15abcb043ad03" + ] } }, "depositAllowances": {}, @@ -227563,7 +215788,9 @@ "plots": { "388462281235108": "0x232cf9d435" }, - "plotIndexes": ["0x1614dec481aa4"] + "plotIndexes": [ + "0x1614dec481aa4" + ] } }, "depositAllowances": {}, @@ -227589,7 +215816,9 @@ "plots": { "383570319922931": "0x4a83650f9d" }, - "plotIndexes": ["0x15cdaecaa56f3"] + "plotIndexes": [ + "0x15cdaecaa56f3" + ] } }, "depositAllowances": {}, @@ -227615,7 +215844,9 @@ "plots": { "384284223137807": "0x190ecd2f40" }, - "plotIndexes": ["0x15d81249ce80f"] + "plotIndexes": [ + "0x15d81249ce80f" + ] } }, "depositAllowances": {}, @@ -227641,7 +215872,9 @@ "plots": { "387108643387925": "0x2b705dfa3" }, - "plotIndexes": ["0x16012c12dba15"] + "plotIndexes": [ + "0x16012c12dba15" + ] } }, "depositAllowances": {}, @@ -227652,7 +215885,6 @@ "internalTokenBalance": {}, "sop": {} }, ->>>>>>> b689ac329 (feat: update reseed jsons) "0xA8e54179AD4A4a844Cc7e941F60dF9393d0AD7a5": { "roots": "0x0", "stalk": "0x0", @@ -227668,7 +215900,9 @@ "plots": { "384072204135723": "0x20a0a8af1" }, - "plotIndexes": ["0x15d4fc74bad2b"] + "plotIndexes": [ + "0x15d4fc74bad2b" + ] } }, "depositAllowances": {}, @@ -227693,7 +215927,6 @@ "0": { "plots": { "381340402136618": "0x61f597bbe" -<<<<<<< HEAD }, "plotIndexes": [ "0x15ad3bb35362a" @@ -227730,42 +215963,6 @@ "636394053735133": "0x73b553469" }, "plotIndexes": [ -======= - }, - "plotIndexes": ["0x15ad3bb35362a"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x33c0BCac5c1835fe9D52D35079F6617A22c6C431": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "387476112263181": "0x1d2df013c0", - "389195837042393": "0x888641a00", - "594358295239774": "0x2f2f252ace", - "572397154046541": "0xb97a27254", - "614677841663135": "0xa2ee690a0", - "613936695193580": "0x3c63de0bd", - "636394053735133": "0x73b553469" - }, - "plotIndexes": [ ->>>>>>> b689ac329 (feat: update reseed jsons) "0x160685007c80d", "0x161f8b79d6ed9", "0x21c90d30e9c5e", @@ -227799,7 +215996,9 @@ "plots": { "400718076278698": "0x1de1c68a3d" }, - "plotIndexes": ["0x16c73729777aa"] + "plotIndexes": [ + "0x16c73729777aa" + ] } }, "depositAllowances": {}, @@ -227811,7 +216010,6 @@ "sop": {} }, "0x14b5B30014D11daA4b0dba48eC56AD2f1dF7a9ED": { -<<<<<<< HEAD "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -228392,8 +216590,6 @@ "sop": {} }, "0xF4839123454F7A65f79edb514A977d0A443d9F91": { -======= ->>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -228406,10 +216602,11 @@ "fields": { "0": { "plots": { - "396986650725260": "0xcf93593a", - "396990133265606": "0xe17a6fdb" + "398077843498350": "0x241a089dad", + "396499321739661": "0x250139b1c7", + "396672169852755": "0x46dd373119", + "493845501729151": "0x1b4151ea85" }, -<<<<<<< HEAD "plotIndexes": [ "0x16a0cb874656e", "0x1689d3139d98d", @@ -228444,9 +216641,6 @@ "plotIndexes": [ "0x169588ae6141b" ] -======= - "plotIndexes": ["0x1690ea84c0b8c", "0x1690f77df64c6"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -228472,13 +216666,9 @@ "plots": { "404265886768756": "0x840a7c79" }, -<<<<<<< HEAD "plotIndexes": [ "0x16fad7c935e74" ] -======= - "plotIndexes": ["0x16af532982411"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -228489,11 +216679,7 @@ "internalTokenBalance": {}, "sop": {} }, -<<<<<<< HEAD "0x2f89DB6B5E80C4849142789d777109D2F911F780": { -======= - "0x5a28b03C7fC7D1B51E72B1f9DF28A539173CAF79": { ->>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -228506,189 +216692,11 @@ "fields": { "0": { "plots": { -<<<<<<< HEAD "392855011748637": "0x139009a2b" }, "plotIndexes": [ "0x1654caf6c6b1d" ] -======= - "390728148329987": "0x1c12a9957b7", - "402274635542096": "0x654cf562d1", - "389232485042393": "0x156ccccf206", - "439720106933966": "0xe1b3289b68", - "453720230030637": "0xf75a2a5532", - "605146291993181": "0x189272f912" - }, - "plotIndexes": [ - "0x1635d7c7c2603", - "0x16ddddcc0ee50", - "0x16201400188d9", - "0x18fec50c63ece", - "0x19ca7f9236d2d", - "0x2266099c57a5d" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x422811e9Ca0493393a6C6bc8aF0718a0ec5eaa80": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "404106072954894": "0xee53b5866" - }, - "plotIndexes": ["0x16f8846ee180e"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x08c16a9c76Df28eE6bf9764B761E7C4cE411E890": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "393885772710066": "0xbaa2124e02" - }, - "plotIndexes": ["0x1663cad9080b2"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xCAeEf0dFCF97641389F8673264b7AbAB25D17c99": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "400315704255754": "0x440ca64780" - }, - "plotIndexes": ["0x16c15c359a50a"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x96e5aAcf14E93E6Bd747C403159526fa484F71dC": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "401533003762823": "0xec51cd8b", - "707611259809109": "0x3a13b1e20" - }, - "plotIndexes": ["0x16d31300e0c87", "0x2839195c7ad55"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x7ee2e900" - }, - "sop": {} - }, - "0x04A9b41a1288871FB60c6d015F3489612d36EB48": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "394687355735732": "0xefc5eea50" - }, - "plotIndexes": ["0x166f74fa2ceb4"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x3E83E8c2734e1Af95CA426EfeFB757aa9df742CC": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "401837348742701": "0x191a06ab80", - "404309982048493": "0x4c39ef3a98" - }, - "plotIndexes": ["0x16d780c6de62d", "0x16fb7c0dbf0ed"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -228714,13 +216722,9 @@ "plots": { "400607974255754": "0x555243261" }, -<<<<<<< HEAD "plotIndexes": [ "0x16c59cfffec8a" ] -======= - "plotIndexes": ["0x165623083f24b"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -228731,11 +216735,7 @@ "internalTokenBalance": {}, "sop": {} }, -<<<<<<< HEAD "0x6ab4566Df630Be242D3CD48777aa4CA19C635f56": { -======= - "0x81d8363845F96f94858Fac44A521117DADBfD837": { ->>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -228748,411 +216748,11 @@ "fields": { "0": { "plots": { -<<<<<<< HEAD "400652005822390": "0xf621b27f4" }, "plotIndexes": [ "0x16c64107c4fb6" ] -======= - "393561142971372": "0x4b9570b4c6" - }, - "plotIndexes": ["0x165f1181fcbec"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xCD4950a8Bd67123807dA21985F2d4C4553EA1523": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "400846418215399": "0x1aa4f65e8d" - }, - "plotIndexes": ["0x16c91545e01e7"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x0C2301083B7f8021fB967C05a4C2fb1ab731C302": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "390704799840991": "0x56fadab24" - }, - "plotIndexes": ["0x163580cce7adf"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x68C0b2aC21baBDAFbC42A837b2A259e21b825cDe": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "400121937452645": "0x70143f805" - }, - "plotIndexes": ["0x16be8a5f2de65"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x8a178306ffF20fd120C6d96666F08AC7c8b31ded": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "402871941536076": "0x1677590158" - }, - "plotIndexes": ["0x16e68eef7194c"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x737253bF1833A6AC51DCab69cFeDa5d5f3b11A14": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "401720368857579": "0x1b3c8b6442" - }, - "plotIndexes": ["0x16d5ccfe281eb"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x17c41659Cbd3C2e18aC15D8278c937464Da45f8f": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "393235443340203": "0x4bd535f841" - }, - "plotIndexes": ["0x165a542e9d3ab"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x58adF440dB094bDaD8c588Ad2f606F4C3464A4ba": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "403240604993759": "0x6873268bcd" - }, - "plotIndexes": ["0x16ebec50508df"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x87834847477c82d340FCD37BE6b5524b4dF5e7c5": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "402865487258841": "0x180b47473" - }, - "plotIndexes": ["0x16e676e42a4d9"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x9399943298b25632b21f4d1FA75DB0C5b8d457C5": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "404022519144524": "0x2d1215ffd", - "406000821375295": "0x69bf4e8b0" - }, - "plotIndexes": ["0x16f74d2bc204c", "0x171416ebc913f"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xF4839123454F7A65f79edb514A977d0A443d9F91": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "398077843498350": "0x241a089dad", - "396499321739661": "0x250139b1c7", - "396672169852755": "0x46dd373119", - "493845501729151": "0x1b4151ea85" - }, - "plotIndexes": ["0x16a0cb874656e", "0x1689d3139d98d", "0x168c56fc6bf53", "0x1c1265db4597f"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xb0226e96c71F94C44d998CE1b34F6a47c3A82404": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "397303985083419": "0xb29d34f9ca" - }, - "plotIndexes": ["0x169588ae6141b"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x66D8293781eF24184aa9164878dfC0486cfa9Aac": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "404265886768756": "0x840a7c79" - }, - "plotIndexes": ["0x16fad7c935e74"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x2f89DB6B5E80C4849142789d777109D2F911F780": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "392855011748637": "0x139009a2b" - }, - "plotIndexes": ["0x1654caf6c6b1d"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x4a4A24f4A0A71a004B55e027E37cfd4eDf684256": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "400607974255754": "0x555243261" - }, - "plotIndexes": ["0x16c59cfffec8a"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x6ab4566Df630Be242D3CD48777aa4CA19C635f56": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "400652005822390": "0xf621b27f4" - }, - "plotIndexes": ["0x16c64107c4fb6"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229178,13 +216778,9 @@ "plots": { "405968762010244": "0x76d90488" }, -<<<<<<< HEAD "plotIndexes": [ "0x17139f7d97a84" ] -======= - "plotIndexes": ["0x17139f7d97a84"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229210,13 +216806,9 @@ "plots": { "406154878759135": "0x945523530" }, -<<<<<<< HEAD "plotIndexes": [ "0x171654d45b0df" ] -======= - "plotIndexes": ["0x171654d45b0df"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229244,15 +216836,11 @@ "531427120214450": "0x133b1c61fa", "643261775828307": "0x238d784359" }, -<<<<<<< HEAD "plotIndexes": [ "0x182892c37faf9", "0x1e35484b971b2", "0x2490b0da55553" ] -======= - "plotIndexes": ["0x182892c37faf9", "0x1e35484b971b2", "0x2490b0da55553"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229278,13 +216866,9 @@ "plots": { "405897528944814": "0xccfd76140" }, -<<<<<<< HEAD "plotIndexes": [ "0x17129620728ae" ] -======= - "plotIndexes": ["0x17129620728ae"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229310,13 +216894,9 @@ "plots": { "405859542087439": "0x35f1513ef" }, -<<<<<<< HEAD "plotIndexes": [ "0x1712089d5b70f" ] -======= - "plotIndexes": ["0x1712089d5b70f"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229343,14 +216923,10 @@ "405972755944204": "0x4686ee85f", "437453984559649": "0x1bd9cd061" }, -<<<<<<< HEAD "plotIndexes": [ "0x1713ae5e8130c", "0x18ddcb15af221" ] -======= - "plotIndexes": ["0x1713ae5e8130c", "0x18ddcb15af221"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229376,13 +216952,9 @@ "plots": { "411655097983604": "0x6f55c05c" }, -<<<<<<< HEAD "plotIndexes": [ "0x17665ebe2a274" ] -======= - "plotIndexes": ["0x17665ebe2a274"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229409,14 +216981,10 @@ "405492506092600": "0xfa02122", "705094852706044": "0xcd56c4be" }, -<<<<<<< HEAD "plotIndexes": [ "0x170cb14c8e438", "0x28147b03a7efc" ] -======= - "plotIndexes": ["0x170cb14c8e438", "0x28147b03a7efc"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229442,13 +217010,9 @@ "plots": { "405828528337439": "0x7389044f0" }, -<<<<<<< HEAD "plotIndexes": [ "0x171195145721f" ] -======= - "plotIndexes": ["0x171195145721f"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229475,14 +217039,10 @@ "419104248331557": "0xe101f158d", "406100162097903": "0xcbd5dfdf0" }, -<<<<<<< HEAD "plotIndexes": [ "0x17d2c4fd87d25", "0x171588fe7b2ef" ] -======= - "plotIndexes": ["0x17d2c4fd87d25", "0x171588fe7b2ef"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229508,13 +217068,9 @@ "plots": { "405874022206206": "0x5791c5db0" }, -<<<<<<< HEAD "plotIndexes": [ "0x17123e8eacafe" ] -======= - "plotIndexes": ["0x17123e8eacafe"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229540,13 +217096,9 @@ "plots": { "405747527739939": "0x12dc0307fc" }, -<<<<<<< HEAD "plotIndexes": [ "0x1710675426a23" ] -======= - "plotIndexes": ["0x1710675426a23"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229574,13 +217126,9 @@ "plots": { "419164648346290": "0x48b2c2679" }, -<<<<<<< HEAD "plotIndexes": [ "0x17d3a5ff792b2" ] -======= - "plotIndexes": ["0x17d3a5ff792b2"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229606,13 +217154,9 @@ "plots": { "408564846537034": "0x949a4dbaa" }, -<<<<<<< HEAD "plotIndexes": [ "0x173966a8ba94a" ] -======= - "plotIndexes": ["0x173966a8ba94a"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229638,13 +217182,9 @@ "plots": { "404807646684224": "0x6cbcd01" }, -<<<<<<< HEAD "plotIndexes": [ "0x1702b9ffba440" ] -======= - "plotIndexes": ["0x1702b9ffba440"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229670,13 +217210,9 @@ "plots": { "422887535448662": "0x74dcc3680" }, -<<<<<<< HEAD "plotIndexes": [ "0x1809d2d549256" ] -======= - "plotIndexes": ["0x1809d2d549256"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229702,13 +217238,9 @@ "plots": { "405952555551214": "0x2558092dd" }, -<<<<<<< HEAD "plotIndexes": [ "0x1713631de89ee" ] -======= - "plotIndexes": ["0x1713631de89ee"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229734,13 +217266,9 @@ "plots": { "404955105302992": "0xc9b493a14" }, -<<<<<<< HEAD "plotIndexes": [ "0x1704df53399d0" ] -======= - "plotIndexes": ["0x1704df53399d0"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229766,13 +217294,9 @@ "plots": { "405991687912299": "0x2206595d4" }, -<<<<<<< HEAD "plotIndexes": [ "0x1713f4e56fb6b" ] -======= - "plotIndexes": ["0x1713f4e56fb6b"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229798,13 +217322,9 @@ "plots": { "405492768245082": "0x5e1450125" }, -<<<<<<< HEAD "plotIndexes": [ "0x170cb2469055a" ] -======= - "plotIndexes": ["0x170cb2469055a"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229830,13 +217350,9 @@ "plots": { "404684955626632": "0x5b39a7aa3" }, -<<<<<<< HEAD "plotIndexes": [ "0x1700f0f06ac88" ] -======= - "plotIndexes": ["0x1700f0f06ac88"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229863,14 +217379,10 @@ "422366589300603": "0xbeee5f8f", "411689905001233": "0x5d20fbcb" }, -<<<<<<< HEAD "plotIndexes": [ "0x18023e2852f7b", "0x1766e068b9311" ] -======= - "plotIndexes": ["0x18023e2852f7b", "0x1766e068b9311"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229898,13 +217410,9 @@ "plots": { "406359783000810": "0x1bf998d63b" }, -<<<<<<< HEAD "plotIndexes": [ "0x1719502844aea" ] -======= - "plotIndexes": ["0x1719502844aea"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229930,13 +217438,9 @@ "plots": { "416914807899146": "0x251a4c0e93" }, -<<<<<<< HEAD "plotIndexes": [ "0x17b2e8b06c40a" ] -======= - "plotIndexes": ["0x17b2e8b06c40a"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229962,13 +217466,9 @@ "plots": { "424067831520194": "0x11c7e09a60" }, -<<<<<<< HEAD "plotIndexes": [ "0x181affc755bc2" ] -======= - "plotIndexes": ["0x181affc755bc2"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -229994,13 +217494,9 @@ "plots": { "404737495938253": "0x1772a2d59" }, -<<<<<<< HEAD "plotIndexes": [ "0x1701b4aac34cd" ] -======= - "plotIndexes": ["0x1701b4aac34cd"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -230027,14 +217523,10 @@ "404929342948282": "0x5ff8e5616", "417074162881181": "0xe41d9a933" }, -<<<<<<< HEAD "plotIndexes": [ "0x17047f5a543ba", "0x17b53a552d29d" ] -======= - "plotIndexes": ["0x17047f5a543ba", "0x17b53a552d29d"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -230060,13 +217552,9 @@ "plots": { "406205859764926": "0x23d68a302c" }, -<<<<<<< HEAD "plotIndexes": [ "0x171712bfa1abe" ] -======= - "plotIndexes": ["0x171712bfa1abe"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -230094,15 +217582,11 @@ "620990777138369": "0x1c9d3b5ed", "650004772446996": "0xb18b8835" }, -<<<<<<< HEAD "plotIndexes": [ "0x17abc633f393f", "0x234c9aeae1cc1", "0x24f2d07906314" ] -======= - "plotIndexes": ["0x17abc633f393f", "0x234c9aeae1cc1", "0x24f2d07906314"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -230128,13 +217612,9 @@ "plots": { "404736255118145": "0x49f5698c" }, -<<<<<<< HEAD "plotIndexes": [ "0x1701b00b6cb41" ] -======= - "plotIndexes": ["0x1701b00b6cb41"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -230161,14 +217641,10 @@ "423269308404787": "0x175e8250f", "437554929146101": "0x5f0d575a3" }, -<<<<<<< HEAD "plotIndexes": [ "0x180f610c59433", "0x18df4321f18f5" ] -======= - "plotIndexes": ["0x180f610c59433", "0x18df4321f18f5"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -230194,13 +217670,9 @@ "plots": { "414623981770600": "0x4ab09ed147" }, -<<<<<<< HEAD "plotIndexes": [ "0x179192b261768" ] -======= - "plotIndexes": ["0x179192b261768"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -230226,13 +217698,9 @@ "plots": { "404637371542405": "0x4e4923432" }, -<<<<<<< HEAD "plotIndexes": [ "0x17003facb2b85" ] -======= - "plotIndexes": ["0x17003facb2b85"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -230258,13 +217726,9 @@ "plots": { "404807760703809": "0x1c4eddd279" }, -<<<<<<< HEAD "plotIndexes": [ "0x1702ba6c77141" ] -======= - "plotIndexes": ["0x1702ba6c77141"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -230290,13 +217754,9 @@ "plots": { "416581788749222": "0x2aa52f5a82" }, -<<<<<<< HEAD "plotIndexes": [ "0x17ae10189cda6" ] -======= - "plotIndexes": ["0x17ae10189cda6"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -230322,13 +217782,9 @@ "plots": { "416777307799778": "0x1d1874a7af" }, -<<<<<<< HEAD "plotIndexes": [ "0x17b0e8761c0e2" ] -======= - "plotIndexes": ["0x17b0e8761c0e2"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -230354,13 +217810,9 @@ "plots": { "405569526477439": "0x117c60cc04" }, -<<<<<<< HEAD "plotIndexes": [ "0x170dd038eb27f" ] -======= - "plotIndexes": ["0x170dd038eb27f"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -230386,7 +217838,9 @@ "plots": { "437428256972808": "0x5fd7bd219" }, - "plotIndexes": ["0x18dd6b3df2008"] + "plotIndexes": [ + "0x18dd6b3df2008" + ] } }, "depositAllowances": {}, @@ -230413,7 +217867,10 @@ "439262284146563": "0x22836a946", "707897763173856": "0x6a080410" }, - "plotIndexes": ["0x18f81b868e783", "0x283d44ab615e0"] + "plotIndexes": [ + "0x18f81b868e783", + "0x283d44ab615e0" + ] } }, "depositAllowances": {}, @@ -230442,14 +217899,10 @@ "432507957558432": "0xec5a7bdb7d", "436394987906845": "0xf093a2b8eb" }, -<<<<<<< HEAD "plotIndexes": [ "0x1895d1b2c3ca0", "0x18ce6203c671d" ] -======= - "plotIndexes": ["0x1895d1b2c3ca0", "0x18ce6203c671d"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -230475,7 +217928,9 @@ "plots": { "439487841879353": "0x2d1dfabd20" }, - "plotIndexes": ["0x18fb63cb2c539"] + "plotIndexes": [ + "0x18fb63cb2c539" + ] } }, "depositAllowances": {}, @@ -230501,7 +217956,9 @@ "plots": { "446386709284268": "0x49b58523ce" }, - "plotIndexes": ["0x195fc813d45ac"] + "plotIndexes": [ + "0x195fc813d45ac" + ] } }, "depositAllowances": {}, @@ -230527,7 +217984,9 @@ "plots": { "446354539704178": "0x3b828bf7a" }, - "plotIndexes": ["0x195f503c86f72"] + "plotIndexes": [ + "0x195f503c86f72" + ] } }, "depositAllowances": {}, @@ -230553,7 +218012,9 @@ "plots": { "455953914009110": "0x1ed95ab640" }, - "plotIndexes": ["0x19eb00b141616"] + "plotIndexes": [ + "0x19eb00b141616" + ] } }, "depositAllowances": {}, @@ -230582,16 +218043,12 @@ "459319023744532": "0x1eacfb1009", "490256846516323": "0x14b8148bc" }, -<<<<<<< HEAD "plotIndexes": [ "0x19dac71e7ddbc", "0x1a153c2a22c4e", "0x1a1bf8b3fb614", "0x1bde2d12f7063" ] -======= - "plotIndexes": ["0x19dac71e7ddbc", "0x1a153c2a22c4e", "0x1a1bf8b3fb614", "0x1bde2d12f7063"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -230618,14 +218075,10 @@ "458021403565594": "0x7b757ff4c", "458124884153206": "0x31519017b" }, -<<<<<<< HEAD "plotIndexes": [ "0x1a0916b0f1e1a", "0x1a0a982fb9376" ] -======= - "plotIndexes": ["0x1a0916b0f1e1a", "0x1a0a982fb9376"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -230651,7 +218104,9 @@ "plots": { "458204265300255": "0x97c42a6b2f" }, - "plotIndexes": ["0x1a0bbfe77c11f"] + "plotIndexes": [ + "0x1a0bbfe77c11f" + ] } }, "depositAllowances": {}, @@ -230676,7 +218131,6 @@ "0": { "plots": { "462275867766454": "0x165a0bc00" -<<<<<<< HEAD }, "plotIndexes": [ "0x1a46ffce2eeb6" @@ -231116,414 +218570,6 @@ "521789411796482": "0x720e15a0" }, "plotIndexes": [ -======= - }, - "plotIndexes": ["0x1a46ffce2eeb6"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xd42E21c0b98c6b7EDbE350bCeD787CE0B9644877": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "463368747590625": "0x1890f25c5", - "568331431730306": "0x106d7b259", - "568316734551538": "0x36c052690" - }, - "plotIndexes": ["0x1a56e7199a3e1", "0x204e4f91a5c82", "0x204e18d1535f2"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xAFb3aC7EEC7e683734f81affBC3ee24C786ef2d0": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "458054544334182": "0x83215600" - }, - "plotIndexes": ["0x1a09922671d66"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x33033E306c89Dc5b662f01e74B12623f9a39CCE4": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "462263867766454": "0x165a0bc00" - }, - "plotIndexes": ["0x1a46d31a176b6"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xab2b4e053Ceb42B50f39c4C172B79E86A5e217c3": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x401", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "457500650018099": "0x1ee51ae904", - "656283295570897": "0x2e400aa8c" - }, - "plotIndexes": ["0x1a0182bba9533", "0x254e2dcb45bd1"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x6e568a11b" - }, - "sop": {} - }, - "0xf6Dd6A99A970d627A3F0D673cb162F0fe3D03251": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "463568948475744": "0x7e1e15391" - }, - "plotIndexes": ["0x1a59d0e80b760"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xeAB3981257d761d809E7036F498208F06ce0E5bb": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "458056744334182": "0x71bf9909" - }, - "plotIndexes": ["0x1a099a5887366"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x96b793d04E0D068083792E4D6E7780EEE50755Fa": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "464061872519163": "0x736b74d21" - }, - "plotIndexes": ["0x1a60fd310b7fb"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x2d0DDb67B7D551aFa7c8FA4D31F86DA9cc947450": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "462530193955529": "0x1f18862572" - }, - "plotIndexes": ["0x1a4ab33e89ac9"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xDaD87a8cCe8D5B9C57e44ae28111034e2A39eD50": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "464341586704871": "0x95d30942d" - }, - "plotIndexes": ["0x1a650f35479e7"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x47b2EFa18736C6C211505aEFd321bEC3AC3E8779": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "461663522612249": "0x1eeae3e0ff" - }, - "plotIndexes": ["0x1a3e16a456419"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xDf3e8B69943AD8278D198681175E6f93135CDDfC": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "464470389283162": "0x1d73d5d4ce" - }, - "plotIndexes": ["0x1a66ef08fd95a"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x5F0f6F695FebF386AA93126237b48c424961797B": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "463538684768581": "0x70bdb861b" - }, - "plotIndexes": ["0x1a59602a53145"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x2C01E651a64387352EbAF860165778049031e190": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "462269867766454": "0x165a0bc00" - }, - "plotIndexes": ["0x1a46e974232b6"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xf0ec8fFED51B4Ba996005F04d38c3dBeF3A92773": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "462663749386299": "0x163f33a71" - }, - "plotIndexes": ["0x1a4ca4c6ec03b"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x897512dFC6F2417b9f7b4bd21cdb7a4Fbb4939Df": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "461796312433944": "0x2f2e1705ef", - "469471119091257": "0x694f8fee", - "469472885913127": "0x69e15cfb", - "472836318883874": "0x6970e6a2", - "469469352906555": "0x6945d6fe", - "469474662290210": "0x69e9f5b4", - "470700696631708": "0x73a9aecb", - "521585204013082": "0x71d2eeaf", - "521587113662153": "0x71d00d59", - "521789411796482": "0x720e15a0" - }, - "plotIndexes": [ ->>>>>>> b689ac329 (feat: update reseed jsons) "0x1a40055294518", "0x1aafb43492639", "0x1aafbac98b627", @@ -231560,13 +218606,9 @@ "plots": { "462675052970405": "0xa1836be23c" }, -<<<<<<< HEAD "plotIndexes": [ "0x1a4ccee2dc1a5" ] -======= - "plotIndexes": ["0x1a4ccee2dc1a5"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -231592,7 +218634,6 @@ "plots": { "464028180668427": "0x7d830d7f0" }, -<<<<<<< HEAD "plotIndexes": [ "0x1a607fadfe00b" ] @@ -231852,38 +218893,6 @@ "plotIndexes": [ "0x1aafc806408d6" ] -======= - "plotIndexes": ["0x1a607fadfe00b"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, -<<<<<<< HEAD -======= - "0xd776347E2FD043Cb2903Fd6999533a07eD4D6B48": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "467339102657012": "0x28fbd296", - "467339790249098": "0x71e703cda" - }, - "plotIndexes": ["0x1a90add3419f4", "0x1a90b062fec8a"] } }, "depositAllowances": {}, @@ -231894,216 +218903,6 @@ "internalTokenBalance": {}, "sop": {} }, - "0xC25148EB441B3cAD327E2Ff9c45f317f087dF049": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "486935208595291": "0x76c9bd3b" - }, - "plotIndexes": ["0x1badd70230f5b"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x78d03BeEBEfB15EC912e4D6f7F89F571f33FaA21": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "470937847310112": "0x139c45a5f1" - }, - "plotIndexes": ["0x1ac50c319a720"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x5355C2B0e056d032a4F11E096c235e9a59F5E6af": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "469498391761616": "0x68ae3574a", - "502195415776668": "0x29388f65b5" - }, - "plotIndexes": ["0x1ab019cdd12d0", "0x1c8be7b5d7d9c"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x1FA517A273cC7e4305843DD136c09c8c370814be": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "469335949866381": "0xfcdbb409b" - }, - "plotIndexes": ["0x1aadbca92758d"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x0ACe049e9378FfDbcFcb93AEE763d72A935038AE": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "469335271362681": "0x28712514" - }, - "plotIndexes": ["0x1aadba2215079"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xEEf102b4B5A2f714aFd7c00C94257D7379dc913E": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "469550813615889": "0xcf4eb08d" - }, - "plotIndexes": ["0x1ab0dd1731711"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x03fFDf41a57Fabf55C245F9175fc8644F8381C48": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "469267431670089": "0xfcb8f8f30" - }, - "plotIndexes": ["0x1aacbd691c149"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x46b7c8c6513818348beF33cc5638dDe99e5c9E74": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "469476439230678": "0x2c31f1dba" - }, - "plotIndexes": ["0x1aafc806408d6"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, ->>>>>>> b689ac329 (feat: update reseed jsons) "0x97c46EeC87a51320c05291286f36689967834854": { "roots": "0x0", "stalk": "0x0", @@ -232119,33 +218918,9 @@ "plots": { "476619349663811": "0xe02db63ab" }, - "plotIndexes": ["0x1b17b9707a043"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x9389dD268Bb9758Bc73E9715d7C129b5A7dAa228": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "476490739234120": "0x50fc0001e" - }, - "plotIndexes": ["0x1b15da5403548"] + "plotIndexes": [ + "0x1b17b9707a043" + ] } }, "depositAllowances": {}, @@ -232201,7 +218976,11 @@ "716295671103690": "0x611f0588", "741119395427445": "0x178912a65e" }, - "plotIndexes": ["0x1ac19ff7b2867", "0x28b779507c0ca", "0x2a20b4e4cf475"] + "plotIndexes": [ + "0x1ac19ff7b2867", + "0x28b779507c0ca", + "0x2a20b4e4cf475" + ] } }, "depositAllowances": {}, @@ -232227,13 +219006,9 @@ "plots": { "492791683332142": "0xd84b378983" }, -<<<<<<< HEAD "plotIndexes": [ "0x1c031013bb82e" ] -======= - "plotIndexes": ["0x1c031013bb82e"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -232259,13 +219034,9 @@ "plots": { "490810794234272": "0x3e16926aa" }, -<<<<<<< HEAD "plotIndexes": [ "0x1be63cb0ad1a0" ] -======= - "plotIndexes": ["0x1be63cb0ad1a0"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -232291,13 +219062,9 @@ "plots": { "504973746057585": "0x3a17dfb2a" }, -<<<<<<< HEAD "plotIndexes": [ "0x1cb455cc13171" ] -======= - "plotIndexes": ["0x1cb455cc13171"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -232324,186 +219091,10 @@ "526495525703189": "0x2f7abc717", "595967650797840": "0x47a42a060" }, -<<<<<<< HEAD "plotIndexes": [ "0x1ded84ac90e15", "0x21e07881f9910" ] -======= - "plotIndexes": ["0x1ded84ac90e15", "0x21e07881f9910"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xF7f1dAEc57991db325a4d24Ca72E96a2EdF3683d": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "519666974560053": "0x968233c90" - }, - "plotIndexes": ["0x1d8a2656b8f35"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x1aA6F8B965d692c8162131F98219a6986DD10A83": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "491209036915919": "0x3940f0cff" - }, - "plotIndexes": ["0x1bec08427e4cf"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xF96A38c599D458fDb4BB1Cd6d4f22c9851427c61": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "493962561733636": "0x34f0a749a" - }, - "plotIndexes": ["0x1c1419f064404"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x58fb0ecfb2d2b40ba4e826023f981aa36945aaf9": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "556455242057128": "0x306d3455e" - }, - "plotIndexes": ["0x1fa17d50945a8"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x21D4Df25397446300C02338f334d0D219ABcc9C3": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "556861481023206": "0x3b1242748e", - "531921340528773": "0x8c14ebba1", - "531509716308908": "0x5fd6b724d9", - "556478516642786": "0x592a74b304", - "596005613074562": "0x15b52dbfd8", - "613864088561276": "0x10e7b14970", - "613952906039465": "0x9453c67fd1", - "634295738092098": "0x28830aea06" - }, - "plotIndexes": [ - "0x1fa766ac3f6e6", - "0x1e3c7968cf885", - "0x1e367bfd5d3ac", - "0x1fa1d404f43e2", - "0x21e105ed9f882", - "0x22e4e5ef0667c", - "0x22e630cdf90a9", - "0x240e37c26ca42" - ] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x21754dF1E545e836be345B0F56Cde2D8419a21B2": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "526456157420239": "0x92a885346" - }, - "plotIndexes": ["0x1decf2040bacf"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -232529,7 +219120,6 @@ "plots": { "519666974560053": "0x968233c90" }, -<<<<<<< HEAD "plotIndexes": [ "0x1d8a2656b8f35" ] @@ -232589,35 +219179,6 @@ "plotIndexes": [ "0x1c1419f064404" ] -======= - "plotIndexes": ["0x1f02c3701f8cd"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x54E6E97FAAE412bba0a42a8CCE362d66882Ff529": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "521791325322146": "0x118ad269c8" - }, - "plotIndexes": ["0x1da910297bba2"] } }, "depositAllowances": {}, @@ -232628,33 +219189,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0x76ce7A233804C5f662897bBfc469212d28D11613": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "493720658198961": "0x1d114117ce" - }, - "plotIndexes": ["0x1c1094c7341b1"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xc99c16815c5aEa507c2D8AeB1e69eed4CC8e4E56": { + "0x58fb0ecfb2d2b40ba4e826023f981aa36945aaf9": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -232667,35 +219202,11 @@ "fields": { "0": { "plots": { - "502039772720798": "0x2171a952ee" - }, - "plotIndexes": ["0x1c89a3e50ee9e"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x51b2Adf97650A8D732380f2D04f5922D740122E3": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "491115783635980": "0x27a594" + "556455242057128": "0x306d3455e" }, - "plotIndexes": ["0x1beaacdd3c40c"] + "plotIndexes": [ + "0x1fa17d50945a8" + ] } }, "depositAllowances": {}, @@ -232931,7 +219442,9 @@ "plots": { "556351773854003": "0x84d25c944" }, - "plotIndexes": ["0x1f9ffbdd9c933"] + "plotIndexes": [ + "0x1f9ffbdd9c933" + ] } }, "depositAllowances": {}, @@ -232943,7 +219456,6 @@ "sop": {} }, "0x120Be1406E6B46dDD7878EDC06069C811f608844": { -<<<<<<< HEAD "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -233180,8 +219692,6 @@ "sop": {} }, "0x445fe76afD6f1c8292Bd232D2AA7B67f1a9da96F": { -======= ->>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -233194,10 +219704,11 @@ "fields": { "0": { "plots": { - "556387427914359": "0xfca09b331", - "646143725856011": "0xa75f71a5e" + "577492473102165": "0xb3e6bedd43" }, - "plotIndexes": ["0x1fa080aff9277", "0x24baa0f40e50b"] + "plotIndexes": [ + "0x20d39f1b83f55" + ] } }, "depositAllowances": {}, @@ -233208,7 +219719,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xd14Cb607F99f9c5c9a47D1DEF59a02A3fBbf14Fd": { + "0x2817a8dFe9DCff27449C8C66Fa02e05530859B73": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -233221,9 +219732,8 @@ "fields": { "0": { "plots": { - "538353942308571": "0xb08c89ad5" + "557115190438772": "0x4c24d44944" }, -<<<<<<< HEAD "plotIndexes": [ "0x1fab17d066b74" ] @@ -233287,9 +219797,6 @@ "plotIndexes": [ "0x21a0b6479af0f" ] -======= - "plotIndexes": ["0x1e9a14b7ea6db"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -233315,281 +219822,9 @@ "plots": { "568070700207176": "0x875e281df" }, -<<<<<<< HEAD "plotIndexes": [ "0x204a8444b0c48" ] -======= - "plotIndexes": ["0x204a4f16c66b2"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xAc0D2CB9BC2488Da7Db1dd13321b5d01A0ae90c2": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "593804898539595": "0x30c85d824" - }, - "plotIndexes": ["0x21c0ffa0b184b"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x59D8F21eA46a96d52a4eec72D2B2e7C2bEd0995F": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "568107037724199": "0x2058c8c4c6" - }, - "plotIndexes": ["0x204b0ba2d8e27"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xA8dFD30f66FeE7cC504b4605E9C3f5e27e4a78F7": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "585809012696029": "0x83b0859f5a", - "593094411895687": "0x9301297bcc", - "594950942092362": "0xecb88facc6" - }, - "plotIndexes": ["0x214ca4a1ba3dd", "0x21b6a8dbd4387", "0x21d1acf8fec4a"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x784616aa101D735b21d12Ba102b97fA2C8dE4C9e": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "557474269916507": "0x71ad7bbb01", - "584407516797670": "0x22ca575d6b", - "592354657193833": "0x486f8ed77b" - }, - "plotIndexes": ["0x1fb0517d46d5b", "0x21383fa715ae6", "0x21abe50ec4f69"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x12a2294" - }, - "sop": {} - }, - "0x9336a604077688Ae5bB9e18EbDF305d81d474817": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "568756414668700": "0x3d021c579" - }, - "plotIndexes": ["0x20547ec0f5f9c"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x445fe76afD6f1c8292Bd232D2AA7B67f1a9da96F": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "577492473102165": "0xb3e6bedd43" - }, - "plotIndexes": ["0x20d39f1b83f55"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x2817a8dFe9DCff27449C8C66Fa02e05530859B73": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "557115190438772": "0x4c24d44944" - }, - "plotIndexes": ["0x1fab17d066b74"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xAFE1f61f9848477E45E5c7eF832451e4d1a6f21A": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "577442842692513": "0xb8e33f3b4", - "568256114535784": "0xe1d3c088a", - "594190730526984": "0xe0724ea92" - }, - "plotIndexes": ["0x20d2e63844ba1", "0x204d36fd92d68", "0x21c69cf6c0108"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xB17fC3D59de766b659644241Dba722546E32b163": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "591586186080015": "0x4fae855e2" - }, - "plotIndexes": ["0x21a0b6479af0f"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x676B0Add3De8d340201F3F58F486beFEDCD609cD": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "568070700207176": "0x875e281df" - }, - "plotIndexes": ["0x204a8444b0c48"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -233616,14 +219851,10 @@ "586871081432488": "0x27e1e5da2", "591064164890363": "0x2ff61bf6b" }, -<<<<<<< HEAD "plotIndexes": [ "0x215c1925675a8", "0x21991d99676fb" ] -======= - "plotIndexes": ["0x215c1925675a8", "0x21991d99676fb"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -233649,7 +219880,6 @@ "plots": { "568247857730253": "0x1ec24da9b" }, -<<<<<<< HEAD "plotIndexes": [ "0x204d183b452cd" ] @@ -233883,9 +220113,6 @@ "plotIndexes": [ "0x233a04dad58ab" ] -======= - "plotIndexes": ["0x204d183b452cd"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -233896,7 +220123,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xD0ce08617E88D87696fDB034AF7Cc66f6ae2c203": { + "0x6cE2381Df220609Fa80346E8c5CffF88bA0D6D27": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -233909,7 +220136,6 @@ "fields": { "0": { "plots": { -<<<<<<< HEAD "596237315381223": "0xfc6dffb57b", "599009603400904": "0x1923937352d", "603696952850202": "0x14eff8b569d", @@ -233921,11 +220147,6 @@ "0x2250f266d371a", "0x21f42bf624d62" ] -======= - "593817994165201": "0x55d3dffd9a", - "634004669814871": "0x41ff34aac7" - }, - "plotIndexes": ["0x21c13069a7bd1", "0x2409fb7215857"] } }, "depositAllowances": {}, @@ -233936,140 +220157,7 @@ "internalTokenBalance": {}, "sop": {} }, - "0xBC0A7F1CB55d8f6eAdde498DbFE0FF2f78149A84": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "568772791444757": "0x4d55e8171" - }, - "plotIndexes": ["0x2054bbc312515"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xb3F7DF25CB052052dF6d73d83EdBF6a2238c67de": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "593817993539695": "0x98b62" - }, - "plotIndexes": ["0x21c130690f06f"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x7d3a9a4F82766285102f5C44731b974e6a5F5DD0": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "578265143516312": "0x5fd750844", - "636425945808043": "0x8b96045ca" - }, - "plotIndexes": ["0x20dedd8771c98", "0x242d3766cfcab"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xf9380E9F90aDE257C8F23d53817b33FBbF975a19": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "594649546202924": "0x6dddba1e6" - }, - "plotIndexes": ["0x21cd4a2f79f2c"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xBaD292Dbb933Aea623a3699621901A881E22FfAC": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "594560949667628": "0x14a0c3d800", - "612635280033573": "0x4d9286adc7" - }, - "plotIndexes": ["0x21cc00233c72c", "0x22d30443e4725"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xcdeC732853019E9F287A9Fdf02f21cfd5eFa0436": { + "0xc76b280880686397F7b95AfC72B581b1a52e6Bad": { "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -234082,9 +220170,9 @@ "fields": { "0": { "plots": { - "594250979928986": "0x154ebc8537" + "608869982259746": "0xfdca1291b", + "608803305172730": "0xee9d896d0" }, -<<<<<<< HEAD "plotIndexes": [ "0x229c39701ca22", "0x229b410be2efa" @@ -234521,9 +220609,6 @@ "plotIndexes": [ "0x233a2522250f2" ] -======= - "plotIndexes": ["0x21c77d690eb9a"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -234549,492 +220634,9 @@ "plots": { "594940109425366": "0x285ad6174" }, -<<<<<<< HEAD "plotIndexes": [ "0x21d1849e28ad6" ] -======= - "plotIndexes": ["0x233a04dad58ab"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x6cE2381Df220609Fa80346E8c5CffF88bA0D6D27": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "596237315381223": "0xfc6dffb57b", - "599009603400904": "0x1923937352d", - "603696952850202": "0x14eff8b569d", - "597321492614498": "0x1890b3e6766" - }, - "plotIndexes": ["0x21e46516297e7", "0x220cbcaa0b4c8", "0x2250f266d371a", "0x21f42bf624d62"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xc76b280880686397F7b95AfC72B581b1a52e6Bad": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "608869982259746": "0xfdca1291b", - "608803305172730": "0xee9d896d0" - }, - "plotIndexes": ["0x229c39701ca22", "0x229b410be2efa"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x8316B668C742e5D5CF2C63FC489935d530D97D26": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "602359789978270": "0xf54461a7f9", - "601154487873853": "0xf49b77f635" - }, - "plotIndexes": ["0x223d7d14f029e", "0x222bf2fb4713d"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x7Ccc734e367c8C3D85c8AF7886721433a30bD8e8": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "612615964925164": "0x4bb450f9" - }, - "plotIndexes": ["0x22d2bc4f91cec"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x5925ced0" - }, - "sop": {} - }, - "0xf1608f6796E1b121674036691203C8ecE7516cC2": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "621655357810171": "0xd09dd2b831" - }, - "plotIndexes": ["0x235646ac665fb"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xE043b38b90712bdFf29a2D930047FF9A56660b0F": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "605435936348975": "0x972595880" - }, - "plotIndexes": ["0x226a409eb9b2f"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xaA3eaFD722A326b80F4BF8c1F97445ac57850D5f": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "614943877475358": "0xf4240", - "614943878475358": "0x456863e6a4d" - }, - "plotIndexes": ["0x22f49c75fac1e", "0x22f49c76eee5e"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x3E5ed320828B992Ab80d4A8b3d80b24c0F64b58c": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "595986881853808": "0x45c77bf12" - }, - "plotIndexes": ["0x21e0c02623970"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xb68F761056eF1044eDf8E15646c8412FB86Cf6F2": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "613432974464989": "0x47bb4d1852", - "638225681914516": "0x23b822a3cd", - "638146861484331": "0x125a105169" - }, - "plotIndexes": ["0x22de9fe8957dd", "0x244767f0e9a94", "0x2446424fe492b"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x913c72456D6e3CeEa44Aa49a76B2DF494CED008F": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "619753544044710": "0x12010d6cc1b" - }, - "plotIndexes": ["0x233a99dd750a6"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xDb8D484c46cE6B0bd00f38a51b299EB129928AC0": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "612353902657132": "0xb88e74fd" - }, - "plotIndexes": ["0x22ceec0d83e6c"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x880bba07fA004b948D22f4492808b255d853DFFe": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "612050576784932": "0x9b9ff1eba" - }, - "plotIndexes": ["0x22ca82136be24"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x4065A8cA3fD17A7EE02e23f260FCEefFD4806aF5": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "600737140173301": "0x612bdc8748", - "614721578198335": "0x33c211c6df" - }, - "plotIndexes": ["0x2225e03d7e9f5", "0x22f16054de53f"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x5c666Cb946c856238FE949c78Acb7fF2010f5eE6": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "622600228434741": "0x1854e0ad0" - }, - "plotIndexes": ["0x236406973f335"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xed67448506A9C724E78bF42d5Cf35b4b617cE2F6": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "594872434210527": "0xfc1c1d3f7" - }, - "plotIndexes": ["0x21d088820b6df"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x0EdAc71d6c67BFA7A4dDD79A75967D9c0984F1ce": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "594698791721651": "0x7e874b462" - }, - "plotIndexes": ["0x21ce01a3a9ab3"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xdDd607Ee226b65Ee1292bB2d67682b86cd024930": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "619722209120498": "0x74bb4ffb4" - }, - "plotIndexes": ["0x233a2522250f2"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x8E3f6FecF3C954ef166e9e0CEc56B283e6C729a9": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "594940109425366": "0x285ad6174" - }, - "plotIndexes": ["0x21d1849e28ad6"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -235060,70 +220662,8 @@ "plots": { "622995115594871": "0x159007814" }, - "plotIndexes": ["0x2369c5a8fd477"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x5b8C24B5Fe50cf3A3bDDa9b9954F751788eb50E4": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "622903969411506": "0xb489a9223" - }, - "plotIndexes": ["0x2368721d371b2"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x3c7cFaF3680953f8Ca3C7e319Ac2A4c35870E86c": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "623714888044871": "0xb4a593300", - "629694089075109": "0xb4a5b00fd", - "627708183606040": "0xb4a5b00fd", - "626050365185271": "0xb4a5b00fd", - "633046989282047": "0xb4a5b00fd", - "631376008043778": "0xb4a5b00fd" - }, "plotIndexes": [ - "0x23743f057d147", - "0x23cb4147f19a5", - "0x23ae5b34e7318", - "0x23963b5a0dcf7", - "0x23fc0bcec1aff", - "0x23e3baeaddd02" + "0x2369c5a8fd477" ] } }, @@ -235217,7 +220757,10 @@ "622551358840364": "0xb60dad509", "656378346012897": "0x5d8e32000" }, - "plotIndexes": ["0x2363508991e2c", "0x254f8fe2700e1"] + "plotIndexes": [ + "0x2363508991e2c", + "0x254f8fe2700e1" + ] } }, "depositAllowances": {}, @@ -235243,13 +220786,9 @@ "plots": { "613753403161276": "0x19c55d2bc0" }, -<<<<<<< HEAD "plotIndexes": [ "0x22e3499933abc" ] -======= - "plotIndexes": ["0x22e3499933abc"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -235277,7 +220816,9 @@ "plots": { "622952432141269": "0x6489fbd84" }, - "plotIndexes": ["0x236926a6e03d5"] + "plotIndexes": [ + "0x236926a6e03d5" + ] } }, "depositAllowances": {}, @@ -235303,13 +220844,9 @@ "plots": { "621063660888218": "0x144c70ad36" }, -<<<<<<< HEAD "plotIndexes": [ "0x234daa6e3e09a" ] -======= - "plotIndexes": ["0x234daa6e3e09a"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -235335,13 +220872,9 @@ "plots": { "614589966717050": "0x1475c14425" }, -<<<<<<< HEAD "plotIndexes": [ "0x22ef760a6107a" ] -======= - "plotIndexes": ["0x22ef760a6107a"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -235367,13 +220900,9 @@ "plots": { "612356999000937": "0x360fa424b9" }, -<<<<<<< HEAD "plotIndexes": [ "0x22cef7966b369" ] -======= - "plotIndexes": ["0x22cef7966b369"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -235399,13 +220928,9 @@ "plots": { "596098847062106": "0x1f74314d40" }, -<<<<<<< HEAD "plotIndexes": [ "0x21e261407b85a" ] -======= - "plotIndexes": ["0x21e261407b85a"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -235469,7 +220994,9 @@ "plots": { "632123021912047": "0x78029478" }, - "plotIndexes": ["0x23ee99c2ce7ef"] + "plotIndexes": [ + "0x23ee99c2ce7ef" + ] } }, "depositAllowances": {}, @@ -235497,13 +221024,9 @@ "plots": { "626098857303540": "0x146cc2030" }, -<<<<<<< HEAD "plotIndexes": [ "0x2396efffbddf4" ] -======= - "plotIndexes": ["0x2396efffbddf4"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -235529,13 +221052,9 @@ "plots": { "624730707044871": "0x230dc6fcc0" }, -<<<<<<< HEAD "plotIndexes": [ "0x2383073dfaa07" ] -======= - "plotIndexes": ["0x2383073dfaa07"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -235561,13 +221080,9 @@ "plots": { "634469735314504": "0x83024d0d0" }, -<<<<<<< HEAD "plotIndexes": [ "0x2410bff31b448" ] -======= - "plotIndexes": ["0x2410bff31b448"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -235593,13 +221108,9 @@ "plots": { "636425113945926": "0x31953565" }, -<<<<<<< HEAD "plotIndexes": [ "0x242d344d7c746" ] -======= - "plotIndexes": ["0x242d344d7c746"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -235625,13 +221136,9 @@ "plots": { "643046863279717": "0x76bc5058" }, -<<<<<<< HEAD "plotIndexes": [ "0x248d903dc1665" ] -======= - "plotIndexes": ["0x248d903dc1665"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -235657,13 +221164,9 @@ "plots": { "640246497738027": "0x829814d2" }, -<<<<<<< HEAD "plotIndexes": [ "0x2464d0110fd2b" ] -======= - "plotIndexes": ["0x2464d0110fd2b"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -235691,13 +221194,9 @@ "plots": { "640192401336369": "0xa38742486" }, -<<<<<<< HEAD "plotIndexes": [ "0x2464068ab6831" ] -======= - "plotIndexes": ["0x2464068ab6831"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -235771,13 +221270,9 @@ "plots": { "634589454042581": "0xdf3e1eb52" }, -<<<<<<< HEAD "plotIndexes": [ "0x24127defc85d5" ] -======= - "plotIndexes": ["0x24127defc85d5"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -235803,13 +221298,9 @@ "plots": { "638808515968683": "0x116d4bc6e3" }, -<<<<<<< HEAD "plotIndexes": [ "0x244fe32ac7eab" ] -======= - "plotIndexes": ["0x244fe32ac7eab"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -235915,13 +221406,9 @@ "plots": { "643542781900783": "0x129dd46c" }, -<<<<<<< HEAD "plotIndexes": [ "0x2494c7ae9b7ef" ] -======= - "plotIndexes": ["0x2494c7ae9b7ef"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -236059,13 +221546,9 @@ "plots": { "634779007760082": "0x155cd08f2" }, -<<<<<<< HEAD "plotIndexes": [ "0x241540144b6d2" ] -======= - "plotIndexes": ["0x241540144b6d2"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -236091,13 +221574,9 @@ "plots": { "643524849940607": "0x42cd3ff70" }, -<<<<<<< HEAD "plotIndexes": [ "0x249484e15b87f" ] -======= - "plotIndexes": ["0x249484e15b87f"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -236123,13 +221602,9 @@ "plots": { "643661899835648": "0x22fd71082" }, -<<<<<<< HEAD "plotIndexes": [ "0x2496836e52900" ] -======= - "plotIndexes": ["0x2496836e52900"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -236195,13 +221670,9 @@ "plots": { "641161763710685": "0x149052ee26" }, -<<<<<<< HEAD "plotIndexes": [ "0x247221b2b66dd" ] -======= - "plotIndexes": ["0x247221b2b66dd"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -236227,13 +221698,9 @@ "plots": { "643543094234203": "0x268aedfc" }, -<<<<<<< HEAD "plotIndexes": [ "0x2494c8d878c5b" ] -======= - "plotIndexes": ["0x2494c8d878c5b"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -236259,7 +221726,9 @@ "plots": { "641250084410627": "0x13d2626549" }, - "plotIndexes": ["0x24736ab7e5503"] + "plotIndexes": [ + "0x24736ab7e5503" + ] } }, "depositAllowances": {}, @@ -236285,13 +221754,9 @@ "plots": { "643052207829410": "0xa460ce93" }, -<<<<<<< HEAD "plotIndexes": [ "0x248da426b71a2" ] -======= - "plotIndexes": ["0x248da426b71a2"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -236320,16 +221785,12 @@ "649898706059057": "0x11439c22b0", "649594886309057": "0x11439c22b0" }, -<<<<<<< HEAD "plotIndexes": [ "0x24e86db60ca51", "0x24db7a35df531", "0x24f145583bf31", "0x24ecd987244c1" ] -======= - "plotIndexes": ["0x24e86db60ca51", "0x24db7a35df531", "0x24f145583bf31", "0x24ecd987244c1"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -236357,13 +221818,9 @@ "plots": { "659295737757685": "0x7987c1268" }, -<<<<<<< HEAD "plotIndexes": [ "0x257a040403ff5" ] -======= - "plotIndexes": ["0x257a040403ff5"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -236391,7 +221848,9 @@ "plots": { "647198203663452": "0x962482180" }, - "plotIndexes": ["0x24c9f9307545c"] + "plotIndexes": [ + "0x24c9f9307545c" + ] } }, "depositAllowances": {}, @@ -236418,79 +221877,9 @@ "0": { "plots": { "647768381299006": "0x1aad5fee6" -<<<<<<< HEAD }, "plotIndexes": [ "0x24d245443993e" -======= - }, - "plotIndexes": ["0x24d245443993e"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x6223dd77dd5ED000592d7A8C745D68B2599C640D": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "656226928313897": "0x1d14563e8" - }, - "plotIndexes": ["0x254d5bcf44629"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xdc95f2Ec354b814Fc253846524b13b03be739Cd6": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "654164513469293": "0x56fe022e76", - "661537927845790": "0x7a42b0af04", - "663103266591658": "0x275c29f5d5", - "742559423794395": "0x2ef0ddff06", - "972139314219125": "0x7c4e5ce8d8", - "979431393566237": "0x2f437c4300", - "979634389246237": "0x2540be400" - }, - "plotIndexes": [ - "0x252f58b73336d", - "0x259aa4d31d79e", - "0x25b16c2a793aa", - "0x2a35a96ae0cdb", - "0x37427d27f0875", - "0x37ac9a44b9e1d", - "0x37af8e7c7e11d" ->>>>>>> b689ac329 (feat: update reseed jsons) ] } }, @@ -236502,7 +221891,6 @@ "internalTokenBalance": {}, "sop": {} }, -<<<<<<< HEAD "0x6223dd77dd5ED000592d7A8C745D68B2599C640D": { "roots": "0x0", "stalk": "0x0", @@ -236571,8 +221959,6 @@ "internalTokenBalance": {}, "sop": {} }, -======= ->>>>>>> b689ac329 (feat: update reseed jsons) "0x58e4e9D30Da309624c785069A99709b16276B196": { "roots": "0x0", "stalk": "0x0", @@ -236588,7 +221974,9 @@ "plots": { "656308235880897": "0x236d824fc" }, - "plotIndexes": ["0x254e8ab4349c1"] + "plotIndexes": [ + "0x254e8ab4349c1" + ] } }, "depositAllowances": {}, @@ -236617,13 +222005,9 @@ "plots": { "659328360796765": "0x6ece1ae09" }, -<<<<<<< HEAD "plotIndexes": [ "0x257a7d8bc525d" ] -======= - "plotIndexes": ["0x257a7d8bc525d"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -236649,13 +222033,9 @@ "plots": { "659195405831758": "0x174a7d84f4" }, -<<<<<<< HEAD "plotIndexes": [ "0x25788e4008e4e" ] -======= - "plotIndexes": ["0x25788e4008e4e"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -236682,14 +222062,10 @@ "647831216014808": "0x3af0ea35f9", "647509510720119": "0x3a4888a907" }, -<<<<<<< HEAD "plotIndexes": [ "0x24d32f58145d8", "0x24ce80e600a77" ] -======= - "plotIndexes": ["0x24d32f58145d8", "0x24ce80e600a77"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -236716,14 +222092,10 @@ "659533224957918": "0xa4820614a3", "659358104813670": "0x28c5f95778" }, -<<<<<<< HEAD "plotIndexes": [ "0x257d78b9757de", "0x257aec59e0066" ] -======= - "plotIndexes": ["0x257d78b9757de", "0x257aec59e0066"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -236749,7 +222121,9 @@ "plots": { "660239782498384": "0x174bd55f1" }, - "plotIndexes": ["0x2587c0db3d050"] + "plotIndexes": [ + "0x2587c0db3d050" + ] } }, "depositAllowances": {}, @@ -236777,13 +222151,9 @@ "plots": { "656650962775397": "0x271fef48e0" }, -<<<<<<< HEAD "plotIndexes": [ "0x255387760ad65" ] -======= - "plotIndexes": ["0x255387760ad65"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -236809,7 +222179,9 @@ "plots": { "656434070362897": "0x7adef1d20" }, - "plotIndexes": ["0x25505f7951b11"] + "plotIndexes": [ + "0x25505f7951b11" + ] } }, "depositAllowances": {}, @@ -236835,13 +222207,9 @@ "plots": { "647759835739006": "0x1fd5ae5c0" }, -<<<<<<< HEAD "plotIndexes": [ "0x24d2256e8b37e" ] -======= - "plotIndexes": ["0x24d2256e8b37e"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -236869,7 +222237,9 @@ "plots": { "660239781031041": "0x1663cf" }, - "plotIndexes": ["0x2587c0d9d6c81"] + "plotIndexes": [ + "0x2587c0d9d6c81" + ] } }, "depositAllowances": {}, @@ -236895,13 +222265,9 @@ "plots": { "652130723745575": "0x8060945df0" }, -<<<<<<< HEAD "plotIndexes": [ "0x2511c0422cf27" ] -======= - "plotIndexes": ["0x2511c0422cf27"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -236927,13 +222293,9 @@ "plots": { "647172198157478": "0x60e0c87b6" }, -<<<<<<< HEAD "plotIndexes": [ "0x24c9984facca6" ] -======= - "plotIndexes": ["0x24c9984facca6"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -236961,13 +222323,9 @@ "plots": { "656317745950397": "0x2f7a97514" }, -<<<<<<< HEAD "plotIndexes": [ "0x254eae21b6ebd" ] -======= - "plotIndexes": ["0x254eae21b6ebd"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -236993,111 +222351,9 @@ "plots": { "667453397655544": "0x3dcc0f2e" }, - "plotIndexes": ["0x25f0b9aabdff8"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xDBB493488991F070176367aF5c57De2B8de5aAb1": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "663033553583023": "0xf4cc59c9b" - }, - "plotIndexes": ["0x25b06876f7baf"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xA908Af6fD5E61360e24FcA8C8fa6755786409cCe": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "685836952618602": "0x151bd8935" - }, - "plotIndexes": ["0x26fc3dbef466a"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x375C1DC69F05Ff526498C8aCa48805EeC52861d5": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "685835659103948": "0x4d19779e" - }, - "plotIndexes": ["0x26fc38ed5cecc"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xDd6Ab3d27d63e7Ed502422918BBcc9D881c9F4B7": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "685842618961823": "0x22b6cfe62" - }, - "plotIndexes": ["0x26fc52daccf9f"] + "plotIndexes": [ + "0x25f0b9aabdff8" + ] } }, "depositAllowances": {}, @@ -237121,29 +222377,10 @@ "fields": { "0": { "plots": { -<<<<<<< HEAD "663033553583023": "0xf4cc59c9b" }, "plotIndexes": [ "0x25b06876f7baf" -======= - "688356208269952": "0x4aba54745d", - "688037856465588": "0x4a1f3f07cc", - "664908507938608": "0x850db4e2f0", - "668086557908591": "0xa0ad2a5500", - "687964932466621": "0x10fa9beaf7", - "665479968547360": "0x4fc48d2200", - "667884722593831": "0x2efe527e48" - }, - "plotIndexes": [ - "0x2720e6b45da80", - "0x271c44c06d2b4", - "0x25cbb136c7f30", - "0x25f9f05f69e6f", - "0x271b3516ae7bd", - "0x25d4021216220", - "0x25f7007a42027" ->>>>>>> b689ac329 (feat: update reseed jsons) ] } }, @@ -237155,11 +222392,7 @@ "internalTokenBalance": {}, "sop": {} }, -<<<<<<< HEAD "0xA908Af6fD5E61360e24FcA8C8fa6755786409cCe": { -======= - "0x60Ac0b2f9760b24CcD0C6b03d2b9f2E19c283FF9": { ->>>>>>> b689ac329 (feat: update reseed jsons) "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -237172,7 +222405,6 @@ "fields": { "0": { "plots": { -<<<<<<< HEAD "685836952618602": "0x151bd8935" }, "plotIndexes": [ @@ -237302,11 +222534,6 @@ "plotIndexes": [ "0x263e9369d1c07" ] -======= - "672803248217095": "0x81e993da6" - }, - "plotIndexes": ["0x263e9369d1c07"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -237368,86 +222595,9 @@ "plots": { "685677656801301": "0x3ae689fde" }, - "plotIndexes": ["0x26f9ec52a0015"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xb2dDD631015D5AA8edcbD38dD9bfa0ca8a7f109e": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "663808218829746": "0x1163e2a2de", - "663882909070992": "0xbf9b829ffb" - }, - "plotIndexes": ["0x25bbae51513b2", "0x25bcc48f7b690"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xDF2501f4181Cd63D41ECE0F4EDcf722eEAd58EbD": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "662063032731298": "0x7f46a1d5db" - }, - "plotIndexes": ["0x25a248fe286a2"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x7438CA839eDcCDA1CA75Fc1fD2b84f6c59D2DeC6": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "663099266111562": "0xee727b60" - }, - "plotIndexes": ["0x25b15d435184a"] + "plotIndexes": [ + "0x26f9ec52a0015" + ] } }, "depositAllowances": {}, @@ -237615,13 +222765,9 @@ "plots": { "692168843768664": "0x2b15d3b18" }, -<<<<<<< HEAD "plotIndexes": [ "0x275861e0eb358" ] -======= - "plotIndexes": ["0x275861e0eb358"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -237649,13 +222795,9 @@ "plots": { "692181315084066": "0x2f9af998" }, -<<<<<<< HEAD "plotIndexes": [ "0x275890567df22" ] -======= - "plotIndexes": ["0x275890567df22"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -237683,13 +222825,9 @@ "plots": { "693862296947457": "0x105f7fe1e" }, -<<<<<<< HEAD "plotIndexes": [ "0x2771067bb8b01" ] -======= - "plotIndexes": ["0x2771067bb8b01"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -237715,13 +222853,9 @@ "plots": { "694033329648897": "0x18101143e" }, -<<<<<<< HEAD "plotIndexes": [ "0x277383a137501" ] -======= - "plotIndexes": ["0x277383a137501"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -237747,7 +222881,9 @@ "plots": { "692923732371787": "0x4e559b4e" }, - "plotIndexes": ["0x27635e0eca94b"] + "plotIndexes": [ + "0x27635e0eca94b" + ] } }, "depositAllowances": {}, @@ -237775,85 +222911,10 @@ "696555237254531": "0x184272bc1", "828436629940747": "0x9951ca26" }, -<<<<<<< HEAD "plotIndexes": [ "0x276f8184871d2", "0x27983677ba583", "0x2f1756f0bea0b" -======= - "plotIndexes": ["0x276f8184871d2", "0x27983677ba583", "0x2f1756f0bea0b"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x7a1DbFc4a4294a08c9701B679A2F1038EA45a72b": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "692925046604953": "0x55e16ba3" - }, - "plotIndexes": ["0x276362f424499"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x122de1514670141D4c22e5675010B6D65386a9F6": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "694574785077846": "0x14940a4d28", - "695196582394395": "0xd4352e609", - "695183279638366": "0x14c7594a5", - "695337036890007": "0xb8944ad52", - "709442632657024": "0x16634ffdc", - "729443134053802": "0x3946b97ce", - "738623048174838": "0x40b163f94", - "740877182108564": "0x8b62ebf8", - "736215587653365": "0x104150b6d8", - "803330678270578": "0xb2f6504df" - }, - "plotIndexes": [ - "0x277b64b55a256", - "0x278471157ba1b", - "0x27843f86fc75e", - "0x27867c5153f97", - "0x2853bfc1ba880", - "0x2976cb6e39daa", - "0x29fc61468ccf6", - "0x2a1d2e9430394", - "0x29d958c9486f5", - "0x2da9fffb72a72" ->>>>>>> b689ac329 (feat: update reseed jsons) ] } }, @@ -237865,7 +222926,6 @@ "internalTokenBalance": {}, "sop": {} }, -<<<<<<< HEAD "0x7a1DbFc4a4294a08c9701B679A2F1038EA45a72b": { "roots": "0x0", "stalk": "0x0", @@ -237940,8 +223000,6 @@ "internalTokenBalance": {}, "sop": {} }, -======= ->>>>>>> b689ac329 (feat: update reseed jsons) "0x8C93ea0DDaAa29b053e935Ff2AcD6D888272470b": { "roots": "0x0", "stalk": "0x0", @@ -237995,13 +223053,9 @@ "plots": { "694170873964491": "0x2572bc4c" }, -<<<<<<< HEAD "plotIndexes": [ "0x27758405b27cb" ] -======= - "plotIndexes": ["0x27758405b27cb"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -238027,13 +223081,9 @@ "plots": { "695792940661609": "0x4a817c800" }, -<<<<<<< HEAD "plotIndexes": [ "0x278d1eb10bb69" ] -======= - "plotIndexes": ["0x278d1eb10bb69"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -238059,13 +223109,9 @@ "plots": { "695610864358308": "0xe41ba79c" }, -<<<<<<< HEAD "plotIndexes": [ "0x278a78678d3a4" ] -======= - "plotIndexes": ["0x278a78678d3a4"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -238092,14 +223138,10 @@ "695628448981609": "0x445c000", "697932690524647": "0x2b4662f4" }, -<<<<<<< HEAD "plotIndexes": [ "0x278ab9e98e269", "0x27ac41e1889e7" ] -======= - "plotIndexes": ["0x278ab9e98e269", "0x27ac41e1889e7"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -238128,16 +223170,12 @@ "803977000488083": "0x547984d0", "803978417738083": "0x547984d0" }, -<<<<<<< HEAD "plotIndexes": [ "0x278a2d3273cb9", "0x2a20a16d540c4", "0x2db367b858c93", "0x2db36cfff1163" ] -======= - "plotIndexes": ["0x278a2d3273cb9", "0x2a20a16d540c4", "0x2db367b858c93", "0x2db36cfff1163"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -238163,7 +223201,9 @@ "plots": { "695901977229816": "0x108cda1" }, - "plotIndexes": ["0x278eb4e26b9f8"] + "plotIndexes": [ + "0x278eb4e26b9f8" + ] } }, "depositAllowances": {}, @@ -238191,7 +223231,9 @@ "plots": { "695886648382448": "0x401889f0" }, - "plotIndexes": ["0x278e7bc7b13f0"] + "plotIndexes": [ + "0x278e7bc7b13f0" + ] } }, "depositAllowances": {}, @@ -238203,8 +223245,6 @@ "sop": {} }, "0x7A1184786066077022F671957299A685b2850BD6": { -<<<<<<< HEAD -======= "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -238220,77 +223260,7 @@ "697072832177245": "0x1f4c1505", "697117243021141": "0x202401924" }, - "plotIndexes": ["0x279fbea8b645d", "0x27a0641a31755"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xe78483c03249C1D5bb9687f3A95597f0c6360b84": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "697856064607657": "0x6fc23ac00" - }, - "plotIndexes": ["0x27ab246d5d5a9"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x172edd47" - }, - "sop": {} - }, - "0x90777294a457DDe6F7d297F66cCf30e1aD728997": { ->>>>>>> b689ac329 (feat: update reseed jsons) - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "696995360461084": "0x707de415", - "697136625622211": "0x2a843f6f8", - "697053271972969": "0x14eee5300", - "697062746622554": "0x1bd54e62", - "697169223382459": "0x1aa8ad09a", - "697073357257058": "0x2a50a0d9c", - "697042806708021": "0x1236f63af", - "697084716091134": "0x216595c9e", - "697148038583227": "0x13d2d8376", - "697165199164808": "0xefdcb033", - "696979964509301": "0x19dd0edb4", - "696994769069974": "0x233fe986", - "697153359943473": "0x177530902", - "701618207425246": "0x5d5dc062c", - "701643270228234": "0x978d6eb3a" - }, "plotIndexes": [ -<<<<<<< HEAD "0x279fbea8b645d", "0x27a0641a31755" ] @@ -238364,8 +223334,6 @@ "701643270228234": "0x978d6eb3a" }, "plotIndexes": [ -======= ->>>>>>> b689ac329 (feat: update reseed jsons) "0x279e9e0ded11c", "0x27a0ac4ee1cc3", "0x279f75caa5c69", @@ -238381,7 +223349,6 @@ "0x27a0eaa5f9731", "0x27e1e380582de", "0x27e240de1890a" -<<<<<<< HEAD ] } }, @@ -238470,8 +223437,6 @@ }, "plotIndexes": [ "0x27ac9357dea1a" -======= ->>>>>>> b689ac329 (feat: update reseed jsons) ] } }, @@ -238498,7 +223463,6 @@ "plots": { "697695869212688": "0x235663f839" }, -<<<<<<< HEAD "plotIndexes": [ "0x27a8cfa721810" ] @@ -238614,194 +223578,6 @@ "plotIndexes": [ "0x27b1477b4c0d0" ] -======= - "plotIndexes": ["0x27ab050d61049"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0x1BEA054dddBca12889e07B3E076f511Bf1d27543": "0x14a093a" - }, - "sop": {} - }, - "0xDb22E2AC346617C2a7e20F5F0a49009F679cEED9": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "698258564525194": "0x154a8cd", - "704172791572212": "0x1c985931" - }, - "plotIndexes": ["0x27b0ffdb32c8a", "0x28071011a26f4"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x4B8734cDa37c4bB97Ae9e2dcFD1f6E6DB9Dc461e": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "697954557880858": "0x4b2440f1" - }, - "plotIndexes": ["0x27ac9357dea1a"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x9FbCB5a7d1132bF96E72268C24ef29b7433f7402": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "697695869212688": "0x235663f839" - }, - "plotIndexes": ["0x27a8cfa721810"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x326481a3b0C792Cc7DF1df0c8e76490B5ccd7031": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "697462003533001": "0x36737b1347" - }, - "plotIndexes": ["0x27a5686f704c9"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x8Fc6F10C4476bEe6D5b5dcb7b7EB21EA99e7cF2E": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "698086181129630": "0x1a74285f3" - }, - "plotIndexes": ["0x27ae7dad94d9e"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x6eBDbCAcfFDA2F78Be2B66395EE852DBF104E83C": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "697886064607657": "0x54883e948" - }, - "plotIndexes": ["0x27ab942f981a9"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x3A529A643e5b89555712B02e911AEC6add0d3188": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "698277791318224": "0x1107a76d" - }, - "plotIndexes": ["0x27b1477b4c0d0"] } }, "depositAllowances": {}, @@ -238829,7 +223605,9 @@ "plots": { "701581145085419": "0x8a1166cf3" }, - "plotIndexes": ["0x27e1596ef15eb"] + "plotIndexes": [ + "0x27e1596ef15eb" + ] } }, "depositAllowances": {}, @@ -238856,14 +223634,10 @@ "699405441346617": "0x13d81156b", "699271005074756": "0x5567e76" }, -<<<<<<< HEAD "plotIndexes": [ "0x27c1b04e2ac39", "0x27bfbb7dbf544" ] -======= - "plotIndexes": ["0x27c1b04e2ac39", "0x27bfbb7dbf544"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -238933,7 +223707,9 @@ "plots": { "702657437444244": "0x62741a8" }, - "plotIndexes": ["0x27f102ef52894"] + "plotIndexes": [ + "0x27f102ef52894" + ] } }, "depositAllowances": {}, @@ -239093,178 +223869,8 @@ "plots": { "704978331050700": "0x18c8ac50b" }, - "plotIndexes": ["0x2812c8eff22cc"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xDdBee81969465Bf34C390bdbebb51693aa60872A": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "704205655117520": "0x129717bb9", - "705488811259829": "0x1e29d8cdd", - "705425628545624": "0x2593d12cc", - "705329714382930": "0x1f89b763d", - "705391462535304": "0xd3fddf00", - "705338392776362": "0x1f8629f14", - "705821777920352": "0x28c594c75", - "708051734339483": "0x2f2550916", - "707764396453467": "0xcafe2d8f", - "707742863600211": "0x48544753", - "707744077083046": "0x1884ba5cc", - "707961290879052": "0x2399c9e20", - "707750658709362": "0x2031a05ce", - "705832722517461": "0x1a3c7caa5", - "707842595017590": "0x18e37f840", - "707952799836604": "0x1ef89c1f0", - "707930543676958": "0x22dbb59ac", - "707880777724785": "0x18daea400", - "707919740645652": "0x10c5f46a0", - "708081968129614": "0x32f6cd144", - "705730439516801": "0x388e6e585", - "705704703646383": "0x1a497bea7", - "708527392045696": "0x68db926e", - "708334042048997": "0x10eb5f1cd", - "708934865698884": "0x3210c907d", - "708583377718030": "0x10bb43ee2", - "708641764976217": "0x238f1e8d3", - "708402870339846": "0x3b0e00bd8", - "708691820417569": "0x196e0e755", - "708486177656200": "0xf7a09492", - "708529151266030": "0x3baf78ccc", - "708140759203304": "0x3da9b1b20", - "708651444037897": "0x12baf5d82", - "708418722714846": "0x4efec8788", - "708698646706550": "0x281db57c8", - "708095822174912": "0x1bc937e30", - "708554206703530": "0x34c6496c4", - "709710243864014": "0x2e9992861", - "709688339552863": "0x3327247a4", - "709654242636632": "0x2c65cdc7a", - "709870314867704": "0x21e2f0e8d", - "709734977740006": "0x18350c3d0", - "709666192852147": "0x1542b86e3", - "709492513851051": "0x337889bda", - "709678554276790": "0x2473f76a9", - "709671899958166": "0x18ca0d820", - "709977485640084": "0x990ccbcd4", - "711260418189665": "0x455010780", - "710844935768367": "0x3c8973242", - "710903226562975": "0x582deb9e0", - "711196004355719": "0x921f476b8", - "710494268790118": "0x7d1963adf", - "711348151871048": "0x6eb49c08", - "710460867868243": "0x7c6d99f13", - "710834506069250": "0x26da8942d", - "712856258402101": "0x1e51250700", - "711718808016445": "0xe15390300", - "713215936840483": "0x149bedab5", - "712478227177567": "0xd55cb85f", - "715899465190677": "0x9334f7a0", - "716466017242076": "0x21af9ca740", - "711627994076332": "0xbcb8c2680", - "714727913469225": "0x124d500467", - "713120110487243": "0xe1af2a58", - "716132397750173": "0x2603d9a92d", - "714990004106503": "0x26cad7d660", - "711848288194577": "0x8086f796", - "715333455019979": "0x23348e5b00", - "712749505526426": "0x187739ece0", - "715484660619979": "0xa980af46", - "715158664546867": "0x2855e89e00", - "714808266664085": "0x29f067e5c0", - "716768803489169": "0xc41c01556" - }, "plotIndexes": [ - "0x28078a7ec0ed0", - "0x281a369fcf7b5", - "0x28194b4014258", - "0x2817e5f134852", - "0x2818cbf8d5088", - "0x2818064590eaa", - "0x281f0f0590160", - "0x283f8241b9f9b", - "0x283b53d6f6e5b", - "0x283b039fa2a53", - "0x283b0824e71a6", - "0x283e31541f04c", - "0x283b20a9a1772", - "0x281f37cb24dd5", - "0x283c7726ed376", - "0x283e11b26e9bc", - "0x283dbec94de1e", - "0x283d0564cb371", - "0x283d968abb114", - "0x283ff2e2ea64e", - "0x281dbac279281", - "0x281d5ae2d5aaf", - "0x28466e3843a80", - "0x28439def569e5", - "0x284c5c2d6c044", - "0x28473ec85cb0e", - "0x2848184aca659", - "0x28449e571c906", - "0x2848d2c361221", - "0x2845d4af28d88", - "0x284674c5fccee", - "0x2840cde673de8", - "0x28483c5976909", - "0x2844d9651d4de", - "0x2848ec316f976", - "0x2840267f29ac0", - "0x2846d21cb6faa", - "0x2857a4afa9dce", - "0x2857531615a5f", - "0x2856d410bb358", - "0x2859f8ff44bf8", - "0x285800d3b9ce6", - "0x28570095584b3", - "0x28547994246ab", - "0x28572ea21e3b6", - "0x285715d810b96", - "0x285b883d48194", - "0x286e33891a961", - "0x286827be3092f", - "0x286900e49f99f", - "0x286d439348e87", - "0x28630d6819566", - "0x286f7a5e76648", - "0x286290fa7f653", - "0x286800e3a7502", - "0x28856c80ed735", - "0x2874df2bb563d", - "0x288aa86904323", - "0x287fec3a4205f", - "0x28b1b55514d15", - "0x28b9f3e738bdc", - "0x28738cdcc94ac", - "0x28a0a8f64b529", - "0x2889436de26cb", - "0x28b51912e179d", - "0x28a4795367507", - "0x2876c185a1011", - "0x28a978c7b7fcb", - "0x2883ded173a9a", - "0x28abac109dacb", - "0x28a6eda288a33", - "0x28a1d44d12895", - "0x28be5bdeb0591" + "0x2812c8eff22cc" ] } }, @@ -239276,7 +223882,6 @@ "internalTokenBalance": {}, "sop": {} }, -<<<<<<< HEAD "0xDdBee81969465Bf34C390bdbebb51693aa60872A": { "roots": "0x0", "stalk": "0x0", @@ -239449,8 +224054,6 @@ "internalTokenBalance": {}, "sop": {} }, -======= ->>>>>>> b689ac329 (feat: update reseed jsons) "0xDa90d355b1bd4d01F6124fEE7669090d4cbD5778": { "roots": "0x0", "stalk": "0x0", @@ -239466,13 +224069,9 @@ "plots": { "704798591975267": "0x7d37f38f" }, -<<<<<<< HEAD "plotIndexes": [ "0x28102b5b67f63" ] -======= - "plotIndexes": ["0x28102b5b67f63"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -239498,13 +224097,9 @@ "plots": { "704234841656996": "0xd0e26d20" }, -<<<<<<< HEAD "plotIndexes": [ "0x2807f73934ea4" ] -======= - "plotIndexes": ["0x2807f73934ea4"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -239530,13 +224125,9 @@ "plots": { "704778664446188": "0x1d943c31" }, -<<<<<<< HEAD "plotIndexes": [ "0x280fe11f088ec" ] -======= - "plotIndexes": ["0x280fe11f088ec"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -239562,7 +224153,9 @@ "plots": { "705514288315159": "0x7c813251" }, - "plotIndexes": ["0x281a95889fb17"] + "plotIndexes": [ + "0x281a95889fb17" + ] } }, "depositAllowances": {}, @@ -239588,7 +224181,9 @@ "plots": { "705295151950217": "0x7a35392d" }, - "plotIndexes": ["0x2817652fe6989"] + "plotIndexes": [ + "0x2817652fe6989" + ] } }, "depositAllowances": {}, @@ -239616,7 +224211,9 @@ "plots": { "707899542084080": "0x5eaad611" }, - "plotIndexes": ["0x283d4b4be19f0"] + "plotIndexes": [ + "0x283d4b4be19f0" + ] } }, "depositAllowances": {}, @@ -239642,7 +224239,6 @@ "plots": { "707626849717109": "0x13b2569f80" }, -<<<<<<< HEAD "plotIndexes": [ "0x283953702cb75" ] @@ -239734,9 +224330,6 @@ "plotIndexes": [ "0x28458150b314e" ] -======= - "plotIndexes": ["0x283953702cb75"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -239762,91 +224355,9 @@ "plots": { "708634633516030": "0xa99ee5b" }, -<<<<<<< HEAD "plotIndexes": [ "0x2847fdb9b33fe" ] -======= - "plotIndexes": ["0x284402df4f87d", "0x2897379f51b53", "0x28c614d21e9bc"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xA8D9Ff69724C66dA3fD239C2D5459BD924372d85": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "708651373061258": "0x43b047f" - }, - "plotIndexes": ["0x28483c15c648a"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x579De8E7dA10b45b43a24aC21dA8b1a3a9452D64": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "708463798464846": "0x535e75c3a" - }, - "plotIndexes": ["0x28458150b314e"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xf454a5753C12d990A79A69729d1B541a526cD7F5": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "708634633516030": "0xa99ee5b" - }, - "plotIndexes": ["0x2847fdb9b33fe"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -239872,7 +224383,9 @@ "plots": { "709239583276736": "0x8afd15a7" }, - "plotIndexes": ["0x2850cb56bfec0"] + "plotIndexes": [ + "0x2850cb56bfec0" + ] } }, "depositAllowances": {}, @@ -239898,33 +224411,9 @@ "plots": { "709216912697001": "0x19f47a28f" }, - "plotIndexes": ["0x285076e2666a9"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xEa8f1607df5fd7e54BDd76a8Cb9dc4B0970089bD": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x42b", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "709272520931976": "0xfb98b5" - }, - "plotIndexes": ["0x2851460a8ba88"] + "plotIndexes": [ + "0x285076e2666a9" + ] } }, "depositAllowances": {}, @@ -239978,33 +224467,9 @@ "plots": { "709189528114459": "0x67439f4" }, - "plotIndexes": ["0x285010de6d51b"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x1298751f99f2f715178Cc58fB3779C55e91C26bC": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "709666160880200": "0x1e7da6b" - }, - "plotIndexes": ["0x28570076daa48"] + "plotIndexes": [ + "0x285010de6d51b" + ] } }, "depositAllowances": {}, @@ -240058,13 +224523,9 @@ "plots": { "714015471329582": "0xecb6cba25" }, -<<<<<<< HEAD "plotIndexes": [ "0x28964ae88612e" ] -======= - "plotIndexes": ["0x28964ae88612e"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -240142,7 +224603,9 @@ "plots": { "717854210663826": "0x40a4bdb8" }, - "plotIndexes": ["0x28ce2753a2592"] + "plotIndexes": [ + "0x28ce2753a2592" + ] } }, "depositAllowances": {}, @@ -240218,13 +224681,9 @@ "plots": { "718795450032336": "0x1176592e00" }, -<<<<<<< HEAD "plotIndexes": [ "0x28dbd9b7720d0" ] -======= - "plotIndexes": ["0x28dbd9b7720d0"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -240252,15 +224711,11 @@ "824974359951649": "0x721a66ad6", "829209600931636": "0x43b7cb" }, -<<<<<<< HEAD "plotIndexes": [ "0x291a4f47d087d", "0x2ee4f4fac7921", "0x2f22967b53734" ] -======= - "plotIndexes": ["0x291a4f47d087d", "0x2ee4f4fac7921", "0x2f22967b53734"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -240322,7 +224777,9 @@ "plots": { "729656390040828": "0x2a7f35e52" }, - "plotIndexes": ["0x2979e5defbcfc"] + "plotIndexes": [ + "0x2979e5defbcfc" + ] } }, "depositAllowances": {}, @@ -240348,7 +224805,9 @@ "plots": { "728214888648499": "0x1b4ffb9fc" }, - "plotIndexes": ["0x2964ebdc20f33"] + "plotIndexes": [ + "0x2964ebdc20f33" + ] } }, "depositAllowances": {}, @@ -240376,13 +224835,9 @@ "plots": { "731285511699802": "0x3e131ec2b" }, -<<<<<<< HEAD "plotIndexes": [ "0x29919ad277d5a" ] -======= - "plotIndexes": ["0x29919ad277d5a"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -240408,7 +224863,9 @@ "plots": { "738007970284137": "0x17e807dd" }, - "plotIndexes": ["0x29f36dee90269"] + "plotIndexes": [ + "0x29f36dee90269" + ] } }, "depositAllowances": {}, @@ -240436,13 +224893,9 @@ "plots": { "737675246086875": "0x2ee94e5" }, -<<<<<<< HEAD "plotIndexes": [ "0x29ee96700aadb" ] -======= - "plotIndexes": ["0x29ee96700aadb"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -240468,7 +224921,9 @@ "plots": { "738895794225566": "0xa1aced" }, - "plotIndexes": ["0x2a0059557419e"] + "plotIndexes": [ + "0x2a0059557419e" + ] } }, "depositAllowances": {}, @@ -240497,16 +224952,12 @@ "742999522640359": "0xc9a9152", "742999734096697": "0xc455d24" }, -<<<<<<< HEAD "plotIndexes": [ "0x2a5782a1ff18e", "0x2a3dd45fab12a", "0x2a3c10e9d81e7", "0x2a3c11b381339" ] -======= - "plotIndexes": ["0x2a5782a1ff18e", "0x2a3dd45fab12a", "0x2a3c10e9d81e7", "0x2a3c11b381339"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -240532,7 +224983,9 @@ "plots": { "742768891113037": "0x8f1951023" }, - "plotIndexes": ["0x2a38b5be7ae4d"] + "plotIndexes": [ + "0x2a38b5be7ae4d" + ] } }, "depositAllowances": {}, @@ -240558,7 +225011,9 @@ "plots": { "741114169868555": "0xa31b5f0" }, - "plotIndexes": ["0x2a20a16d5410b"] + "plotIndexes": [ + "0x2a20a16d5410b" + ] } }, "depositAllowances": {}, @@ -240585,7 +225040,10 @@ "743141732275121": "0xdb4b72d", "787609148721716": "0x1de08170" }, - "plotIndexes": ["0x2a3e22af853b1", "0x2cc538b880a34"] + "plotIndexes": [ + "0x2a3e22af853b1", + "0x2cc538b880a34" + ] } }, "depositAllowances": {}, @@ -240614,14 +225072,10 @@ "741947593267708": "0x9ec0ae01", "741688854260083": "0x15d7c70b" }, -<<<<<<< HEAD "plotIndexes": [ "0x2a2cc22bd19fc", "0x2a28fe4b12973" ] -======= - "plotIndexes": ["0x2a2cc22bd19fc", "0x2a28fe4b12973"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -240650,14 +225104,10 @@ "743974165800386": "0x2771f4", "802847562379845": "0x6a9319e" }, -<<<<<<< HEAD "plotIndexes": [ "0x2a4a3fbdfe5c2", "0x2da2f83c3b245" ] -======= - "plotIndexes": ["0x2a4a3fbdfe5c2", "0x2da2f83c3b245"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -240685,13 +225135,9 @@ "plots": { "741234744629846": "0x365f002f" }, -<<<<<<< HEAD "plotIndexes": [ "0x2a22629a61a56" ] -======= - "plotIndexes": ["0x2a22629a61a56"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -240721,15 +225167,11 @@ "790894542941892": "0xadc2deee3", "787516426212822": "0x1596b1345e" }, -<<<<<<< HEAD "plotIndexes": [ "0x2cc069e33dad2", "0x2cf507c496ec4", "0x2cc3df4d6d5d6" ] -======= - "plotIndexes": ["0x2cc069e33dad2", "0x2cf507c496ec4", "0x2cc3df4d6d5d6"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -240791,7 +225233,9 @@ "plots": { "781580532443581": "0xa2ba82d2e" }, - "plotIndexes": ["0x2c6d7e5ffe9bd"] + "plotIndexes": [ + "0x2c6d7e5ffe9bd" + ] } }, "depositAllowances": {}, @@ -240819,13 +225263,9 @@ "plots": { "801772970204304": "0x121bbcb47" }, -<<<<<<< HEAD "plotIndexes": [ "0x2d93551145c90" ] -======= - "plotIndexes": ["0x2d93551145c90"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -240851,7 +225291,6 @@ "plots": { "802848328820547": "0x1660f0" }, -<<<<<<< HEAD "plotIndexes": [ "0x2da2fb172a743" ] @@ -240887,9 +225326,6 @@ "0x2dc8a70947bcc", "0x2dc924bf4742d" ] -======= - "plotIndexes": ["0x2da2fb172a743"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -240913,7 +225349,6 @@ "fields": { "0": { "plots": { -<<<<<<< HEAD "805404344665518": "0x1dc1979a9", "804723861648793": "0xdcab64af", "805912145565172": "0x151f88fb2" @@ -240923,41 +225358,6 @@ "0x2dbe45fea7599", "0x2dcf90b2815f4" ] -======= - "805425939868589": "0x2998a901f", - "805437105798092": "0x7db5ff861", - "805470851068973": "0x3eda73e32" - }, - "plotIndexes": ["0x2dc87d709ebad", "0x2dc8a70947bcc", "0x2dc924bf4742d"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x54e7efC4817cEeE97b9C9a8E87d1cC6D3ec4D2E1": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "805404344665518": "0x1dc1979a9", - "804723861648793": "0xdcab64af", - "805912145565172": "0x151f88fb2" - }, - "plotIndexes": ["0x2dc82cfdd45ae", "0x2dbe45fea7599", "0x2dcf90b2815f4"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -240983,7 +225383,9 @@ "plots": { "821672492311173": "0x2540be4000" }, - "plotIndexes": ["0x2eb4e8906a285"] + "plotIndexes": [ + "0x2eb4e8906a285" + ] } }, "depositAllowances": {}, @@ -241009,7 +225411,9 @@ "plots": { "824965612570458": "0x35815cf0" }, - "plotIndexes": ["0x2ee4d464a075a"] + "plotIndexes": [ + "0x2ee4d464a075a" + ] } }, "depositAllowances": {}, @@ -241037,7 +225441,9 @@ "plots": { "825422040281690": "0x137b3e8cb" }, - "plotIndexes": ["0x2eeb78b80325a"] + "plotIndexes": [ + "0x2eeb78b80325a" + ] } }, "depositAllowances": {}, @@ -241065,7 +225471,9 @@ "plots": { "825246129641277": "0x12eea13b4" }, - "plotIndexes": ["0x2ee8e9668d73d"] + "plotIndexes": [ + "0x2ee8e9668d73d" + ] } }, "depositAllowances": {}, @@ -241093,13 +225501,9 @@ "plots": { "825245695255323": "0x19e43422" }, -<<<<<<< HEAD "plotIndexes": [ "0x2ee8e7c84a31b" ] -======= - "plotIndexes": ["0x2ee8e7c84a31b"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -241125,7 +225529,9 @@ "plots": { "828431390478544": "0x1384bd93b" }, - "plotIndexes": ["0x2f17436c010d0"] + "plotIndexes": [ + "0x2f17436c010d0" + ] } }, "depositAllowances": {}, @@ -241154,14 +225560,10 @@ "828636097593870": "0xc7674ac7", "847955778737101": "0xa52a3088b" }, -<<<<<<< HEAD "plotIndexes": [ "0x2f1a3e03ec20e", "0x3033616fa13cd" ] -======= - "plotIndexes": ["0x2f1a3e03ec20e", "0x3033616fa13cd"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -241187,13 +225589,9 @@ "plots": { "828255388496272": "0x160f39170" }, -<<<<<<< HEAD "plotIndexes": [ "0x2f14b3c36f190" ] -======= - "plotIndexes": ["0x2f14b3c36f190"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -241219,7 +225617,9 @@ "plots": { "828811561503065": "0x55351ec9b" }, - "plotIndexes": ["0x2f1ccbab58959"] + "plotIndexes": [ + "0x2f1ccbab58959" + ] } }, "depositAllowances": {}, @@ -241245,7 +225645,9 @@ "plots": { "828771792470419": "0x942690090" }, - "plotIndexes": ["0x2f1c3784a4193"] + "plotIndexes": [ + "0x2f1c3784a4193" + ] } }, "depositAllowances": {}, @@ -241271,13 +225673,9 @@ "plots": { "828995077896677": "0x2824cb600" }, -<<<<<<< HEAD "plotIndexes": [ "0x2f1f7752379e5" ] -======= - "plotIndexes": ["0x2f1f7752379e5"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -241303,13 +225701,9 @@ "plots": { "829479271484636": "0x8113f4a52" }, -<<<<<<< HEAD "plotIndexes": [ "0x2f26831534cdc" ] -======= - "plotIndexes": ["0x2f26831534cdc"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -241337,13 +225731,9 @@ "plots": { "829693924992790": "0x8bbd993" }, -<<<<<<< HEAD "plotIndexes": [ "0x2f29a2babe716" ] -======= - "plotIndexes": ["0x2f29a2babe716"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -241370,14 +225760,10 @@ "829455831521265": "0x265d78ca", "973035905649934": "0x598774cef" }, -<<<<<<< HEAD "plotIndexes": [ "0x2f262bc31d7f1", "0x374f893828d0e" ] -======= - "plotIndexes": ["0x2f262bc31d7f1", "0x374f893828d0e"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -241407,7 +225793,11 @@ "921379066108433": "0x8523284c4", "929384439310039": "0x14e2d1cfe9" }, - "plotIndexes": ["0x2f2a2c154845f", "0x345fd47f05a11", "0x34d452d5d66d7"] + "plotIndexes": [ + "0x2f2a2c154845f", + "0x345fd47f05a11", + "0x34d452d5d66d7" + ] } }, "depositAllowances": {}, @@ -241435,7 +225825,9 @@ "plots": { "829846521525914": "0x989680" }, - "plotIndexes": ["0x2f2bdb322369a"] + "plotIndexes": [ + "0x2f2bdb322369a" + ] } }, "depositAllowances": {}, @@ -241461,7 +225853,9 @@ "plots": { "829914412604502": "0xaa0d5340" }, - "plotIndexes": ["0x2f2cd81c1dc56"] + "plotIndexes": [ + "0x2f2cd81c1dc56" + ] } }, "depositAllowances": {}, @@ -241489,7 +225883,9 @@ "plots": { "832058901590534": "0x808fbae75" }, - "plotIndexes": ["0x2f4c0cf42f206"] + "plotIndexes": [ + "0x2f4c0cf42f206" + ] } }, "depositAllowances": {}, @@ -241519,15 +225915,11 @@ "835708527309577": "0x418e5312d75", "832269218432754": "0x2c7ab05cb83" }, -<<<<<<< HEAD "plotIndexes": [ "0x2f347bb9fdd0e", "0x2f8128de7f309", "0x2f4f1c71f46f2" ] -======= - "plotIndexes": ["0x2f347bb9fdd0e", "0x2f8128de7f309", "0x2f4f1c71f46f2"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -241553,7 +225945,9 @@ "plots": { "843657385645275": "0x1179684ec9" }, - "plotIndexes": ["0x2ff4d4ac894db"] + "plotIndexes": [ + "0x2ff4d4ac894db" + ] } }, "depositAllowances": {}, @@ -241579,13 +225973,9 @@ "plots": { "844244491110052": "0x3621f4e3b2" }, -<<<<<<< HEAD "plotIndexes": [ "0x2ffd5fcff06a4" ] -======= - "plotIndexes": ["0x2ffd5fcff06a4"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -241611,13 +226001,9 @@ "plots": { "844505594006708": "0xf4240" }, -<<<<<<< HEAD "plotIndexes": [ "0x30012c7f10cb4" ] -======= - "plotIndexes": ["0x30012c7f10cb4"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -241643,7 +226029,9 @@ "plots": { "850685454918538": "0x6f480a3b80" }, - "plotIndexes": ["0x305b1a45b238a"] + "plotIndexes": [ + "0x305b1a45b238a" + ] } }, "depositAllowances": {}, @@ -241669,7 +226057,6 @@ "plots": { "853797557101674": "0x7ca7080b3" }, -<<<<<<< HEAD "plotIndexes": [ "0x308863c19e46a" ] @@ -241757,89 +226144,6 @@ "plotIndexes": [ "0x3109fc930d7c5" ] -======= - "plotIndexes": ["0x308863c19e46a"] ->>>>>>> b689ac329 (feat: update reseed jsons) - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, -<<<<<<< HEAD -======= - "0x88ad88c5b3beaE06a248E286d1ed08C27E8B043b": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "862822651886528": "0x174876d800" - }, - "plotIndexes": ["0x310bb8dab7bc0"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x6974611c9e1437D74c07b5F031779Fb88f19923E": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "869691940601923": "0x205115423c" - }, - "plotIndexes": ["0x316faef2f0043"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xd26Cc622697e8f6E580645094d62742EEc9bd4fc": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "862703391397829": "0x1bc47aa3fb" - }, - "plotIndexes": ["0x3109fc930d7c5"] } }, "depositAllowances": {}, @@ -241850,7 +226154,6 @@ "internalTokenBalance": {}, "sop": {} }, ->>>>>>> b689ac329 (feat: update reseed jsons) "0x39167e20B785B46EBd856CC86DDc615FeFa51E76": { "roots": "0x0", "stalk": "0x0", @@ -241866,13 +226169,9 @@ "plots": { "886877107069810": "0x7551a24001" }, -<<<<<<< HEAD "plotIndexes": [ "0x3269c2aed2372" ] -======= - "plotIndexes": ["0x3269c2aed2372"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -241898,7 +226197,9 @@ "plots": { "906535984748110": "0x22b26cb634" }, - "plotIndexes": ["0x3387d5b58d64e"] + "plotIndexes": [ + "0x3387d5b58d64e" + ] } }, "depositAllowances": {}, @@ -241924,7 +226225,9 @@ "plots": { "906377715248110": "0x24d998ea60" }, - "plotIndexes": ["0x3385881bfebee"] + "plotIndexes": [ + "0x3385881bfebee" + ] } }, "depositAllowances": {}, @@ -241950,7 +226253,9 @@ "plots": { "880016381329810": "0x63d631ee1e0" }, - "plotIndexes": ["0x3205ec7ce4192"] + "plotIndexes": [ + "0x3205ec7ce4192" + ] } }, "depositAllowances": {}, @@ -241976,13 +226281,9 @@ "plots": { "887464147869040": "0x21f29e6f7" }, -<<<<<<< HEAD "plotIndexes": [ "0x32724d948dd70" ] -======= - "plotIndexes": ["0x32724d948dd70"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -241994,8 +226295,6 @@ "sop": {} }, "0x6d8Db35bC58c9cC930B0a65282e96C69d9715E06": { -<<<<<<< HEAD -======= "roots": "0x0", "stalk": "0x0", "depositPermitNonces": "0x0", @@ -242010,62 +226309,6 @@ "plots": { "898434888668647": "0x15d91556679" }, - "plotIndexes": ["0x3311f2c6495e7"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0xe182F132B7aB8639c3B2faEBa87f4c952B4b2319": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "920344600501839": "0xa7e29cd4f" - }, - "plotIndexes": ["0x3450c6cfbde4f"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": { - "0xBEA0005B8599265D41256905A9B3073D397812E4": "0x10a" - }, - "sop": {} - }, - "0xa714B49Ff1Bae62E141e6a05bb10356069C31518": { ->>>>>>> b689ac329 (feat: update reseed jsons) - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { -<<<<<<< HEAD - "898434888668647": "0x15d91556679" - }, "plotIndexes": [ "0x3311f2c6495e7" ] @@ -242122,8 +226365,6 @@ "fields": { "0": { "plots": { -======= ->>>>>>> b689ac329 (feat: update reseed jsons) "921555163101248": "0xa0", "921521067323540": "0xa0", "921555163102048": "0xa0", @@ -242487,7 +226728,12 @@ "948372056649332": "0xac4e343c9", "948180044585873": "0xe021a5839" }, - "plotIndexes": ["0x346c43194af0a", "0x34f5d46bbb0db", "0x35e8a138d2e74", "0x35e5d5ebd9b91"] + "plotIndexes": [ + "0x346c43194af0a", + "0x34f5d46bbb0db", + "0x35e8a138d2e74", + "0x35e5d5ebd9b91" + ] } }, "depositAllowances": {}, @@ -242515,13 +226761,9 @@ "plots": { "922632881887979": "0x3a8080600" }, -<<<<<<< HEAD "plotIndexes": [ "0x34721352edaeb" ] -======= - "plotIndexes": ["0x34721352edaeb"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -242547,13 +226789,9 @@ "plots": { "930654205477734": "0x146c66720a" }, -<<<<<<< HEAD "plotIndexes": [ "0x34e6cd1538366" ] -======= - "plotIndexes": ["0x34e6cd1538366"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -242580,7 +226818,10 @@ "931316549943649": "0x5478789400", "950092088204807": "0x260bbb9dee" }, - "plotIndexes": ["0x34f0708220161", "0x3601a8d6bde07"] + "plotIndexes": [ + "0x34f0708220161", + "0x3601a8d6bde07" + ] } }, "depositAllowances": {}, @@ -242608,7 +226849,9 @@ "plots": { "933960523170146": "0x491b1c69a7" }, - "plotIndexes": ["0x3516ea137c162"] + "plotIndexes": [ + "0x3516ea137c162" + ] } }, "depositAllowances": {}, @@ -242634,7 +226877,9 @@ "plots": { "944658495966134": "0x13c65a5c3" }, - "plotIndexes": ["0x35b2972160bb6"] + "plotIndexes": [ + "0x35b2972160bb6" + ] } }, "depositAllowances": {}, @@ -242660,13 +226905,9 @@ "plots": { "947585500813146": "0x1f544ba567" }, -<<<<<<< HEAD "plotIndexes": [ "0x35dd2f12b975a" ] -======= - "plotIndexes": ["0x35dd2f12b975a"] ->>>>>>> b689ac329 (feat: update reseed jsons) } }, "depositAllowances": {}, @@ -242692,33 +226933,9 @@ "plots": { "947821225912354": "0x3d7e2ec780" }, - "plotIndexes": ["0x35e09d37b2822"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x9ec0CF5fA0bD8754FDF2C3E827a8d0a87b50F6a4": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "947157324068361": "0xb6768954d" - }, - "plotIndexes": ["0x35d6f3fd8f609"] + "plotIndexes": [ + "0x35e09d37b2822" + ] } }, "depositAllowances": {}, @@ -242773,7 +226990,10 @@ "949411235551363": "0x4dd806b50", "972959010985644": "0xe6e9171d2" }, - "plotIndexes": ["0x35f7c0770d883", "0x374e6ac3b16ac"] + "plotIndexes": [ + "0x35f7c0770d883", + "0x374e6ac3b16ac" + ] } }, "depositAllowances": {}, @@ -242799,33 +227019,9 @@ "plots": { "966119151381565": "0x31da3e555cf" }, - "plotIndexes": ["0x36eae24d42c3d"] - } - }, - "depositAllowances": {}, - "tokenAllowances": {}, - "mowStatuses": {}, - "isApprovedForAll": {}, - "germinatingStalk": {}, - "internalTokenBalance": {}, - "sop": {} - }, - "0x23cAea94eB856767cf71a30824d72Ed5B93aA365": { - "roots": "0x0", - "stalk": "0x0", - "depositPermitNonces": "0x0", - "tokenPermitNonces": "0x0", - "lastUpdate": "0x5fbc", - "lastSop": "0x0", - "lastRain": "0x0", - "deposits": {}, - "depositIdList": {}, - "fields": { - "0": { - "plots": { - "976547212156243": "0x379f8cb500" - }, - "plotIndexes": ["0x3782a1dafdd53"] + "plotIndexes": [ + "0x36eae24d42c3d" + ] } }, "depositAllowances": {}, @@ -242879,7 +227075,9 @@ "plots": { "976523795556384": "0x3caaee481" }, - "plotIndexes": ["0x37824a9f2e820"] + "plotIndexes": [ + "0x37824a9f2e820" + ] } }, "depositAllowances": {}, @@ -242907,7 +227105,9 @@ "plots": { "978364317474455": "0x7abf7396b" }, - "plotIndexes": ["0x379d1319a9e97"] + "plotIndexes": [ + "0x379d1319a9e97" + ] } }, "depositAllowances": {}, @@ -254881,4 +239081,4 @@ "internalTokenBalance": {}, "sop": {} } -} +} \ No newline at end of file diff --git a/protocol/reseed/data/exports/storage-fertilizer20736200.json b/protocol/reseed/data/exports/storage-fertilizer20736200.json index bbe4a89e0..d39e77be2 100644 --- a/protocol/reseed/data/exports/storage-fertilizer20736200.json +++ b/protocol/reseed/data/exports/storage-fertilizer20736200.json @@ -4613,4 +4613,4 @@ } } } -} +} \ No newline at end of file diff --git a/protocol/reseed/data/exports/storage-system20736200.json b/protocol/reseed/data/exports/storage-system20736200.json index f038e2354..f6b666ff0 100644 --- a/protocol/reseed/data/exports/storage-system20736200.json +++ b/protocol/reseed/data/exports/storage-system20736200.json @@ -974,4 +974,4 @@ "excessivePriceThreshold": "0x0" }, "sop": {} -} +} \ No newline at end of file From 13a8fa2486397a56b5f180b723257dae3092edca Mon Sep 17 00:00:00 2001 From: Spacebean Date: Fri, 13 Sep 2024 14:08:09 -0600 Subject: [PATCH 10/14] feat: update cli anvil names --- package.json | 4 ++-- projects/cli/anvil.sh | 2 +- projects/cli/package.json | 10 +++++----- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index 13947ef8b..97f258b9e 100644 --- a/package.json +++ b/package.json @@ -48,8 +48,8 @@ "ui:test": "yarn workspace ui test", "test:browser": "yarn workspace tests test:browser", "ex": "yarn workspace @beanstalk/examples x", - "anvil-arbitrum": "yarn cli:anvil-arbitrum --fork-block-number 250704543 --code-size-limit 50000", - "anvil-mainnet": "yarn cli:anvil-mainnet", + "anvil-arbitrum": "yarn cli:anvil-arbitrum --code-size-limit 50000", + "anvil-eth-mainnet": "yarn cli:anvil-eth-mainnet", "anvil": "anvil --fork-url https://eth-mainnet.g.alchemy.com/v2/5ubn94zT7v7DnB5bNW1VOnoIbX5-AG2N --chain-id 1337", "anvil4tests": "anvil --fork-url https://eth-mainnet.g.alchemy.com/v2/Kk7ktCQL5wz4v4AG8bR2Gun8TAASQ-qi --chain-id 1337 --fork-block-number 18629000" }, diff --git a/projects/cli/anvil.sh b/projects/cli/anvil.sh index 1c70db4f1..da688875a 100644 --- a/projects/cli/anvil.sh +++ b/projects/cli/anvil.sh @@ -19,7 +19,7 @@ else fi # Determine which chain ID to use. Defaults to arbitrum local host -if [ "$chainIdType" = "mainnet-local" ]; then +if [ "$chainIdType" = "eth-mainnet" ]; then chainId=$mainnet_local_chain_id prefix="eth" port=9545 diff --git a/projects/cli/package.json b/projects/cli/package.json index 6fd04d140..f06eaa79e 100644 --- a/projects/cli/package.json +++ b/projects/cli/package.json @@ -1,6 +1,6 @@ { "name": "@beanstalk/cli", - "version": "0.0.10", + "version": "0.0.20", "description": "Beanstalk protocol development cli tool", "license": "MIT", "repository": { @@ -17,10 +17,10 @@ "cli:publish": "yarn cli:build && yarn npm publish --access public", "cli:build": "rimraf build && tsc && chmod u+x build/cli.js", "g:bean": "yarn ts-node-esm src/cli.ts", - "cli:anvil-mainnet": "bash anvil.sh dev mainnet-local", - "cli:anvil-arbitrum": "bash anvil.sh dev arbitrum-local", - "cli:anvil4tests-mainnet": "bash anvil.sh test mainnet-local --fork-block-number 18629000", - "cli:anvil4tests-arbitrum": "bash anvil.sh test arbitrum-local --fork-block-number 18629000" + "cli:anvil-eth-mainnet": "bash anvil.sh dev eth-mainnet", + "cli:anvil-arbitrum": "bash anvil.sh dev arbitrum-mainnet", + "cli:anvil4tests-mainnet": "bash anvil.sh test eth-mainnet --fork-block-number 18629000", + "cli:anvil4tests-arbitrum": "bash anvil.sh test arbitrum-mainnet --fork-block-number 18629000" }, "devDependencies": { "@types/command-line-args": "^5.2.3", From 32bef9e3fc8fba33f769d8481dbff6906bc730c8 Mon Sep 17 00:00:00 2001 From: Spacebean Date: Fri, 13 Sep 2024 20:49:57 -0600 Subject: [PATCH 11/14] feat: convert pools updater to use multicall --- package.json | 2 +- .../ui/src/components/App/SdkProvider.tsx | 6 +- projects/ui/src/components/App/index.tsx | 3 - .../Balances/SiloBalancesHistory.tsx | 2 +- projects/ui/src/components/Nav/NavBar.tsx | 4 +- .../ui/src/components/Silo/RewardItem.tsx | 2 +- .../constants/abi/Beanstalk/abiSnippets.ts | 56 ++++ projects/ui/src/constants/tokens.ts | 12 +- projects/ui/src/hooks/chain/useChainState.ts | 4 +- .../farmer/useFarmerBalancesBreakdown.ts | 1 + projects/ui/src/state/bean/pools/updater.ts | 305 +++++++++++------- .../ui/src/state/beanstalk/silo/updater.ts | 26 +- projects/ui/src/types.ts | 9 + projects/ui/src/util/Multicall.ts | 49 +++ 14 files changed, 324 insertions(+), 157 deletions(-) create mode 100644 projects/ui/src/util/Multicall.ts diff --git a/package.json b/package.json index 97f258b9e..7a5385152 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,7 @@ "ui:test": "yarn workspace ui test", "test:browser": "yarn workspace tests test:browser", "ex": "yarn workspace @beanstalk/examples x", - "anvil-arbitrum": "yarn cli:anvil-arbitrum --code-size-limit 50000", + "anvil-arbitrum": "yarn cli:anvil-arbitrum --code-size-limit 50000 --fork-block-number 250704543", "anvil-eth-mainnet": "yarn cli:anvil-eth-mainnet", "anvil": "anvil --fork-url https://eth-mainnet.g.alchemy.com/v2/5ubn94zT7v7DnB5bNW1VOnoIbX5-AG2N --chain-id 1337", "anvil4tests": "anvil --fork-url https://eth-mainnet.g.alchemy.com/v2/Kk7ktCQL5wz4v4AG8bR2Gun8TAASQ-qi --chain-id 1337 --fork-block-number 18629000" diff --git a/projects/ui/src/components/App/SdkProvider.tsx b/projects/ui/src/components/App/SdkProvider.tsx index 2a8f0013b..dc7d64070 100644 --- a/projects/ui/src/components/App/SdkProvider.tsx +++ b/projects/ui/src/components/App/SdkProvider.tsx @@ -117,12 +117,12 @@ const useBeanstalkSdkContext = () => { function BeanstalkSDKProvider({ children }: { children: React.ReactNode }) { const sdk = useBeanstalkSdkContext(); - const { isArbitrum, isDev } = useChainState(); + const { isArbitrum, isTestnet } = useChainState(); // only run this on arbitrum dev - const ready = useDynamicSeeds(sdk, !!(isArbitrum && isDev)); + const ready = useDynamicSeeds(sdk, !!(isArbitrum && isTestnet)); - if (isArbitrum && isDev && !ready) { + if (isArbitrum && isTestnet && !ready) { return null; } diff --git a/projects/ui/src/components/App/index.tsx b/projects/ui/src/components/App/index.tsx index 9d43b81cb..9d95c520f 100644 --- a/projects/ui/src/components/App/index.tsx +++ b/projects/ui/src/components/App/index.tsx @@ -268,9 +268,6 @@ function Arbitrum() { export default function App() { const { isArbitrum, isDev: isTestnet } = useChainState(); - console.log('isArbitrum: ', isArbitrum); - console.log('isTestnet: ', isTestnet); - if (!isArbitrum || (isArbitrum && !isTestnet)) { return ; } diff --git a/projects/ui/src/components/Balances/SiloBalancesHistory.tsx b/projects/ui/src/components/Balances/SiloBalancesHistory.tsx index e90da496d..4ad540f9a 100644 --- a/projects/ui/src/components/Balances/SiloBalancesHistory.tsx +++ b/projects/ui/src/components/Balances/SiloBalancesHistory.tsx @@ -48,7 +48,7 @@ const SiloBalancesHistory: React.FC<{}> = () => { const queryData: QueryData = { data: filteredSeries as BaseDataPoint[][], loading: loading, - keys: L1_SILO_WHITELIST.map((t) => t[1].address), + keys: L1_SILO_WHITELIST.map((t) => t.address), error: undefined, }; diff --git a/projects/ui/src/components/Nav/NavBar.tsx b/projects/ui/src/components/Nav/NavBar.tsx index 5deeaa30b..fcd3e25d0 100644 --- a/projects/ui/src/components/Nav/NavBar.tsx +++ b/projects/ui/src/components/Nav/NavBar.tsx @@ -54,9 +54,9 @@ const L1NavBar = () => ( ); const NavBar: FC<{}> = ({ children }) => { - const { isArbitrum, isDev } = useChainState(); + const { isArbitrum, isArbMainnet } = useChainState(); - if (!isArbitrum || (isArbitrum && !isDev)) { + if (!isArbitrum || isArbMainnet) { return ; } diff --git a/projects/ui/src/components/Silo/RewardItem.tsx b/projects/ui/src/components/Silo/RewardItem.tsx index d036450fe..1a3103fb8 100644 --- a/projects/ui/src/components/Silo/RewardItem.tsx +++ b/projects/ui/src/components/Silo/RewardItem.tsx @@ -2,10 +2,10 @@ import { Typography, Tooltip, Box } from '@mui/material'; import HelpOutlineIcon from '@mui/icons-material/HelpOutline'; import React from 'react'; import BigNumber from 'bignumber.js'; -import { displayFullBN } from '../../util'; import Row from '~/components/Common/Row'; import { FC } from '~/types'; +import { displayFullBN } from '../../util'; export type RewardItemProps = { title: string; diff --git a/projects/ui/src/constants/abi/Beanstalk/abiSnippets.ts b/projects/ui/src/constants/abi/Beanstalk/abiSnippets.ts index bc1fba6f9..a9c39e4dc 100644 --- a/projects/ui/src/constants/abi/Beanstalk/abiSnippets.ts +++ b/projects/ui/src/constants/abi/Beanstalk/abiSnippets.ts @@ -61,6 +61,16 @@ const tokenSettings = [ }, ] as const; +const totalDeltaB = [ + { + inputs: [], + name: 'totalDeltaB', + outputs: [{ internalType: 'int256', name: 'deltaB', type: 'int256' }], + stateMutability: 'view', + type: 'function', + }, +] as const; + const poolDeltaB = [ { inputs: [{ internalType: 'address', name: 'pool', type: 'address' }], @@ -203,11 +213,57 @@ const siloGetters = [ }, ] as const; +const price = [ + { + inputs: [], + name: 'price', + outputs: [ + { + components: [ + { internalType: 'uint256', name: 'price', type: 'uint256' }, + { internalType: 'uint256', name: 'liquidity', type: 'uint256' }, + { internalType: 'int256', name: 'deltaB', type: 'int256' }, + { + components: [ + { internalType: 'address', name: 'pool', type: 'address' }, + { + internalType: 'address[2]', + name: 'tokens', + type: 'address[2]', + }, + { + internalType: 'uint256[2]', + name: 'balances', + type: 'uint256[2]', + }, + { internalType: 'uint256', name: 'price', type: 'uint256' }, + { internalType: 'uint256', name: 'liquidity', type: 'uint256' }, + { internalType: 'int256', name: 'deltaB', type: 'int256' }, + { internalType: 'uint256', name: 'lpUsd', type: 'uint256' }, + { internalType: 'uint256', name: 'lpBdv', type: 'uint256' }, + ], + internalType: 'struct P.Pool[]', + name: 'ps', + type: 'tuple[]', + }, + ], + internalType: 'struct BeanstalkPrice.Prices', + name: 'p', + type: 'tuple', + }, + ], + stateMutability: 'view', + type: 'function', + }, +] as const; + const BEANSTALK_ABI_SNIPPETS = { getGaugePointsPerBdvForToken: getGaugePointsPerBdvForToken, tokenSettings: tokenSettings, poolDeltaB: poolDeltaB, siloGetters: siloGetters, + price: price, + totalDeltaB: totalDeltaB, } as const; export default BEANSTALK_ABI_SNIPPETS; diff --git a/projects/ui/src/constants/tokens.ts b/projects/ui/src/constants/tokens.ts index fbfdfe5fe..2a635650c 100644 --- a/projects/ui/src/constants/tokens.ts +++ b/projects/ui/src/constants/tokens.ts @@ -395,12 +395,12 @@ export const UNRIPE_UNDERLYING_TOKENS: ChainConstant[] = [ WSTETH, ]; -export const L1_SILO_WHITELIST: ChainConstant[] = [ - BEAN, - BEAN_WSTETH_WELL_LP, - BEAN_ETH_WELL_LP, - UNRIPE_BEAN, - UNRIPE_BEAN_WSTETH, +export const L1_SILO_WHITELIST: ERC20Token[] = [ + BEAN[1], + BEAN_WSTETH_WELL_LP[1], + BEAN_ETH_WELL_LP[1], + UNRIPE_BEAN[1], + UNRIPE_BEAN_WSTETH[1], ]; // Show these tokens as whitelisted in the Silo. diff --git a/projects/ui/src/hooks/chain/useChainState.ts b/projects/ui/src/hooks/chain/useChainState.ts index b740edbe2..e582ec379 100644 --- a/projects/ui/src/hooks/chain/useChainState.ts +++ b/projects/ui/src/hooks/chain/useChainState.ts @@ -1,5 +1,6 @@ import { useMemo } from 'react'; import { ChainResolver } from '@beanstalk/sdk-core'; +import { SupportedChainId } from '~/constants'; import useChainId from './useChainId'; function useChainState() { @@ -8,10 +9,11 @@ function useChainState() { return useMemo( () => ({ isEthereum: ChainResolver.isL1Chain(chainId), - isDev: ChainResolver.isTestnet(chainId), + isTestnet: ChainResolver.isTestnet(chainId), isArbitrum: ChainResolver.isL2Chain(chainId), fallbackChainId: ChainResolver.resolveToMainnetChainId(chainId), chainId, + isArbMainnet: chainId === SupportedChainId.ARBITRUM_MAINNET, }), [chainId] ); diff --git a/projects/ui/src/hooks/farmer/useFarmerBalancesBreakdown.ts b/projects/ui/src/hooks/farmer/useFarmerBalancesBreakdown.ts index ef1a82481..cf743d95a 100644 --- a/projects/ui/src/hooks/farmer/useFarmerBalancesBreakdown.ts +++ b/projects/ui/src/hooks/farmer/useFarmerBalancesBreakdown.ts @@ -155,6 +155,7 @@ export default function useFarmerBalancesBreakdown() { }, [whitelist, addresses, siloBalances, tokenBalances, getUSD]); } +// BS3TODO: Fix me to use new whitelist export function useFarmerBalancesL1Breakdown() { /// Constants const whitelist = useTokenMap(L1_SILO_WHITELIST); diff --git a/projects/ui/src/state/bean/pools/updater.ts b/projects/ui/src/state/bean/pools/updater.ts index c20fc9bff..5977aa242 100644 --- a/projects/ui/src/state/bean/pools/updater.ts +++ b/projects/ui/src/state/bean/pools/updater.ts @@ -2,160 +2,150 @@ import { useCallback, useEffect, useMemo } from 'react'; import BigNumber from 'bignumber.js'; import { useDispatch } from 'react-redux'; import throttle from 'lodash/throttle'; +import { multicall } from '@wagmi/core'; -import { tokenResult, displayBeanPrice } from '~/util'; -import { ERC20__factory } from '~/generated'; -import { useEthersProvider } from '~/util/wagmi/ethersAdapter'; +import { displayBeanPrice, tokenResult } from '~/util'; import useSdk from '~/hooks/sdk'; -import { updatePrice, updateDeltaB, updateSupply } from '../token/actions'; +import { ContractFunctionParameters, erc20Abi } from 'viem'; +import BEANSTALK_ABI_SNIPPETS from '~/constants/abi/Beanstalk/abiSnippets'; +import { config } from '~/util/wagmi/config'; +import { ERC20Token, Pool } from '@beanstalk/sdk'; +import { chunkArray } from '~/util/UI'; +import { getExtractMulticallResult } from '~/util/Multicall'; +import { transform } from '~/util/BigNumber'; import { resetPools, updateBeanPools, UpdatePoolPayload } from './actions'; +import { updateDeltaB, updatePrice, updateSupply } from '../token/actions'; + +const pageContext = '[bean/pools/useGetPools]'; + +const extract = getExtractMulticallResult(pageContext); export const useFetchPools = () => { const dispatch = useDispatch(); - const provider = useEthersProvider(); const sdk = useSdk(); - const { beanstalk, beanstalkPrice } = sdk.contracts; // Handlers const _fetch = useCallback(async () => { + const { beanstalk, beanstalkPrice } = sdk.contracts; try { if (beanstalk && beanstalkPrice) { - console.debug('[bean/pools/useGetPools] FETCH', beanstalkPrice.address); + console.debug(`${pageContext} FETCH`, beanstalkPrice.address); const whitelistedPools = sdk.pools.whitelistedPools; + const poolsArr = [...whitelistedPools.values()]; const BEAN = sdk.tokens.BEAN; - // FIXME: find regression with Bean.totalSupply() - const [priceResult, totalSupply, totalDeltaB] = await Promise.all([ - beanstalkPrice.price(), - // FIXME: these should probably reside in bean/token/updater, - // but the above beanstalkPriceContract call also grabs the - // aggregate price, so for now we bundle them here. - sdk.tokens.BEAN.getTotalSupply().then( - (r) => new BigNumber(r.toHuman()) - ), - beanstalk.totalDeltaB().then(tokenResult(BEAN)), // TWAdeltaB + const priceAndBeanCalls = [ + makePriceMulticall(beanstalkPrice.address), + makeTokenTotalSupplyMulticall(BEAN), + makeTotalDeltaBMulticall(beanstalk.address), + ]; + const lpMulticall = makeLPMulticall(poolsArr); + + const [priceAndBean, _lpResults] = await Promise.all([ + // fetch [price, bean.totalSupply, totalDeltaB] + multicall(config, { + contracts: priceAndBeanCalls, + allowFailure: true, + }), + // fetch [poolDeltaB, totalSupply] for each pool, in chunks of 20 + Promise.all( + lpMulticall.calls.map((lpCall) => + multicall(config, { + contracts: lpCall, + allowFailure: true, + }) + ) + ).then((result) => chunkArray(result.flat(), lpMulticall.chunkSize)), ]); - if (!priceResult) return; + console.debug(`${pageContext} MULTICALL RESULTS: `, { + lpMulticall, + priceAndBeanCalls, + _lpResults, + priceAndBean, + }); + + const [priceResult, beanTotalSupply, totalDeltaB] = [ + extract(priceAndBean[0], 'price'), + extract(priceAndBean[1], 'bean.totalSupply'), + extract(priceAndBean[2], 'totalDeltaB'), + ]; + + const lpResults = _lpResults.reduce>( + (prev, [_deltaB, _supply], i) => { + const lp = poolsArr[i].lpToken; - console.debug( - '[bean/pools/useGetPools] RESULT: price contract result =', - priceResult, - totalSupply.toString() + prev[lp.address.toLowerCase()] = { + deltaB: extract(_deltaB, `${lp.symbol} poolDeltaB`), + supply: extract(_supply, `${lp.symbol} totalSupply`), + }; + return prev; + }, + {} ); + if (priceResult) { + const price = tokenResult(BEAN)(priceResult.price.toString()); - // Step 2: Get LP token supply data and format as UpdatePoolPayload - const dataWithSupplyResult: Promise[] = [ - ...priceResult.ps.reduce[]>( + const poolsPayload = priceResult.ps.reduce( (acc, poolData) => { - // NOTE: - // The below address must be lower-cased. All internal Pool/Token - // addresses are case-insensitive and stored as lowercase strings. const address = poolData.pool.toLowerCase(); + const pool = whitelistedPools.get(address); + const lpResult = lpResults[address]; - // If a new pool is added to the Pools contract before it's - // configured in the frontend, this function would throw an error. - // Thus, we only process the pool's data if we have it configured. - - const pool = sdk.pools.getPoolByLPToken(address); - if (pool) { - acc.push( - ERC20__factory.connect(pool.lpToken.address, provider) - .totalSupply() - .then( - (supply) => - ({ - address: poolData.pool, - pool: { - price: tokenResult(BEAN)(poolData.price.toString()), - reserves: [ - // NOTE: - // Assumes that the ordering of tokens in the Pool instance - // matches the order returned by the price contract. - tokenResult(pool.tokens[0])(poolData.balances[0]), - tokenResult(pool.tokens[1])(poolData.balances[1]), - ], - deltaB: tokenResult(BEAN)( - poolData.deltaB.toString() - ), - supply: tokenResult(pool.lpToken)( - supply.toString() - ), - // Liquidity: always denominated in USD for the price contract - liquidity: tokenResult(BEAN)( - poolData.liquidity.toString() - ), - // USD value of 1 LP token == liquidity / supply - totalCrosses: new BigNumber(0), - lpUsd: tokenResult(BEAN)(poolData.lpUsd), - lpBdv: tokenResult(BEAN)(poolData.lpBdv), - twaDeltaB: null, - }, - }) as UpdatePoolPayload - ) - .then((data) => { - if (whitelistedPools.has(data.address.toLowerCase())) { - return beanstalk - .poolDeltaB(data.address) - .then((twaDeltaB) => { - data.pool.twaDeltaB = tokenResult(BEAN)( - twaDeltaB.toString() - ); - return data; - }); - } - - return data; - }) - .catch((err) => { - console.debug( - '[beanstalk/pools/updater] Failed to get LP token supply', - pool.lpToken - ); - console.error(err); - throw err; - }) - ); + if (pool && lpResult.deltaB && lpResult.supply) { + const payload: UpdatePoolPayload = { + address: address, + pool: { + price: transform(poolData.price, 'bnjs', BEAN), + reserves: [ + transform(poolData.balances[0], 'bnjs', pool.tokens[0]), + transform(poolData.balances[1], 'bnjs', pool.tokens[1]), + ], + deltaB: transform(poolData.deltaB, 'bnjs', BEAN), + supply: transform(lpResult.supply, 'bnjs', pool.lpToken), + // Liquidity: always denominated in USD for the price contract + liquidity: transform(poolData.liquidity, 'bnjs', BEAN), + // USD value of 1 LP token == liquidity / supply + totalCrosses: new BigNumber(0), + lpUsd: transform(poolData.lpUsd, 'bnjs', BEAN), + lpBdv: transform(poolData.lpBdv, 'bnjs', BEAN), + twaDeltaB: transform(lpResult.deltaB, 'bnjs', BEAN), + }, + } as UpdatePoolPayload; + acc.push(payload); } else { console.debug( - `[bean/pools/useGetPools] price contract returned data for pool ${address} but it isn't configured, skipping. available pools:`, + `${pageContext} price contract returned data for pool ${address} but it isn't configured, skipping. available pools:`, sdk.pools.pools ); } return acc; }, [] - ), - ]; + ); + dispatch(updatePrice(price)); + dispatch(updateBeanPools(poolsPayload)); - console.debug( - '[bean/pools/useGetPools] RESULT: dataWithSupply =', - dataWithSupplyResult - ); + if (price) { + document.title = `$${displayBeanPrice(price, 4)} · Beanstalk App`; + } + } - const price = tokenResult(BEAN)(priceResult.price.toString()); - dispatch(updateBeanPools(await Promise.all(dataWithSupplyResult))); - dispatch(updatePrice(price)); - dispatch(updateSupply(totalSupply)); - dispatch(updateDeltaB(totalDeltaB)); + if (beanTotalSupply) { + dispatch(updateSupply(transform(beanTotalSupply, 'bnjs', BEAN))); + } - if (price) { - document.title = `$${displayBeanPrice(price, 4)} · Beanstalk App`; + if (totalDeltaB) { + dispatch(updateDeltaB(transform(totalDeltaB, 'bnjs', BEAN))); } } } catch (e) { - console.debug('[bean/pools/useGetPools] FAILED', e); + console.debug(`${pageContext} FAILED`, e); console.error(e); } - }, [ - beanstalk, - beanstalkPrice, - sdk.pools, - sdk.tokens.BEAN, - dispatch, - provider, - ]); + }, [sdk.contracts, sdk.pools, sdk.tokens.BEAN, dispatch]); + const clear = useCallback(() => { dispatch(resetPools()); }, [dispatch]); @@ -181,3 +171,90 @@ const PoolsUpdater = () => { }; export default PoolsUpdater; + +// ------------------------------------------ +// Types + +type PriceResultStruct = { + price: bigint; + liquidity: bigint; + deltaB: bigint; + ps: { + pool: string; + tokens: [string, string]; + balances: [bigint, bigint]; + price: bigint; + liquidity: bigint; + deltaB: bigint; + lpUsd: bigint; + lpBdv: bigint; + }[]; +}; + +type LPResultType = { + deltaB: bigint | null; + supply: bigint | null; +}; + +// ------------------------------------------ +// Helpers + +function makeTokenTotalSupplyMulticall( + token: ERC20Token +): ContractFunctionParameters { + return { + address: token.address as `0x{string}`, + abi: erc20Abi, + functionName: 'totalSupply', + args: [], + }; +} + +function makeTotalDeltaBMulticall( + beanstalkAddress: string +): ContractFunctionParameters { + return { + address: beanstalkAddress as `0x{string}`, + abi: BEANSTALK_ABI_SNIPPETS.totalDeltaB, + functionName: 'totalDeltaB', + args: [], + }; +} + +function makePriceMulticall( + address: string +): ContractFunctionParameters { + return { + address: address as `0x{string}`, + abi: BEANSTALK_ABI_SNIPPETS.price, + functionName: 'price', + args: [], + }; +} + +function makeLPMulticall(pools: Pool[]): { + calls: ContractFunctionParameters[][]; + chunkSize: number; +} { + const calls: ContractFunctionParameters[] = []; + + pools.forEach((pool) => { + const address = pool.address as `0x{string}`; + const deltaBCall: ContractFunctionParameters< + typeof BEANSTALK_ABI_SNIPPETS.poolDeltaB + > = { + address: address, + abi: BEANSTALK_ABI_SNIPPETS.poolDeltaB, + functionName: 'poolDeltaB', + args: [address], + }; + const totalSupplyCall = makeTokenTotalSupplyMulticall(pool.lpToken); + + calls.push(deltaBCall, totalSupplyCall); + }); + + return { + calls: chunkArray(calls, 20), + chunkSize: 2, + }; +} diff --git a/projects/ui/src/state/beanstalk/silo/updater.ts b/projects/ui/src/state/beanstalk/silo/updater.ts index f2e7bb007..ae0117429 100644 --- a/projects/ui/src/state/beanstalk/silo/updater.ts +++ b/projects/ui/src/state/beanstalk/silo/updater.ts @@ -90,35 +90,11 @@ export const useFetchBeanstalkSilo = () => { ? ONE_BN : transform(data[1], 'bnjs', token), totalGerminating: transform(data[2], 'bnjs', token), - bdvPerToken: transform(data[3], 'bnjs', token), + bdvPerToken: transform(data[3], 'bnjs', BEAN), stemTip: stemTips.get(token.address) || ethers.BigNumber.from(0), }); }); - // const whitelistedAssetTotals = chunked.map((chunk, i) => { - // const token = whitelist[i]; - // const data = chunk.map((d) => parseCallResult(d)); - - // const stemTip = stemTips.get(token.address); - - // if (!stemTip) { - // throw new Error( - // `[beanstalk/silo/useFetchBeanstalkSilo]: Stem Tip not found for: ${token.symbol}` - // ); - // } - - // return { - // address: token.address, - // deposited: transform(data[0], 'bnjs', token), - // depositedBdv: tokenIshEqual(token, sdk.tokens.BEAN) - // ? ONE_BN - // : transform(data[1], 'bnjs', token), - // totalGerminating: transform(data[2], 'bnjs', token), - // bdvPerToken: transform(data[3], 'bnjs', token), - // stemTip: stemTips.get(token.address) || ethers.BigNumber.from(0), - // }; - // }); - console.debug('[beanstalk/silo/useBeanstalkSilo] RESULT', [ stalkTotal, bdvTotal, diff --git a/projects/ui/src/types.ts b/projects/ui/src/types.ts index 3b41e32d5..186ba76b2 100644 --- a/projects/ui/src/types.ts +++ b/projects/ui/src/types.ts @@ -1,5 +1,6 @@ import { BeanstalkSDK } from '@beanstalk/sdk'; import React from 'react'; +import { ContractFunctionParameters, MulticallReturnType } from 'viem'; export type FC = React.FC>; @@ -13,3 +14,11 @@ type SDkFarm = BeanstalkSDK['farm']; export type FarmWorkflow = ReturnType; export type AdvancedFarmWorkflow = ReturnType; export type AdvancedPipeWorkflow = ReturnType; + +type MulticallParams< + T extends + readonly ContractFunctionParameters[] = ContractFunctionParameters[], +> = T; + +export type MulticallResult = + MulticallReturnType; diff --git a/projects/ui/src/util/Multicall.ts b/projects/ui/src/util/Multicall.ts new file mode 100644 index 000000000..e9e3669e8 --- /dev/null +++ b/projects/ui/src/util/Multicall.ts @@ -0,0 +1,49 @@ +import { ContractFunctionParameters, MulticallReturnType } from 'viem'; + +type MulticallResultParams< + T extends + readonly ContractFunctionParameters[] = ContractFunctionParameters[], +> = T; + +export type MulticallResult = + MulticallReturnType; + +export const getExtractMulticallResult = + (context: string) => + (result: MulticallResult[number], fnName?: string): V | null => { + if (result.error && fnName) { + const functionName = fnName ? `: ${fnName}()` : ''; + const ctx = context.startsWith('[') ? context : `[${context}]`; + console.debug(`${ctx}${functionName}: FAILED: `, result.error); + return null; + } + return result.result as V; + }; + +/** + * Extracts a result from a multicall. + * @param result - The result of a multicall. + * @param fnName - The name of the function that was called. + * @returns The result of the multicall. + */ +export const extractMulticallResult = ( + result: MulticallResult[number], + fnName?: string +): V | null => { + if (result.error && fnName) { + console.debug(`${fnName} FAILED: `, result.error); + return null; + } + return result.result as V; +}; + +export const extractMultiCallResultWithThrow = ( + result: MulticallResult[number], + fnName?: string +): V => { + if (result.error && fnName) { + throw new Error(`${fnName} FAILED: ${result.error}`); + } + + return result.result as V; +}; From 003488c811407a701787c44fbaf04d10ca190bda Mon Sep 17 00:00:00 2001 From: Spacebean Date: Sat, 14 Sep 2024 02:56:42 -0600 Subject: [PATCH 12/14] feat: update Price ABI --- projects/sdk/src/constants/abi/Ecosystem/BeanstalkPrice.json | 2 +- projects/sdk/src/lib/tokens.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/projects/sdk/src/constants/abi/Ecosystem/BeanstalkPrice.json b/projects/sdk/src/constants/abi/Ecosystem/BeanstalkPrice.json index 47043575f..be8fad428 100644 --- a/projects/sdk/src/constants/abi/Ecosystem/BeanstalkPrice.json +++ b/projects/sdk/src/constants/abi/Ecosystem/BeanstalkPrice.json @@ -18,7 +18,7 @@ "type": "address" } ], - "name": "getConstantProductWell", + "name": "getWell", "outputs": [ { "components": [ diff --git a/projects/sdk/src/lib/tokens.ts b/projects/sdk/src/lib/tokens.ts index 8053af586..c572caf44 100644 --- a/projects/sdk/src/lib/tokens.ts +++ b/projects/sdk/src/lib/tokens.ts @@ -577,6 +577,7 @@ export class Tokens { this.siloWhitelistAddresses = siloWhitelist.map((t) => t.address); this.unripeTokens = new Set(unripeTokens); + // make sure the underlying tokens are in the same indexing order as unripeTokens this.unripeUnderlyingTokens = new Set([this.BEAN, this.WSTETH]); this.erc20Tokens = new Set([ ...this.siloWhitelist, From 71020bea98f1398818bae3a863a2cfa912817175 Mon Sep 17 00:00:00 2001 From: Spacebean Date: Sat, 14 Sep 2024 02:57:44 -0600 Subject: [PATCH 13/14] feat: update Silo/Overview --- projects/ui/src/components/App/index.tsx | 2 +- .../Balances/SiloBalancesHistory.tsx | 5 +- .../Common/Charts/ChartPropProvider.tsx | 87 ++++++---- projects/ui/src/hooks/beanstalk/useTokens.ts | 154 +++++++++++++++--- projects/ui/src/hooks/chain/useChainId.ts | 7 + .../farmer/useFarmerBalancesBreakdown.ts | 7 +- .../src/hooks/farmer/useFarmerSiloHistory.ts | 4 +- .../hooks/farmer/useInterpolateDeposits.ts | 30 ++-- .../src/hooks/farmer/useInterpolateStalk.ts | 16 +- projects/ui/src/util/Interpolate.ts | 73 +++++---- 10 files changed, 268 insertions(+), 117 deletions(-) diff --git a/projects/ui/src/components/App/index.tsx b/projects/ui/src/components/App/index.tsx index 9d95c520f..4955c7bef 100644 --- a/projects/ui/src/components/App/index.tsx +++ b/projects/ui/src/components/App/index.tsx @@ -266,7 +266,7 @@ function Arbitrum() { } export default function App() { - const { isArbitrum, isDev: isTestnet } = useChainState(); + const { isArbitrum, isTestnet } = useChainState(); if (!isArbitrum || (isArbitrum && !isTestnet)) { return ; diff --git a/projects/ui/src/components/Balances/SiloBalancesHistory.tsx b/projects/ui/src/components/Balances/SiloBalancesHistory.tsx index 4ad540f9a..2e00fc459 100644 --- a/projects/ui/src/components/Balances/SiloBalancesHistory.tsx +++ b/projects/ui/src/components/Balances/SiloBalancesHistory.tsx @@ -11,7 +11,7 @@ import { SeasonRange, } from '~/hooks/beanstalk/useSeasonsQuery'; import useFarmerSiloHistory from '~/hooks/farmer/useFarmerSiloHistory'; -import { L1_SILO_WHITELIST } from '~/constants/tokens'; +import { useWhitelistedTokens } from '~/hooks/beanstalk/useTokens'; import MockPlot from '../Silo/MockPlot'; import BlurComponent from '../Common/ZeroState/BlurComponent'; import WalletButton from '../Common/Connection/WalletButton'; @@ -21,6 +21,7 @@ const SiloBalancesHistory: React.FC<{}> = () => { const account = useAccount(); const timeTabParams = useTimeTabState(); const { data, loading } = useFarmerSiloHistory(account, true, false); + const { whitelist } = useWhitelistedTokens(); const formatValue = (value: number) => `$${value?.toLocaleString('en-US', { maximumFractionDigits: 2 })}`; @@ -48,7 +49,7 @@ const SiloBalancesHistory: React.FC<{}> = () => { const queryData: QueryData = { data: filteredSeries as BaseDataPoint[][], loading: loading, - keys: L1_SILO_WHITELIST.map((t) => t.address), + keys: whitelist.map((t) => t.address), error: undefined, }; diff --git a/projects/ui/src/components/Common/Charts/ChartPropProvider.tsx b/projects/ui/src/components/Common/Charts/ChartPropProvider.tsx index 626640ba3..931aec4cf 100644 --- a/projects/ui/src/components/Common/Charts/ChartPropProvider.tsx +++ b/projects/ui/src/components/Common/Charts/ChartPropProvider.tsx @@ -32,13 +32,15 @@ export type BaseDataPoint = { [key: string]: number; }; +type BaseChartMultiStyle = { + stroke: string; // stroke color + fillPrimary: string; // gradient 'to' color + fillSecondary?: string; // gradient 'from' color + strokeWidth?: number; +}; + export type ChartMultiStyles = { - [key: string]: { - stroke: string; // stroke color - fillPrimary: string; // gradient 'to' color - fillSecondary?: string; // gradient 'from' color - strokeWidth?: number; - }; + [key: string]: BaseChartMultiStyle; }; type ChartStyleConfig = { @@ -75,8 +77,8 @@ type Scales = { }; export type Scale = { - xScale: ReturnType; - yScale: ReturnType; + xScale: ReturnType<(typeof SCALES)[keyof typeof SCALES]>; + yScale: ReturnType<(typeof SCALES)[keyof typeof SCALES]>; }; type ChartAccessorProps = { @@ -120,6 +122,7 @@ type UtilProps = { }; export type DataRegion = { yTop: number; yBottom: number }; +// eslint-disable-next-line react/no-unused-prop-types export type BaseGraphProps = { width: number; height: number }; export type ProviderChartProps = { @@ -142,7 +145,7 @@ export type BaseChartProps = { isTWAP?: boolean; useCustomTokenList?: ERC20Token[]; useCustomTooltipNames?: { [key: string]: string }; - tokenPerSeasonFilter?: { [key: string]: { from: number, to: number } }; + tokenPerSeasonFilter?: { [key: string]: { from: number; to: number } }; horizontalLineNumber?: number; stylesConfig?: ChartMultiStyles; stackedArea?: boolean; @@ -184,33 +187,47 @@ const chartPadding = { }; const chartColors = BeanstalkPalette.theme.spring.chart; -const defaultChartStyles: ChartMultiStyles = { - 0: { - stroke: BeanstalkPalette.theme.spring.beanstalkGreen, - fillPrimary: chartColors.primaryLight, - strokeWidth: 2, - }, - 1: { - stroke: chartColors.purple, - fillPrimary: chartColors.purpleLight, - strokeWidth: 2, - }, - 2: { - stroke: chartColors.green, - fillPrimary: chartColors.greenLight, - strokeWidth: 2, - }, - 3: { - stroke: chartColors.yellow, - fillPrimary: chartColors.yellowLight, - strokeWidth: 2, - }, - 4: { - stroke: chartColors.blue, - fillPrimary: chartColors.blueLight, - strokeWidth: 2, - }, + +const chartStylePrimary: BaseChartMultiStyle = { + stroke: BeanstalkPalette.theme.spring.beanstalkGreen, + fillPrimary: chartColors.primaryLight, + strokeWidth: 2, +}; +const chartStylePurple: BaseChartMultiStyle = { + stroke: chartColors.purple, + fillPrimary: chartColors.purpleLight, + strokeWidth: 2, +}; +const chartStyleGreen: BaseChartMultiStyle = { + stroke: chartColors.green, + fillPrimary: chartColors.greenLight, + strokeWidth: 2, }; +const chartStyleYellow: BaseChartMultiStyle = { + stroke: chartColors.yellow, + fillPrimary: chartColors.yellowLight, + strokeWidth: 2, +}; +const chartStyleBlue: BaseChartMultiStyle = { + stroke: chartColors.blue, + fillPrimary: chartColors.blueLight, + strokeWidth: 2, +}; + +const chartStyleArr = [ + chartStylePrimary, + chartStylePurple, + chartStyleGreen, + chartStyleYellow, + chartStyleBlue, +]; + +const defaultChartStyles: ChartMultiStyles = Object.fromEntries( + [...chartStyleArr, ...chartStyleArr].map((chartStyle, i) => [ + i.toString(), + chartStyle, + ]) +); /** * get chart styles for given key diff --git a/projects/ui/src/hooks/beanstalk/useTokens.ts b/projects/ui/src/hooks/beanstalk/useTokens.ts index f78b63022..b9b53a6b8 100644 --- a/projects/ui/src/hooks/beanstalk/useTokens.ts +++ b/projects/ui/src/hooks/beanstalk/useTokens.ts @@ -6,12 +6,14 @@ import LegacyToken, { NativeToken as LegacyNativeToken, } from '~/classes/Token'; import { ChainConstant, SupportedChainId, TokenMap } from '~/constants'; +import * as ADDRESSES from '~/constants/addresses'; import useSdk from '~/hooks/sdk'; import { useAppSelector } from '~/state'; import { BeanPools } from '~/state/bean/pools'; import * as LegacyTokens from '~/constants/tokens'; import { getTokenIndex, isSdkToken } from '~/util'; -import useChainState from '../chain/useChainState'; +import useChainState from '~/hooks/chain/useChainState'; +import { useResolvedChainId } from '../chain/useChainId'; // ------------------------- // Token Instances @@ -89,7 +91,8 @@ export const useTokens = (): { const erc20TokenMap = Object.values(balanceTokens).reduce< TokenMap >((acc, token) => { - if (token.equals(tokens.ETH)) return acc; + const tokenIndex = getTokenIndex(token); + if (tokenIndex === 'eth') return acc; acc[getTokenIndex(token)] = token as ERC20Token; return acc; }, {}); @@ -144,6 +147,31 @@ export const useUnripeTokens = () => { }, [sdk]); }; +export const useGetUnripeTokenWithAddress = () => { + const urTokens = useUnripeTokens(); + + const getUnripeSdkToken = useCallback( + (_address: string) => { + const address = _address.toLowerCase(); + + if (Object.values(ADDRESSES.UNRIPE_BEAN_ADDRESSES).includes(address)) { + return urTokens.UNRIPE_BEAN; + } + + if ( + Object.values(ADDRESSES.UNRIPE_BEAN_WSTETH_ADDRESSES).includes(address) + ) { + return urTokens.UNRIPE_BEAN_WSTETH; + } + }, + [urTokens] + ); + + return { + getUnripeSdkToken, + }; +}; + /** * @param sortByLiquidity - If true, sort Well LP tokens by liquidity (highest to lowest) */ @@ -245,37 +273,40 @@ function getWhitelistSorted( }); } -const i = SupportedChainId.ARBITRUM_MAINNET; +const cARB = SupportedChainId.ARBITRUM_MAINNET; +const cETH = SupportedChainId.ETH_MAINNET; const oldTokenMap: Record | LegacyToken> = { - [LegacyTokens.ETH[i].symbol]: LegacyTokens.ETH, - [LegacyTokens.BEAN[i].symbol]: LegacyTokens.BEAN, - [LegacyTokens.UNRIPE_BEAN[i].symbol]: LegacyTokens.UNRIPE_BEAN, - [LegacyTokens.UNRIPE_BEAN_WSTETH[i].symbol]: LegacyTokens.UNRIPE_BEAN_WSTETH, - [LegacyTokens.WETH[i].symbol]: LegacyTokens.WETH, - [LegacyTokens.DAI[i].symbol]: LegacyTokens.DAI, - [LegacyTokens.USDC[i].symbol]: LegacyTokens.USDC, - [LegacyTokens.USDT[i].symbol]: LegacyTokens.USDT, - [LegacyTokens.WSTETH[i].symbol]: LegacyTokens.WSTETH, - [LegacyTokens.WEETH[i].symbol]: LegacyTokens.WEETH, - [LegacyTokens.WBTC[i].symbol]: LegacyTokens.WBTC, - [LegacyTokens.BEAN_ETH_WELL_LP[i].symbol]: LegacyTokens.BEAN_ETH_WELL_LP, - [LegacyTokens.BEAN_WSTETH_WELL_LP[i].symbol]: + [LegacyTokens.ETH[cARB].symbol]: LegacyTokens.ETH, + [LegacyTokens.BEAN[cARB].symbol]: LegacyTokens.BEAN, + [LegacyTokens.UNRIPE_BEAN[cARB].symbol]: LegacyTokens.UNRIPE_BEAN, + [LegacyTokens.UNRIPE_BEAN_WSTETH[cARB].symbol]: + LegacyTokens.UNRIPE_BEAN_WSTETH, + [LegacyTokens.WETH[cARB].symbol]: LegacyTokens.WETH, + [LegacyTokens.DAI[cARB].symbol]: LegacyTokens.DAI, + [LegacyTokens.USDC[cARB].symbol]: LegacyTokens.USDC, + [LegacyTokens.USDT[cARB].symbol]: LegacyTokens.USDT, + [LegacyTokens.WSTETH[cARB].symbol]: LegacyTokens.WSTETH, + [LegacyTokens.WEETH[cARB].symbol]: LegacyTokens.WEETH, + [LegacyTokens.WBTC[cARB].symbol]: LegacyTokens.WBTC, + [LegacyTokens.BEAN_ETH_WELL_LP[cARB].symbol]: LegacyTokens.BEAN_ETH_WELL_LP, + [LegacyTokens.BEAN_WSTETH_WELL_LP[cARB].symbol]: LegacyTokens.BEAN_WSTETH_WELL_LP, - [LegacyTokens.BEAN_WEETH_WELL_LP[i].symbol]: LegacyTokens.BEAN_WEETH_WELL_LP, - [LegacyTokens.BEAN_WBTC_WELL_LP[i].symbol]: LegacyTokens.BEAN_WBTC_WELL_LP, - [LegacyTokens.BEAN_USDC_WELL_LP[i].symbol]: LegacyTokens.BEAN_USDC_WELL_LP, - [LegacyTokens.BEAN_USDT_WELL_LP[i].symbol]: LegacyTokens.BEAN_USDT_WELL_LP, + [LegacyTokens.BEAN_WEETH_WELL_LP[cARB].symbol]: + LegacyTokens.BEAN_WEETH_WELL_LP, + [LegacyTokens.BEAN_WBTC_WELL_LP[cARB].symbol]: LegacyTokens.BEAN_WBTC_WELL_LP, + [LegacyTokens.BEAN_USDC_WELL_LP[cARB].symbol]: LegacyTokens.BEAN_USDC_WELL_LP, + [LegacyTokens.BEAN_USDT_WELL_LP[cARB].symbol]: LegacyTokens.BEAN_USDT_WELL_LP, [LegacyTokens.STALK.symbol]: LegacyTokens.STALK, [LegacyTokens.SEEDS.symbol]: LegacyTokens.SEEDS, [LegacyTokens.PODS.symbol]: LegacyTokens.PODS, [LegacyTokens.SPROUTS.symbol]: LegacyTokens.SPROUTS, [LegacyTokens.RINSABLE_SPROUTS.symbol]: LegacyTokens.RINSABLE_SPROUTS, - [LegacyTokens.BEAN_CRV3_LP[1].symbol]: LegacyTokens.BEAN_CRV3_LP, - [LegacyTokens.CRV3[1].symbol]: LegacyTokens.CRV3, - [LegacyTokens.BEAN_ETH_UNIV2_LP[1].symbol]: LegacyTokens.BEAN_ETH_UNIV2_LP, - [LegacyTokens.BEAN_LUSD_LP[1].symbol]: LegacyTokens.BEAN_LUSD_LP, - [LegacyTokens.LUSD[1].symbol]: LegacyTokens.LUSD, + [LegacyTokens.BEAN_CRV3_LP[cETH].symbol]: LegacyTokens.BEAN_CRV3_LP, + [LegacyTokens.CRV3[cETH].symbol]: LegacyTokens.CRV3, + [LegacyTokens.BEAN_ETH_UNIV2_LP[cETH].symbol]: LegacyTokens.BEAN_ETH_UNIV2_LP, + [LegacyTokens.BEAN_LUSD_LP[cETH].symbol]: LegacyTokens.BEAN_LUSD_LP, + [LegacyTokens.LUSD[cETH].symbol]: LegacyTokens.LUSD, } as const; export const useGetLegacyToken = () => { @@ -294,3 +325,76 @@ export const useGetLegacyToken = () => { return getLegacyToken; }; + +const makeEntry = ( + a: ChainConstant, + t: ChainConstant +) => ({ + ...(a[cARB] && t[cARB] ? { [a[cARB]]: t } : {}), + ...(a[cETH] && t[cETH] ? { [a[cETH]]: t } : {}), +}); + +const A = ADDRESSES; +const L = LegacyTokens; + +const ADDRESS_TO_CHAIN_CONSTANT: Record> = { + // BEAN + ...makeEntry(A.BEAN_ADDRESSES, L.BEAN), + + // UNRIPE + + ...makeEntry(A.UNRIPE_BEAN_ADDRESSES, L.UNRIPE_BEAN), + ...makeEntry(A.UNRIPE_BEAN_WSTETH_ADDRESSES, L.UNRIPE_BEAN_WSTETH), + + // ERC20 + ...makeEntry(A.WETH_ADDRESSES, L.WETH), + ...makeEntry(A.WSTETH_ADDRESSES, L.WSTETH), + ...makeEntry(A.WEETH_ADDRESSES, L.WEETH), + ...makeEntry(A.WBTC_ADDRESSES, L.WBTC), + ...makeEntry(A.DAI_ADDRESSES, L.DAI), + ...makeEntry(A.USDC_ADDRESSES, L.USDC), + ...makeEntry(A.USDT_ADDRESSES, L.USDT), + ...makeEntry(A.ARB_ADDRESSES, L.ARB), + + // LP + ...makeEntry(A.BEAN_ETH_WELL_ADDRESSES, L.BEAN_ETH_WELL_LP), + ...makeEntry(A.BEAN_WSTETH_ADDRESSS, L.BEAN_WSTETH_WELL_LP), + ...makeEntry(A.BEANWEETH_WELL_ADDRESSES, L.BEAN_WEETH_WELL_LP), + ...makeEntry(A.BEANWBTC_WELL_ADDRESSES, L.BEAN_WBTC_WELL_LP), + ...makeEntry(A.BEANUSDC_WELL_ADDRESSES, L.BEAN_USDC_WELL_LP), + ...makeEntry(A.BEANUSDT_WELL_ADDRESSES, L.BEAN_USDT_WELL_LP), + + // Deprecated + // ...makeEntry(A.CRV3_ADDRESSES, L.CRV3), + // ...makeEntry(A.BEAN_CRV3_ADDRESSES, L.BEAN_CRV3_LP), + // ...makeEntry(A.BEAN_LUSD_ADDRESSES, L.BEAN_LUSD_LP), + // ...makeEntry(A.LUSD_ADDRESSES, L.LUSD), + // ...makeEntry(A.BEAN_ETH_UNIV2_LP_ADDRESSES, L.BEAN_ETH_UNIV2_LP), +} as const; + +/** + * + * @returns a function that takes an address (chain agnostic) and returns the sdk token instance + * for the chain the user is currently on + * + */ +export const useGetNormaliseChainToken = () => { + const { erc20TokenMap } = useTokens(); + const chainId = useResolvedChainId(); + + /** + * returns the sdk token instance for the chain the user is currently on if available + */ + const getToken = useCallback( + (_address: string) => { + const token = ADDRESS_TO_CHAIN_CONSTANT[_address.toLowerCase()]; + + return token?.[chainId] + ? erc20TokenMap[getTokenIndex(token[chainId])] + : undefined; + }, + [erc20TokenMap, chainId] + ); + + return getToken; +}; \ No newline at end of file diff --git a/projects/ui/src/hooks/chain/useChainId.ts b/projects/ui/src/hooks/chain/useChainId.ts index 2695738f9..8d8fd6fe4 100644 --- a/projects/ui/src/hooks/chain/useChainId.ts +++ b/projects/ui/src/hooks/chain/useChainId.ts @@ -1,3 +1,4 @@ +import { ChainResolver } from '@beanstalk/sdk-core'; import { useMemo } from 'react'; import { useAccount } from 'wagmi'; import { SupportedChainId } from '~/constants'; @@ -17,3 +18,9 @@ export default function useChainId() { const { chain } = useAccount(); return useMemo(() => chain?.id || defaultChainId, [chain?.id]); } + +export function useResolvedChainId() { + const chainId = useChainId(); + + return ChainResolver.resolveToMainnetChainId(chainId); +} diff --git a/projects/ui/src/hooks/farmer/useFarmerBalancesBreakdown.ts b/projects/ui/src/hooks/farmer/useFarmerBalancesBreakdown.ts index cf743d95a..cb1b3e7dc 100644 --- a/projects/ui/src/hooks/farmer/useFarmerBalancesBreakdown.ts +++ b/projects/ui/src/hooks/farmer/useFarmerBalancesBreakdown.ts @@ -184,7 +184,10 @@ export function useFarmerBalancesL1Breakdown() { addresses.forEach((address) => { const token = whitelist[address]; const siloBalance = siloBalances[address]; - const tokenBalance = tokenBalances[address] || ZERO_BN; + const tokenBalance = tokenBalances[address] || { + internal: ZERO_BN, + external: ZERO_BN, + }; // Ensure we've loaded a Silo Balance for this token. if (siloBalance) { @@ -222,6 +225,8 @@ export function useFarmerBalancesL1Breakdown() { } }); + console.log('useFarmersBalancesL1Breakdown', prev); + return prev; }, [whitelist, addresses, siloBalances, tokenBalances, getUSD]); } diff --git a/projects/ui/src/hooks/farmer/useFarmerSiloHistory.ts b/projects/ui/src/hooks/farmer/useFarmerSiloHistory.ts index 3c9d84000..614b6d120 100644 --- a/projects/ui/src/hooks/farmer/useFarmerSiloHistory.ts +++ b/projects/ui/src/hooks/farmer/useFarmerSiloHistory.ts @@ -10,14 +10,14 @@ import useSeasonsQuery, { } from '~/hooks/beanstalk/useSeasonsQuery'; import useInterpolateDeposits from '~/hooks/farmer/useInterpolateDeposits'; import useInterpolateStalk from '~/hooks/farmer/useInterpolateStalk'; -import { useFarmerBalancesL1Breakdown } from './useFarmerBalancesBreakdown'; +import useFarmerBalancesBreakdown from './useFarmerBalancesBreakdown'; const useFarmerSiloHistory = ( account: string | undefined, itemizeByToken: boolean = false, includeStalk: boolean = false ) => { - const breakdown = useFarmerBalancesL1Breakdown(); // TODO: Fix me + const breakdown = useFarmerBalancesBreakdown(); /// Data const siloRewardsQuery = useFarmerSiloRewardsQuery({ diff --git a/projects/ui/src/hooks/farmer/useInterpolateDeposits.ts b/projects/ui/src/hooks/farmer/useInterpolateDeposits.ts index 2527ab3e4..da0f42b5b 100644 --- a/projects/ui/src/hooks/farmer/useInterpolateDeposits.ts +++ b/projects/ui/src/hooks/farmer/useInterpolateDeposits.ts @@ -9,9 +9,13 @@ import { interpolateFarmerDepositedValue, SnapshotBeanstalk, } from '~/util/Interpolate'; -import { SupportedChainId, ZERO_BN } from '~/constants'; -import { UNRIPE_BEAN_WSTETH } from '~/constants/tokens'; +import { ZERO_BN } from '~/constants'; import useUnripeUnderlyingMap from '../beanstalk/useUnripeUnderlying'; +import { + useGetNormaliseChainToken, + useUnripeTokens, + useWhitelistedTokens, +} from '../beanstalk/useTokens'; const useInterpolateDeposits = ( siloAssetsQuery: ReturnType, @@ -20,12 +24,11 @@ const useInterpolateDeposits = ( ) => { const unripe = useAppSelector((state) => state._bean.unripe); const beanPools = useAppSelector((state) => state._bean.pools); + const { UNRIPE_BEAN_WSTETH: urBeanLP } = useUnripeTokens(); + const normalizeToken = useGetNormaliseChainToken(); + const { whitelist } = useWhitelistedTokens(); const underlyingMap = useUnripeUnderlyingMap(); - // const sdk = useSdk(); - // BS3TODO: fix me - const urBeanLP = UNRIPE_BEAN_WSTETH[SupportedChainId.ETH_MAINNET]; - return useMemo(() => { if ( priceQuery.loading || @@ -40,15 +43,14 @@ const useInterpolateDeposits = ( // sorted by Season and normalized based on chop rate. const snapshots = siloAssetsQuery.data.farmer.silo.assets .reduce((prev, asset) => { - const tokenAddress = asset.token.toLowerCase(); + const tokenAddress = normalizeToken(asset.token)?.address; + if (!tokenAddress) return prev; prev.push( ...asset.hourlySnapshots.map((snapshot) => { let hourlyDepositedBDV; if (tokenAddress in unripe) { - if ( - tokenAddress.toLowerCase() === urBeanLP.address.toLowerCase() - ) { + if (tokenAddress === urBeanLP.address) { // formula: penalty = amount of BEANwstETH per 1 urBEANwstETH. // bdv of urBEANwstETH = amount * penalty * BDV of 1 BEANwstETH const underlying = underlyingMap[tokenAddress]; @@ -89,9 +91,15 @@ const useInterpolateDeposits = ( return interpolateFarmerDepositedValue( snapshots, priceQuery.data.seasons, - itemizeByToken + itemizeByToken, + 24, + whitelist, + normalizeToken, + ); }, [ + normalizeToken, + whitelist, priceQuery.loading, priceQuery.data?.seasons, siloAssetsQuery.data?.farmer?.silo?.assets, diff --git a/projects/ui/src/hooks/farmer/useInterpolateStalk.ts b/projects/ui/src/hooks/farmer/useInterpolateStalk.ts index b80dd8f26..f802df98b 100644 --- a/projects/ui/src/hooks/farmer/useInterpolateStalk.ts +++ b/projects/ui/src/hooks/farmer/useInterpolateStalk.ts @@ -1,10 +1,9 @@ import { useMemo } from 'react'; -import { useSelector } from 'react-redux'; import { useFarmerSiloRewardsQuery, useWhitelistTokenRewardsQuery } from '~/generated/graphql'; import useSeason from '~/hooks/beanstalk/useSeason'; -import { AppState } from '~/state'; +import { useAppSelector } from '~/state'; import { interpolateFarmerStalk } from '~/util/Interpolate'; -import useSdk from '../sdk'; +import { useWhitelistedTokens } from '../beanstalk/useTokens'; const useInterpolateStalk = ( siloRewardsQuery: ReturnType, @@ -12,21 +11,18 @@ const useInterpolateStalk = ( skip: boolean = false ) => { const season = useSeason(); - const sdk = useSdk(); + const { whitelist } = useWhitelistedTokens(); // Balances - const balances = useSelector< - AppState, - AppState['_farmer']['silo']['balances'] - >((state) => state._farmer.silo.balances); + const balances = useAppSelector((state) => state._farmer.silo.balances); return useMemo(() => { if (skip || !season.gt(0) || !siloRewardsQuery.data?.snapshots?.length || !whitelistQuery.data?.snapshots?.length) return [[], []]; const siloSnapshots = siloRewardsQuery.data.snapshots; const whitelistSnapshots = whitelistQuery.data.snapshots; - return interpolateFarmerStalk(siloSnapshots, whitelistSnapshots, season, undefined, balances, sdk); - }, [skip, siloRewardsQuery.data?.snapshots, whitelistQuery.data?.snapshots, season, balances, sdk]); + return interpolateFarmerStalk(siloSnapshots, whitelistSnapshots, season, undefined, balances, whitelist); + }, [skip, siloRewardsQuery.data?.snapshots, whitelistQuery.data?.snapshots, season, balances, whitelist]); }; export default useInterpolateStalk; diff --git a/projects/ui/src/util/Interpolate.ts b/projects/ui/src/util/Interpolate.ts index 132e9d1e9..55e62bad4 100644 --- a/projects/ui/src/util/Interpolate.ts +++ b/projects/ui/src/util/Interpolate.ts @@ -1,7 +1,7 @@ import BigNumber from 'bignumber.js'; import { DateTime } from 'luxon'; import { TokenMap, ZERO_BN } from '~/constants'; -import { BEAN, SEEDS, SILO_WHITELIST, STALK } from '~/constants/tokens'; +import { BEAN, SEEDS, STALK } from '~/constants/tokens'; import { FarmerSiloRewardsQuery, SeasonalInstantPriceQuery, @@ -15,7 +15,8 @@ import { } from '~/util'; import { BaseDataPoint } from '~/components/Common/Charts/ChartPropProvider'; import { FarmerSiloTokenBalance } from '~/state/farmer/silo'; -import { BeanstalkSDK } from '@beanstalk/sdk'; +import { Token } from '@beanstalk/sdk'; +import { useWhitelistedTokens } from '~/hooks/beanstalk/useTokens'; export type Snapshot = { id: string; @@ -40,7 +41,8 @@ export type SnapshotBeanstalk = { export const addBufferSeasons = ( points: BaseDataPoint[], num: number = 24, - itemizeByToken: boolean = false + whitelist: ReturnType['whitelist'], + itemizeByToken: boolean = false, ) => { if (points.length === 0) return []; const d = DateTime.fromJSDate(points[0].date); @@ -58,8 +60,8 @@ export const addBufferSeasons = ( value: 0, // FIXME: have the chart default to zero if a key isn't provided? ...(itemizeByToken - ? SILO_WHITELIST.reduce>((prev, curr) => { - prev[curr[1].address] = 0; + ? whitelist.reduce>((prev, curr) => { + prev[curr.address] = 0; return prev; }, {}) : undefined), @@ -80,11 +82,10 @@ export const interpolateFarmerStalk = ( season: BigNumber, bufferSeasons: number = 24, farmerSiloBalances: TokenMap, - sdk: BeanstalkSDK + whitelist: ReturnType['whitelist'] ) => { // Sequence let j = 0; - const siloWhitelist = sdk.tokens.siloWhitelist; const minSeason = snapshots[j].season; const maxSeason = season.toNumber(); // current season let currStalk: BigNumber = ZERO_BN; @@ -94,7 +95,7 @@ export const interpolateFarmerStalk = ( secondsToDate(snapshots[j].createdAt) ); let nextSeason: number | undefined = minSeason; - + // Add buffer points before the first snapshot const stalk: BaseDataPoint[] = []; const seeds: BaseDataPoint[] = []; @@ -102,21 +103,27 @@ export const interpolateFarmerStalk = ( function getSeedsPerBdv(_season: number) { let _output: BigNumber = ZERO_BN; - siloWhitelist.forEach((token) => { + whitelist.forEach((token) => { if (farmerSiloBalances[token.address]) { const deposits = farmerSiloBalances[token.address].deposited; - const index = whitelistSnapshots.findLastIndex((snapshot) => snapshot.season <= _season && snapshot.token.id === token.address.toLowerCase()); + const index = whitelistSnapshots.findLastIndex( + (snapshot) => + snapshot.season <= _season && + snapshot.token.id === token.address.toLowerCase() + ); if (index >= 0) { - const seedsPerBdv = BigNumber(whitelistSnapshots[index].stalkEarnedPerSeason).div(1_000_000); - _output = (seedsPerBdv).multipliedBy(deposits.bdv).plus(_output); - }; - }; + const seedsPerBdv = BigNumber( + whitelistSnapshots[index].stalkEarnedPerSeason + ).div(1_000_000); + _output = seedsPerBdv.multipliedBy(deposits.bdv).plus(_output); + } + } }); return _output; - }; + } let lastSeedsSnapshot: BigNumber = ZERO_BN; - const lastSnapshotSeason = snapshots[snapshots.length - 1].season; + const lastSnapshotSeason = snapshots[snapshots.length - 1].season; for (let s = minSeason; s <= maxSeason; s += 1) { if (s === nextSeason) { // Reached a data point for which we have a snapshot. @@ -135,13 +142,13 @@ export const interpolateFarmerStalk = ( currSeeds = lastSeedsSnapshot; } else { currSeeds = getSeedsPerBdv(s); - }; + } // Estimate actual amount of stalk / grown stalk using seeds // Each Seed grows 1/10,000 Stalk per Season - currGrownStalk = currGrownStalk.plus((currSeeds).multipliedBy(1 / 10_000)); + currGrownStalk = currGrownStalk.plus(currSeeds.multipliedBy(1 / 10_000)); currTimestamp = currTimestamp.plus({ hours: 1 }); - }; + } stalk.push({ season: s, date: currTimestamp.toJSDate(), @@ -160,9 +167,9 @@ export const interpolateFarmerStalk = ( } return [ - addBufferSeasons(stalk, bufferSeasons, false), - addBufferSeasons(seeds, bufferSeasons, false), - addBufferSeasons(grownStalk, bufferSeasons, false), + addBufferSeasons(stalk, bufferSeasons, whitelist, false), + addBufferSeasons(seeds, bufferSeasons, whitelist, false), + addBufferSeasons(grownStalk, bufferSeasons, whitelist, false), ] as const; }; @@ -175,10 +182,12 @@ export const interpolateFarmerDepositedValue = ( snapshots: SnapshotBeanstalk[], // oldest season first _prices: SeasonalInstantPriceQuery['seasons'], // most recent season first itemizeByToken: boolean = true, - bufferSeasons: number = 24 + bufferSeasons: number = 24, + whitelist: ReturnType['whitelist'], + normaliseChainToken: (token: string) => Token | undefined ) => { const prices = Array.from(_prices).reverse(); // FIXME: inefficient - if (prices.length === 0) return []; + if (!prices.length || !snapshots.length) return []; // Sequence let j = 0; @@ -189,8 +198,8 @@ export const interpolateFarmerDepositedValue = ( // null if we don't need to itemize by token const currBDVByToken = itemizeByToken - ? SILO_WHITELIST.reduce<{ [address: string]: BigNumber }>((prev, curr) => { - prev[curr[1].address] = ZERO_BN; + ? whitelist.reduce<{ [address: string]: BigNumber }>((prev, curr) => { + prev[curr.address] = ZERO_BN; return prev; }, {}) : null; @@ -237,7 +246,11 @@ export const interpolateFarmerDepositedValue = ( thisBDV = thisBDV.plus(thisSnapshotBDV); if (currBDVByToken) { - const tokenAddr = snapshots[j]?.id.split('-')[1].toLowerCase(); + const snapshotTokenAddress = snapshots[j]?.id + .split('-')[1] + .toLowerCase(); + const tokenAddr = normaliseChainToken(snapshotTokenAddress)?.address; + if (tokenAddr && currBDVByToken[tokenAddr]) { currBDVByToken[tokenAddr] = currBDVByToken[tokenAddr].plus(thisSnapshotBDV); @@ -252,8 +265,8 @@ export const interpolateFarmerDepositedValue = ( date: thisTimestamp.toJSDate(), value: thisBDV.multipliedBy(thisPriceBN).toNumber(), ...(currBDVByToken - ? SILO_WHITELIST.reduce>((prev, token) => { - const addr = token[1].address; + ? whitelist.reduce>((prev, token) => { + const addr = token.address; prev[addr] = currBDVByToken[addr] .multipliedBy(thisPriceBN) .toNumber(); @@ -265,5 +278,5 @@ export const interpolateFarmerDepositedValue = ( currBDV = thisBDV; } - return addBufferSeasons(points, bufferSeasons, Boolean(currBDVByToken)); + return addBufferSeasons(points, bufferSeasons, whitelist, Boolean(currBDVByToken)); }; From 89558d53c841ba5dc84cfa529794cf7e6c648fa6 Mon Sep 17 00:00:00 2001 From: Spacebean Date: Sat, 14 Sep 2024 04:16:51 -0600 Subject: [PATCH 14/14] feat: update UI --- projects/ui/src/components/App/index.tsx | 4 +- projects/ui/src/components/Nav/routes.ts | 14 +- .../Silo/SeedGauge/SeedGaugeTable.tsx | 2 + .../src/hooks/beanstalk/useAvgSeedsPerBDV.ts | 1 + .../ui/src/hooks/beanstalk/useSeedGauge.ts | 166 +++++++++++++----- 5 files changed, 138 insertions(+), 49 deletions(-) diff --git a/projects/ui/src/components/App/index.tsx b/projects/ui/src/components/App/index.tsx index 4955c7bef..a5dd6965b 100644 --- a/projects/ui/src/components/App/index.tsx +++ b/projects/ui/src/components/App/index.tsx @@ -32,7 +32,7 @@ import GovernancePage from '~/pages/governance'; import ProposalPage from '~/pages/governance/proposal'; import FarmerDelegatePage from '~/pages/governance/delegate'; import TransactionHistoryPage from '~/pages/history'; -import NFTPage from '~/pages/nft'; +// import NFTPage from '~/pages/nft'; import SiloPage from '~/pages/silo'; import SiloTokenPage from '~/pages/silo/token'; import SwapPage from '~/pages/swap'; @@ -246,7 +246,7 @@ function Arbitrum() { element={} /> - } /> + {/* } /> */} } /> ['data']; onToggleAdvancedMode: (v: boolean) => void; }) => { + + console.log('data', data); const [isAdvanced, setIsAdvanced] = useState(false); const rows = useTableConfig(isAdvanced, data); const cols = isAdvanced ? advancedViewColumns : basicViewColumns; diff --git a/projects/ui/src/hooks/beanstalk/useAvgSeedsPerBDV.ts b/projects/ui/src/hooks/beanstalk/useAvgSeedsPerBDV.ts index b11219e62..347a0fd45 100644 --- a/projects/ui/src/hooks/beanstalk/useAvgSeedsPerBDV.ts +++ b/projects/ui/src/hooks/beanstalk/useAvgSeedsPerBDV.ts @@ -55,6 +55,7 @@ const apolloFetch = async ( notifyOnNetworkStatusChange: true, }); +// BS3TODO: Fix me to include L1 silo whitelist // Main hook with improved error handling and performance const useAvgSeedsPerBDV = ( range: Range