diff --git a/contracts/locked/LockedSOVMigration.sol b/contracts/locked/LockedSOVMigration.sol new file mode 100644 index 000000000..f18bf9bd8 --- /dev/null +++ b/contracts/locked/LockedSOVMigration.sol @@ -0,0 +1,252 @@ +pragma solidity ^0.5.17; + +import "../openzeppelin/SafeMath.sol"; +import "../interfaces/IERC20.sol"; +import "../governance/Vesting/VestingRegistry.sol"; +import "../governance/Vesting/VestingLogic.sol"; +import "./ILockedSOV.sol"; + +/** + * @title The Locked SOV Migration Contract. + * @notice This contract is a migration replacement for LockedSOV that prevents + * new vesting creation and withdrawals during the Sovryn Layer migration. + * @dev All vesting creation and withdrawal functions are disabled (do nothing). + * This contract maintains the same interface as LockedSOV to prevent breaking + * integrations, but all state-changing operations are muted. + */ +contract LockedSOVMigration is ILockedSOV { + using SafeMath for uint256; + + uint256 public constant MAX_BASIS_POINT = 10000; + uint256 public constant MAX_DURATION = 37; + + /* Storage */ + + /// @notice True if the migration to a new Locked SOV Contract has started. + bool public migration; + + /// @notice The cliff is the time period after which the tokens begin to unlock. + uint256 public cliff; + /// @notice The duration is the time period after all tokens will have been unlocked. + uint256 public duration; + + /// @notice The SOV token contract. + IERC20 public SOV; + /// @notice The Vesting registry contract. + VestingRegistry public vestingRegistry; + /// @notice The New (Future) Locked SOV. + ILockedSOV public newLockedSOV; + + /// @notice The locked user balances. + mapping(address => uint256) private lockedBalances; + /// @notice The unlocked user balances. + mapping(address => uint256) private unlockedBalances; + /// @notice The contracts/wallets with admin power. + mapping(address => bool) private isAdmin; + + /* Events */ + + event AdminAdded(address indexed _initiator, address indexed _newAdmin); + event AdminRemoved(address indexed _initiator, address indexed _removedAdmin); + event RegistryCliffAndDurationUpdated( + address indexed _initiator, + address indexed _vestingRegistry, + uint256 _cliff, + uint256 _duration + ); + event Deposited( + address indexed _initiator, + address indexed _userAddress, + uint256 _sovAmount, + uint256 _basisPoint + ); + event Withdrawn(address indexed _initiator, address indexed _userAddress, uint256 _sovAmount); + event VestingCreated( + address indexed _initiator, + address indexed _userAddress, + address indexed _vesting + ); + event TokenStaked(address indexed _initiator, address indexed _vesting, uint256 _amount); + event MigrationStarted(address indexed _initiator, address indexed _newLockedSOV); + event UserTransfered(address indexed _initiator, uint256 _amount); + + /* Modifiers */ + + modifier onlyAdmin() { + require(isAdmin[msg.sender], "Only admin can call this."); + _; + } + + modifier migrationAllowed() { + require(migration, "Migration has not yet started."); + _; + } + + /* Constructor */ + + /** + * @notice Setup the required parameters. + * @param _SOV The SOV Token Address. + * @param _vestingRegistry The Vesting Registry Address. + * @param _cliff The time period after which the tokens begin to unlock. + * @param _duration The time period after all tokens will have been unlocked. + * @param _admins The list of Admins to be added. + */ + constructor( + address _SOV, + address _vestingRegistry, + uint256 _cliff, + uint256 _duration, + address[] memory _admins + ) public { + require(_SOV != address(0), "Invalid SOV Address."); + require(_vestingRegistry != address(0), "Vesting registry address is invalid."); + require(_duration < MAX_DURATION, "Duration is too long."); + + SOV = IERC20(_SOV); + vestingRegistry = VestingRegistry(_vestingRegistry); + cliff = _cliff * 4 weeks; + duration = _duration * 4 weeks; + + for (uint256 index = 0; index < _admins.length; index++) { + isAdmin[_admins[index]] = true; + } + } + + /* Public or External Functions */ + + function addAdmin(address _newAdmin) public onlyAdmin { + require(_newAdmin != address(0), "Invalid Address."); + require(!isAdmin[_newAdmin], "Address is already admin."); + isAdmin[_newAdmin] = true; + + emit AdminAdded(msg.sender, _newAdmin); + } + + function removeAdmin(address _adminToRemove) public onlyAdmin { + require(isAdmin[_adminToRemove], "Address is not an admin."); + isAdmin[_adminToRemove] = false; + + emit AdminRemoved(msg.sender, _adminToRemove); + } + + function changeRegistryCliffAndDuration( + address _vestingRegistry, + uint256 _cliff, + uint256 _duration + ) external onlyAdmin { + require( + address(vestingRegistry) != _vestingRegistry, + "Vesting Registry has to be different for changing duration and cliff." + ); + require(_duration != 0, "Duration cannot be zero."); + require(_duration < MAX_DURATION, "Duration is too long."); + + vestingRegistry = VestingRegistry(_vestingRegistry); + + cliff = _cliff * 4 weeks; + duration = _duration * 4 weeks; + + emit RegistryCliffAndDurationUpdated(msg.sender, _vestingRegistry, _cliff, _duration); + } + + /** + * @notice MUTED: Deposit function does nothing during migration. + * @dev This function is muted to prevent new deposits during Sovryn Layer migration. + */ + function deposit(address _userAddress, uint256 _sovAmount, uint256 _basisPoint) external { + // MUTED: Do nothing + // Emit event for tracking but don't process deposit + emit Deposited(msg.sender, _userAddress, _sovAmount, _basisPoint); + } + + /** + * @notice MUTED: DepositSOV function does nothing during migration. + * @dev This function is muted to prevent new deposits during Sovryn Layer migration. + */ + function depositSOV(address _userAddress, uint256 _sovAmount) external { + // MUTED: Do nothing + // Emit event for tracking but don't process deposit + emit Deposited(msg.sender, _userAddress, _sovAmount, 0); + } + + /** + * @notice MUTED: Withdraw function does nothing during migration. + * @dev This function is muted to prevent withdrawals during Sovryn Layer migration. + * Users should wait for migration to Sovryn Layer to access their funds. + */ + function withdraw(address _receiverAddress) public { + // MUTED: Do nothing + // Emit event for tracking but don't process withdrawal + emit Withdrawn(msg.sender, _receiverAddress, 0); + } + + /** + * @notice MUTED: CreateVestingAndStake function does nothing during migration. + * @dev This function is muted to prevent new vesting creation during Sovryn Layer migration. + */ + function createVestingAndStake() public { + // MUTED: Do nothing + } + + /** + * @notice MUTED: CreateVesting function does nothing during migration. + * @dev This function is muted to prevent new vesting creation during Sovryn Layer migration. + */ + function createVesting() public returns (address _vestingAddress) { + // MUTED: Do nothing, return zero address + return address(0); + } + + /** + * @notice MUTED: StakeTokens function does nothing during migration. + * @dev This function is muted to prevent staking during Sovryn Layer migration. + */ + function stakeTokens() public { + // MUTED: Do nothing + } + + /** + * @notice MUTED: WithdrawAndStakeTokens function does nothing during migration. + * @dev This function is muted to prevent withdrawals and staking during Sovryn Layer migration. + */ + function withdrawAndStakeTokens(address _receiverAddress) external { + // MUTED: Do nothing + } + + /** + * @notice MUTED: WithdrawAndStakeTokensFrom function does nothing during migration. + * @dev This function is muted to prevent withdrawals and staking during Sovryn Layer migration. + */ + function withdrawAndStakeTokensFrom(address _userAddress) external { + // MUTED: Do nothing + } + + function startMigration(address _newLockedSOV) external onlyAdmin { + require(_newLockedSOV != address(0), "New Locked SOV Address is Invalid."); + newLockedSOV = ILockedSOV(_newLockedSOV); + SOV.approve(_newLockedSOV, uint256(-1)); + migration = true; + + emit MigrationStarted(msg.sender, _newLockedSOV); + } + + function transfer() external migrationAllowed { + // MUTED: Do nothing during migration + emit UserTransfered(msg.sender, 0); + } + + /* Getter or Read Functions */ + + function getLockedBalance(address _addr) external view returns (uint256 _balance) { + return lockedBalances[_addr]; + } + + function getUnlockedBalance(address _addr) external view returns (uint256 _balance) { + return unlockedBalances[_addr]; + } + + function adminStatus(address _addr) external view returns (bool _status) { + return isAdmin[_addr]; + } +} diff --git a/deployment/deploy/2160-deploy-LockedSovMigration.js b/deployment/deploy/2160-deploy-LockedSovMigration.js new file mode 100644 index 000000000..fd264cddb --- /dev/null +++ b/deployment/deploy/2160-deploy-LockedSovMigration.js @@ -0,0 +1,81 @@ +const col = require("cli-color"); + +const func = async function (hre) { + const { + ethers, + deployments: { deploy, log, get }, + getNamedAccounts, + } = hre; + const { deployer } = await getNamedAccounts(); + + log("\nDeploying LockedSOVMigration..."); + + // Get existing contract addresses + const SOV = await get("SOV"); + const VestingRegistry = await get("VestingRegistryProxy"); + const LockedSOV = await get("LockedSOV"); + + // Get LockedSOV to copy config + const lockedSOVContract = await ethers.getContractAt("ILockedSOV", LockedSOV.address); + + const cliff = await lockedSOVContract.cliff(); + const duration = await lockedSOVContract.duration(); + + // Convert cliff and duration from seconds to 4-week periods + const FOUR_WEEKS = 4 * 7 * 24 * 60 * 60; + const cliffPeriods = cliff.div(FOUR_WEEKS); + const durationPeriods = duration.div(FOUR_WEEKS); + + log(` SOV Token: ${SOV.address}`); + log(` VestingRegistry: ${VestingRegistry.address}`); + log(` Cliff: ${cliffPeriods} 4-week periods`); + log(` Duration: ${durationPeriods} 4-week periods`); + + // Get multisig as admin + const multisig = await get("MultiSigWallet"); + const admins = [multisig.address]; + + log(` Admins: ${admins.join(", ")}`); + + const lockedSOVMigration = await deploy("LockedSOVMigration", { + from: deployer, + args: [ + SOV.address, + VestingRegistry.address, + cliffPeriods.toString(), + durationPeriods.toString(), + admins, + ], + log: true, + }); + + log(col.bgGreen(`\nLockedSOVMigration deployed at: ${lockedSOVMigration.address}`)); + + // Verify contract on block explorer if not local network + if (hre.network.name !== "hardhat" && hre.network.name !== "localhost") { + log("\nWaiting for block confirmations before verification..."); + await new Promise((resolve) => setTimeout(resolve, 30000)); // Wait 30 seconds + + try { + await hre.run("verify:verify", { + address: lockedSOVMigration.address, + constructorArguments: [ + SOV.address, + VestingRegistry.address, + cliffPeriods.toString(), + durationPeriods.toString(), + admins, + ], + }); + log(col.bgGreen("Contract verified on block explorer")); + } catch (error) { + log(col.bgYellow(`Verification failed: ${error.message}`)); + } + } + + return true; +}; + +func.tags = ["LockedSOVMigration"]; +func.dependencies = ["SOV", "VestingRegistryProxy", "MultiSigWallet", "LockedSOV"]; +module.exports = func; diff --git a/hardhat/tasks/sips/args/sipArgs.js b/hardhat/tasks/sips/args/sipArgs.js index 51bfbc100..639153870 100644 --- a/hardhat/tasks/sips/args/sipArgs.js +++ b/hardhat/tasks/sips/args/sipArgs.js @@ -1249,6 +1249,173 @@ const getArgsSip0087 = async (hre) => { return { args, governor: "GovernorOwner" }; }; +const getArgsSipStakingFreeze = async (hre) => { + // Freeze Staking contract before Sovryn Layer migration + const { + ethers, + deployments: { get }, + } = hre; + const abiCoder = new ethers.utils.AbiCoder(); + + const stakingProxy = await get("StakingProxy"); + const staking = await ethers.getContractAt("IStaking", stakingProxy.address); + const stakingOwner = await staking.owner(); + + // Validate + if (!network.tags.mainnet) { + logger.error("Unknown network"); + process.exit(1); + } + + // Check if already frozen + const isFrozen = await staking.frozen(); + if (isFrozen) { + logger.error("Staking contract is already frozen"); + process.exit(1); + } + + logger.log( + col.bgYellow( + `Preparing SIP to freeze Staking contract at ${stakingProxy.address} for Sovryn Layer migration` + ) + ); + logger.log(col.bgBlue(`Current Staking owner: ${stakingOwner}`)); + logger.log(col.bgBlue(`Current frozen state: ${isFrozen}`)); + + const args = { + targets: [stakingProxy.address], + targetOwnerValidationAddresses: [stakingOwner], + values: [0], + signatures: ["freezeUnfreeze(bool)"], + data: [abiCoder.encode(["bool"], [true])], + description: + "SIP-00XX: Freeze Staking Contract for Sovryn Layer Migration, Details: https://github.com/DistributedCollective/SIPS/blob/XXXXXX/SIP-00XX.md, sha256: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + }; + + return { args, governor: "GovernorOwner" }; +}; + +const getArgsSipStakingUnfreeze = async (hre) => { + // Unfreeze Staking contract (emergency rollback or post-migration) + const { + ethers, + deployments: { get }, + } = hre; + const abiCoder = new ethers.utils.AbiCoder(); + + const stakingProxy = await get("StakingProxy"); + const staking = await ethers.getContractAt("IStaking", stakingProxy.address); + const stakingOwner = await staking.owner(); + + // Validate + if (!network.tags.mainnet) { + logger.error("Unknown network"); + process.exit(1); + } + + // Check if frozen + const isFrozen = await staking.frozen(); + if (!isFrozen) { + logger.error("Staking contract is not frozen"); + process.exit(1); + } + + logger.log( + col.bgYellow(`Preparing SIP to unfreeze Staking contract at ${stakingProxy.address}`) + ); + logger.log(col.bgBlue(`Current Staking owner: ${stakingOwner}`)); + logger.log(col.bgBlue(`Current frozen state: ${isFrozen}`)); + + const args = { + targets: [stakingProxy.address], + targetOwnerValidationAddresses: [stakingOwner], + values: [0], + signatures: ["freezeUnfreeze(bool)"], + data: [abiCoder.encode(["bool"], [false])], + description: + "SIP-00XX: Unfreeze Staking Contract, Details: https://github.com/DistributedCollective/SIPS/blob/XXXXXX/SIP-00XX.md, sha256: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + }; + + return { args, governor: "GovernorOwner" }; +}; + +const getArgsSipReplaceLockedSOV = async (hre) => { + // Replace LockedSOV with migration contract in Protocol, LM, and other contracts + const { + ethers, + deployments: { get }, + } = hre; + const abiCoder = new ethers.utils.AbiCoder(); + + const lockedSOVMigration = await get("LockedSOVMigration"); + const protocol = await ethers.getContract("ISovryn"); + const protocolOwner = await protocol.owner(); + + // Validate + if (!network.tags.mainnet) { + logger.error("Unknown network"); + process.exit(1); + } + + // Get current LockedSOV address from protocol + const currentLockedSOV = await protocol.getLockedSOVAddress(); + if (currentLockedSOV.toLowerCase() === lockedSOVMigration.address.toLowerCase()) { + logger.error("LockedSOVMigration already set in protocol"); + process.exit(1); + } + + logger.log( + col.bgYellow( + `Preparing SIP to replace LockedSOV with migration contract ${lockedSOVMigration.address}` + ) + ); + logger.log(col.bgBlue(`Current LockedSOV: ${currentLockedSOV}`)); + logger.log(col.bgBlue(`New LockedSOV Migration: ${lockedSOVMigration.address}`)); + logger.log(col.bgBlue(`Protocol owner: ${protocolOwner}`)); + + // Get Liquidity Mining contracts + const liquidityMiningContracts = []; + try { + // Add all deployed LM contracts here + const lmV1 = await get("LiquidityMining"); + const lmV2 = await get("LiquidityMiningV2"); + liquidityMiningContracts.push(lmV1.address, lmV2.address); + } catch (error) { + logger.warn("Some LiquidityMining contracts not found in deployments"); + } + + const targets = []; + const values = []; + const signatures = []; + const datas = []; + + // 1. Update Protocol + targets.push(protocol.address); + values.push(0); + signatures.push("setLockedSOVAddress(address)"); + datas.push(abiCoder.encode(["address"], [lockedSOVMigration.address])); + + // 2. Update all Liquidity Mining contracts + for (const lmAddress of liquidityMiningContracts) { + targets.push(lmAddress); + values.push(0); + signatures.push("setLockedSOV(address)"); + datas.push(abiCoder.encode(["address"], [lockedSOVMigration.address])); + } + + const args = { + targets: targets, + targetOwnerValidationAddresses: Array(targets.length).fill(protocolOwner), + values: values, + signatures: signatures, + data: datas, + description: + "SIP-00XX: Replace LockedSOV with Migration Contract for Sovryn Layer Migration, Details: https://github.com/DistributedCollective/SIPS/blob/XXXXXX/SIP-00XX.md, sha256: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", // @todo update description + }; + + return { args, governor: "GovernorOwner" }; +}; + module.exports = { sampleGovernorAdminSIP, sampleGovernorOwnerSIP, @@ -1272,4 +1439,7 @@ module.exports = { getArgsSip0084Part1, getArgsSip0084Part2, getArgsSip0087, + getArgsSipStakingFreeze, + getArgsSipStakingUnfreeze, + getArgsSipReplaceLockedSOV, }; diff --git a/scripts/lockedSOV/config/lockedSOVUsers.json.example b/scripts/lockedSOV/config/lockedSOVUsers.json.example new file mode 100644 index 000000000..84b0a299a --- /dev/null +++ b/scripts/lockedSOV/config/lockedSOVUsers.json.example @@ -0,0 +1,11 @@ +{ + "network": "rsk-mainnet", + "fetchedAt": "2026-01-30T00:00:00.000Z", + "lockedSOVAddress": "0xC4E3c5D0c7CAa5E0f417784c720A7860B97a4753", + "count": 3, + "addresses": [ + "0x1111111111111111111111111111111111111111", + "0x2222222222222222222222222222222222222222", + "0x3333333333333333333333333333333333333333" + ] +} diff --git a/scripts/lockedSOV/fetch_lockedSOV_users.ts b/scripts/lockedSOV/fetch_lockedSOV_users.ts new file mode 100644 index 000000000..0d726b683 --- /dev/null +++ b/scripts/lockedSOV/fetch_lockedSOV_users.ts @@ -0,0 +1,194 @@ +// scripts/lockedSOV/fetch_lockedSOV_users.ts +import { ethers } from "ethers"; +import fs from "fs"; +import path from "path"; +import yargs from "yargs"; +import { hideBin } from "yargs/helpers"; +import dotenv from "dotenv"; +dotenv.config(); + +const LOCKED_SOV_ABI = [ + "event Deposited(address indexed _initiator, address indexed _userAddress, uint256 _sovAmount, uint256 _basisPoint)", + "event VestingCreated(address indexed _initiator, address indexed _userAddress, address indexed _vesting)", + "event Withdrawn(address indexed _initiator, address indexed _userAddress, uint256 _sovAmount)", +]; + +async function fetchLockedSOVUsers( + lockedSOVAddress: string, + rpcUrl: string, + fromBlock: number, + toBlock: number | "latest", +): Promise> { + console.log("\nFetching LockedSOV user addresses from events..."); + const provider = new ethers.providers.JsonRpcProvider(rpcUrl); + const lockedSOV = new ethers.Contract( + lockedSOVAddress, + LOCKED_SOV_ABI, + provider, + ); + + const userAddresses = new Set(); + const batchSize = 10000; + + let currentFromBlock = fromBlock; + const finalToBlock = + toBlock === "latest" ? await provider.getBlockNumber() : toBlock; + + console.log(`Scanning from block ${fromBlock} to ${finalToBlock}...`); + + while (currentFromBlock <= finalToBlock) { + const currentToBlock = Math.min( + currentFromBlock + batchSize - 1, + finalToBlock, + ); + + try { + console.log( + ` Processing blocks ${currentFromBlock} to ${currentToBlock}...`, + ); + + // Fetch Deposited events + const depositedFilter = lockedSOV.filters.Deposited(); + const depositedEvents = await lockedSOV.queryFilter( + depositedFilter, + currentFromBlock, + currentToBlock, + ); + + for (const event of depositedEvents) { + if (event.args?._userAddress) { + userAddresses.add(event.args._userAddress); + } + } + + // Fetch VestingCreated events + const vestingCreatedFilter = lockedSOV.filters.VestingCreated(); + const vestingCreatedEvents = await lockedSOV.queryFilter( + vestingCreatedFilter, + currentFromBlock, + currentToBlock, + ); + + for (const event of vestingCreatedEvents) { + if (event.args?._userAddress) { + userAddresses.add(event.args._userAddress); + } + } + + // Fetch Withdrawn events + const withdrawnFilter = lockedSOV.filters.Withdrawn(); + const withdrawnEvents = await lockedSOV.queryFilter( + withdrawnFilter, + currentFromBlock, + currentToBlock, + ); + + for (const event of withdrawnEvents) { + if (event.args?._userAddress) { + userAddresses.add(event.args._userAddress); + } + } + + console.log( + ` Found ${depositedEvents.length} Deposited + ${vestingCreatedEvents.length} VestingCreated + ${withdrawnEvents.length} Withdrawn events, ${userAddresses.size} unique users so far`, + ); + + currentFromBlock = currentToBlock + 1; + + // Add delay to avoid rate limiting + await sleep(200); + } catch (error: any) { + console.error( + `ERROR: Failed to process blocks ${currentFromBlock}-${currentToBlock}:`, + error.message, + ); + currentFromBlock = currentToBlock + 1; + } + } + + return userAddresses; +} + +const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms)); + +async function main() { + const argv = yargs(hideBin(process.argv)) + .option("network", { + type: "string", + description: "Network to use", + choices: ["rsk-mainnet", "rsk-testnet"], + demandOption: true, + }) + .option("locked-sov-address", { + type: "string", + description: "LockedSOV contract address", + default: "0xB4e4517cA4Edf591Dcafb702999F04f02E57D978", // RSK mainnet + }) + .option("rpc-url", { + type: "string", + description: "RPC URL", + default: "https://mainnet-dev.sovryn.app/rpc", + }) + .option("from-block", { + type: "number", + description: "Starting block for events scan", + default: 3368550, // LockedSOV deployed at this block + }) + .option("to-block", { + type: "string", + description: "Ending block for events scan (or 'latest')", + default: "latest", + }) + .parseSync(); + + const userAddresses = await fetchLockedSOVUsers( + argv.lockedSovAddress, + argv.rpcUrl, + argv.fromBlock, + argv.toBlock === "latest" ? "latest" : parseInt(argv.toBlock), + ); + + // Save results + const resultsDir = path.resolve(__dirname, "./config"); + if (!fs.existsSync(resultsDir)) { + fs.mkdirSync(resultsDir, { recursive: true }); + } + + const addressesArray = Array.from(userAddresses).sort(); + + const addressesPath = path.join(resultsDir, "lockedSOVUsers.json"); + fs.writeFileSync( + addressesPath, + JSON.stringify( + { + network: argv.network, + fetchedAt: new Date().toISOString(), + lockedSOVAddress: argv.lockedSovAddress, + count: addressesArray.length, + addresses: addressesArray, + }, + null, + 2, + ), + ); + + console.log("\n" + "=".repeat(60)); + console.log("LockedSOV Users Fetch Complete"); + console.log("=".repeat(60)); + console.log(`Total unique user addresses found: ${addressesArray.length}`); + console.log(`Saved to: ${addressesPath}`); + console.log("=".repeat(60)); + + console.log("\nSample addresses:"); + addressesArray.slice(0, 5).forEach((addr) => console.log(` ${addr}`)); + if (addressesArray.length > 5) { + console.log(` ... and ${addressesArray.length - 5} more`); + } +} + +main() + .then(() => process.exit(0)) + .catch((error) => { + console.error("Error:", error); + process.exit(1); + }); diff --git a/scripts/lockedSOV/snapshot_lockedSOV.ts b/scripts/lockedSOV/snapshot_lockedSOV.ts new file mode 100644 index 000000000..43e44250c --- /dev/null +++ b/scripts/lockedSOV/snapshot_lockedSOV.ts @@ -0,0 +1,405 @@ +// scripts/lockedSOV/snapshot_lockedSOV.ts +import { ethers } from "ethers"; +import { createObjectCsvWriter } from "csv-writer"; +import fs from "fs"; +import path from "path"; +import yargs from "yargs"; +import { hideBin } from "yargs/helpers"; +import dotenv from "dotenv"; +dotenv.config(); + +interface LockedSOVSnapshot { + userAddress: string; + lockedBalance: string; + unlockedBalance: string; + totalBalance: string; + hasVesting: boolean; + vestingAddress: string; + blockNumber: number; + snapshotTimestamp: number; +} + +const LOCKED_SOV_ABI = [ + "function getLockedBalance(address _addr) external view returns (uint256)", + "function getUnlockedBalance(address _addr) external view returns (uint256)", + "function cliff() external view returns (uint256)", + "function duration() external view returns (uint256)", +]; + +const VESTING_REGISTRY_ABI = [ + "function getVesting(address _tokenOwner) external view returns (address)", +]; + +/** + * Snapshot LockedSOV balances for all users + */ +async function getLockedSOVSnapshot(params: { + rpcUrl: string; + lockedSOVAddress: string; + vestingRegistryAddress: string; + userAddresses: string[]; + blockNumber: number; + network: string; +}) { + const { + rpcUrl, + lockedSOVAddress, + vestingRegistryAddress, + userAddresses, + blockNumber, + network, + } = params; + + console.log("\nStarting LockedSOV snapshot process..."); + console.log(`Total users to process: ${userAddresses.length}`); + + const provider = new ethers.providers.JsonRpcProvider(rpcUrl); + const lockedSOVContract = new ethers.Contract( + lockedSOVAddress, + LOCKED_SOV_ABI, + provider, + ); + const vestingRegistryContract = new ethers.Contract( + vestingRegistryAddress, + VESTING_REGISTRY_ABI, + provider, + ); + + const targetBlock = blockNumber; + + // Get timestamp from the block + const block = await provider.getBlock(targetBlock); + const targetTimestamp = block.timestamp; + + console.log(`Target block: ${targetBlock}`); + console.log( + `Block timestamp: ${targetTimestamp} (${new Date(targetTimestamp * 1000).toISOString()})`, + ); + + // Get cliff and duration for reference + const [cliff, duration] = await Promise.all([ + lockedSOVContract.cliff({ blockTag: targetBlock }), + lockedSOVContract.duration({ blockTag: targetBlock }), + ]); + + console.log(`LockedSOV Configuration:`); + console.log( + ` Cliff: ${cliff.toString()} seconds (${cliff.toNumber() / (4 * 7 * 24 * 60 * 60)} 4-week periods)`, + ); + console.log( + ` Duration: ${duration.toString()} seconds (${duration.toNumber() / (4 * 7 * 24 * 60 * 60)} 4-week periods)`, + ); + + const results: LockedSOVSnapshot[] = []; + const errors: { address: string; error: string }[] = []; + let processedCount = 0; + let usersWithBalance = 0; + + for (const userAddress of userAddresses) { + try { + // Fetch locked and unlocked balances + const [lockedBalance, unlockedBalance, vestingAddress] = + await Promise.all([ + lockedSOVContract.getLockedBalance(userAddress, { + blockTag: targetBlock, + }), + lockedSOVContract.getUnlockedBalance(userAddress, { + blockTag: targetBlock, + }), + vestingRegistryContract.getVesting(userAddress, { + blockTag: targetBlock, + }), + ]); + + const totalBalance = lockedBalance.add(unlockedBalance); + + // Skip users with zero balance + if (totalBalance.isZero()) { + processedCount++; + continue; + } + + const hasVesting = vestingAddress !== ethers.constants.AddressZero; + + results.push({ + userAddress, + lockedBalance: ethers.utils.formatUnits(lockedBalance, 18), + unlockedBalance: ethers.utils.formatUnits(unlockedBalance, 18), + totalBalance: ethers.utils.formatUnits(totalBalance, 18), + hasVesting, + vestingAddress: hasVesting + ? vestingAddress + : "0x0000000000000000000000000000000000000000", + blockNumber: targetBlock, + snapshotTimestamp: targetTimestamp, + }); + + usersWithBalance++; + processedCount++; + + if (processedCount % 50 === 0) { + console.log( + `Processed ${processedCount}/${userAddresses.length} users (${usersWithBalance} with balance)`, + ); + } + + // Add small delay between requests + await sleep(50); + } catch (error: any) { + console.error( + `ERROR: Failed to process user ${userAddress}:`, + error.message, + ); + errors.push({ + address: userAddress, + error: error.message, + }); + } + } + + // Save results + const timestamp = new Date(targetTimestamp * 1000) + .toISOString() + .replace(/[:.]/g, "-"); + const resultsDir = path.resolve(__dirname, "./output"); + if (!fs.existsSync(resultsDir)) { + fs.mkdirSync(resultsDir, { recursive: true }); + } + + // Calculate summary statistics + const totalLockedSOV = results.reduce( + (sum, r) => sum + parseFloat(r.lockedBalance), + 0, + ); + const totalUnlockedSOV = results.reduce( + (sum, r) => sum + parseFloat(r.unlockedBalance), + 0, + ); + const totalSOV = totalLockedSOV + totalUnlockedSOV; + const usersWithVesting = results.filter((r) => r.hasVesting).length; + const usersWithoutVesting = results.length - usersWithVesting; + + // Save as JSON + const jsonPath = path.join( + resultsDir, + `lockedSOV_snapshot_${network}_block_${targetBlock}_${timestamp}.json`, + ); + fs.writeFileSync( + jsonPath, + JSON.stringify( + { + metadata: { + network, + blockNumber: targetBlock, + blockTimestamp: targetTimestamp, + snapshotDate: new Date(targetTimestamp * 1000).toISOString(), + lockedSOVAddress, + vestingRegistryAddress, + cliff: cliff.toString(), + duration: duration.toString(), + cliffWeeks: cliff.toNumber() / (4 * 7 * 24 * 60 * 60), + durationWeeks: duration.toNumber() / (4 * 7 * 24 * 60 * 60), + totalUsersProcessed: userAddresses.length, + usersWithBalance: results.length, + usersWithVesting, + usersWithoutVesting, + totalLockedSOV: totalLockedSOV.toFixed(18), + totalUnlockedSOV: totalUnlockedSOV.toFixed(18), + totalSOV: totalSOV.toFixed(18), + errors: errors.length, + }, + balances: results, + errors, + }, + null, + 2, + ), + ); + + // Save as CSV + const csvPath = path.join( + resultsDir, + `lockedSOV_snapshot_${network}_block_${targetBlock}_${timestamp}.csv`, + ); + const csvWriter = createObjectCsvWriter({ + path: csvPath, + header: [ + { id: "userAddress", title: "User Address" }, + { id: "lockedBalance", title: "Locked Balance (SOV)" }, + { id: "unlockedBalance", title: "Unlocked Balance (SOV)" }, + { id: "totalBalance", title: "Total Balance (SOV)" }, + { id: "hasVesting", title: "Has Vesting" }, + { id: "vestingAddress", title: "Vesting Address" }, + { id: "blockNumber", title: "Block Number" }, + { id: "snapshotTimestamp", title: "Snapshot Timestamp" }, + ], + }); + await csvWriter.writeRecords(results); + + console.log("\n" + "=".repeat(60)); + console.log("LockedSOV Snapshot Summary"); + console.log("=".repeat(60)); + console.log(`Network: ${network}`); + console.log(`Block: ${targetBlock}`); + console.log(`Timestamp: ${new Date(targetTimestamp * 1000).toISOString()}`); + console.log(`\nConfiguration:`); + console.log( + ` Cliff: ${cliff.toNumber() / (4 * 7 * 24 * 60 * 60)} 4-week periods`, + ); + console.log( + ` Duration: ${duration.toNumber() / (4 * 7 * 24 * 60 * 60)} 4-week periods`, + ); + console.log(`\nUsers:`); + console.log(` Total Processed: ${userAddresses.length}`); + console.log(` With Balance: ${results.length}`); + console.log(` With Vesting: ${usersWithVesting}`); + console.log(` Without Vesting: ${usersWithoutVesting}`); + console.log(` Errors: ${errors.length}`); + console.log(`\nSOV Totals:`); + console.log(` Locked: ${totalLockedSOV.toFixed(2)} SOV`); + console.log(` Unlocked: ${totalUnlockedSOV.toFixed(2)} SOV`); + console.log(` Total: ${totalSOV.toFixed(2)} SOV`); + console.log(`\nOutput Files:`); + console.log(` JSON: ${jsonPath}`); + console.log(` CSV: ${csvPath}`); + console.log("=".repeat(60)); + + if (errors.length > 0) { + console.log("\nErrors encountered:"); + errors.forEach((e) => { + console.log(` ${e.address}: ${e.error}`); + }); + } + + return { results, errors }; +} + +const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms)); + +// Script entry point +async function main() { + const argv = yargs(hideBin(process.argv)) + .option("block-number", { + type: "number", + description: "Specific block number for the snapshot", + }) + .option("current-block-number", { + type: "boolean", + description: "Use the current block number for the snapshot", + }) + .option("network", { + type: "string", + description: "Network to use", + choices: ["rsk-mainnet", "rsk-testnet"], + demandOption: true, + }) + .option("locked-sov-address", { + type: "string", + description: "LockedSOV contract address", + default: "0xC4E3c5D0c7CAa5E0f417784c720A7860B97a4753", // RSK mainnet + }) + .option("vesting-registry-address", { + type: "string", + description: "VestingRegistry contract address", + default: "0xe24ABdB7DcaB57F3cbe4cBDDd850D52F143eE920", // RSK mainnet + }) + .option("rpc-url", { + type: "string", + description: "RPC URL", + default: "https://mainnet-dev.sovryn.app/rpc", + }) + .option("users-file", { + type: "string", + description: "Path to JSON file with user addresses", + default: "./config/lockedSOVUsers.json", + }) + .parseSync(); + + // Validate that exactly one block option is provided + if (!argv.blockNumber && !argv.currentBlockNumber) { + console.error( + "Error: Must provide either --block-number or --current-block-number", + ); + process.exit(1); + } + if (argv.blockNumber && argv.currentBlockNumber) { + console.error( + "Error: Cannot use both --block-number and --current-block-number", + ); + process.exit(1); + } + + let targetBlockNumber: number; + + if (argv.currentBlockNumber) { + const provider = new ethers.providers.JsonRpcProvider(argv.rpcUrl); + const currentBlock = await provider.getBlock("latest"); + const blockSafeThreshold = 2; + targetBlockNumber = currentBlock.number - blockSafeThreshold; + console.log( + `Using current block number (with safety threshold): ${targetBlockNumber}`, + ); + } else { + targetBlockNumber = argv.blockNumber!; + console.log(`Using specified block number: ${targetBlockNumber}`); + } + + // Load user addresses from config + const userAddresses = loadUserAddresses(argv.usersFile); + + await getLockedSOVSnapshot({ + rpcUrl: argv.rpcUrl, + lockedSOVAddress: argv.lockedSovAddress, + vestingRegistryAddress: argv.vestingRegistryAddress, + userAddresses, + blockNumber: targetBlockNumber, + network: argv.network, + }); +} + +function loadUserAddresses(configPath: string): string[] { + const fullPath = path.resolve(__dirname, configPath); + if (fs.existsSync(fullPath)) { + try { + const config = JSON.parse(fs.readFileSync(fullPath, "utf8")); + const addresses = config.addresses || config.users; + + if (!addresses || addresses.length === 0) { + console.error("Error: No addresses found in config file"); + process.exit(1); + } + + console.log( + `Loaded ${addresses.length} user addresses from ${configPath}`, + ); + return addresses; + } catch (error) { + console.error("Error reading user addresses config file:", error); + throw new Error(`Error reading user addresses config file: ${error}`); + } + } else { + console.error(`Error: Config file not found at ${fullPath}`); + console.error("Please create config file with user addresses to snapshot"); + console.error("\nExample format:"); + console.error( + JSON.stringify( + { + addresses: [ + "0x1234567890123456789012345678901234567890", + "0x0987654321098765432109876543210987654321", + ], + }, + null, + 2, + ), + ); + process.exit(1); + } +} + +main() + .then(() => process.exit(0)) + .catch((error) => { + console.error("Error:", error); + process.exit(1); + }); diff --git a/scripts/staking/config/vestingAddresses.json b/scripts/staking/config/vestingAddresses.json new file mode 100644 index 000000000..3d6e6a878 --- /dev/null +++ b/scripts/staking/config/vestingAddresses.json @@ -0,0 +1,1706 @@ +{ + "network": "rsk-mainnet", + "fetchedAt": "2026-02-03T09:04:41.149Z", + "count": 1699, + "addresses": [ + "0x0008aaD6cA24dcE525F1974904Ac8d6961CDC305", + "0x00297d4FD2D3851924B932DfB64671e4E1FD5307", + "0x0038a65375866816B5Ed4cCB1BE515CcD6391059", + "0x0041EB022d1E7fC974486aC34555751D8325a415", + "0x004eA670c1469866D9ed3550a13F2F70da106223", + "0x005Ec211f5fc55271B19745a4f8F207A42bD8298", + "0x006C26d04AAE91Bf95A1d542FB18619dED848a06", + "0x0086A97e2937c2E19063F1E58f4332093041ae78", + "0x0087Fa27b0079333AfBef0942cAe598EFD43ac0f", + "0x00e98F22198437634C62754E9a5E18AeBFc45e9c", + "0x0158ca6957bcffae7e7B6d2D7d1cfE3F77EAd04b", + "0x01627952426AE7A613b11df45C07b9bD63697b93", + "0x0182Afee177D23CBE1ae188938dDeA87645dC40e", + "0x0221e4FFf6864c667b9cD7C7FE851586Cc5F0473", + "0x029df3c597bA71Cc41a3fB6220405CA5B3Bea3fd", + "0x02F4f482fF19DDF8C0d9CEbB47e8B7eb9EAA0441", + "0x02d58DA31aD1dca1357710F6Ae7A5B32075aD142", + "0x02f84F9657aeE94EfAa820E7F4ed0594f582cC29", + "0x031DD0a7b91f4e1d11486421bf4142bA887f8c24", + "0x032B7893c1E08C93e30186213F83CA1E42181EC5", + "0x0331E91ef2CD8CEf7C34862B7653A090d7f0834A", + "0x0346b0431C9045E94Eb847156C5b76a9AD7a2F53", + "0x036A614368D840434f5cb4D8E1627109D1179585", + "0x03b371b050B29F2893Aec245BD3Cfce8E409364A", + "0x040707D0b7D1bD7e1C174F27Af9dc6d4E9E8e9EE", + "0x0448015d0fb31aD8EE7Da9f4BcD858EE19CDEaF3", + "0x047f6698f86D8a54a9bc76edEDD8E1a61E82F70c", + "0x0488318883c6E24f8195A79A969FEF88249a35E3", + "0x04b51298E54b73C20E3331fB42530b3ecF64650a", + "0x04b85E82a4B7934A6Ebf6C7364b8B943eb0C965d", + "0x054b5c42fC0AE0625109203946C5CAb3d017B397", + "0x055E5786C63c46Be58e1Cd8d25bc1EaDeA95B765", + "0x05CCf82F186cb5EC20b4e5ee7650c4f1ADD7B2A1", + "0x05Db83034060c499CA7D23D4e2B399197347E8Be", + "0x05aABEEAE545e5935100a9B9e535cc8D40Db3Ab7", + "0x06010771B4e3aa25Fcb178991e8ab3255460a658", + "0x0619359690CDd2B2F2Ae1B6103ce2Ab2B3Fd1ad5", + "0x061Cd02e1A98f9AD7436677a2b4917Ad0Ff4815b", + "0x0625f671723701e995a93a51d822F1021bC78630", + "0x068fD708c8e509c1c797BdcC2BB8f55F320F4801", + "0x0692C3767e7be581B100DfF141bb896358C8c960", + "0x0731E6AE66765aA62A8eDBf26Df781f309234F6E", + "0x07476EDf327b7Aab23a03ECE92CE91CCad384F2b", + "0x0781662EDAED0dE6535aDb1bAaC0A0C1616e85Ed", + "0x07A6835548C0FE6b66139310C959Cd4f96Ca01fC", + "0x07FBf9DeDB1F473e0B74d6E09378e6749697A774", + "0x082d7c7565c5F70fBBcbD75833E8a2617922a8f0", + "0x083BF3C2005fad92a66207018C9A75cBc09aA26F", + "0x088013Cd2D4005aC77EcD10cb212B03Dd40D0cB2", + "0x08eB3e3131F31c408Bffb212C686DAebEbbcf522", + "0x093A6cB74549Aa50E366cecCC08F2DA53D946c4b", + "0x0991953665dA45c96615ec3AA3c19304C926713b", + "0x09C05622b354E3cE4169bd8D356d584468062B8C", + "0x09C57E129601851FE0b988d08C1B4fb7F399c77f", + "0x09EFE67A1228540a8a9899431c4A443812833877", + "0x0A3894C2741510894fBabA696BEE64E405079126", + "0x0A3D9350a276425397eF3130E58B626c96888dF0", + "0x0A4e0991ad5e55F470b33cb0C62567061e5A130E", + "0x0A9a8B687F27B1393d07b65b53b2a7d4D0F50ae8", + "0x0B33acd22a04d35D73D72067C0A2C9505F02B7ac", + "0x0B7133D11115fea0F0C2B251AACb7Df449156213", + "0x0B72668De41f6B65Fc9bE552Ba2B71Fd4D4292D7", + "0x0B7452F73E032F7cF8871e0f51764a060500f4Ac", + "0x0BD12A4906E68c70AB208a620F1F4E8f8C4A5Fea", + "0x0C44df11b59Df7D9E63887eC7B3aD619c131d7e7", + "0x0C815c93f73Aa488F6C0a510E64cAbE1020C765C", + "0x0CBe42c4C44D5E4D8fdC275C06462f2AeEA89113", + "0x0D555EFFddEc10Ec8Ad8eCeFCE3926855aa8E6E6", + "0x0D6e2c22Bf3764CE8f7beDd8ad4a30AA33dC443F", + "0x0D919279cBcDad55523c05D63C6C5CF4A4674DBd", + "0x0DB7D5f9d6dc9637D24F6f23cc59Fb9Fa9d36C5f", + "0x0Df17C00920f8c1B8Ab908159c47b058Ac17898E", + "0x0EF90B403cb3561E673bEAc4A9a66222b693A41C", + "0x0F4EA80D85938dE68AA9454d3795384F12A4b68A", + "0x0F8B815699eCD410660dA5288ff7d3652C2Ad72a", + "0x0FCe38aBd3579b4C98d30d51FA5247fb75693506", + "0x0aA5bF4Fd937EDEF97425db2093ce2d9CAB1f8F9", + "0x0ae2a39e5454b3C0571E5F09238eff2A96a71B01", + "0x0afD8C51f7A960d33183313F0E41C0f4571F4beE", + "0x0b039cD328b7a3c8443C8921CA6397301dbcA1af", + "0x0b04c744618Fa16E44d1F645DA274838B3eDdD0a", + "0x0b13CaE1ef4574077e749cB6787b60aC26479e17", + "0x0b3443602556D80e066aE68cbC65c062B6f25433", + "0x0b7FeB8E19c0455cD05a31bd55E76883fab7BC1a", + "0x0b84dDc53142738B369636B207eA5fBCCB3D6fE6", + "0x0bA9D2A65971669f75f967E2dd355Ab121aE887C", + "0x0c1ec29D42cC7E6a068b0a82b8f870D327152958", + "0x0c5F353b849054d986335ac26ebf66f7d8e7229e", + "0x0c664A1232414F8BD23C6d1c0CBf07963835F7aD", + "0x0ca3a914C0448B284dea35C41AFEec01e58a1dd2", + "0x0d41417FFb2a5DB2A3383fEe3600C373246F1A0E", + "0x0dC36F90B3eB925312cFE00797B974f2Df0A5252", + "0x0e5Da16007E89340059427c92F78F98534B3A05c", + "0x0eFB8a55C8E5e54a6A2c3fcB5ac7e356Fdb8aC1B", + "0x0f0631bD459d19f14fe07cf98212a0c739A5262c", + "0x0f300a045370b2dF7090cA94a33F7782bf6972f1", + "0x0f7FE297b9B69BB06C60b654062B47DeaF8765bd", + "0x0fAC203d7a353001981B80d9828588B3E7e5c7ef", + "0x10A8aB2cb1c05528820787Ebf25a311DFDFa3E7d", + "0x10c6B7A6d9B959CB55a864175575831612563f65", + "0x1105dca376BD32861a98508B813d78Fc372F25B7", + "0x110D7c9674748102C40355dE5a7841002A4b7031", + "0x111Ca70FB81e70655a35A1128552e302Bf91DBc5", + "0x116645360fcE8568eAc0DA4Cdf971547B91A1dd3", + "0x11EC02156e8127c0067e4d3352032dC728759533", + "0x11a3552537834bD05a496EB75546E1b43cE0CB21", + "0x11b3330B7328b4708D854CBe4952b703b350C5BD", + "0x11e884b751C502CdB3969C209da426cC10BDc26F", + "0x120EE6902d736e47e99E32ce04A18b6944138679", + "0x122D80065024f9d317259140d58f23D6E06216b6", + "0x12484998B04Ddc5f06db5646B4B5571DD796E9dC", + "0x128828e6b25fdB78aFb928cb7484Dc2f57849fcB", + "0x12964457811cF88458caEf78cF8A6bb1073cC35b", + "0x129B5D9bE90A5Fc81C67dD50e072347625800DeD", + "0x12Bb035f2bF518b6214436B468f7E6Fd916f96f1", + "0x132c538B604b50F29aD76B73327Ef5a2E9007bd9", + "0x133b78772D29b8c2205Ed70368A50EacFFa5ADa1", + "0x1344b8D89a7BF48A872C247AF1CF66038Ac008A5", + "0x137403Ae72aCBacd4090653134ec2e5036c34DCe", + "0x1383e29F8362Ed65a9Da3395750aDA2A702aCf08", + "0x139a3DC9e46b7aa96520fE15826848a7b1Cb147c", + "0x13C5821130FB6488D82e51C74f494083256C5D9B", + "0x13D532158c4F7f2ABBA603B43FD25A1A94a03A85", + "0x13b2556a3F22a281329c44329B135c351F10B7c7", + "0x141B5856c8452963226a9d8F5B757Efeb00E672d", + "0x1421f03f17880FE50Ec9D26bfF9e3296Ef8dB5B5", + "0x1432B9b077A8D19708c13987C1aBaFf304DF8632", + "0x143A6F5AC399f390591b7B01EB1D1C21c179b317", + "0x146be2Acc154Ac85c6FCdB5A48288F2E851fe510", + "0x14BD2eC444A206783cb9b3D2Ad5d182c45F2b7fE", + "0x14F589b53303d895F5f9E3C408B0DE37948797C3", + "0x152eb86A9565b0D863Ca96bdDB9a5d8e3505F4D1", + "0x1567d5d8493BFCa2E2aA8034F4E1383d79850F57", + "0x15D2C42fEd6668bb7AB26d53F300119E916561DC", + "0x16090CBA35a579dC46fF107Be00cD1175830Fa09", + "0x1609dea5087dF229A38779EEc1e1806e7AB9fc17", + "0x161a617f9c7b360DEA64880a11cdd34c6cef151B", + "0x161aE3393F32282AA9dAE82B905Cd20FE26273EC", + "0x166678FA52C1c3140246cCEECdbB6b9f6F7d0a85", + "0x16B8ff45766b3Ae3fB669Eb3e82F31A40Af6eB14", + "0x16b14b6640439dE5d79dC7deF5754944005c76aD", + "0x16dbD3d02cc2082DAfb7F092dB91638e4d7980Cb", + "0x16f6DB559585bbdc7Efa323E65CE18E8D3031183", + "0x170156246b9dE817156E094e4a975Afd58EE1f2d", + "0x1705B0cD30CE9cB2627EA2A3687171804cC17A1f", + "0x177AfC97bE4Ec851FA823e09a434388665808ea2", + "0x17B2389537c6E0831FF6E390F1870CF7EC45192c", + "0x17D4e7657DCd623A98f015a113D7C07090463418", + "0x1884b115673E5b29281a547433b645f690856311", + "0x188A2658f6175eCfb34B3cA032468A93b0544842", + "0x18eC2d28108DCF1CA4Ed31Cec6c71844A9Cd2Be4", + "0x18f05Bb2de63cFF66004C630D952B2cD50639066", + "0x19057685fC88009048bc8Eb36573a6A2d9225D87", + "0x190e40E62B52863244a8c1E9a412D0CDcF8C830F", + "0x1924c920e4811edd36FAF3722D0659Db1c94433f", + "0x1929b88Ea6F1d9acbf041a3C6a3F3EE4D98400FC", + "0x192EA66Cbb6c58721d970079238578aA6F700B7a", + "0x193Dbe1D85f4FCCc6481441012f3Df608aA9fd6f", + "0x1963792Daa2627F56714B90d500349B2E51E9D4d", + "0x1992e7F6D681FfDa824C74a1ffe2c49d37E94aD7", + "0x19D33a174804DED91cE27127451cE24eF815d13e", + "0x19E47f1d83300D726091197Ec7f7DeA0b1F8d0e5", + "0x19FA3fD6Cf0ed6C04Fd506535E823BaA077AC473", + "0x1A389c06e81Ab11f5D42b1C4c4aB135694A180f9", + "0x1Abca31403780484f34F55227c38563043C726B3", + "0x1B0a220634611CF848d5474C0e8AB62a85cCdd7C", + "0x1B39563e6d53575382Cd45C05Be24E5d7dfd989c", + "0x1BD395A51BF834968348730A2968fBa365336c54", + "0x1C2489b28d7e6FB478fE56d5D923ee6F02e70dBD", + "0x1C2AD7a5B98FE6cfd9D433469db3260DD004CCbd", + "0x1C6938C6CC22e619A48EF85E5E9C97dAA13a5Ae8", + "0x1C94060B768429B9e92C75A628532fc6e649e984", + "0x1Cd4bf3e7780ecc69a6e88aaf208a41f88b718ff", + "0x1D040bCF0836a2a72f623217591646Da0b427EE2", + "0x1D1e9098a676FcCf670F69520b345C3491e1ba33", + "0x1D297A4A7Bb820b4Ff866701395A462144732a83", + "0x1D3e89252Fe15EBC40C7868a7E5EE4516a67b273", + "0x1D5D4bCb3deC6CCd52Fb9720949df1dF743425bE", + "0x1DB8cb93330d6bb92dC38038b43e325708701819", + "0x1E01923896bfeF0E39fA5bb3f525234E5fEdd5aF", + "0x1E2aA56e2873E3C2635800D580e899A62BE4162A", + "0x1F58E94b303b9d0aD5Bd919B7e16FaBbd7cF86a6", + "0x1F728a834c6D2E448a39168c2fc7b1520606d5D2", + "0x1FdEb5DEEcE24Ec6a7C69EEa51778EB4eE83C5eE", + "0x1a0e54c9822E7f48195C179738b65019b59C759C", + "0x1a467121E2ed7CFF3c1c5d3078d0B2AbaCCA5075", + "0x1b7B2006f7FbB2e2b372F5f4D7378e243d95D9aC", + "0x1bED35A058De649AA37D0a411B4e6EA08Cdd5bA7", + "0x1d4cC648F5701C3726c597F13960E202764b44Dc", + "0x1d86C332348e1296Bc1D94B24B4c54e3b0A20bbe", + "0x1d9B10b0F50Af3C87C40A51b85C7e62e6AE934D7", + "0x1d9f4010e22eaa54d6FA811EA081BBC4D2C24349", + "0x1dd151B174357571d362763A9B0B5a8E21dfCD6E", + "0x1f49dcEB58221278beC07d2a76b8a10115435ee5", + "0x1f4df20919423F1CC584B941A35f46eE190dcb97", + "0x1f6A028b9Bf71b90e86F67182599C044fffc503f", + "0x1fA731bAb47c934874dAA6E7cb0f4977F5f46c90", + "0x201E8d83427971F66Ef62c819159178cb628acA2", + "0x202E0762cFE87dcC0CFfd10878e470c5DEF51a1D", + "0x2045aAf7D6ddBc6A779681b36dD9c0Ce52799275", + "0x204D916302fd44C331bC24C1A8548477088B77e4", + "0x205880b9648cb9f5C83591d5bf895304393ac37C", + "0x20675D1C71c296c78c74065DBD60d8CAb8a9549D", + "0x206b73621A7e65d089795112d0bD988A7142CB4e", + "0x20DA5f31408902623b4c79a65f0Ea13bA5F85D1c", + "0x20eeE4A243025FEb04a1781331d79C4E6757DB2D", + "0x20fFa4dAD65c306A52E310b73b743A23f49d9967", + "0x21078Ac318a6FF47e463C6C7289A6a2B1D9618dC", + "0x2115D38c0a6BEeE4B94B68cB3F043DDA8498f2e8", + "0x212604b24bCB1F4D790084476F342A8c4266B467", + "0x21297f77EF64aa21D58FB16033AA3A34D918704d", + "0x21610bc21c606B6c3998A16A56dA8C6DC3D3e070", + "0x21911524B2253776d8211B423c6Ea72B2E0e02E0", + "0x21FF95c52B932FA5EDD85b469E6Ff85029AE9D78", + "0x21b5b6B6645fe34B9Dd748D4898477b62bA76E51", + "0x2212B654D96c5afE402BE985D465d0042cF229a6", + "0x2219722dF6A88deEAEfF18d01516DaF0B6fef6Ee", + "0x222A5D50fE448a85E01D6DF031E43916c4E002f1", + "0x226D57d43A68F6F4642F7dbA57c8204Bfb7A0bDD", + "0x226bbB26Dcdf7D8f5073716DdEa169Fa18186c2F", + "0x22A45660Fb1255225e6f8CFD481C8437593A34f5", + "0x22C888476818A1C066193De4102025dd0Cb24429", + "0x22c1369BC5569c4F8703fABeD978402773FEFEFE", + "0x22d48eC2AE4a5fAC3812f50a00fFb340a01CA394", + "0x22e4e1268876C8954113Cd7eE875ACBeB75F50Ec", + "0x22ea9Da8b52B1112c8af45F1680A9424144CDE61", + "0x231B21d78Eff63ED76A848Df667819b969ce6062", + "0x234f8A64BF1421765Fcb70160c2A38BC3431F186", + "0x237cA3E3ea30364E7AB368BF195caaCF0e89B284", + "0x23B6492657562B5138Fa18bcbb798dAA510B14C6", + "0x23bcF4dCdAf43C427F21e7ffC76e08Cc73F7c3F8", + "0x23c62dC436b2CBCCCe5b6b47353642B0016f71B2", + "0x23d720e009Dd1d0E751b975F76D44906BABB6427", + "0x240503Dc5561612A913De18999159381175E5267", + "0x24135F05e7fB2bc6188F86fb11d638AdeFd56782", + "0x24592171c9b968c2940Ef376910ac1703d894ecE", + "0x24BB087B0ab6E58FFf0A7D78A06D5dCe4857cf1a", + "0x24c570471688F3DCFa6D15bfd2C2c1f7A0A984d2", + "0x24e3104B1c3C5aead742821515B5FF4d621D5a17", + "0x258a5ECe8A48ffb201352A91cF14522865D5BD89", + "0x258efbe7d4330638Df4Ef9a5f7711D83A997BBed", + "0x25918957f20677B8be0f3478f91899d92cC53234", + "0x25971185ADD739DDF9Ff3881b9014A1303011fb6", + "0x25D014ec6f6E5a6abea474bADa5C10693F31D204", + "0x25E4Dcd8Ea9344CfaE373Af7079E85BC969b094c", + "0x25cDD78c825bAE751a828a76543b760EbC856Dd4", + "0x263f7Ed58cf2115973C959fC60069864DDaC6a62", + "0x2653BD7C1e6A9729B8f91fF0badCBe334916bB05", + "0x26AD3449d3f4DbfEe6d73014Fc2f661ACa7043A9", + "0x26CD67A09F00C28dd81ebCa9d9d88f9fA3aabC9A", + "0x26ab117DE73e3Fa16C8608Dc4c5f0D7cfAa2E89C", + "0x26eD90D67B7797d45f5d7e5C75c12a42Af7FE0b0", + "0x26fC36F140cc9Db0a88f885359FC5f1B08d331fA", + "0x270EC26a46b948aaDF222394c68d9b4aFf385ccA", + "0x274992c529115f13553623d0BfEF5c6b00B20F80", + "0x2773F50bfd0Ae7476773b15C27eb748cc6fd9B3A", + "0x279C931dC89C26679cD2E4F133fc3348BBF94656", + "0x27AdeA2F6B11652E062F5122abe6d7AE114b0175", + "0x27d857fA33e874B1f81E3265d06974880F621971", + "0x27f763FaF8ff7c7956f2630bDDc821F15Cea2E82", + "0x2825D425E24F3d5980014b7C1B2ea2FccaE3a273", + "0x283186955D70F0adE1b4a1e2c08B374C37DE8B9c", + "0x2866AcdaC318c0b353420a633A26C40217575932", + "0x28B3Ba66020723CA8e18e1CC0e0215cf672C410E", + "0x28C73563F1c8108fF5897D210FbB07D5F27607d4", + "0x28FdB55519a9bb3E3af98C952Ad49c3a08372441", + "0x28fFFCe96B6508afE437015e296b45B954fC5B3D", + "0x28fc1FfB3873BfA9f4Bd94AB5E7b1e8473b67CFb", + "0x29209c60Dfb1a252E59116c481F807D32a11ad37", + "0x293456c53B0864882De417c43a3F87D4cE3D9A2e", + "0x29500C6261843346648e2e7C80505541e7d274AC", + "0x29E13a302fb8d28d0a2021C7Eb08bB411596E929", + "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "0x2A2801B7a9f07353Bc88F2C8470770ab789A47fE", + "0x2A6d15B4f58aeA8d0D52d4b211FceA65c71e7C2A", + "0x2A94211Ad6B08F10B0f6BD9170d776eE84344f33", + "0x2A9ACB0f00F683490DfAA718359f5Ed2f944cADE", + "0x2AD7be9373B5914392569DD79A6Cd07c78350f14", + "0x2B200d35014E57DB88CE6A36e9671B89b87c15D9", + "0x2BC2356012c52e69314e1125326Ac6f63917930A", + "0x2BDac5cC2B253C29d3e98CCeB813ad152292B070", + "0x2C43eA3fD72600D9546dbE1fE1f5A7D31C7FfBd5", + "0x2CB14A84b075212FB8d53b33d431F428412CC3fd", + "0x2CE973A1DDC7612F3f7aEcF6876D28fdBd9b7E08", + "0x2D424869954f17B1aC3053fd9fBAD6Fc31e5da42", + "0x2D4ce0dEf19719838E8cA7778365E72C49F97037", + "0x2DC5Fe73A732c7A1e0B4304CdEDfA7A0d07a1Aa1", + "0x2Dab9958CC723ca90A1cE9E005de54dF45E49F16", + "0x2E94C30fD221533bB6384580E0A9CF14Ce44343b", + "0x2Eb89cB70795a34E031dD836BC1bCf0993A048A9", + "0x2F9b4DD49E091eD7CB1183fD49A643f7628b89CA", + "0x2FF9819bc18779724FB7165a8A05D6d5e7Aae88c", + "0x2Ff75376896aae1acfB6a8835A2Bb9845111d024", + "0x2a11FEB0aFd518462683fA2F49457007067a5a34", + "0x2a81e5FB872A3BFe4CC3e535922db61b57328F5D", + "0x2aCA6C9FF52AA51a1AD99E84741591864f34eEF0", + "0x2aF207de257c8CD7E80acbb0e50d7dD80A66C4FE", + "0x2aa6190BC9A48c2706EDdb61681d34E52F07c35c", + "0x2b647B0202b7e45546879E6B3e99db21F34fDe30", + "0x2c18aeD42a6758fEb8F405E5c3ed3b85B26FF66b", + "0x2c4526268b3643A3d15E6f515b9B564bA64185f4", + "0x2c507012A478c6703219e68b2001C6389871b727", + "0x2cd8Fe0d4f09926543035A8cdda1B71b212fB526", + "0x2dC2b073f087AA0a8600bD267ACE7A6624b36F99", + "0x2dfeC7b2Ed666107C36a3Fd486Ef8285212d04c8", + "0x2e04F74c41c6f30faaD80b1B29c6AF00c509De8A", + "0x2e7dE8e636D5000b64dC49411A91401104EEddDc", + "0x2f99844C8Ad8dDcC4aeEAd5C29493D1117B622C8", + "0x300401B39272852c4e86d83C70fB1936BC4262Fd", + "0x3042FF8A28d02074c0bC8147ed2eBfb115594262", + "0x3073051C2EEC9098bfB7eaE824b4b883Ba715157", + "0x30985D7B881b4a033Dbd804aA48B7783778851EA", + "0x30a4E1598E5776d3B828Ab31CefB6ddCC3c8d9e6", + "0x30bbD2be53290EfB8B930c275115B722a5c07AD2", + "0x310287059c1e7F0c81EE9Ba34Edb624674756093", + "0x313D825cfCF8786138036232cb6348cD714ff1c6", + "0x3146c37EE43f8DEa0EC267bDb435a11F933506bb", + "0x317132D7118Da70Fe9f3538E982AeDEA381c5A49", + "0x31d995455095AFFE850C80225D763955B375927C", + "0x32528EdC9b4a793B6D13fE0EeFcbC759B89C317A", + "0x32E2642cA9C74341783d8f3966555f7FA8aE87bA", + "0x33020C000c2463f5FaeC1d3900f68d6fb40d9678", + "0x3368E07e2b9191B6FcBf79d6584d59B078fdFFe5", + "0x33c364cC589861Fddd3a914c176A58f956A712d9", + "0x33e50E2c7a612B6d855b70042f0cEC29e690e82B", + "0x341F8Fc0edF32eF1cD143483fF3c3575a6F5533C", + "0x343265bDB6F5Ba5E00e9378bf8ffD64A5916ba11", + "0x34628B4fD6dc8b831531154C98C355fcaC99bD72", + "0x34aD8bE61B8Ebc936D888dc83c550a7Ccb569D37", + "0x351FE2c4771d99D60eC952E67e5fD4e81B1FfD3d", + "0x3522E7556D7b47a0CDab63316428dD0790a740D5", + "0x35F391140eCDBC37003487f1D665595799beB885", + "0x35a70743f784909b1410819dFad8a7b9D954A14B", + "0x362728D17E46D058B2b6787DAFB1923Fc89a7ec5", + "0x3640D8b0576ce4f70c6F41d7168A6FDDeD55F075", + "0x367049d6Ab1Ba7CAAcEE51387B97d407558ebF19", + "0x3692f5D430e3342c2D339cC1FBccFD47001a0c2c", + "0x371C206eFd9621Bc03fE7Ff6A564EA88aD4aD6E4", + "0x374887ebD2710fFBe42e918bDC23D220164Cc709", + "0x37814c1E9B702d65D344eDf516be9b98661805B4", + "0x37897CbDBDb5b9Bda2F6F9eE561A30FFA36cE383", + "0x379800C6E70e52dA14b51F7A1C5Af53C59e39c65", + "0x37b976132FBb20074882324C9EA6D451d32476B6", + "0x37c17B418Bda1Ad3Df967FD8c0A367A01537C7CD", + "0x382c0f65A2848C3115417b93C8852C94EFED8835", + "0x3830230B2E43921DeC9624004d2bE90ea7123855", + "0x38528f50BF37a5f407e5B6a4eb03d3fD61d19D92", + "0x38c1eC49713bdDaD4da0C1742A289736Ae1C1cE2", + "0x38e52c444316098a749449F22afd46FF6DccA6A7", + "0x393483d060cdA8EbE1e7D6240A2404E26C8cb97E", + "0x393A85cCFb3a144cc18947fEfF782BB4CBd1B806", + "0x394b6AD758767db9971321f18348a540d3c0a4E2", + "0x3959A6Ac492C4F0237FB87bd0d9756086f76C0E9", + "0x3976B4Ce66FAcd41Dc11F1df1c92C89a032b2883", + "0x3985a6d2ade7767E031Aac74a73419Bfd1F06406", + "0x39942a9C2251D4917B6d2012c6c5431bE31503C6", + "0x39F530cbB96fE95294C082bdbf61CD651501c470", + "0x3A575beAD86D74Be9e632A127a15F8Be11232819", + "0x3AE885a3CAE537f7ECaC2c7CA8Ce6E904d2fBfbc", + "0x3AF0bAD3077309Fd4f436fFB3F586ff26070C265", + "0x3Af47B855AB6709869690757566c1763d8477e17", + "0x3B535fB4AeD81F622c4adf2e6337Bb8c44DFD2fa", + "0x3BB9f55D46ad4ABC2fb5C66aAbdB158dFeb3F95A", + "0x3C639A8f22269B9A1471d1BF5Db750E80798FD5D", + "0x3D47A9a2c43557d38025ee81937EE85e2C777423", + "0x3D8670d4Be66C9603ABf9863386DDf26BD6b3969", + "0x3D8f7C6eBa6a2cf1BddfB0c0Ef5fE894A4ac0918", + "0x3DBcEE336024B72363c6478dfAefff7Fc6020241", + "0x3DE1a59e4C2463dA94627340525cFE7788d8eaA3", + "0x3E4c895abfAe601186f32A094ca06AC1dc960fa5", + "0x3E6936827f848d6bDa3236bE101F257E8B63EB0D", + "0x3E9081f7862AC5b5C7617a9B3cb6BF3e686a3625", + "0x3E91559860079203119907F06692F22655641c96", + "0x3EE3c394822f7C44e1AFd397037C622f022050E5", + "0x3F2Bbbc712e5850680c365CAA7D2b9D17a7b8f6C", + "0x3a34f2eD0a194Ab66c0E16eccE9F32a3FFA13A0e", + "0x3a63b728f6B2D4fB8Ca674Bea715fA7AAed185Ae", + "0x3a7Dec92EA3412DEB4654d5A7f01D996865f14c8", + "0x3b0a85B7985b59c18bfc4B98b9948e598c795A63", + "0x3b1BbA7E2bdF35c82646F0135D4D07875Ab6867f", + "0x3b204D0B932c0341C9b49825F8E3357F7fD9C7aC", + "0x3b66382093DcD061a04Fe33F58B5AdA2D11f1e88", + "0x3b6A0Ecb438e8bbF2B52645F042Ce1CDA7b316B6", + "0x3bACEC95456ED8C70d092930724160238ac9f6F6", + "0x3bD1e94967d3C8c3D245C17eCec6e0E6C36F206F", + "0x3bE5Cd44e49Cf2d4b0cb4E2cE0406c18F5f3d364", + "0x3c3A3C8C2eD776AEd53EF0566586B9C47374A565", + "0x3cAd202dA9a0bA7F0d6De671e0BF7906a5c39bF1", + "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "0x3d106Fc24cbB5b7043A867037a6B37b80d017BFF", + "0x3e11798966e599De7956a19998c1614DCD9a7fa7", + "0x3e34Ede7B23C7fFA7CCf5bad635Ed0293872DEEb", + "0x3e8B45eD46bB0fCA2D3B30EB59c28f8938Caf6BA", + "0x3ebE53d2571168e0F2A4487a04d2d1238Fbe9D72", + "0x3f835f7D40D24a24EE392BF7Dc05b96C470ce1c7", + "0x3f91e07D0F9426608F050f98e71dc30F1139E627", + "0x3f9392498306424a2f9cbced01d43AEc78Cf6E7c", + "0x3f943273c42E9a92B6FCA99588d1f7b4DAB3f791", + "0x400aa8064eb6c31096164d7a34E714D5201b06Fd", + "0x403dd1d2322770730A17067F24c67A56f179c934", + "0x405D3Ea813F674F3e99C1CB22B813136A63Cc3cE", + "0x40D40a976C2D15F62bd649E3AC879325347c3E21", + "0x40Dd1753Aa19D09D8c83C6F9dEe6B2dC3B642e62", + "0x40d6E6a1Ab48bb46492aBD74D0642EfbDC7cF47D", + "0x40f12cA5Ab13e1442A1BEab3237b6Cdf46dFad73", + "0x4165e813656e2F145f1F572D453Ec778Be017D95", + "0x417C64F8091DdB3c47b95b192e6aB475D8907d06", + "0x418a97e517EbD136bc027e2BF6A277DBDD5A8a08", + "0x41E1d9783FaA0BD16aAEEBA30B720CC43C8f1E7d", + "0x41F707fdb2A61a0227f41d5aC4eA5067B2FBD3A6", + "0x41b6408Dde9438b691a801dbc903Fc3B79eac823", + "0x41bb07d262075E0467F683E97C5b238197EE951B", + "0x41e6b2Cf4a1deeDAaBdEB2c00401b17BC754746B", + "0x420CA33E5D2b97955511fa10aD79FB9615217919", + "0x42204D8ceea8988A715176C147ce0BF9C0cbaBB4", + "0x42fC29c60ea3B95047bB9aaa366ed278FbC2dc60", + "0x43CfB964e40eDeeB9eD40A53D82EBe30c3eA6383", + "0x43E3550f1E3043555379A2d3A417532903bc25bb", + "0x43F976c2D769a278d7E3DC8FEcDB9953eA7368e6", + "0x43be2EA8d95bE0BaaF44a362a922Cc41651aA1B8", + "0x4406aD73E71BC637c066e293aBe7b6cC5a37b782", + "0x4418371aE560A18620d3BFADDc577A7A8e0d6d6f", + "0x449D41c9ad1745Eea5a19e1Ae2ef060ab18D15e0", + "0x44E3570CaAF1FD17C2E5fFeAB915C26F8c01F3Cb", + "0x44F09b5Af0d69E4dc7ee9d260679fEA6A904Ff1D", + "0x44a9b5f4b4A93422886199514F1de6f25A314beb", + "0x44c0ECd907A25303246988929735Ad21BC6B37F2", + "0x450cbf24944477D7f885E7Fba1aa0A9c934a975e", + "0x45106f4E58B5775cD9D938a8a51A84c0752a4Ba8", + "0x4511CDAd96c8662BB414012dA7B5485B04dAb3cd", + "0x451c952433e2DCEeb14D185F21e4F06571B5Fc3e", + "0x459244866FF9c77c5F14e40e42ba8cE95B703F60", + "0x45D001120173235450776B5AA77f61d3fcfC2607", + "0x45afa29AA89849d19bAB5E428125b69Ee61b691d", + "0x45bCc185c60B8685A6DB97126C8314EC3cF9910A", + "0x45c7e9A5fC54D98F620a2743D96C80b8f29DEd20", + "0x45f2845515669345cffd2751E044ccB25f449af4", + "0x4602C2f54ef18626A050E9e91bafE14745612513", + "0x461EB284288f895b89af9CD5CfD3eb0496D80270", + "0x4630369386660d4E9eEE3F781CfcA65fb529461e", + "0x4631543b8bBc60Ea790be06415104EC1F3ea7aF1", + "0x4653779AcAFffE566D36eB1F77Aa4759c509458c", + "0x46FB2e51122918970eD034436052B95b206EB3E8", + "0x46a2bb5cCeDb6d561D2f3EdEbb1eeEd6EE1d4960", + "0x4709998Aa2a5c463e3d907203B3ff9919F952b20", + "0x472F17314844a56FdE27c93e18922a46C87bae79", + "0x473A0dcd11b7e08902e2B7Bb20F2dF75e1BBdf0b", + "0x478b4b330Cd9C984A39603E71feA546a7B84BCf7", + "0x47912cB1Aab9d57AB07fFc9a6b7F813aBd1f4062", + "0x47B5EBB3e4816dBb8332690Ca27522B3e4B8cbAF", + "0x47D594d77913cd3a1a66bda2e40B1DE01c40deb2", + "0x47D8a7f5d1D46f1e7CE5444A547c13bDA1F14E1C", + "0x47c50283Dc98ffbE6F1394F16bad7A5Be0B3503E", + "0x47d3e1d17b81aA9B7c097909b41D39d09C56d612", + "0x48187d8Be95d4b7Eb6611CC2cBEF5240Ce94fB2B", + "0x482F8480e0c5c475CFc50411E9517Caa133021Fb", + "0x487D397E1D4e2e70B83c7a84b84287af3f50b93D", + "0x487F7Fb35ccb850adeeF73f943644F1Ff2913952", + "0x488911684Bd91BB541cba3C1b052eB8225bFB071", + "0x48A2Ec8d3073E657212B241ea242012F9eC98315", + "0x4920F9dbD99b38c29279dA97E2BfF57b87E358a3", + "0x4928C9ab3dc4DFfC39f735c763251AB61A9B7fEf", + "0x493f53b9Ec31903070A86f0966353e9796d5093b", + "0x494432fE11ad61d1aaf1Eae9fFb3A8Ca24314fb2", + "0x49597Dd7fdc30c70aB11562E15Dd08F536E9d730", + "0x498185f544D0C7fB134481523f7dAb7fc49C48F9", + "0x498E9264aaA65cC67E0dE8D0E09BEb9998Ee1B00", + "0x4990b48fD1CAdfa64F6F919a8F3d6cbD895C488E", + "0x49Cfd6FF97a340c28e6F3555188F07dbeAA5CE33", + "0x49EDE1Bb6c02a198FF46aF633e10BD12eE791631", + "0x4AA8fDa250DFE211d779CC6Db6A90e4e4E36D8fE", + "0x4AD90a14bAaC71DF50ED8FAc1780eBEb6dF89c92", + "0x4B01c0Fa651C83bA8Cc088A3765B9221478deAdc", + "0x4B17085A9c29144c11A2E12eC7800d9B688e6929", + "0x4B5650FcF97F8Bb20b39F595442c8b85A7E7dAF9", + "0x4Bf7D2a07cFC5622bF7aC53b20aC666EF597ab90", + "0x4C7Dd45EcB24cA7a56C641441249Eb9732249F77", + "0x4C9482214DE9a1FAE4d59eFE18935EBbe47b8Ac1", + "0x4CEF7E2610cFd72E42f52AF04802D716790Bdb3D", + "0x4De1ED04A06ee5A5cDe16741278F0f45D06B4739", + "0x4De939959d5D23ba7ce2F65baecF2A4B1c682fD6", + "0x4Df878eA70d496C0Afb1b620489809aC35aad74D", + "0x4E0209aaEdf007026a355b84F01d9aba608Dd08F", + "0x4E68C5f31bC260a965092d6e75d0299DC9cc6dF7", + "0x4E6DE03d465E5170718c1695decf0186C4eF58C1", + "0x4E70660F1833d9bcDC46fe3549993F45610cC757", + "0x4F3b7cD77368703c20F6234A26D96804f17EF82f", + "0x4FE5119624FeeCF4a70Bd299f613B8fa10F8f79F", + "0x4a17B1e803C75887d326FfFE08CE6AbDe0690eA4", + "0x4a360B7ae252BA6eA73e94CA8E372eD78D30E23f", + "0x4aCb16858D11243D555b8Cb95B9E282BB5EF3341", + "0x4aEa38EdBe0AA9161004F819CAD6a48D7C75Ced4", + "0x4b1C3BeafE6C3AB046D3E16b309D84E9B95D945e", + "0x4b248b732635A427f26694745776fCC6e6927185", + "0x4b3203949Aecf621DC57c1B110D5B413602c6eCB", + "0x4c7425eC0B83E7Cb8F0399C339ce9f7912dCc894", + "0x4d2e5723b24df8fCD920C9324EcbED227094Ac05", + "0x4d3a8ACFb6224F14AAA227B12aB687401F49AD1F", + "0x4d944Ec13356Bab6D7f0097A31a646B39ee8E91a", + "0x4dc7d9b053FFaf533565C77ac47B94EBd9E87DbA", + "0x4e9a244E976B3727502f465Bd35155cd70FcecA0", + "0x4eb350D856Af8CaB1ff1Df19C668B127bC8F5055", + "0x4f004785A27444F0ff2aa5586De47A5Cbe5e2769", + "0x4f8d1F0194B4C859Fd24B1aA61825b937D7bd585", + "0x50175754d9B6f445b01ec812a28aeaf49D298f63", + "0x505F71f26EC5776B13496ceAc8ac9941aEa48aBc", + "0x5078183492179F07B296C9a2A0446eE48A728fE6", + "0x508b71C72105dA63c901b3e305796eaF32679f28", + "0x509316dfd428Ab59Bcdd9f3F6C9Dd0d5FCf52b01", + "0x50A10ae58415380AAd443904B4A20484808F15DB", + "0x50b2C6090648AB5A517F229C8EE663A441CED143", + "0x50df299DdfB6a6542bd48D4e0865779644DE7159", + "0x51089aaE3674bd4115ce6A41f4D884AC8b028A23", + "0x510D05785F670Bf760799D7F593d8c919C54D15B", + "0x511ca82608F08F680e7cb8Aa909317D1E41f091E", + "0x5153339606492d3b83B2b24c4AC4cE2D086e37D7", + "0x5174634AB761fbB8cc5d5cA175AEb425DB392406", + "0x5176D663C86f598374fA47651876aBe6A829663D", + "0x5185b8e81B3D7f264aEEfFfC1dBD7E8a70B75c44", + "0x5195FFaA87630cb906c0D39B17d447a638C9b0C9", + "0x51A026e82b36a88B5387bcF0d764421812906905", + "0x51a63b01F8944AD0248695a946c2888Eb7f17692", + "0x51d7DFda5696aaafa03b9d6b9Ce60A20f8B28158", + "0x52B17D18d911b8b9fab91b6c8701876027c50262", + "0x52Bf048AC64900cd4410D99391e6f479f07Be512", + "0x52a6a09c487F89D4360CF119F8b5c9e184dF244B", + "0x53181951cA7992585397a5786C4ABf475F11F969", + "0x533f9bF531C64AC66bdFd218d6FBe0042460588a", + "0x534b176f3c2042579DC8ce7E77DC1826EeB2d753", + "0x536a93aE2161663977057ab4cCED0027D5576C38", + "0x537f2abd5159d35C6C90986dfE7eE57ede6FA3a1", + "0x53B3B4eBe43cf4fC61C14B5AbB237938AEFdd0C9", + "0x53E731B3484Acc4D1b7424B1A696F5b6E4F6f83C", + "0x53F974E412bFE1197f5d0A737330bCE79368Aa70", + "0x540113DAbf3635902FdF1AB032D0427da9094882", + "0x542a6Ee37fcAe8cB79dEBb4a7f50C89De994db1A", + "0x5444C2F49Cd77D6952E6041CB8F6c27D96601098", + "0x545Ac8F3309173B9dE72aA41daDEbBdc745C0036", + "0x548044904d6ca4783E0e6Ed90b5FDBED168941AD", + "0x548Ada49775EC5196065400CCac3379763267252", + "0x54965237228C9ddC4bd2e2f00F432b4063eF8AFB", + "0x54C562d66E64017E8E4A2845999e49A8add9e358", + "0x54CD750d87bE43e5d0A50107f11DC343301e6472", + "0x54cfC93C496c455cC9cb117a549Dd410eE7FAbE2", + "0x54e51c735f6287BD944995e5e8B03a2dEDfC2747", + "0x54fA1f092E242DB7851B981cB1B0a2A7919a07bB", + "0x5566D595888cB111b0af53D7118e979444E49832", + "0x55714cF375e6Cc1aae0A8B42fec9A229BC26A970", + "0x55818392228b478F38fdde45064D290F757cc73E", + "0x55de892CE224F49Af1Fc716909Bfc527495023f2", + "0x55fEfFF8A55dA4f756cEF00D4A8935b74a273648", + "0x55fbfD99684d56cFC91B027b02f098ef92f77b10", + "0x5622337F36f81C5c3d2e3CDD733D960612FB3b6a", + "0x5653498FB21645152F1e19A32a3Af9aDAC86Eb74", + "0x565e9659e5A36Ec82B0eEAF88b683571d6D9eBd4", + "0x56874109542430c38EB202119141F4b4d055f427", + "0x569C7E2dFC93289E6C18Ae30A20907884471a1C6", + "0x56A5CF1Af4f318AD03Fd4AB6c7799006456a9518", + "0x56B252B0adb107B02835D4B8AB8771C6435B7ACe", + "0x56b52B7E3D55208523A7Bfb094C818386D17A0a2", + "0x56b5A7A40d31d636bb7e14C821f45Add4d1b7760", + "0x56d53639aa93f40468321E97a581Ca64f9D8Be82", + "0x570586dF9246C289ad3eFDE1007fAA9005333D0B", + "0x570a50E0d34fb2253dc003bDd43ab8FC2E488426", + "0x570eDc25A773BC5AEaF9CA401A036410EA09E0bd", + "0x57255869065c3dAe16B9474d74eC8707Fb23178A", + "0x575bf63a080185661FD7E44571391016a986500f", + "0x577a87959870Ac344Cf0AE8662956540e9C74240", + "0x5781Af2d96D305A1005B9E31B37ecb53Ff419A81", + "0x578D43198Cca6e1f225213e8EC271D137Fad3b24", + "0x57F278AD22110C9b8057b8690f48fA363A39cf08", + "0x580506F4D7aAe8d92845d06339DA0ADBa3C51521", + "0x5811526A0bf2bf176749175ce373d209ecbE5460", + "0x585365F9dc3AF9EF198F4AB6974c8Dc81aBCFC92", + "0x587E20f09E83079dDeD369D2243857Ef8D19B465", + "0x58860948f119Ce9DDD54B1CF366959A1fEd2B55E", + "0x58E820bC790F10A4304a818F17Bbc149A7112B2c", + "0x58E8d8D9268d48A8B0eA63F935B73475D0ebA9f5", + "0x590DD13F0bDD296b410638b5DA0E5506B645770b", + "0x590E78178a35716dAB859845A314B580091D66aE", + "0x590ae1024469baA766A411256dC35d1D9963088F", + "0x591D9CeB4686B081Eb7aB1F76FaC3Ad6eA4e895f", + "0x593A45169c1B639A65B1cd8eEf48D46859101132", + "0x59438bBB3382d17462b7BA3Ab83Aa8923cf74411", + "0x5980fEe66325446fA24dDFe25a2A1b209112f966", + "0x5999BC6C2973D9F64D07D8fc33dFC86Aa6e04720", + "0x59B59C7491D6Bb22FE5c3BE121B6F28C0B978bD1", + "0x59a4FB5A8F29A5Ab18eF816Fbec3Df90ae1261b9", + "0x59a66cCFFb1392bCB61A2cd5eE0A144e51c4E6f2", + "0x59d125c16C352e2683F529C7fC508fC6a784d43b", + "0x59d3791930D539A3F8D00868EE33f05c64A01302", + "0x5A33D88E92fdc170F177AA140247D2e89913e69f", + "0x5A96419564D7ed4e17CD8eF77895ec9C42DF6C03", + "0x5AB38b30e68dD47496D0cFe135d5de8195Cc86a7", + "0x5B0bb764b93Ec951BF5e64475eEbD7ea9C5A6466", + "0x5B6F541E9EE9F5a0528484f5B879A0dbDF4Ff4C0", + "0x5B6f2B4b204bAc885442b072cd1203429eB62C5e", + "0x5B9c4fF8398880D8ea5E858E9E25560E5cfe9A1F", + "0x5C8bC7dAbcCae7e648976D20270a13914D917112", + "0x5CA6BFce2F44467ceF05F73d2A595B00941B636a", + "0x5CB9541C7407d66396812CF2DFf927fd4BCB7673", + "0x5CC4C0AB8BcaEAB0E029020ee23B15E269D9988b", + "0x5CECA6240601762d0a4680eDcA950e4187e8C7e7", + "0x5D4D62BdF97a28Cc8529e811d0Cc8CD4F0c0601f", + "0x5Dd7B2c8a7aeA4F2c577e0AE9Cb0267102771F70", + "0x5E272D31407BbA170FEaaF158c6Da295F147e836", + "0x5F3124116D983CCB8c773f314Df2CFD3564d3c20", + "0x5FBab0C8Cb2373bB0594406Df4A17F307730986D", + "0x5FfC195e47CACBc2fA1C82aA22F6a3cC54A4d46B", + "0x5aCc95554B8463b044B1B89EE67ed59a0813431c", + "0x5b9f90470526b9d804FE7426270e896553318CC5", + "0x5c5FB11A0d61b151C69537b7D51F209F406f1a86", + "0x5c7E651Ab0b5694f02EB72BF6Be9459115ff4ec4", + "0x5cC0eCFE27a4dd5f01E6Eb4b11799Ac74FFe8D47", + "0x5cD52D433478b6Ad0ff450AdEAbe927f13Cf4CBC", + "0x5d567dbE4a3E7Ec905355A20ce19a2826E859ecD", + "0x5d7C4245E5343015CF8a4C2B2fc37eA25E642089", + "0x5d840F0aA7cC2bDE84B47f1F8Fdb07692AbbaEC3", + "0x5dAd202Af40f05679292560C32d15269c4a2498d", + "0x5e3a8CdbC0955130f4dB9508EA63F5B9cf705e41", + "0x5f0FDDc15ae93084D8741A92e8B487A6ea44c096", + "0x5fF6C114Cd5ea61eEEbC5A6c2592e2A07B6994aC", + "0x5fdF02636bCf5ca9Fe26E6494B78B5C888B5A698", + "0x6035E9A0000f30A782B2DFc7AE852D06Bb67a99c", + "0x6044918dE7D7E343E097B97312d4136cc5f9f762", + "0x605b86ff93839f33A78f3a2ec7Fe7eAB584AB6EB", + "0x606006b1d8f701F698Ee938E374b7AefD2d82b87", + "0x606D4d0702f8eB198feD822d648C3EA23f36639e", + "0x60728370231b5a8B0eee46b3C576521D330f0D0E", + "0x60C845Fd4C51AF746A1eFd700c680D3c766381C1", + "0x60b8fe73620a0cf95530d9A6679862DE5EA551F3", + "0x60bf17928505D6595d988f2f18666257242E66C6", + "0x60c7b7065dE7252Fbde6a7C8179A2BFD33AE4DA3", + "0x60d7B2a41578B8B51be368463EeceA8502D403E7", + "0x60f604F8f93FB4eE64E1bC529d32C9c8FC088D26", + "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "0x6162786946506A19868964f78143119C8925309A", + "0x6180eb2482FeEFf6954758cA3f9E92DBa5d3eb9d", + "0x6181A9F87C29b0912800BF05F3B2e979fA1a56b6", + "0x61B4731De1612dD13E2Ae755a72efFf3f6282a83", + "0x61BE3776b2C618f104E0197DC0241762C8a27260", + "0x61a91459cbbF133A6635818f18C623F6080af751", + "0x61adE34f582539c21F4CD6ca9084c892FD5Bf573", + "0x61f81c13b08884f9c3e9282C0087516714194025", + "0x62274a6554E846b6F7F0D9202Efd576cc6DA8756", + "0x6248bC5357105DD7e6f47fDa552eFbDBa883dcEb", + "0x6266708A1058aEdd38be5C7B4BF7E0908000dd97", + "0x626caBa9023c21695C03F48336af2609F8b6AfeA", + "0x629868039d484645Aa369E2c0Fdb745752f3e3f8", + "0x62Bf274Dbe069542DA5E4E8370B4576f8747406C", + "0x62c40B797781828f5f159a6872189d4d9640473e", + "0x635b93101d5dada9A0DFCbb0940889E629BA9bfD", + "0x63C1feaF44138Cca76EF893d60FD3cFfA81FC078", + "0x63F6faC9FE48a69Bc2c7B39fdCB5B66faDB86d08", + "0x63e510f8daF0bCF9884D91E387A10558DAeFE62a", + "0x64F39744D83289814EF75823497923563E475dd2", + "0x64d2b39B8aB39413AB3b6E5B52b95C513dd7659e", + "0x6505397C82fD802dB0E47Cfc1fdcC4f0fe0607f2", + "0x6574F4423E9805fD4eBBFf031fC2B37c5faFeAe7", + "0x657AA0Dae113E291665015f52D18C5dF1e0ac472", + "0x6590Ad12290a3a3550abfC5c7ee99CBD09b8844B", + "0x65Cb5352bCb6DFAbB859Cb3E5d5E05AFCdf58a1d", + "0x65d963c4f925B897603c18a7410a20E6687DB79d", + "0x66183f57EEfab8297b59D2eDA4e2A6db24AC829b", + "0x6650Ebf56AB71D6D122225e6755bFc6d4E987cA6", + "0x6666acb21f6b4afB61C042018228b0905E4C22b8", + "0x668A29E096e048Ba14cB2836220Db593483568CE", + "0x668bb18227B086be03DC3e28BF75E493B90Effcd", + "0x669129EF7c0811a33277D4734004e1648B232600", + "0x669527b68c4e696aECb6A832Dbaf337ef7319C0f", + "0x66a6C097c9fA65347849F3Ba8783c36990276213", + "0x6734972242aD5EaDEd528f13DAb3Ad599E5F21f3", + "0x6744AF06b1A94e6F1d18d69c442a64E1Ed48927d", + "0x676F96C9f4Dd8C745526D3EbAe08Af103A5d5E57", + "0x67745001dF8e78D4ED233ce019a468FeE3aa4650", + "0x67c2c703581321Fa57E13Fd3CCC7fC97E8e47131", + "0x680AA0E2572E2E3980912e901395E80AcE4be0aE", + "0x682c455Ac254cBbC6593894e73E59Ef44B400d09", + "0x6861D7761B88663EEC8AF4fd5D5d8D6e79078d5D", + "0x686F96D9F050F1d7fD9c35971464203969E2C98F", + "0x687634cad20797fb807BE2b66880938b768b611b", + "0x688eEEbf563F31F186bcFc9F8428486183107F5F", + "0x68AF96658F9b17d57b3D7fb8bD97794264C4b7CE", + "0x6907B83c17C9a0705dc2ad25f7433C8D974e3090", + "0x6912fcB46F046dF288fEde451606D89A53061342", + "0x691552dB60b0c089A93b45136544d06d6Af16b3f", + "0x69270C454Cacb0a263cd9b3E4D321cA6994f277A", + "0x694BaCE23f01e99eCD72DB02bB84925B58a6958A", + "0x696Bf75AC29dfdA5407a985e87070fBD037dF85A", + "0x69C0d93a6ded205Aaa4Ca1364B10581c03c736Fb", + "0x69a3207610A03BAf74e5d72b3c151a0C2ce0B233", + "0x6A5a68CA091b83F3Fa865863D54119C327365859", + "0x6AA8C971864a46A3102a2B2E28E726379eEF4138", + "0x6AC40Aa36bae0bD6840a486c03155b80bA400E13", + "0x6AE8dE1cB78ADA60B4b4353FAA75b8A7Ac3319F5", + "0x6BB7b53E2e6f994BC8248B230e4C625C6bEb3594", + "0x6BfE2cD51BFA9858153EA9F8c1843adE648d7845", + "0x6C4d8CCaf1B6fCBA0e034f8E9A4320978D2DEe29", + "0x6C52Bb06Dbb3641b80583Be7048501fEd0336c88", + "0x6C5587293d81B4785a82AD0df679e774bDD9a50e", + "0x6CabD1D99E6067bC2E8b142ad8714A3c7aB6236B", + "0x6Cc5186313f4ab44C7521b2eF289be31cF10584D", + "0x6D759e4EaAf9d1b056aA83309943D6007208B877", + "0x6DE9f5cfDebD2875D8b2F28578FE7a6dFafe772d", + "0x6E349EA506bA382e01A71030Ca85f674F099F7E3", + "0x6E50931F62E31DA0A64d097d71F784AC66892682", + "0x6E8F84098C38428F8308E9B6F74625781aad0E1d", + "0x6EB531941b853057205B1D77dc51059e824Ba7dC", + "0x6Eb2815EF8ba7FcF2493E76f7510b93563e37882", + "0x6F0E31c7A3289E61DA131e3DD16669d7Fc6C6C9f", + "0x6F1527FF4f3E9e48b33F7B1e30b8025912A5Ce4f", + "0x6F398D68Fee916A6A645C33224cBe892f59741E4", + "0x6FDA6C7cdB654D8B5E754EDDd8Ac5AE4663a1b9f", + "0x6a6889E252B3f592F2161b9Bb37B772643cad394", + "0x6a9eb44F8928F82096f9731C187a1DaBcCCa1a68", + "0x6b2bF95fb676F021E1Da28100EF9411A10044752", + "0x6bf6F7a3e7674611550832135F699c0ef4439106", + "0x6ccB0a7A4df94b9BD4806656ed307CDC7D92A911", + "0x6cf0B65058Ea6DDf878f2a40B652D386D43c7a71", + "0x6d934e18616ea95046A6F2F78c27Df701c24F49c", + "0x6d9389A931FAdcB6Ccb2Cc2f8aE283d908bAE793", + "0x6f14c1352Cd225e84A21501ca79A088c81827Bb4", + "0x6f426955e558dcf31F5Ea5ccd58208F76Cb71ed0", + "0x6f698a28FF9F4661C6BD0243c4Ad438041208691", + "0x6fca4429d168c678173A39B158C0C022d3F588cc", + "0x7028E5540B20A3D36306BfB8c992d9953B853353", + "0x703D845062A966eB72C08a23380244f582312dc8", + "0x705c0d2d0987B083C8F873c2Bcd821803Cb1d5F4", + "0x707EC8C0B4a94b19B11a1b91d7F18711471a8Ea6", + "0x7097081b6D48D1c00248912f3F88e47be1cA491F", + "0x70EE25c276bfA2763Ea27aD0E0CB0fe398e7586e", + "0x70aad170f4FF503E03d57ab8DD25bd780184918E", + "0x711Ffe399c652DA4dE848dAfFCA1f9f202417b39", + "0x71276Ab8E47e88f0208ec0E458ac141332F36162", + "0x7169f359416d24fD0e7AB2646dBd8bc8Ffa84Acf", + "0x717f9a09428E17bF5C254310210E1fAAAa52889D", + "0x718EE47aA789D820D5F7221852C18A168a17DD6A", + "0x718aA00D6D112B31D6d7adBa1dAdf06054593AAE", + "0x71B30f4dEc4E0775e189887E4897f24a92872418", + "0x71FCa3f1dbcF593e1339a77C2b8dd2f1BDF1d3b1", + "0x71cb8fc7Ed78B9427A19a1F2f6bD5606B4B18730", + "0x71d0B514B9f658Da5Dd31105665d665990A1aD18", + "0x720650e3D7B18Da8FAF98b1052a1Ab434e40De86", + "0x722F952C414C7C0c9B3ff040fDe47b759091c8FB", + "0x72348fe1c4f9e805Fb2a6d78Ba7BAfACB7FBB23C", + "0x7237cD3372FBCfafF2e0A20cceFccBeD655602ec", + "0x728dC7fE617D565E4CCceF367aF80DdED64D0806", + "0x72A26A86609f3C40Ee50f8374D707eBA08905e9C", + "0x72F4D1bB54e1C2003C4710441d2c98D0011530A0", + "0x7305a30339536d3B985D145D6a072c7090860da9", + "0x7387Ac3395F01C179d73D211FBBdb921aC7A88bB", + "0x74116b33f6184CCF2Ae95bb9a1269dce17407418", + "0x741a2E8eCb9dbbA3a3825Ed40661b0dcE0176761", + "0x742DfCd49864B07362701399e2fe053A90D42F09", + "0x7440adD098a2D23Fd1245DcA0eB0E785Ae4EdE52", + "0x744Cc10CF7c76D3AbC2C0772BC19Ac269d4569aC", + "0x749F6CFCe1fB20EE7aEccA6A357c3435a19627F8", + "0x74b1258E10713B855d398CBC2116f540d4674f64", + "0x74f44994651fc100bA70A7548a2247A4d841Ccab", + "0x7508288996d9574A0e256fe62892ab005856b330", + "0x750C49DD9928061Df2224AA81E08Bc4a3c334874", + "0x7539151Ed2f972020cE8f90707013D261900c0da", + "0x7567bADFE19310A5f30544598b57d0ac1AC73BA1", + "0x75B89521d78515C1B10B3421ff1035175f0b3312", + "0x75D5f2c7E41FAec0AeeFA41bA7B27B7f726e38dc", + "0x75E1E40E42ea2f147458B17c0A178e210abA8058", + "0x75efD4217A1d7262d4fC4F57B298701AE60E493E", + "0x7624be626aCD809902303f595Bd2bcb83F7005Dc", + "0x7643735bAA1cA8C13Ce4DDF978D799B3e95acF02", + "0x76824e81D1EBB45aE7BE9698886dAdaD33E701d0", + "0x76D276001cc3F13fD0B21546399123FA5006DF11", + "0x76Ebce89B3c43f903948C805511366aAFB7592FA", + "0x76Fe8ef5EEC31Cd2B73B1B5cF4f93325300fb2E5", + "0x771967c47f097f4ea0A21a14E63202Bb1CCd89D8", + "0x774EB2610a85e17eB5aBA6b62D851a608dC7F251", + "0x774d6eE85B17a455D2f9A587099aAF1472FBa6f4", + "0x779F45a301539fAdfA3A9Ea5514a79d09678Cc32", + "0x77dD2Db5C7C9aEF3B19Df0cdE978f7FAC545F4fB", + "0x77e14cC25e8b04805Bfb7Da4864e90F56c8d171f", + "0x78112eaB6ef8871bEeEc136b6BD549441E538825", + "0x781B510bb359515bCac44e28e8a8b20551d3D37f", + "0x784989c63b30C0EC1B3C6FD4C295502153409FCd", + "0x78ea068b19E17d9dbA850A5983fa81de3d034F27", + "0x797a718822472aB1578802275EbDE29b62c2433D", + "0x79D3501e73d4dfB1D548A474f02D30d158A5645e", + "0x79eabe6Eb98141C06249fB968294F8CCb21DFdeB", + "0x7A4E06c9F14D22C37750678532A964075392138f", + "0x7A6e374Fb818fC1C557d0D354696859111295452", + "0x7A99591dbb3B1d0D4a945C353eB17B12Fa9804cB", + "0x7Af525b505866e63351Bb9389cE39a5B99c0be4A", + "0x7BFBA9fd6d8ef2565F1448310733994545eb65d5", + "0x7Bf20e28c66e569DD9dec791e33Fecc3E031B0A3", + "0x7C3fBCde62A2148A011534a39F05898307Be09Fe", + "0x7C6cd7bE4cb964Bb367123BA204588400080142C", + "0x7Caf5DAFc09FE16D2A6d593698BB33a792bF412e", + "0x7D81A1DafBF6cd9697018888Cc4DD22C0f759640", + "0x7Dbb0841Dd3167F31106a4b8cAab801138e8e1D6", + "0x7E53b7dB7515780ffd7F3E133Df32C07b5405473", + "0x7Eb146bC831B2D818695E2ed9233f372b819f648", + "0x7F0B84994068992a1F93E1386c5a81F54E615dE9", + "0x7F84DC4D529c0098E0C8b3ADe75EAaE6AB43686d", + "0x7Fb7203ed33ddc43027402eDf27fb355dc004298", + "0x7FeFcb38018C31c0047bF3e873d2F948FBc5a11b", + "0x7a42cB57132bf5aA48374476687D704AE33eA9fD", + "0x7a6AAf21a712699b3A5B47c2289Fb7361276e285", + "0x7a9dd7e41E0bcbc1D57f34e1DbAf13Cd7Df9C0f8", + "0x7aBD0aA1a2bD00F823215D4aEC93C561F18bB9da", + "0x7aE1a16D5a1066597E7cfFFC68d0AFE4D7653e2f", + "0x7b2C61e23346fFBe081d635Ec4063F0367115CbB", + "0x7b37D301013d69aaC5249413Ee3175B9FA889A19", + "0x7b4566689616eDbeEb0d4B1F67F0F5Cec115968F", + "0x7bCd2AcAd10334646b0B215aF402e0003eedbeBd", + "0x7c6B0184E2Ff3589b9C3c8A4cD459cA6E0D4960D", + "0x7cf1a1bB4602dFb9831862e87E9f07E71a1D49FC", + "0x7d80169f0452142c41D5d7480526803872219bb3", + "0x7e6C69bA9D00cB4E84Ca22b028bA28aAF8E5B592", + "0x7eBC9dc456F453BCdb03e4c7ACaa5731FAD4112a", + "0x7eF0ec546Fc78fDEd79F0E0bB91B1354Dc85b831", + "0x804A8453B50CFA41b1ff25Ed23CbfE60ee25B28C", + "0x805312e2f3648f61E51Ce74624820bb15b3073Fb", + "0x8073B16fe0FA9B4928FC4999581cA5ca5286A4be", + "0x80A0429C230221f1ee2e754775E6a9A037b0e285", + "0x80Ac2Ac6CBbDc803F6C621971fA084FaB0741222", + "0x80C26520ef6A3EFFE4847d88d721Fac5f62a27bD", + "0x8100c3B4c069C4E26d29998f530E707684e4fb78", + "0x810BcC443A01A4013bD0Ffa78A66518c69D70Cef", + "0x817E3Ec3ac083b9b66AC118A4E4f2708Ea156F19", + "0x818C8e447b7f41c0Cad667e7e9CfcE695571861a", + "0x818E3C511ae9ADb127d1A4f2C0823FDAC4Ae66cE", + "0x81A82Af72B04cEc8420521ccd6bF56bA17c63AB2", + "0x8205cbD6CeC4F2c05E4E36322293AE23dFFc34Ca", + "0x8229AE229952738671B108B2638639B69B4C03Aa", + "0x824F4074CB5E07078684936BBF4613CF5D725734", + "0x825D8b44720378E3b20307035167C7a110cEb7aD", + "0x825cE72d377095Dd4a6E646c3b5Eb57485f08d4b", + "0x82C3105d7885Eec06D3491aAc6b28a432FAb7DA6", + "0x82DaE16Fc731478f5DDaCe2719a10E186ea76744", + "0x82E291B6562Ca24b9a75C5aC49D56dFdcc32Ff33", + "0x8328291A87c9822324DF7F947cc855bd55944a4f", + "0x8334B61A499495C429c3D4D838E0F28C7a8D761D", + "0x83596320cc226dF2d5D7160de7B7d1264bF52626", + "0x83Fe74Dd76D5dd511801399B02d38821dfa4e8E1", + "0x83db8953578A468f149F63c9d36a7482B75d7307", + "0x83e40603C96496310A406D9B5101CB5916a6255f", + "0x840c094B22dB7531864879E5E36ddDbeb8ef4D0B", + "0x841366b3bB86a832809C30cae5e2acb44e79faAA", + "0x8421628dC429fd2c6998Ec0B74266fC7510Ee566", + "0x84284F81f99D478c658Ae176143366836b256dBe", + "0x842e0255cf7931Ca9B492a5EA6fea2859d239F8d", + "0x84A0D3dd81D81fAa15b32E79AB722676aA9Ae18e", + "0x84A51e38Edf25699C0Bd3E2A2d25210802340c9e", + "0x84a0bC09f4A613FE7e5F6F55aB219C4bE5CA62A4", + "0x8519A3dE8D1E1e8D4541341bfC72aA7566662f48", + "0x8521b81536B8C1C5D682EF31C126429A4a7CAA90", + "0x854A38Ab85ee41779A027f48fC5d10BD9086f159", + "0x858B40aAb9D1cdC0E20f36579ACe43954F8e6914", + "0x85A89EF4262d0409dd6886e55bE6d1eF7804e46E", + "0x85B95010558048ED64123e88A6Ecc4DBa512e823", + "0x85b6b51f2a1DeCEbD0864969dF9d47AFF3c924dA", + "0x86272617caf7BAE5c5945F5d0d4cBE861709C8C1", + "0x864b083C4f83cE68d519952515E0728177e7ff69", + "0x86599C44E2aB6b1FDC1bC354E565e6D6D9CADFA8", + "0x86C7F4b4920a09E410fAcE6E2799Df48013a2321", + "0x86aA85533BD2F7EE389c012D97500ee1859092F9", + "0x86ef80e86b38f047E567883e9bBE408f078BaC63", + "0x870e8A6197ce02beE59Bc2ec14810a41c18Aa6ea", + "0x870fDC8E940A0064ac40d2C57A1c575e5f034D63", + "0x8712bad787dfB866Edd57e84fD7e965475850ACb", + "0x873bFE637278427a9F6048a2086bfa5439A66Be6", + "0x8773A520022AE4803595A74E69AF3B85eD9136Ee", + "0x87A9a86f28FD668065679fF3c643328086c6872D", + "0x87AbAFb4e365b7e2F2D0519dB2d6a330Ca4f2663", + "0x87a59f21e739f14992686e2Be83076DCD8816563", + "0x87b566362C4F208C5546fE95eb23D9A6BBc86dBF", + "0x87da60ad1bC8dFA2Ff6C4369F1979F9Ebd0e5ab2", + "0x8832F28e9af0215A486debCA33ee3D75B32A07ED", + "0x884753351B597DE46a0C77525AF04EB24d050A1B", + "0x8873F091B0f238b9DeD99fBff75A699E320ad8B0", + "0x88813E0228117D1368565Ab83a919AF0ddfd70D1", + "0x88873bFEE305D4D531A5A749C33B365156a8a6Ad", + "0x8887aFb80D096866c2Bd0eC53B69ff7b9733F75d", + "0x88A9072a3Fb4E18298a8c8436924B101Bf0348EE", + "0x88f114650FbFCe612C21d83e387Bc4aA04bFDd6C", + "0x8928c1C28105647885BA866Cc982Aa40708d997F", + "0x895FE0665Ac471743da67032d3AeE6DD48c864D2", + "0x89759060FE401de5Ae3dB44AE820aA1a1a8A0Ca2", + "0x8987f869494D5B05a37bFaa5a1D18B3dC18ce364", + "0x899FA6818EBaaf7178bf383acA661a7a1a59ABfb", + "0x899bD2b2B17076ce4B41634Fe2149301890E78d1", + "0x8A4ACfeAd253cE99f28D0C20E8BA8b1dfE7f0B8e", + "0x8Af56fb946B4b186d6F7F01d341958d471271EE1", + "0x8BAD9847Ca9a9B0Db1a71feEF0Ea4D862046431b", + "0x8C71709262F92F2cAF4Ae086f0F44fD31355c4e9", + "0x8Ce5D954C1a6c3f238E6778AE91fBaBE6d909B8F", + "0x8Cea6A0F8CA50C337faD4f2b54A62CF4EF54AFd2", + "0x8D59627b163BeC92a7C125f9A69CCF3558988E2d", + "0x8D61dD836043374E716E3C43b40396aE93315b0f", + "0x8E53ab9fb16a020cd68F412D7e7F1f03832A9187", + "0x8E7d9a522d8EaBEdEfDF8ba9Ce5C1F2226dE3ABA", + "0x8E9CC430e3c03163b78e17969572C1D07E29478B", + "0x8ED1549Df96aAf085bf3119315B7F363Bdd6df92", + "0x8F01A8E3A2a351d644f4Ff9627b355F614d0AdFB", + "0x8F22C4B8eC8fa93a45202810113B44985dB084c6", + "0x8F79cC2BC680459bFc4D77d08e9BE9996aB3c880", + "0x8Fab5Eab3FC6B8F0E6fED3358d2dCd236Ba42A4f", + "0x8Fc1f4099b523b07896E0E32c29039f8675483Cf", + "0x8a44959dC4A729d1F5B0d53785F7f9EF5C4A08C5", + "0x8a487621bA3bFAc71FC237BFb2Ad2EF37b1C9bdA", + "0x8b2f53604fC1eba68De515A3f240fa7968ca1f84", + "0x8b4793dbE39Fc474a9bbE155BD143795a10f5cD5", + "0x8b62f936937735740F8d9D0614e01126de66B318", + "0x8bBa1A58A09BDBa6452CD2beef41cA1D08158209", + "0x8bde9304255A12Db85dd621ceeee54E441b319A9", + "0x8c1473159d7Ae82C4cEB5AfD2d7B5472EC56c5Cd", + "0x8dC0c0ef660AcE2ae3396113A84bb9DE5939ad3c", + "0x8dbb36788327427320b18B7c0CE0eE248AD4bBE3", + "0x8e11ED2112175391C06068bcd74cA8eFFf472C6c", + "0x8e4c7ACeb79d8ECC1a7635F8bAf344827E54f9C5", + "0x8e72b1827367FcE7E88dae5c7a365cCA2C9f64FF", + "0x8e813cE78cA4b8f8666a22629A842b7AEfbDE9F3", + "0x8eC344BBde433A2a22e54692Faae6D0Ba171482B", + "0x8eFEde87368d232B93F59D92b19b2e30ac8f7490", + "0x8f0A93B058F8D431cf1223706878Aa0FA29014A8", + "0x8f0bf7Fea7a3ac208B79F0E61C37A844ceA4A65d", + "0x8f55d3d27AC279eB87aD1Eec5AC352A5df0BCdb2", + "0x9050Cc5Ac00510ed2A1FD8DB620EC6464eDada13", + "0x906E1c1BcFFb7df0451505b9bb07970CFB007c06", + "0x90D7aa7f22aDE353bF77b27a918bA2411D09f964", + "0x90DC6C7B70b1AAD46Aa0a534aA018F138eEd47c2", + "0x90c9e90e3a7c59C44ffCC5864CFe2bf3Bb26F04B", + "0x90d5121570aAf7d4346945d4fb82aFb7441Ce828", + "0x91062A88f5B1c3dDd14F4A7E0173e286b1b9Af2A", + "0x910E738D5cc30E447e6dd47019BFe28BCDfBe875", + "0x912b9c432B5B905c3b1fE7CCC675928937EE3f56", + "0x914dc2F940052B2833D9c7981cFF078D9edD0642", + "0x91ab351A95e0739b7E55b3eb9B932dC7593FB767", + "0x91d55EF21A79eA1C8276da7ac2F70eB1320aA87B", + "0x91f1bCa65cE6d9bf9B75aa1bF35e17891717F2B2", + "0x9216ADABDE1dBA73456d85631bE45Ec510235BEb", + "0x92263F8868621595e946cDFeA05a1bD159797E49", + "0x922E1Cf6d1F5b19629b65340DEaf0A0094b05656", + "0x92429B388F6D35Db475360B4660198818f575433", + "0x92E665e802F9CdB2aa2418CBd462bd9Dc98514a2", + "0x9388af13C845bBaaA030fC22eA9d7AE7042BB6e5", + "0x9391359300eBa0265e18265EF21B64857eeE9e04", + "0x93Db3ce6eFa759A4A7098E3c4ee7F57Ce500798b", + "0x93E5c7E3b1ded52943762959Aa6b81897C38132e", + "0x93e9bD92ED2D3Df9b08D6Ea10B4238d814Ae6aF1", + "0x94034Ca273Bc37690412B306ff0279F733045bF7", + "0x940fd137725B05b3F9f5BFf784D5012880Cd7A43", + "0x943318B80bBa1dF3c52e4bC5e6437cB8876441b5", + "0x943B8E10aa1972b02689572240662f5D6F354EE4", + "0x9460a08386c26431Dbe144D7680179e67CC4BC4B", + "0x9486E884E98956043E092510E9eBC1F3bd3B24EC", + "0x94d427BDFAc6cddB8d3690690F93993b9a1F961C", + "0x950eEF7D95E4627167309bF414D4f4AE05dad9FA", + "0x95219Da3f6E7086a242AD39186fc7351Bc01bD3b", + "0x953b3e1a376E16F4962b9BF119477b7EcAFD55D7", + "0x953fB26D3B77B129E88C72044BB8fE4f79Fb6778", + "0x95516B854EBc1F9996F5C5f66DB0ECFAe3552A54", + "0x9566bd3D3586514Ca6A4c83FB81d27D45c3C0b80", + "0x95Ac0366eC73b5047667949cf9B2b0d85c41Be82", + "0x95D93571929A4DBCd05d8EbE328795Cf8A290faF", + "0x95Fdb7cF83b6D3532384122B26A272167a1b8B29", + "0x95be239341F9447476fE09dF6f87a505C75C4B47", + "0x963a577d3aB04c915cE91B66AAA8561F3d2e4643", + "0x963f10c3a2983e4C268a837bDe7A277856895750", + "0x9643fFDf6161f6d6D2287A8d896C850feF8a863D", + "0x9653C6a9b35CD27312e6c8958Bc9aF0AbfcFc17a", + "0x965C8Eb042c0F35Fe906F68d1582a8A1Bbe56864", + "0x96792cF4309Bb94239aBf090Aa0f8Ec8C022bD4c", + "0x968027A36ccBE41a29f2b5422c9A0B2a3B1fC8b5", + "0x968089210e684784D3C62980aeE107618562FC51", + "0x96B4617E7BAA2d5572C8f8c970A6f42973F447B0", + "0x96F64cB169B3DbB61E8da2bE2895BEf6BA5EA9e0", + "0x96c2071dc1D7d7AcDFea44a72c516a13bE7260EA", + "0x9748D79c834CeF4332eA2A1DF0327FB71c942055", + "0x9756EF28568565134f52789EfF9C197bDa4956b5", + "0x978732c2490Ef2aD02C21A61839CAA37587EF9d9", + "0x97cF1BF89dAEF285dA192B0860B37F14E6022EB8", + "0x983D546cEC2658158B66610886B6DE87F6a38ac2", + "0x9861bEb7a048Afd616232763466f676417b930A5", + "0x986B4F7A600Ac28c28EC7eBEF6EBF1b75c19109a", + "0x988CFDC2F4B3Bac22d1B52614e541A3184421938", + "0x98B2578CF2f52A7de3E97951805e214272792205", + "0x993bf026a44a6fCF373acF0fCDEb66B6015d7B71", + "0x99539A6E3c58c7b8155e8fa20f049Caa3c3a4fe8", + "0x996eA0E455191664d45d57bdB99476ae5F6F854C", + "0x9994F9b7C014db24394f6d1A45D709F585E5a986", + "0x99B1Bf82e49bd7a37FB38ae79253aAD2eA89EBeE", + "0x99CBdD587550D058fe66d2a086374D26d29F2677", + "0x99DeDF26b49C8991e5239317B78C856C017c5AE6", + "0x99f50304a8F49a8e2095F81EA789A4D4BDBA01Aa", + "0x9A5c4178ad1B84FCD0574d8C564DCEb11A1B595A", + "0x9A5f157A9274284c3002442cD807E3aD4578A586", + "0x9A9388728064937A462caddf97cce5C3Ced175de", + "0x9ACB4081F64adA9B5F110428dF169Ee6b284e5c1", + "0x9AE4a53A3dB0cE655Ec5715603F3007904229007", + "0x9Ab8FdbF3fAdE54d9905B04581D2E15Edb9D11D7", + "0x9B4FE742855e5f5c62395080b37cfc728DA930d3", + "0x9C3A0887c22e536f687E152F06bC9f0e4Cb0ADE8", + "0x9C4De717BaF4da139188CDa34117Be32Eb98C089", + "0x9C90C36f989f3b98f69847C0319048419531071B", + "0x9CE2e3723f2d861fAc959ed8575e289fF8A7cf6d", + "0x9Da1c9D6A2E4366c6e6fE32C93d333732dE10B13", + "0x9E3788ab7bc15b0843F1B8D32aB972Ae32Fad338", + "0x9E49459D10567E923cdE7E7B0aBE68c9d1dF3931", + "0x9Ea8c912A6eF9523C5F5a80a114EACF1B0c099A5", + "0x9Eb48854ADE3f151fbB7826e12Ef89722685b4D9", + "0x9a381192c669Ef5c4805164300172E7e46DF9492", + "0x9aB8Ab0fbd498e7775BF81a546CaE8f794E61289", + "0x9ac964FB0206f442fFeCb796770274c377468bc7", + "0x9b24C151404c5C18889800D61Bf40b3654fB6b90", + "0x9b2Ba630CBF227eC548a0aD3DAdE311787BAF462", + "0x9b64dF59915bd0CCd39c42d06422f0393E3fA402", + "0x9c35a4630Cd69339F5c69fDFEEe2BC78Fc141A3A", + "0x9d01b4c7f85a160433D3f713BDfA26709826fb33", + "0x9d3Dc32CcF2dC42008E5a3d49d6FBAc439e14f4F", + "0x9d74C180BF7c7FBF996B314D9c01BBbd2f22738f", + "0x9dB3961B5Bf4b710641750b61cca166605cD0740", + "0x9dbac3202a2024dfcC2D232168fED0afa0D5E4E8", + "0x9dca65Cac7a397A2e804F6A2cAe3A780d9b9D31F", + "0x9eB3a6a19695d7ECfcc113a1443c00Af96316E49", + "0x9eB574880E64505662B556178a17CDC2F38183Db", + "0x9eb865065e6e66E640361Bd5aec7e3b72920A022", + "0xA071D94a75461ceB343F47F1C1E8E86b053d6f22", + "0xA0D92A701b4952b452F77976aD1deEE6f97b63aA", + "0xA0c88E4c09Fe382dF6B320Ce6F509703c87B4F7E", + "0xA11CE4C0FF51CFA2042daBF0A1d498FCea3b9906", + "0xA1520C5A094DDc7d739AA06174f9c780F5D3E594", + "0xA1B0ac3b025cFA97C10B2EBb3CC4cc5C14210205", + "0xA1C64aaECbd48354f9b80a08185e72B29d938BC8", + "0xA2Da6F39b89F8eF9B7F9Bf7A957aAC5b47d7E77A", + "0xA3263da22B9723642155DB965b9b1A95B05BB360", + "0xA3d62c0563765aa55d04A723017b1b1Ff13eF0B9", + "0xA429FDed5EbedfAac93115948840d017572dD5EB", + "0xA46512b90845324bbbb24cfDaac15F9786CA6D2A", + "0xA48566E55d39E4b34378219c4b733541B739e47E", + "0xA4D7503C26A82882F5E6e08B83469e5FCa4350dd", + "0xA543F60cCDfDe37E9C8C34D57c98b2377fbaA39a", + "0xA5EE8b3478Ed92F1A90E9c72CDe617013D1934D7", + "0xA6197299D70967418595B581E0872D552d0e9C81", + "0xA63d3D9dA33EE399c3BfC1924972E0c606832E3c", + "0xA663f24461cB4116db20b5F20c8E51E1d2299DEf", + "0xA672b2484A484EB72B9f39A3ca7eEce7c1D6834d", + "0xA6B4039E2017d9e913AfA3603182AdF83704D4e4", + "0xA6c7F6D7867BA98276E59d4635B714C22fd4F97f", + "0xA714a844bdb759Cef6f336c1E468Ee9075EAaeB8", + "0xA72C547E598F309c5CC23EA5AA4293558857e7E4", + "0xA7444189b1613B0D1Db3e1eb5062612Aa356E8e1", + "0xA76b56846Fc81CdF549Abd98e2A8620871d6138F", + "0xA77A76bE7C22A431C7992a61BA1465A44BCc6319", + "0xA7cA73d577611F3BfdD2B153532A281c011b0083", + "0xA8463B5baD83756dBD1B4274ab0739d91E5C13b0", + "0xA85a0136cAa9e0c96803fc5D633f089d71D5b863", + "0xA946ceCd9FFed260C2da5caED8ccB80513bE406D", + "0xA95930D84aAD6Af0743E9eBDAFD033abF0ea322a", + "0xA95eC500E4ac06a3159e4fe14034E117f1F26467", + "0xA9C9A4a48E98BA117e9b86D0E2Bd8EDa99BacEdc", + "0xAA0ED4A68C3bF493a54ba27DD77c520Ec7320e6E", + "0xAA1A68B7E13def074Fb080eF3812B97874158A0b", + "0xAA71D48D187F0e8eb32D3d7A7Ffb1a8fB76fBB85", + "0xAA8440DF10f956c222364A6689D4F090e2428c9b", + "0xAD03c8c66E01bb7f7044b33a10959814687357AF", + "0xAD0457c65f48719464F7cBd810546d619edddB3a", + "0xAEabB57e58D688997f4a8516F710f20E37744dd4", + "0xAFe044954D745A2f66aEC9228A342A2f2591E3b8", + "0xAa10D91edBF5E498652a06c9E0579Adec6A75e85", + "0xAa90E46D3f72a2c0B8F5F5c9F441Ab1f41e18c1B", + "0xAb355C9F5e43C656Abef262827e754A2FED8F69e", + "0xAb5dceBc70637c13518Fe4dEF898bb67c1Df012f", + "0xAc457492074BA6f92963963F2Ada044739fc0c36", + "0xAc8BEf9E03Bb32C2dcD1B9613dA98Be593B0017e", + "0xAdE9E18B0BcdeD84e60322bF64B94C650D3D3555", + "0xAdd8Bd3e1FB860A4B28264eb077752f1c8A6E0CA", + "0xAde06B4687EB1c4fe44EF20E3A249CDcED0F877b", + "0xAeD0332D985b0F104fF6A96332de05D13c7674ee", + "0xAedC3Ba00227FF63Bc439A9F4319Cc04Fb99282C", + "0xAefCB14F964412aAE773e87fbcd232B0Bf95925d", + "0xAf00aC71Ca085D1eA8D6618C3A271419e9d0FBB4", + "0xB00Bce9F52bFdD133E4B00D72905d51359471aAD", + "0xB08D19E411a260F73548F5d492E287b14920e971", + "0xB0A1615EF3682d19016B31EB12566CdB5c428fFE", + "0xB1379318AE2cA5E36E21Cc7272b744822f96C2C0", + "0xB1399674389ED7b2f4dAdf1465A47a71340A2b00", + "0xB1b5744a6aAF975CfF857Ac8E372fd3930542aA0", + "0xB2B1Cce5b6301B47C2c24031179cEC3e3b79676e", + "0xB30C9915aFD2104671423DC0C76E9935964378A2", + "0xB33D9942ea7CAB4BC8ceb62CD618a5e704BA7234", + "0xB3A293EE54A041271F43C2f2E64069983AB60013", + "0xB3E2b0E77674f59658514039b1a7aD12a57ED63b", + "0xB3EB5daDBb02C87245EF833939025Ce142149535", + "0xB43774CF0E314717504f55E2403f7410F9c59E66", + "0xB448F9Eb6fa28493782C992624cfEf9e3Db08dC5", + "0xB479d527eD180896127556C989F77b370EA413B9", + "0xB48DEfa8C7E921dDF61CC47f712FA57f338627d7", + "0xB4E05AEaE6112501A66e14217B6FCB55c90F028f", + "0xB4e966c011e406dA5065A5B82257169f5AC85b53", + "0xB502400bC06a2140f7977a1a10FDE7AaD64D1677", + "0xB600afB4989367A8263c67F7a766d0A56FCdBf0a", + "0xB62c1da59B739eb773418599CfA6730138a76571", + "0xB660D01BBa2f387bFaD0017A4c06667935464E74", + "0xB68a9eA1CbcA4aEcAAeC1225d04D1644b7B57032", + "0xB6B1964D03d1cFD31544D04cdbA13887C56B7D3a", + "0xB6BcFBdfdf537a12D228B758E2fEF8D4bfd508FD", + "0xB6F1d19E415E8bE1b97b8FA01dcCE9FEF9e48401", + "0xB6c5e36865297d98D8BCd883C812a62462F1E75C", + "0xB6dAD97b2857F197632cE14b65F01B2a4D5b70a3", + "0xB75EFdC96cFD920b6c5a221437deD809f311ad7c", + "0xB76Bd8603710668aEba7361CE5fFCD7bb2937586", + "0xB85b846ce34C859d45bbf11f935fD15AE8A975f9", + "0xB8B75BA5ca067E54Ee5db4C982409E294b670a48", + "0xB8dD115a61E2B1a5d90F14B033367857f534e891", + "0xB96c7677DaeCa8e7A5aAaf787634e136Ce2643Ab", + "0xB996eF9d8cdb597A4504889639E3D8759f4bEa5D", + "0xBC9D81C5D3Ee83d05d5E286dE58cb5224C3aAB59", + "0xBDffe43366d822168cAE8C456487F847b7d44e2f", + "0xBEA71ace5FCE2aCaFdc05805Eed6e957b0684fd2", + "0xBECB702C04b5847fc39AfB7865FEd47c465DF2aA", + "0xBa113D0809e0db9F7B4942761ed86E2a970192Db", + "0xBa5f645016E0089aE5628E140C6A97c5fEeA3ec2", + "0xBb93A9042B93695E75492399e6A9a23f305a4195", + "0xBc1690dC8E6701bA445EBBc9Ab01EC4a22c35FDa", + "0xBd0Ca6d84F170Dfec86696B103e1dd7131317ee7", + "0xBd81B519BD20Fb8B789e8CA3f46Baa66aC39935A", + "0xBda5C96B852ee5D202C8463C3CB98fc34232D7b7", + "0xBdb0Bf1802833C80743C284241b318f219790553", + "0xBdcfb8F6de1FD50c704c9544F35D86be935e91F9", + "0xBe6f95fae97D9F5d3B6c9320729659b3185294dd", + "0xBe6f987D24faC1EC675ae2197746a331BDD8F8c2", + "0xBe77BcEc187119E05f36a801528b87E84E97697e", + "0xBeF6017982bd614dd88C4aE33F8643B3C0EE681c", + "0xBf112d1F52D2a0a2ed4c188Fd5154e19EB228f9F", + "0xC01C45D46c47BD07ED4E96a64B266E8D0526bE01", + "0xC12fC4d609e78037bBfa72E3c8374590DdD4E1f9", + "0xC1936F41d50b904430A2060e2a85B4F7ef2a97D8", + "0xC1aBF1155831182Eba3eF35cAF3CAD424E0A6d34", + "0xC1eFf57D4dbc4013BBAffdD9eE0d6fFE46Dc3622", + "0xC1f0EC4A4097FCB13778591730696a81E9D9017B", + "0xC2135De1733890Bd4E15313667Da133Ec2FeA378", + "0xC234FB057E930503e9582575DC3997011720eb33", + "0xC2B50A7715d1dbe5EeFB6eC2D5416cE7Ca13da30", + "0xC305E48D6E9F8136d2a0Ad83791BE9eBA933E70E", + "0xC30935f9745f8Bb6185AA30ee574c36BAdE4DC07", + "0xC359B3ff9623cCFAD61c70D24b0bFcCAf8f35004", + "0xC3b75A0a27d166c8F305382472e1A99CfBaB3E9a", + "0xC3cBAB4cDfF688d818D3b4A104e4230cED4E89cB", + "0xC46361e6f606Ac1D2c081B243a0B8c80C6768BA6", + "0xC497693848e4e931b4270cE3E59057eeefa4E5Ff", + "0xC4E8442327FEA2d8B70A24555B50BCF5B2005c2a", + "0xC5Ae6CDec6e567418C1c29306AD366273c181109", + "0xC608a44861224fa1d6E4d4B423f6CcD3153959ba", + "0xC723FEdd2973806692815A39Da1005D031B53F36", + "0xC736b563DdeAb5A29A7a57a1fb17aD8Ea53437E1", + "0xC7a6d6c868e962961f0511F19E4B94e9bf860120", + "0xC8536e4fa475e60165f9FF74846b511510bf577E", + "0xC86149f7dc465f6cCdcAfFcd1Cd7Baf5754E2cf8", + "0xC92d8ecdBeebE96b2C79bDe06798481249b24fbf", + "0xC96B4b6C938F1D3Da07dAD0214d59d0f7A2211f8", + "0xC9FB6f144A5466d423287217bDcB92B7Ba73979D", + "0xC9be57e3aD9B9B94ABEe201e254977BEEbf8e7f9", + "0xCA12651e45d4E24d37f8BaEddfD25683F9cf2DA2", + "0xCA14B513A9C0447A5313e374b1f91Ab86ECcC494", + "0xCA9708E1e9Ef73FD950d30BDACe444B0728FbF32", + "0xCAbD2BCbcDF6948785AaE6d4A50EDbaE6115084E", + "0xCAf6e7d634d649b32751970d9654A06e4D9503ad", + "0xCB4fB2F09B961a0Bb34c6AA2911b0f2E9555d2Ca", + "0xCC6A4C848acd539B1855eC5e0cbE4504C1b89417", + "0xCC95D010BeB910DD48Ab0777ec81035F0d514332", + "0xCD5A53ba5cd74260939Eaa8C41d8c96fa36f8cE7", + "0xCE1356A7338eD024C30DDdE9642249C6d1DB1A89", + "0xCE3027F38E472b1B17fA2BA7AEBB47533D9Bcde1", + "0xCE45d73a9aB3813698125B6B9BeE4cffa794F330", + "0xCa42A68ebBBccc0612635525472294984Ce48842", + "0xCb7264004b7799a067087B5B80D03483c3E0fD55", + "0xCd0eC591cc8561B7F57B8E780C33729063606df9", + "0xCdC86423b204C8Ef692c93D65F9FF6577bb9F1a8", + "0xCe5e687212238f29090A5dE71E8112D2D8219E0a", + "0xCeC96044fFBCAfdbC5678bc8b953A90981BBdd6c", + "0xCeEDF9B5F38a5C7362B821797F8e90444569c1c8", + "0xCf120691EA74D245F6748DF78A5ffA463eAA5651", + "0xCfdcB1Abd772A959bE23A590D39d12327693Ad80", + "0xD05E05B481666496b5D02252d25ED039a95bDC8d", + "0xD06DE73EE92786cBD115dbA25eD32eAd29aDb4b5", + "0xD07221Cf7ab3c2e53b2039fF0F3a1b08965E1b2f", + "0xD0747d5597eCd1Ea7c92Ab78811702649079e617", + "0xD0f569D7D2Ba290768d373FabCEd613Aa9c2FCd6", + "0xD124F076e718DAaf4A5be020E259D19442786005", + "0xD12BB061B25c44E44442AC4124D133115201b53f", + "0xD198Db8b93d9ba573185E93F4FB6F408B7564a45", + "0xD1f3e9F1065400E5D37C26D078ADf7371DF3b244", + "0xD2072E7473d5C633DC8dED51A299fcc9e6ee47Dd", + "0xD2Ab6e2874802Eb7C7242e24B1ca0b86279Bd9C5", + "0xD2E2038CF052dD8398A512D7053961B8F172250e", + "0xD2b33b0b75AD62e66AAe5b986E942c833E799FB3", + "0xD2eB912e3505c47F34C25C5DF22e9f00533ff7a2", + "0xD30381e7fEcE6D5b278c187370066f842Cd927C9", + "0xD3b5812519878ee39DE514611C71AE5155cbaA03", + "0xD47e6BE2Ac9B5C87c2F33c2bD17F04f7DDfF5FDc", + "0xD4e0431333132B8D43F021d77D6CDc0c6F84feB8", + "0xD5495444bd4FaDB50fcc3757c12E6A236820d297", + "0xD565A24009634b2ad6793AC45bD6B61E3C39cEB8", + "0xD58295C89de3E4Ba76725f61d562a53E297ab9e7", + "0xD610551fe2aC8aAb4b41ed40B451C83663B01844", + "0xD63E228ae6E9e09892248CbE0C2C3c3e451357AB", + "0xD64B720240AE85533AEE8D2d0a968d72a5B593F3", + "0xD68Daf22E1416aEF2742a1636a1E3790832B7C0b", + "0xD69EE9612abAabDBdFAd5da5b1f0e26a72beb39D", + "0xD6D3fB7580a4A745a1A06A86d4EC39Fe66D65353", + "0xD71882D3fc74DA99021E7C226d37E222Cf035811", + "0xD778584262F4f54881D2427ebe94b8cc31073F93", + "0xD7E6c00E9D208A112086103D744B843e63bB348a", + "0xD7aAE517F6765d26C4904FDF82DfcB8e232289c0", + "0xD80D44ecf0E8Cea945CC152d6AeD9260D3019dc6", + "0xD87753de4A7F0654D1A07fE1FF0Da3D6742D2879", + "0xD8C93fA24A3aECb58B98fbFFB24c84C89C409b29", + "0xD914a33252D9A6464a5B2Fa0c72f342005f19030", + "0xD930EAB3d39a025e0142385C1C05A06C02a7fC5f", + "0xD9DD1FBC0bEcE79D10C734303E5d0FCD408AA031", + "0xD9E694E0dcff3879b48f12A1542e4eeBC8e16Af7", + "0xD9d26790aB48cBc648e03203C041d49e28a829b2", + "0xDB5D3aC5b7691788895356016374b658B8c94983", + "0xDECe55b32460Ef6CcEa316Dfe761be38BE490a8D", + "0xDF3d01E63aba5F6EE4F97aEee7cAdf19567C6831", + "0xDa136C90ba3A4804425475cb649C7463bf2de645", + "0xDa8e6365fD5C56b83a262dBDDc2a2019ADDf267a", + "0xDaaf1f25320C1D71380B5E60F843C4f41d99f516", + "0xDc0727a7A2bF76cF638D32F8BeB3e0bEA0AdA851", + "0xDc0d784091F760896d399C5D99D2d6B473CA4645", + "0xDc13a24A040a8222E77a40Cb4d00d5562696dF8A", + "0xDdea3588B428fcCD1c84bFd93f52095aF39C9065", + "0xDe5017719038f0636A1c0b5933e3b89fF0F9248F", + "0xDe81786DC3F8f315a92D0B47cB5Dd4EA5CEBfdad", + "0xDeEB2273369D922B29814decfe924e366C108A35", + "0xDf085Cdf9F335e6dE5Ca801a107f4909F432907E", + "0xDf15436DA15DD06DBd3896E83e09cfC9384a3F1d", + "0xDf42de3046492235475e21E142b0237BEbb171bF", + "0xE0023AE13265B83Bd97690583C78ad640fACb8A1", + "0xE0032620b447A1F7946d78B92A248Ea0E298d8d2", + "0xE0248DB2d3ef968758Ac14C2980125443FC2fDB0", + "0xE04b102B8b2493EeA6C29B2370EC6b704212106e", + "0xE06bf05C8ed00592730d41Ffd97Dcb0ED68F3039", + "0xE094C69132D4E1a714E42a79edBB49c6530013cF", + "0xE0F26c362C54d714C9147b3f297bBFC44f2aB372", + "0xE0dF33d35515D60754fA3fC82755270e29e07780", + "0xE1A3FfB3A66A78Be623e3E5Ef384bD41677c5797", + "0xE1Ba85Fa6856a56DDb27C0955614Cfc83899E038", + "0xE212fF176Ac4770Ca9bbbdA4D27a6082a2320d37", + "0xE255B7f60e6Ee06dBCd3E99cF82D347766E7cC05", + "0xE2DD4eF3292AD26DA80480971a762245Ef55eA7c", + "0xE2cf028deB0073b7888a54f424aBAeF7E7d23C68", + "0xE357CcdcC96Dba24b1e8709886d3c65044058cD7", + "0xE3D318090eF6a2c26729e5BbE370af83047Fb87C", + "0xE3E7e9ee40Cb58B2904E894F0d18840d282b37C7", + "0xE3F4F7DE3615EFaD26Ba6cDD06e5FBeC0fa556aA", + "0xE4077a2F7d15bd90c714958342Cf6a1885Da4DfA", + "0xE464Ae27Bf959C9d946d81f201FFC539c12e5337", + "0xE465e0469d271AD63a7fcF3936d02CdDbfed0b7E", + "0xE4953B785ACab1814C75c0aDA43114e5d38e6800", + "0xE4C0163F4766d0B35Dd49db6d6095856C1C36aeB", + "0xE52ECA0b2fDF3849D91Fd07A6fadF8C3cDe7ada8", + "0xE5524322375143306eD025cf403Eb4Dd5aCABE11", + "0xE5AeA58974B109cc7F4BB5A1e055Cf66D74Dc32e", + "0xE5a7900bC06c1d3c2581E26a0B0bF53c82012Fc6", + "0xE63D0c3162c839e2dE79892309A3c6C72BA4A42E", + "0xE6530D6fA9B51014E75689578609eA38c21F292C", + "0xE6954CaE25eA93f7B8d2caCE365c69552B1615cC", + "0xE6Cee711995ce6f803832E08e9175ecd2b6D27a0", + "0xE6b10D65fbAb142668B0B899764F16dbd6a8e1B6", + "0xE7C15bF7a9480C3283A0D8fAc323426eb7D0954B", + "0xE7b79879acD09523a308145Da961fa13811Bc121", + "0xE7cfb4b812bff5895BDCED9a414F4345fE8d6a60", + "0xE820D687EFdAD1505b674C8bd86aF5098ACF928E", + "0xE8703230565A6600b6Cd3f554A35eED444a46323", + "0xE8797F165C8AfB2CA158820b6440964ac3034898", + "0xE88cB6b00090489923C6E9DFd257D517d000e1ad", + "0xE9480120Ba7E578d7D46Ca4c7Bc269Fa7DF2f197", + "0xE97453C0251e0b6bb2BF050197E118981CaF1b6e", + "0xE98b402aB1A9c06749a527188aA195abCE104EF6", + "0xE9D5244F73099F4FFE8F1445Af7b55305DB24b82", + "0xEB1EE6378f52d4D349D9A641fC6c58fEae7c70e6", + "0xEB68F1bCEB9e696Aa435F81CD9839cB2C8a023b0", + "0xECA7D386aeB4125DCC87C75FD9791367D7113A93", + "0xED12b45C9F6E260c343E114E2A56926d832bb4a6", + "0xED61D578Cf55E2C34AFD96d3eaC3e2F02c9543F2", + "0xED6C9ACeC74eFB302C40352d9099b9c1fE796eA4", + "0xED84672E3c625303a92953e4F7daB15B5A61bc6a", + "0xEE47fCF2E49Bd57512d0825Ae0dc17410D3250d1", + "0xEEd2f557Dbf649E6299bf39EeFE6b9d0Dd5497C5", + "0xEEf14e5d63cee45BEE3518d5aF3682F2CCeEA6Ca", + "0xEF44d0b31cCAdFc730C4c3dE00945B992651611e", + "0xEa235ccFA8225c438185bA340435e1D1eD9C32CF", + "0xEb958bfC7A610dA4fE2934271bA5906126f19865", + "0xEc66eE9C048D655DE1948543344B4E66eCDc51A8", + "0xEd40f47A2fb0c7FafA785dC39ad8397780a5bFB4", + "0xEeeCdd4bda18871A28384C4B06106C02F50D030F", + "0xEf1d940840f684aC1743268536593BC06C8f0241", + "0xF019F0e7393f0950cf9bbc462266C6858A92cf43", + "0xF041EF8cFB9A10eAe805Be65D6da1F692a0fD253", + "0xF147D60C91b038C01D7d41936d48D9AEcA99b208", + "0xF15cb91763F413DF305ed74Ad67386B56e44F003", + "0xF1b0d2aff4aBDB867f6B2c0C67318d21822518ed", + "0xF214ef23217A73b5b8e6Fc16874C2E91719869Ba", + "0xF22791BE72C9A719f48315a9034a5Ef0dC2a7a10", + "0xF2D2C7BC2cAAb93f7Cc34882318A014F1b047f65", + "0xF2b13047E93542889EEE3d56A9886E30133831dd", + "0xF2c3A0cAaD94b9F423F50622fe5315a5c76e1673", + "0xF2f18F2baa38fe7560F5BD87a2c3aBb8645947b1", + "0xF317CC9524991B842398A8F23fB2e4d3A0374348", + "0xF35bD21734D2fF12d3f2d2aF795246d60481E495", + "0xF3cc14C52cb2D5A1Fa26a3C15929Ae5b377eEc53", + "0xF3efCac2a10A9973f0D2DA31FCddc237221c370F", + "0xF40e754e3a208193De6463981A4a93C23ac10117", + "0xF43A2bBc6963B715B03522CDB5351f2f7579081b", + "0xF4D440BA3011B66655BA16B1e31A75450843dEe9", + "0xF50756b8e6Af7230174ECe20415EB032E10F345C", + "0xF514415F21A909d97876bDf75EEa9A74F60EFD60", + "0xF557e42A3B9B05b35e07Eecd131de852509Ad7c5", + "0xF5C6298cF3CAaCD54918198fBBA42b0D7caCd391", + "0xF6290F32A572FDf75870bF89AEa364E815771ca9", + "0xF66b58EA9271a350D0C6Ae1123Bde82Ff5a9a87b", + "0xF674f94D0A9F1Cbfc2EF68A2Bb9364ced6649bA2", + "0xF68D1E1f77b6E15c48c89ca9731a3D416d61B4B3", + "0xF68E6eD84443EB0405E05EBB5038d70922BDbf72", + "0xF768d19f5D59b8c49aF521B357638095B3259c03", + "0xF795df300D186ed6163c03439fAd4e112eBF1F3D", + "0xF79C6e017cDfdfeaD9C7E38A3ED92a60F222eb8C", + "0xF7d5a5f91Ba01984151f3C1d3cD2088e0d0b299e", + "0xF87a5d6a09361A851384b9cF9bf38Cf68caC9671", + "0xF89FAa37D7118C1bf2FCab1bb1429c73EcAce99b", + "0xF8A7A245136Be5b480440AcA0bB57764642D185c", + "0xF8baF95acc47bdbdBA7d8c6e111EA475C38BC828", + "0xF8d86298Ab7b7401fb30d470C7165A4de5159907", + "0xF8e57B2Eef4132E11EC9E4206A4a97CEAFDD8eec", + "0xF8eA7D860D6570a1f03574eF98818311bBfaB7db", + "0xF8fB667771275CD9a0A2815a99864F831Eb74912", + "0xF91055fe32e2A440C16032Dc5d11d337aAaec446", + "0xF93c916632778ac6a7cc234468192a06636EaB0a", + "0xF94aEc43383c1e547De9eEEa8eD2Ed6bD71FA75E", + "0xF9b54C540bb33D34D2c9BCe586726164051Cc2a4", + "0xF9caF18BA6893D2F09ff7Bf513E25AEB1d901746", + "0xFA72469B895054d68637A486e50798c582eDF52E", + "0xFA7BB63C0746296278ddB3a83a1C57CDc71c5e34", + "0xFAD9cBFe8E841Be48e5CBc60A8C6bD5c414C3a5A", + "0xFB5B5a6E7c698f63F32b89785eCD2285422B054e", + "0xFBD65dC7CeBAcAfb57bd6cf1BC166bAcEE6C02AE", + "0xFC1626C2fED24e14299d2599713602413e75d67D", + "0xFC687cf1179e646EE7b3455064f96321Bda49001", + "0xFD6D1f6c6f4F422762E9E9F1E85fCc7003001A64", + "0xFDB1e803Dbef83212342F091EECE0B41f680705C", + "0xFE4fFe7599CE5753d79b0961B85f0822F7bEeaCa", + "0xFF304f6166Aace41a76dE0d5b62417f54EAa602E", + "0xFF6e5f3cde86Aa8b994d2F07303d8A39fCF48F0f", + "0xFa90440C2ba799CE4908E72B320A009727247F72", + "0xFb4576deEe2b0b8239a5ebDeA7ED26436ba80b75", + "0xFbaee5208A0D9C7FAec62f84ace7EfCFbf7cedc4", + "0xFc334545a6A875a96Cc36F44a3b53A1c35373247", + "0xFcc800745D1Bdb8C64abfAe014b186329B4941b0", + "0xFdb58e0D4f7201024833aEd1e1e8167b5325981A", + "0xFf005E987CA65C0Dd85f4E075A32AAD0de6986aB", + "0xFf8127CC2B4105d57f5DcD82076F404a901cbc91", + "0xFfb9ddA8B6cfc0DcD5686e5597DD9CA4E4268D00", + "0xa097E62407C5a7fA8191Bee1f0bE25f93DBb8c51", + "0xa0a2AEEDA7F2c7DDCF501Ae2bB478b37282CD1d2", + "0xa0f6386d1F5C0682CcAE41f4542056D6aC4dDb01", + "0xa11F78e130c9009A708186FE829F22e2f3acBa25", + "0xa13be5A8b43966511c65E24aC31D1E9f09629616", + "0xa1881b2D9D6842B8ec07037d496f18C56d3e3Acb", + "0xa2265a9Feae9AD78b9B80E0CA15c2182b2cAC599", + "0xa250684e1C824Fb3E24283a82806E2C8dE0F55c6", + "0xa2C4EEC8AD3BdDFB468Cf8C1AfBAB76A836b5a6B", + "0xa2C50613a6cEdf992D9e056cb7Ad66093ed12aef", + "0xa2a0d87147cbc1FFaF3B2203c46Ad7e197B54Bf0", + "0xa2fEb684C09d9df02B735c6D8c0A5C68F4F65683", + "0xa31045421F7Ffa19E63A298Ba0c95420C85182f9", + "0xa4934C4fB501550546FaA2973C3A8d9011cFe327", + "0xa494B21d9D1C66729fE9894aefE75e46176d2Ceb", + "0xa4aCF9978623753F1cD4b91A8aae5272Aa288f73", + "0xa4c0C146A85149c2D32694F0Ab1ef446Cb5e4748", + "0xa4c40B8Cb99A8739B9120745776b9362363ABE02", + "0xa51e1EC51A907553BB7d8536A359c6d2Ccce68e3", + "0xa5948c2bA3e25120A74EFa796b0e598FB8217884", + "0xa5b0D83534C9D1f5D20468572c49a29071f48d58", + "0xa6152d296BA5C3833D7d75880e79b13a5a373Ec2", + "0xa62025347151f694953AAa226E649c1e6815803B", + "0xa62DdeCdc26277c4d00Ea754ECA8BB1520346290", + "0xa6C7D1B34E3EC8d2F79f9497d2bfDCDD6a55707d", + "0xa809033AfAEEBD2FF427B81dFc9bfA28CEf9BdA1", + "0xa85A1c4593A83CB3af7A76e7c77b2AaB4416267f", + "0xa8650a6E11CD5ad856EC5b5Dd3F23e307AE46737", + "0xa89844A719D829ed55EcF50d3bE9dad8363F2f6f", + "0xa8E5e2Ba8464801234888A45121A2ef3656E1A03", + "0xa9234cEef7f3a6B4D4974BC63f969Dd98f1942a1", + "0xa9525E051e19BcBC884E0600ab3d5454d6ea1aB9", + "0xa9Cb2A0dDb315464b51E6FA00e4954D2B4c7ef76", + "0xa9FB3552965A1C7A217d288e4B8D655AeED38119", + "0xaA4453c91FC96A5eA0a4D2E04e8351fe18d4d8D0", + "0xaCcCBf50C138a38B6384d5034fB7dF785505c12E", + "0xaDBC4587Ca8CF932Ca6b983020aD0d66988F5ECd", + "0xaE3b22c92DBD0d1e743e06D49FF15084Bf6b3af7", + "0xaEfA2fB494ea8A5fA20e45860a1F620a2a66df30", + "0xaF75f45F772aCac6BD01284bb87Ed9236D27e90d", + "0xaa195aD41437A6D797ca50Cf3e393e46136E751E", + "0xaa7A8D922B062508D7E5a6Bc4AD827bb9079Bf11", + "0xaaA809A5F14D86ceDD1a083A3bdcf7dC3705c54b", + "0xabf93A714C3115D8FD53F1A624F9e60B7a327B70", + "0xacA3b5beD1f7132d078aE3e98529Fb61eB118CAd", + "0xad5e4999869517c4df744259fF58cfDC2Fc7a67c", + "0xadB363F00B6fd8C5098f41C51B9CF344cD2d163F", + "0xadb702C275B4655558241f890ADA9F70359448c7", + "0xae9bA62c9c71f37498B07Dd7793a6b9576F113Ae", + "0xaecD522EF9015430060e969Ac040b66De701718C", + "0xb0246B266b030Ac29d10101f6e8BD5df3A3feAe5", + "0xb051896201CC4C3C839395dc4C4e5A10B015Ba15", + "0xb09183C5c4dD4dB89B0184878543f5e23fcd6d38", + "0xb0Cc7B63A557b58cCc6Bc3Bc3A68366e1Ba6f06e", + "0xb0a6A3770E12E6C60B978097081A2a2336a498D9", + "0xb0b6c031FeA2429E2185BBBF4256702ECC0CB050", + "0xb10c14f153170eF44fF1204B73eBC001Ae92Dd4c", + "0xb117F2107bc5312e1312cdBcdaDF81Ee4f980244", + "0xb11Ce69B5ED6D24A0cedA21DBC37171612620F99", + "0xb11b9A783980D13A9F59D21be2fdcF0Ed7629A06", + "0xb136Fe3129547A37E483B240a963Fe8cD745c03e", + "0xb1552416a7e99D8374Cf7cbA0D5BAe4D2fA6A372", + "0xb1ab8683FEE7aF50754D2B99083cDf6AF937542c", + "0xb1c8909e142B838b1f11c652d9D26BD85a492d54", + "0xb2E123c97c83c6C7Faa39F46f971CDc811Ad8B07", + "0xb2F827256162E539B8D086AC0A50cf17F633E562", + "0xb33700CffA7b7c8113F3B759960636692E5B79dC", + "0xb349bf0C52E21638468b3b52f5a8D604dd5104E4", + "0xb39dC3508fC5d6F8091775ac37b0C751598baD8B", + "0xb3D6dFa770b1DEB64ccEBC8210049f396f512616", + "0xb428402F036De58F7C43cac7A4b1d434231beaf0", + "0xb463B49C0eFf309DE8531368d7DAaF2779050629", + "0xb46d68643B49fF859f915990E30720E82c4875bd", + "0xb5402569FE2f6cB11bE50788D0Cb616610115B79", + "0xb571c6Dbe1fecd9DBc7Ca2412916869466da709a", + "0xb5b80813089168141dE4AD35f8B40bc08230287F", + "0xb6293811b77f023FDC7A68a1eF33a9768B320f16", + "0xb651dBC268d3C2149C92Bdc7AbaE8eeFf498bc32", + "0xb65c35b58d322d525B106F7760c99f4AA01e797D", + "0xb65e157a9daF2FeabF62E328fA131a544d46C07F", + "0xb685f6bb9AaaA8081fc958267a60B05FFeE239Eb", + "0xb6C2F6B65bd98774FaE97de9adB028833099B6e0", + "0xb6dEF8021987C2A869B974c50b18679E2A3bFC70", + "0xb71ACeB608148f54385E2f0797e3bB5808583d96", + "0xb7AbEDE07ecE7091665a9D4C7e73BB66F8733101", + "0xb7DF961019F74EaE8dF50c1F2B58452E5A971f13", + "0xb80b4B8D427FD22C70eA6F28a4d326e571675043", + "0xb871D40B10410d569Cd8bb7FE2c512182985Bf84", + "0xb885352c7e623B396eA56E7fddf5ccFb659124e9", + "0xb924C7ffa8CE8b8ee9bB10C5ECDe3Cd35Ec1B981", + "0xb92b698a393147494B0892f410582789191e872F", + "0xb9D84AE46a7F2dDfc79F9Cf9545C8b4387fD88CF", + "0xbA03F99c3A12dfcCD19a33Cc6Fde1FE375368DCB", + "0xbB08958de3A7944E89BBa1769E46e39cC40E60a5", + "0xbB26CF8FE2f4b227637E33Ecc880021305C56F6B", + "0xbB8aabEc4461704e1B542d03868f1F81D13B348d", + "0xbBbD44B61E4c5ae855316cD55de8654De5666f68", + "0xbC8f6535B8ed6B03FD297962d3a94Cbd188414ec", + "0xbCBb43568C0216423294bC7e3C926Dead418667b", + "0xbDD589BF011afDC08157E79E2bA640030E337f2C", + "0xbDeb60d6f1bbD033bb8f74B54Ed58854B7e139a0", + "0xbF10072C56C44a6237dd7528098d5A96DE5D0ae4", + "0xbF4Ed3Df5f6FA62c959002357219a4D671298a77", + "0xbFA03a68325544d445beDD9Ba0B68c1314FF5FDa", + "0xba53f759Be98F197fCd10Cce9662c38438F95Fcf", + "0xba6366ff32eB00A4bA2FFA72fA37a22b14aB02E8", + "0xba837CaA7D28c09C9AFe5588535a0450E778bd09", + "0xba8A0B6E2dee48DF73c1C1a220b8bfA967c6d85E", + "0xbb0bBc74a3Fd548149B6467ACEcC44a92F2b8c20", + "0xbbaf847f9a194C9cDE51A5f8D04ef34CaD2ac4B1", + "0xbc28Ed95DcA74103E9c5E66313A32f98eCe183F2", + "0xbd292159C0E28659c2201017C224f9F54b94e759", + "0xbd872807bDf19E7709ac170f7047bCA6d187808e", + "0xbe25223Ca31A2B13435dCF97D082DBff90B772cC", + "0xbe7460dF13D84b09374cB25E232E64c9Eb45F568", + "0xbea1fE6f1F8843b6b092Ba759424681184bEa59b", + "0xbed1CB742A377845b250F292B39eD3ac7C04cbCb", + "0xbff9D20891c79B445029DA688728dF825105ab8E", + "0xc0412Cf207086874a7ac6f22d185Fa73fc97f7B5", + "0xc08BaF094E02510860e9C029CDd9341efe01d27f", + "0xc0DEFcAe9B5ee561483fd46E2632Ba2bf51fd1c9", + "0xc0d6dab036f45c0020E7c9A21A40AB5C9624d80d", + "0xc1163351355560A4aa57BA7De694e44f24e7E304", + "0xc1186d858d96F176C306E49a2A0d881c51bbAdA5", + "0xc1ABBD6B2DB5e4c7BC78f7B68e1ea5BC954b95Df", + "0xc1d8fCB886c4B565f4D9c1A51B56595F200f9b28", + "0xc20DD7780f260aF8136C9Cca32FfeC30b0638f0C", + "0xc23Fda4d41BDc99B907033DA4aBA9318e88de24B", + "0xc25620A2a64f96c0c1E9C72BDCaD72e234172448", + "0xc2a71de13A5fbb9572f6d47123A410F00c389Da5", + "0xc3E70B65E317aa139F0e7002B6a7857F8693FEC4", + "0xc3d996d3141d13dC962B87A0D95C5C0afBbE839E", + "0xc41D4166E328396C00fB85EFbA1a1B485783d2F0", + "0xc4B00edcD3429787cAbfC3a049eF0C772009F25e", + "0xc4e3c6c9DCE51D54404AB6C4a3531b34d4e68c49", + "0xc4ee2ffFC0e77713F898Dff33623ba591ABF473B", + "0xc5848a984A8933B72acc3c79838E7D95C7b1cDC7", + "0xc6158D685465D5Cd6253c418830607AE6d9158B3", + "0xc67989482d3b2c64664c97c2cDbebdef2002d075", + "0xc6Dfe92a73d28fA9c0EF70e169fF4F7feEDaD0DF", + "0xc6Fe1531C031234503DDF262298E0F4160905c6c", + "0xc7E2f97da8DEc66AF7A8AC97fc7618CA35b1836E", + "0xc844D69C1C4BF828986989635Deb092b551E57C0", + "0xc8ac0EBa845847D9eEdDaD51501d85DAcA1778b2", + "0xc8d3DfFb81215E75db922D3Fea890613c85540ca", + "0xc9C77835fd1b4934A53F72efc1d62fEE555aDdda", + "0xcB05F303043219fc44c8f03F862F5213Af942324", + "0xcB5578b598Aac5FE0bFe5129f64c7DCa2156Ec25", + "0xcB9958DC36d3f6474aDFF5E928E8e535679c954b", + "0xcBCA10d2D0C3E1e245a45ad3b5bB3B7e8464F1Be", + "0xcBba6Bf6d53F07e0e4124a55E61f8CcE66E8A1B4", + "0xcBc32cc3DD9C989daf39f882fCd4962E42328705", + "0xcC0D73EdD5903b50ae6EeaB8d542D5dD6A4372EB", + "0xcC8Ff92476469b6Ab19e07a4d16D15d95E5eeC73", + "0xcC907BC635eb9e806adED1DEfe8f5e266Cb8a310", + "0xcCfC643aAD83CCddDDB2A0618Ac0cFff44889c40", + "0xcD09CA935228c6875B2363c7d159553C86890ecD", + "0xcE9226DCc6a92F8FB3331A89ada0974C8BeAe3B2", + "0xcF0a9b5De6c3C8586fD0C39C7FbfCd5fef192bbf", + "0xca1E77560040E753d536B9702453e8301DFdD4Ba", + "0xca31CD6f15177d7AA2a80e55c090f023ffE75D1a", + "0xca4F7e41ED3b718992d37d3e463Bc77c457959D3", + "0xcacCe253Ae7a35173D5Ff9437Dd8Edc9d85a91EE", + "0xcae1C4AA7565dC4Ac9F536CeF98b9F06d4AC5C13", + "0xcb4Cf1A093a39b1f06A80D276913208ADF987a59", + "0xcc2bC968F07608CAe11013373d2EE745c498A594", + "0xcca64fE9F652B9a747105fE1518446bf8904375D", + "0xccd2A83d7C8DB8804B4c08eE8FF58Dba0C2b1b39", + "0xccdD5D546f0174c0562b887A92787D5B61Ada5b2", + "0xcd7D17940E9778aE1C403421D02f7045F71c35C5", + "0xcd7bBbbDa41771a86cbd92Fc8F71a4a0BCB4318C", + "0xcdA54759b6656B5b9492A36e7dc1fbeD0272d964", + "0xcfA5E083Ec5D385f10a35403DA4B3241fC0d0DF6", + "0xd064463d04A9e9D0918562aF879FBA52C41dC62B", + "0xd08fb9eDb71f173923f38Bb06a3d775C245a47F0", + "0xd114B29edd00b8aD1C835dCd753bDeC941a9f812", + "0xd169b3b1ac45683f49B2993621A6995b5EdDdE6B", + "0xd18d20A34F4d2f5BB6555F822fcb7B3494A2e863", + "0xd1ADB21Cf137022acb2A58a365B029982BD0bFA9", + "0xd276847397646b8C33C1fFDF6312d39E87A8972b", + "0xd30FfD204712AF9860509d58FbFDBf425DE8D5c7", + "0xd38Eb709b7003B1a4C33A6a7e4b051E2Fb473900", + "0xd3AbF2f729Bf3B4662c68d3608Dc391E9bc2d533", + "0xd3F392d6309c177516cc48e2fFD352BB710EBcf9", + "0xd3aE77E3A93d13Bfd177204C8B85e7bB97F7F2e4", + "0xd3f833118F32E4FB02bBD67596C5ec2f2C998A31", + "0xd4636E5c2A67A55fFA1625B95963c4A63a8d8931", + "0xd4912861A4EedAe65a0D042bCEB3B4b572820BDE", + "0xd53065f833CDE89878aAafeF161e82F19e7c2519", + "0xd53816dd2B07F588CEC347810A9494206a555615", + "0xd5f72E163902b8e9Db61387C0A7ce2847E2E02fd", + "0xd603Cfb29eebB1510d08Decfde4e103D6f0108F1", + "0xd60ab463786e1FEcB4fD064beCab30fC391d94C4", + "0xd645B845e104750D06A75BeE60128f7199E5aA43", + "0xd6A3947fC66bF7BE304b34dfFDdd7274fa05D5D8", + "0xd789fA1122A867b0a121cE6FE73249435e28bb17", + "0xd7DdEff450482fF60DA588FBE72D58a592c2a086", + "0xd7a58d4EB09586078fE7C9a53b2C9E156CDcd077", + "0xd818d37727fe6890d9Eb58D3FC3c827401605F69", + "0xd845F3236bA9898E34646c54361A375144242657", + "0xd859d52369344eFca2072415908e26184f6904D8", + "0xd86A28a65A643bAEF6113f8416d03ab814ed6A4D", + "0xd893664A04f33bA5d29deDda3F70Bd5B52D4e279", + "0xd8F8a13aBFbF0f38F2030d0e660B3C05AA283B0f", + "0xd8F9D4B0FE8c54E3505486F089e8Da239B382866", + "0xd9810d03e85932C7E0a9529FF867B63Cf197790e", + "0xd9EfAe40B545Ce7c3cce6499824f4b34268048EB", + "0xdA1c5cA9dFF4e445853CE9F8c5fCFe565b77179C", + "0xdA8D69037b3d374D77411865446663ad0E7290A3", + "0xdACc6207738e46Ae7d105731660674c69fC60886", + "0xdAF6B35eAD9c6607F978Aa3B6578C8d73367b54e", + "0xdC6f4A2b8ACD09bf405eD709Ca3aA96D115a079e", + "0xdD2E422568E894CF1578876A43A419E9B544cc67", + "0xdD35C51D0377B5A3e18c150FBBFB87e4c6495671", + "0xdDFF85BaA04Ea437189B762f3dE0C7A057A8C74C", + "0xdE63D0cDf73cB3Aa3094228E8582daae6943852E", + "0xdE950adf90a548619625f3c20fd498Bfc500561c", + "0xdEd5A10B8EBa40e8e9137eeebB014dEF68De3D87", + "0xdF0bDC06FC8456b2628c6fbceDD280843322dDD0", + "0xdF5c1Aa601Fa1EBD5c5C9Ed9c4FD3B8973399C9b", + "0xda3F4B03aE5b76D7B179dd58beB7c05A5B3C8375", + "0xda4e017145755b55A958B42B660f21D3f4091af5", + "0xdaE2161FfE986765C1926004475d9C2502A4801A", + "0xdc0fb51dD2c2805AB5Cd4b3E07D0B69b02833938", + "0xdc3761BE3a96133aE50b78d0A1E74910fB53a0e1", + "0xdc576C1455a54a8816057fBc290cC256D8D7fF16", + "0xdd8C999B555E7f6300Bce312C8dcd1Bb42f83a7a", + "0xde26dcD7c941a2F1503667245aaC51bfEa1FA4A2", + "0xde5066c20400C6256dd64383e93a07337aCf544b", + "0xde57fCE6224DD0E992C919f85Fc545BDd1605B57", + "0xe04b0eE5D91C3741234d939B18b1DE3f62d649d1", + "0xe0538deaC084eB9D17DbC15A70E805c14AED8fCB", + "0xe07Afd23A6ef1a551D9f89B695d53D5aF2e53943", + "0xe150E4Ce06E009aa68839fB2630302647F1aB33A", + "0xe1C3b05460D404B6A00F1C9342141a43Bc3a6105", + "0xe22401E07A076668dB4C049cCB14E8DF897C945B", + "0xe23355302E68B5bA19dB705E1B9C7cf0800460FF", + "0xe28c918989405AB6358599ae551EfC2d2fc689e4", + "0xe2Ad7A1f1b988823103a50ecefbd17179640b4A5", + "0xe2a8a85B8A52Be0E42280E889a7374cE9911a90f", + "0xe2c57Ae6638e768e8FF1f02f21DFA432D4b75CB8", + "0xe2f4e2269f62238CDc1dC67E7ae9E0fD54d6F472", + "0xe3478aB84AF4ccA49279929de7b23aEFd36FF705", + "0xe3505f0cB564Da142be236f34DaAA9ea7d4F7fb9", + "0xe39618B174B61Ddbfad256708386b9b429CD16d4", + "0xe3A67D2F82A1157C46ed83F6Ae6c5b7e9B5E9896", + "0xe44149852f8379E43999f8f87D71575e6dA0CFb6", + "0xe49B9AdEDCd76ff05007eccddb33CBafd076b95b", + "0xe51f2F28159b061F653B80Ffa2102B7aD218bC2F", + "0xe5368577e64fC9033E9F4F392802Ff91416B3e59", + "0xe543E02616079C0E167ce0e33F14788a88225582", + "0xe56BEB8d0800c347868a0A802300B1b5aDcCe73e", + "0xe57f10dF0812802fBeFc5663F08f18A3CCE7E601", + "0xe5e133C43a1097ac0caDc327cE90c357158Fa2bD", + "0xe6C20A1F0675d91A3c2dE8418af8205cC060cDAb", + "0xe70D077b5F3524b3c56feF313Ec22b23c775C278", + "0xe7724d5F13F64CbbA01E63Fe7e2Fd9E26f2CcAEE", + "0xe7B0368997FDd36Aca69fCa751D18D148fF48779", + "0xe8d86d852c06602F401820548fD36e6779ca5893", + "0xe8f19E5E09621756895a43A711cED8d1b841aB45", + "0xe96ec84F3565c2671C068899F69E00763F972291", + "0xe9f2EC9a45B88c7cc6339C0df59Cee6a2ADCf4ED", + "0xeA6a5554562aA18CE8705760deD4C14d28b6260d", + "0xeA7fc34e11D77289a88ff02fA7AA3C51BDcDEfDA", + "0xeAEeEF24B70DF14717B9Fdb75016dd43D098D3D6", + "0xeD7266a1752D4272aF9DC571e2b5F44EE4ADA3b5", + "0xeE30648A03151d619E970fc78a0e196679e793da", + "0xeEDF7d4deC3d2DeE838C17C5e3986B6C2DE068c8", + "0xeF47Cfd15FDc61f075FF88a86b413dc22c4F09f1", + "0xeF5Bf08420c41917178333E19E4389D80E02b965", + "0xeFC4Eb5ac2dA5477eE1e536e58b49cEcAcEA4e72", + "0xeFc6Bb124346a69D5EE51aca96cAb68dEC657ebb", + "0xeFcb68255DDB1738152e6016fEAF804Ce05DD2A9", + "0xeFfc93a41f9899b02918e1EfAD063d0e4d411F3F", + "0xeb9369Cea75Af6B3d4c241cc9536D56167a0212E", + "0xec02b245efb32ABbC5A4A732781f3B9D1c0448E2", + "0xecefe452F548753D7A07ac1Ad13e22a6a650AFb3", + "0xed2F8e2a2D96A740C00B0D89290E15637EAD9138", + "0xedDf0c05BcaaD60465747b738f3794ddCe4c346b", + "0xeeAF9765a58928580991E9e550fED5Bea09e1075", + "0xef6FBaD55ce128482e2E6D8bdb3EB1939232a10E", + "0xef6d9D950E18574828b93F92D91f9B6aE2dAD403", + "0xf027e656B74db85d95cabb08Ed6c10DBCBB6D68a", + "0xf07B8F15889102c1A2570595CDc45B0EF03d1652", + "0xf0D8B91522eDfE571Af0Ba4eD844eA66b9656845", + "0xf0f1cfB5Fad942c6d6942C7A6de62c2c0705712f", + "0xf1042A5f836FD100180E5ac3Aa9158acD9d1c5cc", + "0xf16ab25A41434779cD34A9cff358D607B411763E", + "0xf197B5A9B7A31E68dB1b3BA44D1Bd978382d5CAD", + "0xf213B76bfb41bc11669AFcFEfF18265BD23bBB65", + "0xf2a6882c301bE820e6B174C3846610782466D140", + "0xf33152618BA7D2a14C10e805312C1819D45C8128", + "0xf34C977A9FBa4EcebB769aF0C7CD650eba6eB92f", + "0xf370352c67d425E254003B6cD39B618AEc32dA67", + "0xf3FABe301aaF3929B601dAbd4b93FF070622Dc95", + "0xf467A2B6B734cBF996bD13489472537cE6BeC503", + "0xf4BcbAE40Ef4B5F4658526cCc4ce28a4aa075737", + "0xf4dAb6BD5C11a8a3cfdf941c7a9b4CFc0bDb3B9c", + "0xf533386F46016B5F95B168361b81465Af8Cba3b7", + "0xf64e56A386d779EBcf910b174eaC67286d0FB831", + "0xf66f458dda260b555dB7d7E38D5A3Fd24ab0Ed50", + "0xf679C6800afDeAA3418e86a08696aE5E689f993B", + "0xf694db26A949dd4Df73e424Ad554a6a3fBB8d2a4", + "0xf6c17A46360b490c58c67c6104b1e9fa55809EeD", + "0xf7007F8474DD2ABbcFe1A67702fd700d88805E57", + "0xf73d2Ad080Bc605b1a3f245ee12b5dd5fAf97381", + "0xf7e8C1C014A2d4DeB5229296e3780ed9094af9b0", + "0xf837aeE293BA4131b08bB41a4568c2B0dae6c1C6", + "0xf90F2Db74A2f78B158d90Abb7fc876C1dD79315c", + "0xf964A531D573a22bd0624a1ADd8911C19b5140a3", + "0xf9cE51e3605c9a905d56B282fAB0c70b17b8DE48", + "0xf9fAac938d484c17c758E4c1e241E83E427A3744", + "0xfA11cB79492919a37BBE8e3244Db2ff5396AD49D", + "0xfB66FffC92f8D05aae44e71188Bf1bc8c7cdF991", + "0xfB96A79Dd0b3206542228Ccbb771b9fB28dd5EB3", + "0xfB9FdF467041116B48bD6634D49D103b9294971E", + "0xfC2969Af2fEfB36fBebb2BAe52E124e333f1a8d4", + "0xfC3Bb1dE8B9ef1eE05C0b48408b6CA82364C5C18", + "0xfC85039cD837cBFD3BA52423b2adEeecCc361EA5", + "0xfC86F46A7eCEDA162d0696E92ac969d6d30Fc14B", + "0xfD0dDeDD3463c57f87717265c4143269e45C7483", + "0xfDDB050Fc85FFfd3520e495617a4211E2a4B6071", + "0xfE3B517Ba7fF4D848f2bB4c36F81641f4021274f", + "0xfEFf61146da4eB53ca5ca25357bB163E3264cFD5", + "0xfF56F4D7a985dDa3a137B321eb78fEeE5910f667", + "0xfFb3670b441CfB89e4974DE0b555E472225039F3", + "0xfb0eFbdDD630834B6b18C6429168D77A90f812Aa", + "0xfbfCC3077686D2c954E5b2E5057e63C57e4546fb", + "0xfc143005C9c3f27E92217Fe63d803b81b13848d6", + "0xfd505FDC33f832CdD82fAaC137Bd8D5dEd545082", + "0xfd53AE6c27C3eC269267651f01a89ba4fD22a3fb", + "0xfd5Be81141A283B2A6254Ad36Fc33e7Cbe68E5f4", + "0xfdad6A160C868Dc8B43fe0DE117138a8c5c313B3", + "0xfdf36DfBec1B02A154771f6dD29b1b1Ae3a8Ee40", + "0xfe0bb2F92dc21076EC51067d172C1260855ed592", + "0xfe4bdEFd17EC703fa1938c0DA5a0fDb66dA4889C", + "0xfe8F20eeAA7DA8e98C2c9001aAdf1991233493E4" + ] +} diff --git a/scripts/staking/config/vestingAddresses.json.example b/scripts/staking/config/vestingAddresses.json.example new file mode 100644 index 000000000..dc60d23cf --- /dev/null +++ b/scripts/staking/config/vestingAddresses.json.example @@ -0,0 +1,10 @@ +{ + "network": "rsk-mainnet", + "fetchedAt": "2026-01-30T00:00:00.000Z", + "count": 3, + "addresses": [ + "0x1111111111111111111111111111111111111111", + "0x2222222222222222222222222222222222222222", + "0x3333333333333333333333333333333333333333" + ] +} diff --git a/scripts/staking/config/vestingAddresses_detailed.json b/scripts/staking/config/vestingAddresses_detailed.json new file mode 100644 index 000000000..cc25a2bda --- /dev/null +++ b/scripts/staking/config/vestingAddresses_detailed.json @@ -0,0 +1,18637 @@ +{ + "network": "rsk-mainnet", + "fetchedAt": "2026-02-03T09:04:41.169Z", + "count": 2070, + "vestings": [ + { + "address": "0xDa136C90ba3A4804425475cb649C7463bf2de645", + "tokenOwner": "0x122120b5D356DA4686F2a998CC9D04eb05a35574", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0f300a045370b2dF7090cA94a33F7782bf6972f1", + "tokenOwner": "0x45ccD4BC45d475F2D8f0bE1F11d7Fb88a046a555", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3b6A0Ecb438e8bbF2B52645F042Ce1CDA7b316B6", + "tokenOwner": "0x55630EDa9b5701eCE290457DDDb7996B8C5DD3bc", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2f99844C8Ad8dDcC4aeEAd5C29493D1117B622C8", + "tokenOwner": "0x268596d6A8F74f481416F51501886c04A5259fC9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE7b79879acD09523a308145Da961fa13811Bc121", + "tokenOwner": "0x120734cac21849d332b46B608FeF9A991B6BE260", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC5Ae6CDec6e567418C1c29306AD366273c181109", + "tokenOwner": "0xaAD6bAAa86D7b1D5feCD1671bAD8ba790B8F6069", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xdc0fb51dD2c2805AB5Cd4b3E07D0B69b02833938", + "tokenOwner": "0xc5d9b66FfC659cB37d376D9ccCE91795c269f594", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x56b52B7E3D55208523A7Bfb094C818386D17A0a2", + "tokenOwner": "0x4bDDc95Ba3405490f9917c5dD659fEFC4bB2eFb8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x57255869065c3dAe16B9474d74eC8707Fb23178A", + "tokenOwner": "0xd823811c64C5C7c7fFF92b1970286f80438b8c5d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8a487621bA3bFAc71FC237BFb2Ad2EF37b1C9bdA", + "tokenOwner": "0xf0001404Af30de4B683f45F282407f13c537d602", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x60b8fe73620a0cf95530d9A6679862DE5EA551F3", + "tokenOwner": "0x7F5c9Ba00E918b1A12116578FE0190da7EC55225", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE5524322375143306eD025cf403Eb4Dd5aCABE11", + "tokenOwner": "0x49F545420b54d77095596b11637090A7eF819c53", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd60ab463786e1FEcB4fD064beCab30fC391d94C4", + "tokenOwner": "0xc0F6054DaD645dCAAA250c70bcB702230D973674", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc6Fe1531C031234503DDF262298E0F4160905c6c", + "tokenOwner": "0xF826Bc629d859af67736671274BFbF0967E36729", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x04b51298E54b73C20E3331fB42530b3ecF64650a", + "tokenOwner": "0xFe132B54396B7c94Ffac83C5b3460B1ca0cCd5f7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x459244866FF9c77c5F14e40e42ba8cE95B703F60", + "tokenOwner": "0x286C85e20AC2838343EE65C8051cb9585cCd466D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x65d963c4f925B897603c18a7410a20E6687DB79d", + "tokenOwner": "0xAe210e086D2d6B746Bea21E6268cBE2f73035127", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB43774CF0E314717504f55E2403f7410F9c59E66", + "tokenOwner": "0xb9E9589594B58615b0301D4DAdde275352a4Fb46", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xaaA809A5F14D86ceDD1a083A3bdcf7dC3705c54b", + "tokenOwner": "0xE5B1cE3049A016376d4250A4493bb34CB24A9333", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x15D2C42fEd6668bb7AB26d53F300119E916561DC", + "tokenOwner": "0x285D887877Bb4714154beBA7e82096E2D9b6F4D8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8Af56fb946B4b186d6F7F01d341958d471271EE1", + "tokenOwner": "0xFc158148Bbb12064E992483ec525eD62A31B0893", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7567bADFE19310A5f30544598b57d0ac1AC73BA1", + "tokenOwner": "0x51e9Ccf8fddC1aD0fc09D7cE7CB75a3226Dc28a7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1a467121E2ed7CFF3c1c5d3078d0B2AbaCCA5075", + "tokenOwner": "0x68bf7560F1FcCd71E415eA9FBBf81E5811006576", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x864b083C4f83cE68d519952515E0728177e7ff69", + "tokenOwner": "0xC59621D25aD0f7d0B4bFE217b871eb7e90e07748", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE0dF33d35515D60754fA3fC82755270e29e07780", + "tokenOwner": "0x05529b15cCf9D52174bA7E1BB464cbA3a94058F7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x570586dF9246C289ad3eFDE1007fAA9005333D0B", + "tokenOwner": "0x8d549dfa7eA7AbA384eC2B98f293E3D3c784Bdf9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4Bf7D2a07cFC5622bF7aC53b20aC666EF597ab90", + "tokenOwner": "0x8Af124f8DC85A0Fe43C5a4FDe3cb9fBDC03a6dbA", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE3F4F7DE3615EFaD26Ba6cDD06e5FBeC0fa556aA", + "tokenOwner": "0x780c095E3550194727EfC61260Dca9cdcc070690", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB6BcFBdfdf537a12D228B758E2fEF8D4bfd508FD", + "tokenOwner": "0x182F0c507323C38B646cA1192815B935A3668be9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3146c37EE43f8DEa0EC267bDb435a11F933506bb", + "tokenOwner": "0x0BD5614EE509969948b617cc954142aB20f747F6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x76Fe8ef5EEC31Cd2B73B1B5cF4f93325300fb2E5", + "tokenOwner": "0x8fa7f3B9bc52916647dFdE92e8139c875e7c1c77", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4630369386660d4E9eEE3F781CfcA65fb529461e", + "tokenOwner": "0x4A0789F9De105BFDC729039D8d7ba781E9A3C3d8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfC2969Af2fEfB36fBebb2BAe52E124e333f1a8d4", + "tokenOwner": "0x310d34582E0Da3066B5b9a88D8D78d56A54e4849", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3976B4Ce66FAcd41Dc11F1df1c92C89a032b2883", + "tokenOwner": "0x4631Cd28c60552C64842D483D97f553b579bF0DB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x33c364cC589861Fddd3a914c176A58f956A712d9", + "tokenOwner": "0x0aAE0F6a857C352bA6FC90779A80e7116F176172", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x128828e6b25fdB78aFb928cb7484Dc2f57849fcB", + "tokenOwner": "0x3D19E627b4deB9159286E0030C5dddE696626AEA", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xbbaf847f9a194C9cDE51A5f8D04ef34CaD2ac4B1", + "tokenOwner": "0x159Dd95f0407769E420d90040aA8b8f61A3701D6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2BC2356012c52e69314e1125326Ac6f63917930A", + "tokenOwner": "0xA4fd65694A9708C2d204BDF7acF8b9c09B105903", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9d3Dc32CcF2dC42008E5a3d49d6FBAc439e14f4F", + "tokenOwner": "0x1C83A16db88910159fF30a9d324d79395327C4f5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x80A0429C230221f1ee2e754775E6a9A037b0e285", + "tokenOwner": "0xEa6fBfa2592727174645552169c3C00f4fCFAe33", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x29E13a302fb8d28d0a2021C7Eb08bB411596E929", + "tokenOwner": "0x9B0aB1FC3c9b133Fa73ac5B9F8E32f4e765F18B9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE7cfb4b812bff5895BDCED9a414F4345fE8d6a60", + "tokenOwner": "0xdC1113919182458292777E6A0c607c1b9d931f83", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7Bf20e28c66e569DD9dec791e33Fecc3E031B0A3", + "tokenOwner": "0xBAa3202280ce0cd232aF41d563Ef10deD172216f", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x20fFa4dAD65c306A52E310b73b743A23f49d9967", + "tokenOwner": "0x77Fb62fCca3ED31B1C546F415cC5a4c563990bB7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb46d68643B49fF859f915990E30720E82c4875bd", + "tokenOwner": "0x1E6CBAeDC1acC31f39209e39fa23F2991D7A0C1c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF795df300D186ed6163c03439fAd4e112eBF1F3D", + "tokenOwner": "0x68362ed37740b065457748002ee38787164247D2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7C6cd7bE4cb964Bb367123BA204588400080142C", + "tokenOwner": "0x9B99cc142338Cf14E41b8D99d03E6c5D63719483", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x02F4f482fF19DDF8C0d9CEbB47e8B7eb9EAA0441", + "tokenOwner": "0x9F01898B30bd20BdC0A9A9FEE0eC3783917c4770", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa8650a6E11CD5ad856EC5b5Dd3F23e307AE46737", + "tokenOwner": "0x2Ee23b1F18ab47CC1Aea596BEeD85C3FdE3D7bD7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC12fC4d609e78037bBfa72E3c8374590DdD4E1f9", + "tokenOwner": "0x952763655C79f14D9C825ff504A74e6695d0c441", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x28fFFCe96B6508afE437015e296b45B954fC5B3D", + "tokenOwner": "0x27575333B3C97F072862378423e89aa63dB3747D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xDECe55b32460Ef6CcEa316Dfe761be38BE490a8D", + "tokenOwner": "0x38Ab1CCb7A51e31ACdb0d7Fe6C50e44D21Fe0eA1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA3d62c0563765aa55d04A723017b1b1Ff13eF0B9", + "tokenOwner": "0xf1A9f325B80C9c27bB8abf2929D00F1742Bf07Bc", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xFcc800745D1Bdb8C64abfAe014b186329B4941b0", + "tokenOwner": "0x89C56adfd2f193e5a5c9534BA6E82B9575957338", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x56A5CF1Af4f318AD03Fd4AB6c7799006456a9518", + "tokenOwner": "0x345aACb3D6F8f84E3c09cf2c908eF413Dc34d673", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4F3b7cD77368703c20F6234A26D96804f17EF82f", + "tokenOwner": "0x19EBe122d225998B92085D009F41eEBEfE150849", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xAefCB14F964412aAE773e87fbcd232B0Bf95925d", + "tokenOwner": "0x0C4Db9ebB7bCf7039310C30eD06d06b6E46C7444", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x39F530cbB96fE95294C082bdbf61CD651501c470", + "tokenOwner": "0x0ceaA3fA269877a0fB194ED383605fc2527eB0A0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC305E48D6E9F8136d2a0Ad83791BE9eBA933E70E", + "tokenOwner": "0xDd07819cdEB2613fcE39F654B6831DC9CCDf1Bd8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xdd8C999B555E7f6300Bce312C8dcd1Bb42f83a7a", + "tokenOwner": "0x1afD361A9447080FbD3E13C4DAd3b00DD045395A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4E68C5f31bC260a965092d6e75d0299DC9cc6dF7", + "tokenOwner": "0x83F1149E6737D005a289BF7A03E081F7908bc88E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb685f6bb9AaaA8081fc958267a60B05FFeE239Eb", + "tokenOwner": "0x01696EA55DB3422Fa6eb7dd4Efe9bb4D7c1029A5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB3E2b0E77674f59658514039b1a7aD12a57ED63b", + "tokenOwner": "0x4A81C6247ba39A0BBf885508D5E00C972A6c8C13", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6AC40Aa36bae0bD6840a486c03155b80bA400E13", + "tokenOwner": "0xEc0AB4ED27f6dEF15165Fede40EebdcB955B710D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x68AF96658F9b17d57b3D7fb8bD97794264C4b7CE", + "tokenOwner": "0xa1e5C34C1078732963107CFc0cE85A5AF0062EC3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x72348fe1c4f9e805Fb2a6d78Ba7BAfACB7FBB23C", + "tokenOwner": "0x03E044565CA067A0F023B226C0Dd087672D35253", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x41F707fdb2A61a0227f41d5aC4eA5067B2FBD3A6", + "tokenOwner": "0xEadEcC8F104aeF869BE89e98FCBCbCaA610Dd495", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8E7d9a522d8EaBEdEfDF8ba9Ce5C1F2226dE3ABA", + "tokenOwner": "0xC0b877c07Bf0c269079E645Bb1D28015F12348FB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x841366b3bB86a832809C30cae5e2acb44e79faAA", + "tokenOwner": "0x9B208D3170FdA28FD843d75d0F1643dB5Ba081C3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xDe81786DC3F8f315a92D0B47cB5Dd4EA5CEBfdad", + "tokenOwner": "0xE899b76618F150dcCfeabeeF20Dd091A6e20411d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb11b9A783980D13A9F59D21be2fdcF0Ed7629A06", + "tokenOwner": "0x395B7952a07eEe76621143b6AdA63B0Bb4f8179e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x93E5c7E3b1ded52943762959Aa6b81897C38132e", + "tokenOwner": "0x8A4aC3a737b430A18475eC2112694b7319dBd9F6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xAf00aC71Ca085D1eA8D6618C3A271419e9d0FBB4", + "tokenOwner": "0x9f5CeF5fcf5cBbCAF1C89492e614Dd4b2c8b88A2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x24c570471688F3DCFa6D15bfd2C2c1f7A0A984d2", + "tokenOwner": "0x91FEa9Bf684B580cecd6C50f12b5F88e9B4c2b31", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x192EA66Cbb6c58721d970079238578aA6F700B7a", + "tokenOwner": "0x6Bbd6b9B39521cEe9CAF805d8fF815C5D64F2321", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x21078Ac318a6FF47e463C6C7289A6a2B1D9618dC", + "tokenOwner": "0xC242332B68Cf011bF199330f9e48CccdCc9d9182", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xeFc6Bb124346a69D5EE51aca96cAb68dEC657ebb", + "tokenOwner": "0xcca479162731a60A9F0501ca2221069F93A87410", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x85b6b51f2a1DeCEbD0864969dF9d47AFF3c924dA", + "tokenOwner": "0xCEb1d00Eb1CB0Fc6f86eD6C46fD689f6750418Aa", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x92263F8868621595e946cDFeA05a1bD159797E49", + "tokenOwner": "0x846e22cbFAba96C17E2DB3dF22Dc1b1178ec5c40", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xAc8BEf9E03Bb32C2dcD1B9613dA98Be593B0017e", + "tokenOwner": "0xdBE65b38799a82C2B44a53b6371374A2EADD0117", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x98B2578CF2f52A7de3E97951805e214272792205", + "tokenOwner": "0x5E79EEC4Cc6e2E8bE8E7e5cAc5419899Ab02a32e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD4e0431333132B8D43F021d77D6CDc0c6F84feB8", + "tokenOwner": "0x6CcEc871d7C42a7F02EDBF4939aE4dE1D2048ca5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfFb3670b441CfB89e4974DE0b555E472225039F3", + "tokenOwner": "0xa96d5C552895EaEA82D82823F35a484422A7af18", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4e9a244E976B3727502f465Bd35155cd70FcecA0", + "tokenOwner": "0x90e1745ee3Ca961d03902Feb9C717081Bbdaf215", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7e6C69bA9D00cB4E84Ca22b028bA28aAF8E5B592", + "tokenOwner": "0x0d3f6244c7390Ee01d18Cf7D9a442b0ec7c30657", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x34628B4fD6dc8b831531154C98C355fcaC99bD72", + "tokenOwner": "0x92503EaC00D98ac2144810A91c646409703aC377", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe8d86d852c06602F401820548fD36e6779ca5893", + "tokenOwner": "0x77e1c23190794Ed04997819d50585dd33E8C5c0D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0F4EA80D85938dE68AA9454d3795384F12A4b68A", + "tokenOwner": "0xD440C0cc8BfE2AAE15c01Fd2C6c883af16b29eaB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC30935f9745f8Bb6185AA30ee574c36BAdE4DC07", + "tokenOwner": "0x1CF7f90C1F8D71AdcB701ae3E3FB77e2aa0610A5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x205880b9648cb9f5C83591d5bf895304393ac37C", + "tokenOwner": "0xa7a4a1AfEfDeadCB287769562FB65c3Bbd83CCb6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd38Eb709b7003B1a4C33A6a7e4b051E2Fb473900", + "tokenOwner": "0x2319b7C1c14eF9a6BfcCd8E83A7448089499D061", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF019F0e7393f0950cf9bbc462266C6858A92cf43", + "tokenOwner": "0x7B1b44EEe37520e74BBE078832a8679e978B7Fe6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xcC0D73EdD5903b50ae6EeaB8d542D5dD6A4372EB", + "tokenOwner": "0xC078cCE8517A2dcd65fDa7503a0F2EF3B39fb20c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x44E3570CaAF1FD17C2E5fFeAB915C26F8c01F3Cb", + "tokenOwner": "0xF71831df63319AA966C48D578efc5502205a8468", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF8d86298Ab7b7401fb30d470C7165A4de5159907", + "tokenOwner": "0xEdcc5f1B93712C11CD674Eb5531f637b25018E53", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD2eB912e3505c47F34C25C5DF22e9f00533ff7a2", + "tokenOwner": "0x9aFF40C180Cdc39080bf1DB6bC34F6dBE46E73Ed", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0008aaD6cA24dcE525F1974904Ac8d6961CDC305", + "tokenOwner": "0x2a39cCF25f06c630f00C9dd2693c5751f58972C9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6907B83c17C9a0705dc2ad25f7433C8D974e3090", + "tokenOwner": "0x1180F5836778DF84401B26077a0599639c5ea38a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xbe7460dF13D84b09374cB25E232E64c9Eb45F568", + "tokenOwner": "0xf27BD344d3Fe7Fb1A65682563Df32CC49F3fb9d5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF317CC9524991B842398A8F23fB2e4d3A0374348", + "tokenOwner": "0x1D013Ab0bf043933bb84d40dea44206EA15dC0D7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf73d2Ad080Bc605b1a3f245ee12b5dd5fAf97381", + "tokenOwner": "0xAd811b13Cab21a424C02797c97e54565Ad745BDe", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x44a9b5f4b4A93422886199514F1de6f25A314beb", + "tokenOwner": "0x3637B9C1352c32Be5071fE37440cc8b8658b3335", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF79C6e017cDfdfeaD9C7E38A3ED92a60F222eb8C", + "tokenOwner": "0xC5d4A8a0647bC347dE2a8c6fF1A7a75437DAb19b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf2a6882c301bE820e6B174C3846610782466D140", + "tokenOwner": "0x68F1133Bd4F1FC450b1a62580d6a722AB9D2570c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb6C2F6B65bd98774FaE97de9adB028833099B6e0", + "tokenOwner": "0x0d5A245101DE682d797194dDcC88Ba2c4B33ec3F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x80Ac2Ac6CBbDc803F6C621971fA084FaB0741222", + "tokenOwner": "0x69499fF704a2C99338F17e436A85FaB47C8cfc12", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8832F28e9af0215A486debCA33ee3D75B32A07ED", + "tokenOwner": "0x4F14Db65Ec7110288E10447B5D2E6803ba0Ee0b4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x570eDc25A773BC5AEaF9CA401A036410EA09E0bd", + "tokenOwner": "0xddA5973aFCCEdE9d99B56b24eD6608f8F7ff2B86", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xbFA03a68325544d445beDD9Ba0B68c1314FF5FDa", + "tokenOwner": "0x6cD3eD9Eb9Cc47894536F1bf9D8ad92A022e9902", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2c507012A478c6703219e68b2001C6389871b727", + "tokenOwner": "0xed1Ae0dCDb6eEe754D7d067446fCdc9261360b50", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF4D440BA3011B66655BA16B1e31A75450843dEe9", + "tokenOwner": "0xb4a92B3f44eEcc595d0cfD20Afc96246Cb2d6b73", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd276847397646b8C33C1fFDF6312d39E87A8972b", + "tokenOwner": "0x1B75A0877942Ce03992961999c8b020009dae798", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xcb4Cf1A093a39b1f06A80D276913208ADF987a59", + "tokenOwner": "0xaAD3Ae5d68064914bEA74f710B4Ae4aF4a30460F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xAb5dceBc70637c13518Fe4dEF898bb67c1Df012f", + "tokenOwner": "0x49b4F6f6929dCe636997215D2B5FB9C8D9Dd8b40", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1705B0cD30CE9cB2627EA2A3687171804cC17A1f", + "tokenOwner": "0x3Cf9A21987aADA929A2A9513e98aB81335f82648", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe51f2F28159b061F653B80Ffa2102B7aD218bC2F", + "tokenOwner": "0x1d7Ac94593ed7699D07B9392248D7934451b7dA4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa494B21d9D1C66729fE9894aefE75e46176d2Ceb", + "tokenOwner": "0xE3c38b90926359fE3B7CA924b4c6580d2532c8Dc", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2BDac5cC2B253C29d3e98CCeB813ad152292B070", + "tokenOwner": "0xEc22ABd40fB6D792A3558E089b0aD7f90E2f0dE2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB96c7677DaeCa8e7A5aAaf787634e136Ce2643Ab", + "tokenOwner": "0x918d7703600159c3623E1D072B22910e756A3D4e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7eBC9dc456F453BCdb03e4c7ACaa5731FAD4112a", + "tokenOwner": "0x8DFF5298f581ba656A369c99d092D1744dE9eee0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x688eEEbf563F31F186bcFc9F8428486183107F5F", + "tokenOwner": "0xa9c2445400C10CC56a42a1acA8D5C6c6151bdc7C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1992e7F6D681FfDa824C74a1ffe2c49d37E94aD7", + "tokenOwner": "0x169795B98cA6A31b6C5D8d6Dd18ac2f9dB89D648", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x27d857fA33e874B1f81E3265d06974880F621971", + "tokenOwner": "0x45a5A326dE947EC33cEB08D112c4599C9f13d418", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA0c88E4c09Fe382dF6B320Ce6F509703c87B4F7E", + "tokenOwner": "0xD7c01CB09870c3E810a56F0f75BD7a0D995A8d8c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xDF3d01E63aba5F6EE4F97aEee7cAdf19567C6831", + "tokenOwner": "0x5999865518C9de250b820762130FF7A7119A4558", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB76Bd8603710668aEba7361CE5fFCD7bb2937586", + "tokenOwner": "0x7288CDFd4006B484E8e7B14839d98443940cc12A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC1aBF1155831182Eba3eF35cAF3CAD424E0A6d34", + "tokenOwner": "0x2FD199f36A228784605FC8F84CC469af0744320b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb117F2107bc5312e1312cdBcdaDF81Ee4f980244", + "tokenOwner": "0x7C6Eb4A016095B6f708270fcC56801802C997818", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd789fA1122A867b0a121cE6FE73249435e28bb17", + "tokenOwner": "0x54a3001e201Fc21Aa4a2C42457a77406c34a31a9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x505F71f26EC5776B13496ceAc8ac9941aEa48aBc", + "tokenOwner": "0x9d6fC71534627DC4A12eD47555C32c0e72156582", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfe4bdEFd17EC703fa1938c0DA5a0fDb66dA4889C", + "tokenOwner": "0x18Fb6F538b431EE0961d906f43C5edf8D1ba3aC6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA5EE8b3478Ed92F1A90E9c72CDe617013D1934D7", + "tokenOwner": "0x88b0cD2E37cB15379eB406282f10D0c35b95F68a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x870e8A6197ce02beE59Bc2ec14810a41c18Aa6ea", + "tokenOwner": "0x54baEa9b7430Cd98dfA614356740D5478b0c8FA0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x23B6492657562B5138Fa18bcbb798dAA510B14C6", + "tokenOwner": "0x6fECD582bbf818Fe33061e997F37137B278ECf82", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0A3894C2741510894fBabA696BEE64E405079126", + "tokenOwner": "0xBf4dfA6f5f19138294d60Dd4e17d05eee971d9c9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd064463d04A9e9D0918562aF879FBA52C41dC62B", + "tokenOwner": "0xc4d07652BCbde5ea0848789C83B84C2c60ff702b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xCa42A68ebBBccc0612635525472294984Ce48842", + "tokenOwner": "0x0A6dAe483f40aCE61d088f533adaC32DE2298E18", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xAb355C9F5e43C656Abef262827e754A2FED8F69e", + "tokenOwner": "0x42A6ad4FB4BD1DA11087A1813a48e60166eC762A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF2f18F2baa38fe7560F5BD87a2c3aBb8645947b1", + "tokenOwner": "0xe49cB74Fa25772f52A2b2D39d1D59d51F228ac15", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfD0dDeDD3463c57f87717265c4143269e45C7483", + "tokenOwner": "0xd446089cf19C3D3Eb1743BeF3A852293Fd2C7775", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4b248b732635A427f26694745776fCC6e6927185", + "tokenOwner": "0x3c79a6a9C188753a532cF38d5f951BEEBBaEd5aE", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb463B49C0eFf309DE8531368d7DAaF2779050629", + "tokenOwner": "0x1CF8323B93d1Ea0Fa67DD91319164d87594EdB1e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x983D546cEC2658158B66610886B6DE87F6a38ac2", + "tokenOwner": "0xb5ab4bcD4a899fc7dCC01Be66461f1E1387f05De", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE0032620b447A1F7946d78B92A248Ea0E298d8d2", + "tokenOwner": "0x7788dC7cb6dd389C57140a89aC26587FAcd8D08F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x16090CBA35a579dC46fF107Be00cD1175830Fa09", + "tokenOwner": "0x98274c83c72a45E74C2992EbC8B5c9B40952DbF0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD6D3fB7580a4A745a1A06A86d4EC39Fe66D65353", + "tokenOwner": "0x23bEF70D053b87260B0D992E79CbCc4476f91B07", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xdc3761BE3a96133aE50b78d0A1E74910fB53a0e1", + "tokenOwner": "0x0497Fe1061FFe1Ab7F658809A4486FcEF11eA036", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x29209c60Dfb1a252E59116c481F807D32a11ad37", + "tokenOwner": "0x26571D55643a48EC027609dC6dd5f0618330c192", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1Cd4bf3e7780ecc69a6e88aaf208a41f88b718ff", + "tokenOwner": "0xda732a552681619432B6C62a804a668f12De13a5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA95eC500E4ac06a3159e4fe14034E117f1F26467", + "tokenOwner": "0x9BC556D01F84DFf3cCEE099B6fA8e5008F3dFCdA", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xdE950adf90a548619625f3c20fd498Bfc500561c", + "tokenOwner": "0x1FAb389f775064Bc163422DC5408266868D74974", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x14BD2eC444A206783cb9b3D2Ad5d182c45F2b7fE", + "tokenOwner": "0x36161017E32395b8bD30EDB54881B7f51df456eC", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x705c0d2d0987B083C8F873c2Bcd821803Cb1d5F4", + "tokenOwner": "0xC30997e53D1bf80E0F890e44fbB93B9f2261055F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0041EB022d1E7fC974486aC34555751D8325a415", + "tokenOwner": "0x554D94BD0BCf8D44B9591a2A247dd86B244D3Ab6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE4C0163F4766d0B35Dd49db6d6095856C1C36aeB", + "tokenOwner": "0xccB542eD7C52df6CcF7DD1Ddc280cf1CE7498138", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "113310000000000000000" + }, + { + "address": "0xf197B5A9B7A31E68dB1b3BA44D1Bd978382d5CAD", + "tokenOwner": "0x0090dcb43bA4Ca7536c6a16552F8D7a6411F8EA1", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "7070660000000000000000" + }, + { + "address": "0xFf005E987CA65C0Dd85f4E075A32AAD0de6986aB", + "tokenOwner": "0x70A4b9FD44940afF2575799c4E56cED28Eb01334", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "37770640000000000000000" + }, + { + "address": "0xd30FfD204712AF9860509d58FbFDBf425DE8D5c7", + "tokenOwner": "0x5A09ef134681df5dE710cd34d48c263CA788CA2D", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "846060000000000000000" + }, + { + "address": "0xc67989482d3b2c64664c97c2cDbebdef2002d075", + "tokenOwner": "0x3FCb4FDC45c01344805E41Fa413828b76bEcA719", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "151080000000000000000" + }, + { + "address": "0xdAF6B35eAD9c6607F978Aa3B6578C8d73367b54e", + "tokenOwner": "0x0b2718935dCd4525c51DA8B0f0Ca58aC90aF345e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE3D318090eF6a2c26729e5BbE370af83047Fb87C", + "tokenOwner": "0xF44ef34Da7A2456fBCFC58ba535739d43bAD2f28", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x54CD750d87bE43e5d0A50107f11DC343301e6472", + "tokenOwner": "0x00432D1fF71472449D7C763417F1EE22248815aA", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE2cf028deB0073b7888a54f424aBAeF7E7d23C68", + "tokenOwner": "0x08c4076A84AD68fD1b33ABF0e235bfBb1a881e0e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7Dbb0841Dd3167F31106a4b8cAab801138e8e1D6", + "tokenOwner": "0x8C64e51c9bCa21E2D2E4E9ecFE3Dc6499804A5f5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8E53ab9fb16a020cd68F412D7e7F1f03832A9187", + "tokenOwner": "0xA2dC61ccf1C0B8dd305b82DA1F43FE8289118fa7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb924C7ffa8CE8b8ee9bB10C5ECDe3Cd35Ec1B981", + "tokenOwner": "0xf4EF8AFAC7e48B0e923fC77dcfB8dabd80fEfB82", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb2E123c97c83c6C7Faa39F46f971CDc811Ad8B07", + "tokenOwner": "0xc5B5A227F18D925F1dC1B28Fe1af9A611C7511F5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xBc1690dC8E6701bA445EBBc9Ab01EC4a22c35FDa", + "tokenOwner": "0x2DBB56e437090F46e490296de2d34bcDcC378C34", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf4BcbAE40Ef4B5F4658526cCc4ce28a4aa075737", + "tokenOwner": "0xC958C7d9213e8fc05809d6F9201DfD939D580470", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0b84dDc53142738B369636B207eA5fBCCB3D6fE6", + "tokenOwner": "0x62B3006BbF1Ab144c4C37c5C5056FF00E5f34B56", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6044918dE7D7E343E097B97312d4136cc5f9f762", + "tokenOwner": "0x1EDDcd24Bf5Be354Ac5272A85a8932d7BEe83999", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x35F391140eCDBC37003487f1D665595799beB885", + "tokenOwner": "0x69DA117B401290fc387D0Cf8bE8E8B6f42Aa311F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7097081b6D48D1c00248912f3F88e47be1cA491F", + "tokenOwner": "0xCfDE03abA2967D819A82523327FA3d81BEb5A708", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x968089210e684784D3C62980aeE107618562FC51", + "tokenOwner": "0x53d92b47B8e16966Aa65627D39C48bF717602391", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD63E228ae6E9e09892248CbE0C2C3c3e451357AB", + "tokenOwner": "0xB4Fcdfd060EdAc78D4Cb98e08722D8940dF7A914", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x473A0dcd11b7e08902e2B7Bb20F2dF75e1BBdf0b", + "tokenOwner": "0x4bef157a4dCbdee4d6DC6EF448b54a9df03e92B5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9dca65Cac7a397A2e804F6A2cAe3A780d9b9D31F", + "tokenOwner": "0x60627601bd08F4AB77c685E8C8C657C5f312eDa0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB1379318AE2cA5E36E21Cc7272b744822f96C2C0", + "tokenOwner": "0x895D49Fa48401c90FD72d8592e5039Eb2ad3e307", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB33D9942ea7CAB4BC8ceb62CD618a5e704BA7234", + "tokenOwner": "0xfa6DdFF19218d14670bECc68b2408AE36fe32333", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x193Dbe1D85f4FCCc6481441012f3Df608aA9fd6f", + "tokenOwner": "0xF496db29dDE8c0B3afDdb04C8E43D16Cdb02b601", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x78112eaB6ef8871bEeEc136b6BD549441E538825", + "tokenOwner": "0xbd9B9A90F3735CB110Ec2bbed934e1e7a10468fD", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x451c952433e2DCEeb14D185F21e4F06571B5Fc3e", + "tokenOwner": "0xBc73356d6CDD6753a9D910c6F6Ba4736D9A47E09", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xcC907BC635eb9e806adED1DEfe8f5e266Cb8a310", + "tokenOwner": "0x66d3684932086cB81536c77a56A2299ee43d0401", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6d934e18616ea95046A6F2F78c27Df701c24F49c", + "tokenOwner": "0x1A70cb982b05340F7f59beF7b85e302A6C8D8b8A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x47D8a7f5d1D46f1e7CE5444A547c13bDA1F14E1C", + "tokenOwner": "0xc0fCAf4c8c39A168d34250706ac960809EF4CF83", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0ae2a39e5454b3C0571E5F09238eff2A96a71B01", + "tokenOwner": "0x32431e2aa82157B975704d6dc902b8583977476a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE465e0469d271AD63a7fcF3936d02CdDbfed0b7E", + "tokenOwner": "0x67d882F7c6B15D33A82885b79a9985AbAF6ab9bB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc8ac0EBa845847D9eEdDaD51501d85DAcA1778b2", + "tokenOwner": "0xf29b76eCac3C36707791F376BF355B45Bd50dB52", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD198Db8b93d9ba573185E93F4FB6F408B7564a45", + "tokenOwner": "0xDDB95466Ebfb58d98b69574115E12606fc47d80C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xEB68F1bCEB9e696Aa435F81CD9839cB2C8a023b0", + "tokenOwner": "0xEED56Ad0599642fabD7AD842a6d26AfD84E7b139", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x234f8A64BF1421765Fcb70160c2A38BC3431F186", + "tokenOwner": "0x54B399cA2c7367d7EABaa868eAb9FB28D6e4CC22", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfc143005C9c3f27E92217Fe63d803b81b13848d6", + "tokenOwner": "0x07aD2f67B2a40459dff941B5f4430b3c1981De97", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x47B5EBB3e4816dBb8332690Ca27522B3e4B8cbAF", + "tokenOwner": "0x7Cb1b7356DBbEd2b49d21E3A9ABfE769174C42a9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa4aCF9978623753F1cD4b91A8aae5272Aa288f73", + "tokenOwner": "0x0819368A9b7929A0B3b7aB50076304C02D94CA8E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x993bf026a44a6fCF373acF0fCDEb66B6015d7B71", + "tokenOwner": "0x5908D67d93F8A53e1050b314aa572C1d11B4A067", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x28B3Ba66020723CA8e18e1CC0e0215cf672C410E", + "tokenOwner": "0xD51aa6E8e0E4a541bC0cc27B5c0691D07368d847", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1D1e9098a676FcCf670F69520b345C3491e1ba33", + "tokenOwner": "0xDfAaeC16aA49Ae413DCa692b504B08c70765d1EC", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x686F96D9F050F1d7fD9c35971464203969E2C98F", + "tokenOwner": "0x8E7C6faaCD4C30b0ea7E1982FDc9d003E3df3336", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA429FDed5EbedfAac93115948840d017572dD5EB", + "tokenOwner": "0xd2B6d4Fd6a9db4C281661e0421a52232BB7BF636", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9566bd3D3586514Ca6A4c83FB81d27D45c3C0b80", + "tokenOwner": "0xD6bbA03A8AacC41b47236Fe26545Cf6161941F81", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x161aE3393F32282AA9dAE82B905Cd20FE26273EC", + "tokenOwner": "0x99d8E1573a75531F2C0568e33b6fCC8bAbf5e96D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x65Cb5352bCb6DFAbB859Cb3E5d5E05AFCdf58a1d", + "tokenOwner": "0x8112EAa4FAB41dD1004ECd8Fc5f97C10F0A8Ac1E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4d944Ec13356Bab6D7f0097A31a646B39ee8E91a", + "tokenOwner": "0x93d17D37Ad9557C66411e88eE0174D241ebd853f", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x508b71C72105dA63c901b3e305796eaF32679f28", + "tokenOwner": "0x3FDFB770b71d02f5905D0ee4EFceBa4E0592930f", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x741a2E8eCb9dbbA3a3825Ed40661b0dcE0176761", + "tokenOwner": "0xEE64cd6EacB4A06f470A336635DAaFdC8D7FB193", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x379800C6E70e52dA14b51F7A1C5Af53C59e39c65", + "tokenOwner": "0x3c60E884909173be91f8ca827a7e273d18Eb7796", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe3A67D2F82A1157C46ed83F6Ae6c5b7e9B5E9896", + "tokenOwner": "0xdDE81e64e696e721c0fC28E49fa92e01A0348beD", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x206b73621A7e65d089795112d0bD988A7142CB4e", + "tokenOwner": "0xb6d30e9b3180f90869079dCDf306538C4560E8d4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xDe5017719038f0636A1c0b5933e3b89fF0F9248F", + "tokenOwner": "0xe66e9C6c46cDF646EdCFD5082503755B448DCF18", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x088013Cd2D4005aC77EcD10cb212B03Dd40D0cB2", + "tokenOwner": "0x781C2783eF210515d86E913aF599d48BFC9e4c23", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe5368577e64fC9033E9F4F392802Ff91416B3e59", + "tokenOwner": "0x77AA8eaa7F7Aa079c54BcF5964BFbb0BbbD18B82", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x580506F4D7aAe8d92845d06339DA0ADBa3C51521", + "tokenOwner": "0x4d40e2541F943e48EC81Dcce70647386b0E89132", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa62025347151f694953AAa226E649c1e6815803B", + "tokenOwner": "0x3246f11F7a72141CF98e2bF805Db429fc14393f8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5cD52D433478b6Ad0ff450AdEAbe927f13Cf4CBC", + "tokenOwner": "0x26fB82Cd87338268A77825f168e619d6502e2C99", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x771967c47f097f4ea0A21a14E63202Bb1CCd89D8", + "tokenOwner": "0x3befEd70bADbc64F70161f93635987e08d3a0bfF", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xBC9D81C5D3Ee83d05d5E286dE58cb5224C3aAB59", + "tokenOwner": "0x380321D5ef1596a15B78ff63a7B268399968769C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x313D825cfCF8786138036232cb6348cD714ff1c6", + "tokenOwner": "0xB58618C6A2642aDC4ae53b7A4D038Eb5EfAd25FF", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x591D9CeB4686B081Eb7aB1F76FaC3Ad6eA4e895f", + "tokenOwner": "0x7cd5C887a3503B4d0550c0ac3ff6e4dCa61F7467", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x718aA00D6D112B31D6d7adBa1dAdf06054593AAE", + "tokenOwner": "0xdd3b4D307c0F689a91398A57E1aD0C54d5D8Afb5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x188A2658f6175eCfb34B3cA032468A93b0544842", + "tokenOwner": "0x53A2Acf9077ac76C99d0bbC77aaCA4838a51812B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC96B4b6C938F1D3Da07dAD0214d59d0f7A2211f8", + "tokenOwner": "0xBdA360066548A26E4F6692643B9eaf7Cc1725e71", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xcd7D17940E9778aE1C403421D02f7045F71c35C5", + "tokenOwner": "0x54F0AE691197F3de9178EA6B0bD4d7113ec045fA", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB00Bce9F52bFdD133E4B00D72905d51359471aAD", + "tokenOwner": "0x1E0682Ba70c7fce0698Ef793Aeb69415a853FF81", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE88cB6b00090489923C6E9DFd257D517d000e1ad", + "tokenOwner": "0x7ABFf293319C1c7d5fD0F254BaD92E1C88e061EF", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA9C9A4a48E98BA117e9b86D0E2Bd8EDa99BacEdc", + "tokenOwner": "0xf83A0d6f4d39cc413825b343a410eee24C75627c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x17D4e7657DCd623A98f015a113D7C07090463418", + "tokenOwner": "0xD8f44d3F85683377b23CD8C766786342Df2d8F03", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1d9B10b0F50Af3C87C40A51b85C7e62e6AE934D7", + "tokenOwner": "0xE17eb2F086D62B88dEc53a15322E44C783027854", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0C44df11b59Df7D9E63887eC7B3aD619c131d7e7", + "tokenOwner": "0xb0beBb7C76c87d9E180d8fED5944860aAe55c3E2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE04b102B8b2493EeA6C29B2370EC6b704212106e", + "tokenOwner": "0xb0E068F18CfC20f347f228d3f294823e4e939B47", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8Fc1f4099b523b07896E0E32c29039f8675483Cf", + "tokenOwner": "0x3A7602BC93070f93d31EfAF759503B0fA4E673f0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x720650e3D7B18Da8FAF98b1052a1Ab434e40De86", + "tokenOwner": "0x4281E588815FA58eAEd30977ea7C3Bc666276970", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA7cA73d577611F3BfdD2B153532A281c011b0083", + "tokenOwner": "0x5fD55bFF8698d2F4df3F863BD97436A87f4fec34", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8Fab5Eab3FC6B8F0E6fED3358d2dCd236Ba42A4f", + "tokenOwner": "0x5BCF063D9Ec71E1286AF0dd921020560c2858a54", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9C3A0887c22e536f687E152F06bC9f0e4Cb0ADE8", + "tokenOwner": "0xDBd06a016fFC19FdDe0D2B5efE4251f4226eDD77", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb5b80813089168141dE4AD35f8B40bc08230287F", + "tokenOwner": "0x36781600e389656e54Dee59475910e121CF264D4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf213B76bfb41bc11669AFcFEfF18265BD23bBB65", + "tokenOwner": "0x0955aEeb889AC7D4EEba7184A8246a7f38d92937", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa4934C4fB501550546FaA2973C3A8d9011cFe327", + "tokenOwner": "0x987db46543545B63379CcE526A261acefdCfE8f8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x963f10c3a2983e4C268a837bDe7A277856895750", + "tokenOwner": "0xfad9EA12802B1fc16deB93f327Ac2259ea5C2545", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x797a718822472aB1578802275EbDE29b62c2433D", + "tokenOwner": "0x6121524C931f83263FA47C8655555cE233501D7c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xba8A0B6E2dee48DF73c1C1a220b8bfA967c6d85E", + "tokenOwner": "0x1a5FaD708181f1F5B6C1b1B95079E3ad6220921b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xAA8440DF10f956c222364A6689D4F090e2428c9b", + "tokenOwner": "0x167Efc5c703C0892818e7162A9b3a7E74410e66E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x39942a9C2251D4917B6d2012c6c5431bE31503C6", + "tokenOwner": "0x93E9e02a37fCEa134D5033306B9A03EDA5A66dab", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5D4D62BdF97a28Cc8529e811d0Cc8CD4F0c0601f", + "tokenOwner": "0x416F603c8Ec0b79AC35Aa5f8F6723596DD6539Eb", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2825D425E24F3d5980014b7C1B2ea2FccaE3a273", + "tokenOwner": "0xAa191Ad9Cc9C3397CAbAE896b8282A0B179C35ED", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x14F589b53303d895F5f9E3C408B0DE37948797C3", + "tokenOwner": "0xad795fA32929D9dCbA7b30AB98b0050a430B2DAE", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x49EDE1Bb6c02a198FF46aF633e10BD12eE791631", + "tokenOwner": "0x984683042ddb484e074117DC7C7F367De1d11e98", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0B7133D11115fea0F0C2B251AACb7Df449156213", + "tokenOwner": "0x03444C201437D74e7de4B62b9D5c53500bcF8B04", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0aA5bF4Fd937EDEF97425db2093ce2d9CAB1f8F9", + "tokenOwner": "0x8da5b713890eBe4e080BB5E1f5c7F62eCe88Fcb4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x40Dd1753Aa19D09D8c83C6F9dEe6B2dC3B642e62", + "tokenOwner": "0x77cB911a4Fc180BbB3D34b5bE8E0A6b085D43C9F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x47d3e1d17b81aA9B7c097909b41D39d09C56d612", + "tokenOwner": "0xb8aCD3a41360cf07621fF64cF3cD0DAd9A1F0085", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2773F50bfd0Ae7476773b15C27eb748cc6fd9B3A", + "tokenOwner": "0xC73cA270e6613ce58441a75f3853F0cF1b269b58", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xcc2bC968F07608CAe11013373d2EE745c498A594", + "tokenOwner": "0x3F2A0DB4cFF87A135Fa5001Df787B8b96d488A4e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xcF0a9b5De6c3C8586fD0C39C7FbfCd5fef192bbf", + "tokenOwner": "0x8027Aeb337354bf551a06B25e3a1146Ce92DbA1f", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1bED35A058De649AA37D0a411B4e6EA08Cdd5bA7", + "tokenOwner": "0x99A1a2861eD735fd613a03cd12BdB8b9B9EB8ebF", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x75B89521d78515C1B10B3421ff1035175f0b3312", + "tokenOwner": "0x05E674e568646f4e83ea60E2dea601EBa503A87E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2A2801B7a9f07353Bc88F2C8470770ab789A47fE", + "tokenOwner": "0x490Ca71df413CFD7A3E32C8Fd287EB68F0936F1B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x19D33a174804DED91cE27127451cE24eF815d13e", + "tokenOwner": "0xbe4F7FEc01CA9E28876e4515DB511aA23207Eb8F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE4077a2F7d15bd90c714958342Cf6a1885Da4DfA", + "tokenOwner": "0x874C7Fb38C621C38922cAA7AA03EDfff781cf158", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x42fC29c60ea3B95047bB9aaa366ed278FbC2dc60", + "tokenOwner": "0x830A54a937AB14d0232688FeB76D199e4217C0fa", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x21FF95c52B932FA5EDD85b469E6Ff85029AE9D78", + "tokenOwner": "0x15bf6F8C86A5C0851576408e9F92B903a6F57264", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x78ea068b19E17d9dbA850A5983fa81de3d034F27", + "tokenOwner": "0xbE63F32bd5322ebCe85e322aD77394d48ecf26cF", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1C2AD7a5B98FE6cfd9D433469db3260DD004CCbd", + "tokenOwner": "0x43d184f3D9cE27D0CB306512707c467877b0E7fD", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x74b1258E10713B855d398CBC2116f540d4674f64", + "tokenOwner": "0xA0E08443C601B3fef83e45B7518463d311B620A7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb651dBC268d3C2149C92Bdc7AbaE8eeFf498bc32", + "tokenOwner": "0x638661f41E5c6dE78d7143fD8513a8a196d431aa", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x74116b33f6184CCF2Ae95bb9a1269dce17407418", + "tokenOwner": "0xcc5B4C3ADD25dEAE742197b5bEc339D3e6D009A4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc2a71de13A5fbb9572f6d47123A410F00c389Da5", + "tokenOwner": "0xFa0a5C7c84D6d6D45253AEf0EfF8EB6c9D9DE8a0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe22401E07A076668dB4C049cCB14E8DF897C945B", + "tokenOwner": "0x1EC1166eb15b091d2a22230b49f693BC2b5C80b1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x38528f50BF37a5f407e5B6a4eb03d3fD61d19D92", + "tokenOwner": "0x2a7a14aa64093566A36E89b9298c4A1e93080051", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA714a844bdb759Cef6f336c1E468Ee9075EAaeB8", + "tokenOwner": "0x93a7464E3fec0E75c23fF855598c9543ad0A8548", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x374887ebD2710fFBe42e918bDC23D220164Cc709", + "tokenOwner": "0xAecE14BEea855922E605612b77Daa6cF6113D39f", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xDdea3588B428fcCD1c84bFd93f52095aF39C9065", + "tokenOwner": "0x207688d6e8e9E6Bf8AdcCC81044a0fc9C5B25AcA", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf90F2Db74A2f78B158d90Abb7fc876C1dD79315c", + "tokenOwner": "0xE53e4D82bbD0A13238B2cf11743BC1Bc1130dBB9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9b24C151404c5C18889800D61Bf40b3654fB6b90", + "tokenOwner": "0x823A02b35D342C7e490df392A77e75daD8bd2Aa2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x38e52c444316098a749449F22afd46FF6DccA6A7", + "tokenOwner": "0xF5366a3445Adf491311a6e86443bfb5392f08265", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd86A28a65A643bAEF6113f8416d03ab814ed6A4D", + "tokenOwner": "0xf198eE3386a0f57aFCD13222a0AE085AE1a7d6F5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf0D8B91522eDfE571Af0Ba4eD844eA66b9656845", + "tokenOwner": "0x4Cb148568dFb6FF45AECE5aAf8cBdA8cED64d98a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xBd0Ca6d84F170Dfec86696B103e1dd7131317ee7", + "tokenOwner": "0xD8aF50073719C0c8367903DbC3bCc0baCb1fdE50", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7b2C61e23346fFBe081d635Ec4063F0367115CbB", + "tokenOwner": "0xbd9b022838970Ddb3D126b2BD7FcF3B21A7321f7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x093A6cB74549Aa50E366cecCC08F2DA53D946c4b", + "tokenOwner": "0xF6761786862fD1377D9DE1FEBd80A0B00a0fe2eC", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe96ec84F3565c2671C068899F69E00763F972291", + "tokenOwner": "0x4B78D398AC31BC0A8031A1227EA048d72524933e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xCC6A4C848acd539B1855eC5e0cbE4504C1b89417", + "tokenOwner": "0xF6F1Eaff303cD4Ca34deba81ec598b0B10003d41", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x28C73563F1c8108fF5897D210FbB07D5F27607d4", + "tokenOwner": "0xa5Ff245EC19298Eb972085B7271355288B39Df7F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xAEabB57e58D688997f4a8516F710f20E37744dd4", + "tokenOwner": "0xF548401B09a02e7BD16D10Ea10a5cB3CEA116805", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xca1E77560040E753d536B9702453e8301DFdD4Ba", + "tokenOwner": "0x4C0db6794A600383A788F312A0C7a28CA6d99628", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xbed1CB742A377845b250F292B39eD3ac7C04cbCb", + "tokenOwner": "0xb2399a666A7E80865E1d15fAea4743F1390ad62E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA46512b90845324bbbb24cfDaac15F9786CA6D2A", + "tokenOwner": "0xd09c27D88a07a4CaB837AFA4d9a9072470732330", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5FBab0C8Cb2373bB0594406Df4A17F307730986D", + "tokenOwner": "0xb5Dd088FCc8C2245733b5b4177a8F404b12F4ea6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5CB9541C7407d66396812CF2DFf927fd4BCB7673", + "tokenOwner": "0xF957aC4349782A663F933d4b38669D063B78e489", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0b04c744618Fa16E44d1F645DA274838B3eDdD0a", + "tokenOwner": "0x93c4bE72157Feab85c6347124D19F892aEfD95Fd", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xDc0d784091F760896d399C5D99D2d6B473CA4645", + "tokenOwner": "0xe5b37AE9075a779f5709876cC9e6c7322106682a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc08BaF094E02510860e9C029CDd9341efe01d27f", + "tokenOwner": "0xA5e279189fEF22c4AF42d18e3e56D91615A2DDDe", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF9caF18BA6893D2F09ff7Bf513E25AEB1d901746", + "tokenOwner": "0x0b61acF55F6a91c2973304ae2269110cA38F7A51", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe3478aB84AF4ccA49279929de7b23aEFd36FF705", + "tokenOwner": "0x8c3E8aaCE2BC59904514271da6Da4e53A4219b5e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3d106Fc24cbB5b7043A867037a6B37b80d017BFF", + "tokenOwner": "0x8EeDb8576C6a0472208f37F40b89F5c3744d90F1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa31045421F7Ffa19E63A298Ba0c95420C85182f9", + "tokenOwner": "0xC76D8F28280fE03026049b2E3df744a138e9272a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x54C562d66E64017E8E4A2845999e49A8add9e358", + "tokenOwner": "0xf3Ceb11d37496D030327b4510950E493785DcaD4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3f943273c42E9a92B6FCA99588d1f7b4DAB3f791", + "tokenOwner": "0x584BaA4b71b0A3fA522658128f36a6A4AbeAC2ae", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0A3D9350a276425397eF3130E58B626c96888dF0", + "tokenOwner": "0xC6dcDe69873a2367724a265F3bA9AB7030922Eb3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x17B2389537c6E0831FF6E390F1870CF7EC45192c", + "tokenOwner": "0x5cB5c0DA4D0e1CeCe5873d756Baf4f585674B855", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x21610bc21c606B6c3998A16A56dA8C6DC3D3e070", + "tokenOwner": "0xeA5EE88F918456066bE1B44f6e51E5fe612B37A2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB62c1da59B739eb773418599CfA6730138a76571", + "tokenOwner": "0xCF65b56F39a969e17330AE5773924c47646CBFaf", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2e04F74c41c6f30faaD80b1B29c6AF00c509De8A", + "tokenOwner": "0xD5588f5e33823bFDf8Ce2a285c421113c3a9D070", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x110D7c9674748102C40355dE5a7841002A4b7031", + "tokenOwner": "0xA190319822C3f63B485724741dd3c98B73764CF7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x805312e2f3648f61E51Ce74624820bb15b3073Fb", + "tokenOwner": "0xB70204E0143856BB3E0F31a71d677a38C0514d57", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfbfCC3077686D2c954E5b2E5057e63C57e4546fb", + "tokenOwner": "0x248Ba93b490031d5c24E502Fe411B65882d45De6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x728dC7fE617D565E4CCceF367aF80DdED64D0806", + "tokenOwner": "0x5380Ae10e3C39eB7C9523bf97E34f4175D86886C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd169b3b1ac45683f49B2993621A6995b5EdDdE6B", + "tokenOwner": "0xD05fb656308BE85072fc328232bCCe66C79875E0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x040707D0b7D1bD7e1C174F27Af9dc6d4E9E8e9EE", + "tokenOwner": "0x2501E8DB1d4985F3ab8aEbD3781D292e358964e7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB75EFdC96cFD920b6c5a221437deD809f311ad7c", + "tokenOwner": "0x1607001AcdFde2e76c66083b224EbAB13EAF4322", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc6158D685465D5Cd6253c418830607AE6d9158B3", + "tokenOwner": "0xFbeC2c5cbB8bf4179E605520c6Be48D75ED5dF81", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x810BcC443A01A4013bD0Ffa78A66518c69D70Cef", + "tokenOwner": "0xA5728A59B4941FEEe2dAa9451b68Edb4f35Bb51B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x37b976132FBb20074882324C9EA6D451d32476B6", + "tokenOwner": "0x9fE5829435eB70d4a3C51f8Df130f6AAD3475Efa", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA63d3D9dA33EE399c3BfC1924972E0c606832E3c", + "tokenOwner": "0xD01EC69c8D816803EBb30d3BAAE0DaBD90231208", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xFc334545a6A875a96Cc36F44a3b53A1c35373247", + "tokenOwner": "0x728991e98FC55e0f5718E372D66b43bAE65d0C18", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2212B654D96c5afE402BE985D465d0042cF229a6", + "tokenOwner": "0xe8e82226B21809722EB62e4C4dEdA0f84808Df0B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2dC2b073f087AA0a8600bD267ACE7A6624b36F99", + "tokenOwner": "0x4579AFd672f3f9099E55502C0AdDE2a6abE0e366", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x691552dB60b0c089A93b45136544d06d6Af16b3f", + "tokenOwner": "0x04a542178490A736a6d93B522c39b8114B3458E3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x749F6CFCe1fB20EE7aEccA6A357c3435a19627F8", + "tokenOwner": "0xE8727A55952bdFE10c49479Ef2dee45529f1d15E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x21297f77EF64aa21D58FB16033AA3A34D918704d", + "tokenOwner": "0x4d659b08082f417855ec04c107Caf88F60f69789", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6248bC5357105DD7e6f47fDa552eFbDBa883dcEb", + "tokenOwner": "0x4dd67C3577c57bA641a09256a2f2057697C567Ef", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd645B845e104750D06A75BeE60128f7199E5aA43", + "tokenOwner": "0x71946302C3842C39a7163D569069eafcC8eB5e96", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0A9a8B687F27B1393d07b65b53b2a7d4D0F50ae8", + "tokenOwner": "0x943159aA9310C450D3D47811cDF4494795b119D6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x696Bf75AC29dfdA5407a985e87070fBD037dF85A", + "tokenOwner": "0xd4bBCa3eD18f82d99F372F29137565de16447c74", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x97cF1BF89dAEF285dA192B0860B37F14E6022EB8", + "tokenOwner": "0x9CAf663A9Be37294Ed59D823300A72A1131Af908", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x25cDD78c825bAE751a828a76543b760EbC856Dd4", + "tokenOwner": "0x3532bd3a774327dA6C42A74a445a8c4e73a45412", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6590Ad12290a3a3550abfC5c7ee99CBD09b8844B", + "tokenOwner": "0xB6Ab374E2fB5638072377ee8dE71028938938084", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xef6FBaD55ce128482e2E6D8bdb3EB1939232a10E", + "tokenOwner": "0x0487248d0fFbCD2cE5fC75AB27640E16ced7Ad66", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x718EE47aA789D820D5F7221852C18A168a17DD6A", + "tokenOwner": "0x1E77463143B801D8Ea9eCe21817a8E87F56B6c70", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfB66FffC92f8D05aae44e71188Bf1bc8c7cdF991", + "tokenOwner": "0x627a5CF98D48f6D36a99b6308253EA7956E7E431", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x351FE2c4771d99D60eC952E67e5fD4e81B1FfD3d", + "tokenOwner": "0xa0fE0797b8710Fe6b3213526Dd21B491F1b57D99", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x71B30f4dEc4E0775e189887E4897f24a92872418", + "tokenOwner": "0x0EC75b6CdaDbe80C2911DBBe0C03eeFDc24c8184", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1d4cC648F5701C3726c597F13960E202764b44Dc", + "tokenOwner": "0x67611d1607F4C712fB12e2B5e2a855f8Cd8dca1D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4014050000000000000000" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "196150000000000000000" + }, + { + "address": "0x393A85cCFb3a144cc18947fEfF782BB4CBd1B806", + "tokenOwner": "0x9Aa8F928011EAE7E5466b75111175518dF94348d", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "8028110000000000000000" + }, + { + "address": "0xeAEeEF24B70DF14717B9Fdb75016dd43D098D3D6", + "tokenOwner": "0xa861989e618D911b4f090aF3cc1F1E56Ab08D210", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1053060000000000000000" + }, + { + "address": "0x5B6f2B4b204bAc885442b072cd1203429eB62C5e", + "tokenOwner": "0x36cd8971bE8B72fb408EF4E7fA84C0c62cC15E9F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "441550000000000000000" + }, + { + "address": "0xF68E6eD84443EB0405E05EBB5038d70922BDbf72", + "tokenOwner": "0x3E7821266E1b3fC1228403f9F43DEba7dAedF66A", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "60210000000000000000" + }, + { + "address": "0xb349bf0C52E21638468b3b52f5a8D604dd5104E4", + "tokenOwner": "0xD86D0c3a5D84e7b6322D5D37571B47E219691e97", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "84300000000000000000" + }, + { + "address": "0x8205cbD6CeC4F2c05E4E36322293AE23dFFc34Ca", + "tokenOwner": "0x3F4F13776E6F56BD092C721E7De2F15d535B19FE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "26090000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "144510000000000000000" + }, + { + "address": "0x12484998B04Ddc5f06db5646B4B5571DD796E9dC", + "tokenOwner": "0xBa986c82A78db4Cc36D05fd99836C795bece1663", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "40140000000000000000" + }, + { + "address": "0x9c35a4630Cd69339F5c69fDFEEe2BC78Fc141A3A", + "tokenOwner": "0x97A56129A3E6b0c2ce256dbe3F70831661a4e1bc", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "187300000000000000000" + }, + { + "address": "0xf197B5A9B7A31E68dB1b3BA44D1Bd978382d5CAD", + "tokenOwner": "0x0090dcb43bA4Ca7536c6a16552F8D7a6411F8EA1", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "102280000000000000000" + }, + { + "address": "0x9d74C180BF7c7FBF996B314D9c01BBbd2f22738f", + "tokenOwner": "0xB3BA7Df8E14584Deca3C0F735effBEfB9F818601", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "10840000000000000000" + }, + { + "address": "0xeA7fc34e11D77289a88ff02fA7AA3C51BDcDEfDA", + "tokenOwner": "0x36aedDBD87b092E01Ea5327eFBb619187F9A9c13", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "441550000000000000000" + }, + { + "address": "0x825D8b44720378E3b20307035167C7a110cEb7aD", + "tokenOwner": "0x6f88d77261FF9651B4536B0c5EC7bAcb9130d4c3", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "147200000000000000000" + }, + { + "address": "0xC9FB6f144A5466d423287217bDcB92B7Ba73979D", + "tokenOwner": "0xC2b4Edb2De0e549d2df1098b8119B486d5A0A8cb", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "60210000000000000000" + }, + { + "address": "0x393A85cCFb3a144cc18947fEfF782BB4CBd1B806", + "tokenOwner": "0x9Aa8F928011EAE7E5466b75111175518dF94348d", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "73580000000000000000" + }, + { + "address": "0x83596320cc226dF2d5D7160de7B7d1264bF52626", + "tokenOwner": "0x0C149119166d186299A8894a596106743f280B22", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "168590000000000000000" + }, + { + "address": "0xF7d5a5f91Ba01984151f3C1d3cD2088e0d0b299e", + "tokenOwner": "0x55Ed66E5E8371C66bc710A4feE4e8e7Bf2d825fd", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "42150000000000000000" + }, + { + "address": "0x7C3fBCde62A2148A011534a39F05898307Be09Fe", + "tokenOwner": "0x367580BEc03c001D76C51591C7d79914c4cc0e7D", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "134870000000000000000" + }, + { + "address": "0xae9bA62c9c71f37498B07Dd7793a6b9576F113Ae", + "tokenOwner": "0x589079F57c6aD630bbcDbd93B9933FA0De2be34a", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "189060000000000000000" + }, + { + "address": "0xa9525E051e19BcBC884E0600ab3d5454d6ea1aB9", + "tokenOwner": "0x673B37941AB527E0eeE13C1fF09298Ef1911D7D6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "196290000000000000000" + }, + { + "address": "0xa89844A719D829ed55EcF50d3bE9dad8363F2f6f", + "tokenOwner": "0x7aF2A27665D5bBc5352342FCAF072A6f4a4011D2", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "119220000000000000000" + }, + { + "address": "0x1F728a834c6D2E448a39168c2fc7b1520606d5D2", + "tokenOwner": "0xd87beb25391Fdf4de6538b9bAc237E00050D958e", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1204220000000000000000" + }, + { + "address": "0x533f9bF531C64AC66bdFd218d6FBe0042460588a", + "tokenOwner": "0x1926FdAc2D85E6730fC9Cb231ef2237c4d5cCc0E", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "76110000000000000000" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "196150000000000000000" + }, + { + "address": "0x5B6f2B4b204bAc885442b072cd1203429eB62C5e", + "tokenOwner": "0x36cd8971bE8B72fb408EF4E7fA84C0c62cC15E9F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "441550000000000000000" + }, + { + "address": "0x953fB26D3B77B129E88C72044BB8fE4f79Fb6778", + "tokenOwner": "0x46044D8a0Ba6D59237a3260E90c44b584490a269", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xeA6a5554562aA18CE8705760deD4C14d28b6260d", + "tokenOwner": "0x18d7c9C7E5E0a6385445F89b355B1316316d8839", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x680AA0E2572E2E3980912e901395E80AcE4be0aE", + "tokenOwner": "0x521440e5eE334a8DD01314b940c806d42DeBfbDB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb428402F036De58F7C43cac7A4b1d434231beaf0", + "tokenOwner": "0x4CA1692357F441C755993c530FF24F506f03F78F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x84A0D3dd81D81fAa15b32E79AB722676aA9Ae18e", + "tokenOwner": "0x79CEFaE1E9694644D32dF1471C26270A6b7FEb6c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x86272617caf7BAE5c5945F5d0d4cBE861709C8C1", + "tokenOwner": "0x7BcCBB13e67661fCB9DF036715a2C6FBa6432b7C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3959A6Ac492C4F0237FB87bd0d9756086f76C0E9", + "tokenOwner": "0x6c456F4C8f96bb5878c0966e5aE4Ac58bB4009E7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD68Daf22E1416aEF2742a1636a1E3790832B7C0b", + "tokenOwner": "0x96bAcaEdAa53e064c342d801443954328cB2A01A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x11a3552537834bD05a496EB75546E1b43cE0CB21", + "tokenOwner": "0x0c10156172664C4f65C2843E586729D7a2FAcfb9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x92E665e802F9CdB2aa2418CBd462bd9Dc98514a2", + "tokenOwner": "0xA8f91857e91ddfE15B74bC6Bd32E782ffB57bA94", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe5e133C43a1097ac0caDc327cE90c357158Fa2bD", + "tokenOwner": "0x38c382B3B7c756C66e601fA311E2E6341239Ff72", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xcdA54759b6656B5b9492A36e7dc1fbeD0272d964", + "tokenOwner": "0x922f8B327BFE78497283378b97D37Cc5521907A7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0b13CaE1ef4574077e749cB6787b60aC26479e17", + "tokenOwner": "0x88A7670326f4A0733F71a0E0A4F8c9C5Ec31824A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x204D916302fd44C331bC24C1A8548477088B77e4", + "tokenOwner": "0x0806687bA75A4145778419f0C606b3879a21c0a4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xFDB1e803Dbef83212342F091EECE0B41f680705C", + "tokenOwner": "0xAdE2e104a4400b314eD2aB70809475321743bA24", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0625f671723701e995a93a51d822F1021bC78630", + "tokenOwner": "0xcEe6729c9005476a344c0C7aA0bf05d0A7303d8f", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xEc66eE9C048D655DE1948543344B4E66eCDc51A8", + "tokenOwner": "0x0d0C59Bc715FBDc16905C19A31d9956907D866F7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x606006b1d8f701F698Ee938E374b7AefD2d82b87", + "tokenOwner": "0x7B9582c829047aeDAA1B678795053c275E5d8427", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6C5587293d81B4785a82AD0df679e774bDD9a50e", + "tokenOwner": "0x8C4f94D553328D27D0FB970f8dD32c263F260768", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7028E5540B20A3D36306BfB8c992d9953B853353", + "tokenOwner": "0x6cD0d1C5EF3819D1f8d99d85ae8e0c3137898142", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA1B0ac3b025cFA97C10B2EBb3CC4cc5C14210205", + "tokenOwner": "0x19d9288fedB474a1Fc534Dd548014164F7501f31", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC1936F41d50b904430A2060e2a85B4F7ef2a97D8", + "tokenOwner": "0x1D9C14B305AF5eB58a00E42C5cE13332a2FaDea7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x417C64F8091DdB3c47b95b192e6aB475D8907d06", + "tokenOwner": "0xBb0D29673cF96bd4595EA999189E1b1E35aCB615", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xbd872807bDf19E7709ac170f7047bCA6d187808e", + "tokenOwner": "0xa583De4E3Ea722EDC067D7e19f02994dec185512", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0dC36F90B3eB925312cFE00797B974f2Df0A5252", + "tokenOwner": "0xC270DCc50812Fd9e5cba84Db5c11454608Bb9EC8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb09183C5c4dD4dB89B0184878543f5e23fcd6d38", + "tokenOwner": "0x1BdCD0251d867A499f2c65916d74789D39186E81", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7BFBA9fd6d8ef2565F1448310733994545eb65d5", + "tokenOwner": "0x5FaA9f4a21BD4A5CA01422A8Dc5642738Cb1EE92", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x95D93571929A4DBCd05d8EbE328795Cf8A290faF", + "tokenOwner": "0x33Df3A4d6AD28e5dEe60d57948765b47D0a09344", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7643735bAA1cA8C13Ce4DDF978D799B3e95acF02", + "tokenOwner": "0x24b24899CC2345434bD2E700781aC77B275132D7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4De939959d5D23ba7ce2F65baecF2A4B1c682fD6", + "tokenOwner": "0x45Fe0fDb13835C1BF10CfFB2fee05DE72dE25893", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9ACB4081F64adA9B5F110428dF169Ee6b284e5c1", + "tokenOwner": "0xf52fe56bf4eDf5aBd56232b927641f014d2D515b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE52ECA0b2fDF3849D91Fd07A6fadF8C3cDe7ada8", + "tokenOwner": "0x8aB423EE6e1dd8061aFF40D178C4931355AaA35D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd18d20A34F4d2f5BB6555F822fcb7B3494A2e863", + "tokenOwner": "0x6EfdE15bF340cdB1C328E875692cE24f5b3D84ac", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe1C3b05460D404B6A00F1C9342141a43Bc3a6105", + "tokenOwner": "0x3006dce5ae6e21AE250abeD44D4B0Ce76D9058aa", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4f004785A27444F0ff2aa5586De47A5Cbe5e2769", + "tokenOwner": "0xc04c4782C9B8248D52c738dDf80a0c7614399AF7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x99f50304a8F49a8e2095F81EA789A4D4BDBA01Aa", + "tokenOwner": "0xD89863049aABCd4626590fdebD00aF11D8233173", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x279C931dC89C26679cD2E4F133fc3348BBF94656", + "tokenOwner": "0x92663621E97C3dC6c770278C0755EA608774a477", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8dC0c0ef660AcE2ae3396113A84bb9DE5939ad3c", + "tokenOwner": "0x3D9F024BA6F13cE67805919D94e579023A81c327", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x906E1c1BcFFb7df0451505b9bb07970CFB007c06", + "tokenOwner": "0x551499fB7cbCe6E10Ae653Ff2F8F9da88D73a78d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x578D43198Cca6e1f225213e8EC271D137Fad3b24", + "tokenOwner": "0x63a1b6716d9b8A1f3534705aB742d1e8F33F32FD", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xcBba6Bf6d53F07e0e4124a55E61f8CcE66E8A1B4", + "tokenOwner": "0x958F5a41BA65D1eEd7aae15a03A6E557c17B91fD", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x60728370231b5a8B0eee46b3C576521D330f0D0E", + "tokenOwner": "0x32b39E78c76bd1D6413B12BC616bE78fde0752DF", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE7C15bF7a9480C3283A0D8fAc323426eb7D0954B", + "tokenOwner": "0x031dc1EE7CbF4FFf3112C8a3C7483E24692dEB94", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x669129EF7c0811a33277D4734004e1648B232600", + "tokenOwner": "0xD715a37dC7198BB9B470C3d0dCda639D69782eE1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA11CE4C0FF51CFA2042daBF0A1d498FCea3b9906", + "tokenOwner": "0xea40EDc0c204aB238F0B7117f3f2a4278EaA91F0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf07B8F15889102c1A2570595CDc45B0EF03d1652", + "tokenOwner": "0x38e6240eE8B9Ec0AA4320c839e1C6A2c1d992e6F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6f698a28FF9F4661C6BD0243c4Ad438041208691", + "tokenOwner": "0x24626A499e58C616c5b4f1159d977923992A16E0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF557e42A3B9B05b35e07Eecd131de852509Ad7c5", + "tokenOwner": "0xa2082C814fc2dC8dFb93764A446D047E76b1008e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB6F1d19E415E8bE1b97b8FA01dcCE9FEF9e48401", + "tokenOwner": "0xe73eb39A8934dD8b25f19F05069e4a44EB673DE3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2aF207de257c8CD7E80acbb0e50d7dD80A66C4FE", + "tokenOwner": "0x819feBDe0Cb9359Fba05F54d6ba9b9060Ad2Dcb3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8773A520022AE4803595A74E69AF3B85eD9136Ee", + "tokenOwner": "0x739DF012F4D031f01FbAb7d4B0735C893Ad26D66", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF147D60C91b038C01D7d41936d48D9AEcA99b208", + "tokenOwner": "0x067afEb4E122F1BF84544D1557Adb27feFf40f91", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8712bad787dfB866Edd57e84fD7e965475850ACb", + "tokenOwner": "0x3C8b5499D8ECCdC546B20fEFE65019181249666c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3bD1e94967d3C8c3D245C17eCec6e0E6C36F206F", + "tokenOwner": "0xc2fe50E4E2a72346108527a815627DDa4bBd165C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa85A1c4593A83CB3af7A76e7c77b2AaB4416267f", + "tokenOwner": "0x0080A01A45d5e023435dc82970ec2681A5AE050E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x72F4D1bB54e1C2003C4710441d2c98D0011530A0", + "tokenOwner": "0xC2e712685b0e5D1710D1466e51E8d47DE320608d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0D6e2c22Bf3764CE8f7beDd8ad4a30AA33dC443F", + "tokenOwner": "0x5f8368C7fA81a6DDC2B40415FFE310791fC2CBD7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd818d37727fe6890d9Eb58D3FC3c827401605F69", + "tokenOwner": "0x7393bd7FA4E0F1ff8B246D38655787a8afA17bc9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4418371aE560A18620d3BFADDc577A7A8e0d6d6f", + "tokenOwner": "0xF09E5D53081f1c0ba61de79bf810Beff480dea4F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x52B17D18d911b8b9fab91b6c8701876027c50262", + "tokenOwner": "0xFCD7FBcEDc1e18789864C31a1Ed5207f0CB19887", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x40f12cA5Ab13e1442A1BEab3237b6Cdf46dFad73", + "tokenOwner": "0x73DC73007f456Cf6f2F9C6f325754F17E518a375", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x32E2642cA9C74341783d8f3966555f7FA8aE87bA", + "tokenOwner": "0x442d82B53a74480A9dE05f95A7c5eF79BB52c50e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF89FAa37D7118C1bf2FCab1bb1429c73EcAce99b", + "tokenOwner": "0x11268b7b1Ff187eDC31ebB07E51BF034842C61B3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8c1473159d7Ae82C4cEB5AfD2d7B5472EC56c5Cd", + "tokenOwner": "0x0B0eDf4CF347dE83d6E64d947edBbA9f164BcDdC", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4b3203949Aecf621DC57c1B110D5B413602c6eCB", + "tokenOwner": "0xaeb46075E61B92F0F548E53a88D1E2D66b001Edf", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x61a91459cbbF133A6635818f18C623F6080af751", + "tokenOwner": "0xCd0ba640AF5bc02bDCFEda5dB547263A2AD07232", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa809033AfAEEBD2FF427B81dFc9bfA28CEf9BdA1", + "tokenOwner": "0x081Fba453624Da22f20DC292570052bB86735175", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb885352c7e623B396eA56E7fddf5ccFb659124e9", + "tokenOwner": "0x0FFfB87aD3C01b83202785d13Ac2DaFb0E790127", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2aCA6C9FF52AA51a1AD99E84741591864f34eEF0", + "tokenOwner": "0x116A8080b2472F47C9acF09B9E1E31148295d477", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfC86F46A7eCEDA162d0696E92ac969d6d30Fc14B", + "tokenOwner": "0xBFB2a6db6efb560CC849Ea3Ea3b6E84D38a49647", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x988CFDC2F4B3Bac22d1B52614e541A3184421938", + "tokenOwner": "0x2dfba4e208A8d8Fe68a0D0cdE186bD082F48b0a7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2AD7be9373B5914392569DD79A6Cd07c78350f14", + "tokenOwner": "0xEdcD98122C0Dc7f897Cb1F4b94080ee1630F967c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8E9CC430e3c03163b78e17969572C1D07E29478B", + "tokenOwner": "0x6fd69d33a2F7353F5a00ab2855f20c4946870c4a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6b2bF95fb676F021E1Da28100EF9411A10044752", + "tokenOwner": "0xb8Ac4140B3F2Eea90954Cb7aA1eF00aB49dfdF10", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7169f359416d24fD0e7AB2646dBd8bc8Ffa84Acf", + "tokenOwner": "0x6368FdC67ecEFbf8c980aFb2669a0a5ebA7d485D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc25620A2a64f96c0c1E9C72BDCaD72e234172448", + "tokenOwner": "0x76316F91D800864875CD7BdE5Faf7e4679229eFc", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x682c455Ac254cBbC6593894e73E59Ef44B400d09", + "tokenOwner": "0x3B7dC44Ed2932A8EA53AEA03bE93B637d233FE4F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xCeC96044fFBCAfdbC5678bc8b953A90981BBdd6c", + "tokenOwner": "0xd54e6E49C1dd1E99b70f26153fb28383B434823E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xaEfA2fB494ea8A5fA20e45860a1F620a2a66df30", + "tokenOwner": "0x43fB770ad76349518f4631505fcCa6A0eE5Eba29", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "10035140000000000000000" + }, + { + "address": "0xd893664A04f33bA5d29deDda3F70Bd5B52D4e279", + "tokenOwner": "0xB753b89722a1969D3850c37D05333aE592302412", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "401410000000000000000" + }, + { + "address": "0x16b14b6640439dE5d79dC7deF5754944005c76aD", + "tokenOwner": "0x1bf234915647a2A96b7c1145EfCF08554dE1Cc56", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "867040000000000000000" + }, + { + "address": "0xcB9958DC36d3f6474aDFF5E928E8e535679c954b", + "tokenOwner": "0xF0a716d0F96ff52F2Afb760B9CE10dc6AC4Dad69", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "120420000000000000000" + }, + { + "address": "0xcd7bBbbDa41771a86cbd92Fc8F71a4a0BCB4318C", + "tokenOwner": "0x04e712D648A6BA200e1B41305f208596944871fC", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1450390000000000000000" + }, + { + "address": "0x258efbe7d4330638Df4Ef9a5f7711D83A997BBed", + "tokenOwner": "0x4E26E58aA59C7aCe242a3A86bE21Dc2A63aE1DBB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE1Ba85Fa6856a56DDb27C0955614Cfc83899E038", + "tokenOwner": "0xF0023492194430C23f025f95B76394A4141Bdfd8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf9fAac938d484c17c758E4c1e241E83E427A3744", + "tokenOwner": "0x7c17d7afF01AedC9397b3f39d229d217Ea99D1BF", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf4dAb6BD5C11a8a3cfdf941c7a9b4CFc0bDb3B9c", + "tokenOwner": "0x4ee10F3F93c0dB513e9f5dA805Bf0B786A69E1d4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb39dC3508fC5d6F8091775ac37b0C751598baD8B", + "tokenOwner": "0xac64834617321f028ef7A10Dfb0A1A6db3C705d9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC01C45D46c47BD07ED4E96a64B266E8D0526bE01", + "tokenOwner": "0x5Ef412688eE34599E709fA242D8891d0928F6B84", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB30C9915aFD2104671423DC0C76E9935964378A2", + "tokenOwner": "0xD25270BFaE70352E704211935A64555931e550B2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4eb350D856Af8CaB1ff1Df19C668B127bC8F5055", + "tokenOwner": "0x4759878927b5C462cc984F3437Cb24FA7CF38C21", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2E94C30fD221533bB6384580E0A9CF14Ce44343b", + "tokenOwner": "0xF242dFFc0f66901Ade24434Db1318fC4b89d4F1A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4B01c0Fa651C83bA8Cc088A3765B9221478deAdc", + "tokenOwner": "0x9D72Bad946d3e8De817CC5660b0eAc830d137136", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x24135F05e7fB2bc6188F86fb11d638AdeFd56782", + "tokenOwner": "0x8Ae32Fa0FF45f00085d03D661AecCC50b96b362A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x668bb18227B086be03DC3e28BF75E493B90Effcd", + "tokenOwner": "0x5D8E466B894ebC238a893E3090c4ACfDFAf78570", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6A5a68CA091b83F3Fa865863D54119C327365859", + "tokenOwner": "0x727407371615E2D161F96D66c61A814B94D84C6B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1C6938C6CC22e619A48EF85E5E9C97dAA13a5Ae8", + "tokenOwner": "0x500D12bcF9465568BE7a678371eB6c0a5C4EaD80", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5E272D31407BbA170FEaaF158c6Da295F147e836", + "tokenOwner": "0xd90Df0c743faFF20432512E4cAa1bCD7711CC9F3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC7a6d6c868e962961f0511F19E4B94e9bf860120", + "tokenOwner": "0x7E243C07AFCeaFe22c05FF1415DB8effAd5FC100", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8D61dD836043374E716E3C43b40396aE93315b0f", + "tokenOwner": "0xBc1Be6d6316987BfF96Ed983EC0b17a8b991cb64", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3bE5Cd44e49Cf2d4b0cb4E2cE0406c18F5f3d364", + "tokenOwner": "0x1253D2162029974aa202C412d78902442074ccC8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x63C1feaF44138Cca76EF893d60FD3cFfA81FC078", + "tokenOwner": "0x74068a3dA8d24930297B5a4a91492A6166Ce6380", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9C90C36f989f3b98f69847C0319048419531071B", + "tokenOwner": "0x3fA227e61df386e7f16968B3f3350E551818D8d7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA672b2484A484EB72B9f39A3ca7eEce7c1D6834d", + "tokenOwner": "0x53eB2681e40C03BF7F9B758DF039bfA62ED4B0be", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7a9dd7e41E0bcbc1D57f34e1DbAf13Cd7Df9C0f8", + "tokenOwner": "0x84D3D3064FFb488909E13517D0914941f0F7eB38", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x22C888476818A1C066193De4102025dd0Cb24429", + "tokenOwner": "0x71CEb1640Cdd582F2e7B180A337Cd8a27B841783", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0781662EDAED0dE6535aDb1bAaC0A0C1616e85Ed", + "tokenOwner": "0x78eE1bD9D7900D8D807e04a9E6a9404ccA5bAbf6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x45f2845515669345cffd2751E044ccB25f449af4", + "tokenOwner": "0x80F983B6B5fDD609d8feDf59B38Ac3Db15eB2F48", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x548Ada49775EC5196065400CCac3379763267252", + "tokenOwner": "0x2261F32B23982b31555a97e347Bd7AE9B5a59B02", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x45bCc185c60B8685A6DB97126C8314EC3cF9910A", + "tokenOwner": "0xF2F417Cad03F20206cD715a25676f77d8CC18b02", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x46FB2e51122918970eD034436052B95b206EB3E8", + "tokenOwner": "0x77bcB7B8D4e968F825C318BD1497dD15e92a44D1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5781Af2d96D305A1005B9E31B37ecb53Ff419A81", + "tokenOwner": "0x9DdbD8A857a0a8AdD0f0D2dC79F91CE558aAcAa3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6C52Bb06Dbb3641b80583Be7048501fEd0336c88", + "tokenOwner": "0x3435EAfC0f19Da30Aba2898a9506069475Fee606", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0221e4FFf6864c667b9cD7C7FE851586Cc5F0473", + "tokenOwner": "0x121d0eb48D078a7a5F2e8dB6f91Ad80645c32bae", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf16ab25A41434779cD34A9cff358D607B411763E", + "tokenOwner": "0x84f2Bf7D4C5071958A9492261D714b45f6Be2df6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x92429B388F6D35Db475360B4660198818f575433", + "tokenOwner": "0x4f750503C11563D6e1e6431700B2a40F8Ce9A7a3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x44c0ECd907A25303246988929735Ad21BC6B37F2", + "tokenOwner": "0xB75ec208487142edcA537F0FF140D24764d9F54d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x02d58DA31aD1dca1357710F6Ae7A5B32075aD142", + "tokenOwner": "0x8DD8AAc24Fd5775A882089cd4b0Dd0fd8960e728", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb0246B266b030Ac29d10101f6e8BD5df3A3feAe5", + "tokenOwner": "0x970767e7679D56366B781193D316595b9d155542", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3cAd202dA9a0bA7F0d6De671e0BF7906a5c39bF1", + "tokenOwner": "0x2d832da3DcaD51CbCb6b0B7e7c6b38c35672E720", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD124F076e718DAaf4A5be020E259D19442786005", + "tokenOwner": "0x0A1511cab2a5D1fAdD149585AB2Be18F944Ac12E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x53F974E412bFE1197f5d0A737330bCE79368Aa70", + "tokenOwner": "0xA3edae9a1FEe5CB742404ADD3836E8Eaed3dBbDb", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2045aAf7D6ddBc6A779681b36dD9c0Ce52799275", + "tokenOwner": "0x99b7Cf84a619c4019680cC3CDA09Bd3a60F9169B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x858B40aAb9D1cdC0E20f36579ACe43954F8e6914", + "tokenOwner": "0x7A96A471f2563354a220Cd8D73BFF5B852280aC3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x64d2b39B8aB39413AB3b6E5B52b95C513dd7659e", + "tokenOwner": "0x6ff0B752aADAAA9D9e7f406846354B4d177078B8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4631543b8bBc60Ea790be06415104EC1F3ea7aF1", + "tokenOwner": "0x7C1a9db869B5494abCD418eEbdC3fF4aBe9682f8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x493f53b9Ec31903070A86f0966353e9796d5093b", + "tokenOwner": "0x87d5b669f09BcC12eED6B6d92f1347ecD6e7308a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x54cfC93C496c455cC9cb117a549Dd410eE7FAbE2", + "tokenOwner": "0x08274F10B2f99b7742B3D4cA9cB3Ea630B153f3F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x20eeE4A243025FEb04a1781331d79C4E6757DB2D", + "tokenOwner": "0x95Be53F240A50A14670A1c7771459a3886bA8Fb5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3c3A3C8C2eD776AEd53EF0566586B9C47374A565", + "tokenOwner": "0xEEa8f73d103b0456b75Af45b9f95ddD6f4550E40", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xFF304f6166Aace41a76dE0d5b62417f54EAa602E", + "tokenOwner": "0xd69071ECC01529542A7F34658Aca9FD93E90a4E9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x004eA670c1469866D9ed3550a13F2F70da106223", + "tokenOwner": "0xc2d66BE531249f18054007083A8266862E5ab51b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6a9eb44F8928F82096f9731C187a1DaBcCCa1a68", + "tokenOwner": "0x0A4D143878aF722147Ee59adB4FF3Ffa775316b4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2a81e5FB872A3BFe4CC3e535922db61b57328F5D", + "tokenOwner": "0x115C089ECE22d06552288B3278D7288f85Eb7826", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6fca4429d168c678173A39B158C0C022d3F588cc", + "tokenOwner": "0xb5cad8BE6135556ad341e804287De416d008F8cb", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xFA72469B895054d68637A486e50798c582eDF52E", + "tokenOwner": "0x2efe1C3d98991F3ac9649B1d7b1F1D8b0a70bC64", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3692f5D430e3342c2D339cC1FBccFD47001a0c2c", + "tokenOwner": "0xaF6981d9E918192345D70223b71bA840020D3aFA", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7b4566689616eDbeEb0d4B1F67F0F5Cec115968F", + "tokenOwner": "0x4cE6567704ad487c7801E1caCdc2a3b58dCaF4eC", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe70D077b5F3524b3c56feF313Ec22b23c775C278", + "tokenOwner": "0x929e683a82bf0D1d436203dfc3bAbff34BA9fa27", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x22A45660Fb1255225e6f8CFD481C8437593A34f5", + "tokenOwner": "0x06e52AE51fA0dCE35B4C46c2CC441A94762537E8", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "8890390000000000000000" + }, + { + "address": "0x22A45660Fb1255225e6f8CFD481C8437593A34f5", + "tokenOwner": "0x06e52AE51fA0dCE35B4C46c2CC441A94762537E8", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "8890390000000000000000" + }, + { + "address": "0x22A45660Fb1255225e6f8CFD481C8437593A34f5", + "tokenOwner": "0x06e52AE51fA0dCE35B4C46c2CC441A94762537E8", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "8890390000000000000000" + }, + { + "address": "0xbDD589BF011afDC08157E79E2bA640030E337f2C", + "tokenOwner": "0x2A630E648dB8677B0CFc2fC17Bd93Db5cc604D85", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf0f1cfB5Fad942c6d6942C7A6de62c2c0705712f", + "tokenOwner": "0x8C661B3085777ef1Bd0B4f565C6A581789a5BdE6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8a44959dC4A729d1F5B0d53785F7f9EF5C4A08C5", + "tokenOwner": "0x83A4f43CF62ff85A0EEb19763a3c0F9b9906fa2a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc8d3DfFb81215E75db922D3Fea890613c85540ca", + "tokenOwner": "0x4a982a36855E68082092c4Bf0c846563c2aD22bf", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0e5Da16007E89340059427c92F78F98534B3A05c", + "tokenOwner": "0xD237d5E53B9102CB695f13E31DADeE77936a7b2B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3b204D0B932c0341C9b49825F8E3357F7fD9C7aC", + "tokenOwner": "0x2FD6dC0Ed3E3b7D7439572e1C52D395d248Ddbf1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9C4De717BaF4da139188CDa34117Be32Eb98C089", + "tokenOwner": "0xF033Fdd6bf95F2A1d3A1524266A5C3cEDD295EBD", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA76b56846Fc81CdF549Abd98e2A8620871d6138F", + "tokenOwner": "0xFC758D3b8D17603E1F39e642a93B7D24bdFF96c4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xeF5Bf08420c41917178333E19E4389D80E02b965", + "tokenOwner": "0x0eA807c161F602b414Cf94bF48B8E1A0B68CBF75", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd9810d03e85932C7E0a9529FF867B63Cf197790e", + "tokenOwner": "0xfcB4150c7e53ebdD9bdDa119BEBBBDd489d47936", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x96F64cB169B3DbB61E8da2bE2895BEf6BA5EA9e0", + "tokenOwner": "0x4957689B87C4c989a1DB3e5Ce204fA65bc53E329", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xBf112d1F52D2a0a2ed4c188Fd5154e19EB228f9F", + "tokenOwner": "0x285f2887487a437481Ba95C1a88B89ae5E835780", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5C8bC7dAbcCae7e648976D20270a13914D917112", + "tokenOwner": "0x6F4cBd9a460257fd02676BF72AF0565892c927c7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF768d19f5D59b8c49aF521B357638095B3259c03", + "tokenOwner": "0x4C3B74A506951577949c2eeCA13Df78710a446dE", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd3f833118F32E4FB02bBD67596C5ec2f2C998A31", + "tokenOwner": "0x4b365e566d331D2e6b5dFa8C2ee9cD25B14cC2af", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb136Fe3129547A37E483B240a963Fe8cD745c03e", + "tokenOwner": "0x47B9f36E29Eb682DEe3D1aedc126CaEdFEB1F726", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8C71709262F92F2cAF4Ae086f0F44fD31355c4e9", + "tokenOwner": "0x7b2b6F10F8eE0B1509aD9A249DFcA75a4F98A588", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8519A3dE8D1E1e8D4541341bfC72aA7566662f48", + "tokenOwner": "0x8c461D9e1b54cBa03928A720c9AA0Af3F7d30F60", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc9C77835fd1b4934A53F72efc1d62fEE555aDdda", + "tokenOwner": "0x35ec0052BD4FeC8D54e30d1B7071639D7B1d9Ee1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x91f1bCa65cE6d9bf9B75aa1bF35e17891717F2B2", + "tokenOwner": "0x361839F470C7989E2ADbFEBC1C5c0A6b8987A161", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x51089aaE3674bd4115ce6A41f4D884AC8b028A23", + "tokenOwner": "0x70dc8aC25adbfa6DD88B7e55D455fEb427CC7FF7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x146be2Acc154Ac85c6FCdB5A48288F2E851fe510", + "tokenOwner": "0x9ad6D3a90039A5077aEB855968AbB307b1778C61", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0A4e0991ad5e55F470b33cb0C62567061e5A130E", + "tokenOwner": "0xC538b30EB494AFc1a03b428aB103c127ebFb6fA0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf34C977A9FBa4EcebB769aF0C7CD650eba6eB92f", + "tokenOwner": "0xE9366af429Bd0b2bcCd17d87069490E6407F486C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe49B9AdEDCd76ff05007eccddb33CBafd076b95b", + "tokenOwner": "0xDd498d894f940B8Ca1FbB03b626f80f887efeCC5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xCE45d73a9aB3813698125B6B9BeE4cffa794F330", + "tokenOwner": "0x092BD2396aeE0656d1576FccCa0b8e7862EA8ED2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9391359300eBa0265e18265EF21B64857eeE9e04", + "tokenOwner": "0xB277aAD8CB9237Db99F45131EE20F74f5010deC0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0182Afee177D23CBE1ae188938dDeA87645dC40e", + "tokenOwner": "0x9dD4B6b628D018E71772C7f4514F923C6755F0cA", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0bA9D2A65971669f75f967E2dd355Ab121aE887C", + "tokenOwner": "0xBA863DFc55310421B55911aDFBb7f404c9b122CE", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x006C26d04AAE91Bf95A1d542FB18619dED848a06", + "tokenOwner": "0x30577d2218fF5C06acE18552ee90c62531eE510E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4a17B1e803C75887d326FfFE08CE6AbDe0690eA4", + "tokenOwner": "0x4E777B0C16C14fB27b9B7C2FF7E6DbED99E3e452", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1344b8D89a7BF48A872C247AF1CF66038Ac008A5", + "tokenOwner": "0x47F82e79dD65D550A6C0241ad6319777523dac7B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe2Ad7A1f1b988823103a50ecefbd17179640b4A5", + "tokenOwner": "0x93556E65F718De995156b2B941BDAC260c54925F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6bf6F7a3e7674611550832135F699c0ef4439106", + "tokenOwner": "0x05Eb879D884F3064829Fe55acA452DF64a60553a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4C7Dd45EcB24cA7a56C641441249Eb9732249F77", + "tokenOwner": "0xD81c97d8118110DF12115CBc811DA149015e144b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3522E7556D7b47a0CDab63316428dD0790a740D5", + "tokenOwner": "0x9C435e01CBDd650Cd2f7e7431635973C0860486b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xDB5D3aC5b7691788895356016374b658B8c94983", + "tokenOwner": "0x327DA39Fb6f5D045d2E0e30A0ed6b618b02c930F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x45c7e9A5fC54D98F620a2743D96C80b8f29DEd20", + "tokenOwner": "0xADfFd158d9b4345570e345DE192296A0878c471b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF8eA7D860D6570a1f03574eF98818311bBfaB7db", + "tokenOwner": "0x4485FFF2b64D378E95Aa80e6C066b27C2de43efa", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb80b4B8D427FD22C70eA6F28a4d326e571675043", + "tokenOwner": "0x2536b5FB21763e86bfCb736Bf6f686033D09DC98", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD1f3e9F1065400E5D37C26D078ADf7371DF3b244", + "tokenOwner": "0x6dF81103f4ffb63aFaCB9a63c07560f3343928a2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4928C9ab3dc4DFfC39f735c763251AB61A9B7fEf", + "tokenOwner": "0x20492E2DCaB6E45C80eC1A35388D8Df02FCB9aC9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x840c094B22dB7531864879E5E36ddDbeb8ef4D0B", + "tokenOwner": "0xE310f1F0910BB83A1aA63315977D472E4d1fAF7A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD9d26790aB48cBc648e03203C041d49e28a829b2", + "tokenOwner": "0x105E96daB0e1288015ed5d56F54D44053F1F82D8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xDc0727a7A2bF76cF638D32F8BeB3e0bEA0AdA851", + "tokenOwner": "0x452bc5F00821407f1a8576F655acc52edCF18b47", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xEE47fCF2E49Bd57512d0825Ae0dc17410D3250d1", + "tokenOwner": "0x01190DA45dE5151e69D906bE9CB2BdE4d486caF8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe04b0eE5D91C3741234d939B18b1DE3f62d649d1", + "tokenOwner": "0x849895ff2176b452FFA883B5786f4637298Fd48D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8f55d3d27AC279eB87aD1Eec5AC352A5df0BCdb2", + "tokenOwner": "0xbc1d18Ab61d8cCeA295db71dA417c315Db9031dB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x77e14cC25e8b04805Bfb7Da4864e90F56c8d171f", + "tokenOwner": "0xBef792538FFB76eF120C21991D622fFC05626EDa", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf679C6800afDeAA3418e86a08696aE5E689f993B", + "tokenOwner": "0xDBd35E8484A8986Cb0DBd9E77eA981a811c3cbf9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7cf1a1bB4602dFb9831862e87E9f07E71a1D49FC", + "tokenOwner": "0xB3BA7Df8E14584Deca3C0F735effBEfB9F818601", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xEf1d940840f684aC1743268536593BC06C8f0241", + "tokenOwner": "0xC3C059Ff3DA4d6a84695175d7Ae8214Bf2337056", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xFF6e5f3cde86Aa8b994d2F07303d8A39fCF48F0f", + "tokenOwner": "0xB448A50f5e403f3933D5505E25402673947438fF", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0D919279cBcDad55523c05D63C6C5CF4A4674DBd", + "tokenOwner": "0xcA2Ec3be37f55Bf329b792C6Ed3eE415E358DA4d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x143A6F5AC399f390591b7B01EB1D1C21c179b317", + "tokenOwner": "0x42C600DC13D0C89F1D0fe3B8a319A02B70fC1778", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x824F4074CB5E07078684936BBF4613CF5D725734", + "tokenOwner": "0x6162aafe77b2B0118F711384D95eabc08925116b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2c4526268b3643A3d15E6f515b9B564bA64185f4", + "tokenOwner": "0xa942ffa249673f827609A3B5491867c87e5674b2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8b2f53604fC1eba68De515A3f240fa7968ca1f84", + "tokenOwner": "0x1781d0E29Be1992234A9CA7F7E126A951714eD57", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xAa90E46D3f72a2c0B8F5F5c9F441Ab1f41e18c1B", + "tokenOwner": "0x88008a1F688745e7741b966C5D86e58c1F45E3C9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x41b6408Dde9438b691a801dbc903Fc3B79eac823", + "tokenOwner": "0x567DCF167e71B23988F7D6A9949c99bB9d7403Da", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1383e29F8362Ed65a9Da3395750aDA2A702aCf08", + "tokenOwner": "0xDF3dfBa19Ff20642518bEFDfB324f83b2240918b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb6293811b77f023FDC7A68a1eF33a9768B320f16", + "tokenOwner": "0x144c4b19dDD129D49a219D4037cb28B6b0adc9e2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3830230B2E43921DeC9624004d2bE90ea7123855", + "tokenOwner": "0x6d1f3CCf4dF0ac5B255023CF4Dc00b478293dd2C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xaa195aD41437A6D797ca50Cf3e393e46136E751E", + "tokenOwner": "0xd0dAc9b285dD9E61Af23Db286D698b3371c63266", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1B39563e6d53575382Cd45C05Be24E5d7dfd989c", + "tokenOwner": "0x81fa1395a1C92A1E9BC6b7AFB66FB046F400489B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xca31CD6f15177d7AA2a80e55c090f023ffE75D1a", + "tokenOwner": "0x0Cd54b6913B51ce2e962Fd32F45217fAF58F6135", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe7B0368997FDd36Aca69fCa751D18D148fF48779", + "tokenOwner": "0x47B16A54d806b7Ea29D5e7638C39B96733aE58A0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5f0FDDc15ae93084D8741A92e8B487A6ea44c096", + "tokenOwner": "0x0Ef62F84a878912d22C74Bc55d93f7C26e484114", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "401410000000000000000" + }, + { + "address": "0xa9FB3552965A1C7A217d288e4B8D655AeED38119", + "tokenOwner": "0x602bD41e0C2d5763007064506f74fE1859020939", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "55420000000000000000" + }, + { + "address": "0xa9FB3552965A1C7A217d288e4B8D655AeED38119", + "tokenOwner": "0x602bD41e0C2d5763007064506f74fE1859020939", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "55420000000000000000" + }, + { + "address": "0xeAEeEF24B70DF14717B9Fdb75016dd43D098D3D6", + "tokenOwner": "0xa861989e618D911b4f090aF3cc1F1E56Ab08D210", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1053060000000000000000" + }, + { + "address": "0x9d74C180BF7c7FBF996B314D9c01BBbd2f22738f", + "tokenOwner": "0xB3BA7Df8E14584Deca3C0F735effBEfB9F818601", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "13580000000000000000" + }, + { + "address": "0x8205cbD6CeC4F2c05E4E36322293AE23dFFc34Ca", + "tokenOwner": "0x3F4F13776E6F56BD092C721E7De2F15d535B19FE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "32750000000000000000" + }, + { + "address": "0x6F0E31c7A3289E61DA131e3DD16669d7Fc6C6C9f", + "tokenOwner": "0x313eA354212C5E4f763AdaD0D7f70172a3f8110C", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "50380000000000000000" + }, + { + "address": "0x12484998B04Ddc5f06db5646B4B5571DD796E9dC", + "tokenOwner": "0xBa986c82A78db4Cc36D05fd99836C795bece1663", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "50380000000000000000" + }, + { + "address": "0x2CE973A1DDC7612F3f7aEcF6876D28fdBd9b7E08", + "tokenOwner": "0x3BFA3222b46318361649A3f35F624A6fe6C46571", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "66500000000000000000" + }, + { + "address": "0xf197B5A9B7A31E68dB1b3BA44D1Bd978382d5CAD", + "tokenOwner": "0x0090dcb43bA4Ca7536c6a16552F8D7a6411F8EA1", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "75470000000000000000" + }, + { + "address": "0xF7d5a5f91Ba01984151f3C1d3cD2088e0d0b299e", + "tokenOwner": "0x55Ed66E5E8371C66bc710A4feE4e8e7Bf2d825fd", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "201510000000000000000" + }, + { + "address": "0xC9FB6f144A5466d423287217bDcB92B7Ba73979D", + "tokenOwner": "0xC2b4Edb2De0e549d2df1098b8119B486d5A0A8cb", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "75570000000000000000" + }, + { + "address": "0xF68E6eD84443EB0405E05EBB5038d70922BDbf72", + "tokenOwner": "0x3E7821266E1b3fC1228403f9F43DEba7dAedF66A", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "75570000000000000000" + }, + { + "address": "0x393A85cCFb3a144cc18947fEfF782BB4CBd1B806", + "tokenOwner": "0x9Aa8F928011EAE7E5466b75111175518dF94348d", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "92360000000000000000" + }, + { + "address": "0xb349bf0C52E21638468b3b52f5a8D604dd5104E4", + "tokenOwner": "0xD86D0c3a5D84e7b6322D5D37571B47E219691e97", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "105790000000000000000" + }, + { + "address": "0xa89844A719D829ed55EcF50d3bE9dad8363F2f6f", + "tokenOwner": "0x7aF2A27665D5bBc5352342FCAF072A6f4a4011D2", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "119400000000000000000" + }, + { + "address": "0x7C3fBCde62A2148A011534a39F05898307Be09Fe", + "tokenOwner": "0x367580BEc03c001D76C51591C7d79914c4cc0e7D", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "152190000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "181360000000000000000" + }, + { + "address": "0x825D8b44720378E3b20307035167C7a110cEb7aD", + "tokenOwner": "0x6f88d77261FF9651B4536B0c5EC7bAcb9130d4c3", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "184730000000000000000" + }, + { + "address": "0xa9525E051e19BcBC884E0600ab3d5454d6ea1aB9", + "tokenOwner": "0x673B37941AB527E0eeE13C1fF09298Ef1911D7D6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "193450000000000000000" + }, + { + "address": "0xae9bA62c9c71f37498B07Dd7793a6b9576F113Ae", + "tokenOwner": "0x589079F57c6aD630bbcDbd93B9933FA0De2be34a", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "223680000000000000000" + }, + { + "address": "0x9c35a4630Cd69339F5c69fDFEEe2BC78Fc141A3A", + "tokenOwner": "0x97A56129A3E6b0c2ce256dbe3F70831661a4e1bc", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "235060000000000000000" + }, + { + "address": "0x83596320cc226dF2d5D7160de7B7d1264bF52626", + "tokenOwner": "0x0C149119166d186299A8894a596106743f280B22", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "238790000000000000000" + }, + { + "address": "0xeA7fc34e11D77289a88ff02fA7AA3C51BDcDEfDA", + "tokenOwner": "0x36aedDBD87b092E01Ea5327eFBb619187F9A9c13", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "554160000000000000000" + }, + { + "address": "0x5B6f2B4b204bAc885442b072cd1203429eB62C5e", + "tokenOwner": "0x36cd8971bE8B72fb408EF4E7fA84C0c62cC15E9F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "554160000000000000000" + }, + { + "address": "0x5B6f2B4b204bAc885442b072cd1203429eB62C5e", + "tokenOwner": "0x36cd8971bE8B72fb408EF4E7fA84C0c62cC15E9F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "554160000000000000000" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "609830000000000000000" + }, + { + "address": "0x1F728a834c6D2E448a39168c2fc7b1520606d5D2", + "tokenOwner": "0xd87beb25391Fdf4de6538b9bAc237E00050D958e", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1511340000000000000000" + }, + { + "address": "0x5f0FDDc15ae93084D8741A92e8B487A6ea44c096", + "tokenOwner": "0x0Ef62F84a878912d22C74Bc55d93f7C26e484114", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "401410000000000000000" + }, + { + "address": "0xeAEeEF24B70DF14717B9Fdb75016dd43D098D3D6", + "tokenOwner": "0xa861989e618D911b4f090aF3cc1F1E56Ab08D210", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1053060000000000000000" + }, + { + "address": "0x9d74C180BF7c7FBF996B314D9c01BBbd2f22738f", + "tokenOwner": "0xB3BA7Df8E14584Deca3C0F735effBEfB9F818601", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "13580000000000000000" + }, + { + "address": "0x8205cbD6CeC4F2c05E4E36322293AE23dFFc34Ca", + "tokenOwner": "0x3F4F13776E6F56BD092C721E7De2F15d535B19FE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "32750000000000000000" + }, + { + "address": "0x6F0E31c7A3289E61DA131e3DD16669d7Fc6C6C9f", + "tokenOwner": "0x313eA354212C5E4f763AdaD0D7f70172a3f8110C", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "50380000000000000000" + }, + { + "address": "0x2CE973A1DDC7612F3f7aEcF6876D28fdBd9b7E08", + "tokenOwner": "0x3BFA3222b46318361649A3f35F624A6fe6C46571", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "66500000000000000000" + }, + { + "address": "0xC9FB6f144A5466d423287217bDcB92B7Ba73979D", + "tokenOwner": "0xC2b4Edb2De0e549d2df1098b8119B486d5A0A8cb", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "75570000000000000000" + }, + { + "address": "0xF68E6eD84443EB0405E05EBB5038d70922BDbf72", + "tokenOwner": "0x3E7821266E1b3fC1228403f9F43DEba7dAedF66A", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "75570000000000000000" + }, + { + "address": "0x9d74C180BF7c7FBF996B314D9c01BBbd2f22738f", + "tokenOwner": "0xB3BA7Df8E14584Deca3C0F735effBEfB9F818601", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "13580000000000000000" + }, + { + "address": "0x0731E6AE66765aA62A8eDBf26Df781f309234F6E", + "tokenOwner": "0xf5BE935b4E37e51F2E2C8E7789e655224258b5e1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x394b6AD758767db9971321f18348a540d3c0a4E2", + "tokenOwner": "0x8C6109082b980fde80684707cFaAC697Fa10c861", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA663f24461cB4116db20b5F20c8E51E1d2299DEf", + "tokenOwner": "0xe14DD4871E1666B288498d1fd295D7A49f61dCeD", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x534b176f3c2042579DC8ce7E77DC1826EeB2d753", + "tokenOwner": "0x4435b94720BF6857c650A9E753975aA8B1613DbB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0f7FE297b9B69BB06C60b654062B47DeaF8765bd", + "tokenOwner": "0x543D0F98C159253E9Cb30249d4508826F9a5Af7E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD7E6c00E9D208A112086103D744B843e63bB348a", + "tokenOwner": "0x1902eAe41421FD761D9f2fA6F7e5D15EdA894aBF", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD69EE9612abAabDBdFAd5da5b1f0e26a72beb39D", + "tokenOwner": "0x547EDDA4b92226df9837bF20C0BF7f7628c19c3e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3e34Ede7B23C7fFA7CCf5bad635Ed0293872DEEb", + "tokenOwner": "0xBf7271798AE210eBDD6D26a7D2e944592E7c7e1b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD80D44ecf0E8Cea945CC152d6AeD9260D3019dc6", + "tokenOwner": "0xdDbe4461a8E9207A50d53c53d40d96f8396cB144", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x59d3791930D539A3F8D00868EE33f05c64A01302", + "tokenOwner": "0x81dFD4e4eF0A1b5c28a8c4DB76fBA3c3d21e1761", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xaCcCBf50C138a38B6384d5034fB7dF785505c12E", + "tokenOwner": "0xC52e1488e6d13f398C530E0A52A24AC0f5f3D47b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x44F09b5Af0d69E4dc7ee9d260679fEA6A904Ff1D", + "tokenOwner": "0xD201A25f91f75efADBE669D4a1a2875dA386c89a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xde26dcD7c941a2F1503667245aaC51bfEa1FA4A2", + "tokenOwner": "0x671785E5326748dDe318b3D57051A1a78b35181C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xcfA5E083Ec5D385f10a35403DA4B3241fC0d0DF6", + "tokenOwner": "0xFE66c441Bc4c0CE4788FCd050c50C16e65a8555a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE06bf05C8ed00592730d41Ffd97Dcb0ED68F3039", + "tokenOwner": "0xeAeC796ABA9c3CFA9452C6ef570E316BF32D6369", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6F1527FF4f3E9e48b33F7B1e30b8025912A5Ce4f", + "tokenOwner": "0xfDFA050f19028C93C54bB75CB44cF3E45E3F411E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x99B1Bf82e49bd7a37FB38ae79253aAD2eA89EBeE", + "tokenOwner": "0xaBE2F0ce8bBB6cf8034dEC327b5B8f8514Ff1111", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xaE3b22c92DBD0d1e743e06D49FF15084Bf6b3af7", + "tokenOwner": "0xBba9FE2F664Ac631f4eeDBA1d6D7094fe7759351", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB0A1615EF3682d19016B31EB12566CdB5c428fFE", + "tokenOwner": "0x283C74394c64Dea1979DAABe0753DFe4BF203489", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc23Fda4d41BDc99B907033DA4aBA9318e88de24B", + "tokenOwner": "0xCF840766bB4ba127417d6ee65c37470399B41258", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD8C93fA24A3aECb58B98fbFFB24c84C89C409b29", + "tokenOwner": "0x4686d3C8bF73e9dBfA49523f8DaEa008FE1726c0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0CBe42c4C44D5E4D8fdC275C06462f2AeEA89113", + "tokenOwner": "0xd0ade14445994777360B35178060369F7d832dBd", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x58E8d8D9268d48A8B0eA63F935B73475D0ebA9f5", + "tokenOwner": "0x1e2E3887825583C6Ba1D5a4ff0283Ba8C6ee6e11", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xbea1fE6f1F8843b6b092Ba759424681184bEa59b", + "tokenOwner": "0x398bcfd402c09A73C4DF151375f482822f34933d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5078183492179F07B296C9a2A0446eE48A728fE6", + "tokenOwner": "0x30ED5773E9c1023A266483D7860a2B19fA4c736C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x061Cd02e1A98f9AD7436677a2b4917Ad0Ff4815b", + "tokenOwner": "0x40A9A2153fEeEFfb8bD62A27CF4fF21B193F4460", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4B5650FcF97F8Bb20b39F595442c8b85A7E7dAF9", + "tokenOwner": "0x3B329c399d9e4A0d0251411381eBb630A26D86F1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0b3443602556D80e066aE68cbC65c062B6f25433", + "tokenOwner": "0xcF5Cc35f3aB3820c8c9FaB052F21854e068AE842", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x96B4617E7BAA2d5572C8f8c970A6f42973F447B0", + "tokenOwner": "0xfD2224862E7f6d1fFB154a811be685bb6c57122D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1B0a220634611CF848d5474C0e8AB62a85cCdd7C", + "tokenOwner": "0x65bc1F0FFB1345DbA84C1903CD2B01534EF1e70b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x400aa8064eb6c31096164d7a34E714D5201b06Fd", + "tokenOwner": "0x7D33f1A1CFD8Fbf39cE8eaC255A4EE30bA03F8F3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF041EF8cFB9A10eAe805Be65D6da1F692a0fD253", + "tokenOwner": "0x48f56d0574ad5B10A39b13aCBB26f8b19da402fF", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8bBa1A58A09BDBa6452CD2beef41cA1D08158209", + "tokenOwner": "0x273597EBC8E7F6e3d843EE6496781a8fCf068363", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5A96419564D7ed4e17CD8eF77895ec9C42DF6C03", + "tokenOwner": "0x0d1dE3b8590B8b622f784d1251A1597293cF6802", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7Caf5DAFc09FE16D2A6d593698BB33a792bF412e", + "tokenOwner": "0xEB14D9d09F97C828155c8168c8D490f457b61984", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x85B95010558048ED64123e88A6Ecc4DBa512e823", + "tokenOwner": "0x54C80D2c49D33c94f4e06f0Bb1F4E33047278cc9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x548044904d6ca4783E0e6Ed90b5FDBED168941AD", + "tokenOwner": "0x48a8c837A6156920AE0BbA872fA8E8E38a97d48D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6BfE2cD51BFA9858153EA9F8c1843adE648d7845", + "tokenOwner": "0xbC8e3f9109A08B4D114c358d1D9959d8aA4d6368", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x51d7DFda5696aaafa03b9d6b9Ce60A20f8B28158", + "tokenOwner": "0xcfEBF91a245e8304Ab9856C927456550C3c75B2D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa6C7D1B34E3EC8d2F79f9497d2bfDCDD6a55707d", + "tokenOwner": "0x322E809e6Ca7599df0e6F8DfbdFEea40961eE3Ca", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9dbac3202a2024dfcC2D232168fED0afa0D5E4E8", + "tokenOwner": "0x86cCF8F139FEfFa849cf2796eB8aDf517Da17d87", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7Af525b505866e63351Bb9389cE39a5B99c0be4A", + "tokenOwner": "0x83169052ea29ca4284FfE8210F827161397308b6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd4912861A4EedAe65a0D042bCEB3B4b572820BDE", + "tokenOwner": "0x08526647A572161f349E37AAF168bF0637e32D48", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF43A2bBc6963B715B03522CDB5351f2f7579081b", + "tokenOwner": "0x3740E8382a2472ca85b4fa84261D58C79858F8Da", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA0D92A701b4952b452F77976aD1deEE6f97b63aA", + "tokenOwner": "0xAfbc2e4A229fdEbEbcf50A374a3D1F97862daEFd", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x120EE6902d736e47e99E32ce04A18b6944138679", + "tokenOwner": "0x224Aef65F6BcAe526EFeA1Ed7d367823104EF97B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB1399674389ED7b2f4dAdf1465A47a71340A2b00", + "tokenOwner": "0x9029091B1F2f91Bb5D011c5Aef9C7c728d0c6ab9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xAde06B4687EB1c4fe44EF20E3A249CDcED0F877b", + "tokenOwner": "0x2Dc40dF00f078F4DcB15000DFf81492A967f8BF9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa6152d296BA5C3833D7d75880e79b13a5a373Ec2", + "tokenOwner": "0x30d7E6fd0a5c84812925B4817ccdF7bcD3154515", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB8dD115a61E2B1a5d90F14B033367857f534e891", + "tokenOwner": "0x2501D3c953DD61C7F476b2C449262924AF378263", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x11e884b751C502CdB3969C209da426cC10BDc26F", + "tokenOwner": "0x8cCAf951C46899Aa11E96435261C271c3E5Ba963", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xBe6f987D24faC1EC675ae2197746a331BDD8F8c2", + "tokenOwner": "0x78424e61555E73579ad218C1955583457deb1F8F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfEFf61146da4eB53ca5ca25357bB163E3264cFD5", + "tokenOwner": "0xe32e501585BFe2BdF480a227bb4eEF1b0ae7D484", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0488318883c6E24f8195A79A969FEF88249a35E3", + "tokenOwner": "0x5f334d8f4cF61F2a6D2112AeD2aDdfbf7375D6CD", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd53065f833CDE89878aAafeF161e82F19e7c2519", + "tokenOwner": "0x682fCe8AB0466104ABBFC426a0Dd500fc885E4f9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3a63b728f6B2D4fB8Ca674Bea715fA7AAed185Ae", + "tokenOwner": "0x1D2655961B3354921Ce42a02f138D2996E27BF04", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd603Cfb29eebB1510d08Decfde4e103D6f0108F1", + "tokenOwner": "0xadaeB54143Db403D4D799ffB5FDE6C5C98d0C7fd", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xFB5B5a6E7c698f63F32b89785eCD2285422B054e", + "tokenOwner": "0xd4C50Abcd3272DE1AAdce1598d4DD828F929e9C1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xeE30648A03151d619E970fc78a0e196679e793da", + "tokenOwner": "0xa0F939965e18E969ddabaB056E81DaE2E2e7Df4d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8dbb36788327427320b18B7c0CE0eE248AD4bBE3", + "tokenOwner": "0x91c97C249Ce01aADE57D1b7FF376676746eE0162", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF9b54C540bb33D34D2c9BCe586726164051Cc2a4", + "tokenOwner": "0xe06530B7aA6433D002Bf5058A0B222Aa3eeB490E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9748D79c834CeF4332eA2A1DF0327FB71c942055", + "tokenOwner": "0x0DFe9D147a2aE92fA7aA561e485f0D91F13ad301", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x25D014ec6f6E5a6abea474bADa5C10693F31D204", + "tokenOwner": "0x5937dBC6155894C7Eef2F4A6Aa0a84C90ea4aA8D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x635b93101d5dada9A0DFCbb0940889E629BA9bfD", + "tokenOwner": "0x280d117F4a574f63B361B2DC2B7bcb4FBd81bC0e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7A99591dbb3B1d0D4a945C353eB17B12Fa9804cB", + "tokenOwner": "0xDcdC0CB7Ef974547C1d9A4C6Cd259F1d1f4d6B56", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB600afB4989367A8263c67F7a766d0A56FCdBf0a", + "tokenOwner": "0x7DC1a1f4f4b631CD3201b3298cD261c55B54397A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc5848a984A8933B72acc3c79838E7D95C7b1cDC7", + "tokenOwner": "0x6af6496b95a9D633B524A6867107E8052DB1cbb4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xeEDF7d4deC3d2DeE838C17C5e3986B6C2DE068c8", + "tokenOwner": "0x0Be4600980ef3b153B74ee2E0837a5d5298541BD", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE2DD4eF3292AD26DA80480971a762245Ef55eA7c", + "tokenOwner": "0xC0eFFb24295953E7D4d3c8713054142542235807", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5A33D88E92fdc170F177AA140247D2e89913e69f", + "tokenOwner": "0x8D08913935063D5dD6058856FBf96C537A5C51B4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x818E3C511ae9ADb127d1A4f2C0823FDAC4Ae66cE", + "tokenOwner": "0x2789bAaFeaf46cfb199f0742052471a5697a2589", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa2C4EEC8AD3BdDFB468Cf8C1AfBAB76A836b5a6B", + "tokenOwner": "0x57F62D73E8109A70fa1f9439cA0D9dC0c1eB1E59", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6180eb2482FeEFf6954758cA3f9E92DBa5d3eb9d", + "tokenOwner": "0xa9E0442E4BB0d4a96591993f21d35F4771C43535", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x226bbB26Dcdf7D8f5073716DdEa169Fa18186c2F", + "tokenOwner": "0x3C9EBC5967b4120F7459eA2f90035E4273E4e6EA", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc1186d858d96F176C306E49a2A0d881c51bbAdA5", + "tokenOwner": "0x4De9233E42FFea8Ab364F482c25224135d0A7012", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x52Bf048AC64900cd4410D99391e6f479f07Be512", + "tokenOwner": "0x566F4D42a76CCA3544c5C46e7a159e7d66e90873", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x669527b68c4e696aECb6A832Dbaf337ef7319C0f", + "tokenOwner": "0xCc0e69E2d8E7B88165281bD2736770E1F4e2A52D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4AD90a14bAaC71DF50ED8FAc1780eBEb6dF89c92", + "tokenOwner": "0x6b671003646A334165be92e07dF8eF63c274F527", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x83Fe74Dd76D5dd511801399B02d38821dfa4e8E1", + "tokenOwner": "0xD0d66Dc3e5e02a7Bf9832ed17adf082785be199C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3073051C2EEC9098bfB7eaE824b4b883Ba715157", + "tokenOwner": "0x03769AD220ceE843D6d2f07f961a5EF78239450A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2aa6190BC9A48c2706EDdb61681d34E52F07c35c", + "tokenOwner": "0x520A16E146715263460facb1bFb7015Ea90B1C59", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7624be626aCD809902303f595Bd2bcb83F7005Dc", + "tokenOwner": "0x1ac17A302E4DcD39eF3B6d3fF57c1fCEbE70703D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5B9c4fF8398880D8ea5E858E9E25560E5cfe9A1F", + "tokenOwner": "0xa09141C781537f14725c6Ce6B025604E7C2a7d5c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6BB7b53E2e6f994BC8248B230e4C625C6bEb3594", + "tokenOwner": "0x7990E171b4030305219b527c4782b2a808df5b44", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x540113DAbf3635902FdF1AB032D0427da9094882", + "tokenOwner": "0x1C5d6c457931feaB76138c100eE53228047baCe5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xcBc32cc3DD9C989daf39f882fCd4962E42328705", + "tokenOwner": "0x4EaC14ff9e35560cdC8fb9347726A01b39C43afF", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf027e656B74db85d95cabb08Ed6c10DBCBB6D68a", + "tokenOwner": "0x7e61c82F32EfA3c8C51E13D07CBdb94F671787ca", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2B200d35014E57DB88CE6A36e9671B89b87c15D9", + "tokenOwner": "0x5f7c5220C0bf8889838897F2902D25e6d3B0FcbD", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8521b81536B8C1C5D682EF31C126429A4a7CAA90", + "tokenOwner": "0x00C92c1D3005995D452c9b513a52d430397AC020", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x922E1Cf6d1F5b19629b65340DEaf0A0094b05656", + "tokenOwner": "0xAC4BA08898213273B62045d4031F1273E33F4163", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x99539A6E3c58c7b8155e8fa20f049Caa3c3a4fe8", + "tokenOwner": "0xa21F4712c1c48021585A7543D9466557f09B0b70", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x71cb8fc7Ed78B9427A19a1F2f6bD5606B4B18730", + "tokenOwner": "0x4B397Cd9c3bF69211ED91D7C0D065fD68A42D263", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF214ef23217A73b5b8e6Fc16874C2E91719869Ba", + "tokenOwner": "0x7f5E9000671df672E53210Ca4D820EccFDc2df8d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x362728D17E46D058B2b6787DAFB1923Fc89a7ec5", + "tokenOwner": "0xd5ac511e5F4fE76CcA10ee4d9562D15A24E0D6E0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x20DA5f31408902623b4c79a65f0Ea13bA5F85D1c", + "tokenOwner": "0xDBFC1243Be6B918A1AC2150353dc480Ec514537C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB6B1964D03d1cFD31544D04cdbA13887C56B7D3a", + "tokenOwner": "0x8cdC1B4B514B70506D8001F97A8f88ACf797624C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x605b86ff93839f33A78f3a2ec7Fe7eAB584AB6EB", + "tokenOwner": "0xC52557D5C3801b5ACb37a05EC179E120f03314F7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x45D001120173235450776B5AA77f61d3fcfC2607", + "tokenOwner": "0x07130245B94f7F3989fccE48d32c9FA219dE1fE7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x93Db3ce6eFa759A4A7098E3c4ee7F57Ce500798b", + "tokenOwner": "0xd1A81ceb7792297B6F2D15bA863633105B4C9318", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3ebE53d2571168e0F2A4487a04d2d1238Fbe9D72", + "tokenOwner": "0x3b27053248Fe65e17f7e905a11C7a9Fe965aE6d2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4Df878eA70d496C0Afb1b620489809aC35aad74D", + "tokenOwner": "0x64e60345Df08CC7C65C08c1a4efA61aC2be2444C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x54e51c735f6287BD944995e5e8B03a2dEDfC2747", + "tokenOwner": "0x1A5654FC8C0b04C197b60B97eC25bAADbED2353A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x88A9072a3Fb4E18298a8c8436924B101Bf0348EE", + "tokenOwner": "0x1a8D87fc8A513d353038DE7083bD1243d5379712", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x56d53639aa93f40468321E97a581Ca64f9D8Be82", + "tokenOwner": "0x120784d6b4be27dfB90bF3AFd39DB3cd27652d4a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3e11798966e599De7956a19998c1614DCD9a7fa7", + "tokenOwner": "0xb87F1E64e409EDCC1a08189522c91161De19FaC0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5622337F36f81C5c3d2e3CDD733D960612FB3b6a", + "tokenOwner": "0x374f0dCBbd19Bf8f1f57CB362bBaC95FcACf44E9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7A4E06c9F14D22C37750678532A964075392138f", + "tokenOwner": "0x64d867D6c8c21d56Bb7eaC473E2c0d524C16c836", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc0d6dab036f45c0020E7c9A21A40AB5C9624d80d", + "tokenOwner": "0x5FBD3be83604d75ADDEcb7F4ADBD9dF1B0dAdc21", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA7444189b1613B0D1Db3e1eb5062612Aa356E8e1", + "tokenOwner": "0xC53c7031DbAC27036e990BAE591f34668850C8f4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0b039cD328b7a3c8443C8921CA6397301dbcA1af", + "tokenOwner": "0x56f593F415A91dCE3E334740e0C2060e43240863", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6E8F84098C38428F8308E9B6F74625781aad0E1d", + "tokenOwner": "0x2dc51cF4B41Db2418E9Bd60b73C41d7c085e5101", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA8463B5baD83756dBD1B4274ab0739d91E5C13b0", + "tokenOwner": "0x3630aA80E32e0e549D95006a1d046C90F8746D77", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x18f05Bb2de63cFF66004C630D952B2cD50639066", + "tokenOwner": "0x35C48A1db6a02e642200fAB8E3c7937cED2A7402", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xda3F4B03aE5b76D7B179dd58beB7c05A5B3C8375", + "tokenOwner": "0x66158fa685FE12Dc2c4cA1900AebAd50191CCFE6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa13be5A8b43966511c65E24aC31D1E9f09629616", + "tokenOwner": "0xDB8daC9df2dc8943D1bD0FAE304b1983C66FFcB5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5999BC6C2973D9F64D07D8fc33dFC86Aa6e04720", + "tokenOwner": "0x405a7A467eE9304b56E13a6fAe7BDAEd2B4e18eb", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xbe25223Ca31A2B13435dCF97D082DBff90B772cC", + "tokenOwner": "0x89F3BAFf67636C6bB88C269b30da77d0bd162762", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x263f7Ed58cf2115973C959fC60069864DDaC6a62", + "tokenOwner": "0x80D498891e31959F999B28f094E2BdD1a7De7004", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3b1BbA7E2bdF35c82646F0135D4D07875Ab6867f", + "tokenOwner": "0x7B20f3306291C8ea0987A26a2BA799C9eA3eaf6c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x26fC36F140cc9Db0a88f885359FC5f1B08d331fA", + "tokenOwner": "0xF7b6E6ef3ddd6F0AE0286261Da14569a0004259F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x86ef80e86b38f047E567883e9bBE408f078BaC63", + "tokenOwner": "0x887A0f4586e435Bc8b5260c04E8Df4F4c8501c55", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xaa7A8D922B062508D7E5a6Bc4AD827bb9079Bf11", + "tokenOwner": "0xc2d9c0E9509Fc5c5f55655ff849c987341eC1bE2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x74f44994651fc100bA70A7548a2247A4d841Ccab", + "tokenOwner": "0x8c78d3B9942470640C8b106bD1C510E2D554e9b2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfC3Bb1dE8B9ef1eE05C0b48408b6CA82364C5C18", + "tokenOwner": "0xD568F88CF36524436727a100728501e2b606aCE1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x06010771B4e3aa25Fcb178991e8ab3255460a658", + "tokenOwner": "0xC099558BAF256A7A5328C3f2F149CF9C47cF5Fc0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd4636E5c2A67A55fFA1625B95963c4A63a8d8931", + "tokenOwner": "0x9AE828DECd99AC5B08FfE90B359C3fF186d4a223", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0692C3767e7be581B100DfF141bb896358C8c960", + "tokenOwner": "0xB705aAfc4709Ea24aEC2cF18816F8D6f78A21005", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x67745001dF8e78D4ED233ce019a468FeE3aa4650", + "tokenOwner": "0x900D475fbEa5858bf2d4034D73f7394678CFD3c9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE820D687EFdAD1505b674C8bd86aF5098ACF928E", + "tokenOwner": "0xD8E1CeB444F5b79B0A746500913032D7E287D109", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x707EC8C0B4a94b19B11a1b91d7F18711471a8Ea6", + "tokenOwner": "0x6896cD0bFfBFB8527899F173df544E599287d2e9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC46361e6f606Ac1D2c081B243a0B8c80C6768BA6", + "tokenOwner": "0x6f86DB80154aDEbb8fED5fDf8921436c25d7E8fC", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7bCd2AcAd10334646b0B215aF402e0003eedbeBd", + "tokenOwner": "0xC07E82fd87796E20a667936c13B6435c082C8f2b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2A9ACB0f00F683490DfAA718359f5Ed2f944cADE", + "tokenOwner": "0xf6bD947d74BDE530B810EA4B61E8c54365028aad", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8073B16fe0FA9B4928FC4999581cA5ca5286A4be", + "tokenOwner": "0x9021C507678fe3e9b66cf5441754905B1fE2C64d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x62274a6554E846b6F7F0D9202Efd576cc6DA8756", + "tokenOwner": "0x87a3912E98fDf290D25F47526eFfd22dFABf5d99", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x59a66cCFFb1392bCB61A2cd5eE0A144e51c4E6f2", + "tokenOwner": "0x410a7772833013cb18175Dfb7794da4a4F8b982b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xEb958bfC7A610dA4fE2934271bA5906126f19865", + "tokenOwner": "0x8d90327A5330f310a48bE2FcDA8140ef64617A20", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3E9081f7862AC5b5C7617a9B3cb6BF3e686a3625", + "tokenOwner": "0x179C85e3C1184A7Ab85AE4bE58F9857A1Cda5435", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE98b402aB1A9c06749a527188aA195abCE104EF6", + "tokenOwner": "0xec3D1bc4cE7ea678aeeA33840673D9B38351c3cD", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x59a4FB5A8F29A5Ab18eF816Fbec3Df90ae1261b9", + "tokenOwner": "0x66c681129641cDdc675Ad108747349F6cc12d71E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8f0A93B058F8D431cf1223706878Aa0FA29014A8", + "tokenOwner": "0x20Cd9D78fbFE8dbEaeC4A396d418eD156efC8a2D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x12Bb035f2bF518b6214436B468f7E6Fd916f96f1", + "tokenOwner": "0x40faaE4fF1A5807f9994010A0aD27c86b174b4c7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xBda5C96B852ee5D202C8463C3CB98fc34232D7b7", + "tokenOwner": "0xEdffd80eFcf4d277f19134F81de38ee09D56AeA3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc3E70B65E317aa139F0e7002B6a7857F8693FEC4", + "tokenOwner": "0x84508F09AB58cFC2F9c8d3e7332AF431374Ce03c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE0248DB2d3ef968758Ac14C2980125443FC2fDB0", + "tokenOwner": "0x19ac46716E05656a0fcF41eCd58FA992fF1E3765", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x05CCf82F186cb5EC20b4e5ee7650c4f1ADD7B2A1", + "tokenOwner": "0xE7B0b146922345E1bDc23b389252cBD3d5A0A818", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x965C8Eb042c0F35Fe906F68d1582a8A1Bbe56864", + "tokenOwner": "0xc920ca653B805aFdf435e02B911037253D04FdAD", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x32528EdC9b4a793B6D13fE0EeFcbC759B89C317A", + "tokenOwner": "0x9433a650937374324c8905b22d9ab52B66544b24", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x317132D7118Da70Fe9f3538E982AeDEA381c5A49", + "tokenOwner": "0xbc7050f0Ec2c0527919ADB8A22d2D81B624df0D0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x537f2abd5159d35C6C90986dfE7eE57ede6FA3a1", + "tokenOwner": "0x6f0BDCc3446bb0a502d1ee51155FB85aa42e9623", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x542a6Ee37fcAe8cB79dEBb4a7f50C89De994db1A", + "tokenOwner": "0x2D7622Cafa8EDF858114D3FB6062Bf475ca796fD", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x71d0B514B9f658Da5Dd31105665d665990A1aD18", + "tokenOwner": "0xdfe6f6562Ff083Ef73e95fcFf402c416A6BBF1B4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x23c62dC436b2CBCCCe5b6b47353642B0016f71B2", + "tokenOwner": "0x8cCF2480a17D09d434Cd74c394e428A1b7891Cbd", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x40d6E6a1Ab48bb46492aBD74D0642EfbDC7cF47D", + "tokenOwner": "0xA7288593F590B9Bec047A547D1257Ab047855655", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xda4e017145755b55A958B42B660f21D3f4091af5", + "tokenOwner": "0xFd74573EF5C6Fa1eF1e60ac92D8c78CE10CD2a95", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC2B50A7715d1dbe5EeFB6eC2D5416cE7Ca13da30", + "tokenOwner": "0xB6e8F8878a71238EA5a4de8FDd96FC344C1c7Daf", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xbd292159C0E28659c2201017C224f9F54b94e759", + "tokenOwner": "0x2499082B0bF3E18916BeD987d7d72BdA39d11898", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1D3e89252Fe15EBC40C7868a7E5EE4516a67b273", + "tokenOwner": "0x3F8938eaB56a6b09a1FDfB1cacA846587046769A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0087Fa27b0079333AfBef0942cAe598EFD43ac0f", + "tokenOwner": "0xE81812f3B785f65e929520faAEF6c119D41d198B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x91d55EF21A79eA1C8276da7ac2F70eB1320aA87B", + "tokenOwner": "0xfEBc300c1a955a30870282E1B1aA3EaCa7196C98", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xBe6f95fae97D9F5d3B6c9320729659b3185294dd", + "tokenOwner": "0x477fBc28d4cA1b2D32bF045268A9725e55EEa3aA", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6ccB0a7A4df94b9BD4806656ed307CDC7D92A911", + "tokenOwner": "0xC320C9C2B43CB2fEbb5d692471D1c14635467775", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xCb7264004b7799a067087B5B80D03483c3E0fD55", + "tokenOwner": "0xB06c85d79CFdaA307879030f6A6a40BfA40789c3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5Dd7B2c8a7aeA4F2c577e0AE9Cb0267102771F70", + "tokenOwner": "0xA5c4D48192b297F405928a3d5eC413b586060c0E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE6b10D65fbAb142668B0B899764F16dbd6a8e1B6", + "tokenOwner": "0xeBc272Aa0AE37Fa286ac06a641b80DE14f2244Af", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x968027A36ccBE41a29f2b5422c9A0B2a3B1fC8b5", + "tokenOwner": "0x2A6035f8d995F65A3c2A7C85Ff38CA376C228195", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE6Cee711995ce6f803832E08e9175ecd2b6D27a0", + "tokenOwner": "0xa0306177188D9B9D960B8836091E7c495e8C9a6B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x02f84F9657aeE94EfAa820E7F4ed0594f582cC29", + "tokenOwner": "0xDDF3962a7376CCe5AFd14505BaB8c771F8505dF5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD2Ab6e2874802Eb7C7242e24B1ca0b86279Bd9C5", + "tokenOwner": "0xA7655aE47A4745F2AD89402BEaD5fCE5E727cB5C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0448015d0fb31aD8EE7Da9f4BcD858EE19CDEaF3", + "tokenOwner": "0x983d6C90dc481Eb27bA427E813d9e4Ba69ABa2Fd", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x53E731B3484Acc4D1b7424B1A696F5b6E4F6f83C", + "tokenOwner": "0xB909A51a47B510693D169CD4bbAA123DD49fCc1B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x87da60ad1bC8dFA2Ff6C4369F1979F9Ebd0e5ab2", + "tokenOwner": "0xFb83b944De337835617a3dD70a72089e6fb49a7D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3f9392498306424a2f9cbced01d43AEc78Cf6E7c", + "tokenOwner": "0xF6b629ac1545734e0EB0a50B03E6223e4aC2190c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF93c916632778ac6a7cc234468192a06636EaB0a", + "tokenOwner": "0xb4D57053F7B37Ed068f61a7750117c96da96fd2a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1609dea5087dF229A38779EEc1e1806e7AB9fc17", + "tokenOwner": "0xA3216f354c306a4aF713C4dc30C2B0d862A6c8AA", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4c7425eC0B83E7Cb8F0399C339ce9f7912dCc894", + "tokenOwner": "0x691B3609E52c3125cCaFb3E0d026ea0687902e7C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xbC8f6535B8ed6B03FD297962d3a94Cbd188414ec", + "tokenOwner": "0xb32F09901f3e8bE8f18e84F72b46DdbB85135ED7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc1163351355560A4aa57BA7De694e44f24e7E304", + "tokenOwner": "0xa0227B6977283F356df3BC4A5a510b1D77919C8D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x420CA33E5D2b97955511fa10aD79FB9615217919", + "tokenOwner": "0xd1FE6B3E390dc9dB407Cc5B1e04E76C55f5b1836", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x545Ac8F3309173B9dE72aA41daDEbBdc745C0036", + "tokenOwner": "0x5201763E79fa24c9683EBC897aEa9d3D6Dd4A111", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x472F17314844a56FdE27c93e18922a46C87bae79", + "tokenOwner": "0xf045aa86f4Cc63c0fD05A1b399Ce146769322D71", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x50175754d9B6f445b01ec812a28aeaf49D298f63", + "tokenOwner": "0x594e7E1e3D6a49959e51017C75Adc123B875BFf3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xEF44d0b31cCAdFc730C4c3dE00945B992651611e", + "tokenOwner": "0xD2e832e99eb725570B25eB1B77BAf7235CAf4E88", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x75efD4217A1d7262d4fC4F57B298701AE60E493E", + "tokenOwner": "0xA26d4F62F1028d489E694795bBa71E289bd81Eb3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x91062A88f5B1c3dDd14F4A7E0173e286b1b9Af2A", + "tokenOwner": "0x462d985107AF902571dBddfd5F47b1362C6efDB0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5e3a8CdbC0955130f4dB9508EA63F5B9cf705e41", + "tokenOwner": "0xa78f2c13FCB8b6999Ab10F160c10C4Fd2d18384F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xabf93A714C3115D8FD53F1A624F9e60B7a327B70", + "tokenOwner": "0xCd2b663Bb04C151D2d374f3960377605825b2b6b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9eb865065e6e66E640361Bd5aec7e3b72920A022", + "tokenOwner": "0xB260Da19aE50b0928AD98e3cd0AdBa4b88f327DE", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8928c1C28105647885BA866Cc982Aa40708d997F", + "tokenOwner": "0x17A3a19D91426f40bf415aE646FA76B8cBeD6a2F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6574F4423E9805fD4eBBFf031fC2B37c5faFeAe7", + "tokenOwner": "0xa34E45b30cfF043576abADeC6885463a8e550E8e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7D81A1DafBF6cd9697018888Cc4DD22C0f759640", + "tokenOwner": "0x65dE7408f86C967b8Ca24d388a7e82ef8A27BC9f", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD0f569D7D2Ba290768d373FabCEd613Aa9c2FCd6", + "tokenOwner": "0xBB235621389E9a10f45C6D756C1D902921Edce0a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x201E8d83427971F66Ef62c819159178cb628acA2", + "tokenOwner": "0xCB734D6B38E3A757Ff8acB262071DB4F5357d7d7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4406aD73E71BC637c066e293aBe7b6cC5a37b782", + "tokenOwner": "0x2B86E960c22DAe8711732C47cF94eBC4415A3570", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x47c50283Dc98ffbE6F1394F16bad7A5Be0B3503E", + "tokenOwner": "0x2547ED751eFF4DDE028b709bC4FE8c91CCCb7345", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9388af13C845bBaaA030fC22eA9d7AE7042BB6e5", + "tokenOwner": "0xad9ECc0ef0FE1f1b68B9b496cf5f8A93D47fA1AB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe39618B174B61Ddbfad256708386b9b429CD16d4", + "tokenOwner": "0x4659F281eac537515A6dBd20F93c08813A26D164", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf66f458dda260b555dB7d7E38D5A3Fd24ab0Ed50", + "tokenOwner": "0x3897a16103dB84842CE0F537bECF0c299c95F520", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x963a577d3aB04c915cE91B66AAA8561F3d2e4643", + "tokenOwner": "0x15b647288634c35D435D4FA6aF9e9f89891DDc01", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf467A2B6B734cBF996bD13489472537cE6BeC503", + "tokenOwner": "0xa61147A0a87cb7114D45FDaF0e12E10BD22F9A24", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4aCb16858D11243D555b8Cb95B9E282BB5EF3341", + "tokenOwner": "0x6C98bC1A1bF5282692267b76F4D12D401B13D380", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x66a6C097c9fA65347849F3Ba8783c36990276213", + "tokenOwner": "0xaB4a94857367AA0df7818b9f52ebf514289906DF", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE5AeA58974B109cc7F4BB5A1e055Cf66D74Dc32e", + "tokenOwner": "0xF63288063C2756b08aa3EB7Ae24ee1BdF23e7Ce2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x90DC6C7B70b1AAD46Aa0a534aA018F138eEd47c2", + "tokenOwner": "0xB1Df5b0FCd53609d657CecB948e24e8ff1Bc7942", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2dfeC7b2Ed666107C36a3Fd486Ef8285212d04c8", + "tokenOwner": "0x11F01b35C5DD0a5A75fb03EA3bcfac08BBfFa285", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6EB531941b853057205B1D77dc51059e824Ba7dC", + "tokenOwner": "0x8942cC35C5d79F449d6BB5F63Ff5b9ba5a36483f", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD930EAB3d39a025e0142385C1C05A06C02a7fC5f", + "tokenOwner": "0xb8C0f105a645c2D13d0f377BA0E9B8143d603B4B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x10c6B7A6d9B959CB55a864175575831612563f65", + "tokenOwner": "0x3ef714b6BdA142d6065297c6BC6D0D37fEb721CB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x43F976c2D769a278d7E3DC8FEcDB9953eA7368e6", + "tokenOwner": "0xad68Dd1978227397e51f4AC1D495049CD649f403", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4dc7d9b053FFaf533565C77ac47B94EBd9E87DbA", + "tokenOwner": "0x161501003c25263064920603d3C044C4b2c6C420", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA071D94a75461ceB343F47F1C1E8E86b053d6f22", + "tokenOwner": "0x2732624feaa487dD5d9484529bFEC37b4f1b069D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9486E884E98956043E092510E9eBC1F3bd3B24EC", + "tokenOwner": "0xe8bBb84919dC959b8b118c4D0e453fF79c8CBa9e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x01627952426AE7A613b11df45C07b9bD63697b93", + "tokenOwner": "0x9Aa8F928011EAE7E5466b75111175518dF94348d", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "53222400", + "amount": "8761280000000000000000" + }, + { + "address": "0xC2135De1733890Bd4E15313667Da133Ec2FeA378", + "tokenOwner": "0x69C6B6c93D82D2B6A2Ef70426CFc6c33E0fE0773", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3238100000000000000000" + }, + { + "address": "0x37814c1E9B702d65D344eDf516be9b98661805B4", + "tokenOwner": "0x384bcd48840C24725BB309f3f8095A380a9163cc", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1238100000000000000000" + }, + { + "address": "0x393A85cCFb3a144cc18947fEfF782BB4CBd1B806", + "tokenOwner": "0x9Aa8F928011EAE7E5466b75111175518dF94348d", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "174570000000000000000" + }, + { + "address": "0xa9525E051e19BcBC884E0600ab3d5454d6ea1aB9", + "tokenOwner": "0x673B37941AB527E0eeE13C1fF09298Ef1911D7D6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "457140000000000000000" + }, + { + "address": "0xae9bA62c9c71f37498B07Dd7793a6b9576F113Ae", + "tokenOwner": "0x589079F57c6aD630bbcDbd93B9933FA0De2be34a", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "457140000000000000000" + }, + { + "address": "0x83596320cc226dF2d5D7160de7B7d1264bF52626", + "tokenOwner": "0x0C149119166d186299A8894a596106743f280B22", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "457140000000000000000" + }, + { + "address": "0x7C3fBCde62A2148A011534a39F05898307Be09Fe", + "tokenOwner": "0x367580BEc03c001D76C51591C7d79914c4cc0e7D", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "285710000000000000000" + }, + { + "address": "0xF7d5a5f91Ba01984151f3C1d3cD2088e0d0b299e", + "tokenOwner": "0x55Ed66E5E8371C66bc710A4feE4e8e7Bf2d825fd", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "380950000000000000000" + }, + { + "address": "0xeA7fc34e11D77289a88ff02fA7AA3C51BDcDEfDA", + "tokenOwner": "0x36aedDBD87b092E01Ea5327eFBb619187F9A9c13", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1047620000000000000000" + }, + { + "address": "0x00297d4FD2D3851924B932DfB64671e4E1FD5307", + "tokenOwner": "0x72Bd32a5317EF2F392e1A0D580abFC32750efD19", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "190480000000000000000" + }, + { + "address": "0x1F728a834c6D2E448a39168c2fc7b1520606d5D2", + "tokenOwner": "0xd87beb25391Fdf4de6538b9bAc237E00050D958e", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2857140000000000000000" + }, + { + "address": "0x5B6f2B4b204bAc885442b072cd1203429eB62C5e", + "tokenOwner": "0x36cd8971bE8B72fb408EF4E7fA84C0c62cC15E9F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1047620000000000000000" + }, + { + "address": "0xC9FB6f144A5466d423287217bDcB92B7Ba73979D", + "tokenOwner": "0xC2b4Edb2De0e549d2df1098b8119B486d5A0A8cb", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "142860000000000000000" + }, + { + "address": "0xA543F60cCDfDe37E9C8C34D57c98b2377fbaA39a", + "tokenOwner": "0x4E3543d416494155D9F385B33ac60440F70EAa9C", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1111140000000000000000" + }, + { + "address": "0x9c35a4630Cd69339F5c69fDFEEe2BC78Fc141A3A", + "tokenOwner": "0x97A56129A3E6b0c2ce256dbe3F70831661a4e1bc", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "444380000000000000000" + }, + { + "address": "0xb349bf0C52E21638468b3b52f5a8D604dd5104E4", + "tokenOwner": "0xD86D0c3a5D84e7b6322D5D37571B47E219691e97", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "200000000000000000000" + }, + { + "address": "0x9d74C180BF7c7FBF996B314D9c01BBbd2f22738f", + "tokenOwner": "0xB3BA7Df8E14584Deca3C0F735effBEfB9F818601", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "25670000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "342860000000000000000" + }, + { + "address": "0xF68E6eD84443EB0405E05EBB5038d70922BDbf72", + "tokenOwner": "0x3E7821266E1b3fC1228403f9F43DEba7dAedF66A", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "142860000000000000000" + }, + { + "address": "0x12484998B04Ddc5f06db5646B4B5571DD796E9dC", + "tokenOwner": "0xBa986c82A78db4Cc36D05fd99836C795bece1663", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "95240000000000000000" + }, + { + "address": "0x8205cbD6CeC4F2c05E4E36322293AE23dFFc34Ca", + "tokenOwner": "0x3F4F13776E6F56BD092C721E7De2F15d535B19FE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "61900000000000000000" + }, + { + "address": "0x825D8b44720378E3b20307035167C7a110cEb7aD", + "tokenOwner": "0x6f88d77261FF9651B4536B0c5EC7bAcb9130d4c3", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "349220000000000000000" + }, + { + "address": "0xf197B5A9B7A31E68dB1b3BA44D1Bd978382d5CAD", + "tokenOwner": "0x0090dcb43bA4Ca7536c6a16552F8D7a6411F8EA1", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "142670000000000000000" + }, + { + "address": "0xC2135De1733890Bd4E15313667Da133Ec2FeA378", + "tokenOwner": "0x69C6B6c93D82D2B6A2Ef70426CFc6c33E0fE0773", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3238100000000000000000" + }, + { + "address": "0xc67989482d3b2c64664c97c2cDbebdef2002d075", + "tokenOwner": "0x3FCb4FDC45c01344805E41Fa413828b76bEcA719", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "190480000000000000000" + }, + { + "address": "0xc67989482d3b2c64664c97c2cDbebdef2002d075", + "tokenOwner": "0x3FCb4FDC45c01344805E41Fa413828b76bEcA719", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "190480000000000000000" + }, + { + "address": "0x5fdF02636bCf5ca9Fe26E6494B78B5C888B5A698", + "tokenOwner": "0x72A34efB62c8Dd0147df40F8ba0b9b66CBE65bEB", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2499620000000000000000" + }, + { + "address": "0x2CE973A1DDC7612F3f7aEcF6876D28fdBd9b7E08", + "tokenOwner": "0x3BFA3222b46318361649A3f35F624A6fe6C46571", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "228570000000000000000" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "263290000000000000000" + }, + { + "address": "0x9c35a4630Cd69339F5c69fDFEEe2BC78Fc141A3A", + "tokenOwner": "0x97A56129A3E6b0c2ce256dbe3F70831661a4e1bc", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "444380000000000000000" + }, + { + "address": "0xF35bD21734D2fF12d3f2d2aF795246d60481E495", + "tokenOwner": "0xA7E471134c447a473d82A156D9f242FCEf8b929B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe57f10dF0812802fBeFc5663F08f18A3CCE7E601", + "tokenOwner": "0x1c439b206523cfe50D8e913A1cE6b90325f0d2A2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1A389c06e81Ab11f5D42b1C4c4aB135694A180f9", + "tokenOwner": "0x11BE2323f9aD0270Cb6f702Fa3398d653F9Cd34d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa9Cb2A0dDb315464b51E6FA00e4954D2B4c7ef76", + "tokenOwner": "0xc6B0F7e747C23f65E1f99617B379fe69b56Cee32", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x07A6835548C0FE6b66139310C959Cd4f96Ca01fC", + "tokenOwner": "0x66C991D3dd46667efC79C5FF2eb97DF788851899", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x05aABEEAE545e5935100a9B9e535cc8D40Db3Ab7", + "tokenOwner": "0x504ddB43eAbBcE9008b41973d747f76792FE683b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7E53b7dB7515780ffd7F3E133Df32C07b5405473", + "tokenOwner": "0xcb1789cD9ab3c8C9846fdAC519C3E4e4Fc1b0B00", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD2b33b0b75AD62e66AAe5b986E942c833E799FB3", + "tokenOwner": "0xD5614A5E78b0E5e6A643E4bd00a3d142223257e2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xAA71D48D187F0e8eb32D3d7A7Ffb1a8fB76fBB85", + "tokenOwner": "0x275DA74ae609123DD30c7BA8d9CD0b79115Ea2eF", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3C639A8f22269B9A1471d1BF5Db750E80798FD5D", + "tokenOwner": "0xf3177985A376fc05d056a21ec75DA5A6Dc03B139", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8F01A8E3A2a351d644f4Ff9627b355F614d0AdFB", + "tokenOwner": "0x2824f22A58ed531DC170362D6cc627BcC9b93718", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x56b5A7A40d31d636bb7e14C821f45Add4d1b7760", + "tokenOwner": "0x04725695BA57a9F5152F2193AfAf711f7AF7796f", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF8baF95acc47bdbdBA7d8c6e111EA475C38BC828", + "tokenOwner": "0xF79B06DD0b00Ba6B109F79cF8856a6E3A6a86A8c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x61B4731De1612dD13E2Ae755a72efFf3f6282a83", + "tokenOwner": "0x0baf96b09E156a5A8f764F1fa72ce9D5d631BfF1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xEeeCdd4bda18871A28384C4B06106C02F50D030F", + "tokenOwner": "0x9fBA986Ca84Cf5a86d22443BE56a6593fCe05BF0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7Fb7203ed33ddc43027402eDf27fb355dc004298", + "tokenOwner": "0x965638148356A01a776c29E43B7141aEF0a19C46", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1884b115673E5b29281a547433b645f690856311", + "tokenOwner": "0xC5c4b49bAF71Ec07692CEC56b24A748523736411", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x779F45a301539fAdfA3A9Ea5514a79d09678Cc32", + "tokenOwner": "0xbFffA76e3E71C33218c3e20fD0E06e5Fbe6aaba4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD2072E7473d5C633DC8dED51A299fcc9e6ee47Dd", + "tokenOwner": "0x08368393Fa3E4Fd5a1aD4c3A025e10D71B7B2035", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6E50931F62E31DA0A64d097d71F784AC66892682", + "tokenOwner": "0x0d400826c1d337DaE4233752826d9f7F494DA004", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xAFe044954D745A2f66aEC9228A342A2f2591E3b8", + "tokenOwner": "0xA9a0A61825a73Ad2fa6461CdA81f6631E0a8c027", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3640D8b0576ce4f70c6F41d7168A6FDDeD55F075", + "tokenOwner": "0x6796f96fa1865B322f41E57dD81F7e818a87a385", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa2a0d87147cbc1FFaF3B2203c46Ad7e197B54Bf0", + "tokenOwner": "0x052e0b2615dc9ca10aC3644a796BBE5Cb8b78d1A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x177AfC97bE4Ec851FA823e09a434388665808ea2", + "tokenOwner": "0x0F39B8EDaF21796801b5CFbc57db86c8F46EBd95", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0ca3a914C0448B284dea35C41AFEec01e58a1dd2", + "tokenOwner": "0x73b3BEc4dD816b030003926bb89d78f4A17ef305", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x111Ca70FB81e70655a35A1128552e302Bf91DBc5", + "tokenOwner": "0x69142f41c26C44e7eBa8cf551c9f8DfaadF60e53", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2095240000000000000000" + }, + { + "address": "0x54965237228C9ddC4bd2e2f00F432b4063eF8AFB", + "tokenOwner": "0x0CbE6229AA97CcDEEebD9418A25d07b27fDbF089", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7eF0ec546Fc78fDEd79F0E0bB91B1354Dc85b831", + "tokenOwner": "0x37ED5C95D04Be88aA879f7F6d953a5aF53abB1fD", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5CC4C0AB8BcaEAB0E029020ee23B15E269D9988b", + "tokenOwner": "0x1baa1f33FAcb21cD8AeA1d9e5387f62e38B733a1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xcD09CA935228c6875B2363c7d159553C86890ecD", + "tokenOwner": "0xFB5B840a85D41bF28081a31b186Fce24EFf5AB5F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3E6936827f848d6bDa3236bE101F257E8B63EB0D", + "tokenOwner": "0xbC0ed47281F2dc3b2B99986F952a78CEb79D531B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9A5c4178ad1B84FCD0574d8C564DCEb11A1B595A", + "tokenOwner": "0x3051522f89FC10e61FfC83fDe9638bb16a81c40E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4C9482214DE9a1FAE4d59eFE18935EBbe47b8Ac1", + "tokenOwner": "0xbf7bDb3B0013c1afbdF8868F9822ec95813D4026", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xbDeb60d6f1bbD033bb8f74B54Ed58854B7e139a0", + "tokenOwner": "0xBED4779ff74b147EB9c1542D241BF03e9580540A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF91055fe32e2A440C16032Dc5d11d337aAaec446", + "tokenOwner": "0x91817795A255B890079aB3852458C9e3EcF60FE9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xAedC3Ba00227FF63Bc439A9F4319Cc04Fb99282C", + "tokenOwner": "0xa15a0c271FCfc4aeF92775ACC9F874f35Dd375d9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA77A76bE7C22A431C7992a61BA1465A44BCc6319", + "tokenOwner": "0x29737b246C207F596d671bCBdE2415b5fcD08978", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x25918957f20677B8be0f3478f91899d92cC53234", + "tokenOwner": "0xA985d373699977507db085e3C7f43eb6aC03459a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7305a30339536d3B985D145D6a072c7090860da9", + "tokenOwner": "0x141a7CcF72F43c70B7747391A283a8fB19174509", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x94034Ca273Bc37690412B306ff0279F733045bF7", + "tokenOwner": "0xC7A62FBF50bd42Cd81Aa5A82F74cc9e8E8c7A5B6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9b64dF59915bd0CCd39c42d06422f0393E3fA402", + "tokenOwner": "0xa95C0a9960dBD391Cc01F7ff9b7210C36F1a8599", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xAD03c8c66E01bb7f7044b33a10959814687357AF", + "tokenOwner": "0xA6096eC984f79ff717677D8342C012C28aef351d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xdD2E422568E894CF1578876A43A419E9B544cc67", + "tokenOwner": "0xfC7e1f16Beb1a94BC135E99ff9b137A466353253", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7F0B84994068992a1F93E1386c5a81F54E615dE9", + "tokenOwner": "0x5Ebe38C81622e9F73393c6b9b610E216caE9B623", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7440adD098a2D23Fd1245DcA0eB0E785Ae4EdE52", + "tokenOwner": "0x0554dEd4bEB1aeab95d7712cc4B025C1173fa912", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x87A9a86f28FD668065679fF3c643328086c6872D", + "tokenOwner": "0x3D47E1B6Fe11D6d485e7DA6D211BECF5985523e0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x87b566362C4F208C5546fE95eb23D9A6BBc86dBF", + "tokenOwner": "0x709ae9Cb42f90C58eF9328AF445CB2b5c018B31C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc41D4166E328396C00fB85EFbA1a1B485783d2F0", + "tokenOwner": "0x8B823884909199455A7BEB3f03dd0b112e133918", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC608a44861224fa1d6E4d4B423f6CcD3153959ba", + "tokenOwner": "0xf9d7Bd120Bee323324488Dd4dE012aCb699417Ab", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x66183f57EEfab8297b59D2eDA4e2A6db24AC829b", + "tokenOwner": "0x4faED4FdD1b790F48b7AAe0C95A5896b90fed74A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe8f19E5E09621756895a43A711cED8d1b841aB45", + "tokenOwner": "0x984F7AFFdBF2E08d9521c8aFca18bC2376747619", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x63F6faC9FE48a69Bc2c7B39fdCB5B66faDB86d08", + "tokenOwner": "0xe15954E6BF467234B858EeEC36Efd791De9CdB23", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x46a2bb5cCeDb6d561D2f3EdEbb1eeEd6EE1d4960", + "tokenOwner": "0x4DF06f57B76aEE13baFFF67CbA861C500c18a3c5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4AA8fDa250DFE211d779CC6Db6A90e4e4E36D8fE", + "tokenOwner": "0xc2266A66f751fF7aBe0db4f4E72A5F8D2C9c3Ee7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8eC344BBde433A2a22e54692Faae6D0Ba171482B", + "tokenOwner": "0xA5318B8336672dDEDbBA837a4A2Dcff703D3b28C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD0747d5597eCd1Ea7c92Ab78811702649079e617", + "tokenOwner": "0x20d08d1B99582c2371aC99A0Dc812D3955730Ed4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x657AA0Dae113E291665015f52D18C5dF1e0ac472", + "tokenOwner": "0xD58e9DC8D56f2F034975389fAf4ea5C00d0ea5f6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8Cea6A0F8CA50C337faD4f2b54A62CF4EF54AFd2", + "tokenOwner": "0x96c50520B6a80b282ca9058eF1b23784e9De7C22", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x510D05785F670Bf760799D7F593d8c919C54D15B", + "tokenOwner": "0x6B530428137724dc05A494B4Cd31158b492Faaa8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1963792Daa2627F56714B90d500349B2E51E9D4d", + "tokenOwner": "0xf3F39A5d1f439d0a1a5bDc520177345FA0F331da", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x055E5786C63c46Be58e1Cd8d25bc1EaDeA95B765", + "tokenOwner": "0x3Ac4c8faC6031AF6303A6f27F907373bf0bE4216", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA85a0136cAa9e0c96803fc5D633f089d71D5b863", + "tokenOwner": "0x4b36E7aBC0835F7CDeA796ed313E132e43ED1095", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x450cbf24944477D7f885E7Fba1aa0A9c934a975e", + "tokenOwner": "0x0B56B12afE54D8b987844F54EFFB8b27bFeE8f2E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd859d52369344eFca2072415908e26184f6904D8", + "tokenOwner": "0x59954C86D21e327Baa3Fe07aA9B2A06C7c6cb774", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe28c918989405AB6358599ae551EfC2d2fc689e4", + "tokenOwner": "0x82F0bd14B2ae33404fb46c8F1027BA6Ba764C88d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1b7B2006f7FbB2e2b372F5f4D7378e243d95D9aC", + "tokenOwner": "0xeE951FEb08391d4AD7B435acd99838D7da1c38e1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9A5f157A9274284c3002442cD807E3aD4578A586", + "tokenOwner": "0xB10C5D0AC81f4A561b00ec6511d6A1feBf46c788", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfd53AE6c27C3eC269267651f01a89ba4fD22a3fb", + "tokenOwner": "0x68edF87f2C356CCf7B94d8b9bD6b615Ffc485a92", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa2fEb684C09d9df02B735c6D8c0A5C68F4F65683", + "tokenOwner": "0x0FBeCF27f3D8b7d09E15BB049DcACBAaffA9B877", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC497693848e4e931b4270cE3E59057eeefa4E5Ff", + "tokenOwner": "0x8f30B11067892772EdbE8A5eA5355C3CB59Be0C4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfe8F20eeAA7DA8e98C2c9001aAdf1991233493E4", + "tokenOwner": "0x57105c06A6F82B68e4B246653b33dafEC346e2b9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x50df299DdfB6a6542bd48D4e0865779644DE7159", + "tokenOwner": "0xadEACFe2B14FA83f8C25771f9Be360E3780Bb12F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8334B61A499495C429c3D4D838E0F28C7a8D761D", + "tokenOwner": "0xD6062352213EeE7F5f69f0379579e4754E2D1a67", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x56B252B0adb107B02835D4B8AB8771C6435B7ACe", + "tokenOwner": "0x446025b9d2b075CD927660efAAeB81552A8bA884", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x88873bFEE305D4D531A5A749C33B365156a8a6Ad", + "tokenOwner": "0x12d0Be9875E08C2D3e47747AE2645AcF52112d02", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x24592171c9b968c2940Ef376910ac1703d894ecE", + "tokenOwner": "0xe9Db2E7273cF2FE43222b70247894c87e58cfEBC", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x55714cF375e6Cc1aae0A8B42fec9A229BC26A970", + "tokenOwner": "0xfE8B6CcBFFd86DD79e3EcC23BaFa11B142c99415", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xedDf0c05BcaaD60465747b738f3794ddCe4c346b", + "tokenOwner": "0xBc5dEE208edB87e0daFBCdd626a01E49Ddd9f341", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb11Ce69B5ED6D24A0cedA21DBC37171612620F99", + "tokenOwner": "0x0dc9fd43D06Dde5b7Dc5e22AEc0F958587E515bB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x226D57d43A68F6F4642F7dbA57c8204Bfb7A0bDD", + "tokenOwner": "0x9e42d22859459b5381d430634e65a0bf2441908A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE5a7900bC06c1d3c2581E26a0B0bF53c82012Fc6", + "tokenOwner": "0x17be44b08EB811925b3213037b309Eb7E473512c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8ED1549Df96aAf085bf3119315B7F363Bdd6df92", + "tokenOwner": "0x47c48D988A4aA6717377Ad0Eab587bB113299035", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xCe5e687212238f29090A5dE71E8112D2D8219E0a", + "tokenOwner": "0x5dB012CA7089d10f8C2Cf141Fe1936697D72Cc5d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x170156246b9dE817156E094e4a975Afd58EE1f2d", + "tokenOwner": "0x55ecE948FeF0d1235E6824c9b0449e17b3C9CA8B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x461EB284288f895b89af9CD5CfD3eb0496D80270", + "tokenOwner": "0xc41894AcF5363b6Bb8C003c508eA2CE0e8812253", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x05Db83034060c499CA7D23D4e2B399197347E8Be", + "tokenOwner": "0x85890D1942AF1d7303AA3695cc1abE71Ffe7C33d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5566D595888cB111b0af53D7118e979444E49832", + "tokenOwner": "0x5B0e3C70E8f0C2dc69AD093873ffF3368C7139a4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF40e754e3a208193De6463981A4a93C23ac10117", + "tokenOwner": "0xb4F4F3eBc93e9FBAfe74e8214c057a5172272CF4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8421628dC429fd2c6998Ec0B74266fC7510Ee566", + "tokenOwner": "0x9eDeB2630818E5Bf56b18846A0E53c6dC47b1398", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2DC5Fe73A732c7A1e0B4304CdEDfA7A0d07a1Aa1", + "tokenOwner": "0x342896DE73a44Cbd7f8B1476C3FCD871cc850290", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xCD5A53ba5cd74260939Eaa8C41d8c96fa36f8cE7", + "tokenOwner": "0xFC4d9600B01b80D22b579B26d890D4C09A324996", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2a11FEB0aFd518462683fA2F49457007067a5a34", + "tokenOwner": "0xB23a1C74C07a4c6729aB3d9A117b3DA1e4eAE25D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3DE1a59e4C2463dA94627340525cFE7788d8eaA3", + "tokenOwner": "0xC36835aA73722FFeCd7077fC7094b1C7aB05bC56", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa250684e1C824Fb3E24283a82806E2C8dE0F55c6", + "tokenOwner": "0x7EbDA64ed9EFB0de42a012b666eA3935607c0A53", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xFE4fFe7599CE5753d79b0961B85f0822F7bEeaCa", + "tokenOwner": "0x72a6c8Bc8aF13F1Bf7A0A872D02E7840187ED518", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xeF47Cfd15FDc61f075FF88a86b413dc22c4F09f1", + "tokenOwner": "0xeE6656054800C4d27F6399A1466eEfD461c16D68", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc6Dfe92a73d28fA9c0EF70e169fF4F7feEDaD0DF", + "tokenOwner": "0x6AA33d1F92f2b64db7Be6d8190390091dC69c8Ff", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x07FBf9DeDB1F473e0B74d6E09378e6749697A774", + "tokenOwner": "0x8a8c4e76FAE0004c53F8B5771dFA8dd1583BfF37", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd6A3947fC66bF7BE304b34dfFDdd7274fa05D5D8", + "tokenOwner": "0xDA79352F3eE0D726288eaf7A73Db0504F349e661", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe0538deaC084eB9D17DbC15A70E805c14AED8fCB", + "tokenOwner": "0x4BC40616d00A041C9408Da235e14D96110b78376", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0B72668De41f6B65Fc9bE552Ba2B71Fd4D4292D7", + "tokenOwner": "0xdF46786C5A9c487E1fAcF05000D5b0276413A393", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xcacCe253Ae7a35173D5Ff9437Dd8Edc9d85a91EE", + "tokenOwner": "0x52B4CD28D7319ceb9a3155958f0CBeBA02a5894c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xFAD9cBFe8E841Be48e5CBc60A8C6bD5c414C3a5A", + "tokenOwner": "0x28C9c1812fA59388A69f02F947490344f11b91d7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4a360B7ae252BA6eA73e94CA8E372eD78D30E23f", + "tokenOwner": "0x91bD49a006315c38DB666A0c65402F87F10c7145", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x95Fdb7cF83b6D3532384122B26A272167a1b8B29", + "tokenOwner": "0x72B09271eAff020ba75f7c2bA5d7b17A04e57a8A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xcca64fE9F652B9a747105fE1518446bf8904375D", + "tokenOwner": "0x193e334dC465eA3eC931d2fd33f84d7551258a43", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x85A89EF4262d0409dd6886e55bE6d1eF7804e46E", + "tokenOwner": "0xDBE4787FD20005a66EBAD1340dAE881f6278CA9a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xBdcfb8F6de1FD50c704c9544F35D86be935e91F9", + "tokenOwner": "0x8679Dc392b156a851f818dbbF24D6069E4e36721", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xAD0457c65f48719464F7cBd810546d619edddB3a", + "tokenOwner": "0xbd32482d71Ecc1797bBf3Eecdc5deF86208b1b49", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xDf15436DA15DD06DBd3896E83e09cfC9384a3F1d", + "tokenOwner": "0x56141fC1768f1cb25F862b1bFAA6521208AF367f", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xFfb9ddA8B6cfc0DcD5686e5597DD9CA4E4268D00", + "tokenOwner": "0xC2986cD5D479dAc80DEdF7FF4dECc93156de3740", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x08eB3e3131F31c408Bffb212C686DAebEbbcf522", + "tokenOwner": "0x37F738B832E39eeA89FE136eC7c7f0Ab86800010", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x04b85E82a4B7934A6Ebf6C7364b8B943eb0C965d", + "tokenOwner": "0x0B35a624182f228C263F1DB357926F480a9E7a76", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0B33acd22a04d35D73D72067C0A2C9505F02B7ac", + "tokenOwner": "0x6beC4386c0ae680b2c9Ebc61b7A65d139b5Ce709", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xcE9226DCc6a92F8FB3331A89ada0974C8BeAe3B2", + "tokenOwner": "0x87C69317647302f63039cb7D477A7E9dC3B77638", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF2D2C7BC2cAAb93f7Cc34882318A014F1b047f65", + "tokenOwner": "0x4e3eF3Aa2396D4D238aacb6F39CbbefEe8e58699", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xAc457492074BA6f92963963F2Ada044739fc0c36", + "tokenOwner": "0x60EF2512Bfd682D42120AB8a3C23748AeddFb28D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x11b3330B7328b4708D854CBe4952b703b350C5BD", + "tokenOwner": "0x632893cd567F7eC37e8315D1Fcd46EF4FA17AD80", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD9E694E0dcff3879b48f12A1542e4eeBC8e16Af7", + "tokenOwner": "0x3082B2aC519325194049b2B65C7E711A72B0275D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x300401B39272852c4e86d83C70fB1936BC4262Fd", + "tokenOwner": "0x5cF25606315b277eF7f8E9Df721d67b1607E7A08", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF68D1E1f77b6E15c48c89ca9731a3D416d61B4B3", + "tokenOwner": "0x26441CAe81b30a0d52cdB990e0fC27D4E4Ea635C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x72A26A86609f3C40Ee50f8374D707eBA08905e9C", + "tokenOwner": "0xE669A2AD82ccee4F6F4EED0C663F7fcC3BeC81FE", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf33152618BA7D2a14C10e805312C1819D45C8128", + "tokenOwner": "0x19f4bd30D910b5F40f612330dcE64C8D4874D405", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb3D6dFa770b1DEB64ccEBC8210049f396f512616", + "tokenOwner": "0x85bD930545bfAb3f2044A3A9f30C481a8360eCd8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x487D397E1D4e2e70B83c7a84b84287af3f50b93D", + "tokenOwner": "0x51c17D2374E3A3B2F46DCFad4225eC819709AE11", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa2C50613a6cEdf992D9e056cb7Ad66093ed12aef", + "tokenOwner": "0x2fe13AC55578F035aDeC9C67898Ec9E304Ce9eAF", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x774d6eE85B17a455D2f9A587099aAF1472FBa6f4", + "tokenOwner": "0x6869D9772A46bcB129DD6a4F9C8AFF8d3c4306dE", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA72C547E598F309c5CC23EA5AA4293558857e7E4", + "tokenOwner": "0x178CEd3b35f004A1862acDDB7831152cA7d4Bb67", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x943B8E10aa1972b02689572240662f5D6F354EE4", + "tokenOwner": "0x09430565E3a38884FeDD42E5FD0E05656F7B24b2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6162786946506A19868964f78143119C8925309A", + "tokenOwner": "0x7BCf8318d7D75d09F9C8900321ACEDF42D330e85", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xed2F8e2a2D96A740C00B0D89290E15637EAD9138", + "tokenOwner": "0xd5b79AA181f1aBAe1bE09c024F2dE889231AbC74", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb0b6c031FeA2429E2185BBBF4256702ECC0CB050", + "tokenOwner": "0xBc6F8a9Be7D85e360061d23c5293C87e300465a9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2A6d15B4f58aeA8d0D52d4b211FceA65c71e7C2A", + "tokenOwner": "0xCF115C28aa2FE61043751e4DEa78bEad44732057", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xBEA71ace5FCE2aCaFdc05805Eed6e957b0684fd2", + "tokenOwner": "0xb348DC68e7B864544ec670e89aA4AA80736fc8De", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8Ce5D954C1a6c3f238E6778AE91fBaBE6d909B8F", + "tokenOwner": "0x959919178CEff4a7bf5A1EdC653e2Eb965709d97", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "6516850000000000000000" + }, + { + "address": "0x12484998B04Ddc5f06db5646B4B5571DD796E9dC", + "tokenOwner": "0xBa986c82A78db4Cc36D05fd99836C795bece1663", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "18398880000000000000000" + }, + { + "address": "0xF68E6eD84443EB0405E05EBB5038d70922BDbf72", + "tokenOwner": "0x3E7821266E1b3fC1228403f9F43DEba7dAedF66A", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "912920000000000000000" + }, + { + "address": "0x270EC26a46b948aaDF222394c68d9b4aFf385ccA", + "tokenOwner": "0xd7D9a7De795cd55f70bF1e49B8d51D5D3478097C", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2808990000000000000000" + }, + { + "address": "0xeA7fc34e11D77289a88ff02fA7AA3C51BDcDEfDA", + "tokenOwner": "0x36aedDBD87b092E01Ea5327eFBb619187F9A9c13", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2949440000000000000000" + }, + { + "address": "0xC9FB6f144A5466d423287217bDcB92B7Ba73979D", + "tokenOwner": "0xC2b4Edb2De0e549d2df1098b8119B486d5A0A8cb", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "807580000000000000000" + }, + { + "address": "0xd893664A04f33bA5d29deDda3F70Bd5B52D4e279", + "tokenOwner": "0xB753b89722a1969D3850c37D05333aE592302412", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0x825D8b44720378E3b20307035167C7a110cEb7aD", + "tokenOwner": "0x6f88d77261FF9651B4536B0c5EC7bAcb9130d4c3", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1111840000000000000000" + }, + { + "address": "0xcd7bBbbDa41771a86cbd92Fc8F71a4a0BCB4318C", + "tokenOwner": "0x04e712D648A6BA200e1B41305f208596944871fC", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "468160000000000000000" + }, + { + "address": "0x5f0FDDc15ae93084D8741A92e8B487A6ea44c096", + "tokenOwner": "0x0Ef62F84a878912d22C74Bc55d93f7C26e484114", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "234090000000000000000" + }, + { + "address": "0xcB9958DC36d3f6474aDFF5E928E8e535679c954b", + "tokenOwner": "0xF0a716d0F96ff52F2Afb760B9CE10dc6AC4Dad69", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "234090000000000000000" + }, + { + "address": "0x7a42cB57132bf5aA48374476687D704AE33eA9fD", + "tokenOwner": "0x95629b1fe88e146Ff24b33B25778632809Aaa627", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "234090000000000000000" + }, + { + "address": "0x37814c1E9B702d65D344eDf516be9b98661805B4", + "tokenOwner": "0x384bcd48840C24725BB309f3f8095A380a9163cc", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "234090000000000000000" + }, + { + "address": "0x71276Ab8E47e88f0208ec0E458ac141332F36162", + "tokenOwner": "0x09e570FaE31429FF451d4991C821c6E0548D73DC", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0x8205cbD6CeC4F2c05E4E36322293AE23dFFc34Ca", + "tokenOwner": "0x3F4F13776E6F56BD092C721E7De2F15d535B19FE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1518680000000000000000" + }, + { + "address": "0x5B6f2B4b204bAc885442b072cd1203429eB62C5e", + "tokenOwner": "0x36cd8971bE8B72fb408EF4E7fA84C0c62cC15E9F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3335670000000000000000" + }, + { + "address": "0xb349bf0C52E21638468b3b52f5a8D604dd5104E4", + "tokenOwner": "0xD86D0c3a5D84e7b6322D5D37571B47E219691e97", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1650280000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1931180000000000000000" + }, + { + "address": "0xc67989482d3b2c64664c97c2cDbebdef2002d075", + "tokenOwner": "0x3FCb4FDC45c01344805E41Fa413828b76bEcA719", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "280900000000000000000" + }, + { + "address": "0x8Ce5D954C1a6c3f238E6778AE91fBaBE6d909B8F", + "tokenOwner": "0x959919178CEff4a7bf5A1EdC653e2Eb965709d97", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "7766850000000000000000" + }, + { + "address": "0x575bf63a080185661FD7E44571391016a986500f", + "tokenOwner": "0xDa1FA3C9B04Ba3C66eda18CaAD48AaD16bEfd405", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0x036A614368D840434f5cb4D8E1627109D1179585", + "tokenOwner": "0x9bd6759F6d9EA15d33076E55D4CBBA7cf85877A7", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0x8BAD9847Ca9a9B0Db1a71feEF0Ea4D862046431b", + "tokenOwner": "0x3f0cba25707f48eBD75412B90a25c6e5De3a1773", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "468160000000000000000" + }, + { + "address": "0xbBbD44B61E4c5ae855316cD55de8654De5666f68", + "tokenOwner": "0x3CA54E2a3D055cC50aC2842D978d8bd3eEB88b82", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0xCd0eC591cc8561B7F57B8E780C33729063606df9", + "tokenOwner": "0x25d9F0088C2B2B5E99C776851c4B508A68161e89", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0x9d74C180BF7c7FBF996B314D9c01BBbd2f22738f", + "tokenOwner": "0xB3BA7Df8E14584Deca3C0F735effBEfB9F818601", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0x5195FFaA87630cb906c0D39B17d447a638C9b0C9", + "tokenOwner": "0xC69E9DDB1a33fb9f0826936Cd8CA44905c7849Da", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0x6505397C82fD802dB0E47Cfc1fdcC4f0fe0607f2", + "tokenOwner": "0x99d8E1573a75531F2C0568e33b6fCC8bAbf5e96D", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0xA543F60cCDfDe37E9C8C34D57c98b2377fbaA39a", + "tokenOwner": "0x4E3543d416494155D9F385B33ac60440F70EAa9C", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "251120000000000000000" + }, + { + "address": "0xFf005E987CA65C0Dd85f4E075A32AAD0de6986aB", + "tokenOwner": "0x70A4b9FD44940afF2575799c4E56cED28Eb01334", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0x111Ca70FB81e70655a35A1128552e302Bf91DBc5", + "tokenOwner": "0x69142f41c26C44e7eBa8cf551c9f8DfaadF60e53", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "234090000000000000000" + }, + { + "address": "0xd5f72E163902b8e9Db61387C0A7ce2847E2E02fd", + "tokenOwner": "0x90CB2631a7EB3556ae6d197eD4F28FF736233fba", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2808990000000000000000" + }, + { + "address": "0x9994F9b7C014db24394f6d1A45D709F585E5a986", + "tokenOwner": "0x3532bd3a774327dA6C42A74a445a8c4e73a45412", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0x511ca82608F08F680e7cb8Aa909317D1E41f091E", + "tokenOwner": "0x8bb38C74B8aaf929201f013C9ECc42b750E562c6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0xf197B5A9B7A31E68dB1b3BA44D1Bd978382d5CAD", + "tokenOwner": "0x0090dcb43bA4Ca7536c6a16552F8D7a6411F8EA1", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "468160000000000000000" + }, + { + "address": "0x1F728a834c6D2E448a39168c2fc7b1520606d5D2", + "tokenOwner": "0xd87beb25391Fdf4de6538b9bAc237E00050D958e", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "6671350000000000000000" + }, + { + "address": "0x202E0762cFE87dcC0CFfd10878e470c5DEF51a1D", + "tokenOwner": "0x51C4d48d498BFBeB5c799842239FFa306Befa2d8", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0x16b14b6640439dE5d79dC7deF5754944005c76aD", + "tokenOwner": "0x1bf234915647a2A96b7c1145EfCF08554dE1Cc56", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "468160000000000000000" + }, + { + "address": "0xbA03F99c3A12dfcCD19a33Cc6Fde1FE375368DCB", + "tokenOwner": "0x13Be55487D37FE3C66EE7305e1e9C1ac85de75Ae", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0x22A45660Fb1255225e6f8CFD481C8437593A34f5", + "tokenOwner": "0x06e52AE51fA0dCE35B4C46c2CC441A94762537E8", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2516340000000000000000" + }, + { + "address": "0x5fdF02636bCf5ca9Fe26E6494B78B5C888B5A698", + "tokenOwner": "0x72A34efB62c8Dd0147df40F8ba0b9b66CBE65bEB", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "215030000000000000000" + }, + { + "address": "0xCAbD2BCbcDF6948785AaE6d4A50EDbaE6115084E", + "tokenOwner": "0x58B753F0c417494226Af608B63E80028255CBc64", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0x393A85cCFb3a144cc18947fEfF782BB4CBd1B806", + "tokenOwner": "0x9Aa8F928011EAE7E5466b75111175518dF94348d", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1726400000000000000000" + }, + { + "address": "0x37c17B418Bda1Ad3Df967FD8c0A367A01537C7CD", + "tokenOwner": "0x9E803272e05C5459Af22456014a59b941e4eDBbE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0x341F8Fc0edF32eF1cD143483fF3c3575a6F5533C", + "tokenOwner": "0x52B4CD28D7319ceb9a3155958f0CBeBA02a5894c", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0x804A8453B50CFA41b1ff25Ed23CbfE60ee25B28C", + "tokenOwner": "0x6421f291D23b9c67CC084840AbCF61b4921D6f2B", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "42368920000000000000000" + }, + { + "address": "0x6912fcB46F046dF288fEde451606D89A53061342", + "tokenOwner": "0x94eCE1338Cc64F7846FA9e4D21fEC4b222908a3d", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0x029df3c597bA71Cc41a3fB6220405CA5B3Bea3fd", + "tokenOwner": "0xbFd7dE39db0edd0bB912de917E1553fe42400402", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0xF7d5a5f91Ba01984151f3C1d3cD2088e0d0b299e", + "tokenOwner": "0x55Ed66E5E8371C66bc710A4feE4e8e7Bf2d825fd", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0x7C3fBCde62A2148A011534a39F05898307Be09Fe", + "tokenOwner": "0x367580BEc03c001D76C51591C7d79914c4cc0e7D", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "860250000000000000000" + }, + { + "address": "0x00297d4FD2D3851924B932DfB64671e4E1FD5307", + "tokenOwner": "0x72Bd32a5317EF2F392e1A0D580abFC32750efD19", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "351120000000000000000" + }, + { + "address": "0x910E738D5cc30E447e6dd47019BFe28BCDfBe875", + "tokenOwner": "0x6a5092CAD87c419151C41249aF55Fe7A2ded9E91", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0xae9bA62c9c71f37498B07Dd7793a6b9576F113Ae", + "tokenOwner": "0x589079F57c6aD630bbcDbd93B9933FA0De2be34a", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2247190000000000000000" + }, + { + "address": "0x83596320cc226dF2d5D7160de7B7d1264bF52626", + "tokenOwner": "0x0C149119166d186299A8894a596106743f280B22", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2247190000000000000000" + }, + { + "address": "0x2CE973A1DDC7612F3f7aEcF6876D28fdBd9b7E08", + "tokenOwner": "0x3BFA3222b46318361649A3f35F624A6fe6C46571", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "655440000000000000000" + }, + { + "address": "0xa9525E051e19BcBC884E0600ab3d5454d6ea1aB9", + "tokenOwner": "0x673B37941AB527E0eeE13C1fF09298Ef1911D7D6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1404490000000000000000" + }, + { + "address": "0xD30381e7fEcE6D5b278c187370066f842Cd927C9", + "tokenOwner": "0xF5366a3445Adf491311a6e86443bfb5392f08265", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "842700000000000000000" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3539040000000000000000" + }, + { + "address": "0xa5b0D83534C9D1f5D20468572c49a29071f48d58", + "tokenOwner": "0x6ff2f316f2f3f509D6a0cE5C4122306Fef07a196", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1966290000000000000000" + }, + { + "address": "0x593A45169c1B639A65B1cd8eEf48D46859101132", + "tokenOwner": "0x64A2c63c932fCbD35Da5bAAe8A13a07BA5c5A8a7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x122D80065024f9d317259140d58f23D6E06216b6", + "tokenOwner": "0xccE5156f0B7053888166D3720be86deca2e7e5df", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x90d5121570aAf7d4346945d4fb82aFb7441Ce828", + "tokenOwner": "0x5556183Cb85eAaB3aB619349a69cB63EC82BD6A1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD47e6BE2Ac9B5C87c2F33c2bD17F04f7DDfF5FDc", + "tokenOwner": "0xa387Dee74b89Ed9876b9b169eE53aEfBCE70820b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3D47A9a2c43557d38025ee81937EE85e2C777423", + "tokenOwner": "0xF0c731691432e18dA2548171B8eDFD323d619AFE", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xbc28Ed95DcA74103E9c5E66313A32f98eCe183F2", + "tokenOwner": "0x7bA21eDF4ED6a33493B599ceC3Fd1650CAe99fcd", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x166678FA52C1c3140246cCEECdbB6b9f6F7d0a85", + "tokenOwner": "0x0456b573D9E19Aaa4Bfd4158181a180470E7713F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x24e3104B1c3C5aead742821515B5FF4d621D5a17", + "tokenOwner": "0x7ed97701936886ABF6B0c3e657afaC53DA6B9601", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB448F9Eb6fa28493782C992624cfEf9e3Db08dC5", + "tokenOwner": "0xB204AC1c97E6F10AfdB9ED5979Ad1BBDF29fa556", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xeFC4Eb5ac2dA5477eE1e536e58b49cEcAcEA4e72", + "tokenOwner": "0xB3297F4d3cfd0AA2A36C49a10Ebc12Dd2e94aaC5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc844D69C1C4BF828986989635Deb092b551E57C0", + "tokenOwner": "0xCcfff0A99f1764c8b0AD010aBE755fe971B91bEC", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe44149852f8379E43999f8f87D71575e6dA0CFb6", + "tokenOwner": "0x40c970EA89333747310Ea7F51855607cFc1B16D6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf64e56A386d779EBcf910b174eaC67286d0FB831", + "tokenOwner": "0x93DD60Ad6b7e25D75Bc33c8E889e595c8e8611c6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6861D7761B88663EEC8AF4fd5D5d8D6e79078d5D", + "tokenOwner": "0xCe9A5FeB93407639dbdE72bB731ea999aDC9482c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb571c6Dbe1fecd9DBc7Ca2412916869466da709a", + "tokenOwner": "0x361c5C45494e640Ff4061E5ebeCafa1e3E7EcAdf", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf370352c67d425E254003B6cD39B618AEc32dA67", + "tokenOwner": "0x7b1b471f631DCF806d4D0ade15bD78A884859711", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xdACc6207738e46Ae7d105731660674c69fC60886", + "tokenOwner": "0x30BC553aCA18694f6e5B840EF597738b90731114", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x41bb07d262075E0467F683E97C5b238197EE951B", + "tokenOwner": "0x7B203D1f2901E757088C14Ff35237cc11EFf3Dee", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x83e40603C96496310A406D9B5101CB5916a6255f", + "tokenOwner": "0xf78F007DFE38703A65C057861F129aeBC3C4591e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x71FCa3f1dbcF593e1339a77C2b8dd2f1BDF1d3b1", + "tokenOwner": "0x808A382e83f78F023e78700003bb2469B15B8d3C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x83db8953578A468f149F63c9d36a7482B75d7307", + "tokenOwner": "0x6F43dbcB1Df9D5c12a2fFb3d540C0DdA91798D36", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x58860948f119Ce9DDD54B1CF366959A1fEd2B55E", + "tokenOwner": "0x78923Be2C8848a7f0eEb0C9cE4de1f69e33b9A5b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x63e510f8daF0bCF9884D91E387A10558DAeFE62a", + "tokenOwner": "0xbC34Cb1BA30d59408Ad8f944c54DDF8c784208d4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x895FE0665Ac471743da67032d3AeE6DD48c864D2", + "tokenOwner": "0x5352a6a8d3Fedc8e40cb1281a56F9a0c0b52Bf7e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4653779AcAFffE566D36eB1F77Aa4759c509458c", + "tokenOwner": "0xFc9520677edD252b41142524f8bCe2a580B5e6f2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa1881b2D9D6842B8ec07037d496f18C56d3e3Acb", + "tokenOwner": "0x92753d0C8A23B0d5Ae231451625CcB5fC53ef4FB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5811526A0bf2bf176749175ce373d209ecbE5460", + "tokenOwner": "0x20B455EA266a0ba697bc7D0181B90011AD10CA20", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x22c1369BC5569c4F8703fABeD978402773FEFEFE", + "tokenOwner": "0xe89735a0a24B8ceAc687C4bFc76aA3843C1DCEb8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x212604b24bCB1F4D790084476F342A8c4266B467", + "tokenOwner": "0x3594c36a131cE1FB6C31C0B5f70A7fE3D53642d3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0BD12A4906E68c70AB208a620F1F4E8f8C4A5Fea", + "tokenOwner": "0x72F746A5Cd7564042E4ceaA6E135e007F661Ad26", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC359B3ff9623cCFAD61c70D24b0bFcCAf8f35004", + "tokenOwner": "0xB9a0c9D0200A08aF16b4A149b3b9d45758ad29Df", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1C94060B768429B9e92C75A628532fc6e649e984", + "tokenOwner": "0x2251CbC0AD93abA600f9f95ab1646D2402707DA6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3Af47B855AB6709869690757566c1763d8477e17", + "tokenOwner": "0x6b68Ee908C4df28cf0A161760806605ADA60443F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x93e9bD92ED2D3Df9b08D6Ea10B4238d814Ae6aF1", + "tokenOwner": "0xbc5E10b9A923d675F3fD266aFE8788bf99beD27D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB4e966c011e406dA5065A5B82257169f5AC85b53", + "tokenOwner": "0xf3e11d89b07e738F31dE12e8D8CFa0EAc7867A37", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2A94211Ad6B08F10B0f6BD9170d776eE84344f33", + "tokenOwner": "0x86c4111255Ecf09f339216004BD9b045e2948c60", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x88f114650FbFCe612C21d83e387Bc4aA04bFDd6C", + "tokenOwner": "0xcbE1CaA8CC76a28265E88190A13617b4549F3A3a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1f49dcEB58221278beC07d2a76b8a10115435ee5", + "tokenOwner": "0x00DB1811c72d9692EBB9C2451695dB0131c51436", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf7e8C1C014A2d4DeB5229296e3780ed9094af9b0", + "tokenOwner": "0xb958A3E1666B612102ba88bA31515c31285EC450", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x86C7F4b4920a09E410fAcE6E2799Df48013a2321", + "tokenOwner": "0x1D2275BDd7054DE2E7dC38E2237c748120b2De9c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc20DD7780f260aF8136C9Cca32FfeC30b0638f0C", + "tokenOwner": "0x9a45D7dd5580cb725bcF25689fb437393946DD38", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x25971185ADD739DDF9Ff3881b9014A1303011fb6", + "tokenOwner": "0xDBA1824910420FD47A9d261F2e8d43fCae8Bd35E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb71ACeB608148f54385E2f0797e3bB5808583d96", + "tokenOwner": "0xD8f673Cc4f8634FD9E18F417989F3c7897C1ea73", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf9cE51e3605c9a905d56B282fAB0c70b17b8DE48", + "tokenOwner": "0x54daa921b5cbA3b314aFcaf54838F37C171EDD2D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x59438bBB3382d17462b7BA3Ab83Aa8923cf74411", + "tokenOwner": "0x3a5F074D164DE0C5Bf33c45506ACb66379Da985a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3F2Bbbc712e5850680c365CAA7D2b9D17a7b8f6C", + "tokenOwner": "0xE41146F052662c6942be50Fae13946f5e75634DB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0331E91ef2CD8CEf7C34862B7653A090d7f0834A", + "tokenOwner": "0x7Fb705a603F357310C9325E006bA7C6E67C0bDcB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xCC95D010BeB910DD48Ab0777ec81035F0d514332", + "tokenOwner": "0x7c4C410a04e2D409DB00772E9f6Fc21687ae12C6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x629868039d484645Aa369E2c0Fdb745752f3e3f8", + "tokenOwner": "0x9BDf1B88Cf1e5620a12D78307E4B3613d87dB717", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xBeF6017982bd614dd88C4aE33F8643B3C0EE681c", + "tokenOwner": "0xf994b0748195D347A16E84D261B17a22d8D96135", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x54fA1f092E242DB7851B981cB1B0a2A7919a07bB", + "tokenOwner": "0xb747EFDeaacc65F41151037C1502aEf8f17Cec25", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD7aAE517F6765d26C4904FDF82DfcB8e232289c0", + "tokenOwner": "0x38f66C2602E58Bf1Fd4B0359222b62af03b89128", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x27f763FaF8ff7c7956f2630bDDc821F15Cea2E82", + "tokenOwner": "0xf95395cD90803a01b5c0b81830092A783A8d779E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x16B8ff45766b3Ae3fB669Eb3e82F31A40Af6eB14", + "tokenOwner": "0xAFE46aF83f9a749E3c96029472946b197034f829", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1BD395A51BF834968348730A2968fBa365336c54", + "tokenOwner": "0xAE12510a7849B3F29a07C7f7Dc94fe7bB0529b85", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x09C57E129601851FE0b988d08C1B4fb7F399c77f", + "tokenOwner": "0xEbD535D35F19f0488aF2405ef9540910000E20E9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0b7FeB8E19c0455cD05a31bd55E76883fab7BC1a", + "tokenOwner": "0xefC185829eeAB0D35eCb981494d40b78852FC550", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xec02b245efb32ABbC5A4A732781f3B9D1c0448E2", + "tokenOwner": "0x834b3c2Eb9407195aca110D2f4a571FBA14CA651", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3a7Dec92EA3412DEB4654d5A7f01D996865f14c8", + "tokenOwner": "0x1f3A284720e301f91334aa70DCbf5cFCdf6D1631", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5CECA6240601762d0a4680eDcA950e4187e8C7e7", + "tokenOwner": "0x8572D6Bdd979b8EE2e09cEb6BC55072D9E1C71EE", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA4D7503C26A82882F5E6e08B83469e5FCa4350dd", + "tokenOwner": "0x5EfEF7cE6A3BADC137AeaDbe8D709D11eaf4D343", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC92d8ecdBeebE96b2C79bDe06798481249b24fbf", + "tokenOwner": "0xaD0DE1962ab903E06C725A1b343b7E8950a0Ff82", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9eB3a6a19695d7ECfcc113a1443c00Af96316E49", + "tokenOwner": "0x8AF590FD7d82eCBA26c01d8157fB881F518Fc02C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xdC6f4A2b8ACD09bf405eD709Ca3aA96D115a079e", + "tokenOwner": "0xBb77eDa00654bb78aF2E1B9c40c14Df8Fc1e9bE9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb0Cc7B63A557b58cCc6Bc3Bc3A68366e1Ba6f06e", + "tokenOwner": "0x97B1A097a0139B8f2ec015cD26Ed8C0195A1bEf0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5d840F0aA7cC2bDE84B47f1F8Fdb07692AbbaEC3", + "tokenOwner": "0x4e160E2514dc49261D3FCf51c0D66163e3D78430", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x58E820bC790F10A4304a818F17Bbc149A7112B2c", + "tokenOwner": "0x81E7436Ae65a5d3a35793ff1b5DC82e3b12c9a68", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x11EC02156e8127c0067e4d3352032dC728759533", + "tokenOwner": "0x01e6694700Fcea08883a6378d4AD82441BfE4217", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC3cBAB4cDfF688d818D3b4A104e4230cED4E89cB", + "tokenOwner": "0xB7FFCaB06A9E3F5273dBB9AB3D44225Da362E5EC", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF50756b8e6Af7230174ECe20415EB032E10F345C", + "tokenOwner": "0xA43C9CbA478b3f32761306A07a0139D2f2593520", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x91ab351A95e0739b7E55b3eb9B932dC7593FB767", + "tokenOwner": "0x2EaD0611cD40Fc5beB0a06A5e93a6a980153E25c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xFa90440C2ba799CE4908E72B320A009727247F72", + "tokenOwner": "0x6DD4a99cdEf413B28864D43f14158A79B4A3404B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF22791BE72C9A719f48315a9034a5Ef0dC2a7a10", + "tokenOwner": "0x179A051830bffa3114eF62C29b2dB425Dc10C202", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x00e98F22198437634C62754E9a5E18AeBFc45e9c", + "tokenOwner": "0x9844BeC66Bb646DB26dDed9e3B2CAC13e94099F2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x20675D1C71c296c78c74065DBD60d8CAb8a9549D", + "tokenOwner": "0x480F16f628861eAD03CebA577f2bAC0fa4d7A569", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xBDffe43366d822168cAE8C456487F847b7d44e2f", + "tokenOwner": "0xA6793F712f6Cc7c6e5038D178509F91aa958A337", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF2b13047E93542889EEE3d56A9886E30133831dd", + "tokenOwner": "0x6Be2047Ff432cA972712F7F743f1835857663506", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "1414240000000000000000" + }, + { + "address": "0xCAf6e7d634d649b32751970d9654A06e4D9503ad", + "tokenOwner": "0x6D9A4667e14783282517D0E3EbECf29da808c6de", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "2121360000000000000000" + }, + { + "address": "0x585365F9dc3AF9EF198F4AB6974c8Dc81aBCFC92", + "tokenOwner": "0x4508205cb676A1eDd7122D2fD8975B9Ce0EfB342", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "353560000000000000000" + }, + { + "address": "0xFdb58e0D4f7201024833aEd1e1e8167b5325981A", + "tokenOwner": "0xc051c72843E97674007921eCee075f4E4Af5c0a6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "1414240000000000000000" + }, + { + "address": "0x80C26520ef6A3EFFE4847d88d721Fac5f62a27bD", + "tokenOwner": "0x46494EF7B2d64Fe15dE493477ea5c73EedE4A82f", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "707120000000000000000" + }, + { + "address": "0xfd505FDC33f832CdD82fAaC137Bd8D5dEd545082", + "tokenOwner": "0xd0e3392a75D4a9721F18db8f6C6CaEacDC14370B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "1060680000000000000000" + }, + { + "address": "0xBdb0Bf1802833C80743C284241b318f219790553", + "tokenOwner": "0x7073D95a5B4BCb1c14F64d4996490d1a2af4ca94", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "707120000000000000000" + }, + { + "address": "0x133b78772D29b8c2205Ed70368A50EacFFa5ADa1", + "tokenOwner": "0x17ec047622C000Df03599026A3B39871EC9384DB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "2828480000000000000000" + }, + { + "address": "0x569C7E2dFC93289E6C18Ae30A20907884471a1C6", + "tokenOwner": "0x7543e370eA7Af330C5Ac732D8f12f5d905225B34", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "530340000000000000000" + }, + { + "address": "0x3042FF8A28d02074c0bC8147ed2eBfb115594262", + "tokenOwner": "0x41E3FE77DE1EcA115902eB058b1FB57395358d62", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "353560000000000000000" + }, + { + "address": "0xFbaee5208A0D9C7FAec62f84ace7EfCFbf7cedc4", + "tokenOwner": "0x72e1e024D916b6DeE811d61d5f48CfC659c75f34", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "707120000000000000000" + }, + { + "address": "0x9AE4a53A3dB0cE655Ec5715603F3007904229007", + "tokenOwner": "0xb8F03E0a03673B5e9E094880EdE376Dc2caF4286", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "707120000000000000000" + }, + { + "address": "0x403dd1d2322770730A17067F24c67A56f179c934", + "tokenOwner": "0x535A76c523693a73E3bD82c77800817C6F638794", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "353560000000000000000" + }, + { + "address": "0xF94aEc43383c1e547De9eEEa8eD2Ed6bD71FA75E", + "tokenOwner": "0xEb148D59e639355671565C11ceeC6f481F4c24A3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x590DD13F0bDD296b410638b5DA0E5506B645770b", + "tokenOwner": "0xC7859967DcB964E6F06feCE32d42357Ab98b1F51", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "707120000000000000000" + }, + { + "address": "0x784989c63b30C0EC1B3C6FD4C295502153409FCd", + "tokenOwner": "0xabfD7ab432c535148E82f4F98b573583B3BeA5C4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "250000000000000000000" + }, + { + "address": "0x237cA3E3ea30364E7AB368BF195caaCF0e89B284", + "tokenOwner": "0x25AEc7c4945D7685400F534Dd3927Ac26D15210D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "150000000000000000000" + }, + { + "address": "0x237cA3E3ea30364E7AB368BF195caaCF0e89B284", + "tokenOwner": "0x25AEc7c4945D7685400F534Dd3927Ac26D15210D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "150000000000000000000" + }, + { + "address": "0xb39dC3508fC5d6F8091775ac37b0C751598baD8B", + "tokenOwner": "0xac64834617321f028ef7A10Dfb0A1A6db3C705d9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "100000000000000000000" + }, + { + "address": "0x26eD90D67B7797d45f5d7e5C75c12a42Af7FE0b0", + "tokenOwner": "0x048b499b6eFf8C0B3a67E5788b8d13AA708d3A82", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "670000000000000000000" + }, + { + "address": "0x77dD2Db5C7C9aEF3B19Df0cdE978f7FAC545F4fB", + "tokenOwner": "0x024C25d30ac38C2A1559475D37d83B7d6497A1f8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "660000000000000000000" + }, + { + "address": "0x4511CDAd96c8662BB414012dA7B5485B04dAb3cd", + "tokenOwner": "0x2592320B3Fc18fF0d6671C5C0501B8AE76f0Df35", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "644000000000000000000" + }, + { + "address": "0x8e11ED2112175391C06068bcd74cA8eFFf472C6c", + "tokenOwner": "0x12eB17604C853FC2a00CC1a98c6F682aBC15E6b2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "1000000000000000000000" + }, + { + "address": "0x818C8e447b7f41c0Cad667e7e9CfcE695571861a", + "tokenOwner": "0xf5fdd6Fb66292A95081BEA7B04322d028436F03E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "1000000000000000000000" + }, + { + "address": "0x42204D8ceea8988A715176C147ce0BF9C0cbaBB4", + "tokenOwner": "0x1a56cfb72164E72cDb3A08Fa0cAe304F778E333e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x75D5f2c7E41FAec0AeeFA41bA7B27B7f726e38dc", + "tokenOwner": "0x69C6B6c93D82D2B6A2Ef70426CFc6c33E0fE0773", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3a34f2eD0a194Ab66c0E16eccE9F32a3FFA13A0e", + "tokenOwner": "0xcfa4F507D28396a531327DF15c235d267576048A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xeA7fc34e11D77289a88ff02fA7AA3C51BDcDEfDA", + "tokenOwner": "0x36aedDBD87b092E01Ea5327eFBb619187F9A9c13", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2500000000000000000000" + }, + { + "address": "0x978732c2490Ef2aD02C21A61839CAA37587EF9d9", + "tokenOwner": "0x9a54e31807c6c8EaFDD012A412F1851e77FE7843", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1363640000000000000000" + }, + { + "address": "0xC9FB6f144A5466d423287217bDcB92B7Ba73979D", + "tokenOwner": "0xC2b4Edb2De0e549d2df1098b8119B486d5A0A8cb", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "170450000000000000000" + }, + { + "address": "0xC9FB6f144A5466d423287217bDcB92B7Ba73979D", + "tokenOwner": "0xC2b4Edb2De0e549d2df1098b8119B486d5A0A8cb", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "170450000000000000000" + }, + { + "address": "0xC9FB6f144A5466d423287217bDcB92B7Ba73979D", + "tokenOwner": "0xC2b4Edb2De0e549d2df1098b8119B486d5A0A8cb", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "170450000000000000000" + }, + { + "address": "0x825D8b44720378E3b20307035167C7a110cEb7aD", + "tokenOwner": "0x6f88d77261FF9651B4536B0c5EC7bAcb9130d4c3", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1041700000000000000000" + }, + { + "address": "0xC9FB6f144A5466d423287217bDcB92B7Ba73979D", + "tokenOwner": "0xC2b4Edb2De0e549d2df1098b8119B486d5A0A8cb", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "170450000000000000000" + }, + { + "address": "0x825D8b44720378E3b20307035167C7a110cEb7aD", + "tokenOwner": "0x6f88d77261FF9651B4536B0c5EC7bAcb9130d4c3", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1041700000000000000000" + }, + { + "address": "0x8205cbD6CeC4F2c05E4E36322293AE23dFFc34Ca", + "tokenOwner": "0x3F4F13776E6F56BD092C721E7De2F15d535B19FE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "184770000000000000000" + }, + { + "address": "0x5B6f2B4b204bAc885442b072cd1203429eB62C5e", + "tokenOwner": "0x36cd8971bE8B72fb408EF4E7fA84C0c62cC15E9F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3125000000000000000000" + }, + { + "address": "0xb349bf0C52E21638468b3b52f5a8D604dd5104E4", + "tokenOwner": "0xD86D0c3a5D84e7b6322D5D37571B47E219691e97", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "397730000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "852270000000000000000" + }, + { + "address": "0xc67989482d3b2c64664c97c2cDbebdef2002d075", + "tokenOwner": "0x3FCb4FDC45c01344805E41Fa413828b76bEcA719", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "454550000000000000000" + }, + { + "address": "0x8Ce5D954C1a6c3f238E6778AE91fBaBE6d909B8F", + "tokenOwner": "0x959919178CEff4a7bf5A1EdC653e2Eb965709d97", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "10295450000000000000000" + }, + { + "address": "0xA543F60cCDfDe37E9C8C34D57c98b2377fbaA39a", + "tokenOwner": "0x4E3543d416494155D9F385B33ac60440F70EAa9C", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "406360000000000000000" + }, + { + "address": "0xf197B5A9B7A31E68dB1b3BA44D1Bd978382d5CAD", + "tokenOwner": "0x0090dcb43bA4Ca7536c6a16552F8D7a6411F8EA1", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "607950000000000000000" + }, + { + "address": "0x1F728a834c6D2E448a39168c2fc7b1520606d5D2", + "tokenOwner": "0xd87beb25391Fdf4de6538b9bAc237E00050D958e", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "8522730000000000000000" + }, + { + "address": "0x22A45660Fb1255225e6f8CFD481C8437593A34f5", + "tokenOwner": "0x06e52AE51fA0dCE35B4C46c2CC441A94762537E8", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3314320000000000000000" + }, + { + "address": "0x5fdF02636bCf5ca9Fe26E6494B78B5C888B5A698", + "tokenOwner": "0x72A34efB62c8Dd0147df40F8ba0b9b66CBE65bEB", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "347950000000000000000" + }, + { + "address": "0x393A85cCFb3a144cc18947fEfF782BB4CBd1B806", + "tokenOwner": "0x9Aa8F928011EAE7E5466b75111175518dF94348d", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "520910000000000000000" + }, + { + "address": "0xF7d5a5f91Ba01984151f3C1d3cD2088e0d0b299e", + "tokenOwner": "0x55Ed66E5E8371C66bc710A4feE4e8e7Bf2d825fd", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1136360000000000000000" + }, + { + "address": "0x7C3fBCde62A2148A011534a39F05898307Be09Fe", + "tokenOwner": "0x367580BEc03c001D76C51591C7d79914c4cc0e7D", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "255680000000000000000" + }, + { + "address": "0x00297d4FD2D3851924B932DfB64671e4E1FD5307", + "tokenOwner": "0x72Bd32a5317EF2F392e1A0D580abFC32750efD19", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "852270000000000000000" + }, + { + "address": "0xae9bA62c9c71f37498B07Dd7793a6b9576F113Ae", + "tokenOwner": "0x589079F57c6aD630bbcDbd93B9933FA0De2be34a", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1363640000000000000000" + }, + { + "address": "0x2CE973A1DDC7612F3f7aEcF6876D28fdBd9b7E08", + "tokenOwner": "0x3BFA3222b46318361649A3f35F624A6fe6C46571", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "681820000000000000000" + }, + { + "address": "0xD30381e7fEcE6D5b278c187370066f842Cd927C9", + "tokenOwner": "0xF5366a3445Adf491311a6e86443bfb5392f08265", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "227270000000000000000" + }, + { + "address": "0xF68E6eD84443EB0405E05EBB5038d70922BDbf72", + "tokenOwner": "0x3E7821266E1b3fC1228403f9F43DEba7dAedF66A", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "340910000000000000000" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "659570000000000000000" + }, + { + "address": "0x22d48eC2AE4a5fAC3812f50a00fFb340a01CA394", + "tokenOwner": "0x10B36f3064b88dd2A98e1723BFa47D38a28a69d2", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "13636360000000000000000" + }, + { + "address": "0x22d48eC2AE4a5fAC3812f50a00fFb340a01CA394", + "tokenOwner": "0x10B36f3064b88dd2A98e1723BFa47D38a28a69d2", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "13636360000000000000000" + }, + { + "address": "0x21911524B2253776d8211B423c6Ea72B2E0e02E0", + "tokenOwner": "0xf9e12Bb234660a8a9ac853a0A6e8Ef58392ed062", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xCdC86423b204C8Ef692c93D65F9FF6577bb9F1a8", + "tokenOwner": "0x1d5Ff0AD19d3e766F0ccB11c85c20BA537412CD2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0c5F353b849054d986335ac26ebf66f7d8e7229e", + "tokenOwner": "0x9CBe7238c12d8b4395D443A669DdE4083c028F7E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4aEa38EdBe0AA9161004F819CAD6a48D7C75Ced4", + "tokenOwner": "0xeb8eFC3C27E3d25b8d02E962A35CE9F9343af06f", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xcB5578b598Aac5FE0bFe5129f64c7DCa2156Ec25", + "tokenOwner": "0x3146957D691C33961Fc54AeE3349f8ffa8eb2C70", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xcCfC643aAD83CCddDDB2A0618Ac0cFff44889c40", + "tokenOwner": "0x1a5668E20882C5809Af477dc66b543ca41121c15", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd7DdEff450482fF60DA588FBE72D58a592c2a086", + "tokenOwner": "0xb4714b616492F249B25C6c1C0F4547d361c612F4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb6dEF8021987C2A869B974c50b18679E2A3bFC70", + "tokenOwner": "0xa1BA476266740a71eE4dbA134fF9694826A12227", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4165e813656e2F145f1F572D453Ec778Be017D95", + "tokenOwner": "0x0be5149120375A4B5ba59352D55173C9B0283C3d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x16f6DB559585bbdc7Efa323E65CE18E8D3031183", + "tokenOwner": "0xd6c63D54DA7EBA813416d70A66da5F253bF36614", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc4B00edcD3429787cAbfC3a049eF0C772009F25e", + "tokenOwner": "0x010908bC865bb3b2a97e9d75788C91f92DA26B75", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb1ab8683FEE7aF50754D2B99083cDf6AF937542c", + "tokenOwner": "0x9f5f026C93Ba945d60aae8AE9ac418181Ae7B390", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xeD7266a1752D4272aF9DC571e2b5F44EE4ADA3b5", + "tokenOwner": "0x64B2c6b40dAe863b16FC591cdcec7741eBC46a2A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x054b5c42fC0AE0625109203946C5CAb3d017B397", + "tokenOwner": "0xD8E3349cD3BF58e766747dc3F743924e6184894f", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x67c2c703581321Fa57E13Fd3CCC7fC97E8e47131", + "tokenOwner": "0xf74542a9F7da9454efa010c23CD982A0eb47f8b2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7F84DC4D529c0098E0C8b3ADe75EAaE6AB43686d", + "tokenOwner": "0x6ad5e1cB11c267368507e71920eF9C91CeFc6eBb", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0086A97e2937c2E19063F1E58f4332093041ae78", + "tokenOwner": "0x0AF4aE0Dfa2E7DBcB67907B33f90aB228fCD94C5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE97453C0251e0b6bb2BF050197E118981CaF1b6e", + "tokenOwner": "0xe8E18AF89BC4555748b891A2074F52B001942804", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd9EfAe40B545Ce7c3cce6499824f4b34268048EB", + "tokenOwner": "0x30faf125f5827373b60706FF7A2B4e98f4035E11", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x40D40a976C2D15F62bd649E3AC879325347c3E21", + "tokenOwner": "0xC4f472759D3e7583BB2961017b393A961b43Fa2B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1567d5d8493BFCa2E2aA8034F4E1383d79850F57", + "tokenOwner": "0x244E33Fb326f3Db968D128B1fB6C4EDB4F6d3006", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x293456c53B0864882De417c43a3F87D4cE3D9A2e", + "tokenOwner": "0xA669E3ea4ACA96231ce8CDD563A0b23f6538a312", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4709998Aa2a5c463e3d907203B3ff9919F952b20", + "tokenOwner": "0x6B75fc97106D945688E5f78C83B1789AeF804a47", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xecefe452F548753D7A07ac1Ad13e22a6a650AFb3", + "tokenOwner": "0x08201FBb328e724409d345c5ba5885122f1f9f31", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xED12b45C9F6E260c343E114E2A56926d832bb4a6", + "tokenOwner": "0x93ef6527E839BC7ed9c3916dCEaC2F9BC6Ee0b85", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9CE2e3723f2d861fAc959ed8575e289fF8A7cf6d", + "tokenOwner": "0xd93Dc9175571497a4ea3011D3E6857bBd2ABe684", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe2f4e2269f62238CDc1dC67E7ae9E0fD54d6F472", + "tokenOwner": "0x052D5C3a06AD80940447CA2692220ceFf5DF9952", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5c5FB11A0d61b151C69537b7D51F209F406f1a86", + "tokenOwner": "0x20a608d30b77773936a3aB3529d339B61dd7CD3d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe56BEB8d0800c347868a0A802300B1b5aDcCe73e", + "tokenOwner": "0x0385C6469BaBD8d910954aBfb95bb4f980730A32", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6d9389A931FAdcB6Ccb2Cc2f8aE283d908bAE793", + "tokenOwner": "0x478daa407aE14157b926Be00B09023D6c4df93E8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x82E291B6562Ca24b9a75C5aC49D56dFdcc32Ff33", + "tokenOwner": "0x64B24b91736096e2d5c2B18E9AC27Ec7B516839B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8e813cE78cA4b8f8666a22629A842b7AEfbDE9F3", + "tokenOwner": "0x4500cf0F204327842C32e14Ccf4D631843a58f0C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x26CD67A09F00C28dd81ebCa9d9d88f9fA3aabC9A", + "tokenOwner": "0x2a5D03175323988291a5280a7222a90C407834A2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb2F827256162E539B8D086AC0A50cf17F633E562", + "tokenOwner": "0x1e96F1c7B098E30b820C3C757002f7Fb3C7B4a58", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5aCc95554B8463b044B1B89EE67ed59a0813431c", + "tokenOwner": "0x380E9bcD38AA621201B7B14231eDE711BE8cad15", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8873F091B0f238b9DeD99fBff75A699E320ad8B0", + "tokenOwner": "0x0f47A9e4F5Bd7C624532FF2c1440543939C08f9f", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5cC0eCFE27a4dd5f01E6Eb4b11799Ac74FFe8D47", + "tokenOwner": "0x7b12d2f60c07aF7dB69d281f09DC972FCac1dD6a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfC85039cD837cBFD3BA52423b2adEeecCc361EA5", + "tokenOwner": "0xE291d58Dc737F63030F52a915dDd3931450c48fA", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x09EFE67A1228540a8a9899431c4A443812833877", + "tokenOwner": "0x17ccbBBE980ecc273008B76336F6f268e0Bdcdf0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x59d125c16C352e2683F529C7fC508fC6a784d43b", + "tokenOwner": "0x36aedDBD87b092E01Ea5327eFBb619187F9A9c13", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1f6A028b9Bf71b90e86F67182599C044fffc503f", + "tokenOwner": "0xE773A20644881B963C4D9cD424D68B1730be60aD", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x81A82Af72B04cEc8420521ccd6bF56bA17c63AB2", + "tokenOwner": "0x193F81B819a329509C2425Cc3D0c739a81f11723", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc1ABBD6B2DB5e4c7BC78f7B68e1ea5BC954b95Df", + "tokenOwner": "0x978176F241cC52399730ECd0858Fa7b44d1b36d1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xCE3027F38E472b1B17fA2BA7AEBB47533D9Bcde1", + "tokenOwner": "0xFC68ae9d3380E7eA1089e65D99696040fEE429Ed", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2D424869954f17B1aC3053fd9fBAD6Fc31e5da42", + "tokenOwner": "0x83c96D6526eFd0A952AfB814C86F50Bbc922C2B1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xbB8aabEc4461704e1B542d03868f1F81D13B348d", + "tokenOwner": "0x1Cca95810A1Cd6dD316b0ce85783CcC835A77402", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4d3a8ACFb6224F14AAA227B12aB687401F49AD1F", + "tokenOwner": "0xD5a27DD69d70200043461A5A19aEE0dfDf32Ffe2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3E4c895abfAe601186f32A094ca06AC1dc960fa5", + "tokenOwner": "0xEe338A4307544f7ac4e8569311dCCb7FCC59a00d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "662120000000000000000" + }, + { + "address": "0x3E4c895abfAe601186f32A094ca06AC1dc960fa5", + "tokenOwner": "0xEe338A4307544f7ac4e8569311dCCb7FCC59a00d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "662120000000000000000" + }, + { + "address": "0x7508288996d9574A0e256fe62892ab005856b330", + "tokenOwner": "0xEceea00a2bC14c8affd427305E96743E520bB1A3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8b4793dbE39Fc474a9bbE155BD143795a10f5cD5", + "tokenOwner": "0x4c15c890B6a2547a687492a5A0392c7E51fEfB22", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF674f94D0A9F1Cbfc2EF68A2Bb9364ced6649bA2", + "tokenOwner": "0x3B31797A980a7976f8AEeFf0D182839E44CB2b21", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9643fFDf6161f6d6D2287A8d896C850feF8a863D", + "tokenOwner": "0xBDd80066c493832AF07eC9C96C929238CA982993", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x60c7b7065dE7252Fbde6a7C8179A2BFD33AE4DA3", + "tokenOwner": "0x5B906c79168445dA47B8433F354FB9eDbd470Fb1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5B6f2B4b204bAc885442b072cd1203429eB62C5e", + "tokenOwner": "0x36cd8971bE8B72fb408EF4E7fA84C0c62cC15E9F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4166670000000000000000" + }, + { + "address": "0x8Ce5D954C1a6c3f238E6778AE91fBaBE6d909B8F", + "tokenOwner": "0x959919178CEff4a7bf5A1EdC653e2Eb965709d97", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "11716670000000000000000" + }, + { + "address": "0x1F728a834c6D2E448a39168c2fc7b1520606d5D2", + "tokenOwner": "0xd87beb25391Fdf4de6538b9bAc237E00050D958e", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "11363640000000000000000" + }, + { + "address": "0xF7d5a5f91Ba01984151f3C1d3cD2088e0d0b299e", + "tokenOwner": "0x55Ed66E5E8371C66bc710A4feE4e8e7Bf2d825fd", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1515150000000000000000" + }, + { + "address": "0xAdE9E18B0BcdeD84e60322bF64B94C650D3D3555", + "tokenOwner": "0x630Aa79CfD4254390C93E9221cC3d3f195Dc716f", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1818180000000000000000" + }, + { + "address": "0xD30381e7fEcE6D5b278c187370066f842Cd927C9", + "tokenOwner": "0xF5366a3445Adf491311a6e86443bfb5392f08265", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "303030000000000000000" + }, + { + "address": "0x5fdF02636bCf5ca9Fe26E6494B78B5C888B5A698", + "tokenOwner": "0x72A34efB62c8Dd0147df40F8ba0b9b66CBE65bEB", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "463940000000000000000" + }, + { + "address": "0x22A45660Fb1255225e6f8CFD481C8437593A34f5", + "tokenOwner": "0x06e52AE51fA0dCE35B4C46c2CC441A94762537E8", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4419090000000000000000" + }, + { + "address": "0x393A85cCFb3a144cc18947fEfF782BB4CBd1B806", + "tokenOwner": "0x9Aa8F928011EAE7E5466b75111175518dF94348d", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "694550000000000000000" + }, + { + "address": "0xeA7fc34e11D77289a88ff02fA7AA3C51BDcDEfDA", + "tokenOwner": "0x36aedDBD87b092E01Ea5327eFBb619187F9A9c13", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3333330000000000000000" + }, + { + "address": "0xeA7fc34e11D77289a88ff02fA7AA3C51BDcDEfDA", + "tokenOwner": "0x36aedDBD87b092E01Ea5327eFBb619187F9A9c13", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3333330000000000000000" + }, + { + "address": "0xC9FB6f144A5466d423287217bDcB92B7Ba73979D", + "tokenOwner": "0xC2b4Edb2De0e549d2df1098b8119B486d5A0A8cb", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "303030000000000000000" + }, + { + "address": "0x8205cbD6CeC4F2c05E4E36322293AE23dFFc34Ca", + "tokenOwner": "0x3F4F13776E6F56BD092C721E7De2F15d535B19FE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "246360000000000000000" + }, + { + "address": "0xb349bf0C52E21638468b3b52f5a8D604dd5104E4", + "tokenOwner": "0xD86D0c3a5D84e7b6322D5D37571B47E219691e97", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "530300000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1136360000000000000000" + }, + { + "address": "0xc67989482d3b2c64664c97c2cDbebdef2002d075", + "tokenOwner": "0x3FCb4FDC45c01344805E41Fa413828b76bEcA719", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2010550000000000000000" + }, + { + "address": "0x7C3fBCde62A2148A011534a39F05898307Be09Fe", + "tokenOwner": "0x367580BEc03c001D76C51591C7d79914c4cc0e7D", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "340910000000000000000" + }, + { + "address": "0xF68E6eD84443EB0405E05EBB5038d70922BDbf72", + "tokenOwner": "0x3E7821266E1b3fC1228403f9F43DEba7dAedF66A", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "454550000000000000000" + }, + { + "address": "0x00297d4FD2D3851924B932DfB64671e4E1FD5307", + "tokenOwner": "0x72Bd32a5317EF2F392e1A0D580abFC32750efD19", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2954550000000000000000" + }, + { + "address": "0x2CE973A1DDC7612F3f7aEcF6876D28fdBd9b7E08", + "tokenOwner": "0x3BFA3222b46318361649A3f35F624A6fe6C46571", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "909090000000000000000" + }, + { + "address": "0xf197B5A9B7A31E68dB1b3BA44D1Bd978382d5CAD", + "tokenOwner": "0x0090dcb43bA4Ca7536c6a16552F8D7a6411F8EA1", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "810610000000000000000" + }, + { + "address": "0x978732c2490Ef2aD02C21A61839CAA37587EF9d9", + "tokenOwner": "0x9a54e31807c6c8EaFDD012A412F1851e77FE7843", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1818180000000000000000" + }, + { + "address": "0x22d48eC2AE4a5fAC3812f50a00fFb340a01CA394", + "tokenOwner": "0x10B36f3064b88dd2A98e1723BFa47D38a28a69d2", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "18181820000000000000000" + }, + { + "address": "0x84A51e38Edf25699C0Bd3E2A2d25210802340c9e", + "tokenOwner": "0xc142fBd2e1680BAEA766b60ee3f571eE10e18618", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "8143320000000000000000" + }, + { + "address": "0x750C49DD9928061Df2224AA81E08Bc4a3c334874", + "tokenOwner": "0xA6575f1D5Bd6545fBd34BE05259D9d6ae60641f2", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "55374590000000000000000" + }, + { + "address": "0x283186955D70F0adE1b4a1e2c08B374C37DE8B9c", + "tokenOwner": "0x08f962bF5f76e96a6b0a5d5DEd279aF6434F0caE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2340000000000000000000" + }, + { + "address": "0x283186955D70F0adE1b4a1e2c08B374C37DE8B9c", + "tokenOwner": "0x08f962bF5f76e96a6b0a5d5DEd279aF6434F0caE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2340000000000000000000" + }, + { + "address": "0x3E91559860079203119907F06692F22655641c96", + "tokenOwner": "0x7728927E185627A33D97B3D3d021756deC80106E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0346b0431C9045E94Eb847156C5b76a9AD7a2F53", + "tokenOwner": "0xBE90d3BCcBA84f8892851077169D885f26D2894A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc4ee2ffFC0e77713F898Dff33623ba591ABF473B", + "tokenOwner": "0xcA4f70E0f3C22f70EFd9De62F96DF357CCCc4Ef6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC8536e4fa475e60165f9FF74846b511510bf577E", + "tokenOwner": "0x585DD06add065989b839F98ad51B0AC06F2E7668", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xbff9D20891c79B445029DA688728dF825105ab8E", + "tokenOwner": "0xfDe3af486F25f5a8FB800664A60Be58202cA4377", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB68a9eA1CbcA4aEcAAeC1225d04D1644b7B57032", + "tokenOwner": "0x815612815D7fB01B1E8a97fe4A0996e77245A3Aa", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x047f6698f86D8a54a9bc76edEDD8E1a61E82F70c", + "tokenOwner": "0xa9705aF5c5874ECb49Ff2488FB36D350cc1763c7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb051896201CC4C3C839395dc4C4e5A10B015Ba15", + "tokenOwner": "0xDC637270b662f24a21BA0191bfE19aaC8f3635Ca", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8bde9304255A12Db85dd621ceeee54E441b319A9", + "tokenOwner": "0x81C6C170AB3266C7ADBF67AEFF057EA257147763", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE3E7e9ee40Cb58B2904E894F0d18840d282b37C7", + "tokenOwner": "0x5796F85DDE9ABfC2bBB28d086DEE994D970a4561", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB660D01BBa2f387bFaD0017A4c06667935464E74", + "tokenOwner": "0x1cC55d3de7e01101055926C821EDd5C46870Ec23", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2Eb89cB70795a34E031dD836BC1bCf0993A048A9", + "tokenOwner": "0xAb4Ce54363B788a9c477553545C9aE818694D013", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC723FEdd2973806692815A39Da1005D031B53F36", + "tokenOwner": "0x6c7EA81Bb46ec44720AF326a25dF1DDE93BC4B87", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3f835f7D40D24a24EE392BF7Dc05b96C470ce1c7", + "tokenOwner": "0x19685581AfDa56C1b0A47bC3e7eac7Ec976E0806", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE464Ae27Bf959C9d946d81f201FFC539c12e5337", + "tokenOwner": "0x7E4D25a480d051452005DeE1a47e182D8d26442e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3D8f7C6eBa6a2cf1BddfB0c0Ef5fE894A4ac0918", + "tokenOwner": "0x742A7b943546B61DFE7408bcd51A0A6D8F91FcD3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xCB4fB2F09B961a0Bb34c6AA2911b0f2E9555d2Ca", + "tokenOwner": "0xe2171F09B856648a482e34633e17AA859F83C3e2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4920F9dbD99b38c29279dA97E2BfF57b87E358a3", + "tokenOwner": "0xe964B155ce588a546594f1981d068E2d8927b428", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x82DaE16Fc731478f5DDaCe2719a10E186ea76744", + "tokenOwner": "0xe7Ad8769B63B79f7A85716877b2aAe134034Ec4F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB3EB5daDBb02C87245EF833939025Ce142149535", + "tokenOwner": "0x13f0f6e87a671Fb6368D00124902328E970c1300", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF8e57B2Eef4132E11EC9E4206A4a97CEAFDD8eec", + "tokenOwner": "0x6e5AB10Cb48232E95E871873D02d7aa38F8C0e27", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6E349EA506bA382e01A71030Ca85f674F099F7E3", + "tokenOwner": "0xe151487F8f14aA7AEF0F509F24e483E2CD957F2d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5dAd202Af40f05679292560C32d15269c4a2498d", + "tokenOwner": "0x091684d9252ad7CcDf959F3C7519f930d1A67051", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA6c7F6D7867BA98276E59d4635B714C22fd4F97f", + "tokenOwner": "0x58DA7927E04382C6Bf98B28F8dB126f4a87B241B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x487F7Fb35ccb850adeeF73f943644F1Ff2913952", + "tokenOwner": "0x3bD2AC32D09E15BFf39b90d564ACe693a6827127", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5980fEe66325446fA24dDFe25a2A1b209112f966", + "tokenOwner": "0x972bc9d6279F79be0BB76Fd6db530b7f9d003436", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0D555EFFddEc10Ec8Ad8eCeFCE3926855aa8E6E6", + "tokenOwner": "0x5fB7E558cEFa2eFbB589Cc65c5F455AE4FA52643", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x570a50E0d34fb2253dc003bDd43ab8FC2E488426", + "tokenOwner": "0xb57494d785bb27E3cd7dF618dC8F014BAeb539b0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9B4FE742855e5f5c62395080b37cfc728DA930d3", + "tokenOwner": "0xAa049329959F7952ffac25Db2A62FA8909B0AC1D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6FDA6C7cdB654D8B5E754EDDd8Ac5AE4663a1b9f", + "tokenOwner": "0x5E5ca22F828aC31DBF7e28dA67be2aF9213E59D5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9216ADABDE1dBA73456d85631bE45Ec510235BEb", + "tokenOwner": "0x1fefb443A2d599377e13D2df5383e461C38c47Ec", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x774EB2610a85e17eB5aBA6b62D851a608dC7F251", + "tokenOwner": "0x2e76b816AA3accF2E64d7b4CE36b0854887A7Df0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0B7452F73E032F7cF8871e0f51764a060500f4Ac", + "tokenOwner": "0x71430B08eBA9eF1eBeAED53d9fa9Ee5F6523161C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5b9f90470526b9d804FE7426270e896553318CC5", + "tokenOwner": "0xf6388858448c64cc24F7f23C118573d9817Bb10F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xbb0bBc74a3Fd548149B6467ACEcC44a92F2b8c20", + "tokenOwner": "0x7536EE855c22dd4D26aa7b9D338a004e0cD0352F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC3b75A0a27d166c8F305382472e1A99CfBaB3E9a", + "tokenOwner": "0x08B0B51F6dBBe6E23A35bEdffEf60B479c77e666", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6Eb2815EF8ba7FcF2493E76f7510b93563e37882", + "tokenOwner": "0xCa5fc1C7E1e367A49f389cD883d40e2c8960ad22", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x70aad170f4FF503E03d57ab8DD25bd780184918E", + "tokenOwner": "0x7A65642275aA46e8829cAb125e5044ca91762B7e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xDc13a24A040a8222E77a40Cb4d00d5562696dF8A", + "tokenOwner": "0x80F8bd325300c323b343C064Cb137F5f1bF794bE", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1a0e54c9822E7f48195C179738b65019b59C759C", + "tokenOwner": "0xa749382e65b185AA0Dd92356C69F2553b0A13f24", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6cf0B65058Ea6DDf878f2a40B652D386D43c7a71", + "tokenOwner": "0xFf9B742a780A74C7C8B9683346ce393a11cd8596", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xdEd5A10B8EBa40e8e9137eeebB014dEF68De3D87", + "tokenOwner": "0x509911D6e9F7AdC7A4e5abDcB202cD2625eAc904", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA48566E55d39E4b34378219c4b733541B739e47E", + "tokenOwner": "0xA6B90b599f9B8407b7586d9D31A80C0e8BCF4c3C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1fA731bAb47c934874dAA6E7cb0f4977F5f46c90", + "tokenOwner": "0x4dD2630673CaF604072D6aef696B66909BAab449", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9460a08386c26431Dbe144D7680179e67CC4BC4B", + "tokenOwner": "0x3e0139B9ad9a16e8ddB0d8eae98d4026EDf0de67", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfdad6A160C868Dc8B43fe0DE117138a8c5c313B3", + "tokenOwner": "0xE0527E1172553F795d7F6431a5514213a6b3086f", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF68E6eD84443EB0405E05EBB5038d70922BDbf72", + "tokenOwner": "0x3E7821266E1b3fC1228403f9F43DEba7dAedF66A", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "458720000000000000000" + }, + { + "address": "0x4602C2f54ef18626A050E9e91bafE14745612513", + "tokenOwner": "0x97Adbb84cB4d646A5FD5f1e96d436b636c0F0DCD", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5504590000000000000000" + }, + { + "address": "0x4602C2f54ef18626A050E9e91bafE14745612513", + "tokenOwner": "0x97Adbb84cB4d646A5FD5f1e96d436b636c0F0DCD", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5504590000000000000000" + }, + { + "address": "0x3e8B45eD46bB0fCA2D3B30EB59c28f8938Caf6BA", + "tokenOwner": "0x4Fa33DEe23964E9D2710e7930f254EE37b1B7293", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3058100000000000000000" + }, + { + "address": "0xEd40f47A2fb0c7FafA785dC39ad8397780a5bFB4", + "tokenOwner": "0x1407794c92E2EFCa86F2a00e8a0866aFD1d4a811", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "8562690000000000000000" + }, + { + "address": "0x3AF0bAD3077309Fd4f436fFB3F586ff26070C265", + "tokenOwner": "0xfa552a903B554B5202E44a3387360394F217d13a", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "24464830000000000000000" + }, + { + "address": "0x4FE5119624FeeCF4a70Bd299f613B8fa10F8f79F", + "tokenOwner": "0xD4C7564d16eB91e6D7B4A9fD5eDDFD1e28B3d8ed", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "7339450000000000000000" + }, + { + "address": "0x8eFEde87368d232B93F59D92b19b2e30ac8f7490", + "tokenOwner": "0x25B485215fDAEC072bE30a27F01F6beb206aF075", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "7951070000000000000000" + }, + { + "address": "0x9E49459D10567E923cdE7E7B0aBE68c9d1dF3931", + "tokenOwner": "0xF236ec459dC3Ec556270aaC4a14e3E4D8A364c3D", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3058100000000000000000" + }, + { + "address": "0xaA4453c91FC96A5eA0a4D2E04e8351fe18d4d8D0", + "tokenOwner": "0x2c97336E33AEb9cFa11Ddac6224D609d7D88fB09", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "9785930000000000000000" + }, + { + "address": "0x393A85cCFb3a144cc18947fEfF782BB4CBd1B806", + "tokenOwner": "0x9Aa8F928011EAE7E5466b75111175518dF94348d", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "700920000000000000000" + }, + { + "address": "0x7C3fBCde62A2148A011534a39F05898307Be09Fe", + "tokenOwner": "0x367580BEc03c001D76C51591C7d79914c4cc0e7D", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "229360000000000000000" + }, + { + "address": "0x00297d4FD2D3851924B932DfB64671e4E1FD5307", + "tokenOwner": "0x72Bd32a5317EF2F392e1A0D580abFC32750efD19", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1146790000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "688070000000000000000" + }, + { + "address": "0xAdE9E18B0BcdeD84e60322bF64B94C650D3D3555", + "tokenOwner": "0x630Aa79CfD4254390C93E9221cC3d3f195Dc716f", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1834860000000000000000" + }, + { + "address": "0x5fdF02636bCf5ca9Fe26E6494B78B5C888B5A698", + "tokenOwner": "0x72A34efB62c8Dd0147df40F8ba0b9b66CBE65bEB", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "468200000000000000000" + }, + { + "address": "0x5fdF02636bCf5ca9Fe26E6494B78B5C888B5A698", + "tokenOwner": "0x72A34efB62c8Dd0147df40F8ba0b9b66CBE65bEB", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "468200000000000000000" + }, + { + "address": "0xeA7fc34e11D77289a88ff02fA7AA3C51BDcDEfDA", + "tokenOwner": "0x36aedDBD87b092E01Ea5327eFBb619187F9A9c13", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3363910000000000000000" + }, + { + "address": "0x1F728a834c6D2E448a39168c2fc7b1520606d5D2", + "tokenOwner": "0xd87beb25391Fdf4de6538b9bAc237E00050D958e", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "11467890000000000000000" + }, + { + "address": "0x5B6f2B4b204bAc885442b072cd1203429eB62C5e", + "tokenOwner": "0x36cd8971bE8B72fb408EF4E7fA84C0c62cC15E9F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "840980000000000000000" + }, + { + "address": "0x283186955D70F0adE1b4a1e2c08B374C37DE8B9c", + "tokenOwner": "0x08f962bF5f76e96a6b0a5d5DEd279aF6434F0caE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "743120000000000000000" + }, + { + "address": "0x22A45660Fb1255225e6f8CFD481C8437593A34f5", + "tokenOwner": "0x06e52AE51fA0dCE35B4C46c2CC441A94762537E8", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1070340000000000000000" + }, + { + "address": "0x8205cbD6CeC4F2c05E4E36322293AE23dFFc34Ca", + "tokenOwner": "0x3F4F13776E6F56BD092C721E7De2F15d535B19FE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "248620000000000000000" + }, + { + "address": "0x910E738D5cc30E447e6dd47019BFe28BCDfBe875", + "tokenOwner": "0x6a5092CAD87c419151C41249aF55Fe7A2ded9E91", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1834860000000000000000" + }, + { + "address": "0x978732c2490Ef2aD02C21A61839CAA37587EF9d9", + "tokenOwner": "0x9a54e31807c6c8EaFDD012A412F1851e77FE7843", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1834860000000000000000" + }, + { + "address": "0xf197B5A9B7A31E68dB1b3BA44D1Bd978382d5CAD", + "tokenOwner": "0x0090dcb43bA4Ca7536c6a16552F8D7a6411F8EA1", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "974010000000000000000" + }, + { + "address": "0x711Ffe399c652DA4dE848dAfFCA1f9f202417b39", + "tokenOwner": "0xcaf162bB571dEea5d3dF4B8486DC9b6C8BFF30f4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xFBD65dC7CeBAcAfb57bd6cf1BC166bAcEE6C02AE", + "tokenOwner": "0x4d987662D9A4241A7aB81F882C3d3145039BfE98", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x43be2EA8d95bE0BaaF44a362a922Cc41651aA1B8", + "tokenOwner": "0xc84b97a45AfB9762bDCd1e6bf8f54338a2431715", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x38c1eC49713bdDaD4da0C1742A289736Ae1C1cE2", + "tokenOwner": "0x6769Db65b692bd903a31314887db726caF5F9a99", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x69C0d93a6ded205Aaa4Ca1364B10581c03c736Fb", + "tokenOwner": "0x9e32e3f66b80Ea385993FAC1F24ded79d6b023c4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x536a93aE2161663977057ab4cCED0027D5576C38", + "tokenOwner": "0x40469121F023e7EC8252ad0EeA05c31234c3E2c3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x62c40B797781828f5f159a6872189d4d9640473e", + "tokenOwner": "0x2311FCE9a87Ac11eD753122Ada8AD269cDe6e194", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xED6C9ACeC74eFB302C40352d9099b9c1fE796eA4", + "tokenOwner": "0x14634c4d90Bed083E97eB4593618F7aAb9Ca7d44", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6f14c1352Cd225e84A21501ca79A088c81827Bb4", + "tokenOwner": "0xF9F679bf82370CB3e05F8152EB504304bDAb0314", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x694BaCE23f01e99eCD72DB02bB84925B58a6958A", + "tokenOwner": "0x41bDe61497712dfC82f4ab196Febf8E8ee93A07E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa9234cEef7f3a6B4D4974BC63f969Dd98f1942a1", + "tokenOwner": "0x8ad0690604357F6dfc5Ed63704D569DB9F201766", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5c7E651Ab0b5694f02EB72BF6Be9459115ff4ec4", + "tokenOwner": "0x51d7aa9018361A5E41508916Aa90249A3e738eB5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x283186955D70F0adE1b4a1e2c08B374C37DE8B9c", + "tokenOwner": "0x08f962bF5f76e96a6b0a5d5DEd279aF6434F0caE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1686880000000000000000" + }, + { + "address": "0x1d9f4010e22eaa54d6FA811EA081BBC4D2C24349", + "tokenOwner": "0xd62057F68323265d150fA0863Df211382625C192", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x25E4Dcd8Ea9344CfaE373Af7079E85BC969b094c", + "tokenOwner": "0xfdeff1298C7D34DefB633c7f6C2042CfCAA05402", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2e7dE8e636D5000b64dC49411A91401104EEddDc", + "tokenOwner": "0xEB7abD5e72B820E0a330699d99bF5c0DF76e794d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xadB363F00B6fd8C5098f41C51B9CF344cD2d163F", + "tokenOwner": "0xAf6aB9e64f0Dc20f40F7cD6e342f0ab4EC2CB4cB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x509316dfd428Ab59Bcdd9f3F6C9Dd0d5FCf52b01", + "tokenOwner": "0x401Bbf7Cb1D274796E85A3dF167a931B9Db682bE", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x26ab117DE73e3Fa16C8608Dc4c5f0D7cfAa2E89C", + "tokenOwner": "0x516a84c75A73a0e99fC0a87A28a9cf879F246DE3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x86599C44E2aB6b1FDC1bC354E565e6D6D9CADFA8", + "tokenOwner": "0x507Ed1f64caf206a247057B3eD05c46e799d0690", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xde57fCE6224DD0E992C919f85Fc545BDd1605B57", + "tokenOwner": "0x84094802Fcf8AD25033C3DFF8cec71aC3fC7F06d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x137403Ae72aCBacd4090653134ec2e5036c34DCe", + "tokenOwner": "0x08B933f28B3712dc113DE96406E909A015fF5037", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x52a6a09c487F89D4360CF119F8b5c9e184dF244B", + "tokenOwner": "0x6566061F2691AC1bE2204F184d82398EC656E73c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF66b58EA9271a350D0C6Ae1123Bde82Ff5a9a87b", + "tokenOwner": "0x5813Be85d5EE982E91eC967e6E04dA804B0766Df", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x56874109542430c38EB202119141F4b4d055f427", + "tokenOwner": "0x4D26f0e78C154f8FDA7AcF6646246Fa135507017", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd8F8a13aBFbF0f38F2030d0e660B3C05AA283B0f", + "tokenOwner": "0x15ee15FFd82Aa89137c35268d35Aa3954626B413", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9ac964FB0206f442fFeCb796770274c377468bc7", + "tokenOwner": "0xF126a887206794Ff4107ccec3AFA056f7c69C027", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0158ca6957bcffae7e7B6d2D7d1cfE3F77EAd04b", + "tokenOwner": "0x701D74F0e1A103ca3883FC5D0eF922338389E4bC", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5FfC195e47CACBc2fA1C82aA22F6a3cC54A4d46B", + "tokenOwner": "0x7eeC5E2e309C0C7498B1792DD7a33a6B607b18Ed", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5B0bb764b93Ec951BF5e64475eEbD7ea9C5A6466", + "tokenOwner": "0x15579f74c1B93B573C0a4d865011EC68f909FD02", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe6C20A1F0675d91A3c2dE8418af8205cC060cDAb", + "tokenOwner": "0x5f88e6681C8ccD7B01644818C30D917f1f229f26", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb1c8909e142B838b1f11c652d9D26BD85a492d54", + "tokenOwner": "0x51ad0D3e3d77700094626CC97FA86ddAF2a7E1cE", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB85b846ce34C859d45bbf11f935fD15AE8A975f9", + "tokenOwner": "0xE3F5622739cBde5C3534627dD0bE861a51614452", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf7007F8474DD2ABbcFe1A67702fd700d88805E57", + "tokenOwner": "0xa10b8f547C919Bcadc9fFf56EE6794a487A404A0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD914a33252D9A6464a5B2Fa0c72f342005f19030", + "tokenOwner": "0x0Ca82768386fDF00CBe59debBffC1c062EDdAaD5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF8fB667771275CD9a0A2815a99864F831Eb74912", + "tokenOwner": "0x1E072C85b84DedA7DB0D24D8Bb60a21E7eE7DDCD", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0EF90B403cb3561E673bEAc4A9a66222b693A41C", + "tokenOwner": "0x45EE860bbf48D715f9aD87DC7F948e046Fe48322", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x722F952C414C7C0c9B3ff040fDe47b759091c8FB", + "tokenOwner": "0xF571398416D7111F0c380467a74DcE696c67c664", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7237cD3372FBCfafF2e0A20cceFccBeD655602ec", + "tokenOwner": "0x56193f242ba2F4316f770C0646e61342d820E2D8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x482F8480e0c5c475CFc50411E9517Caa133021Fb", + "tokenOwner": "0xbddB3C40CFfD2E833BeF46b6F42AaD8E8780F32E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB48DEfa8C7E921dDF61CC47f712FA57f338627d7", + "tokenOwner": "0x123E3A2eCB0E3931B365e3b29882Ef17dd851Ea9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xccdD5D546f0174c0562b887A92787D5B61Ada5b2", + "tokenOwner": "0x7846AB9F900946775C079dA7734e2B98a2865cB4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x978732c2490Ef2aD02C21A61839CAA37587EF9d9", + "tokenOwner": "0x9a54e31807c6c8EaFDD012A412F1851e77FE7843", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2941180000000000000000" + }, + { + "address": "0x00297d4FD2D3851924B932DfB64671e4E1FD5307", + "tokenOwner": "0x72Bd32a5317EF2F392e1A0D580abFC32750efD19", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1838240000000000000000" + }, + { + "address": "0xAdE9E18B0BcdeD84e60322bF64B94C650D3D3555", + "tokenOwner": "0x630Aa79CfD4254390C93E9221cC3d3f195Dc716f", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2941180000000000000000" + }, + { + "address": "0x5fdF02636bCf5ca9Fe26E6494B78B5C888B5A698", + "tokenOwner": "0x72A34efB62c8Dd0147df40F8ba0b9b66CBE65bEB", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "750490000000000000000" + }, + { + "address": "0x22A45660Fb1255225e6f8CFD481C8437593A34f5", + "tokenOwner": "0x06e52AE51fA0dCE35B4C46c2CC441A94762537E8", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4289220000000000000000" + }, + { + "address": "0x393A85cCFb3a144cc18947fEfF782BB4CBd1B806", + "tokenOwner": "0x9Aa8F928011EAE7E5466b75111175518dF94348d", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1123530000000000000000" + }, + { + "address": "0x1F728a834c6D2E448a39168c2fc7b1520606d5D2", + "tokenOwner": "0xd87beb25391Fdf4de6538b9bAc237E00050D958e", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "18382350000000000000000" + }, + { + "address": "0x8205cbD6CeC4F2c05E4E36322293AE23dFFc34Ca", + "tokenOwner": "0x3F4F13776E6F56BD092C721E7De2F15d535B19FE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "398530000000000000000" + }, + { + "address": "0x7C3fBCde62A2148A011534a39F05898307Be09Fe", + "tokenOwner": "0x367580BEc03c001D76C51591C7d79914c4cc0e7D", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "367650000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1102940000000000000000" + }, + { + "address": "0xeA7fc34e11D77289a88ff02fA7AA3C51BDcDEfDA", + "tokenOwner": "0x36aedDBD87b092E01Ea5327eFBb619187F9A9c13", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5392160000000000000000" + }, + { + "address": "0x5B6f2B4b204bAc885442b072cd1203429eB62C5e", + "tokenOwner": "0x36cd8971bE8B72fb408EF4E7fA84C0c62cC15E9F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1348040000000000000000" + }, + { + "address": "0xF68E6eD84443EB0405E05EBB5038d70922BDbf72", + "tokenOwner": "0x3E7821266E1b3fC1228403f9F43DEba7dAedF66A", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "735290000000000000000" + }, + { + "address": "0xF68E6eD84443EB0405E05EBB5038d70922BDbf72", + "tokenOwner": "0x3E7821266E1b3fC1228403f9F43DEba7dAedF66A", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "735270000000000000000" + }, + { + "address": "0xCE1356A7338eD024C30DDdE9642249C6d1DB1A89", + "tokenOwner": "0x5fDD6242BA46b140d49262f6FfF5266acB531696", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x590E78178a35716dAB859845A314B580091D66aE", + "tokenOwner": "0x36D6fDaf6dc78dDfDCeAa0C945237141f68E9dB8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6181A9F87C29b0912800BF05F3B2e979fA1a56b6", + "tokenOwner": "0xe33A14b6025Cc5B7a84B4535E9743117448229E3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc1d8fCB886c4B565f4D9c1A51B56595F200f9b28", + "tokenOwner": "0x291DBD5Da2164927015a8D79984eaE30A23abeF5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7a6AAf21a712699b3A5B47c2289Fb7361276e285", + "tokenOwner": "0x6Cb36E292d1A590603EBd822d8c826799a1Bb836", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xba837CaA7D28c09C9AFe5588535a0450E778bd09", + "tokenOwner": "0x0Ace679b02Ed83F1799a8056b993fB0D949E47Ae", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD87753de4A7F0654D1A07fE1FF0Da3D6742D2879", + "tokenOwner": "0xf4a1B0496ba5135d3cA7C4DBDDC8d76C7BFc1E8c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x27AdeA2F6B11652E062F5122abe6d7AE114b0175", + "tokenOwner": "0xFe2F3c6146506393922d61354779aF6e2dcaf43D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xECA7D386aeB4125DCC87C75FD9791367D7113A93", + "tokenOwner": "0xEd7DB4Fcb58A43d8583Cd8D96670611336f1cD69", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe23355302E68B5bA19dB705E1B9C7cf0800460FF", + "tokenOwner": "0x8298Ba8432Be7B9D1354Ab8e4aBa8984969068cF", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd8F9D4B0FE8c54E3505486F089e8Da239B382866", + "tokenOwner": "0xDAEA843454D0A729273633aE6556b99e225A5688", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe3505f0cB564Da142be236f34DaAA9ea7d4F7fb9", + "tokenOwner": "0x5b8BE2994A09aC6Ae9BA8385645DCaC61EFbAE1b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb871D40B10410d569Cd8bb7FE2c512182985Bf84", + "tokenOwner": "0x5dc77BdD3d7f670a15714f2D9E5a82b09D7A6885", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x870fDC8E940A0064ac40d2C57A1c575e5f034D63", + "tokenOwner": "0xCd61a0f81f7E86338a44D462ddB8DD97F51f561B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x69a3207610A03BAf74e5d72b3c151a0C2ce0B233", + "tokenOwner": "0xc1B8C0323311A3FfD93837DAd43f37D16ac89633", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6DE9f5cfDebD2875D8b2F28578FE7a6dFafe772d", + "tokenOwner": "0x14A887BF6Adce514753FC81De8a00187A1a7b47a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x90D7aa7f22aDE353bF77b27a918bA2411D09f964", + "tokenOwner": "0xCceeA200668750aEeb155d2C609D8223B054dbD5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1D297A4A7Bb820b4Ff866701395A462144732a83", + "tokenOwner": "0x88e86917F4b0b737023dFEc8aD9CAC47554F7E0C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6AE8dE1cB78ADA60B4b4353FAA75b8A7Ac3319F5", + "tokenOwner": "0x345eC2DC4C3c3036649B8d347eb99c5C014eeEA6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x16dbD3d02cc2082DAfb7F092dB91638e4d7980Cb", + "tokenOwner": "0x2591FD8ba7f07801EE44A3d96E68Bc3A25Cb6558", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xeFcb68255DDB1738152e6016fEAF804Ce05DD2A9", + "tokenOwner": "0xA51151Da768389BbB7168153649Bf0a372Be5acE", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3D8670d4Be66C9603ABf9863386DDf26BD6b3969", + "tokenOwner": "0xaB6144BF00De25b43FAcFD4447ff018924CCEFB6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6035E9A0000f30A782B2DFc7AE852D06Bb67a99c", + "tokenOwner": "0x135022bD21375CEebecb756A5EF1cC6b91400162", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA6B4039E2017d9e913AfA3603182AdF83704D4e4", + "tokenOwner": "0xDd1e134Beee63513D29B81D147fc3F60b64eeAAE", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x343265bDB6F5Ba5E00e9378bf8ffD64A5916ba11", + "tokenOwner": "0x51eD1eD2D5369a7C05Db29863b459a4387A01B9e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE0F26c362C54d714C9147b3f297bBFC44f2aB372", + "tokenOwner": "0x10B36f3064b88dd2A98e1723BFa47D38a28a69d2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x70EE25c276bfA2763Ea27aD0E0CB0fe398e7586e", + "tokenOwner": "0x38A36E3fac1bDB2Af25E263EadE2bfb24a9cdd1B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x30a4E1598E5776d3B828Ab31CefB6ddCC3c8d9e6", + "tokenOwner": "0xb2e11F218fa9eDa2e4857fe95A667c351ce8186b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x61BE3776b2C618f104E0197DC0241762C8a27260", + "tokenOwner": "0xAE1dBdF6c8d1737DcB36BA821710d5D680D92cD2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb65e157a9daF2FeabF62E328fA131a544d46C07F", + "tokenOwner": "0x9cA8D5720Efd15bf286Af0DFB1BE7E98EBC4F16d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x533f9bF531C64AC66bdFd218d6FBe0042460588a", + "tokenOwner": "0x1926FdAc2D85E6730fC9Cb231ef2237c4d5cCc0E", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2405850000000000000000" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4662420000000000000000" + }, + { + "address": "0x283186955D70F0adE1b4a1e2c08B374C37DE8B9c", + "tokenOwner": "0x08f962bF5f76e96a6b0a5d5DEd279aF6434F0caE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2160000000000000000000" + }, + { + "address": "0x22A45660Fb1255225e6f8CFD481C8437593A34f5", + "tokenOwner": "0x06e52AE51fA0dCE35B4C46c2CC441A94762537E8", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "7113820000000000000000" + }, + { + "address": "0x8205cbD6CeC4F2c05E4E36322293AE23dFFc34Ca", + "tokenOwner": "0x3F4F13776E6F56BD092C721E7De2F15d535B19FE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "660980000000000000000" + }, + { + "address": "0x978732c2490Ef2aD02C21A61839CAA37587EF9d9", + "tokenOwner": "0x9a54e31807c6c8EaFDD012A412F1851e77FE7843", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4878050000000000000000" + }, + { + "address": "0x393A85cCFb3a144cc18947fEfF782BB4CBd1B806", + "tokenOwner": "0x9Aa8F928011EAE7E5466b75111175518dF94348d", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1863410000000000000000" + }, + { + "address": "0x00297d4FD2D3851924B932DfB64671e4E1FD5307", + "tokenOwner": "0x72Bd32a5317EF2F392e1A0D580abFC32750efD19", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "8130080000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1829270000000000000000" + }, + { + "address": "0xAdE9E18B0BcdeD84e60322bF64B94C650D3D3555", + "tokenOwner": "0x630Aa79CfD4254390C93E9221cC3d3f195Dc716f", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4878050000000000000000" + }, + { + "address": "0x5fdF02636bCf5ca9Fe26E6494B78B5C888B5A698", + "tokenOwner": "0x72A34efB62c8Dd0147df40F8ba0b9b66CBE65bEB", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1244720000000000000000" + }, + { + "address": "0x1F728a834c6D2E448a39168c2fc7b1520606d5D2", + "tokenOwner": "0xd87beb25391Fdf4de6538b9bAc237E00050D958e", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "30487800000000000000000" + }, + { + "address": "0x5B6f2B4b204bAc885442b072cd1203429eB62C5e", + "tokenOwner": "0x36cd8971bE8B72fb408EF4E7fA84C0c62cC15E9F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2235770000000000000000" + }, + { + "address": "0x94d427BDFAc6cddB8d3690690F93993b9a1F961C", + "tokenOwner": "0x0503aa71C4117983cbcb8C51316a146a671847C8", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "6567160000000000000000" + }, + { + "address": "0xdc576C1455a54a8816057fBc290cC256D8D7fF16", + "tokenOwner": "0xF299674eeFEa658eaD0CA7245eBF5e3315682DEd", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x478b4b330Cd9C984A39603E71feA546a7B84BCf7", + "tokenOwner": "0x5d480518fda995163517e46190c92e15DaC75fEB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x76Ebce89B3c43f903948C805511366aAFB7592FA", + "tokenOwner": "0x8235488883722dFfa6FDc1be09B9B02521bA9978", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x19057685fC88009048bc8Eb36573a6A2d9225D87", + "tokenOwner": "0x9Bd033B35e9c65D97A75B831aac3AFF299399f5e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xBd81B519BD20Fb8B789e8CA3f46Baa66aC39935A", + "tokenOwner": "0x532E89eb248f76D7F57cB93bA6D499B837E7358A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE6530D6fA9B51014E75689578609eA38c21F292C", + "tokenOwner": "0x59CE6f2a3510Aefdc1B58C74453744568B3ad7a9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0FCe38aBd3579b4C98d30d51FA5247fb75693506", + "tokenOwner": "0x0f51bCF5d941591D669C1c458a36346e035272d1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x141B5856c8452963226a9d8F5B757Efeb00E672d", + "tokenOwner": "0xF36557067035cEe151EB5d08b6F28253Aae615F8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF87a5d6a09361A851384b9cF9bf38Cf68caC9671", + "tokenOwner": "0x6a5092CAD87c419151C41249aF55Fe7A2ded9E91", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xdaE2161FfE986765C1926004475d9C2502A4801A", + "tokenOwner": "0x5F9c0D6971b3efcA2301f49645001fc76bA55b40", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x31d995455095AFFE850C80225D763955B375927C", + "tokenOwner": "0xe652F107A83245f5D09A7e657E42dcD04e15f833", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5176D663C86f598374fA47651876aBe6A829663D", + "tokenOwner": "0xd313cCBC1505550dEed53d5E69701e84E7C963A0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6266708A1058aEdd38be5C7B4BF7E0908000dd97", + "tokenOwner": "0x4807a6913a4C35EbdA87d5f9BbE86b56c29C5181", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x43E3550f1E3043555379A2d3A417532903bc25bb", + "tokenOwner": "0xD7655258d3f1F2b229f8324baBE49452b05F85E4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4f8d1F0194B4C859Fd24B1aA61825b937D7bd585", + "tokenOwner": "0x5Fe8F2529E7802aC364a83C9F02d548ceB89AD42", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1285370000000000000000" + }, + { + "address": "0x2C43eA3fD72600D9546dbE1fE1f5A7D31C7FfBd5", + "tokenOwner": "0x0CF9D16383e41FcFf5d24205D9bd763cF4d262Cd", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x152eb86A9565b0D863Ca96bdDB9a5d8e3505F4D1", + "tokenOwner": "0x484427621853a5c6c8C1BE2a55b399b046a403E5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x899FA6818EBaaf7178bf383acA661a7a1a59ABfb", + "tokenOwner": "0x05297D71bD58dBa2841cA86AB3c48bdF94c4F42c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1432B9b077A8D19708c13987C1aBaFf304DF8632", + "tokenOwner": "0x9b89EdD0E4de61c4b4168ED4Bb1E353b97957644", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xeb9369Cea75Af6B3d4c241cc9536D56167a0212E", + "tokenOwner": "0x84FBb470205EcC4089898c17BeD8C92eA6dC5683", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "887100000000000000000" + }, + { + "address": "0xc67989482d3b2c64664c97c2cDbebdef2002d075", + "tokenOwner": "0x3FCb4FDC45c01344805E41Fa413828b76bEcA719", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "6557380000000000000000" + }, + { + "address": "0x533f9bF531C64AC66bdFd218d6FBe0042460588a", + "tokenOwner": "0x1926FdAc2D85E6730fC9Cb231ef2237c4d5cCc0E", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "11188710000000000000000" + }, + { + "address": "0x10A8aB2cb1c05528820787Ebf25a311DFDFa3E7d", + "tokenOwner": "0x6908fFf053389f9F0B7B53df307F3b1E864408fe", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0fAC203d7a353001981B80d9828588B3E7e5c7ef", + "tokenOwner": "0x63398CD94887b0Ef35251208D4477AB45C663d91", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC1eFf57D4dbc4013BBAffdD9eE0d6fFE46Dc3622", + "tokenOwner": "0xEDFE8725534f8E8577Da01FBf6C971aBde967D97", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA2Da6F39b89F8eF9B7F9Bf7A957aAC5b47d7E77A", + "tokenOwner": "0xde46f66810756A52E31e332615e3a217a8A71141", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7c6B0184E2Ff3589b9C3c8A4cD459cA6E0D4960D", + "tokenOwner": "0x88fA7ea9FB02D783294dd9CF2F4351baF9d5806C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x90c9e90e3a7c59C44ffCC5864CFe2bf3Bb26F04B", + "tokenOwner": "0xD4577dEEf9DD48Ab91868096235B3c66eD3e77E0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x21b5b6B6645fe34B9Dd748D4898477b62bA76E51", + "tokenOwner": "0x1fb3679739F29e04625DC1ed91f651040247bC5e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x55fEfFF8A55dA4f756cEF00D4A8935b74a273648", + "tokenOwner": "0x323d53A492A0d134c6394F1053aDE85DCeD9e0cd", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xbCBb43568C0216423294bC7e3C926Dead418667b", + "tokenOwner": "0x566d32017CD57D3dE65f0657aA1bA613b1A4c696", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb9D84AE46a7F2dDfc79F9Cf9545C8b4387fD88CF", + "tokenOwner": "0xEd09C97b91e8fC6d34FDe6503f64A01a6b8684c6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "3641670000000000000000" + }, + { + "address": "0x367049d6Ab1Ba7CAAcEE51387B97d407558ebF19", + "tokenOwner": "0x303E471F89A1921B3C9E64C7c31FAcc9fA8B67Bc", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1901120000000000000000" + }, + { + "address": "0x978732c2490Ef2aD02C21A61839CAA37587EF9d9", + "tokenOwner": "0x9a54e31807c6c8EaFDD012A412F1851e77FE7843", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "10000000000000000000000" + }, + { + "address": "0x00297d4FD2D3851924B932DfB64671e4E1FD5307", + "tokenOwner": "0x72Bd32a5317EF2F392e1A0D580abFC32750efD19", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "16666670000000000000000" + }, + { + "address": "0x5fdF02636bCf5ca9Fe26E6494B78B5C888B5A698", + "tokenOwner": "0x72A34efB62c8Dd0147df40F8ba0b9b66CBE65bEB", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2551500000000000000000" + }, + { + "address": "0x22A45660Fb1255225e6f8CFD481C8437593A34f5", + "tokenOwner": "0x06e52AE51fA0dCE35B4C46c2CC441A94762537E8", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "14583340000000000000000" + }, + { + "address": "0x393A85cCFb3a144cc18947fEfF782BB4CBd1B806", + "tokenOwner": "0x9Aa8F928011EAE7E5466b75111175518dF94348d", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3819580000000000000000" + }, + { + "address": "0x1F728a834c6D2E448a39168c2fc7b1520606d5D2", + "tokenOwner": "0xd87beb25391Fdf4de6538b9bAc237E00050D958e", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3750000000000000000000" + }, + { + "address": "0x8205cbD6CeC4F2c05E4E36322293AE23dFFc34Ca", + "tokenOwner": "0x3F4F13776E6F56BD092C721E7De2F15d535B19FE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1354170000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3750000000000000000000" + }, + { + "address": "0x5B6f2B4b204bAc885442b072cd1203429eB62C5e", + "tokenOwner": "0x36cd8971bE8B72fb408EF4E7fA84C0c62cC15E9F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4583330000000000000000" + }, + { + "address": "0x283186955D70F0adE1b4a1e2c08B374C37DE8B9c", + "tokenOwner": "0x08f962bF5f76e96a6b0a5d5DEd279aF6434F0caE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2970000000000000000000" + }, + { + "address": "0x22d48eC2AE4a5fAC3812f50a00fFb340a01CA394", + "tokenOwner": "0x10B36f3064b88dd2A98e1723BFa47D38a28a69d2", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "17500000000000000000000" + }, + { + "address": "0x62Bf274Dbe069542DA5E4E8370B4576f8747406C", + "tokenOwner": "0xA9a4FBB7da516cd9902eC69f759910Fd2A68df99", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa097E62407C5a7fA8191Bee1f0bE25f93DBb8c51", + "tokenOwner": "0xef7bcea48819a6706F99dAdcB6C86a406a22Ec74", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd114B29edd00b8aD1C835dCd753bDeC941a9f812", + "tokenOwner": "0x630Aa79CfD4254390C93E9221cC3d3f195Dc716f", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf694db26A949dd4Df73e424Ad554a6a3fBB8d2a4", + "tokenOwner": "0x3eD3018E6433BDd7605F886E061874B3184D0014", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x668A29E096e048Ba14cB2836220Db593483568CE", + "tokenOwner": "0x8E9935504736e1716a9b64FE65791A59bb8B2A99", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "916670000000000000000" + }, + { + "address": "0x7C3fBCde62A2148A011534a39F05898307Be09Fe", + "tokenOwner": "0x367580BEc03c001D76C51591C7d79914c4cc0e7D", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5000000000000000000000" + }, + { + "address": "0x590ae1024469baA766A411256dC35d1D9963088F", + "tokenOwner": "0xB14663C794Ca65289C693edE8980d09138fc8fb2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA6197299D70967418595B581E0872D552d0e9C81", + "tokenOwner": "0x76273D12405f642571a30F74F010C0Da58297a4c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfB96A79Dd0b3206542228Ccbb771b9fB28dd5EB3", + "tokenOwner": "0x22A30e9C16d0529EaD78aB9438a8eB7fBa4242BA", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xcae1C4AA7565dC4Ac9F536CeF98b9F06d4AC5C13", + "tokenOwner": "0xC1AB8632e3f7fF2b62BcFC5c5DEba3aAA21799c9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x032B7893c1E08C93e30186213F83CA1E42181EC5", + "tokenOwner": "0x76666b604465c9b30A833BfFA6938F5d6c00BccA", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x28FdB55519a9bb3E3af98C952Ad49c3a08372441", + "tokenOwner": "0xa9a08FC23E5b82a5f2B5764118eD8dDE913051A5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9d01b4c7f85a160433D3f713BDfA26709826fb33", + "tokenOwner": "0x49397B64Ef9C577274488BbBd1Fb68554F852225", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2115D38c0a6BEeE4B94B68cB3F043DDA8498f2e8", + "tokenOwner": "0xd570b2AE0f6C08979Dc246e1904dd2c7058888d2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x676F96C9f4Dd8C745526D3EbAe08Af103A5d5E57", + "tokenOwner": "0x12b73269787f985B014174840E5232bB4e089562", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x82C3105d7885Eec06D3491aAc6b28a432FAb7DA6", + "tokenOwner": "0xA6e8201f6DCc83bb6962476Cd206DAF9fC4Eb60d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x60bf17928505D6595d988f2f18666257242E66C6", + "tokenOwner": "0xB5ef123c901bbB84583E3Fec3Db2147CFF91ba86", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfE3B517Ba7fF4D848f2bB4c36F81641f4021274f", + "tokenOwner": "0x9b0E3e2568868d8Ed5be8982989b6631a822e56D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x884753351B597DE46a0C77525AF04EB24d050A1B", + "tokenOwner": "0x7b0B109258fA7382EC81A2c76eC0451fA16A8664", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9Da1c9D6A2E4366c6e6fE32C93d333732dE10B13", + "tokenOwner": "0xEcDAbd15A1a5C5a9b508E687F927A86FF42b873e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0DB7D5f9d6dc9637D24F6f23cc59Fb9Fa9d36C5f", + "tokenOwner": "0x2F8E4Fc8e10C5D0025db3a2A8c76e5335671Dcd4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x49Cfd6FF97a340c28e6F3555188F07dbeAA5CE33", + "tokenOwner": "0xdE522Fc8c866Ff83b7e2582DdfA14421100912F7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xCfdcB1Abd772A959bE23A590D39d12327693Ad80", + "tokenOwner": "0x6E3E5b17B3ca6142117Ba7c75741db086026725f", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x76D276001cc3F13fD0B21546399123FA5006DF11", + "tokenOwner": "0x4bb429d6C90d6449C2912B4FaA687C7B4A6ace00", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "916670000000000000000" + }, + { + "address": "0xCA9708E1e9Ef73FD950d30BDACe444B0728FbF32", + "tokenOwner": "0xCc61735328d0036D99Ee79301183406be9851EAA", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "916670000000000000000" + }, + { + "address": "0x873bFE637278427a9F6048a2086bfa5439A66Be6", + "tokenOwner": "0x0228dF362f5a1f15e5a7980B85FFca8E96dF8bC0", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "916670000000000000000" + }, + { + "address": "0xc67989482d3b2c64664c97c2cDbebdef2002d075", + "tokenOwner": "0x3FCb4FDC45c01344805E41Fa413828b76bEcA719", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "7407410000000000000000" + }, + { + "address": "0x22d48eC2AE4a5fAC3812f50a00fFb340a01CA394", + "tokenOwner": "0x10B36f3064b88dd2A98e1723BFa47D38a28a69d2", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "19444440000000000000000" + }, + { + "address": "0x00297d4FD2D3851924B932DfB64671e4E1FD5307", + "tokenOwner": "0x72Bd32a5317EF2F392e1A0D580abFC32750efD19", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "18518520000000000000000" + }, + { + "address": "0x22A45660Fb1255225e6f8CFD481C8437593A34f5", + "tokenOwner": "0x06e52AE51fA0dCE35B4C46c2CC441A94762537E8", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "16203700000000000000000" + }, + { + "address": "0x978732c2490Ef2aD02C21A61839CAA37587EF9d9", + "tokenOwner": "0x9a54e31807c6c8EaFDD012A412F1851e77FE7843", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "11111110000000000000000" + }, + { + "address": "0x7C3fBCde62A2148A011534a39F05898307Be09Fe", + "tokenOwner": "0x367580BEc03c001D76C51591C7d79914c4cc0e7D", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "10185190000000000000000" + }, + { + "address": "0x5B6f2B4b204bAc885442b072cd1203429eB62C5e", + "tokenOwner": "0x36cd8971bE8B72fb408EF4E7fA84C0c62cC15E9F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5092590000000000000000" + }, + { + "address": "0x393A85cCFb3a144cc18947fEfF782BB4CBd1B806", + "tokenOwner": "0x9Aa8F928011EAE7E5466b75111175518dF94348d", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4244440000000000000000" + }, + { + "address": "0x1F728a834c6D2E448a39168c2fc7b1520606d5D2", + "tokenOwner": "0xd87beb25391Fdf4de6538b9bAc237E00050D958e", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4166670000000000000000" + }, + { + "address": "0xa51e1EC51A907553BB7d8536A359c6d2Ccce68e3", + "tokenOwner": "0x2aB63E93704112B92722811C44c086311876D678", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4166670000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4166670000000000000000" + }, + { + "address": "0x5fdF02636bCf5ca9Fe26E6494B78B5C888B5A698", + "tokenOwner": "0x72A34efB62c8Dd0147df40F8ba0b9b66CBE65bEB", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2835190000000000000000" + }, + { + "address": "0x8205cbD6CeC4F2c05E4E36322293AE23dFFc34Ca", + "tokenOwner": "0x3F4F13776E6F56BD092C721E7De2F15d535B19FE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1505560000000000000000" + }, + { + "address": "0x00297d4FD2D3851924B932DfB64671e4E1FD5307", + "tokenOwner": "0x72Bd32a5317EF2F392e1A0D580abFC32750efD19", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "18518520000000000000000" + }, + { + "address": "0x258a5ECe8A48ffb201352A91cF14522865D5BD89", + "tokenOwner": "0xe3526495EfeE7A23F7F508933d46783655Bb4e54", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe07Afd23A6ef1a551D9f89B695d53D5aF2e53943", + "tokenOwner": "0x6984eA93cD419cC7b6d963906aC613B61375aBA2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8100c3B4c069C4E26d29998f530E707684e4fb78", + "tokenOwner": "0x78C4842Cb8db6353c4f85386452D2cDE6bf2AEa4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x64F39744D83289814EF75823497923563E475dd2", + "tokenOwner": "0x9510b41A45d81d7585cD9d71a34047D17eB9a209", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0d41417FFb2a5DB2A3383fEe3600C373246F1A0E", + "tokenOwner": "0x1Dc8F99Ae0489760749577c9AcC022e517865bfe", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x986B4F7A600Ac28c28EC7eBEF6EBF1b75c19109a", + "tokenOwner": "0xd17987b252197D2bE8Ba7b87C3ee46dc14515d79", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9E3788ab7bc15b0843F1B8D32aB972Ae32Fad338", + "tokenOwner": "0x092c0F3213Ad36e43317cf12a525461E75057d6d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xdF0bDC06FC8456b2628c6fbceDD280843322dDD0", + "tokenOwner": "0xbA3a7dA26Bd6e79669433BB07C4d70ab0F8988D8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa5948c2bA3e25120A74EFa796b0e598FB8217884", + "tokenOwner": "0x29B7b4E5B4db5BDe2a52616Dbd3959B671835AE7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF1b0d2aff4aBDB867f6B2c0C67318d21822518ed", + "tokenOwner": "0xC6dD21f85A530Af4D2B49b419FF22E5947d5FBB5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB502400bC06a2140f7977a1a10FDE7AaD64D1677", + "tokenOwner": "0x5BaBeBc6c628D5959fB5Bd7289340A84Ae43E67C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xFC687cf1179e646EE7b3455064f96321Bda49001", + "tokenOwner": "0xbAc51E4cE346E98ac941CAb5956c82fEF567A659", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2CB14A84b075212FB8d53b33d431F428412CC3fd", + "tokenOwner": "0x5eC7Dcc6291f6a0f39A603a84b0F1958B1fC0a3A", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2291670000000000000000" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2830730000000000000000" + }, + { + "address": "0x2CB14A84b075212FB8d53b33d431F428412CC3fd", + "tokenOwner": "0x5eC7Dcc6291f6a0f39A603a84b0F1958B1fC0a3A", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2291670000000000000000" + }, + { + "address": "0x029df3c597bA71Cc41a3fB6220405CA5B3Bea3fd", + "tokenOwner": "0xbFd7dE39db0edd0bB912de917E1553fe42400402", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "25000000000000000000000" + }, + { + "address": "0xD3b5812519878ee39DE514611C71AE5155cbaA03", + "tokenOwner": "0x304F4aEcB7D4007550900075E590A3Ef4Eb20197", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xacA3b5beD1f7132d078aE3e98529Fb61eB118CAd", + "tokenOwner": "0x99679f6c76d4bdb3082Bd4b944437ECee93D596A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5CA6BFce2F44467ceF05F73d2A595B00941B636a", + "tokenOwner": "0x6B1E6AD2Fe1E250F6b36f7bDb73338B65b781830", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6C4d8CCaf1B6fCBA0e034f8E9A4320978D2DEe29", + "tokenOwner": "0xBbF41684984145889408a5aDc7285081496349c0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x19FA3fD6Cf0ed6C04Fd506535E823BaA077AC473", + "tokenOwner": "0xfF5C421aa007Fb64D6e3e1e653Eb8cC6B63eB9CC", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb7DF961019F74EaE8dF50c1F2B58452E5A971f13", + "tokenOwner": "0xAE7FfD4526ddf80a6b5357a4D7B18fad14099Bc0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xEB1EE6378f52d4D349D9A641fC6c58fEae7c70e6", + "tokenOwner": "0x776A49416e82eF692BA03D09b88f99669e775e87", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6744AF06b1A94e6F1d18d69c442a64E1Ed48927d", + "tokenOwner": "0x8d753B4939C3A9E85749FD3C927d54d75E4541Eb", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc7E2f97da8DEc66AF7A8AC97fc7618CA35b1836E", + "tokenOwner": "0xbc792693F6257322ff4A2478D971E59B5d011a5F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xca4F7e41ED3b718992d37d3e463Bc77c457959D3", + "tokenOwner": "0xA4eC51a9630120AAe20dD2D06defA97d715fEEdB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2556520000000000000000" + }, + { + "address": "0xa51e1EC51A907553BB7d8536A359c6d2Ccce68e3", + "tokenOwner": "0x2aB63E93704112B92722811C44c086311876D678", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4891300000000000000000" + }, + { + "address": "0x00297d4FD2D3851924B932DfB64671e4E1FD5307", + "tokenOwner": "0x72Bd32a5317EF2F392e1A0D580abFC32750efD19", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "21739130000000000000000" + }, + { + "address": "0x978732c2490Ef2aD02C21A61839CAA37587EF9d9", + "tokenOwner": "0x9a54e31807c6c8EaFDD012A412F1851e77FE7843", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "13043480000000000000000" + }, + { + "address": "0x5fdF02636bCf5ca9Fe26E6494B78B5C888B5A698", + "tokenOwner": "0x72A34efB62c8Dd0147df40F8ba0b9b66CBE65bEB", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3328260000000000000000" + }, + { + "address": "0x8205cbD6CeC4F2c05E4E36322293AE23dFFc34Ca", + "tokenOwner": "0x3F4F13776E6F56BD092C721E7De2F15d535B19FE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1767390000000000000000" + }, + { + "address": "0x5B6f2B4b204bAc885442b072cd1203429eB62C5e", + "tokenOwner": "0x36cd8971bE8B72fb408EF4E7fA84C0c62cC15E9F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5978260000000000000000" + }, + { + "address": "0x1F728a834c6D2E448a39168c2fc7b1520606d5D2", + "tokenOwner": "0xd87beb25391Fdf4de6538b9bAc237E00050D958e", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4891300000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4891300000000000000000" + }, + { + "address": "0x22d48eC2AE4a5fAC3812f50a00fFb340a01CA394", + "tokenOwner": "0x10B36f3064b88dd2A98e1723BFa47D38a28a69d2", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "22826090000000000000000" + }, + { + "address": "0x37897CbDBDb5b9Bda2F6F9eE561A30FFA36cE383", + "tokenOwner": "0xfa26c9c7cB27bCfD6a96e9c2a819A8E83A00d2aE", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x914dc2F940052B2833D9c7981cFF078D9edD0642", + "tokenOwner": "0x5abE927427296A8cB471BD5bf1D07a7d0E2AA334", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x41e6b2Cf4a1deeDAaBdEB2c00401b17BC754746B", + "tokenOwner": "0xfBfDD84C0E335Bd94ab2a27b2F25a46b87326C40", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1C2489b28d7e6FB478fE56d5D923ee6F02e70dBD", + "tokenOwner": "0x8A583dD8aFe3e697a794FB6E6d3448B53D15a8A8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x50A10ae58415380AAd443904B4A20484808F15DB", + "tokenOwner": "0xBF28AcF3bB20552912Ba9Cfd32028F3Aa67bC41c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x842e0255cf7931Ca9B492a5EA6fea2859d239F8d", + "tokenOwner": "0xE93709A5d4AFA46ed6A2D1B4D93dd13137bAbcB9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0038a65375866816B5Ed4cCB1BE515CcD6391059", + "tokenOwner": "0x92565D3C6E454178901E24Af0fB039eAD2694786", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x533f9bF531C64AC66bdFd218d6FBe0042460588a", + "tokenOwner": "0x1926FdAc2D85E6730fC9Cb231ef2237c4d5cCc0E", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "32561530000000000000000" + }, + { + "address": "0x00297d4FD2D3851924B932DfB64671e4E1FD5307", + "tokenOwner": "0x72Bd32a5317EF2F392e1A0D580abFC32750efD19", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "25000000000000000000000" + }, + { + "address": "0x22d48eC2AE4a5fAC3812f50a00fFb340a01CA394", + "tokenOwner": "0x10B36f3064b88dd2A98e1723BFa47D38a28a69d2", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "26250000000000000000000" + }, + { + "address": "0xa51e1EC51A907553BB7d8536A359c6d2Ccce68e3", + "tokenOwner": "0x2aB63E93704112B92722811C44c086311876D678", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5625000000000000000000" + }, + { + "address": "0x2FF9819bc18779724FB7165a8A05D6d5e7Aae88c", + "tokenOwner": "0xc33D45d7EE2b019fC8299292ffc5875E7f9974E9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3B535fB4AeD81F622c4adf2e6337Bb8c44DFD2fa", + "tokenOwner": "0x43717F00D4eFDF4060A020360d17214a685AF424", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7387Ac3395F01C179d73D211FBBdb921aC7A88bB", + "tokenOwner": "0xDa529b02bc7fc07d37c353321A81d2546e2c4d98", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb5402569FE2f6cB11bE50788D0Cb616610115B79", + "tokenOwner": "0x58E452385aAf4BBb2bEA781043c319fF18f38d05", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE63D0c3162c839e2dE79892309A3c6C72BA4A42E", + "tokenOwner": "0x07aF5e7e043266dD520026540Ac049ef3D5f8ffC", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x13D532158c4F7f2ABBA603B43FD25A1A94a03A85", + "tokenOwner": "0x20DDfBeD1C168b8A1b1eb0845B3a8d0D2e3ddAA7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6650Ebf56AB71D6D122225e6755bFc6d4E987cA6", + "tokenOwner": "0xaEc5D0ce22090ec39706d3F8B312579bA952cb20", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0C815c93f73Aa488F6C0a510E64cAbE1020C765C", + "tokenOwner": "0x60DB546917BaC6f30A9D2A77d681b933569602e7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0c664A1232414F8BD23C6d1c0CBf07963835F7aD", + "tokenOwner": "0xaf23bFe09055319f352aF6f7664a6B2B4352aa3F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5fF6C114Cd5ea61eEEbC5A6c2592e2A07B6994aC", + "tokenOwner": "0xEcacD1009747e56DD861f0b205a1138B2AeCe315", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xde5066c20400C6256dd64383e93a07337aCf544b", + "tokenOwner": "0xc4b74Ae89Ef93E683fB4AFba8e118d730313D45A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x61f81c13b08884f9c3e9282C0087516714194025", + "tokenOwner": "0x0e5c49Ee6030Fde7a79019496D2C8Ee012E6aBDb", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x703D845062A966eB72C08a23380244f582312dc8", + "tokenOwner": "0x30A001E7ac69fC1e904dee89dA4c88ed505AfDbd", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x240503Dc5561612A913De18999159381175E5267", + "tokenOwner": "0x65d3c39A17bCf1D689dC7F08FFfB970826b05FE0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9aB8Ab0fbd498e7775BF81a546CaE8f794E61289", + "tokenOwner": "0x660a220f4D2b0446142b3f0B566f366Aab1f4594", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x95Ac0366eC73b5047667949cf9B2b0d85c41Be82", + "tokenOwner": "0x99Fd39A3E5619E18EA68eDc4CA088eF86A77d1cd", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xCeEDF9B5F38a5C7362B821797F8e90444569c1c8", + "tokenOwner": "0x8618B1825Cf79ADEdb029650c671838b92D583e9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7aBD0aA1a2bD00F823215D4aEC93C561F18bB9da", + "tokenOwner": "0xc3f142ADb9cE62C4545A00b0dfC5A1aE6e1Ce2F4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x129B5D9bE90A5Fc81C67dD50e072347625800DeD", + "tokenOwner": "0x03C25c81E480BC73Db92bD71b04c25167891D426", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x29500C6261843346648e2e7C80505541e7d274AC", + "tokenOwner": "0x586634c272DFA3894Ee9B99836541DeE35660F34", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3f91e07D0F9426608F050f98e71dc30F1139E627", + "tokenOwner": "0x7fC530B07D5B4cE4D31255a2Ee23aF254Db12932", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x51A026e82b36a88B5387bcF0d764421812906905", + "tokenOwner": "0xBe2a6795aDD5B0E539dCee4d717022E22e5bCd94", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB08D19E411a260F73548F5d492E287b14920e971", + "tokenOwner": "0xBc4d531548A2dc3E43a851b1a15261780d8B8177", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd1ADB21Cf137022acb2A58a365B029982BD0bFA9", + "tokenOwner": "0xBFf597A4B09FC7E46Fb163Be978D51A9F198D0E7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xdE63D0cDf73cB3Aa3094228E8582daae6943852E", + "tokenOwner": "0x009418f00cD3c001533f273Ff24a9C8585d9E9FF", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x310287059c1e7F0c81EE9Ba34Edb624674756093", + "tokenOwner": "0x79b85fE8FDB4B78C601236B6eE46A8954e0EBaA6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x418a97e517EbD136bc027e2BF6A277DBDD5A8a08", + "tokenOwner": "0x3B651c07951033F03B7e6690CA6DC391615D6cEB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB6c5e36865297d98D8BCd883C812a62462F1E75C", + "tokenOwner": "0xa30b28ecDb2d21a86C0A7ABbAc717A25975F56F9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "23968600000000000000000" + }, + { + "address": "0xE357CcdcC96Dba24b1e8709886d3c65044058cD7", + "tokenOwner": "0xfC819bf9aEE46893B57F9AD99dc489ed9438b9f2", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "113636360000000000000000" + }, + { + "address": "0x687634cad20797fb807BE2b66880938b768b611b", + "tokenOwner": "0xd7E167AB2A4bC910619ACB0CC36B7707Ab8816d6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "119922070000000000000000" + }, + { + "address": "0x533f9bF531C64AC66bdFd218d6FBe0042460588a", + "tokenOwner": "0x1926FdAc2D85E6730fC9Cb231ef2237c4d5cCc0E", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2405850000000000000000" + }, + { + "address": "0x86aA85533BD2F7EE389c012D97500ee1859092F9", + "tokenOwner": "0x2780eA09c5846c14899daBf85166DB23B6f85A51", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4761900000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4891300000000000000000" + }, + { + "address": "0x5B6f2B4b204bAc885442b072cd1203429eB62C5e", + "tokenOwner": "0x36cd8971bE8B72fb408EF4E7fA84C0c62cC15E9F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5978260000000000000000" + }, + { + "address": "0x1E2aA56e2873E3C2635800D580e899A62BE4162A", + "tokenOwner": "0xf1716804D3F6CF2D86f285b68C9a178E6479C0a8", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2500000000000000000000" + }, + { + "address": "0xE9480120Ba7E578d7D46Ca4c7Bc269Fa7DF2f197", + "tokenOwner": "0x5079ab67891A5910F7c1b2F9F470932B02696E6e", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "50318180000000000000000" + }, + { + "address": "0xa51e1EC51A907553BB7d8536A359c6d2Ccce68e3", + "tokenOwner": "0x2aB63E93704112B92722811C44c086311876D678", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "34656050000000000000000" + }, + { + "address": "0xc67989482d3b2c64664c97c2cDbebdef2002d075", + "tokenOwner": "0x3FCb4FDC45c01344805E41Fa413828b76bEcA719", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "44220230000000000000000" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "30143000000000000000000" + }, + { + "address": "0x606D4d0702f8eB198feD822d648C3EA23f36639e", + "tokenOwner": "0xf9946E5463AcD2e66B8215bE447975Cd18f77E00", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xDf42de3046492235475e21E142b0237BEbb171bF", + "tokenOwner": "0xb8D188EfCfc9b30d53cEb8bd9f833629481c4b47", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x083BF3C2005fad92a66207018C9A75cBc09aA26F", + "tokenOwner": "0x13A7A67899D51796C703c8C6dADC2c7F17f3eC14", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xba6366ff32eB00A4bA2FFA72fA37a22b14aB02E8", + "tokenOwner": "0xd3bDBe640731a6f7579BCd5f981768D598b36Ebb", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x34aD8bE61B8Ebc936D888dc83c550a7Ccb569D37", + "tokenOwner": "0x60b9C7ABC89c4F4397844436541AA8D5Bec74578", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE8797F165C8AfB2CA158820b6440964ac3034898", + "tokenOwner": "0xa5824a8f9e997e50B62B5E4130B4605B6D5404Cb", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6D759e4EaAf9d1b056aA83309943D6007208B877", + "tokenOwner": "0x1201146421e388Af214a310beFec3CBdc14bD8AD", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1929b88Ea6F1d9acbf041a3C6a3F3EE4D98400FC", + "tokenOwner": "0x1AC9f25566149e5C7CdE1F5eDBc8E9Ddd1DCeE43", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x88813E0228117D1368565Ab83a919AF0ddfd70D1", + "tokenOwner": "0x43ac15Ef091Fb8737f0A57DB7d22B4CFEC366F35", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7b37D301013d69aaC5249413Ee3175B9FA889A19", + "tokenOwner": "0x787B7C09FAD2751e4efA4d3649AC107bb5482870", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8D59627b163BeC92a7C125f9A69CCF3558988E2d", + "tokenOwner": "0x5eC1C1cE599F523320Ce7341c42e23785aF8EE1c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa4c40B8Cb99A8739B9120745776b9362363ABE02", + "tokenOwner": "0xc1f87F65CF67A532f4C6056bF3C121752Fa0eb7A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xef6d9D950E18574828b93F92D91f9B6aE2dAD403", + "tokenOwner": "0xDf3DF11fE0972BB92220F1210650f72fB9913378", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd7a58d4EB09586078fE7C9a53b2C9E156CDcd077", + "tokenOwner": "0xBdBec62514af2fEBBD82107b85ab7DE0333870f5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf533386F46016B5F95B168361b81465Af8Cba3b7", + "tokenOwner": "0x58c81e126861b3336FBDCE6c18f27fC16a8ebD09", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfDDB050Fc85FFfd3520e495617a4211E2a4B6071", + "tokenOwner": "0x682fEC4c543059b81ef870d6371625EA6de136eA", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD64B720240AE85533AEE8D2d0a968d72a5B593F3", + "tokenOwner": "0x8B0933Fc20731D6166031665BFe1475a00f85c3A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xDa8e6365fD5C56b83a262dBDDc2a2019ADDf267a", + "tokenOwner": "0xB38307f1E85bCe5bD080AeEd181f8B4D7F38f731", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x13C5821130FB6488D82e51C74f494083256C5D9B", + "tokenOwner": "0xaF445430A00A33eaA44cc765d62286B0f048Bca1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x161a617f9c7b360DEA64880a11cdd34c6cef151B", + "tokenOwner": "0x02FBf6b7795ADDBc04013361f3A57ec60285036C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xDeEB2273369D922B29814decfe924e366C108A35", + "tokenOwner": "0xDfA2A74e77ADED5DEA2Ad853A09F31cBdbc4D068", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF5C6298cF3CAaCD54918198fBBA42b0D7caCd391", + "tokenOwner": "0x55AAaF10A642bD98Eb0de1Ba8C151F68F6A45694", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9dB3961B5Bf4b710641750b61cca166605cD0740", + "tokenOwner": "0x77a94444c6aE749b6e111EA310FDA5cc40FE542c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x07476EDf327b7Aab23a03ECE92CE91CCad384F2b", + "tokenOwner": "0x75Dc3E478e9F00a40cCaAaC9F73bd0f59CC5AFE3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF8A7A245136Be5b480440AcA0bB57764642D185c", + "tokenOwner": "0x4818bdFD79124Cb56E75B49B0F40ad49f0396B4D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8b62f936937735740F8d9D0614e01126de66B318", + "tokenOwner": "0x67D572C21f31f78A88E40C0d6332Ae7a9688Da0f", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb1552416a7e99D8374Cf7cbA0D5BAe4D2fA6A372", + "tokenOwner": "0xa1a8730060e85EF39822Ef54Ab5bccB60a80145C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x22e4e1268876C8954113Cd7eE875ACBeB75F50Ec", + "tokenOwner": "0xbFd7dE39db0edd0bB912de917E1553fe42400402", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "5000000000000000000000" + }, + { + "address": "0x0eFB8a55C8E5e54a6A2c3fcB5ac7e356Fdb8aC1B", + "tokenOwner": "0x8629B2FE72a58ED38715bB402e33c283F44C95cC", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "17030770000000000000000" + }, + { + "address": "0x687634cad20797fb807BE2b66880938b768b611b", + "tokenOwner": "0xd7E167AB2A4bC910619ACB0CC36B7707Ab8816d6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5500000000000000000000" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5250000000000000000000" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3888750000000000000000" + }, + { + "address": "0x5B6f2B4b204bAc885442b072cd1203429eB62C5e", + "tokenOwner": "0x36cd8971bE8B72fb408EF4E7fA84C0c62cC15E9F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3437500000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2812500000000000000000" + }, + { + "address": "0xc67989482d3b2c64664c97c2cDbebdef2002d075", + "tokenOwner": "0x3FCb4FDC45c01344805E41Fa413828b76bEcA719", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2500000000000000000000" + }, + { + "address": "0xa51e1EC51A907553BB7d8536A359c6d2Ccce68e3", + "tokenOwner": "0x2aB63E93704112B92722811C44c086311876D678", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2812500000000000000000" + }, + { + "address": "0xF15cb91763F413DF305ed74Ad67386B56e44F003", + "tokenOwner": "0x1792B37136054779F9bA6bbF5563a825E487157d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB996eF9d8cdb597A4504889639E3D8759f4bEa5D", + "tokenOwner": "0x69c17496d389f6F4478CA280afb11f2FD16e285a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x84a0bC09f4A613FE7e5F6F55aB219C4bE5CA62A4", + "tokenOwner": "0x773E3ea3e36d12C39d7D34b0A7f114a56344b7cf", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x082d7c7565c5F70fBBcbD75833E8a2617922a8f0", + "tokenOwner": "0x0461352e2231C9F7AF16c7F2208131220425377D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x139a3DC9e46b7aa96520fE15826848a7b1Cb147c", + "tokenOwner": "0xf2eC9c21d2b7693573dC3b8aB90C704f1d36925c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc4e3c6c9DCE51D54404AB6C4a3531b34d4e68c49", + "tokenOwner": "0xa2C1B0A027288C9984cB3cd7aAE79529C7Fa671C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x940fd137725B05b3F9f5BFf784D5012880Cd7A43", + "tokenOwner": "0x08F8b1f232408B99Cb72fC2cAC308281513dc116", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE0023AE13265B83Bd97690583C78ad640fACb8A1", + "tokenOwner": "0xBe70Bdb132d5d30FbC1664efa8DCBf0C300ce13c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC4E8442327FEA2d8B70A24555B50BCF5B2005c2a", + "tokenOwner": "0xaDF7562A6763307fad86214bDe430DFe429f7B84", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf6c17A46360b490c58c67c6104b1e9fa55809EeD", + "tokenOwner": "0xA6313fCC4C101d81BA28F0A141d7a41A906C1888", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9a381192c669Ef5c4805164300172E7e46DF9492", + "tokenOwner": "0xD6760bdEf7e06640988559159Bb579b92fe2Ec4C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2Ff75376896aae1acfB6a8835A2Bb9845111d024", + "tokenOwner": "0x88ede20d971E7ce2d4Fd4f9C3744d28c028855d3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfB9FdF467041116B48bD6634D49D103b9294971E", + "tokenOwner": "0x34e3797DB9263Da7820Fc71bf4dA222929ed3bE4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xCf120691EA74D245F6748DF78A5ffA463eAA5651", + "tokenOwner": "0x88cfE0cF4909d54dB1d81748467a48aB5Aa7863a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x274992c529115f13553623d0BfEF5c6b00B20F80", + "tokenOwner": "0x00cC1bc568abfE1Ee6c23c721F870c5c07D8fAAb", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa0f6386d1F5C0682CcAE41f4542056D6aC4dDb01", + "tokenOwner": "0x50250bBE7eed8f679b184f53a8F7D9a73A29474e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x55de892CE224F49Af1Fc716909Bfc527495023f2", + "tokenOwner": "0xa64567790511Bc894d939d9Cc9C68e5302b444AB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfA11cB79492919a37BBE8e3244Db2ff5396AD49D", + "tokenOwner": "0x1B5f30C4e52040B36E62cFf8a498642048dD75C6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5B6f2B4b204bAc885442b072cd1203429eB62C5e", + "tokenOwner": "0x36cd8971bE8B72fb408EF4E7fA84C0c62cC15E9F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4365080000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3571430000000000000000" + }, + { + "address": "0xc67989482d3b2c64664c97c2cDbebdef2002d075", + "tokenOwner": "0x3FCb4FDC45c01344805E41Fa413828b76bEcA719", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3174600000000000000000" + }, + { + "address": "0xa51e1EC51A907553BB7d8536A359c6d2Ccce68e3", + "tokenOwner": "0x2aB63E93704112B92722811C44c086311876D678", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3571430000000000000000" + }, + { + "address": "0xe9f2EC9a45B88c7cc6339C0df59Cee6a2ADCf4ED", + "tokenOwner": "0x7841708EE45e96464bbd5Ec53f2f0b5671e720C2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3A575beAD86D74Be9e632A127a15F8Be11232819", + "tokenOwner": "0x0bd1A237d678F661505E65b190b1b6FbBBeB28C6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9Ab8FdbF3fAdE54d9905B04581D2E15Edb9D11D7", + "tokenOwner": "0x64Eb83b1E15699cB6e0FBcC8129DbE334782056e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xBECB702C04b5847fc39AfB7865FEd47c465DF2aA", + "tokenOwner": "0x2192E473Fe2A1Ac4Ef0C2D6b3B5209Fd9D897B39", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5653498FB21645152F1e19A32a3Af9aDAC86Eb74", + "tokenOwner": "0x769ea96Bca0f0e5F2767514FA32c9A39bBD2Ab5b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8F22C4B8eC8fa93a45202810113B44985dB084c6", + "tokenOwner": "0x6ae5047c685588977a81d6C576143704889cBb78", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xED61D578Cf55E2C34AFD96d3eaC3e2F02c9543F2", + "tokenOwner": "0x3F9850f02A7EFC16aE87541C077F170D2FF296e9", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1746030000000000000000" + }, + { + "address": "0xa11F78e130c9009A708186FE829F22e2f3acBa25", + "tokenOwner": "0xe93cb53414eaE19dF913be93152983055F0D1CA3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF3efCac2a10A9973f0D2DA31FCddc237221c370F", + "tokenOwner": "0x46a0629841a8A87B336499277D6F20EBB2D53D15", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xED61D578Cf55E2C34AFD96d3eaC3e2F02c9543F2", + "tokenOwner": "0x3F9850f02A7EFC16aE87541C077F170D2FF296e9", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1746030000000000000000" + }, + { + "address": "0x533f9bF531C64AC66bdFd218d6FBe0042460588a", + "tokenOwner": "0x1926FdAc2D85E6730fC9Cb231ef2237c4d5cCc0E", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "23482380000000000000000" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "16000000000000000000000" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "6607600000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "6944440000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5000000000000000000000" + }, + { + "address": "0xa51e1EC51A907553BB7d8536A359c6d2Ccce68e3", + "tokenOwner": "0x2aB63E93704112B92722811C44c086311876D678", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5000000000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "6944440000000000000000" + }, + { + "address": "0xE094C69132D4E1a714E42a79edBB49c6530013cF", + "tokenOwner": "0xe3E03245b709f3B88b140b437f3C47B4fF4C94c7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5174634AB761fbB8cc5d5cA175AEb425DB392406", + "tokenOwner": "0x48C6d0dA688692Ac0643FC3968b33aE7Fd477613", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7aE1a16D5a1066597E7cfFFC68d0AFE4D7653e2f", + "tokenOwner": "0xF70bB3b12Bdb73DcE3263A741d8cA27978A88415", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x76824e81D1EBB45aE7BE9698886dAdaD33E701d0", + "tokenOwner": "0xF7B18e107eb36797f4cE36dE756630B9C30969ad", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x565e9659e5A36Ec82B0eEAF88b683571d6D9eBd4", + "tokenOwner": "0x3a9E0Da873dbe52d7869e2fa76aeEd965ffc01DC", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x18eC2d28108DCF1CA4Ed31Cec6c71844A9Cd2Be4", + "tokenOwner": "0x25f677051626fC7e1d0674c36c3bCC945Ea990A0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x35a70743f784909b1410819dFad8a7b9D954A14B", + "tokenOwner": "0xE9c01F1f79d1d36381C445721DE88eD79C2A3420", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x717f9a09428E17bF5C254310210E1fAAAa52889D", + "tokenOwner": "0x8F0d462a69F9b970102eE93478F86457073e257A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb65c35b58d322d525B106F7760c99f4AA01e797D", + "tokenOwner": "0x084CF845828Adc2773160e2c42cd4f970Dee7F72", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xccd2A83d7C8DB8804B4c08eE8FF58Dba0C2b1b39", + "tokenOwner": "0x7b96166b1e6f003823617D10663c4160ABBa3daE", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x55818392228b478F38fdde45064D290F757cc73E", + "tokenOwner": "0xEFc78fc7d48b64958315949279Ba181c2114ABBd", + "vestingType": "TeamVesting", + "vestingCreationType": 0, + "cliff": "14515200", + "duration": "94348800", + "amount": "1000000000000000000" + }, + { + "address": "0x55818392228b478F38fdde45064D290F757cc73E", + "tokenOwner": "0xEFc78fc7d48b64958315949279Ba181c2114ABBd", + "vestingType": "TeamVesting", + "vestingCreationType": 0, + "cliff": "14515200", + "duration": "94348800", + "amount": "1000000000000000000" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "10243900000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "7621950000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5487800000000000000000" + }, + { + "address": "0x533f9bF531C64AC66bdFd218d6FBe0042460588a", + "tokenOwner": "0x1926FdAc2D85E6730fC9Cb231ef2237c4d5cCc0E", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "12431710000000000000000" + }, + { + "address": "0xAA1A68B7E13def074Fb080eF3812B97874158A0b", + "tokenOwner": "0x7118962cFdF409B70F270d9d959Bb436bDCe4F8B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8987f869494D5B05a37bFaa5a1D18B3dC18ce364", + "tokenOwner": "0x03381Fb61A1b3139A4d8714B68b271dA9326BFE8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xdA8D69037b3d374D77411865446663ad0E7290A3", + "tokenOwner": "0x95033E0027273B220fBA8E9514977b25204425FE", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "50000000000000000000000" + }, + { + "address": "0x2F9b4DD49E091eD7CB1183fD49A643f7628b89CA", + "tokenOwner": "0x95033E0027273B220fBA8E9514977b25204425FE", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "50000000000000000000000" + }, + { + "address": "0x2F9b4DD49E091eD7CB1183fD49A643f7628b89CA", + "tokenOwner": "0x95033E0027273B220fBA8E9514977b25204425FE", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "50000000000000000000000" + }, + { + "address": "0xE6954CaE25eA93f7B8d2caCE365c69552B1615cC", + "tokenOwner": "0x49fB71E44a488e40c3c806fED8357cD0BD5C61a8", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "30000000000000000000000" + }, + { + "address": "0xfe0bb2F92dc21076EC51067d172C1260855ed592", + "tokenOwner": "0x49fB71E44a488e40c3c806fED8357cD0BD5C61a8", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "30000000000000000000000" + }, + { + "address": "0xE212fF176Ac4770Ca9bbbdA4D27a6082a2320d37", + "tokenOwner": "0xbfe561678255D6b6dF9c470813a40De7E691cE39", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "50000000000000000000000" + }, + { + "address": "0x47912cB1Aab9d57AB07fFc9a6b7F813aBd1f4062", + "tokenOwner": "0xbfe561678255D6b6dF9c470813a40De7E691cE39", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "50000000000000000000000" + }, + { + "address": "0xA95930D84aAD6Af0743E9eBDAFD033abF0ea322a", + "tokenOwner": "0xE11f8Ef0c575F3d079bf56245b7505b2531dDc98", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "30000000000000000000000" + }, + { + "address": "0x0f0631bD459d19f14fe07cf98212a0c739A5262c", + "tokenOwner": "0xE11f8Ef0c575F3d079bf56245b7505b2531dDc98", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "30000000000000000000000" + }, + { + "address": "0xA1C64aaECbd48354f9b80a08185e72B29d938BC8", + "tokenOwner": "0x56B00ca0a274fB53449fBF2DB0253B809E364975", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "50000000000000000000000" + }, + { + "address": "0x57F278AD22110C9b8057b8690f48fA363A39cf08", + "tokenOwner": "0x56B00ca0a274fB53449fBF2DB0253B809E364975", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "50000000000000000000000" + }, + { + "address": "0x5185b8e81B3D7f264aEEfFfC1dBD7E8a70B75c44", + "tokenOwner": "0xE2Bfb2348b193Fd1BF5fB438d423AF69eC889196", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "50000000000000000000000" + }, + { + "address": "0x5185b8e81B3D7f264aEEfFfC1dBD7E8a70B75c44", + "tokenOwner": "0xE2Bfb2348b193Fd1BF5fB438d423AF69eC889196", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "50000000000000000000000" + }, + { + "address": "0x8328291A87c9822324DF7F947cc855bd55944a4f", + "tokenOwner": "0xE2Bfb2348b193Fd1BF5fB438d423AF69eC889196", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "50000000000000000000000" + }, + { + "address": "0x6CabD1D99E6067bC2E8b142ad8714A3c7aB6236B", + "tokenOwner": "0x8A029533cF2a31Ccccc6b1D45B626716C4916F9d", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "20000000000000000000000" + }, + { + "address": "0xB479d527eD180896127556C989F77b370EA413B9", + "tokenOwner": "0x8A029533cF2a31Ccccc6b1D45B626716C4916F9d", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "20000000000000000000000" + }, + { + "address": "0xD5495444bd4FaDB50fcc3757c12E6A236820d297", + "tokenOwner": "0x55Ed66E5E8371C66bc710A4feE4e8e7Bf2d825fd", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "20000000000000000000000" + }, + { + "address": "0xd845F3236bA9898E34646c54361A375144242657", + "tokenOwner": "0x55Ed66E5E8371C66bc710A4feE4e8e7Bf2d825fd", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "20000000000000000000000" + }, + { + "address": "0x005Ec211f5fc55271B19745a4f8F207A42bD8298", + "tokenOwner": "0x9a54e31807c6c8EaFDD012A412F1851e77FE7843", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "20000000000000000000000" + }, + { + "address": "0x005Ec211f5fc55271B19745a4f8F207A42bD8298", + "tokenOwner": "0x9a54e31807c6c8EaFDD012A412F1851e77FE7843", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "20000000000000000000000" + }, + { + "address": "0xE8703230565A6600b6Cd3f554A35eED444a46323", + "tokenOwner": "0x9a54e31807c6c8EaFDD012A412F1851e77FE7843", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "20000000000000000000000" + }, + { + "address": "0x494432fE11ad61d1aaf1Eae9fFb3A8Ca24314fb2", + "tokenOwner": "0x4B8F6D4F086C19411311ADE997A66C083A2322c6", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "20000000000000000000000" + }, + { + "address": "0xF3cc14C52cb2D5A1Fa26a3C15929Ae5b377eEc53", + "tokenOwner": "0x4B8F6D4F086C19411311ADE997A66C083A2322c6", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "20000000000000000000000" + }, + { + "address": "0x2b647B0202b7e45546879E6B3e99db21F34fDe30", + "tokenOwner": "0x30B766cCCf3b89CDfe5C8E8C632c4e38b9AdC6Ae", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xBa113D0809e0db9F7B4942761ed86E2a970192Db", + "tokenOwner": "0x9a833f63aCA23eee381DE4CCc9B3Cd008668739c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x031DD0a7b91f4e1d11486421bf4142bA887f8c24", + "tokenOwner": "0xc59d7d18C3735acE1B2c526d86fE17BC0E2F3944", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xad5e4999869517c4df744259fF58cfDC2Fc7a67c", + "tokenOwner": "0x2c777e30f5571f3e7704E28cDD5858076023E267", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "50000000000000000000000" + }, + { + "address": "0x09C05622b354E3cE4169bd8D356d584468062B8C", + "tokenOwner": "0x2c777e30f5571f3e7704E28cDD5858076023E267", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "50000000000000000000000" + }, + { + "address": "0xa62DdeCdc26277c4d00Ea754ECA8BB1520346290", + "tokenOwner": "0xA1DF92EB52aB13b8C0dAcF11b8a4844acE4ae3cb", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "50000000000000000000000" + }, + { + "address": "0x0F8B815699eCD410660dA5288ff7d3652C2Ad72a", + "tokenOwner": "0xA1DF92EB52aB13b8C0dAcF11b8a4844acE4ae3cb", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "50000000000000000000000" + }, + { + "address": "0xC234FB057E930503e9582575DC3997011720eb33", + "tokenOwner": "0x915BbAE90E860fF3248Ee8dFB3cdf9CD3A225D16", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "50000000000000000000000" + }, + { + "address": "0xDf085Cdf9F335e6dE5Ca801a107f4909F432907E", + "tokenOwner": "0x915BbAE90E860fF3248Ee8dFB3cdf9CD3A225D16", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "50000000000000000000000" + }, + { + "address": "0x50b2C6090648AB5A517F229C8EE663A441CED143", + "tokenOwner": "0x611C50d4Bb01AF456cA419DbF76E244789d4F887", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "30000000000000000000000" + }, + { + "address": "0x8A4ACfeAd253cE99f28D0C20E8BA8b1dfE7f0B8e", + "tokenOwner": "0x611C50d4Bb01AF456cA419DbF76E244789d4F887", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "30000000000000000000000" + }, + { + "address": "0xB4E05AEaE6112501A66e14217B6FCB55c90F028f", + "tokenOwner": "0xaD69347E419ee8D87B89e76BbEd90B737F0dda64", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "30000000000000000000000" + }, + { + "address": "0xeFfc93a41f9899b02918e1EfAD063d0e4d411F3F", + "tokenOwner": "0xaD69347E419ee8D87B89e76BbEd90B737F0dda64", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "30000000000000000000000" + }, + { + "address": "0x24BB087B0ab6E58FFf0A7D78A06D5dCe4857cf1a", + "tokenOwner": "0x0792fC24dC0BcEca0a1d4FF03bf5c1ba132223a1", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "35000000000000000000000" + }, + { + "address": "0x4b1C3BeafE6C3AB046D3E16b309D84E9B95D945e", + "tokenOwner": "0x0792fC24dC0BcEca0a1d4FF03bf5c1ba132223a1", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "35000000000000000000000" + }, + { + "address": "0xA3263da22B9723642155DB965b9b1A95B05BB360", + "tokenOwner": "0x2F87b2c6438eF61EdAd04E96BF908BC2b5E45592", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "20000000000000000000000" + }, + { + "address": "0xFD6D1f6c6f4F422762E9E9F1E85fCc7003001A64", + "tokenOwner": "0x2F87b2c6438eF61EdAd04E96BF908BC2b5E45592", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "20000000000000000000000" + }, + { + "address": "0x371C206eFd9621Bc03fE7Ff6A564EA88aD4aD6E4", + "tokenOwner": "0x6e12404fB736e32b975154B9745d74fc312E7C80", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "50000000000000000000000" + }, + { + "address": "0x79eabe6Eb98141C06249fB968294F8CCb21DFdeB", + "tokenOwner": "0x6e12404fB736e32b975154B9745d74fc312E7C80", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "50000000000000000000000" + }, + { + "address": "0x28fc1FfB3873BfA9f4Bd94AB5E7b1e8473b67CFb", + "tokenOwner": "0x2D2e3B6be554dBc816469e0040b0378f4BF91E93", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "35000000000000000000000" + }, + { + "address": "0xBb93A9042B93695E75492399e6A9a23f305a4195", + "tokenOwner": "0x2D2e3B6be554dBc816469e0040b0378f4BF91E93", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "35000000000000000000000" + }, + { + "address": "0xa4c0C146A85149c2D32694F0Ab1ef446Cb5e4748", + "tokenOwner": "0x07f340Bb1fd8630b8F4C22bD9aaD41cd2664c8d7", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "35000000000000000000000" + }, + { + "address": "0xa4c0C146A85149c2D32694F0Ab1ef446Cb5e4748", + "tokenOwner": "0x07f340Bb1fd8630b8F4C22bD9aaD41cd2664c8d7", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "35000000000000000000000" + }, + { + "address": "0xAa10D91edBF5E498652a06c9E0579Adec6A75e85", + "tokenOwner": "0x07f340Bb1fd8630b8F4C22bD9aaD41cd2664c8d7", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "35000000000000000000000" + }, + { + "address": "0xcC8Ff92476469b6Ab19e07a4d16D15d95E5eeC73", + "tokenOwner": "0xf32E96c8C7Af61522ec2f5D19A38ecED963D3306", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "20000000000000000000000" + }, + { + "address": "0x51a63b01F8944AD0248695a946c2888Eb7f17692", + "tokenOwner": "0xf32E96c8C7Af61522ec2f5D19A38ecED963D3306", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "20000000000000000000000" + }, + { + "address": "0x8f0bf7Fea7a3ac208B79F0E61C37A844ceA4A65d", + "tokenOwner": "0x67178E51F3fF18669515a1dFA4783EE7779A5A00", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "50000000000000000000000" + }, + { + "address": "0xD2E2038CF052dD8398A512D7053961B8F172250e", + "tokenOwner": "0x67178E51F3fF18669515a1dFA4783EE7779A5A00", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "50000000000000000000000" + }, + { + "address": "0x60d7B2a41578B8B51be368463EeceA8502D403E7", + "tokenOwner": "0x8b131d7484e3F67616Bacc4fECd662f02E4da100", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "14515200", + "duration": "53222400", + "amount": "150000000000000000000000" + }, + { + "address": "0x781B510bb359515bCac44e28e8a8b20551d3D37f", + "tokenOwner": "0x8b131d7484e3F67616Bacc4fECd662f02E4da100", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "55641600", + "duration": "94348800", + "amount": "150000000000000000000000" + }, + { + "address": "0x4De1ED04A06ee5A5cDe16741278F0f45D06B4739", + "tokenOwner": "0x677Ef9461017047922C310D6d9449C1A500cFCf1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2Dab9958CC723ca90A1cE9E005de54dF45E49F16", + "tokenOwner": "0xa270bb1241FF428927406e5Fde47e7EA8592aFb1", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2682930000000000000000" + }, + { + "address": "0xa51e1EC51A907553BB7d8536A359c6d2Ccce68e3", + "tokenOwner": "0x2aB63E93704112B92722811C44c086311876D678", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5487800000000000000000" + }, + { + "address": "0x668A29E096e048Ba14cB2836220Db593483568CE", + "tokenOwner": "0x8E9935504736e1716a9b64FE65791A59bb8B2A99", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "10476190000000000000000" + }, + { + "address": "0x69270C454Cacb0a263cd9b3E4D321cA6994f277A", + "tokenOwner": "0xa92Cd7B1B2F71E72f63659e969D1b873332C407D", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "10476190000000000000000" + }, + { + "address": "0x69270C454Cacb0a263cd9b3E4D321cA6994f277A", + "tokenOwner": "0xa92Cd7B1B2F71E72f63659e969D1b873332C407D", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "10476190000000000000000" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "14208930000000000000000" + }, + { + "address": "0xa51e1EC51A907553BB7d8536A359c6d2Ccce68e3", + "tokenOwner": "0x2aB63E93704112B92722811C44c086311876D678", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5357140000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "7440480000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5357140000000000000000" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "10000000000000000000000" + }, + { + "address": "0x9b2Ba630CBF227eC548a0aD3DAdE311787BAF462", + "tokenOwner": "0x0aA4eb2004128de0caa087322351DAE529B68925", + "vestingType": "Vesting", + "vestingCreationType": 6, + "cliff": "2419200", + "duration": "45964800", + "amount": "5665720000000000000000" + }, + { + "address": "0x13b2556a3F22a281329c44329B135c351F10B7c7", + "tokenOwner": "0x0aA4eb2004128de0caa087322351DAE529B68925", + "vestingType": "Vesting", + "vestingCreationType": 6, + "cliff": "48384000", + "duration": "89510400", + "amount": "5367520000000000000000" + }, + { + "address": "0xD05E05B481666496b5D02252d25ED039a95bDC8d", + "tokenOwner": "0x3139F181210874D95D398de1A5A1fC8d6C1014E5", + "vestingType": "Vesting", + "vestingCreationType": 6, + "cliff": "2419200", + "duration": "45964800", + "amount": "5665720000000000000000" + }, + { + "address": "0x33020C000c2463f5FaeC1d3900f68d6fb40d9678", + "tokenOwner": "0x3139F181210874D95D398de1A5A1fC8d6C1014E5", + "vestingType": "Vesting", + "vestingCreationType": 6, + "cliff": "48384000", + "duration": "89510400", + "amount": "5367520000000000000000" + }, + { + "address": "0xb7AbEDE07ecE7091665a9D4C7e73BB66F8733101", + "tokenOwner": "0xF709615a41c36E448d7eBd53bd4d1CEd5abd8766", + "vestingType": "Vesting", + "vestingCreationType": 6, + "cliff": "2419200", + "duration": "45964800", + "amount": "56656970000000000000000" + }, + { + "address": "0xB6dAD97b2857F197632cE14b65F01B2a4D5b70a3", + "tokenOwner": "0xF709615a41c36E448d7eBd53bd4d1CEd5abd8766", + "vestingType": "Vesting", + "vestingCreationType": 6, + "cliff": "48384000", + "duration": "89510400", + "amount": "53675030000000000000000" + }, + { + "address": "0xB6dAD97b2857F197632cE14b65F01B2a4D5b70a3", + "tokenOwner": "0xF709615a41c36E448d7eBd53bd4d1CEd5abd8766", + "vestingType": "Vesting", + "vestingCreationType": 6, + "cliff": "48384000", + "duration": "89510400", + "amount": "53675030000000000000000" + }, + { + "address": "0xd08fb9eDb71f173923f38Bb06a3d775C245a47F0", + "tokenOwner": "0x4B75311f29cF3C07f01EFC2387776537f0b2ea44", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x744Cc10CF7c76D3AbC2C0772BC19Ac269d4569aC", + "tokenOwner": "0x0E4f6973B0D22eA7E8509a25A1D02FB5c408EB4a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe543E02616079C0E167ce0e33F14788a88225582", + "tokenOwner": "0x239661de3C6EBC988FA633E36600268D8e01Ba6C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x33e50E2c7a612B6d855b70042f0cEC29e690e82B", + "tokenOwner": "0xbB6727777E15F00Aade92D26Ca84F78b03AC1788", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0619359690CDd2B2F2Ae1B6103ce2Ab2B3Fd1ad5", + "tokenOwner": "0x0f48015eF2F4283b6FaAef5C60722A53F27d3b2C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa51e1EC51A907553BB7d8536A359c6d2Ccce68e3", + "tokenOwner": "0x2aB63E93704112B92722811C44c086311876D678", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "7500000000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "10416670000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "7500000000000000000000" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "14000000000000000000000" + }, + { + "address": "0x2653BD7C1e6A9729B8f91fF0badCBe334916bB05", + "tokenOwner": "0xa7bF0EF4Ed4C973A56836d50C86a5ae2F03b3724", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7A6e374Fb818fC1C557d0D354696859111295452", + "tokenOwner": "0x103FcE5952D6A7044ffd696680699133B4CB2C16", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3666670000000000000000" + }, + { + "address": "0x99CBdD587550D058fe66d2a086374D26d29F2677", + "tokenOwner": "0xFfb866e992DfD6566694524afBe26E642b49587b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4B17085A9c29144c11A2E12eC7800d9B688e6929", + "tokenOwner": "0xA97E3D39843c3454A4EC576165d6Ec1D9EF5E1bB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb10c14f153170eF44fF1204B73eBC001Ae92Dd4c", + "tokenOwner": "0xbB97b316A7CbDb013f6a785a86FD05E2093904ED", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "7891250000000000000000" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "18260870000000000000000" + }, + { + "address": "0xa51e1EC51A907553BB7d8536A359c6d2Ccce68e3", + "tokenOwner": "0x2aB63E93704112B92722811C44c086311876D678", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "9782610000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "13586960000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "9782610000000000000000" + }, + { + "address": "0x068fD708c8e509c1c797BdcC2BB8f55F320F4801", + "tokenOwner": "0x045DA4225F4329C578168A0BC960018DbCa0160d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd3F392d6309c177516cc48e2fFD352BB710EBcf9", + "tokenOwner": "0x857952d43A5D4255F4529Db0721B5dBc7E481C18", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5d567dbE4a3E7Ec905355A20ce19a2826E859ecD", + "tokenOwner": "0xAa233F082e9BfB81b5256E6a2be06552DcBD9c16", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xcB05F303043219fc44c8f03F862F5213Af942324", + "tokenOwner": "0x422B219290479bc780a6E573b42adB083Ba11F3B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2866AcdaC318c0b353420a633A26C40217575932", + "tokenOwner": "0x8908B2738F917d97e504d3DCA5E5c1A0D8a9fE46", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xadb702C275B4655558241f890ADA9F70359448c7", + "tokenOwner": "0x109dBf73Ac46320ad4e08253aF520c2816EDFCB4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1E01923896bfeF0E39fA5bb3f525234E5fEdd5aF", + "tokenOwner": "0xdD89E1571e3285c3e044d511f81E245eB0f38F3d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x95be239341F9447476fE09dF6f87a505C75C4B47", + "tokenOwner": "0x1a7c1c3EECeD0217aBd0DFE6C329D91a303EF659", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "19158290000000000000000" + }, + { + "address": "0xa51e1EC51A907553BB7d8536A359c6d2Ccce68e3", + "tokenOwner": "0x2aB63E93704112B92722811C44c086311876D678", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "9375000000000000000000" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "17500000000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "13020830000000000000000" + }, + { + "address": "0xED84672E3c625303a92953e4F7daB15B5A61bc6a", + "tokenOwner": "0x8E9935504736e1716a9b64FE65791A59bb8B2A99", + "vestingType": "TeamVesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "36900000000000000000000" + }, + { + "address": "0x687634cad20797fb807BE2b66880938b768b611b", + "tokenOwner": "0xd7E167AB2A4bC910619ACB0CC36B7707Ab8816d6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "46125000000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "9375000000000000000000" + }, + { + "address": "0xFb4576deEe2b0b8239a5ebDeA7ED26436ba80b75", + "tokenOwner": "0xe3Bbd0718F4d67809C729c2671299329ab1F155e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe2a8a85B8A52Be0E42280E889a7374cE9911a90f", + "tokenOwner": "0x4b276A8150eB436f7bc85c46Eb66D97853A91038", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x48187d8Be95d4b7Eb6611CC2cBEF5240Ce94fB2B", + "tokenOwner": "0x03D113bdC8fFcF3D6331026663340356a41C6D2F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xbB08958de3A7944E89BBa1769E46e39cC40E60a5", + "tokenOwner": "0xe5911b1b371053A5fE150d91ABAD2b5BA6d80B7B", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x23d720e009Dd1d0E751b975F76D44906BABB6427", + "tokenOwner": "0x2c7D8Cbd706232E24FC58186753FE5a20F37C63c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4990b48fD1CAdfa64F6F919a8F3d6cbD895C488E", + "tokenOwner": "0x1C08DCDb84e7c80CD0d8d86981105D8478c9De3A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1DB8cb93330d6bb92dC38038b43e325708701819", + "tokenOwner": "0xB0AcE2C3a12a2026cAeF06898d734E8950AC2680", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb33700CffA7b7c8113F3B759960636692E5B79dC", + "tokenOwner": "0x87ad1fD21E1CE07F8ba3A6de30ca91f11efa4004", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1451470000000000000000" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4200000000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3125000000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2250000000000000000000" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3386760000000000000000" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "9800000000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "7291670000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5250000000000000000000" + }, + { + "address": "0xe2c57Ae6638e768e8FF1f02f21DFA432D4b75CB8", + "tokenOwner": "0xe6a91C469EbA006B3d8116Bd492C5f0366Bba2A6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5B6F541E9EE9F5a0528484f5B879A0dbDF4Ff4C0", + "tokenOwner": "0x53A3a6131453193d510113A2351895AB801eDD48", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x912b9c432B5B905c3b1fE7CCC675928937EE3f56", + "tokenOwner": "0xC89A45f7Fb6fA1fdF5acb5082e8bb396f73edF9e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9756EF28568565134f52789EfF9C197bDa4956b5", + "tokenOwner": "0x0fBDed9420D95c3B5b08239f0726595E54A33841", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4d2e5723b24df8fCD920C9324EcbED227094Ac05", + "tokenOwner": "0x71Ccd7A933c56adBf642D7754196D678421C7941", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0c1ec29D42cC7E6a068b0a82b8f870D327152958", + "tokenOwner": "0xBD6043E2693b2807d182c7d55f5AE96ac1D895B3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1105dca376BD32861a98508B813d78Fc372F25B7", + "tokenOwner": "0x3D24cBDb6E04292dCa8a591EEFD628b2296A6903", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xbF4Ed3Df5f6FA62c959002357219a4D671298a77", + "tokenOwner": "0x811E51fAB2b9FAFEcD306B801974FDd9dcA05FF9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD778584262F4f54881D2427ebe94b8cc31073F93", + "tokenOwner": "0x05BEDfbDb86F0b27dbcfF181dBB7C17234F874F3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x22ea9Da8b52B1112c8af45F1680A9424144CDE61", + "tokenOwner": "0x77865F0975552886FcA250a85C717a146e0C794D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1F58E94b303b9d0aD5Bd919B7e16FaBbd7cF86a6", + "tokenOwner": "0xa9822De77C6c2e723fc8f7A7AF69980439FF0D8E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xBe77BcEc187119E05f36a801528b87E84E97697e", + "tokenOwner": "0x1Df75cF0f652Bb39676707CcC63f0C1fC78322A8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x498E9264aaA65cC67E0dE8D0E09BEb9998Ee1B00", + "tokenOwner": "0x69196bC5035cE85C28DAc0c57D0F27f50712A0B2", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1803280000000000000000" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2925820000000000000000" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "6885250000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5122950000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1229510000000000000000" + }, + { + "address": "0xC736b563DdeAb5A29A7a57a1fb17aD8Ea53437E1", + "tokenOwner": "0x3eFCf99f18d8694CBB10ed66706EE8424529567A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1D040bCF0836a2a72f623217591646Da0b427EE2", + "tokenOwner": "0x5FE285729778c328C22997B5322a9F1b1460b170", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x95516B854EBc1F9996F5C5f66DB0ECFAe3552A54", + "tokenOwner": "0x9549dE2a9DEdCE2a4b8fa9531B3369E068BC4b37", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1FdEb5DEEcE24Ec6a7C69EEa51778EB4eE83C5eE", + "tokenOwner": "0x9dDC479B7f61b6326466d3b41B84bA3349672A9d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xFf8127CC2B4105d57f5DcD82076F404a901cbc91", + "tokenOwner": "0x3386e1f57FdF75d5C11BAA2F33c025E5b2EC0971", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "2419200", + "duration": "38707200", + "amount": "47058823529411770000000" + }, + { + "address": "0xFf8127CC2B4105d57f5DcD82076F404a901cbc91", + "tokenOwner": "0x3386e1f57FdF75d5C11BAA2F33c025E5b2EC0971", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "2419200", + "duration": "38707200", + "amount": "47058823529411770000000" + }, + { + "address": "0x9050Cc5Ac00510ed2A1FD8DB620EC6464eDada13", + "tokenOwner": "0x3386e1f57FdF75d5C11BAA2F33c025E5b2EC0971", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "41126400", + "duration": "77414400", + "amount": "47058823529411770000000" + }, + { + "address": "0x3EE3c394822f7C44e1AFd397037C622f022050E5", + "tokenOwner": "0x3fA8D30e3963042C0Bc05853bFEb3f524A6cbB4A", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "2419200", + "duration": "38707200", + "amount": "35000000000000000000000" + }, + { + "address": "0x48A2Ec8d3073E657212B241ea242012F9eC98315", + "tokenOwner": "0x3fA8D30e3963042C0Bc05853bFEb3f524A6cbB4A", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "41126400", + "duration": "77414400", + "amount": "35000000000000000000000" + }, + { + "address": "0xF6290F32A572FDf75870bF89AEa364E815771ca9", + "tokenOwner": "0xE8B9628f7F2Ac0df88684dbaB5cc3bdF0886A6E2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8887aFb80D096866c2Bd0eC53B69ff7b9733F75d", + "tokenOwner": "0xBAecA48D3aB36bEdf24DC0e47eC46e84b4709f55", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xdA1c5cA9dFF4e445853CE9F8c5fCFe565b77179C", + "tokenOwner": "0xf46a022C7b6fB312F2db06381A6A5d1FaA88BfC4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x87a59f21e739f14992686e2Be83076DCD8816563", + "tokenOwner": "0xc4C31FA3Db9fE8817c8a8Dd429622Bb0abA3c1A4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE255B7f60e6Ee06dBCd3E99cF82D347766E7cC05", + "tokenOwner": "0xce67147F8CC3D389cbbf6b0d81614f0f3386B612", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4E0209aaEdf007026a355b84F01d9aba608Dd08F", + "tokenOwner": "0x3F9e3eF417334d21b902502E88fE12db6C5A4C13", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x53B3B4eBe43cf4fC61C14B5AbB237938AEFdd0C9", + "tokenOwner": "0x3C9c5398006E5B17cf53cA12AE44962819e42c62", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf3FABe301aaF3929B601dAbd4b93FF070622Dc95", + "tokenOwner": "0xc7Da7605f1b6442804C9424b6cCDa192e54fAd30", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x87AbAFb4e365b7e2F2D0519dB2d6a330Ca4f2663", + "tokenOwner": "0xfA9a9095CE3ff7D7a7Adf26c5b39D9eC029af9cE", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xEEf14e5d63cee45BEE3518d5aF3682F2CCeEA6Ca", + "tokenOwner": "0x2FA479af304A793fA71A2bC8D233B4DF80386fa6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3DBcEE336024B72363c6478dfAefff7Fc6020241", + "tokenOwner": "0x7040fE9eeed4fbd574998452725F19170E7c54b3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xaecD522EF9015430060e969Ac040b66De701718C", + "tokenOwner": "0x004Ca129C71dA487AfD603Bb123b12398A3C5a23", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9Eb48854ADE3f151fbB7826e12Ef89722685b4D9", + "tokenOwner": "0xC95b7f65a5225BEd284BB84471Cf5fEb41C33D4d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd3aE77E3A93d13Bfd177204C8B85e7bB97F7F2e4", + "tokenOwner": "0xB1947443ce029636b9EA7c4f408776d825E95739", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3b0a85B7985b59c18bfc4B98b9948e598c795A63", + "tokenOwner": "0x95033E0027273B220fBA8E9514977b25204425FE", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "2419200", + "duration": "38707200", + "amount": "72058823529411760000000" + }, + { + "address": "0x3b0a85B7985b59c18bfc4B98b9948e598c795A63", + "tokenOwner": "0x95033E0027273B220fBA8E9514977b25204425FE", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "2419200", + "duration": "38707200", + "amount": "72058823529411760000000" + }, + { + "address": "0x6Cc5186313f4ab44C7521b2eF289be31cF10584D", + "tokenOwner": "0x95033E0027273B220fBA8E9514977b25204425FE", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "41126400", + "duration": "77414400", + "amount": "72058823529411760000000" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "7875000000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3906250000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "937500000000000000000" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "6863450000000000000000" + }, + { + "address": "0x854A38Ab85ee41779A027f48fC5d10BD9086f159", + "tokenOwner": "0x6ad894a37fF05b76Df38Db9862A8717F5ABc57f3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x47D594d77913cd3a1a66bda2e40B1DE01c40deb2", + "tokenOwner": "0x13Ec6D20E68a518E2e5ef2b761F096237EAdA171", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x577a87959870Ac344Cf0AE8662956540e9C74240", + "tokenOwner": "0xb2A4CAb4bef95e4A5A3dE7242ACFe773D15d8458", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD565A24009634b2ad6793AC45bD6B61E3C39cEB8", + "tokenOwner": "0x729436BA95dA0EdaEe5962cDa230bc0b597db4f0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x30985D7B881b4a033Dbd804aA48B7783778851EA", + "tokenOwner": "0x30631f636da9Df1038Ca59894547E446c1861B05", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1421f03f17880FE50Ec9D26bfF9e3296Ef8dB5B5", + "tokenOwner": "0x748751d6986bd23c44Eda6B012dB9681ea3a352D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x89759060FE401de5Ae3dB44AE820aA1a1a8A0Ca2", + "tokenOwner": "0x6173e4F543E6E68ef5fE17CC73761e294F89999e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x45afa29AA89849d19bAB5E428125b69Ee61b691d", + "tokenOwner": "0xC5BFa0454c7FDCF670Ae96d5674851B944eeD821", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa2265a9Feae9AD78b9B80E0CA15c2182b2cAC599", + "tokenOwner": "0x38516154275F904c98D3D7f4C69f4f37ac205E68", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xaDBC4587Ca8CF932Ca6b983020aD0d66988F5ECd", + "tokenOwner": "0x3a78AE56A073f7ce063b40621950c6a90Da6D773", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xcBCA10d2D0C3E1e245a45ad3b5bB3B7e8464F1Be", + "tokenOwner": "0xCf5072f792246690C75C63638E3d98bB2554ff2c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xFA7BB63C0746296278ddB3a83a1C57CDc71c5e34", + "tokenOwner": "0x5eb2270448eb54f4aA1d57B33917146551d56F93", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD07221Cf7ab3c2e53b2039fF0F3a1b08965E1b2f", + "tokenOwner": "0x278FDA8E762c18ce3c70100d213eD8AaABEE5B64", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x55fbfD99684d56cFC91B027b02f098ef92f77b10", + "tokenOwner": "0x79418c397B6cE69cAb6E573610461cE2619b3b01", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xDaaf1f25320C1D71380B5E60F843C4f41d99f516", + "tokenOwner": "0x5c2295ab1368EDB685173Df501477B781A58AA5e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF2c3A0cAaD94b9F423F50622fe5315a5c76e1673", + "tokenOwner": "0xa2Ac3516A33e990C8A3ce7845749BaB7C63128C0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x45106f4E58B5775cD9D938a8a51A84c0752a4Ba8", + "tokenOwner": "0xd714ee2af27574f704c8d6DDf2E68d4DA86DDEcf", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf837aeE293BA4131b08bB41a4568c2B0dae6c1C6", + "tokenOwner": "0x91A6Cd681953AC9B7d02Ec75b730Bb56C7525545", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5444C2F49Cd77D6952E6041CB8F6c27D96601098", + "tokenOwner": "0xB8d6681fa406f9D065bc89643d4e6611b1886cf3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x231B21d78Eff63ED76A848Df667819b969ce6062", + "tokenOwner": "0xCd1C7eF547C52F9Acda9A4604344eCC6DecE8ea4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x19E47f1d83300D726091197Ec7f7DeA0b1F8d0e5", + "tokenOwner": "0x0606CAfdCf96BbB0852e26F3DD4963B85D53424d", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "2419200", + "duration": "45964800", + "amount": "12179487179487180000000" + }, + { + "address": "0x49597Dd7fdc30c70aB11562E15Dd08F536E9d730", + "tokenOwner": "0x0606CAfdCf96BbB0852e26F3DD4963B85D53424d", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "48384000", + "duration": "94348800", + "amount": "12820512820512820000000" + }, + { + "address": "0x60C845Fd4C51AF746A1eFd700c680D3c766381C1", + "tokenOwner": "0xdf6e0e48C247717e328127E77A376A89Bd9108D5", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "2419200", + "duration": "45964800", + "amount": "12179487179487180000000" + }, + { + "address": "0xc0412Cf207086874a7ac6f22d185Fa73fc97f7B5", + "tokenOwner": "0xdf6e0e48C247717e328127E77A376A89Bd9108D5", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "48384000", + "duration": "94348800", + "amount": "12820512820512820000000" + }, + { + "address": "0xD610551fe2aC8aAb4b41ed40B451C83663B01844", + "tokenOwner": "0xEe1Ac69cDcFcEb4354d0d102402Eb312a117f9Ce", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xdDFF85BaA04Ea437189B762f3dE0C7A057A8C74C", + "tokenOwner": "0xC31ED04E4327132634E40D3589D54528Bf690c00", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x59B59C7491D6Bb22FE5c3BE121B6F28C0B978bD1", + "tokenOwner": "0x5AC3E9DB39B7218c4152FEAf9FF24Aa3363e16c6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6AA8C971864a46A3102a2B2E28E726379eEF4138", + "tokenOwner": "0xFB616827B4c9900Af186AbE09cA325772bd006e2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfd5Be81141A283B2A6254Ad36Fc33e7Cbe68E5f4", + "tokenOwner": "0x6f6a633a156FFeF5451C8cadd47178c6AE3eDB67", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xb92b698a393147494B0892f410582789191e872F", + "tokenOwner": "0xa68156af6CA8D41e5a22b194D23CD79a2aDbd800", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xbF10072C56C44a6237dd7528098d5A96DE5D0ae4", + "tokenOwner": "0x58B753F0c417494226Af608B63E80028255CBc64", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7Eb146bC831B2D818695E2ed9233f372b819f648", + "tokenOwner": "0xCe5972e256F932239d835eDf607Cd8F61744c002", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfF56F4D7a985dDa3a137B321eb78fEeE5910f667", + "tokenOwner": "0xdc547A0e6369Fc9F97e61Df2d00243f6585E37f6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x84284F81f99D478c658Ae176143366836b256dBe", + "tokenOwner": "0x7b1768877a8Cb5f51ADB4c231626DaE8f862f881", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x393483d060cdA8EbE1e7D6240A2404E26C8cb97E", + "tokenOwner": "0xcfCc397834e1AECD8B96c042Ad9880E4e1ba2B67", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9653C6a9b35CD27312e6c8958Bc9aF0AbfcFc17a", + "tokenOwner": "0x1C56722B76d8a5a284B556f64EEE2D4025c7e049", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6a6889E252B3f592F2161b9Bb37B772643cad394", + "tokenOwner": "0x23160090bd67e7319Ca520A7feECEE9246767C97", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x587E20f09E83079dDeD369D2243857Ef8D19B465", + "tokenOwner": "0xEFf7deC397aB51844b350B796eDd381EFd33bEBd", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9A9388728064937A462caddf97cce5C3Ced175de", + "tokenOwner": "0xA89fb7Dcc6758E622a7889Cb67ae8B97E4EB501c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3985a6d2ade7767E031Aac74a73419Bfd1F06406", + "tokenOwner": "0x39978cc40e2D1d7E127050bDFFFBB0dFcfaEbAd0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2cd8Fe0d4f09926543035A8cdda1B71b212fB526", + "tokenOwner": "0x8cdb9FEA98f46E910d993056a4f2bfaB674694d7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE1A3FfB3A66A78Be623e3E5Ef384bD41677c5797", + "tokenOwner": "0x3F84E2b70D215241E7e5Aa988b90D1412Cd0f8C8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xAdd8Bd3e1FB860A4B28264eb077752f1c8A6E0CA", + "tokenOwner": "0x9cEE4C5a0fc0F3a960C784b3E15366f8b78842C5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x60f604F8f93FB4eE64E1bC529d32C9c8FC088D26", + "tokenOwner": "0x2D4e91ED8edfeBf61da7c70B52Ed998ba098AE11", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5d7C4245E5343015CF8a4C2B2fc37eA25E642089", + "tokenOwner": "0xB54dc826b9C0e2407A9C6e020B6E25FE88112052", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD58295C89de3E4Ba76725f61d562a53E297ab9e7", + "tokenOwner": "0x045D06f3F4fa552e4833d560eB3fD477485dDb51", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa8E5e2Ba8464801234888A45121A2ef3656E1A03", + "tokenOwner": "0xD659B15DFa7c683C2eE2D9bD845E4996bfDCF460", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2D4ce0dEf19719838E8cA7778365E72C49F97037", + "tokenOwner": "0xB917223C78be4bf2A3AFe63B11FFE6c4C52BEeda", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xf964A531D573a22bd0624a1ADd8911C19b5140a3", + "tokenOwner": "0xb071b82dF074e4f5c132e4690e565f6f2975a784", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x899bD2b2B17076ce4B41634Fe2149301890E78d1", + "tokenOwner": "0x35C80934e1294E751840d33F298BA73b4e82080e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x953b3e1a376E16F4962b9BF119477b7EcAFD55D7", + "tokenOwner": "0x52BdF6A4B4BAd43f4552565b18d534167896fD92", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xCA14B513A9C0447A5313e374b1f91Ab86ECcC494", + "tokenOwner": "0x99CA97E1101f928Da41fa918102f5a4173fAC9A4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6734972242aD5EaDEd528f13DAb3Ad599E5F21f3", + "tokenOwner": "0x48B41e8b5914e5d56654c816585270c95b6456f1", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x99DeDF26b49C8991e5239317B78C856C017c5AE6", + "tokenOwner": "0xFB39f32EDD4356A7D7b80f76ceBf16832Bbb8513", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8e72b1827367FcE7E88dae5c7a365cCA2C9f64FF", + "tokenOwner": "0x7573e63E17cc36e7849867894dC6Bac3Aff29Da2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xAeD0332D985b0F104fF6A96332de05D13c7674ee", + "tokenOwner": "0xB389a7b0444ee10Ca0fdC626a97A4aD4DE143eF9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7FeFcb38018C31c0047bF3e873d2F948FBc5a11b", + "tokenOwner": "0xE5Fd8Cb941460D23a54a37303dA42457922ADf3e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2641600000000000000000" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3197970000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1586290000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "380710000000000000000" + }, + { + "address": "0x8229AE229952738671B108B2638639B69B4C03Aa", + "tokenOwner": "0x0606CAfdCf96BbB0852e26F3DD4963B85D53424d", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "25000000000000000000000" + }, + { + "address": "0x9Ea8c912A6eF9523C5F5a80a114EACF1B0c099A5", + "tokenOwner": "0xdf6e0e48C247717e328127E77A376A89Bd9108D5", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "25000000000000000000000" + }, + { + "address": "0xe150E4Ce06E009aa68839fB2630302647F1aB33A", + "tokenOwner": "0xb50b8A508BA420A25fd9cB6Cd43962B96Afa1C8f", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xdF5c1Aa601Fa1EBD5c5C9Ed9c4FD3B8973399C9b", + "tokenOwner": "0x73859afD46520f76d86CB6Cc5eb415A84Af60b28", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4E70660F1833d9bcDC46fe3549993F45610cC757", + "tokenOwner": "0x95a05DbCCFcE18B2711DCD404e1e5ac3E1527342", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC86149f7dc465f6cCdcAfFcd1Cd7Baf5754E2cf8", + "tokenOwner": "0xcE8faaC375dd17b903387b5916C3754247ef9449", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA1520C5A094DDc7d739AA06174f9c780F5D3E594", + "tokenOwner": "0x3BC2FE2997099363646142e917fAE1F7F41df64C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xba53f759Be98F197fCd10Cce9662c38438F95Fcf", + "tokenOwner": "0x7A6A59588B8106045303E1923227a2cefbEC2B66", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1dd151B174357571d362763A9B0B5a8E21dfCD6E", + "tokenOwner": "0xf0F3b8C6D8830974F30758b47Ad587419BCE7BD7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x943318B80bBa1dF3c52e4bC5e6437cB8876441b5", + "tokenOwner": "0x06fE3829c7ea8B444264fac89B585126f1285331", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3bACEC95456ED8C70d092930724160238ac9f6F6", + "tokenOwner": "0x5ec5D0AEcF78E5676a97dfB14534D7F74DC3B12f", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2c18aeD42a6758fEb8F405E5c3ed3b85B26FF66b", + "tokenOwner": "0x8F22A63a39460a208Db66Ff0A77e7688CbEfb984", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x498185f544D0C7fB134481523f7dAb7fc49C48F9", + "tokenOwner": "0x367dC9591B1F6aA30eFA275EEE4c99e077CD4b6f", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xCA12651e45d4E24d37f8BaEddfD25683F9cf2DA2", + "tokenOwner": "0xe87B44760938B21D1cC946D9832Fa25464fa8021", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC1f0EC4A4097FCB13778591730696a81E9D9017B", + "tokenOwner": "0xd07471dEd9218e0F9982d73B8F74eba03E92Ff6E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5F3124116D983CCB8c773f314Df2CFD3564d3c20", + "tokenOwner": "0x5921C5A62ceb7f9210174278B8Fe6Ade6bC5D497", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3958360000000000000000" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3423910000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1698370000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "407610000000000000000" + }, + { + "address": "0x96c2071dc1D7d7AcDFea44a72c516a13bE7260EA", + "tokenOwner": "0xec2135466f6057C3dC43676169Bd85FEF3E27cbB", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x742DfCd49864B07362701399e2fe053A90D42F09", + "tokenOwner": "0x3493b9195BCfABdec43Fc3458ea3a633b009C1BD", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xbB26CF8FE2f4b227637E33Ecc880021305C56F6B", + "tokenOwner": "0x6Bb1363063EA0B4b83E832d85031b7b603F7E859", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5153339606492d3b83B2b24c4AC4cE2D086e37D7", + "tokenOwner": "0xdebF8B7Ed39Ca7D65BFbd732C3C68b3AFA7D48a3", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x9eB574880E64505662B556178a17CDC2F38183Db", + "tokenOwner": "0x558aE0a0E7532fF051db75003eC03c8F773F3Feb", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3043480000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1509660000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "362320000000000000000" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4824430000000000000000" + }, + { + "address": "0x61adE34f582539c21F4CD6ca9084c892FD5Bf573", + "tokenOwner": "0xe8877c8d2893fbA72Fa86AD5e473C4E247CA8337", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "531400000000000000000" + }, + { + "address": "0x95219Da3f6E7086a242AD39186fc7351Bc01bD3b", + "tokenOwner": "0x5BDe67C6850Ca8D7B324a2b740C7F6E99Aa694C0", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4057970000000000000000" + }, + { + "address": "0x132c538B604b50F29aD76B73327Ef5a2E9007bd9", + "tokenOwner": "0x164eFc9b93fb5F18e49Ff518D8A7752E6087c5BD", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB3A293EE54A041271F43C2f2E64069983AB60013", + "tokenOwner": "0x8A731aEc15C35e139D8074e633A9C0f236006aB9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0991953665dA45c96615ec3AA3c19304C926713b", + "tokenOwner": "0xbFCD7d1Bce86B0bb1DCeb2F43C71815AB5fFE0DC", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xfdf36DfBec1B02A154771f6dD29b1b1Ae3a8Ee40", + "tokenOwner": "0x8Fee12917D33DB7908B0fCAA8f630CEE221E74f0", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x382c0f65A2848C3115417b93C8852C94EFED8835", + "tokenOwner": "0xcD7beB29D2aA614DbE048D4Fd00B643BE5394Eb4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x43CfB964e40eDeeB9eD40A53D82EBe30c3eA6383", + "tokenOwner": "0x97c6a7C8AD2a0C949B045baEDC08b2E0B7dfD187", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3368E07e2b9191B6FcBf79d6584d59B078fdFFe5", + "tokenOwner": "0xe0F4713bF48ABE30e155F1A36c5E91C952D842F9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x3AE885a3CAE537f7ECaC2c7CA8Ce6E904d2fBfbc", + "tokenOwner": "0x8ca234a56D6c41846D9E2733b15e7ff6eD32b665", + "vestingType": "TeamVesting", + "vestingCreationType": 6, + "cliff": "2419200", + "duration": "45964800", + "amount": "12180000000000000000000" + }, + { + "address": "0x996eA0E455191664d45d57bdB99476ae5F6F854C", + "tokenOwner": "0x8ca234a56D6c41846D9E2733b15e7ff6eD32b665", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "48384000", + "duration": "94348800", + "amount": "12820000000000000000000" + }, + { + "address": "0x95219Da3f6E7086a242AD39186fc7351Bc01bD3b", + "tokenOwner": "0x5BDe67C6850Ca8D7B324a2b740C7F6E99Aa694C0", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "742030000000000000000" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3937500000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1953130000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "468750000000000000000" + }, + { + "address": "0x26AD3449d3f4DbfEe6d73014Fc2f661ACa7043A9", + "tokenOwner": "0x1822D5243aA9aEf9fe2639751CFa3885c9DD692a", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x23bcF4dCdAf43C427F21e7ffC76e08Cc73F7c3F8", + "tokenOwner": "0x651ab932EEfD8F28E04026aF95a9a09BBb7Ca4C2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xaF75f45F772aCac6BD01284bb87Ed9236D27e90d", + "tokenOwner": "0x110a9813791bE676d24c33A256396F30119eeFD4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x950eEF7D95E4627167309bF414D4f4AE05dad9FA", + "tokenOwner": "0x3DaC4cbbA58dE26d34f4CB6409D47C676D255841", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x41E1d9783FaA0BD16aAEEBA30B720CC43C8f1E7d", + "tokenOwner": "0xDa1FA3C9B04Ba3C66eda18CaAD48AaD16bEfd405", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x53181951cA7992585397a5786C4ABf475F11F969", + "tokenOwner": "0x3F7487c425Ab36a2AcF66d0adbf70E07e0372E65", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x817E3Ec3ac083b9b66AC118A4E4f2708Ea156F19", + "tokenOwner": "0xA302151f86E96CD868F9A31296A0C3b39ffaa583", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "6774190000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3360220000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "806450000000000000000" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5245400000000000000000" + }, + { + "address": "0xEa235ccFA8225c438185bA340435e1D1eD9C32CF", + "tokenOwner": "0x0b37982E72d394A00aD4383d95e4F198Ed835EF2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD9DD1FBC0bEcE79D10C734303E5d0FCD408AA031", + "tokenOwner": "0xE528db6beDF3096f95AFe601B177f2464f78462D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB8B75BA5ca067E54Ee5db4C982409E294b670a48", + "tokenOwner": "0x934AA6f416Ac197F4133efa4fb3B900d80Ab6D20", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1d86C332348e1296Bc1D94B24B4c54e3b0A20bbe", + "tokenOwner": "0xe43eF43EA747BCFC75C444d313458Dd7B5fd00a9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "10677970000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5296610000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1271190000000000000000" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "6601420000000000000000" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "13695650000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5296610000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1271190000000000000000" + }, + { + "address": "0x488911684Bd91BB541cba3C1b052eB8225bFB071", + "tokenOwner": "0x5073c41546962388830bA2Ee640649bF4c7d8321", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xAA0ED4A68C3bF493a54ba27DD77c520Ec7320e6E", + "tokenOwner": "0x14eCBdAab8c9C47b5d11d0358B1cCEB03f1D2440", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6f426955e558dcf31F5Ea5ccd58208F76Cb71ed0", + "tokenOwner": "0x48301Bba9e5A89F25e0e601fe25C40D9094b2BE6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x2219722dF6A88deEAEfF18d01516DaF0B6fef6Ee", + "tokenOwner": "0x10Cd5c3FA71B1815E5EE9EaFD24BF678a2080cF0", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "2419200", + "duration": "16934400", + "amount": "12352941176470580000000" + }, + { + "address": "0x825cE72d377095Dd4a6E646c3b5Eb57485f08d4b", + "tokenOwner": "0x10Cd5c3FA71B1815E5EE9EaFD24BF678a2080cF0", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "19353600", + "duration": "58060800", + "amount": "30000000000000000000000" + }, + { + "address": "0xf1042A5f836FD100180E5ac3Aa9158acD9d1c5cc", + "tokenOwner": "0xA194B28697e93613641864329803765Dc5Ae3294", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "12600000000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "6250000000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "6250000000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "6250000000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1500000000000000000000" + }, + { + "address": "0x3cFbCeD7038999461491a290c211AfBA7810bb75", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "12914000000000000000000" + }, + { + "address": "0xfb0eFbdDD630834B6b18C6429168D77A90f812Aa", + "tokenOwner": "0x96fB67B4e517A80D3f5F5da4F8ABBD8759fE598e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xF514415F21A909d97876bDf75EEa9A74F60EFD60", + "tokenOwner": "0x9330c5cf2035fe1598a5a951b71cd7dcb6d6057e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1f4df20919423F1CC584B941A35f46eE190dcb97", + "tokenOwner": "0x79D03dcC5Bd57C1E8c6407aac8FfDEdEC694992F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xa0a2AEEDA7F2c7DDCF501Ae2bB478b37282CD1d2", + "tokenOwner": "0x770237EEAf634DA83313C3454d0DadE33945e261", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xB2B1Cce5b6301B47C2c24031179cEC3e3b79676e", + "tokenOwner": "0x6f534595962D24D7e29177FA3ddeE858D3dE7Be5", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x449D41c9ad1745Eea5a19e1Ae2ef060ab18D15e0", + "tokenOwner": "0xA130654FFF77430d53847005A1EE213d3719a5A7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x96792cF4309Bb94239aBf090Aa0f8Ec8C022bD4c", + "tokenOwner": "0x9e56232Aad2603EF2453677fE3f9B35ee475Fd15", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x626caBa9023c21695C03F48336af2609F8b6AfeA", + "tokenOwner": "0x60721C2Bc3788010ba8F1EBccB43322dFBfE487F", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "14318180000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3551140000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1704550000000000000000" + }, + { + "address": "0xB1b5744a6aAF975CfF857Ac8E372fd3930542aA0", + "tokenOwner": "0x2db856404d96A9658904d0D02892f651F12d6b4d", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc0DEFcAe9B5ee561483fd46E2632Ba2bf51fd1c9", + "tokenOwner": "0xaDc099e1599dc69cc63A7B620395197E2fA7A39c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x30bbD2be53290EfB8B930c275115B722a5c07AD2", + "tokenOwner": "0xbd77D656Aa4FAfC38c49317cFDC7deD724481f99", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x8F79cC2BC680459bFc4D77d08e9BE9996aB3c880", + "tokenOwner": "0x3fA8D30e3963042C0Bc05853bFEb3f524A6cbB4A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x4E6DE03d465E5170718c1695decf0186C4eF58C1", + "tokenOwner": "0xBA9636ED6a47ff6b4f50060172A01F362B91b7b6", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7539151Ed2f972020cE8f90707013D261900c0da", + "tokenOwner": "0x4aDc3179152543F645f019642E17271E06232418", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x12964457811cF88458caEf78cF8A6bb1073cC35b", + "tokenOwner": "0xBA593a81492A4794c8D1503697275286fD5Adf2b", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1D5D4bCb3deC6CCd52Fb9720949df1dF743425bE", + "tokenOwner": "0xE5F8a81F072150701c25FbA31c910884fA33098c", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x79D3501e73d4dfB1D548A474f02D30d158A5645e", + "tokenOwner": "0xc8817a388Ac9bc3F01dAdA24823D95c523c9818C", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "53333333333333336000000" + }, + { + "address": "0x79D3501e73d4dfB1D548A474f02D30d158A5645e", + "tokenOwner": "0xc8817a388Ac9bc3F01dAdA24823D95c523c9818C", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "53333333333333336000000" + }, + { + "address": "0x79D3501e73d4dfB1D548A474f02D30d158A5645e", + "tokenOwner": "0xc8817a388Ac9bc3F01dAdA24823D95c523c9818C", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "53333333333333336000000" + }, + { + "address": "0xEEd2f557Dbf649E6299bf39EeFE6b9d0Dd5497C5", + "tokenOwner": "0xc8817a388Ac9bc3F01dAdA24823D95c523c9818C", + "vestingType": "TeamVesting", + "vestingCreationType": 5, + "cliff": "65318400", + "duration": "94348800", + "amount": "26666666666666664000000" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "14651160000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "3633720000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1744190000000000000000" + }, + { + "address": "0xdD35C51D0377B5A3e18c150FBBFB87e4c6495671", + "tokenOwner": "0x2b319539F17b6A88BBCE2C900316Ee7D3c69E7Cb", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xC9be57e3aD9B9B94ABEe201e254977BEEbf8e7f9", + "tokenOwner": "0x6A9057c4c7d219C9A022c6572Ca1B312aFE84799", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "16578950000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "4111840000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "1973680000000000000000" + }, + { + "address": "0xFC1626C2fED24e14299d2599713602413e75d67D", + "tokenOwner": "0x66941a03021570bCC7E36F0c63c396EC56b5a130", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2894740000000000000000" + }, + { + "address": "0xD06DE73EE92786cBD115dbA25eD32eAd29aDb4b5", + "tokenOwner": "0x6077807f90841Db9150e35F42182A29e6D7E1963", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "2894740000000000000000" + }, + { + "address": "0x3BB9f55D46ad4ABC2fb5C66aAbdB158dFeb3F95A", + "tokenOwner": "0x619D9B68dBdE71976C171BF032AB6e1164d79Ac9", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x222A5D50fE448a85E01D6DF031E43916c4E002f1", + "tokenOwner": "0x727ee2F9bFBe88849675C2fc7bc5E61AafC92B48", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xe7724d5F13F64CbbA01E63Fe7e2Fd9E26f2CcAEE", + "tokenOwner": "0x3f91A29f242Cc21AFd05e5bdFE75b3c2c5dE7945", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD71882D3fc74DA99021E7C226d37E222Cf035811", + "tokenOwner": "0xC93A3F243515c65BD0C6f77cC5fD7bc3299ed6f4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x03b371b050B29F2893Aec245BD3Cfce8E409364A", + "tokenOwner": "0xe254199FB71F01Ac1F5E084de187eb7Bc14BBcAc", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "49806700000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5929370000000000000000" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "132631580000000000000000" + }, + { + "address": "0x29a94D7c59D2Ac275229Ba165cB50E8A4BC80b52", + "tokenOwner": "0xCf1DB9Bd0ef393954c07EBA186E83243BD90B681", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "32894740000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "15789470000000000000000" + }, + { + "address": "0x4CEF7E2610cFd72E42f52AF04802D716790Bdb3D", + "tokenOwner": "0x31C5427915BA8bB1aEeA3A1b6127FFE4eC22cE77", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "23157890000000000000000" + }, + { + "address": "0x3b66382093DcD061a04Fe33F58B5AdA2D11f1e88", + "tokenOwner": "0xb7Cb3877FCBbeDCC30dE38a5155d88673A7fd680", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "5789470000000000000000" + }, + { + "address": "0xb0a6A3770E12E6C60B978097081A2a2336a498D9", + "tokenOwner": "0x9315ff5e9A4baA214F82EBc89bEB44f60fCEDE12", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "58263160000000000000000" + }, + { + "address": "0xeeAF9765a58928580991E9e550fED5Bea09e1075", + "tokenOwner": "0x0B2953cBA374e479aF6B1150857FbbD6070e27E7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xA946ceCd9FFed260C2da5caED8ccB80513bE406D", + "tokenOwner": "0xB05E991c0aDBaf31e44063C866712331734A74c4", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xE9D5244F73099F4FFE8F1445Af7b55305DB24b82", + "tokenOwner": "0x19d7c857C6E6CA911D92f0A66c2F06D17b1EfEAe", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x7d80169f0452142c41D5d7480526803872219bb3", + "tokenOwner": "0x99c9252054553EbE07C9dc494f07F780c583310D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x190e40E62B52863244a8c1E9a412D0CDcF8C830F", + "tokenOwner": "0xdD58A16f05f3eA7cA72C8d3AebCB2C31Fc169f09", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x0Df17C00920f8c1B8Ab908159c47b058Ac17898E", + "tokenOwner": "0x4a35089D9BFBC2f2a9fDf2DD144152CbE2c2B743", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x1Abca31403780484f34F55227c38563043C726B3", + "tokenOwner": "0x820675b36c58fD15c1607523f45CAC0693207be8", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x5AB38b30e68dD47496D0cFe135d5de8195Cc86a7", + "tokenOwner": "0xED7E061B1533FEd183dba59BBE5a200D3342b6bD", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x116645360fcE8568eAc0DA4Cdf971547B91A1dd3", + "tokenOwner": "0xb06989Eaf0828eC342b6e27F69492A7Db861aAf2", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xd3AbF2f729Bf3B4662c68d3608Dc391E9bc2d533", + "tokenOwner": "0x08D60E98801A9A6DaC902c350db57D963E3BE80e", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6F398D68Fee916A6A645C33224cBe892f59741E4", + "tokenOwner": "0x381a17eb78501498fa183C81648B4165826E1af7", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xD12BB061B25c44E44442AC4124D133115201b53f", + "tokenOwner": "0xad496aC1B05C50549a11F6A5F26091AE4736CE0D", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x405D3Ea813F674F3e99C1CB22B813136A63Cc3cE", + "tokenOwner": "0x31b02B8399D5dFA4aa9827FbA00c941F6a51230C", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x6666acb21f6b4afB61C042018228b0905E4C22b8", + "tokenOwner": "0x6ccC6EA9ae103629b12ebC95536e7C4Ee051318E", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0xc3d996d3141d13dC962B87A0D95C5C0afBbE839E", + "tokenOwner": "0xe4822F07C1d988A8f2F53D1817f7e8848897b67A", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + }, + { + "address": "0x612ba40c9Ef323212DF1220576e36A4E0a133fb2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "441000000000000000000000" + }, + { + "address": "0xd53816dd2B07F588CEC347810A9494206a555615", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "52500000000000000000000" + }, + { + "address": "0x1924c920e4811edd36FAF3722D0659Db1c94433f", + "tokenOwner": "0x930c2421cC76bA361d44d77A93aC18229Fdb169e", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "62899200", + "amount": "50000000000000000000000" + }, + { + "address": "0x75E1E40E42ea2f147458B17c0A178e210abA8058", + "tokenOwner": "0x12C5bff9e78EaB5B76C4c37378337838D275cb4F", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "9676800", + "amount": "250880000000000000000000" + }, + { + "address": "0xE4953B785ACab1814C75c0aDA43114e5d38e6800", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "31449600", + "amount": "568727472692307000000000" + }, + { + "address": "0xBa5f645016E0089aE5628E140C6A97c5fEeA3ec2", + "tokenOwner": "0x2b45400A61927e8bA22E379eA00498Dc573329C6", + "vestingType": "TeamVesting", + "vestingCreationType": 0, + "cliff": "33868800", + "duration": "43545600", + "amount": "34443946153846000000000" + }, + { + "address": "0x9861bEb7a048Afd616232763466f676417b930A5", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "2419200", + "duration": "31449600", + "amount": "67581299230769000000000" + }, + { + "address": "0x0afD8C51f7A960d33183313F0E41C0f4571F4beE", + "tokenOwner": "0x1B888038505d3Fd0b577d7076d355ED21b93cEfE", + "vestingType": "TeamVesting", + "vestingCreationType": 1, + "cliff": "33868800", + "duration": "43545600", + "amount": "4100468846153000000000" + }, + { + "address": "0x8e4c7ACeb79d8ECC1a7635F8bAf344827E54f9C5", + "tokenOwner": "0xF0e0d3daFbb10A6E622A2985482c4c1DF793CB73", + "vestingType": "Vesting", + "vestingCreationType": 3, + "cliff": "2419200", + "duration": "24192000", + "amount": "0" + } + ] +} diff --git a/scripts/staking/fetch_vesting_addresses.ts b/scripts/staking/fetch_vesting_addresses.ts new file mode 100644 index 000000000..a8339e410 --- /dev/null +++ b/scripts/staking/fetch_vesting_addresses.ts @@ -0,0 +1,228 @@ +// scripts/staking/fetch_vesting_addresses.ts +import { ethers } from "ethers"; +import fs from "fs"; +import path from "path"; +import yargs from "yargs"; +import { hideBin } from "yargs/helpers"; +import dotenv from "dotenv"; +dotenv.config(); + +const VESTING_REGISTRY_ABI = [ + "event VestingCreated(address indexed tokenOwner, address vesting, uint256 cliff, uint256 duration, uint256 amount, uint256 vestingCreationType)", + "event TeamVestingCreated(address indexed tokenOwner, address vesting, uint256 cliff, uint256 duration, uint256 amount, uint256 vestingCreationType)", + "function isVestingAddress(address _vestingAddress) external view returns (bool)", +]; + +interface VestingInfo { + address: string; + tokenOwner: string; + vestingType: "Vesting" | "TeamVesting"; + vestingCreationType: number; + cliff: string; + duration: string; + amount: string; +} + +/** + * Fetch all vesting addresses by scanning VestingCreated and TeamVestingCreated events + */ +async function fetchVestingAddressesFromEvents( + vestingRegistryAddress: string, + rpcUrl: string, + fromBlock: number, + toBlock: number | "latest", +): Promise { + console.log("\nFetching vesting addresses from VestingRegistry events..."); + const provider = new ethers.providers.JsonRpcProvider(rpcUrl); + const vestingRegistry = new ethers.Contract( + vestingRegistryAddress, + VESTING_REGISTRY_ABI, + provider, + ); + + const vestingInfos: VestingInfo[] = []; + const batchSize = 10000; // Process in batches to avoid rate limits + + let currentFromBlock = fromBlock; + const finalToBlock = + toBlock === "latest" ? await provider.getBlockNumber() : toBlock; + + console.log(`Scanning from block ${fromBlock} to ${finalToBlock}...`); + + while (currentFromBlock <= finalToBlock) { + const currentToBlock = Math.min( + currentFromBlock + batchSize - 1, + finalToBlock, + ); + + try { + console.log( + ` Processing blocks ${currentFromBlock} to ${currentToBlock}...`, + ); + + // Fetch VestingCreated events + const vestingCreatedFilter = vestingRegistry.filters.VestingCreated(); + const vestingCreatedEvents = await vestingRegistry.queryFilter( + vestingCreatedFilter, + currentFromBlock, + currentToBlock, + ); + + for (const event of vestingCreatedEvents) { + vestingInfos.push({ + address: event.args?.vesting, + tokenOwner: event.args?.tokenOwner, + vestingType: "Vesting", + vestingCreationType: event.args?.vestingCreationType.toNumber(), + cliff: event.args?.cliff.toString(), + duration: event.args?.duration.toString(), + amount: event.args?.amount.toString(), + }); + } + + // Fetch TeamVestingCreated events + const teamVestingCreatedFilter = + vestingRegistry.filters.TeamVestingCreated(); + const teamVestingCreatedEvents = await vestingRegistry.queryFilter( + teamVestingCreatedFilter, + currentFromBlock, + currentToBlock, + ); + + for (const event of teamVestingCreatedEvents) { + vestingInfos.push({ + address: event.args?.vesting, + tokenOwner: event.args?.tokenOwner, + vestingType: "TeamVesting", + vestingCreationType: event.args?.vestingCreationType.toNumber(), + cliff: event.args?.cliff.toString(), + duration: event.args?.duration.toString(), + amount: event.args?.amount.toString(), + }); + } + + console.log( + ` Found ${vestingCreatedEvents.length} VestingCreated + ${teamVestingCreatedEvents.length} TeamVestingCreated events, ${vestingInfos.length} total vestings`, + ); + + currentFromBlock = currentToBlock + 1; + + // Add delay to avoid rate limiting + await sleep(200); + } catch (error: any) { + console.error( + `ERROR: Failed to process blocks ${currentFromBlock}-${currentToBlock}:`, + error.message, + ); + // Continue with next batch + currentFromBlock = currentToBlock + 1; + } + } + + return vestingInfos; +} + +const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms)); + +async function main() { + const argv = yargs(hideBin(process.argv)) + .option("network", { + type: "string", + description: "Network to use", + choices: ["rsk-mainnet", "rsk-testnet"], + demandOption: true, + }) + .option("vesting-registry-address", { + type: "string", + description: "VestingRegistry contract address", + default: "0xe24ABdB7DcaB57F3cbe4cBDDd850D52F143eE920", // RSK mainnet + }) + .option("rpc-url", { + type: "string", + description: "RPC URL", + default: "https://mainnet-dev.sovryn.app/rpc", + }) + .option("from-block", { + type: "number", + description: "Starting block for events scan", + default: 3769649, // Registry deployed at this block + }) + .option("to-block", { + type: "string", + description: "Ending block for events scan (or 'latest')", + default: "latest", + }) + .parseSync(); + + // Fetch vesting addresses from VestingRegistry events + const vestingInfos = await fetchVestingAddressesFromEvents( + argv.vestingRegistryAddress, + argv.rpcUrl, + argv.fromBlock, + argv.toBlock === "latest" ? "latest" : parseInt(argv.toBlock), + ); + + const allVestingAddresses = new Set(); + vestingInfos.forEach((v) => allVestingAddresses.add(v.address)); + + // Save results + const resultsDir = path.resolve(__dirname, "./config"); + if (!fs.existsSync(resultsDir)) { + fs.mkdirSync(resultsDir, { recursive: true }); + } + + const addressesArray = Array.from(allVestingAddresses).sort(); + + // Save simple addresses list + const addressesPath = path.join(resultsDir, "vestingAddresses.json"); + fs.writeFileSync( + addressesPath, + JSON.stringify( + { + network: argv.network, + fetchedAt: new Date().toISOString(), + count: addressesArray.length, + addresses: addressesArray, + }, + null, + 2, + ), + ); + + // Save detailed info + const detailedPath = path.join(resultsDir, "vestingAddresses_detailed.json"); + fs.writeFileSync( + detailedPath, + JSON.stringify( + { + network: argv.network, + fetchedAt: new Date().toISOString(), + count: vestingInfos.length, + vestings: vestingInfos, + }, + null, + 2, + ), + ); + console.log(`\nDetailed info saved to: ${detailedPath}`); + + console.log("\n" + "=".repeat(60)); + console.log("Vesting Addresses Fetch Complete"); + console.log("=".repeat(60)); + console.log(`Total unique vesting addresses found: ${addressesArray.length}`); + console.log(`Saved to: ${addressesPath}`); + console.log("=".repeat(60)); + + console.log("\nSample addresses:"); + addressesArray.slice(0, 5).forEach((addr) => console.log(` ${addr}`)); + if (addressesArray.length > 5) { + console.log(` ... and ${addressesArray.length - 5} more`); + } +} + +main() + .then(() => process.exit(0)) + .catch((error) => { + console.error("Error:", error); + process.exit(1); + }); diff --git a/scripts/staking/output/vesting_snapshot_RSK_block_8489137_2026-02-03T09-08-38-000Z.csv b/scripts/staking/output/vesting_snapshot_RSK_block_8489137_2026-02-03T09-08-38-000Z.csv new file mode 100644 index 000000000..889076e18 --- /dev/null +++ b/scripts/staking/output/vesting_snapshot_RSK_block_8489137_2026-02-03T09-08-38-000Z.csv @@ -0,0 +1,18 @@ +Vesting Address,Token Owner,Cliff (seconds),Duration (seconds),Start Date (timestamp),End Date (timestamp),Total Balance (SOV),Locked Amount (SOV),Unlocked Amount (SOV),Percentage Vested (%),Is Fully Vested,Block Number,Snapshot Timestamp +0x0008aaD6cA24dcE525F1974904Ac8d6961CDC305,0x2a39cCF25f06c630f00C9dd2693c5751f58972C9,2419200,24192000,1634898495,1659090495,1.186990023987166108,0.0,1.186990023987166108,100.00,true,8489137,1770109718 +0x00297d4FD2D3851924B932DfB64671e4E1FD5307,0x72Bd32a5317EF2F392e1A0D580abFC32750efD19,2419200,62899200,1640946495,1729247295,0.0,0.0,0.0,100.00,true,8489137,1770109718 +0x0038a65375866816B5Ed4cCB1BE515CcD6391059,0x92565D3C6E454178901E24Af0fB039eAD2694786,2419200,24192000,1667557695,1701426495,0.0,0.0,0.0,100.00,true,8489137,1770109718 +0x0041EB022d1E7fC974486aC34555751D8325a415,0x554D94BD0BCf8D44B9591a2A247dd86B244D3Ab6,2419200,24192000,1634898495,1677234495,122.004344034385782982,0.0,122.004344034385782982,100.00,true,8489137,1770109718 +0x004eA670c1469866D9ed3550a13F2F70da106223,0xc2d66BE531249f18054007083A8266862E5ab51b,2419200,24192000,1637317695,1661509695,290.809990458634226643,0.0,290.809990458634226643,100.00,true,8489137,1770109718 +0x005Ec211f5fc55271B19745a4f8F207A42bD8298,0x9a54e31807c6c8EaFDD012A412F1851e77FE7843,14515200,53222400,1688120895,1741343295,20000.0,0.0,20000.0,100.00,true,8489137,1770109718 +0x006C26d04AAE91Bf95A1d542FB18619dED848a06,0x30577d2218fF5C06acE18552ee90c62531eE510E,2419200,24192000,1637317695,1661509695,2.483446328666801975,0.0,2.483446328666801975,100.00,true,8489137,1770109718 +0x0086A97e2937c2E19063F1E58f4332093041ae78,0x0AF4aE0Dfa2E7DBcB67907B33f90aB228fCD94C5,2419200,24192000,1646994495,1671186495,0.0,0.0,0.0,100.00,true,8489137,1770109718 +0x0087Fa27b0079333AfBef0942cAe598EFD43ac0f,0xE81812f3B785f65e929520faAEF6c119D41d198B,2419200,24192000,1640946495,1665138495,18.62353894686417964,0.0,18.62353894686417964,100.00,true,8489137,1770109718 +0x00e98F22198437634C62754E9a5E18AeBFc45e9c,0x9844BeC66Bb646DB26dDed9e3B2CAC13e94099F2,2419200,24192000,1645784895,1669976895,8.992717355885748912,0.0,8.992717355885748912,100.00,true,8489137,1770109718 +0x0158ca6957bcffae7e7B6d2D7d1cfE3F77EAd04b,0x701D74F0e1A103ca3883FC5D0eF922338389E4bC,2419200,24192000,1653042495,1713522495,0.214484003333897921,0.0,0.214484003333897921,100.00,true,8489137,1770109718 +0x01627952426AE7A613b11df45C07b9bD63697b93,0x9Aa8F928011EAE7E5466b75111175518dF94348d,2419200,53222400,1640946495,1694168895,0.0,0.0,0.0,100.00,true,8489137,1770109718 +0x0182Afee177D23CBE1ae188938dDeA87645dC40e,0x9dD4B6b628D018E71772C7f4514F923C6755F0cA,2419200,24192000,1637317695,1662719295,3.012409603181796657,0.0,3.012409603181796657,100.00,true,8489137,1770109718 +0x0221e4FFf6864c667b9cD7C7FE851586Cc5F0473,0x121d0eb48D078a7a5F2e8dB6f91Ad80645c32bae,2419200,24192000,1637317695,1661509695,0.0,0.0,0.0,100.00,true,8489137,1770109718 +0x029df3c597bA71Cc41a3fB6220405CA5B3Bea3fd,0xbFd7dE39db0edd0bB912de917E1553fe42400402,2419200,62899200,1617964095,1725618495,19161.707117882115384595,0.0,19161.707117882115384595,100.00,true,8489137,1770109718 +0x02F4f482fF19DDF8C0d9CEbB47e8B7eb9EAA0441,0x9F01898B30bd20BdC0A9A9FEE0eC3783917c4770,2419200,24192000,1633688895,1702636095,879.060979224747464427,0.0,879.060979224747464427,100.00,true,8489137,1770109718 +0x02d58DA31aD1dca1357710F6Ae7A5B32075aD142,0x8DD8AAc24Fd5775A882089cd4b0Dd0fd8960e728,2419200,24192000,1637317695,1661509695,1.152316802566128662,0.0,1.152316802566128662,100.00,true,8489137,1770109718 diff --git a/scripts/staking/output/vesting_snapshot_RSK_block_8489137_2026-02-03T09-08-38-000Z.json b/scripts/staking/output/vesting_snapshot_RSK_block_8489137_2026-02-03T09-08-38-000Z.json new file mode 100644 index 000000000..1b519d55f --- /dev/null +++ b/scripts/staking/output/vesting_snapshot_RSK_block_8489137_2026-02-03T09-08-38-000Z.json @@ -0,0 +1,269 @@ +{ + "metadata": { + "network": "RSK", + "blockNumber": 8489137, + "blockTimestamp": 1770109718, + "snapshotDate": "2026-02-03T09:08:38.000Z", + "totalVestingContracts": 17, + "successfullyProcessed": 17, + "errors": 0 + }, + "vestings": [ + { + "vestingAddress": "0x0008aaD6cA24dcE525F1974904Ac8d6961CDC305", + "tokenOwner": "0x2a39cCF25f06c630f00C9dd2693c5751f58972C9", + "cliff": "2419200", + "duration": "24192000", + "startDate": "1634898495", + "endDate": "1659090495", + "totalBalance": "1.186990023987166108", + "lockedAmount": "0.0", + "unlockedAmount": "1.186990023987166108", + "percentageVested": "100.00", + "isFullyVested": true, + "blockNumber": 8489137, + "snapshotTimestamp": 1770109718 + }, + { + "vestingAddress": "0x00297d4FD2D3851924B932DfB64671e4E1FD5307", + "tokenOwner": "0x72Bd32a5317EF2F392e1A0D580abFC32750efD19", + "cliff": "2419200", + "duration": "62899200", + "startDate": "1640946495", + "endDate": "1729247295", + "totalBalance": "0.0", + "lockedAmount": "0.0", + "unlockedAmount": "0.0", + "percentageVested": "100.00", + "isFullyVested": true, + "blockNumber": 8489137, + "snapshotTimestamp": 1770109718 + }, + { + "vestingAddress": "0x0038a65375866816B5Ed4cCB1BE515CcD6391059", + "tokenOwner": "0x92565D3C6E454178901E24Af0fB039eAD2694786", + "cliff": "2419200", + "duration": "24192000", + "startDate": "1667557695", + "endDate": "1701426495", + "totalBalance": "0.0", + "lockedAmount": "0.0", + "unlockedAmount": "0.0", + "percentageVested": "100.00", + "isFullyVested": true, + "blockNumber": 8489137, + "snapshotTimestamp": 1770109718 + }, + { + "vestingAddress": "0x0041EB022d1E7fC974486aC34555751D8325a415", + "tokenOwner": "0x554D94BD0BCf8D44B9591a2A247dd86B244D3Ab6", + "cliff": "2419200", + "duration": "24192000", + "startDate": "1634898495", + "endDate": "1677234495", + "totalBalance": "122.004344034385782982", + "lockedAmount": "0.0", + "unlockedAmount": "122.004344034385782982", + "percentageVested": "100.00", + "isFullyVested": true, + "blockNumber": 8489137, + "snapshotTimestamp": 1770109718 + }, + { + "vestingAddress": "0x004eA670c1469866D9ed3550a13F2F70da106223", + "tokenOwner": "0xc2d66BE531249f18054007083A8266862E5ab51b", + "cliff": "2419200", + "duration": "24192000", + "startDate": "1637317695", + "endDate": "1661509695", + "totalBalance": "290.809990458634226643", + "lockedAmount": "0.0", + "unlockedAmount": "290.809990458634226643", + "percentageVested": "100.00", + "isFullyVested": true, + "blockNumber": 8489137, + "snapshotTimestamp": 1770109718 + }, + { + "vestingAddress": "0x005Ec211f5fc55271B19745a4f8F207A42bD8298", + "tokenOwner": "0x9a54e31807c6c8EaFDD012A412F1851e77FE7843", + "cliff": "14515200", + "duration": "53222400", + "startDate": "1688120895", + "endDate": "1741343295", + "totalBalance": "20000.0", + "lockedAmount": "0.0", + "unlockedAmount": "20000.0", + "percentageVested": "100.00", + "isFullyVested": true, + "blockNumber": 8489137, + "snapshotTimestamp": 1770109718 + }, + { + "vestingAddress": "0x006C26d04AAE91Bf95A1d542FB18619dED848a06", + "tokenOwner": "0x30577d2218fF5C06acE18552ee90c62531eE510E", + "cliff": "2419200", + "duration": "24192000", + "startDate": "1637317695", + "endDate": "1661509695", + "totalBalance": "2.483446328666801975", + "lockedAmount": "0.0", + "unlockedAmount": "2.483446328666801975", + "percentageVested": "100.00", + "isFullyVested": true, + "blockNumber": 8489137, + "snapshotTimestamp": 1770109718 + }, + { + "vestingAddress": "0x0086A97e2937c2E19063F1E58f4332093041ae78", + "tokenOwner": "0x0AF4aE0Dfa2E7DBcB67907B33f90aB228fCD94C5", + "cliff": "2419200", + "duration": "24192000", + "startDate": "1646994495", + "endDate": "1671186495", + "totalBalance": "0.0", + "lockedAmount": "0.0", + "unlockedAmount": "0.0", + "percentageVested": "100.00", + "isFullyVested": true, + "blockNumber": 8489137, + "snapshotTimestamp": 1770109718 + }, + { + "vestingAddress": "0x0087Fa27b0079333AfBef0942cAe598EFD43ac0f", + "tokenOwner": "0xE81812f3B785f65e929520faAEF6c119D41d198B", + "cliff": "2419200", + "duration": "24192000", + "startDate": "1640946495", + "endDate": "1665138495", + "totalBalance": "18.62353894686417964", + "lockedAmount": "0.0", + "unlockedAmount": "18.62353894686417964", + "percentageVested": "100.00", + "isFullyVested": true, + "blockNumber": 8489137, + "snapshotTimestamp": 1770109718 + }, + { + "vestingAddress": "0x00e98F22198437634C62754E9a5E18AeBFc45e9c", + "tokenOwner": "0x9844BeC66Bb646DB26dDed9e3B2CAC13e94099F2", + "cliff": "2419200", + "duration": "24192000", + "startDate": "1645784895", + "endDate": "1669976895", + "totalBalance": "8.992717355885748912", + "lockedAmount": "0.0", + "unlockedAmount": "8.992717355885748912", + "percentageVested": "100.00", + "isFullyVested": true, + "blockNumber": 8489137, + "snapshotTimestamp": 1770109718 + }, + { + "vestingAddress": "0x0158ca6957bcffae7e7B6d2D7d1cfE3F77EAd04b", + "tokenOwner": "0x701D74F0e1A103ca3883FC5D0eF922338389E4bC", + "cliff": "2419200", + "duration": "24192000", + "startDate": "1653042495", + "endDate": "1713522495", + "totalBalance": "0.214484003333897921", + "lockedAmount": "0.0", + "unlockedAmount": "0.214484003333897921", + "percentageVested": "100.00", + "isFullyVested": true, + "blockNumber": 8489137, + "snapshotTimestamp": 1770109718 + }, + { + "vestingAddress": "0x01627952426AE7A613b11df45C07b9bD63697b93", + "tokenOwner": "0x9Aa8F928011EAE7E5466b75111175518dF94348d", + "cliff": "2419200", + "duration": "53222400", + "startDate": "1640946495", + "endDate": "1694168895", + "totalBalance": "0.0", + "lockedAmount": "0.0", + "unlockedAmount": "0.0", + "percentageVested": "100.00", + "isFullyVested": true, + "blockNumber": 8489137, + "snapshotTimestamp": 1770109718 + }, + { + "vestingAddress": "0x0182Afee177D23CBE1ae188938dDeA87645dC40e", + "tokenOwner": "0x9dD4B6b628D018E71772C7f4514F923C6755F0cA", + "cliff": "2419200", + "duration": "24192000", + "startDate": "1637317695", + "endDate": "1662719295", + "totalBalance": "3.012409603181796657", + "lockedAmount": "0.0", + "unlockedAmount": "3.012409603181796657", + "percentageVested": "100.00", + "isFullyVested": true, + "blockNumber": 8489137, + "snapshotTimestamp": 1770109718 + }, + { + "vestingAddress": "0x0221e4FFf6864c667b9cD7C7FE851586Cc5F0473", + "tokenOwner": "0x121d0eb48D078a7a5F2e8dB6f91Ad80645c32bae", + "cliff": "2419200", + "duration": "24192000", + "startDate": "1637317695", + "endDate": "1661509695", + "totalBalance": "0.0", + "lockedAmount": "0.0", + "unlockedAmount": "0.0", + "percentageVested": "100.00", + "isFullyVested": true, + "blockNumber": 8489137, + "snapshotTimestamp": 1770109718 + }, + { + "vestingAddress": "0x029df3c597bA71Cc41a3fB6220405CA5B3Bea3fd", + "tokenOwner": "0xbFd7dE39db0edd0bB912de917E1553fe42400402", + "cliff": "2419200", + "duration": "62899200", + "startDate": "1617964095", + "endDate": "1725618495", + "totalBalance": "19161.707117882115384595", + "lockedAmount": "0.0", + "unlockedAmount": "19161.707117882115384595", + "percentageVested": "100.00", + "isFullyVested": true, + "blockNumber": 8489137, + "snapshotTimestamp": 1770109718 + }, + { + "vestingAddress": "0x02F4f482fF19DDF8C0d9CEbB47e8B7eb9EAA0441", + "tokenOwner": "0x9F01898B30bd20BdC0A9A9FEE0eC3783917c4770", + "cliff": "2419200", + "duration": "24192000", + "startDate": "1633688895", + "endDate": "1702636095", + "totalBalance": "879.060979224747464427", + "lockedAmount": "0.0", + "unlockedAmount": "879.060979224747464427", + "percentageVested": "100.00", + "isFullyVested": true, + "blockNumber": 8489137, + "snapshotTimestamp": 1770109718 + }, + { + "vestingAddress": "0x02d58DA31aD1dca1357710F6Ae7A5B32075aD142", + "tokenOwner": "0x8DD8AAc24Fd5775A882089cd4b0Dd0fd8960e728", + "cliff": "2419200", + "duration": "24192000", + "startDate": "1637317695", + "endDate": "1661509695", + "totalBalance": "1.152316802566128662", + "lockedAmount": "0.0", + "unlockedAmount": "1.152316802566128662", + "percentageVested": "100.00", + "isFullyVested": true, + "blockNumber": 8489137, + "snapshotTimestamp": 1770109718 + } + ], + "errors": [] +} diff --git a/scripts/staking/snapshot_vesting.ts b/scripts/staking/snapshot_vesting.ts new file mode 100644 index 000000000..b554f8a47 --- /dev/null +++ b/scripts/staking/snapshot_vesting.ts @@ -0,0 +1,464 @@ +// scripts/staking/snapshot_vesting.ts +import { ethers } from "ethers"; +import { createObjectCsvWriter } from "csv-writer"; +import fs from "fs"; +import path from "path"; +import yargs from "yargs"; +import { hideBin } from "yargs/helpers"; +import { TBOS_SNAPSHOT_STAKING_CONFIG } from "./config/tbos_snapshot_staking.config"; +import dotenv from "dotenv"; +dotenv.config(); + +interface VestingSnapshot { + vestingAddress: string; + tokenOwner: string; + cliff: string; // in seconds + duration: string; // in seconds + startDate: string; // timestamp + endDate: string; // timestamp + totalBalance: string; // Total SOV staked in this vesting + lockedAmount: string; // Currently locked SOV + unlockedAmount: string; // Currently unlocked SOV + percentageVested: string; // Percentage of vesting completed + isFullyVested: boolean; + blockNumber: number; + snapshotTimestamp: number; +} + +const VESTING_ABI = [ + "function tokenOwner() external view returns (address)", + "function cliff() external view returns (uint256)", + "function duration() external view returns (uint256)", + "function startDate() external view returns (uint256)", + "function endDate() external view returns (uint256)", +]; + +const STAKING_ABI = [ + "function balanceOf(address account) external view returns (uint96)", + "function isVestingContract(address stakerAddress) external view returns (bool)", +]; + +const SOV_ABI = [ + "function balanceOf(address account) external view returns (uint256)", +]; + +/** + * Calculate locked and unlocked amounts based on vesting schedule + */ +function calculateVestingAmounts( + totalBalance: bigint, + startDate: bigint, + cliff: bigint, + duration: bigint, + currentTimestamp: bigint, +): { lockedAmount: bigint; unlockedAmount: bigint; percentageVested: number } { + // If vesting hasn't started yet + if (currentTimestamp < startDate) { + return { + lockedAmount: totalBalance, + unlockedAmount: BigInt(0), + percentageVested: 0, + }; + } + + const cliffDate = startDate + cliff; + + // If we're before cliff, everything is locked + if (currentTimestamp < cliffDate) { + return { + lockedAmount: totalBalance, + unlockedAmount: BigInt(0), + percentageVested: 0, + }; + } + + const endDate = startDate + duration; + + // If fully vested + if (currentTimestamp >= endDate) { + return { + lockedAmount: BigInt(0), + unlockedAmount: totalBalance, + percentageVested: 100, + }; + } + + // Calculate linear vesting + const timeFromStart = currentTimestamp - startDate; + const percentageVested = + Number((timeFromStart * BigInt(10000)) / duration) / 100; + + const unlockedAmount = (totalBalance * timeFromStart) / duration; + const lockedAmount = totalBalance - unlockedAmount; + + return { + lockedAmount, + unlockedAmount, + percentageVested, + }; +} + +async function getVestingSnapshot(params: { + rpcUrl: string; + stakingAddress: string; + sovAddress: string; + vestingAddresses: string[]; + blockNumber: number; + network: string; +}) { + const { + rpcUrl, + stakingAddress, + sovAddress, + vestingAddresses, + blockNumber, + network, + } = params; + + console.log(`Starting vesting snapshot process...`); + console.log(`Total vesting contracts to process: ${vestingAddresses.length}`); + + const provider = new ethers.providers.JsonRpcProvider(rpcUrl); + const stakingContract = new ethers.Contract( + stakingAddress, + STAKING_ABI, + provider, + ); + const sovContract = new ethers.Contract(sovAddress, SOV_ABI, provider); + + const targetBlock = blockNumber; + + // Get timestamp from the block + const block = await provider.getBlock(targetBlock); + const targetTimestamp = block.timestamp; + + console.log(`Target block: ${targetBlock}`); + console.log( + `Block timestamp: ${targetTimestamp} (${new Date(targetTimestamp * 1000).toISOString()})`, + ); + + const results: VestingSnapshot[] = []; + const errors: { address: string; error: string }[] = []; + let processedCount = 0; + + for (const vestingAddress of vestingAddresses) { + try { + // Verify it's a vesting contract + const isVesting = await stakingContract.isVestingContract( + vestingAddress, + { + blockTag: targetBlock, + }, + ); + + if (!isVesting) { + console.warn( + `WARNING: ${vestingAddress} is not a vesting contract, skipping`, + ); + errors.push({ + address: vestingAddress, + error: "Not a vesting contract", + }); + continue; + } + + const vestingContract = new ethers.Contract( + vestingAddress, + VESTING_ABI, + provider, + ); + + // Fetch all vesting details in parallel + const [tokenOwner, cliff, duration, startDate, endDate, totalBalance] = + await Promise.all([ + vestingContract.tokenOwner({ blockTag: targetBlock }), + vestingContract.cliff({ blockTag: targetBlock }), + vestingContract.duration({ blockTag: targetBlock }), + vestingContract.startDate({ blockTag: targetBlock }), + vestingContract.endDate({ blockTag: targetBlock }), + stakingContract.balanceOf(vestingAddress, { blockTag: targetBlock }), + ]); + + // Calculate locked/unlocked amounts + const { lockedAmount, unlockedAmount, percentageVested } = + calculateVestingAmounts( + BigInt(totalBalance.toString()), + BigInt(startDate.toString()), + BigInt(cliff.toString()), + BigInt(duration.toString()), + BigInt(targetTimestamp), + ); + + const isFullyVested = percentageVested >= 100; + + results.push({ + vestingAddress, + tokenOwner, + cliff: cliff.toString(), + duration: duration.toString(), + startDate: startDate.toString(), + endDate: endDate.toString(), + totalBalance: ethers.utils.formatUnits(totalBalance.toString(), 18), + lockedAmount: ethers.utils.formatUnits(lockedAmount.toString(), 18), + unlockedAmount: ethers.utils.formatUnits(unlockedAmount.toString(), 18), + percentageVested: percentageVested.toFixed(2), + isFullyVested, + blockNumber: targetBlock, + snapshotTimestamp: targetTimestamp, + }); + + processedCount++; + if (processedCount % 10 === 0) { + console.log( + `Processed ${processedCount}/${vestingAddresses.length} vesting contracts`, + ); + } + + // Add small delay between requests + await sleep(100); + } catch (error: any) { + console.error( + `ERROR: Failed to process vesting ${vestingAddress}:`, + error.message, + ); + errors.push({ + address: vestingAddress, + error: error.message, + }); + } + } + + // Save results + const timestamp = new Date(targetTimestamp * 1000) + .toISOString() + .replace(/[:.]/g, "-"); + const resultsDir = path.resolve(__dirname, "./output"); + if (!fs.existsSync(resultsDir)) { + fs.mkdirSync(resultsDir, { recursive: true }); + } + + // Save as JSON + const jsonPath = path.join( + resultsDir, + `vesting_snapshot_${network}_block_${targetBlock}_${timestamp}.json`, + ); + fs.writeFileSync( + jsonPath, + JSON.stringify( + { + metadata: { + network, + blockNumber: targetBlock, + blockTimestamp: targetTimestamp, + snapshotDate: new Date(targetTimestamp * 1000).toISOString(), + totalVestingContracts: vestingAddresses.length, + successfullyProcessed: results.length, + errors: errors.length, + }, + vestings: results, + errors, + }, + null, + 2, + ), + ); + + // Save as CSV + const csvPath = path.join( + resultsDir, + `vesting_snapshot_${network}_block_${targetBlock}_${timestamp}.csv`, + ); + const csvWriter = createObjectCsvWriter({ + path: csvPath, + header: [ + { id: "vestingAddress", title: "Vesting Address" }, + { id: "tokenOwner", title: "Token Owner" }, + { id: "cliff", title: "Cliff (seconds)" }, + { id: "duration", title: "Duration (seconds)" }, + { id: "startDate", title: "Start Date (timestamp)" }, + { id: "endDate", title: "End Date (timestamp)" }, + { id: "totalBalance", title: "Total Balance (SOV)" }, + { id: "lockedAmount", title: "Locked Amount (SOV)" }, + { id: "unlockedAmount", title: "Unlocked Amount (SOV)" }, + { id: "percentageVested", title: "Percentage Vested (%)" }, + { id: "isFullyVested", title: "Is Fully Vested" }, + { id: "blockNumber", title: "Block Number" }, + { id: "snapshotTimestamp", title: "Snapshot Timestamp" }, + ], + }); + await csvWriter.writeRecords(results); + + // Calculate summary statistics + const totalSOVStaked = results.reduce( + (sum, v) => sum + parseFloat(v.totalBalance), + 0, + ); + const totalLocked = results.reduce( + (sum, v) => sum + parseFloat(v.lockedAmount), + 0, + ); + const totalUnlocked = results.reduce( + (sum, v) => sum + parseFloat(v.unlockedAmount), + 0, + ); + const fullyVestedCount = results.filter((v) => v.isFullyVested).length; + + console.log("\n" + "=".repeat(60)); + console.log("Vesting Snapshot Summary"); + console.log("=".repeat(60)); + console.log(`Network: ${network}`); + console.log(`Block: ${targetBlock}`); + console.log(`Timestamp: ${new Date(targetTimestamp * 1000).toISOString()}`); + console.log(`\nVesting Contracts:`); + console.log(` Total Processed: ${results.length}`); + console.log(` Fully Vested: ${fullyVestedCount}`); + console.log(` Still Vesting: ${results.length - fullyVestedCount}`); + console.log(` Errors: ${errors.length}`); + console.log(`\nSOV Totals:`); + console.log(` Total Staked: ${totalSOVStaked.toFixed(2)} SOV`); + console.log( + ` Locked: ${totalLocked.toFixed(2)} SOV (${((totalLocked / totalSOVStaked) * 100).toFixed(2)}%)`, + ); + console.log( + ` Unlocked: ${totalUnlocked.toFixed(2)} SOV (${((totalUnlocked / totalSOVStaked) * 100).toFixed(2)}%)`, + ); + console.log(`\nOutput Files:`); + console.log(` JSON: ${jsonPath}`); + console.log(` CSV: ${csvPath}`); + console.log("=".repeat(60)); + + if (errors.length > 0) { + console.log("\nErrors encountered:"); + errors.forEach((e) => { + console.log(` ${e.address}: ${e.error}`); + }); + } + + return { results, errors }; +} + +const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms)); + +// Script entry point +async function main() { + const argv = yargs(hideBin(process.argv)) + .option("block-number", { + type: "number", + description: "Specific block number for the snapshot", + }) + .option("current-block-number", { + type: "boolean", + description: "Use the current block number for the snapshot", + }) + .option("network", { + type: "string", + description: "Network to use", + choices: ["BOB", "RSK"], + demandOption: true, + }) + .option("sov-address", { + type: "string", + description: "SOV token address (required for RSK mainnet)", + default: "0xEFc78fc7d48b64958315949279Ba181c2114ABBd", // RSK mainnet SOV + }) + .parseSync() as { + network: "BOB" | "RSK"; + blockNumber?: number; + currentBlockNumber?: boolean; + sovAddress: string; + }; + + // Validate that exactly one block option is provided + if (!argv.blockNumber && !argv.currentBlockNumber) { + console.error( + "Error: Must provide either --block-number or --current-block-number", + ); + process.exit(1); + } + if (argv.blockNumber && argv.currentBlockNumber) { + console.error( + "Error: Cannot use both --block-number and --current-block-number", + ); + process.exit(1); + } + + // Get network-specific config + const networkConfig = TBOS_SNAPSHOT_STAKING_CONFIG[argv.network]; + console.log(`Using network: ${argv.network}`); + + let targetBlockNumber: number; + + if (argv.currentBlockNumber) { + const provider = new ethers.providers.JsonRpcProvider(networkConfig.rpcUrl); + const currentBlock = await provider.getBlock("latest"); + const blockSafeThreshold = 2; + targetBlockNumber = currentBlock.number - blockSafeThreshold; + console.log( + `Using current block number (with safety threshold): ${targetBlockNumber}`, + ); + } else { + targetBlockNumber = argv.blockNumber!; + console.log(`Using specified block number: ${targetBlockNumber}`); + } + + // Load vesting addresses from config + const vestingAddresses = loadVestingAddresses(); + + await getVestingSnapshot({ + rpcUrl: networkConfig.rpcUrl, + stakingAddress: networkConfig.stakingAddress, + sovAddress: argv.sovAddress, + vestingAddresses, + blockNumber: targetBlockNumber, + network: argv.network, + }); +} + +function loadVestingAddresses(): string[] { + const configPath = path.resolve(__dirname, "./config/vestingAddresses.json"); + if (fs.existsSync(configPath)) { + try { + const config = JSON.parse(fs.readFileSync(configPath, "utf8")); + const addresses = config.addresses; + + if (!addresses || addresses.length === 0) { + console.error("Error: No addresses found in config file"); + process.exit(1); + } + + console.log( + `Loaded ${addresses.length} vesting addresses from config.json`, + ); + return addresses; + } catch (error) { + console.error("Error reading vesting addresses config file:", error); + throw new Error(`Error reading vesting addresses config file: ${error}`); + } + } else { + console.error(`Error: Config file not found at ${configPath}`); + console.error( + "Please create config/vestingAddresses.json with the vesting addresses to snapshot", + ); + console.error("\nExample format:"); + console.error( + JSON.stringify( + { + addresses: [ + "0x1234567890123456789012345678901234567890", + "0x0987654321098765432109876543210987654321", + ], + }, + null, + 2, + ), + ); + process.exit(1); + } +} + +main() + .then(() => process.exit(0)) + .catch((error) => { + console.error("Error:", error); + process.exit(1); + }); diff --git a/tests-onchain/sipReplaceLockedSOV.test.js b/tests-onchain/sipReplaceLockedSOV.test.js new file mode 100644 index 000000000..f22095694 --- /dev/null +++ b/tests-onchain/sipReplaceLockedSOV.test.js @@ -0,0 +1,304 @@ +// first run a local forked mainnet node in a separate terminal window: +// npx hardhat node --fork https://mainnet-dev.sovryn.app/rpc --no-deploy +// now run the test: +// npx hardhat test tests-onchain/sipReplaceLockedSOV.test.js --network rskForkedMainnet + +const { + impersonateAccount, + mine, + time, + setBalance, +} = require("@nomicfoundation/hardhat-network-helpers"); +const hre = require("hardhat"); + +const { + ethers, + deployments: { createFixture, get }, +} = hre; + +const MAX_DURATION = ethers.BigNumber.from(24 * 60 * 60).mul(1092); + +const ONE_RBTC = ethers.utils.parseEther("1.0"); + +const getImpersonatedSigner = async (addressToImpersonate) => { + await impersonateAccount(addressToImpersonate); + return await ethers.getSigner(addressToImpersonate); +}; + +describe("SIP Replace LockedSOV test onchain", () => { + const getImpersonatedSignerFromJsonRpcProvider = async (addressToImpersonate) => { + const provider = new ethers.providers.JsonRpcProvider("http://localhost:8545"); + await provider.send("hardhat_impersonateAccount", [addressToImpersonate]); + return provider.getSigner(addressToImpersonate); + }; + + const setupTest = createFixture(async ({ deployments }) => { + const deployer = (await ethers.getSigners())[0].address; + const deployerSigner = await ethers.getSigner(deployer); + + const multisigAddress = (await get("MultiSigWallet")).address; + const multisigSigner = await getImpersonatedSignerFromJsonRpcProvider(multisigAddress); + + await setBalance(deployer, ONE_RBTC.mul(10)); + + // Deploy LockedSOVMigration + await deployments.fixture(["LockedSOVMigration"], { + keepExistingDeployments: true, + }); + + const stakingProxy = await get("StakingProxy"); + const staking = await ethers.getContractAt( + "IStaking", + stakingProxy.address, + deployerSigner + ); + const sovrynProtocol = await ethers.getContract("SovrynProtocol", deployerSigner); + const lockedSOV = await get("LockedSOV"); + const lockedSOVMigration = await get("LockedSOVMigration"); + + const god = await deployments.get("GovernorOwner"); + const governorOwner = await ethers.getContractAt( + "GovernorAlpha", + god.address, + deployerSigner + ); + const governorOwnerSigner = await getImpersonatedSigner(god.address); + + await setBalance(governorOwnerSigner.address, ONE_RBTC); + const timelockOwner = await ethers.getContract("TimelockOwner", governorOwnerSigner); + + const timelockOwnerSigner = await getImpersonatedSignerFromJsonRpcProvider( + timelockOwner.address + ); + await setBalance(timelockOwnerSigner._address, ONE_RBTC); + + return { + deployer, + deployerSigner, + staking, + stakingProxy, + sovrynProtocol, + lockedSOV, + lockedSOVMigration, + governorOwner, + governorOwnerSigner, + timelockOwner, + timelockOwnerSigner, + multisigAddress, + multisigSigner, + }; + }); + + describe("SIP Replace LockedSOV Test creation and execution", () => { + it("SIP Replace LockedSOV is executable and updates protocol contracts", async () => { + if (!hre.network.tags["forked"]) { + console.error("ERROR: Must run on a forked net"); + return; + } + await hre.network.provider.request({ + method: "hardhat_reset", + params: [ + { + forking: { + jsonRpcUrl: "https://mainnet-dev.sovryn.app/rpc", + blockNumber: 8400000, // Use a recent block + }, + }, + ], + }); + + const { + deployer, + deployerSigner, + staking, + sovrynProtocol, + lockedSOV, + lockedSOVMigration, + governorOwner, + timelockOwnerSigner, + multisigSigner, + } = await setupTest(); + + // Get initial LockedSOV address from protocol + const initialLockedSOVAddress = await sovrynProtocol.getLockedSOVAddress(); + console.log(`Initial LockedSOV address in protocol: ${initialLockedSOVAddress}`); + console.log(`Old LockedSOV deployment: ${lockedSOV.address}`); + console.log(`New LockedSOVMigration deployment: ${lockedSOVMigration.address}`); + + expect(initialLockedSOVAddress.toLowerCase()).to.equal( + lockedSOV.address.toLowerCase() + ); + + // CREATE PROPOSAL + const sov = await ethers.getContract("SOV", timelockOwnerSigner); + const whaleAmount = (await sov.totalSupply()).mul(ethers.BigNumber.from(5)); + await sov.mint(deployer, whaleAmount); + + await sov.connect(deployerSigner).approve(staking.address, whaleAmount); + + // Unpause staking if paused + if (await staking.paused()) { + await staking.connect(multisigSigner).pauseUnpause(false); + } + + const kickoffTS = await staking.kickoffTS(); + await staking + .connect(deployerSigner) + .stake(whaleAmount, kickoffTS.add(MAX_DURATION), deployer, deployer); + await mine(); + + // CREATE PROPOSAL AND VERIFY + const proposalIdBeforeSIP = await governorOwner.latestProposalIds(deployer); + await hre.run("sips:create", { argsFunc: "getArgsSipReplaceLockedSOV" }); + const proposalId = await governorOwner.latestProposalIds(deployer); + expect( + proposalId, + "Proposal was not created. Check the SIP creation is not commented out." + ).is.gt(proposalIdBeforeSIP); + + console.log(`Proposal created with ID: ${proposalId.toString()}`); + + // VOTE FOR PROPOSAL + await mine(); + await governorOwner.connect(deployerSigner).castVote(proposalId, true); + console.log("Vote cast for proposal"); + + // QUEUE PROPOSAL + let proposal = await governorOwner.proposals(proposalId); + await mine(proposal.endBlock); + await governorOwner.queue(proposalId); + console.log("Proposal queued"); + + // EXECUTE PROPOSAL + proposal = await governorOwner.proposals(proposalId); + await time.increaseTo(proposal.eta); + await expect(governorOwner.execute(proposalId)) + .to.emit(governorOwner, "ProposalExecuted") + .withArgs(proposalId); + + console.log("Proposal executed"); + + // VERIFY execution + expect((await governorOwner.proposals(proposalId)).executed).to.be.true; + + // VALIDATE LOCKEDSOV ADDRESS UPDATED IN PROTOCOL + const updatedLockedSOVAddress = await sovrynProtocol.getLockedSOVAddress(); + console.log(`Updated LockedSOV address in protocol: ${updatedLockedSOVAddress}`); + + expect(updatedLockedSOVAddress.toLowerCase()).to.equal( + lockedSOVMigration.address.toLowerCase() + ); + + // Verify LiquidityMining contracts updated (if they exist) + try { + const lm = await ethers.getContract("LiquidityMining"); + const lmLockedSOV = await lm.lockedSOV(); + console.log(`LiquidityMining LockedSOV: ${lmLockedSOV}`); + expect(lmLockedSOV.toLowerCase()).to.equal( + lockedSOVMigration.address.toLowerCase() + ); + } catch (error) { + console.log("LiquidityMining contract not found, skipping validation"); + } + + try { + const lmV2 = await ethers.getContract("LiquidityMiningV2"); + const lmV2LockedSOV = await lmV2.lockedSOV(); + console.log(`LiquidityMiningV2 LockedSOV: ${lmV2LockedSOV}`); + expect(lmV2LockedSOV.toLowerCase()).to.equal( + lockedSOVMigration.address.toLowerCase() + ); + } catch (error) { + console.log("LiquidityMiningV2 contract not found, skipping validation"); + } + + console.log("All contracts successfully updated to use LockedSOVMigration"); + }); + + it("Validates that LockedSOVMigration mutes all operations", async () => { + if (!hre.network.tags["forked"]) { + console.error("ERROR: Must run on a forked net"); + return; + } + + const { deployer, deployerSigner, lockedSOVMigration, timelockOwnerSigner } = + await setupTest(); + + const sov = await ethers.getContract("SOV", timelockOwnerSigner); + const lockedSOVMigrationContract = await ethers.getContractAt( + "ILockedSOV", + lockedSOVMigration.address, + deployerSigner + ); + + const testAmount = ethers.utils.parseEther("1000"); + await sov.mint(deployer, testAmount); + await sov.connect(deployerSigner).approve(lockedSOVMigration.address, testAmount); + + console.log("Testing LockedSOVMigration muted functions..."); + + // Test deposit - should not revert but should do nothing + const initialBalance = await lockedSOVMigrationContract.getLockedBalance(deployer); + await lockedSOVMigrationContract + .connect(deployerSigner) + .deposit(deployer, testAmount, 0); + const afterDepositBalance = + await lockedSOVMigrationContract.getLockedBalance(deployer); + expect(afterDepositBalance).to.equal(initialBalance); + console.log("Deposit is muted - balance unchanged"); + + // Test depositSOV - should not revert but should do nothing + await lockedSOVMigrationContract + .connect(deployerSigner) + .depositSOV(deployer, testAmount); + const afterDepositSOVBalance = + await lockedSOVMigrationContract.getLockedBalance(deployer); + expect(afterDepositSOVBalance).to.equal(initialBalance); + console.log("DepositSOV is muted - balance unchanged"); + + // Test withdraw - should not revert but should do nothing + const initialSOVBalance = await sov.balanceOf(deployer); + await lockedSOVMigrationContract.connect(deployerSigner).withdraw(deployer); + const afterWithdrawSOVBalance = await sov.balanceOf(deployer); + expect(afterWithdrawSOVBalance).to.equal(initialSOVBalance); + console.log("Withdraw is muted - no SOV transferred"); + + // Test createVesting - should return address(0) + const vestingAddress = await lockedSOVMigrationContract + .connect(deployerSigner) + .callStatic.createVesting(); + expect(vestingAddress).to.equal(ethers.constants.AddressZero); + console.log("CreateVesting is muted - returns zero address"); + + // Test createVestingAndStake - should not revert but should do nothing + await lockedSOVMigrationContract.connect(deployerSigner).createVestingAndStake(); + console.log("CreateVestingAndStake is muted - no action taken"); + + // Test stakeTokens - should not revert but should do nothing + await lockedSOVMigrationContract.connect(deployerSigner).stakeTokens(); + console.log("StakeTokens is muted - no action taken"); + + // Test withdrawAndStakeTokens - should not revert but should do nothing + await lockedSOVMigrationContract + .connect(deployerSigner) + .withdrawAndStakeTokens(deployer); + console.log("WithdrawAndStakeTokens is muted - no action taken"); + + // Test withdrawAndStakeTokensFrom - should not revert but should do nothing + await lockedSOVMigrationContract + .connect(deployerSigner) + .withdrawAndStakeTokensFrom(deployer); + console.log("WithdrawAndStakeTokensFrom is muted - no action taken"); + + console.log("All LockedSOVMigration operations correctly muted"); + + // Verify read functions still work + const cliff = await lockedSOVMigrationContract.cliff(); + const duration = await lockedSOVMigrationContract.duration(); + console.log(`Cliff: ${cliff.toString()}, Duration: ${duration.toString()}`); + expect(cliff).to.be.gt(0); + expect(duration).to.be.gt(0); + console.log("Read functions still operational"); + }); + }); +}); diff --git a/tests-onchain/sipStakingFreeze.test.js b/tests-onchain/sipStakingFreeze.test.js new file mode 100644 index 000000000..fdc2dfe25 --- /dev/null +++ b/tests-onchain/sipStakingFreeze.test.js @@ -0,0 +1,274 @@ +// first run a local forked mainnet node in a separate terminal window: +// npx hardhat node --fork https://mainnet-dev.sovryn.app/rpc --no-deploy +// now run the test: +// npx hardhat test tests-onchain/sipStakingFreeze.test.js --network rskForkedMainnet + +const { + impersonateAccount, + mine, + time, + setBalance, +} = require("@nomicfoundation/hardhat-network-helpers"); +const hre = require("hardhat"); + +const { + ethers, + deployments: { createFixture, get }, +} = hre; + +const MAX_DURATION = ethers.BigNumber.from(24 * 60 * 60).mul(1092); + +const ONE_RBTC = ethers.utils.parseEther("1.0"); + +const getImpersonatedSigner = async (addressToImpersonate) => { + await impersonateAccount(addressToImpersonate); + return await ethers.getSigner(addressToImpersonate); +}; + +describe("SIP Staking Freeze test onchain", () => { + const getImpersonatedSignerFromJsonRpcProvider = async (addressToImpersonate) => { + const provider = new ethers.providers.JsonRpcProvider("http://localhost:8545"); + await provider.send("hardhat_impersonateAccount", [addressToImpersonate]); + return provider.getSigner(addressToImpersonate); + }; + + const setupTest = createFixture(async ({ deployments }) => { + const deployer = (await ethers.getSigners())[0].address; + const deployerSigner = await ethers.getSigner(deployer); + + const multisigAddress = (await get("MultiSigWallet")).address; + const multisigSigner = await getImpersonatedSignerFromJsonRpcProvider(multisigAddress); + + await setBalance(deployer, ONE_RBTC.mul(10)); + await deployments.fixture(["ProtocolModules"], { + keepExistingDeployments: true, + }); // start from a fresh deployments + + const stakingProxy = await get("StakingProxy"); + const staking = await ethers.getContractAt( + "IStaking", + stakingProxy.address, + deployerSigner + ); + const sovrynProtocol = await ethers.getContract("SovrynProtocol", deployerSigner); + + const god = await deployments.get("GovernorOwner"); + const governorOwner = await ethers.getContractAt( + "GovernorAlpha", + god.address, + deployerSigner + ); + const governorOwnerSigner = await getImpersonatedSigner(god.address); + + await setBalance(governorOwnerSigner.address, ONE_RBTC); + const timelockOwner = await ethers.getContract("TimelockOwner", governorOwnerSigner); + + const timelockOwnerSigner = await getImpersonatedSignerFromJsonRpcProvider( + timelockOwner.address + ); + await setBalance(timelockOwnerSigner._address, ONE_RBTC); + + return { + deployer, + deployerSigner, + staking, + stakingProxy, + sovrynProtocol, + governorOwner, + governorOwnerSigner, + timelockOwner, + timelockOwnerSigner, + multisigAddress, + multisigSigner, + }; + }); + + describe("SIP Staking Freeze Test creation and execution", () => { + it("SIP Staking Freeze is executable and freezes staking contract", async () => { + if (!hre.network.tags["forked"]) { + console.error("ERROR: Must run on a forked net"); + return; + } + await hre.network.provider.request({ + method: "hardhat_reset", + params: [ + { + forking: { + jsonRpcUrl: "https://mainnet-dev.sovryn.app/rpc", + blockNumber: 8400000, // Use a recent block + }, + }, + ], + }); + + const { + deployer, + deployerSigner, + staking, + stakingProxy, + governorOwner, + timelockOwnerSigner, + multisigAddress, + multisigSigner, + } = await setupTest(); + + // Verify staking is not frozen initially + const initialFrozenState = await staking.frozen(); + expect(initialFrozenState).to.be.false; + + // Verify staking is not paused (required for freeze validation) + const initialPausedState = await staking.paused(); + console.log(`Initial staking paused state: ${initialPausedState}`); + console.log(`Initial staking frozen state: ${initialFrozenState}`); + + // CREATE PROPOSAL + const sov = await ethers.getContract("SOV", timelockOwnerSigner); + const whaleAmount = (await sov.totalSupply()).mul(ethers.BigNumber.from(5)); + await sov.mint(deployer, whaleAmount); + + await sov.connect(deployerSigner).approve(staking.address, whaleAmount); + + // Unpause staking if paused + if (await staking.paused()) { + await staking.connect(multisigSigner).pauseUnpause(false); + } + + const kickoffTS = await staking.kickoffTS(); + await staking + .connect(deployerSigner) + .stake(whaleAmount, kickoffTS.add(MAX_DURATION), deployer, deployer); + await mine(); + + // Test that staking operations work before freeze + const balanceBeforeFreeze = await staking.balanceOf(deployer); + console.log(`Deployer balance before freeze: ${balanceBeforeFreeze.toString()}`); + expect(balanceBeforeFreeze).to.be.gt(0); + + // CREATE PROPOSAL AND VERIFY + const proposalIdBeforeSIP = await governorOwner.latestProposalIds(deployer); + await hre.run("sips:create", { argsFunc: "getArgsSipStakingFreeze" }); + const proposalId = await governorOwner.latestProposalIds(deployer); + expect( + proposalId, + "Proposal was not created. Check the SIP creation is not commented out." + ).is.gt(proposalIdBeforeSIP); + + console.log(`Proposal created with ID: ${proposalId.toString()}`); + + // VOTE FOR PROPOSAL + await mine(); + await governorOwner.connect(deployerSigner).castVote(proposalId, true); + console.log("Vote cast for proposal"); + + // QUEUE PROPOSAL + let proposal = await governorOwner.proposals(proposalId); + await mine(proposal.endBlock); + await governorOwner.queue(proposalId); + console.log("Proposal queued"); + + // EXECUTE PROPOSAL + proposal = await governorOwner.proposals(proposalId); + await time.increaseTo(proposal.eta); + await expect(governorOwner.execute(proposalId)) + .to.emit(governorOwner, "ProposalExecuted") + .withArgs(proposalId); + + console.log("Proposal executed"); + + // VERIFY execution + expect((await governorOwner.proposals(proposalId)).executed).to.be.true; + + // VALIDATE STAKING IS FROZEN + const finalFrozenState = await staking.frozen(); + const finalPausedState = await staking.paused(); + + console.log(`Final staking frozen state: ${finalFrozenState}`); + console.log(`Final staking paused state: ${finalPausedState}`); + + expect(finalFrozenState).to.be.true; + // When frozen, paused should also be true (as per StakingAdminModule.freezeUnfreeze) + expect(finalPausedState).to.be.true; + + // Verify staking operations are blocked + const testAmount = ethers.utils.parseEther("100"); + await sov.mint(deployer, testAmount); + await sov.connect(deployerSigner).approve(staking.address, testAmount); + + // Try to stake - should fail because contract is frozen + await expect( + staking + .connect(deployerSigner) + .stake(testAmount, kickoffTS.add(MAX_DURATION), deployer, deployer) + ).to.be.revertedWith("paused"); + + console.log("Verified: Staking operations are blocked after freeze"); + + // Verify owner is still the same + const stakingOwner = await staking.owner(); + console.log(`Staking owner: ${stakingOwner}`); + expect(stakingOwner).to.equal(timelockOwnerSigner._address); + }); + + it("Validates that frozen state prevents all staking operations", async () => { + if (!hre.network.tags["forked"]) { + console.error("ERROR: Must run on a forked net"); + return; + } + + const { deployer, deployerSigner, staking, timelockOwnerSigner, multisigSigner } = + await setupTest(); + + const sov = await ethers.getContract("SOV", timelockOwnerSigner); + const testAmount = ethers.utils.parseEther("1000"); + await sov.mint(deployer, testAmount); + await sov.connect(deployerSigner).approve(staking.address, testAmount); + + const kickoffTS = await staking.kickoffTS(); + + // First stake some tokens while not frozen + if (await staking.paused()) { + await staking.connect(multisigSigner).pauseUnpause(false); + } + + await staking + .connect(deployerSigner) + .stake(testAmount, kickoffTS.add(MAX_DURATION), deployer, deployer); + + // Now freeze the contract + await staking.connect(multisigSigner).freezeUnfreeze(true); + + const isFrozen = await staking.frozen(); + expect(isFrozen).to.be.true; + + console.log("Contract is frozen, testing blocked operations..."); + + // Test that stake is blocked + await sov.mint(deployer, testAmount); + await sov.connect(deployerSigner).approve(staking.address, testAmount); + await expect( + staking + .connect(deployerSigner) + .stake(testAmount, kickoffTS.add(MAX_DURATION), deployer, deployer) + ).to.be.revertedWith("paused"); + + // Test that extend is blocked + await expect( + staking + .connect(deployerSigner) + .extendStakingDuration( + kickoffTS.add(MAX_DURATION), + kickoffTS.add(MAX_DURATION).add(86400 * 14) + ) + ).to.be.revertedWith("paused"); + + // Test that delegate is blocked + await expect( + staking + .connect(deployerSigner) + .delegate(deployerSigner.address, kickoffTS.add(MAX_DURATION)) + ).to.be.revertedWith("paused"); + + console.log("All staking operations correctly blocked when frozen"); + }); + }); +}); diff --git a/tests-onchain/sipStakingUnfreeze.test.js b/tests-onchain/sipStakingUnfreeze.test.js new file mode 100644 index 000000000..89bcf8776 --- /dev/null +++ b/tests-onchain/sipStakingUnfreeze.test.js @@ -0,0 +1,346 @@ +// first run a local forked mainnet node in a separate terminal window: +// npx hardhat node --fork https://mainnet-dev.sovryn.app/rpc --no-deploy +// now run the test: +// npx hardhat test tests-onchain/sipStakingUnfreeze.test.js --network rskForkedMainnet + +const { + impersonateAccount, + mine, + time, + setBalance, +} = require("@nomicfoundation/hardhat-network-helpers"); +const hre = require("hardhat"); + +const { + ethers, + deployments: { createFixture, get }, +} = hre; + +const MAX_DURATION = ethers.BigNumber.from(24 * 60 * 60).mul(1092); + +const ONE_RBTC = ethers.utils.parseEther("1.0"); + +const getImpersonatedSigner = async (addressToImpersonate) => { + await impersonateAccount(addressToImpersonate); + return await ethers.getSigner(addressToImpersonate); +}; + +describe("SIP Staking Unfreeze test onchain", () => { + const getImpersonatedSignerFromJsonRpcProvider = async (addressToImpersonate) => { + const provider = new ethers.providers.JsonRpcProvider("http://localhost:8545"); + await provider.send("hardhat_impersonateAccount", [addressToImpersonate]); + return provider.getSigner(addressToImpersonate); + }; + + const setupTest = createFixture(async ({ deployments }) => { + const deployer = (await ethers.getSigners())[0].address; + const deployerSigner = await ethers.getSigner(deployer); + + const multisigAddress = (await get("MultiSigWallet")).address; + const multisigSigner = await getImpersonatedSignerFromJsonRpcProvider(multisigAddress); + + await setBalance(deployer, ONE_RBTC.mul(10)); + await deployments.fixture(["ProtocolModules"], { + keepExistingDeployments: true, + }); // start from a fresh deployments + + const stakingProxy = await get("StakingProxy"); + const staking = await ethers.getContractAt( + "IStaking", + stakingProxy.address, + deployerSigner + ); + const sovrynProtocol = await ethers.getContract("SovrynProtocol", deployerSigner); + + const god = await deployments.get("GovernorOwner"); + const governorOwner = await ethers.getContractAt( + "GovernorAlpha", + god.address, + deployerSigner + ); + const governorOwnerSigner = await getImpersonatedSigner(god.address); + + await setBalance(governorOwnerSigner.address, ONE_RBTC); + const timelockOwner = await ethers.getContract("TimelockOwner", governorOwnerSigner); + + const timelockOwnerSigner = await getImpersonatedSignerFromJsonRpcProvider( + timelockOwner.address + ); + await setBalance(timelockOwnerSigner._address, ONE_RBTC); + + return { + deployer, + deployerSigner, + staking, + stakingProxy, + sovrynProtocol, + governorOwner, + governorOwnerSigner, + timelockOwner, + timelockOwnerSigner, + multisigAddress, + multisigSigner, + }; + }); + + describe("SIP Staking Unfreeze Test creation and execution", () => { + it("SIP Staking Unfreeze is executable and unfreezes staking contract", async () => { + if (!hre.network.tags["forked"]) { + console.error("ERROR: Must run on a forked net"); + return; + } + await hre.network.provider.request({ + method: "hardhat_reset", + params: [ + { + forking: { + jsonRpcUrl: "https://mainnet-dev.sovryn.app/rpc", + blockNumber: 8400000, // Use a recent block + }, + }, + ], + }); + + const { + deployer, + deployerSigner, + staking, + stakingProxy, + governorOwner, + timelockOwnerSigner, + multisigAddress, + multisigSigner, + } = await setupTest(); + + // First, we need to freeze the staking contract + console.log("Step 1: Freezing staking contract first..."); + + // Unpause staking if paused + if (await staking.paused()) { + await staking.connect(multisigSigner).pauseUnpause(false); + } + + // Freeze the contract using multisig + await staking.connect(multisigSigner).freezeUnfreeze(true); + + const initialFrozenState = await staking.frozen(); + const initialPausedState = await staking.paused(); + + expect(initialFrozenState).to.be.true; + expect(initialPausedState).to.be.true; + + console.log(`Initial staking frozen state: ${initialFrozenState}`); + console.log(`Initial staking paused state: ${initialPausedState}`); + + // CREATE PROPOSAL TO UNFREEZE + const sov = await ethers.getContract("SOV", timelockOwnerSigner); + const whaleAmount = (await sov.totalSupply()).mul(ethers.BigNumber.from(5)); + await sov.mint(deployer, whaleAmount); + + await sov.connect(deployerSigner).approve(staking.address, whaleAmount); + + // We can't stake while frozen, so we need to stake before creating the test conditions + // Reset to a state where we can stake + await staking.connect(multisigSigner).freezeUnfreeze(false); + await staking.connect(multisigSigner).pauseUnpause(false); + + const kickoffTS = await staking.kickoffTS(); + await staking + .connect(deployerSigner) + .stake(whaleAmount, kickoffTS.add(MAX_DURATION), deployer, deployer); + await mine(); + + // Now freeze again for the unfreeze test + await staking.connect(multisigSigner).freezeUnfreeze(true); + + // Verify it's frozen before creating proposal + const frozenBeforeProposal = await staking.frozen(); + expect(frozenBeforeProposal).to.be.true; + console.log("Staking is frozen, ready to create unfreeze proposal"); + + // Verify staking operations are blocked while frozen + const testAmount = ethers.utils.parseEther("100"); + await sov.mint(deployer, testAmount); + await sov.connect(deployerSigner).approve(staking.address, testAmount); + + await expect( + staking + .connect(deployerSigner) + .stake(testAmount, kickoffTS.add(MAX_DURATION), deployer, deployer) + ).to.be.revertedWith("paused"); + console.log("Confirmed: Staking operations blocked while frozen"); + + // CREATE PROPOSAL AND VERIFY + const proposalIdBeforeSIP = await governorOwner.latestProposalIds(deployer); + await hre.run("sips:create", { argsFunc: "getArgsSipStakingUnfreeze" }); + const proposalId = await governorOwner.latestProposalIds(deployer); + expect( + proposalId, + "Proposal was not created. Check the SIP creation is not commented out." + ).is.gt(proposalIdBeforeSIP); + + console.log(`Proposal created with ID: ${proposalId.toString()}`); + + // VOTE FOR PROPOSAL + await mine(); + await governorOwner.connect(deployerSigner).castVote(proposalId, true); + console.log("Vote cast for proposal"); + + // QUEUE PROPOSAL + let proposal = await governorOwner.proposals(proposalId); + await mine(proposal.endBlock); + await governorOwner.queue(proposalId); + console.log("Proposal queued"); + + // EXECUTE PROPOSAL + proposal = await governorOwner.proposals(proposalId); + await time.increaseTo(proposal.eta); + await expect(governorOwner.execute(proposalId)) + .to.emit(governorOwner, "ProposalExecuted") + .withArgs(proposalId); + + console.log("Proposal executed"); + + // VERIFY execution + expect((await governorOwner.proposals(proposalId)).executed).to.be.true; + + // VALIDATE STAKING IS UNFROZEN + const finalFrozenState = await staking.frozen(); + const finalPausedState = await staking.paused(); + + console.log(`Final staking frozen state: ${finalFrozenState}`); + console.log(`Final staking paused state: ${finalPausedState}`); + + expect(finalFrozenState).to.be.false; + // When unfrozen, contract is left in paused state (as per StakingAdminModule.freezeUnfreeze) + expect(finalPausedState).to.be.true; + + console.log("Verified: Staking is unfrozen but remains paused"); + + // Verify owner is still the same + const stakingOwner = await staking.owner(); + console.log(`Staking owner: ${stakingOwner}`); + expect(stakingOwner).to.equal(timelockOwnerSigner._address); + + // Unpause and verify staking operations work again + await staking.connect(multisigSigner).pauseUnpause(false); + + const finalPausedAfterUnpause = await staking.paused(); + const finalFrozenAfterUnpause = await staking.frozen(); + + expect(finalPausedAfterUnpause).to.be.false; + expect(finalFrozenAfterUnpause).to.be.false; + + // Test that staking works again + await sov.mint(deployer, testAmount); + await sov.connect(deployerSigner).approve(staking.address, testAmount); + + await expect( + staking + .connect(deployerSigner) + .stake(testAmount, kickoffTS.add(MAX_DURATION), deployer, deployer) + ).to.not.be.reverted; + + console.log("Success: Staking operations work again after unfreeze and unpause"); + }); + + it("Validates unfreeze flow: frozen → unfrozen (paused) → unpaused (operational)", async () => { + if (!hre.network.tags["forked"]) { + console.error("ERROR: Must run on a forked net"); + return; + } + + const { deployer, deployerSigner, staking, timelockOwnerSigner, multisigSigner } = + await setupTest(); + + const sov = await ethers.getContract("SOV", timelockOwnerSigner); + const testAmount = ethers.utils.parseEther("1000"); + + console.log("\n=== Testing Unfreeze State Transitions ==="); + + // Initial state: unfrozen, unpaused + if (await staking.paused()) { + await staking.connect(multisigSigner).pauseUnpause(false); + } + const kickoffTS = await staking.kickoffTS(); + + console.log("State 1: Operational (unfrozen, unpaused)"); + let frozen = await staking.frozen(); + let paused = await staking.paused(); + console.log(` frozen: ${frozen}, paused: ${paused}`); + expect(frozen).to.be.false; + expect(paused).to.be.false; + + // Can stake + await sov.mint(deployer, testAmount); + await sov.connect(deployerSigner).approve(staking.address, testAmount); + await staking + .connect(deployerSigner) + .stake(testAmount, kickoffTS.add(MAX_DURATION), deployer, deployer); + console.log(" ✓ Staking works"); + + // Freeze the contract + await staking.connect(multisigSigner).freezeUnfreeze(true); + + console.log("\nState 2: Frozen (frozen, paused)"); + frozen = await staking.frozen(); + paused = await staking.paused(); + console.log(` frozen: ${frozen}, paused: ${paused}`); + expect(frozen).to.be.true; + expect(paused).to.be.true; + + // Cannot stake + await sov.mint(deployer, testAmount); + await sov.connect(deployerSigner).approve(staking.address, testAmount); + await expect( + staking + .connect(deployerSigner) + .stake(testAmount, kickoffTS.add(MAX_DURATION), deployer, deployer) + ).to.be.revertedWith("paused"); + console.log(" ✓ Staking blocked"); + + // Unfreeze the contract + await staking.connect(multisigSigner).freezeUnfreeze(false); + + console.log("\nState 3: Unfrozen but still paused (unfrozen, paused)"); + frozen = await staking.frozen(); + paused = await staking.paused(); + console.log(` frozen: ${frozen}, paused: ${paused}`); + expect(frozen).to.be.false; + expect(paused).to.be.true; // Still paused after unfreeze + + // Still cannot stake (still paused) + await sov.mint(deployer, testAmount); + await sov.connect(deployerSigner).approve(staking.address, testAmount); + await expect( + staking + .connect(deployerSigner) + .stake(testAmount, kickoffTS.add(MAX_DURATION), deployer, deployer) + ).to.be.revertedWith("paused"); + console.log(" ✓ Staking still blocked (paused)"); + + // Unpause the contract + await staking.connect(multisigSigner).pauseUnpause(false); + + console.log("\nState 4: Operational again (unfrozen, unpaused)"); + frozen = await staking.frozen(); + paused = await staking.paused(); + console.log(` frozen: ${frozen}, paused: ${paused}`); + expect(frozen).to.be.false; + expect(paused).to.be.false; + + // Can stake again + await sov.mint(deployer, testAmount); + await sov.connect(deployerSigner).approve(staking.address, testAmount); + await expect( + staking + .connect(deployerSigner) + .stake(testAmount, kickoffTS.add(MAX_DURATION), deployer, deployer) + ).to.not.be.reverted; + console.log(" ✓ Staking works again"); + + console.log("\n=== Complete State Transition Flow Validated ==="); + console.log("Operational → Frozen → Unfrozen (Paused) → Operational"); + }); + }); +});