ETH Price: $2,275.83 (-6.00%)

Token

Zaza (ZAZA)
 

Overview

Max Total Supply

420,000 ZAZA

Holders

38

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
961.150857826218629055 ZAZA

Value
$0.00
0xa35ec8eD88eb09651a0b86F4d74B4087Ec453c45
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Zaza

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : ZazaToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/finance/VestingWallet.sol";

contract Zaza is ERC20, ERC20Burnable, Ownable, VestingWallet {
    constructor(address _vestingAddress, uint64 _startTime, uint64 _duration) ERC20("Zaza", "ZAZA") VestingWallet(_vestingAddress, _startTime, _duration) 
    {
        _mint(msg.sender, 420000 * 10 ** decimals());
    }
}

File 2 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 11 : VestingWallet.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (finance/VestingWallet.sol)
pragma solidity ^0.8.0;

import "../token/ERC20/utils/SafeERC20.sol";
import "../utils/Address.sol";
import "../utils/Context.sol";

/**
 * @title VestingWallet
 * @dev This contract handles the vesting of Eth and ERC20 tokens for a given beneficiary. Custody of multiple tokens
 * can be given to this contract, which will release the token to the beneficiary following a given vesting schedule.
 * The vesting schedule is customizable through the {vestedAmount} function.
 *
 * Any token transferred to this contract will follow the vesting schedule as if they were locked from the beginning.
 * Consequently, if the vesting has already started, any amount of tokens sent to this contract will (at least partly)
 * be immediately releasable.
 */
contract VestingWallet is Context {
    event EtherReleased(uint256 amount);
    event ERC20Released(address indexed token, uint256 amount);

    uint256 private _released;
    mapping(address => uint256) private _erc20Released;
    address private immutable _beneficiary;
    uint64 private immutable _start;
    uint64 private immutable _duration;

    /**
     * @dev Set the beneficiary, start timestamp and vesting duration of the vesting wallet.
     */
    constructor(
        address beneficiaryAddress,
        uint64 startTimestamp,
        uint64 durationSeconds
    ) payable {
        require(beneficiaryAddress != address(0), "VestingWallet: beneficiary is zero address");
        _beneficiary = beneficiaryAddress;
        _start = startTimestamp;
        _duration = durationSeconds;
    }

    /**
     * @dev The contract should be able to receive Eth.
     */
    receive() external payable virtual {}

    /**
     * @dev Getter for the beneficiary address.
     */
    function beneficiary() public view virtual returns (address) {
        return _beneficiary;
    }

    /**
     * @dev Getter for the start timestamp.
     */
    function start() public view virtual returns (uint256) {
        return _start;
    }

    /**
     * @dev Getter for the vesting duration.
     */
    function duration() public view virtual returns (uint256) {
        return _duration;
    }

    /**
     * @dev Amount of eth already released
     */
    function released() public view virtual returns (uint256) {
        return _released;
    }

    /**
     * @dev Amount of token already released
     */
    function released(address token) public view virtual returns (uint256) {
        return _erc20Released[token];
    }

    /**
     * @dev Getter for the amount of releasable eth.
     */
    function releasable() public view virtual returns (uint256) {
        return vestedAmount(uint64(block.timestamp)) - released();
    }

    /**
     * @dev Getter for the amount of releasable `token` tokens. `token` should be the address of an
     * IERC20 contract.
     */
    function releasable(address token) public view virtual returns (uint256) {
        return vestedAmount(token, uint64(block.timestamp)) - released(token);
    }

    /**
     * @dev Release the native token (ether) that have already vested.
     *
     * Emits a {EtherReleased} event.
     */
    function release() public virtual {
        uint256 amount = releasable();
        _released += amount;
        emit EtherReleased(amount);
        Address.sendValue(payable(beneficiary()), amount);
    }

    /**
     * @dev Release the tokens that have already vested.
     *
     * Emits a {ERC20Released} event.
     */
    function release(address token) public virtual {
        uint256 amount = releasable(token);
        _erc20Released[token] += amount;
        emit ERC20Released(token, amount);
        SafeERC20.safeTransfer(IERC20(token), beneficiary(), amount);
    }

    /**
     * @dev Calculates the amount of ether that has already vested. Default implementation is a linear vesting curve.
     */
    function vestedAmount(uint64 timestamp) public view virtual returns (uint256) {
        return _vestingSchedule(address(this).balance + released(), timestamp);
    }

    /**
     * @dev Calculates the amount of tokens that has already vested. Default implementation is a linear vesting curve.
     */
    function vestedAmount(address token, uint64 timestamp) public view virtual returns (uint256) {
        return _vestingSchedule(IERC20(token).balanceOf(address(this)) + released(token), timestamp);
    }

    /**
     * @dev Virtual implementation of the vesting formula. This returns the amount vested, as a function of time, for
     * an asset given its total historical allocation.
     */
    function _vestingSchedule(uint256 totalAllocation, uint64 timestamp) internal view virtual returns (uint256) {
        if (timestamp < start()) {
            return 0;
        } else if (timestamp > start() + duration()) {
            return totalAllocation;
        } else {
            return (totalAllocation * (timestamp - start())) / duration();
        }
    }
}

