ETH Price: $3,610.33 (+5.53%)

Contract

0x60Fb0953B1688E700ed9Af74936a032f368E6807
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

> 10 Token Transfers found.

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Vesting

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/utils/math/Math.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";

import "./interfaces/IVesting.sol";
import "./libraries/DateTime.sol";

/**
 * @title Vesting
 * @author Upland
 * @dev Vesting contract for Sparklet token.
 */
contract Vesting is IVesting, AccessControl {
    using SafeERC20 for IERC20;

    /// @dev owner role that can initialize vesting and transfer ownership
    bytes32 public constant OWNER_ROLE = keccak256("OWNER_ROLE");

    /// @dev role that can update vesting schedule and assign new admin
    bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE");

    /// @dev timestamp of the start of vesting
    uint256 public startTime;

    /// @dev boolean indicating if the contract is initialized
    bool public initialized;

    /// @dev total amount of tokens to be vested
    uint256 public totalAllocated;

    /// @dev token to be vested
    IERC20 public token;

    /// @dev mapping of vesting accounts
    mapping(address => VestingAccount) public vestingAccounts;

    /// @dev Event to indicate the initialization of the contract.
    event VestingInitialized(address indexed token, uint256 startTime, address indexed owner);

    /// @dev Event to indicate the update of vesting schedule.
    event VestingScheduleUpdated(
        address indexed account,
        uint256 amount,
        uint8 months,
        uint256 claimable,
        uint256 claimed,
        uint256 updatedAt,
        address initiator
    );

    /// @dev Attempt to set amount less than claimed + claimable
    error InsufficientAmount(address account, uint256 amount, uint256 neededAmount);

    /// @dev Attempt to claim when nothing is claimable
    error NothingToClaim();

    /// @dev Attempt to create vesting account when already initialized
    error CantCreateVestingAccount();

    /// @dev Attempt to initialize with invalid data
    error InvalidInitialVestingData();

    /// @dev Attempt to initialize with total allocation exceeding balance
    error TotalAllocationExceedsBalance();

    /// @dev Attempt to initialize when already initialized
    error AlreadyInitialized();

    /// @dev Interacting with zero address
    error AddressIsZero();

    /// @dev Modifier to check if the contract is initialized.
    modifier initializer() {
        if (initialized) {
            revert AlreadyInitialized();
        }

        initialized = true;

        _;
    }

    /**
     * @dev Constructor to initialize the contract with the owner and admin roles.
     * @param owner Address of the owner.
     * @param admin Address of the admin.
     */
    constructor(address owner, address admin) {
        _grantRole(OWNER_ROLE, owner);
        _grantRole(ADMIN_ROLE, admin);
    }

    /**
     * @dev Transfers owner role to new owner.
     * @param newOwner Address of the new owner.
     */
    function transferOwnerRole(address newOwner) external onlyRole(OWNER_ROLE) {
        _grantRole(OWNER_ROLE, newOwner);
        _revokeRole(OWNER_ROLE, msg.sender);
    }

    /**
     * @dev Transfers admin role to new admin.
     * @param newAdmin Address of the new admin.
     */
    function transferAdminRole(address newAdmin) external onlyRole(ADMIN_ROLE) {
        _grantRole(ADMIN_ROLE, newAdmin);
        _revokeRole(ADMIN_ROLE, msg.sender);
    }

    /**
     * @dev Initializes vesting accounts. Can only be called once.
     * @param tokenAddress Address of token to be vested.
     * @param vestingAccountsData Packed data of vesting accounts.
     */
    function initVesting(
        IERC20 tokenAddress,
        bytes calldata vestingAccountsData
    )
        external
        initializer
        onlyRole(OWNER_ROLE)
    {
        if (address(tokenAddress) == address(0)) {
            revert AddressIsZero();
        }

        uint256 totalAmount = _initVestingAccounts(vestingAccountsData);

        if (totalAmount > tokenAddress.balanceOf(address(this))) {
            revert TotalAllocationExceedsBalance();
        }

        startTime = block.timestamp;
        token = tokenAddress;
        totalAllocated = totalAmount;

        emit VestingInitialized(address(tokenAddress), block.timestamp, msg.sender);
    }

    /**
     * @dev Claims tokens for the sender.
     */
    function claim() external {
        uint256 claimableAmount = _claimable(msg.sender);

        if (claimableAmount == 0) {
            revert NothingToClaim();
        }

        VestingAccount memory va = vestingAccounts[msg.sender];

        va.claimed += claimableAmount;
        va.claimableBeforeLastUpdate = 0;
        va.updatedOrClaimedAt = block.timestamp;

        vestingAccounts[msg.sender] = va;

        token.safeTransfer(msg.sender, claimableAmount);
    }

    /**
     * @dev Updates vesting schedule for given address. Can't be used to create new vesting account.
     * @param account Address of the account.
     * @param amount Updated amount to be vested.
     * @param months Updated vesting duration in months.
     */
    function updateSchedule(address account, uint256 amount, uint8 months) external onlyRole(ADMIN_ROLE) {
        VestingAccount memory va = vestingAccounts[account];

        if (va.amount == 0) {
            revert CantCreateVestingAccount();
        }

        totalAllocated = totalAllocated - va.amount + amount;

        if (totalAllocated > token.balanceOf(address(this))) {
            revert TotalAllocationExceedsBalance();
        }

        uint256 claimableAmount = _claimable(account);

        if (amount < claimableAmount + va.claimed) {
            revert InsufficientAmount(account, amount, claimableAmount);
        }

        va.claimableBeforeLastUpdate = claimableAmount;
        va.amount = amount;
        va.months = months;
        va.updatedOrClaimedAt = block.timestamp;

        vestingAccounts[account] = va;

        emit VestingScheduleUpdated(account, amount, months, claimableAmount, va.claimed, block.timestamp, msg.sender);
    }

    /**
     * @dev Returns boolean indicating if given address is a vesting account.
     * @param account Address of the account.
     */
    function vestingAccount(address account) external view returns (bool) {
        return vestingAccounts[account].amount != 0;
    }

    /**
     * @dev Returns the amount of tokens claimable by given address.
     * @param account Address of the account.
     */
    function claimable(address account) external view returns (uint256) {
        return _claimable(account);
    }

    /**
     * @dev Initializes mapping of vesting accounts.
     * @param data Packed data of vesting accounts.
     * @return Total amount of tokens to be vested.
     */
    function _initVestingAccounts(bytes calldata data) internal returns (uint256) {
        if (data.length % 160 != 0) {
            revert InvalidInitialVestingData();
        }

        uint length = data.length / 160;
        uint256 totalAmount = 0;

        for (uint i = 0; i < length; i++) {
            address account;
            uint256 amount;
            uint256 months;
            uint256 cliff;
            uint256 claimableUponAllocation;

            (account, amount, months, cliff, claimableUponAllocation) = abi.decode(
                data[i * 160 : (i + 1) * 160],
                (address, uint256, uint256, uint256, uint256)
            );

            if (account == address(0)) {
                revert AddressIsZero();
            }

            if (amount < claimableUponAllocation) {
                revert InsufficientAmount(account, amount, claimableUponAllocation);
            }

            totalAmount += amount;

            vestingAccounts[account] = VestingAccount({
                amount: amount,
                months: months,
                cliff: cliff,
                claimableBeforeLastUpdate: claimableUponAllocation,
                updatedOrClaimedAt: block.timestamp,
                claimed: 0
            });
        }

        return totalAmount;
    }

    /**
     * @dev Internal function to calculate claimable amount for given address.
     * @param account Address of the account.
     */
    function _claimable(address account) internal view returns (uint256) {
        VestingAccount memory va = vestingAccounts[account];

        if (va.amount <= va.claimed) {
            return 0;
        }

        if (_monthsFromStart() <= va.cliff) {
            return va.claimableBeforeLastUpdate;
        }

        uint256 monthsFromLastUpdateOrClaim = DateTime.diffMonths(va.updatedOrClaimedAt, block.timestamp);
        uint256 monthsToClaim = Math.min(monthsFromLastUpdateOrClaim, va.months);
        uint256 monthsClaimed = DateTime.diffMonths(startTime, va.updatedOrClaimedAt);
        uint256 monthsLeft = va.months - monthsClaimed;

        if (monthsToClaim == 0) {
            return va.claimableBeforeLastUpdate;
        }

        if (monthsToClaim >= va.months + va.cliff) {
            return va.amount - va.claimed;
        }

        return (
            (va.amount - va.claimed - va.claimableBeforeLastUpdate) * monthsToClaim / monthsLeft
        ) + va.claimableBeforeLastUpdate;
    }

    /**
     * @dev Returns the number of months from the start of vesting.
     */
    function _monthsFromStart() internal view returns (uint256) {
        return DateTime.diffMonths(startTime, block.timestamp);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol)

pragma solidity ^0.8.20;

import {IAccessControl} from "./IAccessControl.sol";
import {Context} from "../utils/Context.sol";
import {ERC165} from "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```solidity
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```solidity
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}
 * to enforce additional security measures for this role.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address account => bool) hasRole;
        bytes32 adminRole;
    }

    mapping(bytes32 role => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with an {AccessControlUnauthorizedAccount} error including the required role.
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual returns (bool) {
        return _roles[role].hasRole[account];
    }

    /**
     * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`
     * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`
     * is missing `role`.
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert AccessControlUnauthorizedAccount(account, role);
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `callerConfirmation`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address callerConfirmation) public virtual {
        if (callerConfirmation != _msgSender()) {
            revert AccessControlBadConfirmation();
        }

        _revokeRole(role, callerConfirmation);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual returns (bool) {
        if (!hasRole(role, account)) {
            _roles[role].hasRole[account] = true;
            emit RoleGranted(role, account, _msgSender());
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual returns (bool) {
        if (hasRole(role, account)) {
            _roles[role].hasRole[account] = false;
            emit RoleRevoked(role, account, _msgSender());
            return true;
        } else {
            return false;
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/IAccessControl.sol)

pragma solidity ^0.8.20;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev The `account` is missing a role.
     */
    error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);

    /**
     * @dev The caller of a function is not the expected one.
     *
     * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.
     */
    error AccessControlBadConfirmation();

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `callerConfirmation`.
     */
    function renounceRole(bytes32 role, address callerConfirmation) external;
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     *
     * CAUTION: See Security Considerations above.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";
import {IERC20Permit} from "../extensions/IERC20Permit.sol";
import {Address} from "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev An operation with an ERC20 token failed.
     */
    error SafeERC20FailedOperation(address token);

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
     * value, non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
        unchecked {
            uint256 currentAllowance = token.allowance(address(this), spender);
            if (currentAllowance < requestedDecrease) {
                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
            }
            forceApprove(token, spender, currentAllowance - requestedDecrease);
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data);
        if (returndata.length != 0 && !abi.decode(returndata, (bool))) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert FailedInnerCall();
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;

import {IERC165} from "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

interface IVesting {
    /// @dev Struct to hold vesting account details.
    struct VestingAccount {
        // total allocated amount
        uint256 amount;

        // vesting duration in months
        uint256 months;

        // cliff duration in months
        uint256 cliff;

        // total claimed amount
        uint256 claimed;

        // claimable amount before last update
        // updated when vesting schedule is changed
        // also includes amount claimable at the time of allocation
        uint256 claimableBeforeLastUpdate;

        // last updated or claimed timestamp
        uint256 updatedOrClaimedAt;
    }

    function updateSchedule(address account, uint256 amount, uint8 months) external;
    function claim() external;
    function claimable(address account) external view returns (uint256);
    function vestingAccount(address account) external view returns (bool);
}

// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

/**
 * @title DateTime Library
 * @dev Provides datetime conversions and calculations.
 * Implementation is directly taken from the BokkyPooBahsDateTimeLibrary
 * https://github.com/bokkypoobah/BokkyPooBahsDateTimeLibrary
 */
library DateTime {
    uint256 constant SECONDS_PER_DAY = 24 * 60 * 60;
    int256 constant OFFSET19700101 = 2440588;

    /**
     * @dev Converts a number of days to a date (year, month and day)
     * using the date conversion algorithm from https://aa.usno.navy.mil/faq/JD_formula.html
     * and adding the offset 2440588 so that 1970/01/01 is day 0
     * @param _days number of days since the Unix epoch
     */
    function _daysToDate(uint256 _days) internal pure returns (uint256 year, uint256 month, uint256 day) {
        unchecked {
            int256 __days = int256(_days);

            int256 L = __days + 68569 + OFFSET19700101;
            int256 N = (4 * L) / 146097;
            L = L - (146097 * N + 3) / 4;
            int256 _year = (4000 * (L + 1)) / 1461001;
            L = L - (1461 * _year) / 4 + 31;
            int256 _month = (80 * L) / 2447;
            int256 _day = L - (2447 * _month) / 80;
            L = _month / 11;
            _month = _month + 2 - 12 * L;
            _year = 100 * (N - 49) + _year + L;

            year = uint256(_year);
            month = uint256(_month);
            day = uint256(_day);
        }
    }

    /**
     * @dev Returns the difference in months between two timestamps.
     * @param fromTimestamp Timestamp of the start date.
     * @param toTimestamp Timestamp of the end date.
     */
    function diffMonths(uint256 fromTimestamp, uint256 toTimestamp) internal pure returns (uint256 _months) {
        require(fromTimestamp <= toTimestamp);
        (uint256 fromYear, uint256 fromMonth,) = _daysToDate(fromTimestamp / SECONDS_PER_DAY);
        (uint256 toYear, uint256 toMonth,) = _daysToDate(toTimestamp / SECONDS_PER_DAY);
        _months = toYear * 12 + toMonth - fromYear * 12 - fromMonth;
    }
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"AddressIsZero","type":"error"},{"inputs":[],"name":"AlreadyInitialized","type":"error"},{"inputs":[],"name":"CantCreateVestingAccount","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"neededAmount","type":"uint256"}],"name":"InsufficientAmount","type":"error"},{"inputs":[],"name":"InvalidInitialVestingData","type":"error"},{"inputs":[],"name":"NothingToClaim","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"TotalAllocationExceedsBalance","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"},{"indexed":true,"internalType":"address","name":"owner","type":"address"}],"name":"VestingInitialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"months","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"claimable","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claimed","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"updatedAt","type":"uint256"},{"indexed":false,"internalType":"address","name":"initiator","type":"address"}],"name":"VestingScheduleUpdated","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OWNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"claimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"tokenAddress","type":"address"},{"internalType":"bytes","name":"vestingAccountsData","type":"bytes"}],"name":"initVesting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocated","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"transferAdminRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnerRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint8","name":"months","type":"uint8"}],"name":"updateSchedule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"vestingAccount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"vestingAccounts","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"months","type":"uint256"},{"internalType":"uint256","name":"cliff","type":"uint256"},{"internalType":"uint256","name":"claimed","type":"uint256"},{"internalType":"uint256","name":"claimableBeforeLastUpdate","type":"uint256"},{"internalType":"uint256","name":"updatedOrClaimedAt","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620027de380380620027de833981810160405281019062000037919062000284565b620000697fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e83620000a560201b60201c565b506200009c7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177582620000a560201b60201c565b505050620002cb565b6000620000b98383620001a860201b60201c565b6200019d57600160008085815260200190815260200160002060000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001396200021260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050620001a2565b600090505b92915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200024c826200021f565b9050919050565b6200025e816200023f565b81146200026a57600080fd5b50565b6000815190506200027e8162000253565b92915050565b600080604083850312156200029e576200029d6200021a565b5b6000620002ae858286016200026d565b9250506020620002c1858286016200026d565b9150509250929050565b61250380620002db6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806375b238fc116100b8578063cccb34df1161007c578063cccb34df1461033c578063cf2622bd14610371578063d547741f1461038d578063e58378bb146103a9578063ed7c1b20146103c7578063fc0c546a146103e357610137565b806375b238fc1461029657806378e97925146102b457806391d14854146102d2578063a217fddf14610302578063ada8f9191461032057610137565b806336568abe116100ff57806336568abe1461020657806339eee7d014610222578063402914f51461023e57806345f7f2491461026e5780634e71d92d1461028c57610137565b806301ffc9a71461013c578063158ef93e1461016c578063225b05521461018a578063248a9ca3146101ba5780632f2ff15d146101ea575b600080fd5b61015660048036038101906101519190611b52565b610401565b6040516101639190611b9a565b60405180910390f35b61017461047b565b6040516101819190611b9a565b60405180910390f35b6101a4600480360381019061019f9190611c13565b61048e565b6040516101b19190611b9a565b60405180910390f35b6101d460048036038101906101cf9190611c76565b6104dd565b6040516101e19190611cb2565b60405180910390f35b61020460048036038101906101ff9190611ccd565b6104fc565b005b610220600480360381019061021b9190611ccd565b61051e565b005b61023c60048036038101906102379190611db0565b610599565b005b61025860048036038101906102539190611c13565b610807565b6040516102659190611e29565b60405180910390f35b610276610819565b6040516102839190611e29565b60405180910390f35b61029461081f565b005b61029e6109ee565b6040516102ab9190611cb2565b60405180910390f35b6102bc610a12565b6040516102c99190611e29565b60405180910390f35b6102ec60048036038101906102e79190611ccd565b610a18565b6040516102f99190611b9a565b60405180910390f35b61030a610a82565b6040516103179190611cb2565b60405180910390f35b61033a60048036038101906103359190611c13565b610a89565b005b61035660048036038101906103519190611c13565b610b0d565b60405161036896959493929190611e44565b60405180910390f35b61038b60048036038101906103869190611f0a565b610b49565b005b6103a760048036038101906103a29190611ccd565b610ea8565b005b6103b1610eca565b6040516103be9190611cb2565b60405180910390f35b6103e160048036038101906103dc9190611c13565b610eee565b005b6103eb610f72565b6040516103f89190611fbc565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610474575061047382610f98565b5b9050919050565b600260009054906101000a900460ff1681565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015414159050919050565b6000806000838152602001908152602001600020600101549050919050565b610505826104dd565b61050e81611002565b6105188383611016565b50505050565b610526611107565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461058a576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610594828261110f565b505050565b600260009054906101000a900460ff16156105e0576040517f0dc149f000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600260006101000a81548160ff0219169083151502179055507fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e61062581611002565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361068b576040517f867915ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006106978484611201565b90508473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016106d29190611fe6565b602060405180830381865afa1580156106ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107139190612016565b81111561074c576040517fad241b2000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b4260018190555084600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806003819055503373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f287d400aa7da22e8471607b8396e158d1ebfc797ef8abf9b0a3fd172b4b211ea426040516107f89190611e29565b60405180910390a35050505050565b600061081282611457565b9050919050565b60035481565b600061082a33611457565b905060008103610866576040517f969bf72800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060c00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152602001600582015481525050905081816060018181516109029190612072565b915081815250506000816080018181525050428160a001818152505080600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a082015181600501559050506109ea3383600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661160e9092919063ffffffff16565b5050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b60015481565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b81565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610ab381611002565b610add7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177583611016565b50610b087fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217753361110f565b505050565b60056020528060005260406000206000915090508060000154908060010154908060020154908060030154908060040154908060050154905086565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610b7381611002565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060c0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815260200160058201548152505090506000816000015103610c3b576040517f09a1583900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b838160000151600354610c4e91906120a6565b610c589190612072565b600381905550600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610cb99190611fe6565b602060405180830381865afa158015610cd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cfa9190612016565b6003541115610d35576040517fad241b2000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610d4086611457565b9050816060015181610d529190612072565b851015610d9a578585826040517f5cc9e8cb000000000000000000000000000000000000000000000000000000008152600401610d91939291906120da565b60405180910390fd5b80826080018181525050848260000181815250508360ff16826020018181525050428260a001818152505081600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a082015181600501559050508573ffffffffffffffffffffffffffffffffffffffff167fb9403af9fe8f36acdef6e8126b771cc70f0404426b5f62d465c86126d9d4587786868486606001514233604051610e9896959493929190612120565b60405180910390a2505050505050565b610eb1826104dd565b610eba81611002565b610ec4838361110f565b50505050565b7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e81565b7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e610f1881611002565b610f427fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e83611016565b50610f6d7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e3361110f565b505050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6110138161100e611107565b61168d565b50565b60006110228383610a18565b6110fc57600160008085815260200190815260200160002060000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611099611107565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050611101565b600090505b92915050565b600033905090565b600061111b8383610a18565b156111f657600080600085815260200190815260200160002060000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611193611107565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a4600190506111fb565b600090505b92915050565b60008060a08484905061121491906121b0565b1461124b576040517f85f2046900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060a08484905061125d91906121e1565b90506000805b8281101561144b5760008060008060008a8a60a0886112829190612212565b9060a060018a6112929190612072565b61129c9190612212565b926112a99392919061225e565b8101906112b691906122d7565b8095508196508297508398508499505050505050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611330576040517f867915ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80841015611379578484826040517f5cc9e8cb000000000000000000000000000000000000000000000000000000008152600401611370939291906120da565b60405180910390fd5b83876113859190612072565b96506040518060c001604052808581526020018481526020018381526020016000815260200182815260200142815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a082015181600501559050505050505050808061144390612352565b915050611263565b50809250505092915050565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060c00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152602001600582015481525050905080606001518160000151116114fb576000915050611609565b80604001516115086116de565b1161151a578060800151915050611609565b600061152a8260a00151426116f1565b9050600061153c828460200151611784565b905060006115506001548560a001516116f1565b9050600081856020015161156491906120a6565b90506000830361157f57846080015195505050505050611609565b846040015185602001516115939190612072565b83106115b957846060015185600001516115ad91906120a6565b95505050505050611609565b846080015181848760800151886060015189600001516115d991906120a6565b6115e391906120a6565b6115ed9190612212565b6115f791906121e1565b6116019190612072565b955050505050505b919050565b611688838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb858560405160240161164192919061239a565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061179d565b505050565b6116978282610a18565b6116da5780826040517fe2517d3f0000000000000000000000000000000000000000000000000000000081526004016116d19291906123c3565b60405180910390fd5b5050565b60006116ec600154426116f1565b905090565b60008183111561170057600080fd5b60008061171a620151808661171591906121e1565b611834565b5091509150600080611739620151808761173491906121e1565b611834565b509150915082600c8561174c9190612212565b82600c8561175a9190612212565b6117649190612072565b61176e91906120a6565b61177891906120a6565b94505050505092915050565b60008183106117935781611795565b825b905092915050565b60006117c8828473ffffffffffffffffffffffffffffffffffffffff1661193990919063ffffffff16565b905060008151141580156117ed5750808060200190518101906117eb9190612418565b155b1561182f57826040517f5274afe70000000000000000000000000000000000000000000000000000000081526004016118269190611fe6565b60405180910390fd5b505050565b600080600080849050600062253d8c62010bd98301019050600062023ab1826004028161186457611863612181565b5b059050600460038262023ab10201816118805761187f612181565b5b0582039150600062164b0960018401610fa002816118a1576118a0612181565b5b059050601f6004826105b502816118bb576118ba612181565b5b058403019250600061098f84605002816118d8576118d7612181565b5b059050600060508261098f02816118f2576118f1612181565b5b0585039050600b828161190857611907612181565b5b05945084600c0260028301039150848360318603606402010192508298508197508096505050505050509193909250565b60606119478383600061194f565b905092915050565b60608147101561199657306040517fcd78605900000000000000000000000000000000000000000000000000000000815260040161198d9190611fe6565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff1684866040516119bf91906124b6565b60006040518083038185875af1925050503d80600081146119fc576040519150601f19603f3d011682016040523d82523d6000602084013e611a01565b606091505b5091509150611a11868383611a1c565b925050509392505050565b606082611a3157611a2c82611aab565b611aa3565b60008251148015611a59575060008473ffffffffffffffffffffffffffffffffffffffff163b145b15611a9b57836040517f9996b315000000000000000000000000000000000000000000000000000000008152600401611a929190611fe6565b60405180910390fd5b819050611aa4565b5b9392505050565b600081511115611abe5780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b2f81611afa565b8114611b3a57600080fd5b50565b600081359050611b4c81611b26565b92915050565b600060208284031215611b6857611b67611af0565b5b6000611b7684828501611b3d565b91505092915050565b60008115159050919050565b611b9481611b7f565b82525050565b6000602082019050611baf6000830184611b8b565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611be082611bb5565b9050919050565b611bf081611bd5565b8114611bfb57600080fd5b50565b600081359050611c0d81611be7565b92915050565b600060208284031215611c2957611c28611af0565b5b6000611c3784828501611bfe565b91505092915050565b6000819050919050565b611c5381611c40565b8114611c5e57600080fd5b50565b600081359050611c7081611c4a565b92915050565b600060208284031215611c8c57611c8b611af0565b5b6000611c9a84828501611c61565b91505092915050565b611cac81611c40565b82525050565b6000602082019050611cc76000830184611ca3565b92915050565b60008060408385031215611ce457611ce3611af0565b5b6000611cf285828601611c61565b9250506020611d0385828601611bfe565b9150509250929050565b6000611d1882611bd5565b9050919050565b611d2881611d0d565b8114611d3357600080fd5b50565b600081359050611d4581611d1f565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611d7057611d6f611d4b565b5b8235905067ffffffffffffffff811115611d8d57611d8c611d50565b5b602083019150836001820283011115611da957611da8611d55565b5b9250929050565b600080600060408486031215611dc957611dc8611af0565b5b6000611dd786828701611d36565b935050602084013567ffffffffffffffff811115611df857611df7611af5565b5b611e0486828701611d5a565b92509250509250925092565b6000819050919050565b611e2381611e10565b82525050565b6000602082019050611e3e6000830184611e1a565b92915050565b600060c082019050611e596000830189611e1a565b611e666020830188611e1a565b611e736040830187611e1a565b611e806060830186611e1a565b611e8d6080830185611e1a565b611e9a60a0830184611e1a565b979650505050505050565b611eae81611e10565b8114611eb957600080fd5b50565b600081359050611ecb81611ea5565b92915050565b600060ff82169050919050565b611ee781611ed1565b8114611ef257600080fd5b50565b600081359050611f0481611ede565b92915050565b600080600060608486031215611f2357611f22611af0565b5b6000611f3186828701611bfe565b9350506020611f4286828701611ebc565b9250506040611f5386828701611ef5565b9150509250925092565b6000819050919050565b6000611f82611f7d611f7884611bb5565b611f5d565b611bb5565b9050919050565b6000611f9482611f67565b9050919050565b6000611fa682611f89565b9050919050565b611fb681611f9b565b82525050565b6000602082019050611fd16000830184611fad565b92915050565b611fe081611bd5565b82525050565b6000602082019050611ffb6000830184611fd7565b92915050565b60008151905061201081611ea5565b92915050565b60006020828403121561202c5761202b611af0565b5b600061203a84828501612001565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061207d82611e10565b915061208883611e10565b92508282019050808211156120a05761209f612043565b5b92915050565b60006120b182611e10565b91506120bc83611e10565b92508282039050818111156120d4576120d3612043565b5b92915050565b60006060820190506120ef6000830186611fd7565b6120fc6020830185611e1a565b6121096040830184611e1a565b949350505050565b61211a81611ed1565b82525050565b600060c0820190506121356000830189611e1a565b6121426020830188612111565b61214f6040830187611e1a565b61215c6060830186611e1a565b6121696080830185611e1a565b61217660a0830184611fd7565b979650505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006121bb82611e10565b91506121c683611e10565b9250826121d6576121d5612181565b5b828206905092915050565b60006121ec82611e10565b91506121f783611e10565b92508261220757612206612181565b5b828204905092915050565b600061221d82611e10565b915061222883611e10565b925082820261223681611e10565b9150828204841483151761224d5761224c612043565b5b5092915050565b600080fd5b600080fd5b6000808585111561227257612271612254565b5b8386111561228357612282612259565b5b6001850283019150848603905094509492505050565b60006122a482611bb5565b9050919050565b6122b481612299565b81146122bf57600080fd5b50565b6000813590506122d1816122ab565b92915050565b600080600080600060a086880312156122f3576122f2611af0565b5b6000612301888289016122c2565b955050602061231288828901611ebc565b945050604061232388828901611ebc565b935050606061233488828901611ebc565b925050608061234588828901611ebc565b9150509295509295909350565b600061235d82611e10565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361238f5761238e612043565b5b600182019050919050565b60006040820190506123af6000830185611fd7565b6123bc6020830184611e1a565b9392505050565b60006040820190506123d86000830185611fd7565b6123e56020830184611ca3565b9392505050565b6123f581611b7f565b811461240057600080fd5b50565b600081519050612412816123ec565b92915050565b60006020828403121561242e5761242d611af0565b5b600061243c84828501612403565b91505092915050565b600081519050919050565b600081905092915050565b60005b8381101561247957808201518184015260208101905061245e565b60008484015250505050565b600061249082612445565b61249a8185612450565b93506124aa81856020860161245b565b80840191505092915050565b60006124c28284612485565b91508190509291505056fea26469706673582212209d741fa58326378b686e82cd8c71b11bcc7150ce70b0ed4b5a4d55a6904c60b864736f6c634300081400330000000000000000000000008623e85fd4d3f5e6b82c917ae3e2151ca1f03762000000000000000000000000ee0c8354ec87b00675f4e4056ebfd38f03f7246c

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806375b238fc116100b8578063cccb34df1161007c578063cccb34df1461033c578063cf2622bd14610371578063d547741f1461038d578063e58378bb146103a9578063ed7c1b20146103c7578063fc0c546a146103e357610137565b806375b238fc1461029657806378e97925146102b457806391d14854146102d2578063a217fddf14610302578063ada8f9191461032057610137565b806336568abe116100ff57806336568abe1461020657806339eee7d014610222578063402914f51461023e57806345f7f2491461026e5780634e71d92d1461028c57610137565b806301ffc9a71461013c578063158ef93e1461016c578063225b05521461018a578063248a9ca3146101ba5780632f2ff15d146101ea575b600080fd5b61015660048036038101906101519190611b52565b610401565b6040516101639190611b9a565b60405180910390f35b61017461047b565b6040516101819190611b9a565b60405180910390f35b6101a4600480360381019061019f9190611c13565b61048e565b6040516101b19190611b9a565b60405180910390f35b6101d460048036038101906101cf9190611c76565b6104dd565b6040516101e19190611cb2565b60405180910390f35b61020460048036038101906101ff9190611ccd565b6104fc565b005b610220600480360381019061021b9190611ccd565b61051e565b005b61023c60048036038101906102379190611db0565b610599565b005b61025860048036038101906102539190611c13565b610807565b6040516102659190611e29565b60405180910390f35b610276610819565b6040516102839190611e29565b60405180910390f35b61029461081f565b005b61029e6109ee565b6040516102ab9190611cb2565b60405180910390f35b6102bc610a12565b6040516102c99190611e29565b60405180910390f35b6102ec60048036038101906102e79190611ccd565b610a18565b6040516102f99190611b9a565b60405180910390f35b61030a610a82565b6040516103179190611cb2565b60405180910390f35b61033a60048036038101906103359190611c13565b610a89565b005b61035660048036038101906103519190611c13565b610b0d565b60405161036896959493929190611e44565b60405180910390f35b61038b60048036038101906103869190611f0a565b610b49565b005b6103a760048036038101906103a29190611ccd565b610ea8565b005b6103b1610eca565b6040516103be9190611cb2565b60405180910390f35b6103e160048036038101906103dc9190611c13565b610eee565b005b6103eb610f72565b6040516103f89190611fbc565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610474575061047382610f98565b5b9050919050565b600260009054906101000a900460ff1681565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015414159050919050565b6000806000838152602001908152602001600020600101549050919050565b610505826104dd565b61050e81611002565b6105188383611016565b50505050565b610526611107565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461058a576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610594828261110f565b505050565b600260009054906101000a900460ff16156105e0576040517f0dc149f000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600260006101000a81548160ff0219169083151502179055507fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e61062581611002565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361068b576040517f867915ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006106978484611201565b90508473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016106d29190611fe6565b602060405180830381865afa1580156106ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107139190612016565b81111561074c576040517fad241b2000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b4260018190555084600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806003819055503373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f287d400aa7da22e8471607b8396e158d1ebfc797ef8abf9b0a3fd172b4b211ea426040516107f89190611e29565b60405180910390a35050505050565b600061081282611457565b9050919050565b60035481565b600061082a33611457565b905060008103610866576040517f969bf72800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060c00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152602001600582015481525050905081816060018181516109029190612072565b915081815250506000816080018181525050428160a001818152505080600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a082015181600501559050506109ea3383600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661160e9092919063ffffffff16565b5050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b60015481565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b81565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610ab381611002565b610add7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177583611016565b50610b087fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217753361110f565b505050565b60056020528060005260406000206000915090508060000154908060010154908060020154908060030154908060040154908060050154905086565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610b7381611002565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060c0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815260200160058201548152505090506000816000015103610c3b576040517f09a1583900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b838160000151600354610c4e91906120a6565b610c589190612072565b600381905550600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610cb99190611fe6565b602060405180830381865afa158015610cd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cfa9190612016565b6003541115610d35576040517fad241b2000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610d4086611457565b9050816060015181610d529190612072565b851015610d9a578585826040517f5cc9e8cb000000000000000000000000000000000000000000000000000000008152600401610d91939291906120da565b60405180910390fd5b80826080018181525050848260000181815250508360ff16826020018181525050428260a001818152505081600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a082015181600501559050508573ffffffffffffffffffffffffffffffffffffffff167fb9403af9fe8f36acdef6e8126b771cc70f0404426b5f62d465c86126d9d4587786868486606001514233604051610e9896959493929190612120565b60405180910390a2505050505050565b610eb1826104dd565b610eba81611002565b610ec4838361110f565b50505050565b7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e81565b7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e610f1881611002565b610f427fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e83611016565b50610f6d7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e3361110f565b505050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6110138161100e611107565b61168d565b50565b60006110228383610a18565b6110fc57600160008085815260200190815260200160002060000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611099611107565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050611101565b600090505b92915050565b600033905090565b600061111b8383610a18565b156111f657600080600085815260200190815260200160002060000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611193611107565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a4600190506111fb565b600090505b92915050565b60008060a08484905061121491906121b0565b1461124b576040517f85f2046900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060a08484905061125d91906121e1565b90506000805b8281101561144b5760008060008060008a8a60a0886112829190612212565b9060a060018a6112929190612072565b61129c9190612212565b926112a99392919061225e565b8101906112b691906122d7565b8095508196508297508398508499505050505050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611330576040517f867915ab00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80841015611379578484826040517f5cc9e8cb000000000000000000000000000000000000000000000000000000008152600401611370939291906120da565b60405180910390fd5b83876113859190612072565b96506040518060c001604052808581526020018481526020018381526020016000815260200182815260200142815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a082015181600501559050505050505050808061144390612352565b915050611263565b50809250505092915050565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060c00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152602001600582015481525050905080606001518160000151116114fb576000915050611609565b80604001516115086116de565b1161151a578060800151915050611609565b600061152a8260a00151426116f1565b9050600061153c828460200151611784565b905060006115506001548560a001516116f1565b9050600081856020015161156491906120a6565b90506000830361157f57846080015195505050505050611609565b846040015185602001516115939190612072565b83106115b957846060015185600001516115ad91906120a6565b95505050505050611609565b846080015181848760800151886060015189600001516115d991906120a6565b6115e391906120a6565b6115ed9190612212565b6115f791906121e1565b6116019190612072565b955050505050505b919050565b611688838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb858560405160240161164192919061239a565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061179d565b505050565b6116978282610a18565b6116da5780826040517fe2517d3f0000000000000000000000000000000000000000000000000000000081526004016116d19291906123c3565b60405180910390fd5b5050565b60006116ec600154426116f1565b905090565b60008183111561170057600080fd5b60008061171a620151808661171591906121e1565b611834565b5091509150600080611739620151808761173491906121e1565b611834565b509150915082600c8561174c9190612212565b82600c8561175a9190612212565b6117649190612072565b61176e91906120a6565b61177891906120a6565b94505050505092915050565b60008183106117935781611795565b825b905092915050565b60006117c8828473ffffffffffffffffffffffffffffffffffffffff1661193990919063ffffffff16565b905060008151141580156117ed5750808060200190518101906117eb9190612418565b155b1561182f57826040517f5274afe70000000000000000000000000000000000000000000000000000000081526004016118269190611fe6565b60405180910390fd5b505050565b600080600080849050600062253d8c62010bd98301019050600062023ab1826004028161186457611863612181565b5b059050600460038262023ab10201816118805761187f612181565b5b0582039150600062164b0960018401610fa002816118a1576118a0612181565b5b059050601f6004826105b502816118bb576118ba612181565b5b058403019250600061098f84605002816118d8576118d7612181565b5b059050600060508261098f02816118f2576118f1612181565b5b0585039050600b828161190857611907612181565b5b05945084600c0260028301039150848360318603606402010192508298508197508096505050505050509193909250565b60606119478383600061194f565b905092915050565b60608147101561199657306040517fcd78605900000000000000000000000000000000000000000000000000000000815260040161198d9190611fe6565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff1684866040516119bf91906124b6565b60006040518083038185875af1925050503d80600081146119fc576040519150601f19603f3d011682016040523d82523d6000602084013e611a01565b606091505b5091509150611a11868383611a1c565b925050509392505050565b606082611a3157611a2c82611aab565b611aa3565b60008251148015611a59575060008473ffffffffffffffffffffffffffffffffffffffff163b145b15611a9b57836040517f9996b315000000000000000000000000000000000000000000000000000000008152600401611a929190611fe6565b60405180910390fd5b819050611aa4565b5b9392505050565b600081511115611abe5780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611b2f81611afa565b8114611b3a57600080fd5b50565b600081359050611b4c81611b26565b92915050565b600060208284031215611b6857611b67611af0565b5b6000611b7684828501611b3d565b91505092915050565b60008115159050919050565b611b9481611b7f565b82525050565b6000602082019050611baf6000830184611b8b565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611be082611bb5565b9050919050565b611bf081611bd5565b8114611bfb57600080fd5b50565b600081359050611c0d81611be7565b92915050565b600060208284031215611c2957611c28611af0565b5b6000611c3784828501611bfe565b91505092915050565b6000819050919050565b611c5381611c40565b8114611c5e57600080fd5b50565b600081359050611c7081611c4a565b92915050565b600060208284031215611c8c57611c8b611af0565b5b6000611c9a84828501611c61565b91505092915050565b611cac81611c40565b82525050565b6000602082019050611cc76000830184611ca3565b92915050565b60008060408385031215611ce457611ce3611af0565b5b6000611cf285828601611c61565b9250506020611d0385828601611bfe565b9150509250929050565b6000611d1882611bd5565b9050919050565b611d2881611d0d565b8114611d3357600080fd5b50565b600081359050611d4581611d1f565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611d7057611d6f611d4b565b5b8235905067ffffffffffffffff811115611d8d57611d8c611d50565b5b602083019150836001820283011115611da957611da8611d55565b5b9250929050565b600080600060408486031215611dc957611dc8611af0565b5b6000611dd786828701611d36565b935050602084013567ffffffffffffffff811115611df857611df7611af5565b5b611e0486828701611d5a565b92509250509250925092565b6000819050919050565b611e2381611e10565b82525050565b6000602082019050611e3e6000830184611e1a565b92915050565b600060c082019050611e596000830189611e1a565b611e666020830188611e1a565b611e736040830187611e1a565b611e806060830186611e1a565b611e8d6080830185611e1a565b611e9a60a0830184611e1a565b979650505050505050565b611eae81611e10565b8114611eb957600080fd5b50565b600081359050611ecb81611ea5565b92915050565b600060ff82169050919050565b611ee781611ed1565b8114611ef257600080fd5b50565b600081359050611f0481611ede565b92915050565b600080600060608486031215611f2357611f22611af0565b5b6000611f3186828701611bfe565b9350506020611f4286828701611ebc565b9250506040611f5386828701611ef5565b9150509250925092565b6000819050919050565b6000611f82611f7d611f7884611bb5565b611f5d565b611bb5565b9050919050565b6000611f9482611f67565b9050919050565b6000611fa682611f89565b9050919050565b611fb681611f9b565b82525050565b6000602082019050611fd16000830184611fad565b92915050565b611fe081611bd5565b82525050565b6000602082019050611ffb6000830184611fd7565b92915050565b60008151905061201081611ea5565b92915050565b60006020828403121561202c5761202b611af0565b5b600061203a84828501612001565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061207d82611e10565b915061208883611e10565b92508282019050808211156120a05761209f612043565b5b92915050565b60006120b182611e10565b91506120bc83611e10565b92508282039050818111156120d4576120d3612043565b5b92915050565b60006060820190506120ef6000830186611fd7565b6120fc6020830185611e1a565b6121096040830184611e1a565b949350505050565b61211a81611ed1565b82525050565b600060c0820190506121356000830189611e1a565b6121426020830188612111565b61214f6040830187611e1a565b61215c6060830186611e1a565b6121696080830185611e1a565b61217660a0830184611fd7565b979650505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006121bb82611e10565b91506121c683611e10565b9250826121d6576121d5612181565b5b828206905092915050565b60006121ec82611e10565b91506121f783611e10565b92508261220757612206612181565b5b828204905092915050565b600061221d82611e10565b915061222883611e10565b925082820261223681611e10565b9150828204841483151761224d5761224c612043565b5b5092915050565b600080fd5b600080fd5b6000808585111561227257612271612254565b5b8386111561228357612282612259565b5b6001850283019150848603905094509492505050565b60006122a482611bb5565b9050919050565b6122b481612299565b81146122bf57600080fd5b50565b6000813590506122d1816122ab565b92915050565b600080600080600060a086880312156122f3576122f2611af0565b5b6000612301888289016122c2565b955050602061231288828901611ebc565b945050604061232388828901611ebc565b935050606061233488828901611ebc565b925050608061234588828901611ebc565b9150509295509295909350565b600061235d82611e10565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361238f5761238e612043565b5b600182019050919050565b60006040820190506123af6000830185611fd7565b6123bc6020830184611e1a565b9392505050565b60006040820190506123d86000830185611fd7565b6123e56020830184611ca3565b9392505050565b6123f581611b7f565b811461240057600080fd5b50565b600081519050612412816123ec565b92915050565b60006020828403121561242e5761242d611af0565b5b600061243c84828501612403565b91505092915050565b600081519050919050565b600081905092915050565b60005b8381101561247957808201518184015260208101905061245e565b60008484015250505050565b600061249082612445565b61249a8185612450565b93506124aa81856020860161245b565b80840191505092915050565b60006124c28284612485565b91508190509291505056fea26469706673582212209d741fa58326378b686e82cd8c71b11bcc7150ce70b0ed4b5a4d55a6904c60b864736f6c63430008140033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000008623e85fd4d3f5e6b82c917ae3e2151ca1f03762000000000000000000000000ee0c8354ec87b00675f4e4056ebfd38f03f7246c

-----Decoded View---------------
Arg [0] : owner (address): 0x8623e85Fd4D3F5e6b82C917ae3E2151cA1F03762
Arg [1] : admin (address): 0xeE0C8354EC87B00675f4E4056EBfD38F03f7246C

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000008623e85fd4d3f5e6b82c917ae3e2151ca1f03762
Arg [1] : 000000000000000000000000ee0c8354ec87b00675f4e4056ebfd38f03f7246c


Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.