File 4 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 5 of 11 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @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.
 */
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].
     */
    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);
}

File 6 of 11 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

File 7 of 11 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 8 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @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 amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` 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 amount
    ) external returns (bool);
}

File 9 of 11 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../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;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @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, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 10 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @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, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * 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.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @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`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) 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(errorMessage);
        }
    }
}

File 11 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_vestingAddress","type":"address"},{"internalType":"uint64","name":"_startTime","type":"uint64"},{"internalType":"uint64","name":"_duration","type":"uint64"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20Released","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EtherReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beneficiary","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"duration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"timestamp","type":"uint64"}],"name":"vestedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint64","name":"timestamp","type":"uint64"}],"name":"vestedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e06040523480156200001157600080fd5b506040516200354b3803806200354b8339818101604052810190620000379190620005d2565b8282826040518060400160405280600481526020017f5a617a61000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5a415a41000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000be92919062000473565b508060049080519060200190620000d792919062000473565b505050620000fa620000ee6200022460201b60201c565b6200022c60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200016d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016490620006b5565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508167ffffffffffffffff1660a08167ffffffffffffffff16815250508067ffffffffffffffff1660c08167ffffffffffffffff16815250505050506200021b33620001f1620002f260201b60201c565b600a620001ff919062000871565b620668a06200020f9190620008c2565b620002fb60201b60201c565b50505062000a85565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200036e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003659062000973565b60405180910390fd5b62000382600083836200046960201b60201c565b806002600082825462000396919062000995565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000449919062000a03565b60405180910390a362000465600083836200046e60201b60201c565b5050565b505050565b505050565b828054620004819062000a4f565b90600052602060002090601f016020900481019282620004a55760008555620004f1565b82601f10620004c057805160ff1916838001178555620004f1565b82800160010185558215620004f1579182015b82811115620004f0578251825591602001919060010190620004d3565b5b50905062000500919062000504565b5090565b5b808211156200051f57600081600090555060010162000505565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005558262000528565b9050919050565b620005678162000548565b81146200057357600080fd5b50565b60008151905062000587816200055c565b92915050565b600067ffffffffffffffff82169050919050565b620005ac816200058d565b8114620005b857600080fd5b50565b600081519050620005cc81620005a1565b92915050565b600080600060608486031215620005ee57620005ed62000523565b5b6000620005fe8682870162000576565b93505060206200061186828701620005bb565b92505060406200062486828701620005bb565b9150509250925092565b600082825260208201905092915050565b7f56657374696e6757616c6c65743a2062656e6566696369617279206973207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006200069d602a836200062e565b9150620006aa826200063f565b604082019050919050565b60006020820190508181036000830152620006d0816200068e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000765578086048111156200073d576200073c620006d7565b5b60018516156200074d5780820291505b80810290506200075d8562000706565b94506200071d565b94509492505050565b60008262000780576001905062000853565b8162000790576000905062000853565b8160018114620007a95760028114620007b457620007ea565b600191505062000853565b60ff841115620007c957620007c8620006d7565b5b8360020a915084821115620007e357620007e2620006d7565b5b5062000853565b5060208310610133831016604e8410600b8410161715620008245782820a9050838111156200081e576200081d620006d7565b5b62000853565b62000833848484600162000713565b925090508184048111156200084d576200084c620006d7565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b60006200087e826200085a565b91506200088b8362000864565b9250620008ba7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200076e565b905092915050565b6000620008cf826200085a565b9150620008dc836200085a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620009185762000917620006d7565b5b828202905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200095b601f836200062e565b9150620009688262000923565b602082019050919050565b600060208201905081810360008301526200098e816200094c565b9050919050565b6000620009a2826200085a565b9150620009af836200085a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620009e757620009e6620006d7565b5b828201905092915050565b620009fd816200085a565b82525050565b600060208201905062000a1a6000830184620009f2565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a6857607f821691505b6020821081141562000a7f5762000a7e62000a20565b5b50919050565b60805160a05160c051612a9662000ab560003960006107a901526000610cc1015260006108e40152612a966000f3fe6080604052600436106101a05760003560e01c806379cc6790116100ec578063a3f8eace1161008a578063be9a655511610064578063be9a65551461060f578063dd62ed3e1461063a578063f2fde38b14610677578063fbccedae146106a0576101a7565b8063a3f8eace14610558578063a457c2d714610595578063a9059cbb146105d2576101a7565b80638da5cb5b116100c65780638da5cb5b1461049a57806395d89b41146104c557806396132521146104f05780639852595c1461051b576101a7565b806379cc67901461041d578063810ec23b1461044657806386d1a69f14610483576101a7565b806323b872dd116101595780633950935111610133578063395093511461036357806342966c68146103a057806370a08231146103c9578063715018a614610406576101a7565b806323b872dd146102d0578063313ce5671461030d57806338af3eed14610338576101a7565b806306fdde03146101ac578063095ea7b3146101d75780630a17b06b146102145780630fb5a6b41461025157806318160ddd1461027c57806319165587146102a7576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101c16106cb565b6040516101ce9190611b51565b60405180910390f35b3480156101e357600080fd5b506101fe60048036038101906101f99190611c0c565b61075d565b60405161020b9190611c67565b60405180910390f35b34801561022057600080fd5b5061023b60048036038101906102369190611cc2565b610780565b6040516102489190611cfe565b60405180910390f35b34801561025d57600080fd5b506102666107a5565b6040516102739190611cfe565b60405180910390f35b34801561028857600080fd5b506102916107d7565b60405161029e9190611cfe565b60405180910390f35b3480156102b357600080fd5b506102ce60048036038101906102c99190611d19565b6107e1565b005b3480156102dc57600080fd5b506102f760048036038101906102f29190611d46565b6108a8565b6040516103049190611c67565b60405180910390f35b34801561031957600080fd5b506103226108d7565b60405161032f9190611db5565b60405180910390f35b34801561034457600080fd5b5061034d6108e0565b60405161035a9190611ddf565b60405180910390f35b34801561036f57600080fd5b5061038a60048036038101906103859190611c0c565b610908565b6040516103979190611c67565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190611dfa565b61093f565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190611d19565b610953565b6040516103fd9190611cfe565b60405180910390f35b34801561041257600080fd5b5061041b61099b565b005b34801561042957600080fd5b50610444600480360381019061043f9190611c0c565b6109af565b005b34801561045257600080fd5b5061046d60048036038101906104689190611e27565b6109cf565b60405161047a9190611cfe565b60405180910390f35b34801561048f57600080fd5b50610498610a7e565b005b3480156104a657600080fd5b506104af610aee565b6040516104bc9190611ddf565b60405180910390f35b3480156104d157600080fd5b506104da610b18565b6040516104e79190611b51565b60405180910390f35b3480156104fc57600080fd5b50610505610baa565b6040516105129190611cfe565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d9190611d19565b610bb4565b60405161054f9190611cfe565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190611d19565b610bfd565b60405161058c9190611cfe565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b79190611c0c565b610c23565b6040516105c99190611c67565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f49190611c0c565b610c9a565b6040516106069190611c67565b60405180910390f35b34801561061b57600080fd5b50610624610cbd565b6040516106319190611cfe565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190611e67565b610cef565b60405161066e9190611cfe565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190611d19565b610d76565b005b3480156106ac57600080fd5b506106b5610dfa565b6040516106c29190611cfe565b60405180910390f35b6060600380546106da90611ed6565b80601f016020809104026020016040519081016040528092919081815260200182805461070690611ed6565b80156107535780601f1061072857610100808354040283529160200191610753565b820191906000526020600020905b81548152906001019060200180831161073657829003601f168201915b5050505050905090565b600080610768610e1c565b9050610775818585610e24565b600191505092915050565b600061079e61078d610baa565b476107989190611f37565b83610fef565b9050919050565b60007f000000000000000000000000000000000000000000000000000000000000000067ffffffffffffffff16905090565b6000600254905090565b60006107ec82610bfd565b905080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461083d9190611f37565b925050819055508173ffffffffffffffffffffffffffffffffffffffff167fc0e523490dd523c33b1878c9eb14ff46991e3f5b2cd33710918618f2a39cba1b8260405161088a9190611cfe565b60405180910390a26108a48261089e6108e0565b83611089565b5050565b6000806108b3610e1c565b90506108c085828561110f565b6108cb85858561119b565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600080610913610e1c565b90506109348185856109258589610cef565b61092f9190611f37565b610e24565b600191505092915050565b61095061094a610e1c565b82611413565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109a36115e1565b6109ad600061165f565b565b6109c1826109bb610e1c565b8361110f565b6109cb8282611413565b5050565b6000610a766109dd84610bb4565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a169190611ddf565b60206040518083038186803b158015610a2e57600080fd5b505afa158015610a42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a669190611fa2565b610a709190611f37565b83610fef565b905092915050565b6000610a88610dfa565b90508060066000828254610a9c9190611f37565b925050819055507fda9d4e5f101b8b9b1c5b76d0c5a9f7923571acfc02376aa076b75a8c080c956b81604051610ad29190611cfe565b60405180910390a1610aeb610ae56108e0565b82611725565b50565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b2790611ed6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390611ed6565b8015610ba05780601f10610b7557610100808354040283529160200191610ba0565b820191906000526020600020905b815481529060010190602001808311610b8357829003601f168201915b5050505050905090565b6000600654905090565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610c0882610bb4565b610c1283426109cf565b610c1c9190611fcf565b9050919050565b600080610c2e610e1c565b90506000610c3c8286610cef565b905083811015610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7890612075565b60405180910390fd5b610c8e8286868403610e24565b60019250505092915050565b600080610ca5610e1c565b9050610cb281858561119b565b600191505092915050565b60007f000000000000000000000000000000000000000000000000000000000000000067ffffffffffffffff16905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d7e6115e1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de590612107565b60405180910390fd5b610df78161165f565b50565b6000610e04610baa565b610e0d42610780565b610e179190611fcf565b905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8b90612199565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb9061222b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fe29190611cfe565b60405180910390a3505050565b6000610ff9610cbd565b8267ffffffffffffffff1610156110135760009050611083565b61101b6107a5565b611023610cbd565b61102d9190611f37565b8267ffffffffffffffff16111561104657829050611083565b61104e6107a5565b611056610cbd565b8367ffffffffffffffff1661106b9190611fcf565b84611076919061224b565b61108091906122d4565b90505b92915050565b61110a8363a9059cbb60e01b84846040516024016110a8929190612305565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611819565b505050565b600061111b8484610cef565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111955781811015611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e9061237a565b60405180910390fd5b6111948484848403610e24565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561120b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112029061240c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112729061249e565b60405180910390fd5b6112868383836118e0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561130c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130390612530565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113fa9190611cfe565b60405180910390a361140d8484846118e5565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147a906125c2565b60405180910390fd5b61148f826000836118e0565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90612654565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115c89190611cfe565b60405180910390a36115dc836000846118e5565b505050565b6115e9610e1c565b73ffffffffffffffffffffffffffffffffffffffff16611607610aee565b73ffffffffffffffffffffffffffffffffffffffff161461165d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611654906126c0565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80471015611768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175f9061272c565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161178e9061277d565b60006040518083038185875af1925050503d80600081146117cb576040519150601f19603f3d011682016040523d82523d6000602084013e6117d0565b606091505b5050905080611814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180b90612804565b60405180910390fd5b505050565b600061187b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166118ea9092919063ffffffff16565b90506000815111156118db578080602001905181019061189b9190612850565b6118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d1906128ef565b60405180910390fd5b5b505050565b505050565b505050565b60606118f98484600085611902565b90509392505050565b606082471015611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e90612981565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161197091906129dd565b60006040518083038185875af1925050503d80600081146119ad576040519150601f19603f3d011682016040523d82523d6000602084013e6119b2565b606091505b50915091506119c3878383876119cf565b92505050949350505050565b60608315611a3257600083511415611a2a576119ea85611a45565b611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2090612a40565b60405180910390fd5b5b829050611a3d565b611a3c8383611a68565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082511115611a7b5781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf9190611b51565b60405180910390fd5b600081519050919050565b600082825260208201905092915050565b60005b83811015611af2578082015181840152602081019050611ad7565b83811115611b01576000848401525b50505050565b6000601f19601f8301169050919050565b6000611b2382611ab8565b611b2d8185611ac3565b9350611b3d818560208601611ad4565b611b4681611b07565b840191505092915050565b60006020820190508181036000830152611b6b8184611b18565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ba382611b78565b9050919050565b611bb381611b98565b8114611bbe57600080fd5b50565b600081359050611bd081611baa565b92915050565b6000819050919050565b611be981611bd6565b8114611bf457600080fd5b50565b600081359050611c0681611be0565b92915050565b60008060408385031215611c2357611c22611b73565b5b6000611c3185828601611bc1565b9250506020611c4285828601611bf7565b9150509250929050565b60008115159050919050565b611c6181611c4c565b82525050565b6000602082019050611c7c6000830184611c58565b92915050565b600067ffffffffffffffff82169050919050565b611c9f81611c82565b8114611caa57600080fd5b50565b600081359050611cbc81611c96565b92915050565b600060208284031215611cd857611cd7611b73565b5b6000611ce684828501611cad565b91505092915050565b611cf881611bd6565b82525050565b6000602082019050611d136000830184611cef565b92915050565b600060208284031215611d2f57611d2e611b73565b5b6000611d3d84828501611bc1565b91505092915050565b600080600060608486031215611d5f57611d5e611b73565b5b6000611d6d86828701611bc1565b9350506020611d7e86828701611bc1565b9250506040611d8f86828701611bf7565b9150509250925092565b600060ff82169050919050565b611daf81611d99565b82525050565b6000602082019050611dca6000830184611da6565b92915050565b611dd981611b98565b82525050565b6000602082019050611df46000830184611dd0565b92915050565b600060208284031215611e1057611e0f611b73565b5b6000611e1e84828501611bf7565b91505092915050565b60008060408385031215611e3e57611e3d611b73565b5b6000611e4c85828601611bc1565b9250506020611e5d85828601611cad565b9150509250929050565b60008060408385031215611e7e57611e7d611b73565b5b6000611e8c85828601611bc1565b9250506020611e9d85828601611bc1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611eee57607f821691505b60208210811415611f0257611f01611ea7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f4282611bd6565b9150611f4d83611bd6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f8257611f81611f08565b5b828201905092915050565b600081519050611f9c81611be0565b92915050565b600060208284031215611fb857611fb7611b73565b5b6000611fc684828501611f8d565b91505092915050565b6000611fda82611bd6565b9150611fe583611bd6565b925082821015611ff857611ff7611f08565b5b828203905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061205f602583611ac3565b915061206a82612003565b604082019050919050565b6000602082019050818103600083015261208e81612052565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006120f1602683611ac3565b91506120fc82612095565b604082019050919050565b60006020820190508181036000830152612120816120e4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612183602483611ac3565b915061218e82612127565b604082019050919050565b600060208201905081810360008301526121b281612176565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612215602283611ac3565b9150612220826121b9565b604082019050919050565b6000602082019050818103600083015261224481612208565b9050919050565b600061225682611bd6565b915061226183611bd6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561229a57612299611f08565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006122df82611bd6565b91506122ea83611bd6565b9250826122fa576122f96122a5565b5b828204905092915050565b600060408201905061231a6000830185611dd0565b6123276020830184611cef565b9392505050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612364601d83611ac3565b915061236f8261232e565b602082019050919050565b6000602082019050818103600083015261239381612357565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006123f6602583611ac3565b91506124018261239a565b604082019050919050565b60006020820190508181036000830152612425816123e9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612488602383611ac3565b91506124938261242c565b604082019050919050565b600060208201905081810360008301526124b78161247b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061251a602683611ac3565b9150612525826124be565b604082019050919050565b600060208201905081810360008301526125498161250d565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006125ac602183611ac3565b91506125b782612550565b604082019050919050565b600060208201905081810360008301526125db8161259f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061263e602283611ac3565b9150612649826125e2565b604082019050919050565b6000602082019050818103600083015261266d81612631565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006126aa602083611ac3565b91506126b582612674565b602082019050919050565b600060208201905081810360008301526126d98161269d565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000612716601d83611ac3565b9150612721826126e0565b602082019050919050565b6000602082019050818103600083015261274581612709565b9050919050565b600081905092915050565b50565b600061276760008361274c565b915061277282612757565b600082019050919050565b60006127888261275a565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006127ee603a83611ac3565b91506127f982612792565b604082019050919050565b6000602082019050818103600083015261281d816127e1565b9050919050565b61282d81611c4c565b811461283857600080fd5b50565b60008151905061284a81612824565b92915050565b60006020828403121561286657612865611b73565b5b60006128748482850161283b565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b60006128d9602a83611ac3565b91506128e48261287d565b604082019050919050565b60006020820190508181036000830152612908816128cc565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b600061296b602683611ac3565b91506129768261290f565b604082019050919050565b6000602082019050818103600083015261299a8161295e565b9050919050565b600081519050919050565b60006129b7826129a1565b6129c1818561274c565b93506129d1818560208601611ad4565b80840191505092915050565b60006129e982846129ac565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000612a2a601d83611ac3565b9150612a35826129f4565b602082019050919050565b60006020820190508181036000830152612a5981612a1d565b905091905056fea2646970667358221220feb5d4e056af2ead73a93b023ef201487ffe4c53d505b52f2d29da6724cc349e64736f6c63430008090033000000000000000000000000af2292aa48a163d3373be379a9e417c2e071e4b8000000000000000000000000000000000000000000000000000000006453f9a80000000000000000000000000000000000000000000000000000000000409980

Deployed Bytecode

0x6080604052600436106101a05760003560e01c806379cc6790116100ec578063a3f8eace1161008a578063be9a655511610064578063be9a65551461060f578063dd62ed3e1461063a578063f2fde38b14610677578063fbccedae146106a0576101a7565b8063a3f8eace14610558578063a457c2d714610595578063a9059cbb146105d2576101a7565b80638da5cb5b116100c65780638da5cb5b1461049a57806395d89b41146104c557806396132521146104f05780639852595c1461051b576101a7565b806379cc67901461041d578063810ec23b1461044657806386d1a69f14610483576101a7565b806323b872dd116101595780633950935111610133578063395093511461036357806342966c68146103a057806370a08231146103c9578063715018a614610406576101a7565b806323b872dd146102d0578063313ce5671461030d57806338af3eed14610338576101a7565b806306fdde03146101ac578063095ea7b3146101d75780630a17b06b146102145780630fb5a6b41461025157806318160ddd1461027c57806319165587146102a7576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101c16106cb565b6040516101ce9190611b51565b60405180910390f35b3480156101e357600080fd5b506101fe60048036038101906101f99190611c0c565b61075d565b60405161020b9190611c67565b60405180910390f35b34801561022057600080fd5b5061023b60048036038101906102369190611cc2565b610780565b6040516102489190611cfe565b60405180910390f35b34801561025d57600080fd5b506102666107a5565b6040516102739190611cfe565b60405180910390f35b34801561028857600080fd5b506102916107d7565b60405161029e9190611cfe565b60405180910390f35b3480156102b357600080fd5b506102ce60048036038101906102c99190611d19565b6107e1565b005b3480156102dc57600080fd5b506102f760048036038101906102f29190611d46565b6108a8565b6040516103049190611c67565b60405180910390f35b34801561031957600080fd5b506103226108d7565b60405161032f9190611db5565b60405180910390f35b34801561034457600080fd5b5061034d6108e0565b60405161035a9190611ddf565b60405180910390f35b34801561036f57600080fd5b5061038a60048036038101906103859190611c0c565b610908565b6040516103979190611c67565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190611dfa565b61093f565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190611d19565b610953565b6040516103fd9190611cfe565b60405180910390f35b34801561041257600080fd5b5061041b61099b565b005b34801561042957600080fd5b50610444600480360381019061043f9190611c0c565b6109af565b005b34801561045257600080fd5b5061046d60048036038101906104689190611e27565b6109cf565b60405161047a9190611cfe565b60405180910390f35b34801561048f57600080fd5b50610498610a7e565b005b3480156104a657600080fd5b506104af610aee565b6040516104bc9190611ddf565b60405180910390f35b3480156104d157600080fd5b506104da610b18565b6040516104e79190611b51565b60405180910390f35b3480156104fc57600080fd5b50610505610baa565b6040516105129190611cfe565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d9190611d19565b610bb4565b60405161054f9190611cfe565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190611d19565b610bfd565b60405161058c9190611cfe565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b79190611c0c565b610c23565b6040516105c99190611c67565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f49190611c0c565b610c9a565b6040516106069190611c67565b60405180910390f35b34801561061b57600080fd5b50610624610cbd565b6040516106319190611cfe565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190611e67565b610cef565b60405161066e9190611cfe565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190611d19565b610d76565b005b3480156106ac57600080fd5b506106b5610dfa565b6040516106c29190611cfe565b60405180910390f35b6060600380546106da90611ed6565b80601f016020809104026020016040519081016040528092919081815260200182805461070690611ed6565b80156107535780601f1061072857610100808354040283529160200191610753565b820191906000526020600020905b81548152906001019060200180831161073657829003601f168201915b5050505050905090565b600080610768610e1c565b9050610775818585610e24565b600191505092915050565b600061079e61078d610baa565b476107989190611f37565b83610fef565b9050919050565b60007f000000000000000000000000000000000000000000000000000000000040998067ffffffffffffffff16905090565b6000600254905090565b60006107ec82610bfd565b905080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461083d9190611f37565b925050819055508173ffffffffffffffffffffffffffffffffffffffff167fc0e523490dd523c33b1878c9eb14ff46991e3f5b2cd33710918618f2a39cba1b8260405161088a9190611cfe565b60405180910390a26108a48261089e6108e0565b83611089565b5050565b6000806108b3610e1c565b90506108c085828561110f565b6108cb85858561119b565b60019150509392505050565b60006012905090565b60007f000000000000000000000000af2292aa48a163d3373be379a9e417c2e071e4b8905090565b600080610913610e1c565b90506109348185856109258589610cef565b61092f9190611f37565b610e24565b600191505092915050565b61095061094a610e1c565b82611413565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109a36115e1565b6109ad600061165f565b565b6109c1826109bb610e1c565b8361110f565b6109cb8282611413565b5050565b6000610a766109dd84610bb4565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a169190611ddf565b60206040518083038186803b158015610a2e57600080fd5b505afa158015610a42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a669190611fa2565b610a709190611f37565b83610fef565b905092915050565b6000610a88610dfa565b90508060066000828254610a9c9190611f37565b925050819055507fda9d4e5f101b8b9b1c5b76d0c5a9f7923571acfc02376aa076b75a8c080c956b81604051610ad29190611cfe565b60405180910390a1610aeb610ae56108e0565b82611725565b50565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b2790611ed6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390611ed6565b8015610ba05780601f10610b7557610100808354040283529160200191610ba0565b820191906000526020600020905b815481529060010190602001808311610b8357829003601f168201915b5050505050905090565b6000600654905090565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610c0882610bb4565b610c1283426109cf565b610c1c9190611fcf565b9050919050565b600080610c2e610e1c565b90506000610c3c8286610cef565b905083811015610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7890612075565b60405180910390fd5b610c8e8286868403610e24565b60019250505092915050565b600080610ca5610e1c565b9050610cb281858561119b565b600191505092915050565b60007f000000000000000000000000000000000000000000000000000000006453f9a867ffffffffffffffff16905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d7e6115e1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de590612107565b60405180910390fd5b610df78161165f565b50565b6000610e04610baa565b610e0d42610780565b610e179190611fcf565b905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8b90612199565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb9061222b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fe29190611cfe565b60405180910390a3505050565b6000610ff9610cbd565b8267ffffffffffffffff1610156110135760009050611083565b61101b6107a5565b611023610cbd565b61102d9190611f37565b8267ffffffffffffffff16111561104657829050611083565b61104e6107a5565b611056610cbd565b8367ffffffffffffffff1661106b9190611fcf565b84611076919061224b565b61108091906122d4565b90505b92915050565b61110a8363a9059cbb60e01b84846040516024016110a8929190612305565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611819565b505050565b600061111b8484610cef565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111955781811015611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e9061237a565b60405180910390fd5b6111948484848403610e24565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561120b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112029061240c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112729061249e565b60405180910390fd5b6112868383836118e0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561130c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130390612530565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113fa9190611cfe565b60405180910390a361140d8484846118e5565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147a906125c2565b60405180910390fd5b61148f826000836118e0565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90612654565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115c89190611cfe565b60405180910390a36115dc836000846118e5565b505050565b6115e9610e1c565b73ffffffffffffffffffffffffffffffffffffffff16611607610aee565b73ffffffffffffffffffffffffffffffffffffffff161461165d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611654906126c0565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80471015611768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175f9061272c565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161178e9061277d565b60006040518083038185875af1925050503d80600081146117cb576040519150601f19603f3d011682016040523d82523d6000602084013e6117d0565b606091505b5050905080611814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180b90612804565b60405180910390fd5b505050565b600061187b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166118ea9092919063ffffffff16565b90506000815111156118db578080602001905181019061189b9190612850565b6118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d1906128ef565b60405180910390fd5b5b505050565b505050565b505050565b60606118f98484600085611902565b90509392505050565b606082471015611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e90612981565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161197091906129dd565b60006040518083038185875af1925050503d80600081146119ad576040519150601f19603f3d011682016040523d82523d6000602084013e6119b2565b606091505b50915091506119c3878383876119cf565b92505050949350505050565b60608315611a3257600083511415611a2a576119ea85611a45565b611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2090612a40565b60405180910390fd5b5b829050611a3d565b611a3c8383611a68565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082511115611a7b5781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf9190611b51565b60405180910390fd5b600081519050919050565b600082825260208201905092915050565b60005b83811015611af2578082015181840152602081019050611ad7565b83811115611b01576000848401525b50505050565b6000601f19601f8301169050919050565b6000611b2382611ab8565b611b2d8185611ac3565b9350611b3d818560208601611ad4565b611b4681611b07565b840191505092915050565b60006020820190508181036000830152611b6b8184611b18565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ba382611b78565b9050919050565b611bb381611b98565b8114611bbe57600080fd5b50565b600081359050611bd081611baa565b92915050565b6000819050919050565b611be981611bd6565b8114611bf457600080fd5b50565b600081359050611c0681611be0565b92915050565b60008060408385031215611c2357611c22611b73565b5b6000611c3185828601611bc1565b9250506020611c4285828601611bf7565b9150509250929050565b60008115159050919050565b611c6181611c4c565b82525050565b6000602082019050611c7c6000830184611c58565b92915050565b600067ffffffffffffffff82169050919050565b611c9f81611c82565b8114611caa57600080fd5b50565b600081359050611cbc81611c96565b92915050565b600060208284031215611cd857611cd7611b73565b5b6000611ce684828501611cad565b91505092915050565b611cf881611bd6565b82525050565b6000602082019050611d136000830184611cef565b92915050565b600060208284031215611d2f57611d2e611b73565b5b6000611d3d84828501611bc1565b91505092915050565b600080600060608486031215611d5f57611d5e611b73565b5b6000611d6d86828701611bc1565b9350506020611d7e86828701611bc1565b9250506040611d8f86828701611bf7565b9150509250925092565b600060ff82169050919050565b611daf81611d99565b82525050565b6000602082019050611dca6000830184611da6565b92915050565b611dd981611b98565b82525050565b6000602082019050611df46000830184611dd0565b92915050565b600060208284031215611e1057611e0f611b73565b5b6000611e1e84828501611bf7565b91505092915050565b60008060408385031215611e3e57611e3d611b73565b5b6000611e4c85828601611bc1565b9250506020611e5d85828601611cad565b9150509250929050565b60008060408385031215611e7e57611e7d611b73565b5b6000611e8c85828601611bc1565b9250506020611e9d85828601611bc1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611eee57607f821691505b60208210811415611f0257611f01611ea7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f4282611bd6565b9150611f4d83611bd6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f8257611f81611f08565b5b828201905092915050565b600081519050611f9c81611be0565b92915050565b600060208284031215611fb857611fb7611b73565b5b6000611fc684828501611f8d565b91505092915050565b6000611fda82611bd6565b9150611fe583611bd6565b925082821015611ff857611ff7611f08565b5b828203905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061205f602583611ac3565b915061206a82612003565b604082019050919050565b6000602082019050818103600083015261208e81612052565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006120f1602683611ac3565b91506120fc82612095565b604082019050919050565b60006020820190508181036000830152612120816120e4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612183602483611ac3565b915061218e82612127565b604082019050919050565b600060208201905081810360008301526121b281612176565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612215602283611ac3565b9150612220826121b9565b604082019050919050565b6000602082019050818103600083015261224481612208565b9050919050565b600061225682611bd6565b915061226183611bd6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561229a57612299611f08565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006122df82611bd6565b91506122ea83611bd6565b9250826122fa576122f96122a5565b5b828204905092915050565b600060408201905061231a6000830185611dd0565b6123276020830184611cef565b9392505050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612364601d83611ac3565b915061236f8261232e565b602082019050919050565b6000602082019050818103600083015261239381612357565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006123f6602583611ac3565b91506124018261239a565b604082019050919050565b60006020820190508181036000830152612425816123e9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612488602383611ac3565b91506124938261242c565b604082019050919050565b600060208201905081810360008301526124b78161247b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061251a602683611ac3565b9150612525826124be565b604082019050919050565b600060208201905081810360008301526125498161250d565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006125ac602183611ac3565b91506125b782612550565b604082019050919050565b600060208201905081810360008301526125db8161259f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061263e602283611ac3565b9150612649826125e2565b604082019050919050565b6000602082019050818103600083015261266d81612631565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006126aa602083611ac3565b91506126b582612674565b602082019050919050565b600060208201905081810360008301526126d98161269d565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000612716601d83611ac3565b9150612721826126e0565b602082019050919050565b6000602082019050818103600083015261274581612709565b9050919050565b600081905092915050565b50565b600061276760008361274c565b915061277282612757565b600082019050919050565b60006127888261275a565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006127ee603a83611ac3565b91506127f982612792565b604082019050919050565b6000602082019050818103600083015261281d816127e1565b9050919050565b61282d81611c4c565b811461283857600080fd5b50565b60008151905061284a81612824565b92915050565b60006020828403121561286657612865611b73565b5b60006128748482850161283b565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b60006128d9602a83611ac3565b91506128e48261287d565b604082019050919050565b60006020820190508181036000830152612908816128cc565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b600061296b602683611ac3565b91506129768261290f565b604082019050919050565b6000602082019050818103600083015261299a8161295e565b9050919050565b600081519050919050565b60006129b7826129a1565b6129c1818561274c565b93506129d1818560208601611ad4565b80840191505092915050565b60006129e982846129ac565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000612a2a601d83611ac3565b9150612a35826129f4565b602082019050919050565b60006020820190508181036000830152612a5981612a1d565b905091905056fea2646970667358221220feb5d4e056af2ead73a93b023ef201487ffe4c53d505b52f2d29da6724cc349e64736f6c63430008090033

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

000000000000000000000000af2292aa48a163d3373be379a9e417c2e071e4b8000000000000000000000000000000000000000000000000000000006453f9a80000000000000000000000000000000000000000000000000000000000409980

-----Decoded View---------------
Arg [0] : _vestingAddress (address): 0xAf2292aa48a163D3373bE379a9e417C2E071e4B8
Arg [1] : _startTime (uint64): 1683225000
Arg [2] : _duration (uint64): 4233600

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000af2292aa48a163d3373be379a9e417c2e071e4b8
Arg [1] : 000000000000000000000000000000000000000000000000000000006453f9a8
Arg [2] : 0000000000000000000000000000000000000000000000000000000000409980


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.